blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ed735c27c3b0602e6e708506411b33cfdc6e7cea | 3cbea0497545c00ffc87fe1fa8a74dfe88dc9509 | /399_EvaluateDivision.cpp | 7d7d8da975faeccab101d6c18c06a65545114350 | [] | no_license | yuhenghuang/Leetcode | 40b954676feb3a2ef350188a6d86dadc44e84d71 | 3c5aafa7969a5a1eb01106676a5b94d404d07d9f | refs/heads/master | 2023-08-30T18:17:16.209053 | 2023-08-25T01:05:49 | 2023-08-25T01:05:49 | 249,166,616 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,855 | cpp | 399_EvaluateDivision.cpp | #include <local_leetcode.hpp>
struct TrieNode {
unordered_map<TrieNode*, double> children;
TrieNode() {}
};
class Solution {
private:
unordered_map<string, TrieNode*> root;
unordered_map<TrieNode*, bool> seen;
double dfs(TrieNode* curr, TrieNode* target) {
if (curr==target) return 1.0;
seen[curr] = true;
double res=-1.0;
for (auto& iter : curr->children) {
if (seen[iter.first]) continue;
res = iter.second * dfs(iter.first, target);
if (res>0)
break;
}
seen[curr] = false;
return res > 0 ? res : -1.0;
}
void reset() {
root.clear();
seen.clear();
}
double dfs(int u, int t, const vector<vector<int>>& graph, const vector<vector<double>>& weight , vector<bool>& seen) {
if (u == t)
return 1.0;
seen[u] = true;
double res = -1.0;
for (auto& v : graph[u])
if (!seen[v]) {
res = weight[u][v] * dfs(v, t, graph, weight, seen);
if (res > 0)
break;
}
seen[u] = false;
return res > 0 ? res : -1.0;
}
public:
vector<double> calcEquation(vector<vector<string>>& equations, vector<double>& values, vector<vector<string>>& queries) {
reset();
vector<double> res;
res.reserve(queries.size());
int n = equations.size();
TrieNode *a, *b;
for (int i=0; i<n; ++i) {
if (root.find(equations[i][0])==root.end())
root[equations[i][0]] = new TrieNode();
a = root[equations[i][0]];
if (root.find(equations[i][1])==root.end())
root[equations[i][1]] = new TrieNode();
b = root[equations[i][1]];
a->children[b] = values[i];
b->children[a]=1.0/values[i];
}
for (auto& p : queries) {
if (root.find(p[0])==root.end() || root.find(p[1])==root.end())
res.push_back(-1.0);
else {
a = root[p[0]];
b = root[p[1]];
res.push_back(dfs(a, b));
}
}
return res;
}
vector<double> calcEquationPO(vector<vector<string>>& equations, vector<double>& values, vector<vector<string>>& queries) {
unordered_map<string, int> m;
int uid = 0;
for (auto& eq : equations)
for (auto& var : eq) {
if (m.count(var) == 0)
m[var] = uid++;
}
int n = m.size();
vector<vector<int>> graph(n);
vector<vector<double>> weight(n, vector<double>(n));
for (int i = 0; i < equations.size(); ++i) {
int u = m[equations[i][0]];
int v = m[equations[i][1]];
graph[u].push_back(v);
graph[v].push_back(u);
weight[u][v] = values[i];
weight[v][u] = 1 / values[i];
}
vector<bool> seen(n);
vector<double> res;
res.reserve(queries.size());
for (auto& q : queries) {
auto iter = m.find(q[0]);
int u = iter == m.end() ? -1 : iter->second;
iter = m.find(q[1]);
int v = iter == m.end() ? -1 : iter->second;
if (u >= 0 && v >= 0)
res.push_back(dfs(u, v, graph, weight, seen));
else
res.push_back(-1.0);
}
return res;
}
};
int main() {
/*
Solution sol;
vector<string> args;
vector<vector<string>> eqs, queries;
vector<double> vals, res;
utils::parse_vector_1d<double> parser_dbl;
utils::parse_vector_2d<string> parser_str;
ifstream f("Inputs/399_EvaluateDivision.txt");
string line;
while (getline(f, line)) {
args = utils::string_split(line);
eqs = parser_str(args[0]);
vals = parser_dbl(args[1]);
queries = parser_str(args[2]);
res = sol.calcEquation(eqs, vals, queries);
sol.reset();
utils::print_vector_1d(res);
}
*/
EXECS(Solution::calcEquationPO);
return 0;
}
|
3c554540ac94812fd4228beaf5762d11a762f4b2 | 031e4d530346aab54ba32e5ec0aeb8ab1a783be1 | /Report 2/W41/0.11/U_0 | eec8ef3fe7a78fe51df4e4b51cba83a07514dcc8 | [] | no_license | shyam97/modelling1 | 781ddcf6c16b6bd8f528b0f58bd19953f86716d9 | 68bd2ebc7960111b86bbff04af96003229618af7 | refs/heads/master | 2022-11-21T07:03:25.868074 | 2020-07-20T16:20:09 | 2020-07-20T16:20:09 | 262,878,324 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,641,593 | U_0 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0.11";
object U_0;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
70000
(
(0.553411 0.0169784 0)
(0.251397 0.0034008 0)
(0.165879 0.000319398 0)
(0.132364 4.93793e-05 0)
(0.117225 4.44235e-05 0)
(0.10723 5.25941e-05 0)
(0.0992207 4.47997e-05 0)
(0.0927388 3.57331e-05 0)
(0.0874569 2.97057e-05 0)
(0.0830505 2.55766e-05 0)
(0.0792915 2.24229e-05 0)
(0.0760321 1.98979e-05 0)
(0.0731708 1.78432e-05 0)
(0.0706333 1.61506e-05 0)
(0.0683628 1.47402e-05 0)
(0.0663155 1.35527e-05 0)
(0.0644567 1.2544e-05 0)
(0.0627588 1.16808e-05 0)
(0.0611991 1.09378e-05 0)
(0.0597591 1.02956e-05 0)
(0.0584234 9.73894e-06 0)
(0.0571789 9.25601e-06 0)
(0.0560145 8.83729e-06 0)
(0.0549208 8.4755e-06 0)
(0.0538896 8.16437e-06 0)
(0.0529134 7.89974e-06 0)
(0.051986 7.67701e-06 0)
(0.0511016 7.49489e-06 0)
(0.050255 7.34886e-06 0)
(0.0494415 7.2416e-06 0)
(0.0486567 7.1656e-06 0)
(0.0478962 7.1317e-06 0)
(0.0471566 7.12191e-06 0)
(0.0464334 7.16527e-06 0)
(0.0457237 7.21865e-06 0)
(0.0450228 7.34754e-06 0)
(0.0443282 7.46124e-06 0)
(0.0436352 7.68006e-06 0)
(0.0429402 7.8619e-06 0)
(0.0422418 8.13478e-06 0)
(0.0415278 8.46036e-06 0)
(0.0408157 8.57561e-06 0)
(0.0400547 9.39973e-06 0)
(0.0393385 8.53339e-06 0)
(0.0384761 1.11664e-05 0)
(0.0378199 6.57344e-06 0)
(0.036729 1.53028e-05 0)
(0.0363351 -1.50152e-06 0)
(0.03488 2.86536e-05 0)
(0.0327048 -0.00125788 0)
(0.884861 0.0434943 0)
(0.650118 0.0201515 0)
(0.493889 0.00660831 0)
(0.403389 0.00275901 0)
(0.35459 0.00155261 0)
(0.32318 0.00113663 0)
(0.299181 0.000914373 0)
(0.279871 0.000749862 0)
(0.264057 0.000627205 0)
(0.250838 0.000536745 0)
(0.239561 0.000468078 0)
(0.229786 0.000414068 0)
(0.221206 0.000370478 0)
(0.213597 0.000334671 0)
(0.20679 0.000304848 0)
(0.200653 0.00027972 0)
(0.195083 0.000258336 0)
(0.189996 0.000239984 0)
(0.185327 0.000224122 0)
(0.181018 0.000210332 0)
(0.177024 0.000198289 0)
(0.173307 0.000187734 0)
(0.169833 0.000178464 0)
(0.166573 0.000170314 0)
(0.163504 0.000163153 0)
(0.160604 0.000156877 0)
(0.157854 0.000151402 0)
(0.155237 0.000146665 0)
(0.152738 0.000142613 0)
(0.150344 0.000139218 0)
(0.14804 0.000136442 0)
(0.145816 0.000134299 0)
(0.14366 0.000132743 0)
(0.141561 0.000131857 0)
(0.139509 0.00013153 0)
(0.137492 0.000131996 0)
(0.135501 0.000132958 0)
(0.133524 0.000134963 0)
(0.131551 0.000137292 0)
(0.129575 0.000141092 0)
(0.127564 0.000144889 0)
(0.125562 0.000150648 0)
(0.123432 0.000156149 0)
(0.121417 0.000163283 0)
(0.119011 0.000171496 0)
(0.117129 0.000176131 0)
(0.114098 0.000192941 0)
(0.11281 0.000162743 0)
(0.108729 0.000344327 0)
(0.105914 -0.00202452 0)
(0.99121 0.0499576 0)
(0.890902 0.0305682 0)
(0.762405 0.0146192 0)
(0.656347 0.00798157 0)
(0.585119 0.00489178 0)
(0.535611 0.00348774 0)
(0.497569 0.00275216 0)
(0.466785 0.00225813 0)
(0.441318 0.00189448 0)
(0.419859 0.00162287 0)
(0.401462 0.00141547 0)
(0.385457 0.00125228 0)
(0.37137 0.00112061 0)
(0.358849 0.00101241 0)
(0.347627 0.000922217 0)
(0.337496 0.000846147 0)
(0.328291 0.000781339 0)
(0.319878 0.000725651 0)
(0.31215 0.00067745 0)
(0.305017 0.000635478 0)
(0.298404 0.000598748 0)
(0.292248 0.000566482 0)
(0.286496 0.000538058 0)
(0.281103 0.000512979 0)
(0.276027 0.000490845 0)
(0.271235 0.000471333 0)
(0.266696 0.000454189 0)
(0.262382 0.000439211 0)
(0.258269 0.000426243 0)
(0.254335 0.000415177 0)
(0.250559 0.00040592 0)
(0.246921 0.000398462 0)
(0.243405 0.000392722 0)
(0.239991 0.00038884 0)
(0.236666 0.000386638 0)
(0.233408 0.000386568 0)
(0.230207 0.000388084 0)
(0.227041 0.000392378 0)
(0.223895 0.000397852 0)
(0.220758 0.000407452 0)
(0.217582 0.000416994 0)
(0.214428 0.000433282 0)
(0.211097 0.000446545 0)
(0.207933 0.000470979 0)
(0.204211 0.000486964 0)
(0.20122 0.000517725 0)
(0.196606 0.000541763 0)
(0.194363 0.000517542 0)
(0.188189 0.00077656 0)
(0.185698 -0.00169492 0)
(1.01554 0.0489562 0)
(1.00648 0.0357323 0)
(0.935823 0.0208333 0)
(0.851852 0.013517 0)
(0.781946 0.00921961 0)
(0.72664 0.00680727 0)
(0.681374 0.00541252 0)
(0.643427 0.00447195 0)
(0.611223 0.00377745 0)
(0.583571 0.00325149 0)
(0.559537 0.00284514 0)
(0.538413 0.00252319 0)
(0.519671 0.00226223 0)
(0.502906 0.00204696 0)
(0.487803 0.0018669 0)
(0.474109 0.00171457 0)
(0.461623 0.00158443 0)
(0.45018 0.00147231 0)
(0.439642 0.00137503 0)
(0.429896 0.00129012 0)
(0.420847 0.00121564 0)
(0.412414 0.00115003 0)
(0.404526 0.00109208 0)
(0.397124 0.00104078 0)
(0.390157 0.00099533 0)
(0.383577 0.000955088 0)
(0.377346 0.000919534 0)
(0.371426 0.000888256 0)
(0.365786 0.000860937 0)
(0.360396 0.00083734 0)
(0.355229 0.000817285 0)
(0.35026 0.000800704 0)
(0.345467 0.00078748 0)
(0.340824 0.000777779 0)
(0.336313 0.000771384 0)
(0.331908 0.000768954 0)
(0.327593 0.000769716 0)
(0.323342 0.00077559 0)
(0.319135 0.000783964 0)
(0.314958 0.000800087 0)
(0.310753 0.000816156 0)
(0.306584 0.000845883 0)
(0.302227 0.000868265 0)
(0.298061 0.000916825 0)
(0.293272 0.000941066 0)
(0.289285 0.00101177 0)
(0.283504 0.00104043 0)
(0.280247 0.00105003 0)
(0.272713 0.0013176 0)
(0.269821 -0.000867774 0)
(1.01435 0.0461009 0)
(1.04797 0.0373511 0)
(1.02452 0.0242053 0)
(0.974564 0.0175834 0)
(0.923252 0.0131405 0)
(0.876372 0.0102411 0)
(0.83403 0.00838378 0)
(0.796087 0.00706241 0)
(0.762325 0.00605197 0)
(0.732309 0.00526424 0)
(0.705528 0.00464195 0)
(0.681514 0.00414093 0)
(0.659869 0.00372996 0)
(0.640262 0.00338771 0)
(0.622414 0.00309918 0)
(0.606093 0.00285346 0)
(0.591105 0.00264232 0)
(0.577285 0.00245953 0)
(0.564494 0.00230022 0)
(0.552614 0.0021606 0)
(0.541542 0.00203766 0)
(0.53119 0.00192899 0)
(0.521483 0.00183264 0)
(0.512353 0.00174704 0)
(0.503743 0.00167091 0)
(0.495601 0.00160319 0)
(0.48788 0.00154307 0)
(0.48054 0.00148986 0)
(0.473543 0.00144305 0)
(0.466856 0.00140224 0)
(0.460447 0.00136712 0)
(0.454286 0.00133756 0)
(0.448348 0.00131339 0)
(0.442603 0.00129477 0)
(0.437032 0.00128148 0)
(0.431602 0.00127435 0)
(0.426297 0.00127243 0)
(0.421085 0.00127836 0)
(0.415945 0.00128852 0)
(0.410857 0.00131062 0)
(0.405763 0.00133299 0)
(0.400719 0.00137692 0)
(0.395504 0.00140918 0)
(0.390478 0.00148442 0)
(0.384855 0.00151916 0)
(0.379979 0.00163386 0)
(0.373416 0.00167266 0)
(0.369109 0.00172523 0)
(0.36095 0.00198946 0)
(0.35683 0.000128614 0)
(1.00941 0.0430508 0)
(1.05563 0.0371078 0)
(1.05864 0.0253499 0)
(1.03622 0.0197942 0)
(1.00696 0.0158373 0)
(0.975818 0.0129802 0)
(0.94413 0.0110136 0)
(0.913076 0.00953313 0)
(0.88352 0.00834303 0)
(0.855852 0.00737548 0)
(0.830155 0.00658537 0)
(0.806371 0.00593268 0)
(0.784381 0.00538633 0)
(0.764043 0.00492381 0)
(0.745211 0.00452861 0)
(0.727743 0.00418819 0)
(0.711507 0.00389286 0)
(0.696382 0.00363505 0)
(0.682261 0.00340873 0)
(0.669045 0.00320911 0)
(0.656647 0.00303232 0)
(0.64499 0.00287523 0)
(0.634004 0.00273526 0)
(0.623628 0.00261032 0)
(0.613804 0.00249867 0)
(0.604485 0.0023989 0)
(0.595623 0.00230986 0)
(0.587178 0.00223061 0)
(0.579112 0.00216045 0)
(0.57139 0.00209879 0)
(0.563982 0.00204523 0)
(0.556854 0.00199953 0)
(0.54998 0.00196149 0)
(0.543331 0.00193127 0)
(0.536884 0.00190864 0)
(0.530606 0.00189459 0)
(0.524479 0.00188803 0)
(0.518469 0.00189229 0)
(0.512557 0.00190286 0)
(0.506714 0.00192972 0)
(0.500893 0.00195779 0)
(0.495126 0.00201517 0)
(0.48923 0.00205806 0)
(0.48349 0.00215903 0)
(0.47725 0.00220837 0)
(0.471607 0.00236313 0)
(0.46457 0.00242421 0)
(0.459268 0.00251195 0)
(0.450966 0.00279353 0)
(0.445455 0.00123794 0)
(1.00635 0.0401832 0)
(1.0524 0.0361621 0)
(1.06603 0.0252756 0)
(1.05947 0.0206036 0)
(1.04677 0.0172714 0)
(1.03062 0.0147081 0)
(1.01159 0.0128847 0)
(0.990746 0.0114637 0)
(0.96915 0.0102688 0)
(0.947542 0.00925427 0)
(0.926372 0.00839451 0)
(0.905906 0.00766176 0)
(0.886296 0.00703202 0)
(0.867614 0.00648691 0)
(0.84988 0.00601223 0)
(0.833082 0.00559671 0)
(0.817186 0.00523119 0)
(0.802149 0.00490824 0)
(0.787922 0.00462176 0)
(0.774452 0.00436673 0)
(0.761688 0.00413902 0)
(0.74958 0.00393519 0)
(0.738079 0.00375236 0)
(0.72714 0.00358815 0)
(0.716721 0.00344056 0)
(0.706782 0.00330793 0)
(0.697285 0.00318891 0)
(0.688196 0.00308238 0)
(0.679482 0.00298748 0)
(0.671113 0.0029035 0)
(0.663059 0.00283 0)
(0.655293 0.00276663 0)
(0.647788 0.00271321 0)
(0.640517 0.00266989 0)
(0.633458 0.00263648 0)
(0.626581 0.00261411 0)
(0.619867 0.00260165 0)
(0.613282 0.00260296 0)
(0.60681 0.00261297 0)
(0.600416 0.0026434 0)
(0.594066 0.00267678 0)
(0.587767 0.00274615 0)
(0.581383 0.00280073 0)
(0.575111 0.00292452 0)
(0.568458 0.00299342 0)
(0.562222 0.00318062 0)
(0.55494 0.00327674 0)
(0.54883 0.00338971 0)
(0.540591 0.0037047 0)
(0.534001 0.00245179 0)
(1.00506 0.0375064 0)
(1.04761 0.0350649 0)
(1.06393 0.0247302 0)
(1.06413 0.0206382 0)
(1.06059 0.0178151 0)
(1.05462 0.015557 0)
(1.04576 0.0139515 0)
(1.03443 0.0126982 0)
(1.02137 0.0116163 0)
(1.00716 0.0106666 0)
(0.99227 0.00983578 0)
(0.977065 0.00910654 0)
(0.961812 0.00846262 0)
(0.946708 0.00789143 0)
(0.931891 0.00738307 0)
(0.917456 0.00692939 0)
(0.903461 0.00652343 0)
(0.889941 0.0061593 0)
(0.876912 0.00583193 0)
(0.864376 0.00553703 0)
(0.852327 0.00527091 0)
(0.840752 0.00503043 0)
(0.829635 0.00481289 0)
(0.818955 0.00461598 0)
(0.808691 0.00443774 0)
(0.79882 0.00427651 0)
(0.78932 0.00413091 0)
(0.780168 0.00399981 0)
(0.771342 0.00388232 0)
(0.76282 0.00377771 0)
(0.754581 0.00368554 0)
(0.746602 0.00360546 0)
(0.738862 0.00353737 0)
(0.731339 0.00348142 0)
(0.724016 0.00343754 0)
(0.716863 0.00340698 0)
(0.709868 0.00338869 0)
(0.702996 0.0033869 0)
(0.696236 0.00339635 0)
(0.689552 0.00342987 0)
(0.682922 0.00346884 0)
(0.676331 0.003549 0)
(0.669691 0.0036167 0)
(0.663114 0.00376019 0)
(0.656265 0.00385321 0)
(0.649668 0.0040658 0)
(0.642328 0.00420554 0)
(0.6357 0.00434034 0)
(0.627617 0.00469306 0)
(0.620377 0.003741 0)
(1.00451 0.0349709 0)
(1.04358 0.0339861 0)
(1.0599 0.0240813 0)
(1.06217 0.0203518 0)
(1.06242 0.0178845 0)
(1.0617 0.0158427 0)
(1.05905 0.0144134 0)
(1.05439 0.0133282 0)
(1.04805 0.0123909 0)
(1.04033 0.0115554 0)
(1.03151 0.0108108 0)
(1.02185 0.0101439 0)
(1.0116 0.00954237 0)
(1.00093 0.00899724 0)
(0.990034 0.00850203 0)
(0.979031 0.00805151 0)
(0.968029 0.00764118 0)
(0.957109 0.00726708 0)
(0.946333 0.00692573 0)
(0.935746 0.00661406 0)
(0.925379 0.00632938 0)
(0.915252 0.00606927 0)
(0.90538 0.00583162 0)
(0.895769 0.00561456 0)
(0.886419 0.00541648 0)
(0.877329 0.00523596 0)
(0.868494 0.00507183 0)
(0.859904 0.00492311 0)
(0.851553 0.00478904 0)
(0.843427 0.004669 0)
(0.835517 0.00456267 0)
(0.827808 0.0044698 0)
(0.820289 0.00439039 0)
(0.812942 0.00432472 0)
(0.805757 0.00427287 0)
(0.79871 0.00423624 0)
(0.791793 0.00421397 0)
(0.784976 0.00421054 0)
(0.778254 0.00422083 0)
(0.771589 0.0042582 0)
(0.764972 0.00430404 0)
(0.758376 0.00439474 0)
(0.751747 0.00447741 0)
(0.745139 0.0046385 0)
(0.738335 0.00475917 0)
(0.731656 0.00499273 0)
(0.724456 0.0051799 0)
(0.717638 0.00533931 0)
(0.709827 0.00572854 0)
(0.702339 0.00506615 0)
(1.00412 0.0325407 0)
(1.04025 0.0329339 0)
(1.05614 0.0234487 0)
(1.05881 0.0199703 0)
(1.06015 0.0177595 0)
(1.06148 0.0158509 0)
(1.06178 0.0145247 0)
(1.0608 0.0135569 0)
(1.05863 0.0127376 0)
(1.05538 0.01201 0)
(1.05114 0.0113605 0)
(1.04603 0.0107754 0)
(1.04016 0.0102423 0)
(1.03367 0.00975291 0)
(1.02669 0.00930188 0)
(1.01932 0.00888538 0)
(1.01166 0.00850033 0)
(1.0038 0.00814416 0)
(0.995816 0.00781465 0)
(0.987759 0.00750985 0)
(0.979684 0.00722804 0)
(0.97163 0.00696766 0)
(0.963629 0.00672732 0)
(0.955705 0.00650576 0)
(0.947878 0.00630184 0)
(0.940161 0.00611459 0)
(0.932562 0.00594317 0)
(0.925088 0.0057869 0)
(0.917742 0.00564528 0)
(0.910523 0.00551791 0)
(0.903431 0.00540466 0)
(0.896461 0.00530547 0)
(0.889608 0.00522056 0)
(0.882865 0.00515036 0)
(0.876226 0.00509517 0)
(0.869675 0.00505657 0)
(0.86321 0.00503396 0)
(0.856807 0.00503204 0)
(0.850464 0.00504603 0)
(0.84415 0.00508945 0)
(0.83786 0.00514449 0)
(0.831568 0.00524676 0)
(0.825239 0.00534667 0)
(0.818896 0.00552475 0)
(0.812398 0.00567565 0)
(0.805936 0.00592852 0)
(0.799099 0.00616369 0)
(0.792418 0.00635368 0)
(0.785049 0.00677741 0)
(0.777678 0.00638448 0)
(1.00374 0.0302069 0)
(1.03726 0.031886 0)
(1.0528 0.0228473 0)
(1.05557 0.0195711 0)
(1.05706 0.0175732 0)
(1.05894 0.0157544 0)
(1.06032 0.0144773 0)
(1.06093 0.0135746 0)
(1.06084 0.0128307 0)
(1.06008 0.0121791 0)
(1.05864 0.0116039 0)
(1.05654 0.0110898 0)
(1.05382 0.0106227 0)
(1.05052 0.0101934 0)
(1.0467 0.0097958 0)
(1.04243 0.0094261 0)
(1.03777 0.00908141 0)
(1.03279 0.00875955 0)
(1.02753 0.00845882 0)
(1.02205 0.00817786 0)
(1.0164 0.00791554 0)
(1.01062 0.0076709 0)
(1.00474 0.00744309 0)
(0.9988 0.00723137 0)
(0.992817 0.00703508 0)
(0.986814 0.00685364 0)
(0.980808 0.00668661 0)
(0.974814 0.0065336 0)
(0.968841 0.00639442 0)
(0.962899 0.00626893 0)
(0.956992 0.00615727 0)
(0.951123 0.00605958 0)
(0.945296 0.00597632 0)
(0.939508 0.00590814 0)
(0.933759 0.00585558 0)
(0.928041 0.00582044 0)
(0.922354 0.00580239 0)
(0.916683 0.00580636 0)
(0.911029 0.00582801 0)
(0.905369 0.00588077 0)
(0.899701 0.0059482 0)
(0.894001 0.00606411 0)
(0.888249 0.00618388 0)
(0.88245 0.00637957 0)
(0.876517 0.00656262 0)
(0.870552 0.00683517 0)
(0.864308 0.00711713 0)
(0.858069 0.00734451 0)
(0.851333 0.0078016 0)
(0.844408 0.00765203 0)
(1.00337 0.0279718 0)
(1.03442 0.0308301 0)
(1.0497 0.0222709 0)
(1.05261 0.0191693 0)
(1.05406 0.0173684 0)
(1.056 0.0156288 0)
(1.05765 0.014375 0)
(1.05879 0.0135045 0)
(1.05951 0.0128028 0)
(1.05987 0.0121962 0)
(1.05984 0.0116677 0)
(1.05939 0.011202 0)
(1.05853 0.0107838 0)
(1.05725 0.0104026 0)
(1.05557 0.0100513 0)
(1.05351 0.00972533 0)
(1.0511 0.00942139 0)
(1.04837 0.009137 0)
(1.04534 0.00887035 0)
(1.04206 0.0086201 0)
(1.03855 0.00838527 0)
(1.03484 0.00816509 0)
(1.03096 0.00795899 0)
(1.02693 0.00776649 0)
(1.02278 0.00758722 0)
(1.01853 0.00742088 0)
(1.0142 0.00726729 0)
(1.00979 0.00712633 0)
(1.00533 0.00699805 0)
(1.00082 0.00688253 0)
(0.996278 0.00678013 0)
(0.991701 0.00669123 0)
(0.987099 0.00661648 0)
(0.982474 0.00655675 0)
(0.97783 0.00651282 0)
(0.973164 0.0064867 0)
(0.968478 0.00647834 0)
(0.963763 0.00649285 0)
(0.959022 0.00652641 0)
(0.95424 0.00659218 0)
(0.949414 0.0066754 0)
(0.944531 0.00680744 0)
(0.939574 0.00694963 0)
(0.934544 0.00716423 0)
(0.929384 0.00738061 0)
(0.924147 0.0076743 0)
(0.91869 0.00800077 0)
(0.91314 0.00827169 0)
(0.907214 0.00876186 0)
(0.901002 0.00882665 0)
(1.00301 0.0258389 0)
(1.0317 0.0297621 0)
(1.0467 0.0217158 0)
(1.04982 0.0187647 0)
(1.05124 0.017152 0)
(1.05314 0.0154963 0)
(1.05483 0.0142591 0)
(1.05608 0.0134061 0)
(1.05705 0.0127289 0)
(1.05779 0.0121475 0)
(1.05833 0.0116452 0)
(1.05863 0.0112077 0)
(1.05868 0.0108199 0)
(1.05848 0.0104704 0)
(1.05801 0.0101516 0)
(1.05729 0.00985832 0)
(1.05631 0.00958661 0)
(1.05508 0.00933362 0)
(1.05361 0.00909717 0)
(1.05192 0.0088757 0)
(1.05001 0.00866803 0)
(1.04792 0.00847336 0)
(1.04565 0.00829111 0)
(1.04321 0.00812084 0)
(1.04063 0.0079623 0)
(1.03791 0.00781529 0)
(1.03507 0.00767976 0)
(1.03213 0.00755572 0)
(1.02908 0.00744337 0)
(1.02594 0.00734294 0)
(1.02273 0.00725493 0)
(1.01944 0.00717987 0)
(1.01608 0.00711859 0)
(1.01265 0.00707214 0)
(1.00916 0.00704145 0)
(1.00561 0.00702875 0)
(1.00201 0.0070342 0)
(0.998341 0.00706307 0)
(0.994612 0.00711206 0)
(0.990814 0.0071939 0)
(0.986946 0.00729572 0)
(0.982998 0.00744599 0)
(0.978959 0.00761249 0)
(0.974826 0.00784721 0)
(0.970568 0.00809706 0)
(0.966202 0.00841358 0)
(0.961652 0.00878139 0)
(0.956957 0.00910022 0)
(0.951958 0.00962341 0)
(0.946639 0.00987262 0)
(1.00268 0.0238109 0)
(1.0291 0.0286803 0)
(1.04379 0.0211815 0)
(1.04713 0.0183571 0)
(1.04855 0.0169223 0)
(1.05042 0.0153596 0)
(1.0521 0.0141407 0)
(1.05336 0.0133005 0)
(1.05436 0.012641 0)
(1.0552 0.0120761 0)
(1.05591 0.0115889 0)
(1.05648 0.0111673 0)
(1.0569 0.0107968 0)
(1.05717 0.0104659 0)
(1.05729 0.010167 0)
(1.05724 0.00989453 0)
(1.05704 0.00964441 0)
(1.05666 0.00941343 0)
(1.05613 0.00919916 0)
(1.05543 0.00899975 0)
(1.05458 0.00881385 0)
(1.05357 0.00864048 0)
(1.05242 0.00847895 0)
(1.05113 0.0083288 0)
(1.0497 0.00818971 0)
(1.04815 0.00806151 0)
(1.04648 0.00794417 0)
(1.0447 0.00783772 0)
(1.04281 0.00774243 0)
(1.04083 0.00765859 0)
(1.03874 0.00758676 0)
(1.03657 0.00752759 0)
(1.0343 0.00748195 0)
(1.03196 0.00745107 0)
(1.02953 0.00743593 0)
(1.02702 0.00743897 0)
(1.02443 0.00746047 0)
(1.02176 0.00750581 0)
(1.01901 0.00757221 0)
(1.01618 0.00767179 0)
(1.01326 0.00779369 0)
(1.01025 0.0079632 0)
(1.00714 0.00815464 0)
(1.00393 0.00840996 0)
(1.00059 0.00869207 0)
(0.997134 0.00903252 0)
(0.99352 0.00943767 0)
(0.989737 0.00980626 0)
(0.985699 0.0103621 0)
(0.981347 0.0107661 0)
(1.00238 0.0218895 0)
(1.02663 0.027584 0)
(1.04097 0.0206677 0)
(1.04452 0.0179481 0)
(1.04596 0.0166782 0)
(1.0478 0.0152173 0)
(1.04947 0.014021 0)
(1.05073 0.0131927 0)
(1.05172 0.0125495 0)
(1.05257 0.0119984 0)
(1.05331 0.0115221 0)
(1.05394 0.0111106 0)
(1.05448 0.0107505 0)
(1.05492 0.0104305 0)
(1.05526 0.0101432 0)
(1.05551 0.00988311 0)
(1.05565 0.00964606 0)
(1.0557 0.00942882 0)
(1.05564 0.00922883 0)
(1.05548 0.00904414 0)
(1.05521 0.00887325 0)
(1.05485 0.00871509 0)
(1.05437 0.00856889 0)
(1.0538 0.00843409 0)
(1.05312 0.00831037 0)
(1.05235 0.00819749 0)
(1.05149 0.00809543 0)
(1.05052 0.00800421 0)
(1.04947 0.00792408 0)
(1.04833 0.00785537 0)
(1.04709 0.00779865 0)
(1.04577 0.00775462 0)
(1.04437 0.00772416 0)
(1.04288 0.0077086 0)
(1.04131 0.00770896 0)
(1.03966 0.00772779 0)
(1.03792 0.00776549 0)
(1.0361 0.00782743 0)
(1.0342 0.00791134 0)
(1.03221 0.00802862 0)
(1.03012 0.00817045 0)
(1.02795 0.00835882 0)
(1.02568 0.00857429 0)
(1.0233 0.00884959 0)
(1.02081 0.00916135 0)
(1.0182 0.0095257 0)
(1.01546 0.00996351 0)
(1.01254 0.010381 0)
(1.00941 0.0109684 0)
(1.00599 0.0114991 0)
(1.0021 0.0200756 0)
(1.0243 0.026475 0)
(1.03824 0.0201721 0)
(1.042 0.0175397 0)
(1.04346 0.0164195 0)
(1.04526 0.0150679 0)
(1.04694 0.0138995 0)
(1.0482 0.0130833 0)
(1.04918 0.0124561 0)
(1.05001 0.0119188 0)
(1.05074 0.0114525 0)
(1.05138 0.0110492 0)
(1.05193 0.0106968 0)
(1.05241 0.0103844 0)
(1.05282 0.0101045 0)
(1.05317 0.00985202 0)
(1.05345 0.00962291 0)
(1.05366 0.00941398 0)
(1.05381 0.0092227 0)
(1.05389 0.00904709 0)
(1.05391 0.00888565 0)
(1.05387 0.00873728 0)
(1.05375 0.00860117 0)
(1.05357 0.00847679 0)
(1.05332 0.00836377 0)
(1.05301 0.00826188 0)
(1.05262 0.00817109 0)
(1.05217 0.00809141 0)
(1.05164 0.0080231 0)
(1.05105 0.00796649 0)
(1.05038 0.00792214 0)
(1.04965 0.00789078 0)
(1.04884 0.00787329 0)
(1.04796 0.00787107 0)
(1.04701 0.00788512 0)
(1.04599 0.00791808 0)
(1.04489 0.00797045 0)
(1.04371 0.00804748 0)
(1.04245 0.00814749 0)
(1.04112 0.00828095 0)
(1.0397 0.0084411 0)
(1.0382 0.00864668 0)
(1.0366 0.00888392 0)
(1.03491 0.00917756 0)
(1.03313 0.00951524 0)
(1.03123 0.00990228 0)
(1.02922 0.0103677 0)
(1.02705 0.0108308 0)
(1.0247 0.0114477 0)
(1.0221 0.0120795 0)
(1.00185 0.0183694 0)
(1.0221 0.0253574 0)
(1.03561 0.0196911 0)
(1.03956 0.0171336 0)
(1.04105 0.0161469 0)
(1.04282 0.0149107 0)
(1.04449 0.0137756 0)
(1.04575 0.0129718 0)
(1.04672 0.012361 0)
(1.04754 0.0118381 0)
(1.04826 0.011382 0)
(1.04889 0.0109867 0)
(1.04943 0.0106412 0)
(1.04991 0.0103352 0)
(1.05033 0.0100612 0)
(1.05069 0.00981432 0)
(1.05101 0.00959071 0)
(1.05127 0.00938729 0)
(1.0515 0.00920159 0)
(1.05167 0.00903171 0)
(1.05181 0.00887617 0)
(1.0519 0.0087339 0)
(1.05194 0.00860414 0)
(1.05195 0.00848639 0)
(1.05191 0.0083803 0)
(1.05182 0.00828571 0)
(1.05169 0.00820256 0)
(1.05151 0.00813092 0)
(1.05129 0.00807104 0)
(1.05101 0.00802328 0)
(1.05068 0.00798819 0)
(1.0503 0.00796655 0)
(1.04986 0.00795922 0)
(1.04937 0.00796764 0)
(1.04881 0.00799282 0)
(1.0482 0.00803745 0)
(1.04752 0.0081021 0)
(1.04678 0.00819188 0)
(1.04598 0.00830567 0)
(1.0451 0.00845297 0)
(1.04416 0.00862898 0)
(1.04314 0.00884938 0)
(1.04205 0.00910533 0)
(1.04087 0.009415 0)
(1.03961 0.00977436 0)
(1.03825 0.010182 0)
(1.0368 0.0106701 0)
(1.03521 0.0111739 0)
(1.03347 0.0118178 0)
(1.03152 0.0125281 0)
(1.00162 0.0167708 0)
(1.02003 0.0242354 0)
(1.03308 0.0192206 0)
(1.03721 0.0167313 0)
(1.03873 0.0158616 0)
(1.04046 0.014745 0)
(1.04213 0.0136492 0)
(1.0434 0.0128584 0)
(1.04436 0.0122638 0)
(1.04517 0.011756 0)
(1.04587 0.0113108 0)
(1.04648 0.0109237 0)
(1.04702 0.0105852 0)
(1.04748 0.0102853 0)
(1.04789 0.0100168 0)
(1.04825 0.00977496 0)
(1.04857 0.00955598 0)
(1.04884 0.00935693 0)
(1.04908 0.00917545 0)
(1.04928 0.00900967 0)
(1.04945 0.0088582 0)
(1.04959 0.00872003 0)
(1.04969 0.00859445 0)
(1.04977 0.00848102 0)
(1.04981 0.00837947 0)
(1.04983 0.00828966 0)
(1.04982 0.00821161 0)
(1.04977 0.00814543 0)
(1.04968 0.00809139 0)
(1.04957 0.00804989 0)
(1.04941 0.00802148 0)
(1.04922 0.008007 0)
(1.04898 0.00800729 0)
(1.0487 0.00802386 0)
(1.04838 0.00805772 0)
(1.048 0.00811155 0)
(1.04758 0.00818608 0)
(1.04711 0.00828617 0)
(1.04658 0.00841129 0)
(1.046 0.00856995 0)
(1.04536 0.00875918 0)
(1.04466 0.0089919 0)
(1.04389 0.00926338 0)
(1.04306 0.00958668 0)
(1.04216 0.00996359 0)
(1.04117 0.0103894 0)
(1.04011 0.0108959 0)
(1.03894 0.0114348 0)
(1.03763 0.0121029 0)
(1.03617 0.0128729 0)
(1.00142 0.0152788 0)
(1.01811 0.0231132 0)
(1.03065 0.0187565 0)
(1.03495 0.0163345 0)
(1.0365 0.0155647 0)
(1.0382 0.0145701 0)
(1.03986 0.0135198 0)
(1.04113 0.0127429 0)
(1.04209 0.0121644 0)
(1.04288 0.0116725 0)
(1.04357 0.0112387 0)
(1.04417 0.0108602 0)
(1.0447 0.0105289 0)
(1.04515 0.0102353 0)
(1.04555 0.00997241 0)
(1.0459 0.00973545 0)
(1.0462 0.0095209 0)
(1.04647 0.00932591 0)
(1.0467 0.00914818 0)
(1.0469 0.00898591 0)
(1.04707 0.00883777 0)
(1.04722 0.00870281 0)
(1.04734 0.00858039 0)
(1.04744 0.00847013 0)
(1.04751 0.00837185 0)
(1.04756 0.00828547 0)
(1.04759 0.00821106 0)
(1.04759 0.00814879 0)
(1.04757 0.00809896 0)
(1.04752 0.00806203 0)
(1.04744 0.00803858 0)
(1.04733 0.00802948 0)
(1.04719 0.00803559 0)
(1.04702 0.00805846 0)
(1.04681 0.00809912 0)
(1.04656 0.00816025 0)
(1.04628 0.00824271 0)
(1.04595 0.00835112 0)
(1.04558 0.00848553 0)
(1.04516 0.00865349 0)
(1.04469 0.00885363 0)
(1.04418 0.00909656 0)
(1.04361 0.00938078 0)
(1.04298 0.00971565 0)
(1.0423 0.0101067 0)
(1.04155 0.0105484 0)
(1.04074 0.0110698 0)
(1.03984 0.0116386 0)
(1.03882 0.0123281 0)
(1.03768 0.0131427 0)
(1.00124 0.0138923 0)
(1.01632 0.0219947 0)
(1.02833 0.0182952 0)
(1.03277 0.0159442 0)
(1.03437 0.0152581 0)
(1.03603 0.0143856 0)
(1.03768 0.0133872 0)
(1.03895 0.0126255 0)
(1.0399 0.0120629 0)
(1.04069 0.0115873 0)
(1.04137 0.0111657 0)
(1.04196 0.0107961 0)
(1.04247 0.0104722 0)
(1.04291 0.0101852 0)
(1.0433 0.00992803 0)
(1.04364 0.00969611 0)
(1.04393 0.00948606 0)
(1.04419 0.00929512 0)
(1.04441 0.00912107 0)
(1.0446 0.00896217 0)
(1.04477 0.00881714 0)
(1.04491 0.00868509 0)
(1.04502 0.00856545 0)
(1.04512 0.00845791 0)
(1.0452 0.00836236 0)
(1.04525 0.00827879 0)
(1.04529 0.00820733 0)
(1.04531 0.0081482 0)
(1.0453 0.00810177 0)
(1.04528 0.00806851 0)
(1.04523 0.00804906 0)
(1.04515 0.00804432 0)
(1.04505 0.00805518 0)
(1.04492 0.00808321 0)
(1.04476 0.0081295 0)
(1.04457 0.00819667 0)
(1.04435 0.00828579 0)
(1.04409 0.00840117 0)
(1.0438 0.00854343 0)
(1.04346 0.00871924 0)
(1.04309 0.00892862 0)
(1.04267 0.00918027 0)
(1.04221 0.00947511 0)
(1.0417 0.00982006 0)
(1.04114 0.0102226 0)
(1.04053 0.0106784 0)
(1.03986 0.0112124 0)
(1.03911 0.0118064 0)
(1.03828 0.012515 0)
(1.03734 0.013363 0)
(1.00107 0.012609 0)
(1.01466 0.020884 0)
(1.02612 0.0178331 0)
(1.03068 0.0155614 0)
(1.03234 0.0149434 0)
(1.03395 0.0141911 0)
(1.03559 0.0132507 0)
(1.03686 0.0125062 0)
(1.03781 0.0119592 0)
(1.03858 0.0115004 0)
(1.03925 0.0110916 0)
(1.03983 0.0107313 0)
(1.04033 0.0104152 0)
(1.04077 0.0101349 0)
(1.04114 0.00988368 0)
(1.04147 0.00965697 0)
(1.04175 0.00945153 0)
(1.042 0.00926474 0)
(1.04221 0.00909443 0)
(1.04239 0.00893893 0)
(1.04255 0.008797 0)
(1.04268 0.00866781 0)
(1.04279 0.00855087 0)
(1.04288 0.00844593 0)
(1.04295 0.00835294 0)
(1.04301 0.00827197 0)
(1.04304 0.00820321 0)
(1.04306 0.00814693 0)
(1.04305 0.00810354 0)
(1.04303 0.00807358 0)
(1.04299 0.00805769 0)
(1.04292 0.00805682 0)
(1.04283 0.00807191 0)
(1.04272 0.00810453 0)
(1.04257 0.00815584 0)
(1.04241 0.00822839 0)
(1.04221 0.00832344 0)
(1.04198 0.00844502 0)
(1.04171 0.00859426 0)
(1.04142 0.00877709 0)
(1.04108 0.00899461 0)
(1.04071 0.0092541 0)
(1.0403 0.00955816 0)
(1.03985 0.00991227 0)
(1.03936 0.0103247 0)
(1.03882 0.0107932 0)
(1.03823 0.0113385 0)
(1.03757 0.0119539 0)
(1.03684 0.0126798 0)
(1.03602 0.0135528 0)
(1.00093 0.0114263 0)
(1.01313 0.0197851 0)
(1.02403 0.0173673 0)
(1.02868 0.0151867 0)
(1.03039 0.0146227 0)
(1.03197 0.0139861 0)
(1.03358 0.0131099 0)
(1.03486 0.0123849 0)
(1.03581 0.0118533 0)
(1.03657 0.0114115 0)
(1.03723 0.0110163 0)
(1.0378 0.0106659 0)
(1.03829 0.0103578 0)
(1.03872 0.0100844 0)
(1.03908 0.00983931 0)
(1.0394 0.00961797 0)
(1.03967 0.0094173 0)
(1.03991 0.00923478 0)
(1.04011 0.00906831 0)
(1.04028 0.00891629 0)
(1.04043 0.00877752 0)
(1.04055 0.00865124 0)
(1.04065 0.00853702 0)
(1.04074 0.00843468 0)
(1.0408 0.00834424 0)
(1.04085 0.00826584 0)
(1.04088 0.00819972 0)
(1.04089 0.00814622 0)
(1.04088 0.00810578 0)
(1.04085 0.00807899 0)
(1.04081 0.00806652 0)
(1.04074 0.00806936 0)
(1.04065 0.00808849 0)
(1.04054 0.00812546 0)
(1.0404 0.00818153 0)
(1.04023 0.00825917 0)
(1.04004 0.00835982 0)
(1.03982 0.00848725 0)
(1.03957 0.00864302 0)
(1.03929 0.00883245 0)
(1.03897 0.00905749 0)
(1.03862 0.00932439 0)
(1.03824 0.00963683 0)
(1.03781 0.00999961 0)
(1.03735 0.010421 0)
(1.03685 0.0109013 0)
(1.0363 0.0114572 0)
(1.03569 0.0120911 0)
(1.03502 0.0128328 0)
(1.03428 0.013725 0)
(1.0008 0.0103411 0)
(1.01173 0.0187023 0)
(1.02204 0.0168951 0)
(1.02677 0.0148204 0)
(1.02854 0.014298 0)
(1.03008 0.0137707 0)
(1.03166 0.0129641 0)
(1.03294 0.0122617 0)
(1.03389 0.0117453 0)
(1.03465 0.0113207 0)
(1.0353 0.0109397 0)
(1.03586 0.0105997 0)
(1.03634 0.0102998 0)
(1.03676 0.0100337 0)
(1.03711 0.00979486 0)
(1.03742 0.00957908 0)
(1.03768 0.00938332 0)
(1.03791 0.00920519 0)
(1.0381 0.00904268 0)
(1.03827 0.00889422 0)
(1.03841 0.00875869 0)
(1.03852 0.00863539 0)
(1.03862 0.00852394 0)
(1.03869 0.00842426 0)
(1.03875 0.00833641 0)
(1.03879 0.00826062 0)
(1.03881 0.00819717 0)
(1.03881 0.00814647 0)
(1.0388 0.00810899 0)
(1.03877 0.00808536 0)
(1.03872 0.00807631 0)
(1.03864 0.00808284 0)
(1.03855 0.00810596 0)
(1.03843 0.00814725 0)
(1.03829 0.008208 0)
(1.03813 0.00829064 0)
(1.03794 0.00839677 0)
(1.03772 0.00852992 0)
(1.03747 0.00869204 0)
(1.03719 0.00888792 0)
(1.03688 0.00912017 0)
(1.03654 0.00939431 0)
(1.03617 0.00971467 0)
(1.03576 0.0100859 0)
(1.03531 0.0105158 0)
(1.03483 0.0110071 0)
(1.0343 0.0115734 0)
(1.03372 0.0122235 0)
(1.03309 0.0129798 0)
(1.03239 0.0138871 0)
(1.00069 0.00934948 0)
(1.01045 0.0176395 0)
(1.02017 0.016414 0)
(1.02494 0.0144623 0)
(1.02678 0.0139714 0)
(1.02828 0.0135451 0)
(1.02984 0.0128127 0)
(1.03112 0.0121365 0)
(1.03207 0.0116352 0)
(1.03282 0.0112277 0)
(1.03346 0.0108617 0)
(1.03401 0.0105325 0)
(1.03449 0.0102412 0)
(1.03489 0.00998253 0)
(1.03524 0.00975026 0)
(1.03554 0.00954023 0)
(1.03579 0.00934955 0)
(1.03601 0.00917594 0)
(1.0362 0.0090175 0)
(1.03635 0.0088727 0)
(1.03648 0.0087405 0)
(1.03659 0.00862025 0)
(1.03668 0.00851165 0)
(1.03674 0.00841467 0)
(1.03679 0.00832948 0)
(1.03683 0.00825634 0)
(1.03684 0.00819562 0)
(1.03684 0.00814776 0)
(1.03682 0.00811329 0)
(1.03678 0.00809288 0)
(1.03672 0.00808728 0)
(1.03665 0.00809754 0)
(1.03655 0.00812469 0)
(1.03643 0.00817031 0)
(1.03629 0.00823577 0)
(1.03612 0.00832341 0)
(1.03593 0.008435 0)
(1.03571 0.00857386 0)
(1.03546 0.00874224 0)
(1.03518 0.00894455 0)
(1.03488 0.00918383 0)
(1.03454 0.00946518 0)
(1.03417 0.00979321 0)
(1.03377 0.0101727 0)
(1.03333 0.010611 0)
(1.03286 0.0111129 0)
(1.03235 0.0116893 0)
(1.03179 0.0123538 0)
(1.03118 0.0131236 0)
(1.03052 0.014043 0)
(1.0006 0.00844712 0)
(1.00929 0.0166008 0)
(1.01841 0.0159224 0)
(1.02319 0.0141123 0)
(1.02511 0.0136446 0)
(1.02658 0.0133098 0)
(1.0281 0.0126552 0)
(1.02937 0.012009 0)
(1.03033 0.011523 0)
(1.03108 0.0111326 0)
(1.03171 0.010782 0)
(1.03225 0.0104644 0)
(1.03272 0.010182 0)
(1.03312 0.00993096 0)
(1.03346 0.00970545 0)
(1.03375 0.00950135 0)
(1.03399 0.00931591 0)
(1.0342 0.00914697 0)
(1.03438 0.00899271 0)
(1.03453 0.00885168 0)
(1.03465 0.0087229 0)
(1.03475 0.00860577 0)
(1.03483 0.00850008 0)
(1.03489 0.00840589 0)
(1.03494 0.0083234 0)
(1.03496 0.00825299 0)
(1.03497 0.00819505 0)
(1.03496 0.00815009 0)
(1.03494 0.00811869 0)
(1.0349 0.00810155 0)
(1.03483 0.00809947 0)
(1.03475 0.00811351 0)
(1.03465 0.00814474 0)
(1.03453 0.00819474 0)
(1.03438 0.00826494 0)
(1.03421 0.00835763 0)
(1.03402 0.00847469 0)
(1.0338 0.0086193 0)
(1.03355 0.00879391 0)
(1.03327 0.00900267 0)
(1.03297 0.0092489 0)
(1.03263 0.00953744 0)
(1.03227 0.00987302 0)
(1.03187 0.0102608 0)
(1.03145 0.0107073 0)
(1.03098 0.0112192 0)
(1.03048 0.0118057 0)
(1.02994 0.0124832 0)
(1.02936 0.0132652 0)
(1.02873 0.0141943 0)
(1.00051 0.00762928 0)
(1.00824 0.0155902 0)
(1.01677 0.015419 0)
(1.02153 0.0137696 0)
(1.02352 0.0133195 0)
(1.02496 0.0130654 0)
(1.02645 0.012491 0)
(1.02772 0.0118789 0)
(1.02867 0.0114087 0)
(1.02942 0.0110352 0)
(1.03004 0.0107006 0)
(1.03058 0.0103951 0)
(1.03104 0.010122 0)
(1.03143 0.00987887 0)
(1.03176 0.00966034 0)
(1.03204 0.00946238 0)
(1.03228 0.00928235 0)
(1.03249 0.00911822 0)
(1.03266 0.00896827 0)
(1.0328 0.00883111 0)
(1.03292 0.00870583 0)
(1.03301 0.00859191 0)
(1.03308 0.00848921 0)
(1.03314 0.00839786 0)
(1.03318 0.00831815 0)
(1.0332 0.00825051 0)
(1.0332 0.00819542 0)
(1.03319 0.00815343 0)
(1.03316 0.00812515 0)
(1.03311 0.00811135 0)
(1.03304 0.00811284 0)
(1.03296 0.00813072 0)
(1.03285 0.00816609 0)
(1.03273 0.00822052 0)
(1.03258 0.00829552 0)
(1.0324 0.0083933 0)
(1.03221 0.00851586 0)
(1.03199 0.00866624 0)
(1.03174 0.00884707 0)
(1.03147 0.00906229 0)
(1.03116 0.00931541 0)
(1.03083 0.00961114 0)
(1.03047 0.00995417 0)
(1.03008 0.01035 0)
(1.02966 0.0108047 0)
(1.02921 0.0113263 0)
(1.02872 0.0119226 0)
(1.0282 0.0126116 0)
(1.02764 0.0134046 0)
(1.02704 0.0143416 0)
(1.00044 0.00689078 0)
(1.0073 0.0146114 0)
(1.01523 0.0149031 0)
(1.01995 0.0134333 0)
(1.02201 0.0129977 0)
(1.02343 0.012813 0)
(1.02488 0.0123197 0)
(1.02614 0.0117461 0)
(1.0271 0.0112926 0)
(1.02784 0.0109356 0)
(1.02846 0.0106173 0)
(1.02899 0.0103246 0)
(1.02944 0.0100612 0)
(1.02983 0.0098262 0)
(1.03015 0.00961486 0)
(1.03043 0.00942324 0)
(1.03066 0.0092488 0)
(1.03086 0.00908963 0)
(1.03102 0.0089441 0)
(1.03116 0.00881093 0)
(1.03127 0.00868924 0)
(1.03136 0.00857861 0)
(1.03143 0.00847897 0)
(1.03147 0.00839053 0)
(1.03151 0.00831367 0)
(1.03152 0.00824887 0)
(1.03152 0.00819668 0)
(1.0315 0.00815772 0)
(1.03147 0.00813263 0)
(1.03142 0.00812222 0)
(1.03135 0.00812735 0)
(1.03126 0.00814912 0)
(1.03115 0.00818868 0)
(1.03102 0.0082476 0)
(1.03087 0.00832743 0)
(1.0307 0.00843035 0)
(1.0305 0.00855843 0)
(1.03028 0.00871462 0)
(1.03003 0.00890165 0)
(1.02976 0.00912335 0)
(1.02946 0.00938328 0)
(1.02913 0.00968616 0)
(1.02878 0.0100365 0)
(1.0284 0.0104403 0)
(1.02798 0.0109031 0)
(1.02754 0.0114339 0)
(1.02707 0.0120396 0)
(1.02656 0.0127391 0)
(1.02603 0.0135417 0)
(1.02546 0.014485 0)
(1.00038 0.00622617 0)
(1.00645 0.0136678 0)
(1.01381 0.0143747 0)
(1.01846 0.0131023 0)
(1.02058 0.0126804 0)
(1.02199 0.0125538 0)
(1.02339 0.0121409 0)
(1.02464 0.0116099 0)
(1.0256 0.0111744 0)
(1.02634 0.0108337 0)
(1.02696 0.0105321 0)
(1.02748 0.0102527 0)
(1.02793 0.00999947 0)
(1.02831 0.00977285 0)
(1.02863 0.00956891 0)
(1.0289 0.00938385 0)
(1.02913 0.00921518 0)
(1.02932 0.00906112 0)
(1.02948 0.00892016 0)
(1.02961 0.00879107 0)
(1.02971 0.00867308 0)
(1.02979 0.00856582 0)
(1.02986 0.00846932 0)
(1.0299 0.00838386 0)
(1.02993 0.0083099 0)
(1.02994 0.00824801 0)
(1.02993 0.00819879 0)
(1.02991 0.0081629 0)
(1.02987 0.00814107 0)
(1.02982 0.00813411 0)
(1.02975 0.00814293 0)
(1.02965 0.00816864 0)
(1.02954 0.00821245 0)
(1.02941 0.00827591 0)
(1.02926 0.00836061 0)
(1.02909 0.0084687 0)
(1.02889 0.00860231 0)
(1.02867 0.00876432 0)
(1.02842 0.00895754 0)
(1.02815 0.00918569 0)
(1.02786 0.00945238 0)
(1.02754 0.00976232 0)
(1.02719 0.01012 0)
(1.02681 0.0105315 0)
(1.02641 0.0110021 0)
(1.02598 0.0115416 0)
(1.02552 0.0121563 0)
(1.02504 0.0128651 0)
(1.02452 0.013676 0)
(1.02399 0.014624 0)
(1.00032 0.00562981 0)
(1.0057 0.0127627 0)
(1.01249 0.0138347 0)
(1.01704 0.0127746 0)
(1.01923 0.0123686 0)
(1.02062 0.0122891 0)
(1.02199 0.0119545 0)
(1.02322 0.0114701 0)
(1.02419 0.0110543 0)
(1.02493 0.0107296 0)
(1.02553 0.0104447 0)
(1.02605 0.0101793 0)
(1.02649 0.00993666 0)
(1.02687 0.00971873 0)
(1.02718 0.00952242 0)
(1.02745 0.00934412 0)
(1.02767 0.00918142 0)
(1.02786 0.00903262 0)
(1.02801 0.00889635 0)
(1.02813 0.00877147 0)
(1.02824 0.00865727 0)
(1.02831 0.00855347 0)
(1.02837 0.00846018 0)
(1.02841 0.00837777 0)
(1.02844 0.00830679 0)
(1.02844 0.00824786 0)
(1.02843 0.00820167 0)
(1.02841 0.00816893 0)
(1.02837 0.00815039 0)
(1.02831 0.00814694 0)
(1.02823 0.0081595 0)
(1.02814 0.00818922 0)
(1.02803 0.00823732 0)
(1.0279 0.00830536 0)
(1.02774 0.00839496 0)
(1.02757 0.00850825 0)
(1.02737 0.0086474 0)
(1.02715 0.00881523 0)
(1.02691 0.00901459 0)
(1.02664 0.00924916 0)
(1.02635 0.00952252 0)
(1.02604 0.00983943 0)
(1.0257 0.0102042 0)
(1.02533 0.0106232 0)
(1.02494 0.0111016 0)
(1.02452 0.0116492 0)
(1.02408 0.0122722 0)
(1.02361 0.0129892 0)
(1.02313 0.0138072 0)
(1.02263 0.0147585 0)
(1.00028 0.00509599 0)
(1.00503 0.0118986 0)
(1.01127 0.0132855 0)
(1.01571 0.012448 0)
(1.01794 0.0120627 0)
(1.01933 0.0120205 0)
(1.02066 0.0117605 0)
(1.02188 0.0113261 0)
(1.02284 0.010932 0)
(1.02358 0.0106232 0)
(1.02418 0.0103551 0)
(1.0247 0.0101042 0)
(1.02513 0.00987268 0)
(1.0255 0.00966374 0)
(1.02581 0.00947529 0)
(1.02607 0.00930396 0)
(1.02629 0.00914741 0)
(1.02647 0.00900405 0)
(1.02662 0.00887261 0)
(1.02674 0.00875205 0)
(1.02684 0.00864175 0)
(1.02691 0.0085415 0)
(1.02697 0.00845149 0)
(1.02701 0.00837221 0)
(1.02703 0.00830426 0)
(1.02703 0.00824836 0)
(1.02702 0.00820525 0)
(1.02699 0.00817571 0)
(1.02695 0.00816054 0)
(1.02689 0.00816065 0)
(1.02681 0.00817701 0)
(1.02671 0.00821077 0)
(1.0266 0.00826321 0)
(1.02647 0.00833585 0)
(1.02631 0.00843038 0)
(1.02614 0.00854889 0)
(1.02595 0.00869356 0)
(1.02573 0.0088672 0)
(1.02549 0.00907266 0)
(1.02523 0.00931358 0)
(1.02494 0.00959353 0)
(1.02463 0.00991725 0)
(1.0243 0.010289 0)
(1.02394 0.0107153 0)
(1.02356 0.011201 0)
(1.02316 0.0117563 0)
(1.02273 0.0123869 0)
(1.02229 0.013111 0)
(1.02183 0.0139346 0)
(1.02136 0.0148879 0)
(1.00024 0.00461905 0)
(1.00443 0.0110776 0)
(1.01016 0.0127304 0)
(1.01445 0.0121201 0)
(1.01673 0.0117627 0)
(1.01812 0.0117494 0)
(1.0194 0.0115591 0)
(1.0206 0.0111775 0)
(1.02157 0.0108075 0)
(1.02231 0.0105147 0)
(1.0229 0.0102632 0)
(1.02341 0.0100272 0)
(1.02385 0.00980742 0)
(1.02421 0.00960781 0)
(1.02452 0.00942743 0)
(1.02477 0.00926328 0)
(1.02499 0.00911308 0)
(1.02517 0.00897533 0)
(1.02531 0.00884886 0)
(1.02543 0.00873274 0)
(1.02552 0.00862643 0)
(1.02559 0.00852982 0)
(1.02564 0.00844318 0)
(1.02568 0.00836709 0)
(1.0257 0.00830224 0)
(1.0257 0.00824944 0)
(1.02568 0.00820948 0)
(1.02565 0.00818319 0)
(1.02561 0.00817144 0)
(1.02554 0.00817515 0)
(1.02547 0.00819535 0)
(1.02537 0.00823321 0)
(1.02526 0.00829 0)
(1.02512 0.00836729 0)
(1.02497 0.00846676 0)
(1.0248 0.00859048 0)
(1.02461 0.00874067 0)
(1.02439 0.00892009 0)
(1.02416 0.00913158 0)
(1.0239 0.00937877 0)
(1.02362 0.00966517 0)
(1.02332 0.00999555 0)
(1.02299 0.0103741 0)
(1.02265 0.0108073 0)
(1.02228 0.0113 0)
(1.02189 0.0118623 0)
(1.02149 0.0124998 0)
(1.02106 0.0132299 0)
(1.02063 0.0140579 0)
(1.02019 0.0150117 0)
(1.00021 0.00419345 0)
(1.00391 0.0103012 0)
(1.00914 0.0121727 0)
(1.01327 0.0117888 0)
(1.01558 0.0114681 0)
(1.01697 0.0114772 0)
(1.01822 0.0113509 0)
(1.01939 0.0110238 0)
(1.02036 0.0106806 0)
(1.0211 0.0104041 0)
(1.02169 0.010169 0)
(1.0222 0.00994837 0)
(1.02263 0.00974074 0)
(1.02299 0.00955081 0)
(1.02329 0.00937874 0)
(1.02355 0.00922199 0)
(1.02376 0.00907833 0)
(1.02393 0.00894636 0)
(1.02407 0.008825 0)
(1.02419 0.00871345 0)
(1.02428 0.00861124 0)
(1.02435 0.00851836 0)
(1.02439 0.00843517 0)
(1.02443 0.00836234 0)
(1.02444 0.00830067 0)
(1.02444 0.00825101 0)
(1.02442 0.00821425 0)
(1.02439 0.00819128 0)
(1.02434 0.00818299 0)
(1.02428 0.00819036 0)
(1.0242 0.00821444 0)
(1.0241 0.00825642 0)
(1.02399 0.00831761 0)
(1.02386 0.00839956 0)
(1.02371 0.00850397 0)
(1.02354 0.0086329 0)
(1.02335 0.00878857 0)
(1.02314 0.00897371 0)
(1.0229 0.00919117 0)
(1.02265 0.00944451 0)
(1.02238 0.00973723 0)
(1.02209 0.0100741 0)
(1.02177 0.0104591 0)
(1.02144 0.0108989 0)
(1.02108 0.0113981 0)
(1.02071 0.0119669 0)
(1.02033 0.0126105 0)
(1.01993 0.0133455 0)
(1.01952 0.0141764 0)
(1.01912 0.0151294 0)
(1.00018 0.00381387 0)
(1.00344 0.00957038 0)
(1.00821 0.0116158 0)
(1.01217 0.0114526 0)
(1.01449 0.0111784 0)
(1.01589 0.0112055 0)
(1.01711 0.0111363 0)
(1.01825 0.0108646 0)
(1.01921 0.0105511 0)
(1.01995 0.0102913 0)
(1.02055 0.0100725 0)
(1.02105 0.00986744 0)
(1.02147 0.00967252 0)
(1.02183 0.00949266 0)
(1.02213 0.00932914 0)
(1.02238 0.00917998 0)
(1.02259 0.00904308 0)
(1.02276 0.00891706 0)
(1.0229 0.00880097 0)
(1.02301 0.0086941 0)
(1.0231 0.0085961 0)
(1.02317 0.00850704 0)
(1.02321 0.00842738 0)
(1.02324 0.00835789 0)
(1.02326 0.00829945 0)
(1.02325 0.00825301 0)
(1.02323 0.0082195 0)
(1.0232 0.00819989 0)
(1.02315 0.00819511 0)
(1.02309 0.00820619 0)
(1.02301 0.00823418 0)
(1.02291 0.00828032 0)
(1.0228 0.00834592 0)
(1.02267 0.00843254 0)
(1.02252 0.00854188 0)
(1.02235 0.008676 0)
(1.02217 0.00883711 0)
(1.02196 0.00902791 0)
(1.02173 0.00925122 0)
(1.02149 0.00951058 0)
(1.02122 0.00980944 0)
(1.02094 0.0101525 0)
(1.02063 0.0105438 0)
(1.02031 0.0109897 0)
(1.01997 0.0114951 0)
(1.01962 0.0120696 0)
(1.01926 0.0127183 0)
(1.01888 0.0134571 0)
(1.0185 0.0142897 0)
(1.01813 0.0152404 0)
(1.00016 0.00347529 0)
(1.00304 0.00888548 0)
(1.00737 0.011063 0)
(1.01114 0.0111104 0)
(1.01346 0.0108928 0)
(1.01487 0.0109352 0)
(1.01605 0.0109164 0)
(1.01717 0.0106999 0)
(1.01812 0.0104185 0)
(1.01887 0.0101765 0)
(1.01946 0.00997365 0)
(1.01996 0.00978436 0)
(1.02038 0.00960263 0)
(1.02074 0.00943325 0)
(1.02103 0.00927854 0)
(1.02128 0.00913718 0)
(1.02149 0.00900722 0)
(1.02166 0.00888733 0)
(1.02179 0.00877666 0)
(1.0219 0.00867461 0)
(1.02199 0.00858092 0)
(1.02205 0.00849577 0)
(1.0221 0.00841973 0)
(1.02213 0.00835365 0)
(1.02214 0.0082985 0)
(1.02213 0.00825533 0)
(1.02211 0.00822514 0)
(1.02208 0.00820893 0)
(1.02203 0.00820771 0)
(1.02197 0.00822252 0)
(1.02189 0.00825447 0)
(1.02179 0.00830478 0)
(1.02168 0.0083748 0)
(1.02155 0.00846609 0)
(1.02141 0.00858035 0)
(1.02124 0.00871962 0)
(1.02106 0.00888611 0)
(1.02086 0.00908248 0)
(1.02064 0.00931153 0)
(1.0204 0.00957675 0)
(1.02014 0.00988155 0)
(1.01987 0.0102305 0)
(1.01957 0.0106277 0)
(1.01927 0.0110795 0)
(1.01894 0.0115903 0)
(1.01861 0.0121698 0)
(1.01827 0.0128228 0)
(1.01792 0.0135642 0)
(1.01757 0.0143971 0)
(1.01723 0.0153443 0)
(1.00014 0.00317306 0)
(1.00268 0.00824622 0)
(1.00661 0.0105174 0)
(1.01018 0.0107618 0)
(1.01248 0.0106104 0)
(1.0139 0.0106672 0)
(1.01507 0.010692 0)
(1.01616 0.0105296 0)
(1.0171 0.0102826 0)
(1.01784 0.0100595 0)
(1.01843 0.00987257 0)
(1.01892 0.00969904 0)
(1.01934 0.00953094 0)
(1.0197 0.00937247 0)
(1.01999 0.00922684 0)
(1.02024 0.00909349 0)
(1.02044 0.00897066 0)
(1.02061 0.00885709 0)
(1.02075 0.00875198 0)
(1.02085 0.00865488 0)
(1.02094 0.00856562 0)
(1.021 0.00848448 0)
(1.02104 0.00841213 0)
(1.02107 0.00834953 0)
(1.02108 0.00829774 0)
(1.02108 0.0082579 0)
(1.02106 0.00823107 0)
(1.02102 0.00821831 0)
(1.02098 0.00822069 0)
(1.02091 0.00823926 0)
(1.02083 0.00827518 0)
(1.02074 0.00832969 0)
(1.02063 0.00840414 0)
(1.0205 0.00850008 0)
(1.02036 0.00861923 0)
(1.0202 0.0087636 0)
(1.02002 0.00893538 0)
(1.01982 0.00913722 0)
(1.01961 0.00937186 0)
(1.01938 0.00964276 0)
(1.01913 0.00995326 0)
(1.01887 0.0103079 0)
(1.01859 0.0107106 0)
(1.0183 0.0111676 0)
(1.01799 0.0116834 0)
(1.01767 0.0122671 0)
(1.01735 0.0129234 0)
(1.01703 0.0136662 0)
(1.01671 0.0144981 0)
(1.01641 0.0154403 0)
(1.00012 0.00290291 0)
(1.00237 0.00765175 0)
(1.00592 0.00998195 0)
(1.00929 0.0104071 0)
(1.01157 0.0103302 0)
(1.013 0.0104022 0)
(1.01413 0.0104642 0)
(1.01519 0.0103537 0)
(1.01612 0.0101432 0)
(1.01687 0.00994035 0)
(1.01746 0.00976925 0)
(1.01795 0.00961145 0)
(1.01836 0.00945734 0)
(1.01871 0.0093102 0)
(1.01901 0.00917396 0)
(1.01925 0.00904881 0)
(1.01946 0.00893331 0)
(1.01962 0.00882623 0)
(1.01976 0.00872686 0)
(1.01986 0.00863483 0)
(1.01994 0.0085501 0)
(1.02001 0.00847306 0)
(1.02005 0.00840449 0)
(1.02008 0.00834544 0)
(1.02009 0.00829708 0)
(1.02008 0.00826061 0)
(1.02006 0.00823719 0)
(1.02003 0.00822793 0)
(1.01998 0.00823393 0)
(1.01992 0.0082563 0)
(1.01984 0.00829621 0)
(1.01975 0.00835491 0)
(1.01964 0.00843378 0)
(1.01952 0.00853435 0)
(1.01938 0.00865834 0)
(1.01922 0.00880775 0)
(1.01905 0.00898473 0)
(1.01886 0.0091919 0)
(1.01865 0.00943198 0)
(1.01843 0.00970834 0)
(1.01819 0.0100243 0)
(1.01794 0.0103842 0)
(1.01767 0.0107921 0)
(1.01739 0.0112538 0)
(1.01711 0.0117739 0)
(1.01681 0.012361 0)
(1.01651 0.0130195 0)
(1.01621 0.0137625 0)
(1.01592 0.0145921 0)
(1.01566 0.0155279 0)
(1.00011 0.00266101 0)
(1.00209 0.00710067 0)
(1.00531 0.00945952 0)
(1.00846 0.0100469 0)
(1.0107 0.0100511 0)
(1.01214 0.0101405 0)
(1.01325 0.0102341 0)
(1.01428 0.0101725 0)
(1.0152 0.00999991 0)
(1.01594 0.00981883 0)
(1.01653 0.00966376 0)
(1.01702 0.00952157 0)
(1.01743 0.00938173 0)
(1.01778 0.00924635 0)
(1.01807 0.0091198 0)
(1.01832 0.00900307 0)
(1.01852 0.00889508 0)
(1.01868 0.00879468 0)
(1.01882 0.00870119 0)
(1.01892 0.00861436 0)
(1.019 0.00853428 0)
(1.01907 0.00846144 0)
(1.01911 0.00839672 0)
(1.01913 0.00834129 0)
(1.01914 0.00829641 0)
(1.01914 0.00826337 0)
(1.01912 0.0082434 0)
(1.01909 0.00823768 0)
(1.01904 0.00824733 0)
(1.01898 0.00827352 0)
(1.01891 0.00831743 0)
(1.01882 0.00838032 0)
(1.01871 0.00846358 0)
(1.01859 0.00856875 0)
(1.01845 0.00869753 0)
(1.0183 0.00885188 0)
(1.01814 0.00903396 0)
(1.01795 0.00924631 0)
(1.01775 0.00949162 0)
(1.01754 0.0097732 0)
(1.01731 0.0100943 0)
(1.01707 0.0104592 0)
(1.01682 0.0108717 0)
(1.01656 0.0113376 0)
(1.01629 0.0118612 0)
(1.01601 0.0124509 0)
(1.01574 0.0131105 0)
(1.01547 0.0138526 0)
(1.01521 0.0146785 0)
(1.01497 0.0156064 0)
(1.00009 0.00244396 0)
(1.00185 0.00659107 0)
(1.00475 0.00895249 0)
(1.0077 0.00968243 0)
(1.00989 0.00977218 0)
(1.01132 0.00988225 0)
(1.01242 0.0100027 0)
(1.01343 0.00998653 0)
(1.01432 0.00985256 0)
(1.01506 0.00969483 0)
(1.01565 0.0095561 0)
(1.01614 0.00942941 0)
(1.01655 0.00930402 0)
(1.0169 0.0091808 0)
(1.01719 0.00906427 0)
(1.01743 0.00895619 0)
(1.01763 0.00885589 0)
(1.01779 0.00876233 0)
(1.01793 0.00867489 0)
(1.01803 0.0085934 0)
(1.01811 0.00851807 0)
(1.01818 0.00844952 0)
(1.01822 0.00838873 0)
(1.01824 0.00833698 0)
(1.01825 0.00829565 0)
(1.01825 0.00826609 0)
(1.01823 0.00824961 0)
(1.0182 0.00824745 0)
(1.01816 0.00826078 0)
(1.0181 0.00829079 0)
(1.01802 0.0083387 0)
(1.01794 0.00840577 0)
(1.01783 0.0084934 0)
(1.01772 0.00860312 0)
(1.01759 0.0087366 0)
(1.01744 0.0088958 0)
(1.01728 0.00908283 0)
(1.0171 0.0093002 0)
(1.01691 0.00955053 0)
(1.01671 0.00983705 0)
(1.01649 0.0101629 0)
(1.01627 0.0105324 0)
(1.01603 0.010949 0)
(1.01578 0.0114186 0)
(1.01553 0.011945 0)
(1.01528 0.0125362 0)
(1.01503 0.013196 0)
(1.01478 0.0139359 0)
(1.01456 0.0147567 0)
(1.01436 0.0156753 0)
(1.00008 0.00224874 0)
(1.00164 0.00612076 0)
(1.00426 0.0084629 0)
(1.00701 0.00931522 0)
(1.00913 0.00949265 0)
(1.01056 0.00962716 0)
(1.01164 0.00977094 0)
(1.01262 0.0097962 0)
(1.0135 0.00970104 0)
(1.01423 0.00956818 0)
(1.01482 0.0094463 0)
(1.0153 0.00933498 0)
(1.01571 0.00922417 0)
(1.01605 0.00911346 0)
(1.01635 0.00900728 0)
(1.01659 0.00890807 0)
(1.01679 0.00881564 0)
(1.01695 0.0087291 0)
(1.01708 0.00864786 0)
(1.01719 0.00857184 0)
(1.01727 0.00850138 0)
(1.01733 0.0084372 0)
(1.01737 0.00838043 0)
(1.0174 0.00833243 0)
(1.01741 0.00829469 0)
(1.01741 0.00826865 0)
(1.01739 0.0082557 0)
(1.01736 0.00825713 0)
(1.01732 0.00827415 0)
(1.01726 0.00830799 0)
(1.01719 0.00835989 0)
(1.01711 0.00843112 0)
(1.01701 0.00852307 0)
(1.0169 0.00863726 0)
(1.01677 0.00877537 0)
(1.01663 0.00893929 0)
(1.01648 0.00913112 0)
(1.01631 0.0093533 0)
(1.01613 0.00960841 0)
(1.01594 0.00989958 0)
(1.01573 0.0102299 0)
(1.01552 0.0106034 0)
(1.01529 0.0110237 0)
(1.01507 0.0114961 0)
(1.01483 0.0120246 0)
(1.0146 0.0126165 0)
(1.01438 0.0132753 0)
(1.01416 0.0140117 0)
(1.01396 0.014826 0)
(1.0138 0.015734 0)
(1.00007 0.00207274 0)
(1.00146 0.00568739 0)
(1.00381 0.00799241 0)
(1.00636 0.00894726 0)
(1.00841 0.00921188 0)
(1.00983 0.0093749 0)
(1.0109 0.00953955 0)
(1.01185 0.00960221 0)
(1.01271 0.00954535 0)
(1.01344 0.00943872 0)
(1.01403 0.00933435 0)
(1.01451 0.00923834 0)
(1.01491 0.00914212 0)
(1.01526 0.00904423 0)
(1.01555 0.00894874 0)
(1.01579 0.00885864 0)
(1.01599 0.00877427 0)
(1.01615 0.0086949 0)
(1.01628 0.00862001 0)
(1.01639 0.0085496 0)
(1.01647 0.00848411 0)
(1.01653 0.0084244 0)
(1.01657 0.00837172 0)
(1.0166 0.00832753 0)
(1.01661 0.00829343 0)
(1.01661 0.00827096 0)
(1.0166 0.00826157 0)
(1.01657 0.00826659 0)
(1.01653 0.00828732 0)
(1.01647 0.00832499 0)
(1.01641 0.00838085 0)
(1.01633 0.0084562 0)
(1.01623 0.00855242 0)
(1.01613 0.00867101 0)
(1.01601 0.00881363 0)
(1.01587 0.00898214 0)
(1.01572 0.00917859 0)
(1.01557 0.00940536 0)
(1.01539 0.00966497 0)
(1.01521 0.00996045 0)
(1.01502 0.0102948 0)
(1.01482 0.0106719 0)
(1.01461 0.0110953 0)
(1.0144 0.0115699 0)
(1.01419 0.0120996 0)
(1.01398 0.0126912 0)
(1.01378 0.0133479 0)
(1.01359 0.0140794 0)
(1.01343 0.0148859 0)
(1.01329 0.0157818 0)
(1.00007 0.00191368 0)
(1.0013 0.00528853 0)
(1.00342 0.00754227 0)
(1.00578 0.00858062 0)
(1.00774 0.00892962 0)
(1.00915 0.00912502 0)
(1.01021 0.00930916 0)
(1.01113 0.00940529 0)
(1.01197 0.00938562 0)
(1.01269 0.0093063 0)
(1.01327 0.00922021 0)
(1.01375 0.00913952 0)
(1.01415 0.00905788 0)
(1.0145 0.00897305 0)
(1.01478 0.00888857 0)
(1.01503 0.00880782 0)
(1.01522 0.00873168 0)
(1.01539 0.00865964 0)
(1.01552 0.00859126 0)
(1.01563 0.00852659 0)
(1.01571 0.00846618 0)
(1.01577 0.00841103 0)
(1.01582 0.0083625 0)
(1.01584 0.00832219 0)
(1.01586 0.00829178 0)
(1.01586 0.0082729 0)
(1.01585 0.00826708 0)
(1.01582 0.00827573 0)
(1.01578 0.00830016 0)
(1.01573 0.00834164 0)
(1.01567 0.00840143 0)
(1.01559 0.00848086 0)
(1.0155 0.00858127 0)
(1.0154 0.00870417 0)
(1.01528 0.00885117 0)
(1.01516 0.00902411 0)
(1.01502 0.00922497 0)
(1.01487 0.00945609 0)
(1.01471 0.0097199 0)
(1.01454 0.0100193 0)
(1.01436 0.0103573 0)
(1.01417 0.0107375 0)
(1.01398 0.0111632 0)
(1.01379 0.0116394 0)
(1.0136 0.0121693 0)
(1.01341 0.0127597 0)
(1.01323 0.0134131 0)
(1.01308 0.0141386 0)
(1.01294 0.0149359 0)
(1.01284 0.0158182 0)
(1.00006 0.0017696 0)
(1.00115 0.00492166 0)
(1.00306 0.00711335 0)
(1.00524 0.00821732 0)
(1.00712 0.0086459 0)
(1.0085 0.00887704 0)
(1.00955 0.00908018 0)
(1.01045 0.00920618 0)
(1.01126 0.00922207 0)
(1.01197 0.0091708 0)
(1.01255 0.00910383 0)
(1.01303 0.00903856 0)
(1.01343 0.00897144 0)
(1.01377 0.00889984 0)
(1.01406 0.00882668 0)
(1.0143 0.00875555 0)
(1.0145 0.00868781 0)
(1.01466 0.00862326 0)
(1.0148 0.00856152 0)
(1.0149 0.00850271 0)
(1.01499 0.00844749 0)
(1.01505 0.00839698 0)
(1.01509 0.00835268 0)
(1.01512 0.00831629 0)
(1.01514 0.00828961 0)
(1.01514 0.00827436 0)
(1.01513 0.00827214 0)
(1.01511 0.00828441 0)
(1.01507 0.00831253 0)
(1.01503 0.00835779 0)
(1.01497 0.00842149 0)
(1.01489 0.00850492 0)
(1.01481 0.00860944 0)
(1.01471 0.00873653 0)
(1.01461 0.00888777 0)
(1.01449 0.00906495 0)
(1.01436 0.00927001 0)
(1.01421 0.0095052 0)
(1.01406 0.00977288 0)
(1.01391 0.0100759 0)
(1.01374 0.010417 0)
(1.01357 0.0107997 0)
(1.01339 0.0112272 0)
(1.01322 0.0117041 0)
(1.01305 0.0122334 0)
(1.01289 0.0128214 0)
(1.01274 0.0134704 0)
(1.01261 0.0141886 0)
(1.0125 0.0149754 0)
(1.01243 0.0158427 0)
(1.00005 0.0016388 0)
(1.00103 0.00458432 0)
(1.00275 0.00670611 0)
(1.00475 0.00785923 0)
(1.00653 0.00836108 0)
(1.00789 0.00863052 0)
(1.00892 0.0088529 0)
(1.0098 0.0090056 0)
(1.0106 0.00905506 0)
(1.01129 0.00903218 0)
(1.01187 0.00898515 0)
(1.01235 0.00893551 0)
(1.01274 0.00888284 0)
(1.01308 0.00882458 0)
(1.01337 0.008763 0)
(1.01361 0.00870173 0)
(1.01381 0.00864259 0)
(1.01397 0.00858567 0)
(1.01411 0.00853071 0)
(1.01421 0.00847789 0)
(1.0143 0.00842795 0)
(1.01436 0.00838217 0)
(1.01441 0.00834215 0)
(1.01444 0.00830974 0)
(1.01446 0.00828682 0)
(1.01446 0.00827523 0)
(1.01446 0.00827661 0)
(1.01443 0.0082925 0)
(1.0144 0.00832428 0)
(1.01436 0.0083733 0)
(1.0143 0.00844084 0)
(1.01424 0.0085282 0)
(1.01416 0.00863673 0)
(1.01407 0.00876788 0)
(1.01397 0.0089232 0)
(1.01385 0.00910442 0)
(1.01373 0.00931343 0)
(1.0136 0.00955239 0)
(1.01346 0.00982359 0)
(1.01332 0.0101297 0)
(1.01316 0.0104734 0)
(1.01301 0.0108581 0)
(1.01285 0.0112867 0)
(1.0127 0.0117634 0)
(1.01255 0.0122913 0)
(1.01241 0.012876 0)
(1.01228 0.0135193 0)
(1.01218 0.014229 0)
(1.0121 0.0150037 0)
(1.01207 0.0158547 0)
(1.00005 0.00151982 0)
(1.00092 0.00427407 0)
(1.00247 0.00632066 0)
(1.00431 0.00750808 0)
(1.00599 0.00807582 0)
(1.00732 0.0083851 0)
(1.00833 0.00862742 0)
(1.00919 0.00880421 0)
(1.00996 0.008885 0)
(1.01065 0.00889044 0)
(1.01122 0.0088641 0)
(1.01169 0.00883038 0)
(1.01209 0.00879211 0)
(1.01242 0.00874725 0)
(1.01271 0.00869747 0)
(1.01295 0.00864631 0)
(1.01315 0.00859594 0)
(1.01331 0.00854679 0)
(1.01345 0.00849874 0)
(1.01356 0.00845202 0)
(1.01364 0.00840747 0)
(1.01371 0.00836649 0)
(1.01376 0.00833082 0)
(1.01379 0.00830242 0)
(1.01381 0.00828331 0)
(1.01382 0.00827537 0)
(1.01381 0.00828036 0)
(1.0138 0.00829985 0)
(1.01377 0.00833528 0)
(1.01373 0.00838801 0)
(1.01368 0.00845932 0)
(1.01361 0.00855052 0)
(1.01354 0.00866294 0)
(1.01346 0.00879801 0)
(1.01336 0.00895721 0)
(1.01326 0.00914225 0)
(1.01315 0.00935493 0)
(1.01303 0.00959735 0)
(1.0129 0.00987167 0)
(1.01277 0.0101805 0)
(1.01263 0.0105263 0)
(1.01249 0.0109123 0)
(1.01235 0.0113412 0)
(1.01221 0.011817 0)
(1.01209 0.0123425 0)
(1.01197 0.0129227 0)
(1.01187 0.0135592 0)
(1.01179 0.014259 0)
(1.01175 0.0150206 0)
(1.01174 0.0158538 0)
(1.00004 0.0014114 0)
(1.00082 0.00398862 0)
(1.00221 0.00595681 0)
(1.0039 0.00716538 0)
(1.00549 0.00779097 0)
(1.00678 0.00814056 0)
(1.00777 0.00840377 0)
(1.00861 0.00860259 0)
(1.00937 0.00871236 0)
(1.01003 0.00874569 0)
(1.0106 0.00874063 0)
(1.01107 0.00872319 0)
(1.01146 0.00869929 0)
(1.0118 0.00866783 0)
(1.01208 0.00863003 0)
(1.01232 0.00858921 0)
(1.01252 0.0085478 0)
(1.01269 0.00850656 0)
(1.01282 0.00846553 0)
(1.01293 0.00842502 0)
(1.01302 0.00838596 0)
(1.01309 0.00834985 0)
(1.01314 0.00831858 0)
(1.01317 0.00829424 0)
(1.01319 0.00827894 0)
(1.0132 0.00827468 0)
(1.0132 0.00828327 0)
(1.01319 0.00830634 0)
(1.01316 0.00834537 0)
(1.01313 0.00840174 0)
(1.01308 0.00847674 0)
(1.01303 0.00857168 0)
(1.01296 0.00868786 0)
(1.01288 0.00882667 0)
(1.0128 0.00898956 0)
(1.0127 0.00917817 0)
(1.0126 0.00939423 0)
(1.01249 0.00963974 0)
(1.01237 0.00991677 0)
(1.01225 0.0102278 0)
(1.01213 0.0105751 0)
(1.012 0.0109617 0)
(1.01188 0.0113903 0)
(1.01177 0.0118644 0)
(1.01166 0.0123864 0)
(1.01157 0.0129611 0)
(1.01149 0.0135897 0)
(1.01145 0.0142784 0)
(1.01143 0.0150254 0)
(1.01145 0.0158396 0)
(1.00004 0.00131245 0)
(1.00073 0.00372585 0)
(1.00199 0.00561409 0)
(1.00354 0.00683243 0)
(1.00503 0.00750752 0)
(1.00627 0.00789685 0)
(1.00725 0.0081819 0)
(1.00807 0.00840122 0)
(1.0088 0.00853768 0)
(1.00945 0.00859809 0)
(1.01001 0.00861473 0)
(1.01048 0.00861395 0)
(1.01087 0.00860444 0)
(1.0112 0.00858635 0)
(1.01148 0.00856065 0)
(1.01172 0.00853038 0)
(1.01192 0.0084981 0)
(1.01209 0.00846491 0)
(1.01222 0.00843101 0)
(1.01233 0.00839681 0)
(1.01242 0.00836331 0)
(1.01249 0.00833214 0)
(1.01254 0.00830532 0)
(1.01258 0.00828507 0)
(1.01261 0.0082736 0)
(1.01262 0.00827301 0)
(1.01262 0.00828518 0)
(1.01261 0.0083118 0)
(1.01259 0.00835439 0)
(1.01256 0.00841433 0)
(1.01252 0.00849293 0)
(1.01247 0.00859148 0)
(1.01241 0.00871127 0)
(1.01234 0.00885363 0)
(1.01226 0.00901998 0)
(1.01217 0.00921189 0)
(1.01208 0.00943101 0)
(1.01198 0.00967923 0)
(1.01188 0.00995854 0)
(1.01177 0.0102712 0)
(1.01166 0.0106195 0)
(1.01156 0.0110061 0)
(1.01145 0.0114335 0)
(1.01136 0.0119049 0)
(1.01127 0.0124226 0)
(1.0112 0.0129907 0)
(1.01115 0.0136102 0)
(1.01113 0.0142866 0)
(1.01114 0.0150177 0)
(1.0112 0.0158116 0)
(1.00003 0.00122199 0)
(1.00066 0.00348375 0)
(1.00179 0.00529187 0)
(1.0032 0.00651027 0)
(1.0046 0.00722656 0)
(1.00579 0.00765406 0)
(1.00675 0.00796174 0)
(1.00755 0.00820048 0)
(1.00826 0.00836145 0)
(1.0089 0.00844789 0)
(1.00945 0.0084864 0)
(1.00991 0.00850266 0)
(1.0103 0.00850761 0)
(1.01063 0.00850283 0)
(1.01091 0.00848931 0)
(1.01115 0.00846975 0)
(1.01135 0.00844679 0)
(1.01151 0.00842176 0)
(1.01165 0.0083951 0)
(1.01176 0.0083673 0)
(1.01185 0.00833944 0)
(1.01192 0.00831327 0)
(1.01198 0.00829094 0)
(1.01202 0.00827479 0)
(1.01205 0.00826717 0)
(1.01206 0.00827024 0)
(1.01207 0.00828597 0)
(1.01206 0.00831609 0)
(1.01205 0.00836216 0)
(1.01202 0.00842559 0)
(1.01199 0.00850768 0)
(1.01194 0.00860971 0)
(1.01189 0.00873293 0)
(1.01183 0.00887864 0)
(1.01176 0.00904821 0)
(1.01168 0.00924311 0)
(1.0116 0.00946495 0)
(1.01151 0.00971549 0)
(1.01142 0.0099966 0)
(1.01132 0.0103104 0)
(1.01123 0.010659 0)
(1.01114 0.0110449 0)
(1.01106 0.0114703 0)
(1.01098 0.0119382 0)
(1.01092 0.0124506 0)
(1.01087 0.013011 0)
(1.01084 0.0136203 0)
(1.01085 0.0142831 0)
(1.01089 0.0149972 0)
(1.01097 0.0157697 0)
(1.00003 0.00113919 0)
(1.00059 0.00326052 0)
(1.00161 0.00498935 0)
(1.0029 0.00619971 0)
(1.00421 0.00694918 0)
(1.00535 0.00741243 0)
(1.00628 0.00774322 0)
(1.00706 0.00800064 0)
(1.00775 0.00818419 0)
(1.00837 0.00829538 0)
(1.00891 0.00835571 0)
(1.00937 0.00838932 0)
(1.00975 0.00840882 0)
(1.01008 0.00841731 0)
(1.01036 0.008416 0)
(1.0106 0.00840729 0)
(1.0108 0.0083938 0)
(1.01097 0.00837706 0)
(1.0111 0.00835773 0)
(1.01122 0.0083364 0)
(1.01131 0.00831426 0)
(1.01138 0.00829314 0)
(1.01144 0.00827533 0)
(1.01148 0.0082633 0)
(1.01152 0.00825951 0)
(1.01153 0.00826622 0)
(1.01154 0.00828547 0)
(1.01154 0.00831904 0)
(1.01153 0.00836852 0)
(1.01151 0.00843533 0)
(1.01148 0.00852079 0)
(1.01144 0.00862613 0)
(1.0114 0.0087526 0)
(1.01134 0.00890144 0)
(1.01128 0.00907395 0)
(1.01121 0.00927155 0)
(1.01114 0.00949573 0)
(1.01106 0.00974816 0)
(1.01099 0.0100306 0)
(1.01091 0.010345 0)
(1.01083 0.0106932 0)
(1.01076 0.0110777 0)
(1.01069 0.0115003 0)
(1.01063 0.0119638 0)
(1.01059 0.0124698 0)
(1.01057 0.0130215 0)
(1.01056 0.0136195 0)
(1.0106 0.0142676 0)
(1.01066 0.0149636 0)
(1.01077 0.0157134 0)
(1.00003 0.00106329 0)
(1.00053 0.00305451 0)
(1.00145 0.00470564 0)
(1.00263 0.0059013 0)
(1.00385 0.00667642 0)
(1.00493 0.00717235 0)
(1.00583 0.00752632 0)
(1.0066 0.00780193 0)
(1.00727 0.00800635 0)
(1.00787 0.00814092 0)
(1.0084 0.00822276 0)
(1.00885 0.00827396 0)
(1.00923 0.00830812 0)
(1.00956 0.00832984 0)
(1.00984 0.00834072 0)
(1.01007 0.00834295 0)
(1.01027 0.00833907 0)
(1.01044 0.00833075 0)
(1.01058 0.00831882 0)
(1.0107 0.00830403 0)
(1.01079 0.00828766 0)
(1.01087 0.00827163 0)
(1.01093 0.00825836 0)
(1.01097 0.00825046 0)
(1.01101 0.00825049 0)
(1.01103 0.00826082 0)
(1.01104 0.00828353 0)
(1.01105 0.00832049 0)
(1.01104 0.00837329 0)
(1.01102 0.00844337 0)
(1.011 0.00853204 0)
(1.01097 0.00864053 0)
(1.01093 0.00877004 0)
(1.01088 0.00892176 0)
(1.01083 0.00909693 0)
(1.01077 0.00929687 0)
(1.01071 0.009523 0)
(1.01065 0.00977688 0)
(1.01058 0.0100601 0)
(1.01052 0.0103745 0)
(1.01046 0.0107218 0)
(1.0104 0.0111041 0)
(1.01035 0.0115231 0)
(1.01031 0.0119813 0)
(1.01029 0.01248 0)
(1.01029 0.0130219 0)
(1.01031 0.0136074 0)
(1.01037 0.0142398 0)
(1.01046 0.0149165 0)
(1.0106 0.0156427 0)
(1.00002 0.000993635 0)
(1.00047 0.00286422 0)
(1.00131 0.00443976 0)
(1.00238 0.00561541 0)
(1.00351 0.00640925 0)
(1.00454 0.00693431 0)
(1.00542 0.00731107 0)
(1.00616 0.00760451 0)
(1.00681 0.00782834 0)
(1.0074 0.00798487 0)
(1.00791 0.00808773 0)
(1.00836 0.0081566 0)
(1.00874 0.00820556 0)
(1.00906 0.00824046 0)
(1.00934 0.00826349 0)
(1.00957 0.00827673 0)
(1.00977 0.00828256 0)
(1.00994 0.00828275 0)
(1.01008 0.00827831 0)
(1.0102 0.00827012 0)
(1.01029 0.00825955 0)
(1.01037 0.00824864 0)
(1.01043 0.00823993 0)
(1.01048 0.00823615 0)
(1.01052 0.00823998 0)
(1.01055 0.00825387 0)
(1.01057 0.00828 0)
(1.01057 0.00832025 0)
(1.01057 0.00837626 0)
(1.01056 0.00844948 0)
(1.01054 0.00854122 0)
(1.01052 0.00865267 0)
(1.01049 0.00878499 0)
(1.01045 0.00893932 0)
(1.01041 0.00911683 0)
(1.01036 0.00931877 0)
(1.01031 0.00954644 0)
(1.01026 0.00980128 0)
(1.01021 0.0100848 0)
(1.01015 0.0103985 0)
(1.01011 0.0107442 0)
(1.01007 0.0111235 0)
(1.01004 0.0115382 0)
(1.01002 0.0119901 0)
(1.01002 0.0124805 0)
(1.01004 0.0130117 0)
(1.01009 0.0135837 0)
(1.01016 0.0141993 0)
(1.01028 0.0148558 0)
(1.01044 0.0155574 0)
(1.00002 0.000929623 0)
(1.00043 0.0026883 0)
(1.00118 0.00419073 0)
(1.00216 0.0053422 0)
(1.00321 0.00614849 0)
(1.00418 0.00669887 0)
(1.00502 0.00709761 0)
(1.00574 0.00740852 0)
(1.00638 0.00765053 0)
(1.00695 0.00782762 0)
(1.00745 0.0079508 0)
(1.00789 0.00803733 0)
(1.00826 0.00810116 0)
(1.00858 0.00814922 0)
(1.00886 0.00818434 0)
(1.00909 0.00820859 0)
(1.00929 0.00822422 0)
(1.00946 0.00823301 0)
(1.0096 0.00823612 0)
(1.00972 0.00823457 0)
(1.00982 0.00822984 0)
(1.0099 0.00822407 0)
(1.00996 0.00821992 0)
(1.01002 0.00822024 0)
(1.01006 0.00822783 0)
(1.01009 0.00824524 0)
(1.01011 0.0082747 0)
(1.01012 0.00831815 0)
(1.01013 0.00837725 0)
(1.01012 0.00845347 0)
(1.01011 0.00854809 0)
(1.01009 0.00866229 0)
(1.01007 0.00879717 0)
(1.01004 0.00895384 0)
(1.01001 0.00913336 0)
(1.00997 0.00933692 0)
(1.00993 0.0095657 0)
(1.00989 0.00982101 0)
(1.00985 0.0101042 0)
(1.00982 0.0104167 0)
(1.00979 0.01076 0)
(1.00976 0.0111357 0)
(1.00975 0.0115451 0)
(1.00975 0.0119899 0)
(1.00977 0.0124711 0)
(1.00981 0.0129906 0)
(1.00988 0.0135481 0)
(1.00998 0.014146 0)
(1.01012 0.0147812 0)
(1.01031 0.0154575 0)
(1.00002 0.000870727 0)
(1.00038 0.00252553 0)
(1.00106 0.00395758 0)
(1.00196 0.00508169 0)
(1.00293 0.00589485 0)
(1.00385 0.00646664 0)
(1.00466 0.00688611 0)
(1.00535 0.00721407 0)
(1.00597 0.00747322 0)
(1.00652 0.00766953 0)
(1.00701 0.00781223 0)
(1.00744 0.00791623 0)
(1.00781 0.00799498 0)
(1.00813 0.00805617 0)
(1.0084 0.0081033 0)
(1.00863 0.00813855 0)
(1.00883 0.00816402 0)
(1.009 0.00818148 0)
(1.00914 0.00819218 0)
(1.00926 0.0081973 0)
(1.00936 0.00819843 0)
(1.00945 0.0081978 0)
(1.00951 0.0081982 0)
(1.00957 0.0082026 0)
(1.00962 0.0082139 0)
(1.00965 0.00823475 0)
(1.00968 0.00826745 0)
(1.00969 0.00831399 0)
(1.0097 0.00837606 0)
(1.00971 0.00845511 0)
(1.0097 0.00855242 0)
(1.00969 0.00866914 0)
(1.00968 0.00880633 0)
(1.00966 0.00896502 0)
(1.00963 0.00914621 0)
(1.00961 0.00935098 0)
(1.00958 0.00958041 0)
(1.00955 0.0098357 0)
(1.00952 0.010118 0)
(1.0095 0.0104287 0)
(1.00949 0.010769 0)
(1.00948 0.0111402 0)
(1.00949 0.0115435 0)
(1.00951 0.0119804 0)
(1.00955 0.0124514 0)
(1.00961 0.0129582 0)
(1.0097 0.0135003 0)
(1.00982 0.0140795 0)
(1.00998 0.0146927 0)
(1.01019 0.0153428 0)
(1.00002 0.000816473 0)
(1.00034 0.00237479 0)
(1.00096 0.00373935 0)
(1.00178 0.00483377 0)
(1.00267 0.00564891 0)
(1.00354 0.00623821 0)
(1.00431 0.00667686 0)
(1.00498 0.00702132 0)
(1.00558 0.00729669 0)
(1.00611 0.00751097 0)
(1.00659 0.00767228 0)
(1.00701 0.00779344 0)
(1.00738 0.00788707 0)
(1.00769 0.00796136 0)
(1.00796 0.00802042 0)
(1.00819 0.00806661 0)
(1.00839 0.00810193 0)
(1.00856 0.0081281 0)
(1.0087 0.00814644 0)
(1.00882 0.00815824 0)
(1.00893 0.00816522 0)
(1.00901 0.00816973 0)
(1.00909 0.00817465 0)
(1.00914 0.00818307 0)
(1.00919 0.00819803 0)
(1.00923 0.00822224 0)
(1.00926 0.00825808 0)
(1.00929 0.00830759 0)
(1.0093 0.00837246 0)
(1.00931 0.00845416 0)
(1.00931 0.00855396 0)
(1.00931 0.00867296 0)
(1.0093 0.00881218 0)
(1.00929 0.00897256 0)
(1.00928 0.00915506 0)
(1.00926 0.00936062 0)
(1.00925 0.00959024 0)
(1.00923 0.00984497 0)
(1.00922 0.0101258 0)
(1.00921 0.010434 0)
(1.00921 0.0107705 0)
(1.00922 0.0111366 0)
(1.00924 0.011533 0)
(1.00928 0.011961 0)
(1.00934 0.0124211 0)
(1.00942 0.0129143 0)
(1.00953 0.0134401 0)
(1.00968 0.0139998 0)
(1.00986 0.0145902 0)
(1.01009 0.0152136 0)
(1.00002 0.000766436 0)
(1.00031 0.00223509 0)
(1.00087 0.00353512 0)
(1.00161 0.00459821 0)
(1.00244 0.00541112 0)
(1.00325 0.00601419 0)
(1.00399 0.00647015 0)
(1.00464 0.00683039 0)
(1.00521 0.00712117 0)
(1.00573 0.00735226 0)
(1.0062 0.00753123 0)
(1.00661 0.0076691 0)
(1.00696 0.00777752 0)
(1.00727 0.00786484 0)
(1.00754 0.00793573 0)
(1.00777 0.00799278 0)
(1.00797 0.00803793 0)
(1.00814 0.00807282 0)
(1.00828 0.00809881 0)
(1.00841 0.0081173 0)
(1.00851 0.00813012 0)
(1.0086 0.00813973 0)
(1.00867 0.00814913 0)
(1.00874 0.00816153 0)
(1.00879 0.00818006 0)
(1.00883 0.00820754 0)
(1.00887 0.00824641 0)
(1.0089 0.00829874 0)
(1.00892 0.00836625 0)
(1.00893 0.00845041 0)
(1.00894 0.00855247 0)
(1.00895 0.00867348 0)
(1.00895 0.00881443 0)
(1.00895 0.00897617 0)
(1.00894 0.00915958 0)
(1.00894 0.00936551 0)
(1.00893 0.00959483 0)
(1.00893 0.00984846 0)
(1.00893 0.0101273 0)
(1.00894 0.0104323 0)
(1.00895 0.0107644 0)
(1.00898 0.0111245 0)
(1.00902 0.0115132 0)
(1.00908 0.0119316 0)
(1.00915 0.0123798 0)
(1.00926 0.0128587 0)
(1.00939 0.0133674 0)
(1.00955 0.0139067 0)
(1.00975 0.0144737 0)
(1.01 0.01507 0)
(1.00001 0.000720234 0)
(1.00028 0.00210551 0)
(1.00078 0.003344 0)
(1.00146 0.00437471 0)
(1.00223 0.00518181 0)
(1.00298 0.00579509 0)
(1.00368 0.00626635 0)
(1.00431 0.00664149 0)
(1.00487 0.00694687 0)
(1.00537 0.0071937 0)
(1.00582 0.00738936 0)
(1.00622 0.00754341 0)
(1.00657 0.00766641 0)
(1.00687 0.00776668 0)
(1.00714 0.00784928 0)
(1.00737 0.00791708 0)
(1.00756 0.00797201 0)
(1.00773 0.0080156 0)
(1.00788 0.00804924 0)
(1.00801 0.0080744 0)
(1.00811 0.00809303 0)
(1.0082 0.00810771 0)
(1.00828 0.00812153 0)
(1.00835 0.00813783 0)
(1.00841 0.00815984 0)
(1.00845 0.00819047 0)
(1.00849 0.00823224 0)
(1.00853 0.00828723 0)
(1.00856 0.0083572 0)
(1.00858 0.00844361 0)
(1.00859 0.00854768 0)
(1.00861 0.00867044 0)
(1.00862 0.00881278 0)
(1.00862 0.00897554 0)
(1.00863 0.00915946 0)
(1.00863 0.0093653 0)
(1.00864 0.00959383 0)
(1.00865 0.00984581 0)
(1.00867 0.010122 0)
(1.00869 0.0104232 0)
(1.00872 0.0107502 0)
(1.00876 0.0111036 0)
(1.00882 0.0114839 0)
(1.00889 0.0118918 0)
(1.00899 0.0123274 0)
(1.00911 0.0127911 0)
(1.00925 0.0132819 0)
(1.00944 0.0138004 0)
(1.00966 0.0143434 0)
(1.00992 0.0149121 0)
(1.00001 0.000677525 0)
(1.00025 0.00198522 0)
(1.00071 0.00316514 0)
(1.00133 0.00416289 0)
(1.00203 0.00496119 0)
(1.00274 0.00558141 0)
(1.0034 0.00606581 0)
(1.004 0.00645481 0)
(1.00454 0.006774 0)
(1.00502 0.00703559 0)
(1.00546 0.00724697 0)
(1.00585 0.00741657 0)
(1.00619 0.00755386 0)
(1.00649 0.00766693 0)
(1.00676 0.00776112 0)
(1.00698 0.00783955 0)
(1.00718 0.00790415 0)
(1.00735 0.00795641 0)
(1.0075 0.00799766 0)
(1.00762 0.00802947 0)
(1.00773 0.00805386 0)
(1.00782 0.00807353 0)
(1.00791 0.0080917 0)
(1.00798 0.00811181 0)
(1.00804 0.0081372 0)
(1.00809 0.00817086 0)
(1.00814 0.00821537 0)
(1.00818 0.00827285 0)
(1.00821 0.00834508 0)
(1.00824 0.00843351 0)
(1.00826 0.00853933 0)
(1.00828 0.00866354 0)
(1.0083 0.00880696 0)
(1.00832 0.00897035 0)
(1.00833 0.00915437 0)
(1.00835 0.00935967 0)
(1.00837 0.00958689 0)
(1.00839 0.00983668 0)
(1.00842 0.0101097 0)
(1.00845 0.0104064 0)
(1.0085 0.0107276 0)
(1.00856 0.0110735 0)
(1.00863 0.0114447 0)
(1.00872 0.0118414 0)
(1.00883 0.0122636 0)
(1.00897 0.0127114 0)
(1.00914 0.0131838 0)
(1.00934 0.0136808 0)
(1.00957 0.0141994 0)
(1.00985 0.0147403 0)
(1.00001 0.000638 0)
(1.00023 0.00187346 0)
(1.00064 0.00299773 0)
(1.00121 0.00396236 0)
(1.00185 0.00474939 0)
(1.00251 0.00537354 0)
(1.00314 0.00586892 0)
(1.00371 0.00627058 0)
(1.00423 0.00660275 0)
(1.0047 0.00687817 0)
(1.00512 0.00710433 0)
(1.0055 0.00728878 0)
(1.00584 0.00743999 0)
(1.00613 0.00756567 0)
(1.00639 0.0076713 0)
(1.00661 0.0077602 0)
(1.00681 0.00783436 0)
(1.00698 0.0078952 0)
(1.00713 0.00794402 0)
(1.00725 0.00798241 0)
(1.00737 0.00801249 0)
(1.00746 0.00803709 0)
(1.00755 0.00805952 0)
(1.00762 0.00808334 0)
(1.00769 0.00811198 0)
(1.00774 0.00814852 0)
(1.0078 0.0081956 0)
(1.00784 0.00825539 0)
(1.00788 0.00832966 0)
(1.00792 0.00841987 0)
(1.00795 0.00852716 0)
(1.00798 0.00865251 0)
(1.008 0.00879666 0)
(1.00803 0.0089603 0)
(1.00805 0.00914398 0)
(1.00808 0.00934827 0)
(1.00811 0.00957368 0)
(1.00815 0.00982072 0)
(1.00819 0.0100899 0)
(1.00824 0.0103816 0)
(1.0083 0.0106962 0)
(1.00837 0.0110341 0)
(1.00846 0.0113954 0)
(1.00856 0.0117802 0)
(1.00869 0.0121883 0)
(1.00885 0.0126196 0)
(1.00903 0.0130729 0)
(1.00925 0.013548 0)
(1.00949 0.0140419 0)
(1.00979 0.0145549 0)
(1.00001 0.00060138 0)
(1.00021 0.00176956 0)
(1.00058 0.00284102 0)
(1.0011 0.00377265 0)
(1.00169 0.00454641 0)
(1.00231 0.00517181 0)
(1.0029 0.00567603 0)
(1.00344 0.00608906 0)
(1.00394 0.00643331 0)
(1.00439 0.00672167 0)
(1.0048 0.0069617 0)
(1.00517 0.00716027 0)
(1.0055 0.00732495 0)
(1.00578 0.00746299 0)
(1.00604 0.00757987 0)
(1.00626 0.00767907 0)
(1.00646 0.00776265 0)
(1.00663 0.00783196 0)
(1.00677 0.00788826 0)
(1.0069 0.00793315 0)
(1.00702 0.00796885 0)
(1.00712 0.00799826 0)
(1.0072 0.00802484 0)
(1.00728 0.00805224 0)
(1.00735 0.00808399 0)
(1.00741 0.00812326 0)
(1.00747 0.00817273 0)
(1.00752 0.00823462 0)
(1.00757 0.0083107 0)
(1.00761 0.00840242 0)
(1.00765 0.00851091 0)
(1.00769 0.00863706 0)
(1.00772 0.00878159 0)
(1.00776 0.00894507 0)
(1.00779 0.009128 0)
(1.00783 0.0093308 0)
(1.00787 0.00955388 0)
(1.00792 0.00979761 0)
(1.00797 0.0100623 0)
(1.00804 0.0103483 0)
(1.00811 0.0106558 0)
(1.0082 0.010985 0)
(1.0083 0.0113357 0)
(1.00842 0.011708 0)
(1.00857 0.0121014 0)
(1.00874 0.0125156 0)
(1.00893 0.0129494 0)
(1.00916 0.0134022 0)
(1.00943 0.0138712 0)
(1.00973 0.0143562 0)
(1.00001 0.000567417 0)
(1.00019 0.00167289 0)
(1.00053 0.00269428 0)
(1.001 0.00359329 0)
(1.00154 0.00435222 0)
(1.00211 0.0049765 0)
(1.00267 0.00548747 0)
(1.00319 0.00591049 0)
(1.00366 0.0062659 0)
(1.0041 0.00656632 0)
(1.00449 0.00681933 0)
(1.00485 0.00703125 0)
(1.00517 0.00720891 0)
(1.00545 0.00735898 0)
(1.0057 0.00748689 0)
(1.00592 0.0075962 0)
(1.00612 0.00768902 0)
(1.00629 0.00776666 0)
(1.00644 0.00783032 0)
(1.00657 0.00788161 0)
(1.00668 0.00792281 0)
(1.00679 0.00795693 0)
(1.00688 0.00798753 0)
(1.00696 0.00801837 0)
(1.00703 0.00805308 0)
(1.0071 0.00809489 0)
(1.00716 0.00814656 0)
(1.00722 0.00821032 0)
(1.00727 0.00828797 0)
(1.00732 0.00838093 0)
(1.00737 0.0084903 0)
(1.00741 0.00861692 0)
(1.00746 0.00876145 0)
(1.0075 0.00892438 0)
(1.00755 0.00910609 0)
(1.0076 0.00930693 0)
(1.00765 0.00952716 0)
(1.00771 0.00976704 0)
(1.00777 0.0100268 0)
(1.00785 0.0103065 0)
(1.00794 0.0106062 0)
(1.00804 0.0109259 0)
(1.00816 0.0112655 0)
(1.00829 0.0116247 0)
(1.00845 0.0120028 0)
(1.00864 0.0123995 0)
(1.00885 0.0128133 0)
(1.00909 0.0132437 0)
(1.00936 0.0136876 0)
(1.00968 0.0141448 0)
(1.00001 0.000535884 0)
(1.00017 0.00158286 0)
(1.00048 0.00255684 0)
(1.0009 0.00342382 0)
(1.00141 0.00416669 0)
(1.00194 0.00478779 0)
(1.00246 0.00530354 0)
(1.00295 0.00573514 0)
(1.00341 0.00610072 0)
(1.00382 0.00641233 0)
(1.0042 0.00667744 0)
(1.00455 0.00690196 0)
(1.00486 0.00709201 0)
(1.00514 0.00725376 0)
(1.00539 0.00739242 0)
(1.0056 0.00751162 0)
(1.0058 0.00761347 0)
(1.00597 0.00769927 0)
(1.00612 0.00777016 0)
(1.00625 0.00782772 0)
(1.00636 0.00787429 0)
(1.00647 0.00791298 0)
(1.00656 0.00794745 0)
(1.00665 0.00798156 0)
(1.00673 0.00801905 0)
(1.0068 0.00806322 0)
(1.00687 0.00811687 0)
(1.00693 0.00818226 0)
(1.00699 0.00826122 0)
(1.00705 0.00835512 0)
(1.0071 0.00846506 0)
(1.00715 0.00859181 0)
(1.00721 0.00873596 0)
(1.00726 0.00889791 0)
(1.00732 0.00907797 0)
(1.00738 0.00927636 0)
(1.00744 0.00949323 0)
(1.00751 0.00972872 0)
(1.00759 0.00998288 0)
(1.00768 0.0102557 0)
(1.00778 0.0105471 0)
(1.00789 0.0108569 0)
(1.00802 0.0111847 0)
(1.00817 0.0115302 0)
(1.00835 0.0118926 0)
(1.00854 0.0122713 0)
(1.00877 0.012665 0)
(1.00902 0.0130726 0)
(1.00931 0.0134916 0)
(1.00963 0.0139212 0)
(1.00001 0.000506576 0)
(1.00015 0.00149896 0)
(1.00043 0.00242808 0)
(1.00082 0.00326376 0)
(1.00128 0.00398967 0)
(1.00178 0.00460579 0)
(1.00226 0.00512449 0)
(1.00273 0.00556324 0)
(1.00316 0.00593795 0)
(1.00356 0.00625988 0)
(1.00393 0.00653625 0)
(1.00427 0.00677259 0)
(1.00457 0.00697443 0)
(1.00484 0.00714742 0)
(1.00508 0.00729654 0)
(1.0053 0.00742536 0)
(1.00549 0.00753603 0)
(1.00566 0.00762979 0)
(1.00581 0.00770772 0)
(1.00594 0.0077714 0)
(1.00606 0.0078232 0)
(1.00617 0.00786629 0)
(1.00627 0.00790446 0)
(1.00636 0.00794167 0)
(1.00644 0.00798174 0)
(1.00652 0.00802805 0)
(1.00659 0.00808344 0)
(1.00666 0.00815023 0)
(1.00672 0.0082302 0)
(1.00679 0.00832476 0)
(1.00685 0.00843493 0)
(1.00691 0.00856145 0)
(1.00697 0.00870483 0)
(1.00703 0.00886539 0)
(1.0071 0.00904335 0)
(1.00717 0.0092388 0)
(1.00724 0.00945182 0)
(1.00733 0.00968239 0)
(1.00742 0.00993044 0)
(1.00752 0.0101958 0)
(1.00763 0.0104783 0)
(1.00776 0.0107776 0)
(1.0079 0.0110931 0)
(1.00807 0.0114245 0)
(1.00825 0.0117708 0)
(1.00846 0.0121313 0)
(1.0087 0.0125045 0)
(1.00896 0.0128895 0)
(1.00925 0.0132836 0)
(1.00958 0.0136859 0)
(1.00001 0.000479307 0)
(1.00014 0.00142071 0)
(1.00039 0.00230739 0)
(1.00075 0.00311262 0)
(1.00117 0.00382095 0)
(1.00163 0.00443058 0)
(1.00209 0.00495054 0)
(1.00252 0.00539504 0)
(1.00294 0.00577781 0)
(1.00332 0.00610917 0)
(1.00367 0.00639596 0)
(1.004 0.00664335 0)
(1.00429 0.00685634 0)
(1.00456 0.0070401 0)
(1.00479 0.00719932 0)
(1.00501 0.00733748 0)
(1.0052 0.0074567 0)
(1.00536 0.00755819 0)
(1.00551 0.00764297 0)
(1.00565 0.00771258 0)
(1.00577 0.00776942 0)
(1.00588 0.00781674 0)
(1.00598 0.00785842 0)
(1.00608 0.00789853 0)
(1.00616 0.00794096 0)
(1.00625 0.00798918 0)
(1.00632 0.00804608 0)
(1.0064 0.00811398 0)
(1.00647 0.00819469 0)
(1.00654 0.00828958 0)
(1.00661 0.00839965 0)
(1.00668 0.00852557 0)
(1.00675 0.00866778 0)
(1.00682 0.00882654 0)
(1.0069 0.00900194 0)
(1.00698 0.009194 0)
(1.00706 0.00940266 0)
(1.00716 0.0096278 0)
(1.00726 0.00986922 0)
(1.00737 0.0101267 0)
(1.00749 0.0103997 0)
(1.00763 0.010688 0)
(1.00779 0.0109909 0)
(1.00797 0.0113077 0)
(1.00816 0.0116375 0)
(1.00838 0.0119796 0)
(1.00863 0.0123323 0)
(1.0089 0.0126946 0)
(1.0092 0.013064 0)
(1.00954 0.0134395 0)
(1.00001 0.000453911 0)
(1.00013 0.00134766 0)
(1.00036 0.00219424 0)
(1.00068 0.00296994 0)
(1.00107 0.00366028 0)
(1.00149 0.00426214 0)
(1.00192 0.00478185 0)
(1.00233 0.00523073 0)
(1.00273 0.00562049 0)
(1.00309 0.00596037 0)
(1.00343 0.00625675 0)
(1.00374 0.00651442 0)
(1.00403 0.0067379 0)
(1.00429 0.00693191 0)
(1.00452 0.00710083 0)
(1.00473 0.007248 0)
(1.00492 0.0073755 0)
(1.00508 0.00748446 0)
(1.00523 0.00757585 0)
(1.00537 0.00765118 0)
(1.00549 0.00771286 0)
(1.00561 0.00776421 0)
(1.00571 0.00780919 0)
(1.00581 0.00785197 0)
(1.0059 0.00789654 0)
(1.00599 0.00794643 0)
(1.00607 0.00800457 0)
(1.00615 0.00807331 0)
(1.00623 0.00815445 0)
(1.00631 0.00824935 0)
(1.00638 0.00835896 0)
(1.00646 0.00848391 0)
(1.00654 0.00862456 0)
(1.00662 0.00878108 0)
(1.00671 0.00895349 0)
(1.0068 0.00914169 0)
(1.00689 0.00934552 0)
(1.007 0.00956474 0)
(1.00711 0.00979905 0)
(1.00723 0.010048 0)
(1.00737 0.0103112 0)
(1.00752 0.0105881 0)
(1.00769 0.0108778 0)
(1.00787 0.0111798 0)
(1.00808 0.011493 0)
(1.00831 0.0118164 0)
(1.00856 0.0121486 0)
(1.00885 0.0124884 0)
(1.00915 0.0128335 0)
(1.00949 0.0131827 0)
(1.00001 0.000430234 0)
(1.00011 0.00127943 0)
(1.00032 0.0020881 0)
(1.00062 0.00283526 0)
(1.00098 0.0035074 0)
(1.00137 0.00410045 0)
(1.00177 0.00461852 0)
(1.00216 0.00507049 0)
(1.00253 0.00546616 0)
(1.00288 0.00581365 0)
(1.0032 0.0061188 0)
(1.00351 0.00638597 0)
(1.00378 0.00661926 0)
(1.00403 0.00682297 0)
(1.00426 0.00700115 0)
(1.00447 0.00715698 0)
(1.00465 0.00729243 0)
(1.00482 0.00740858 0)
(1.00497 0.00750633 0)
(1.00511 0.00758714 0)
(1.00523 0.00765343 0)
(1.00535 0.00770857 0)
(1.00546 0.00775662 0)
(1.00556 0.00780185 0)
(1.00565 0.00784831 0)
(1.00574 0.0078996 0)
(1.00583 0.0079587 0)
(1.00592 0.00802798 0)
(1.006 0.00810924 0)
(1.00609 0.00820382 0)
(1.00617 0.00831262 0)
(1.00626 0.00843622 0)
(1.00635 0.00857492 0)
(1.00644 0.00872879 0)
(1.00653 0.00889777 0)
(1.00663 0.00908166 0)
(1.00673 0.0092802 0)
(1.00685 0.00949305 0)
(1.00697 0.00971977 0)
(1.00711 0.00995988 0)
(1.00725 0.0102128 0)
(1.00741 0.0104778 0)
(1.00759 0.0107542 0)
(1.00779 0.011041 0)
(1.00801 0.0113373 0)
(1.00824 0.0116421 0)
(1.0085 0.0119539 0)
(1.00879 0.0122714 0)
(1.0091 0.0125926 0)
(1.00945 0.0129161 0)
(1.00001 0.000408138 0)
(1.0001 0.00121562 0)
(1.0003 0.00198848 0)
(1.00057 0.00270812 0)
(1.00089 0.003362 0)
(1.00125 0.0039454 0)
(1.00162 0.00446063 0)
(1.00199 0.00491446 0)
(1.00234 0.00531497 0)
(1.00268 0.00566917 0)
(1.00299 0.00598225 0)
(1.00328 0.00625816 0)
(1.00355 0.00650058 0)
(1.00379 0.0067134 0)
(1.00401 0.00690037 0)
(1.00422 0.00706446 0)
(1.0044 0.00720752 0)
(1.00457 0.00733055 0)
(1.00472 0.00743437 0)
(1.00485 0.00752039 0)
(1.00498 0.00759103 0)
(1.0051 0.00764973 0)
(1.00521 0.0077006 0)
(1.00532 0.007748 0)
(1.00542 0.00779608 0)
(1.00551 0.0078485 0)
(1.00561 0.00790827 0)
(1.0057 0.00797779 0)
(1.00579 0.00805885 0)
(1.00588 0.00815276 0)
(1.00597 0.00826039 0)
(1.00607 0.00838226 0)
(1.00616 0.00851861 0)
(1.00626 0.00866942 0)
(1.00636 0.00883455 0)
(1.00647 0.00901371 0)
(1.00659 0.00920652 0)
(1.00671 0.00941256 0)
(1.00684 0.00963129 0)
(1.00699 0.00986211 0)
(1.00715 0.0101044 0)
(1.00732 0.0103572 0)
(1.0075 0.0106199 0)
(1.00771 0.0108915 0)
(1.00793 0.0111709 0)
(1.00818 0.0114571 0)
(1.00845 0.0117486 0)
(1.00874 0.0120442 0)
(1.00905 0.012342 0)
(1.0094 0.0126405 0)
(1 0.000387495 0)
(1.00009 0.00115592 0)
(1.00027 0.00189494 0)
(1.00052 0.0025881 0)
(1.00082 0.0032238 0)
(1.00115 0.00379686 0)
(1.00149 0.00430819 0)
(1.00184 0.00476275 0)
(1.00217 0.00516707 0)
(1.00249 0.00552706 0)
(1.00279 0.00584726 0)
(1.00307 0.00613113 0)
(1.00333 0.00638198 0)
(1.00356 0.0066033 0)
(1.00378 0.00679855 0)
(1.00398 0.00697047 0)
(1.00416 0.00712078 0)
(1.00433 0.00725034 0)
(1.00448 0.00735991 0)
(1.00462 0.00745086 0)
(1.00474 0.00752558 0)
(1.00487 0.00758755 0)
(1.00498 0.00764097 0)
(1.00509 0.00769027 0)
(1.00519 0.0077397 0)
(1.00529 0.00779295 0)
(1.00539 0.00785309 0)
(1.00549 0.00792252 0)
(1.00559 0.00800305 0)
(1.00569 0.00809594 0)
(1.00579 0.00820205 0)
(1.00589 0.00832182 0)
(1.00599 0.00845543 0)
(1.0061 0.00860279 0)
(1.00621 0.00876365 0)
(1.00633 0.00893766 0)
(1.00645 0.00912434 0)
(1.00658 0.00932317 0)
(1.00673 0.00953352 0)
(1.00688 0.00975472 0)
(1.00704 0.00998599 0)
(1.00723 0.0102265 0)
(1.00742 0.0104753 0)
(1.00763 0.0107315 0)
(1.00787 0.010994 0)
(1.00812 0.0112617 0)
(1.00839 0.0115332 0)
(1.00869 0.0118074 0)
(1.009 0.0120823 0)
(1.00935 0.0123567 0)
(1 0.000368189 0)
(1.00009 0.0011 0)
(1.00025 0.00180705 0)
(1.00047 0.00247478 0)
(1.00075 0.00309247 0)
(1.00105 0.00365469 0)
(1.00138 0.00416118 0)
(1.0017 0.00461544 0)
(1.00201 0.00502256 0)
(1.00231 0.00538745 0)
(1.0026 0.00571393 0)
(1.00287 0.00600501 0)
(1.00312 0.00626358 0)
(1.00335 0.00649279 0)
(1.00356 0.00669578 0)
(1.00376 0.00687507 0)
(1.00393 0.00703221 0)
(1.0041 0.00716794 0)
(1.00425 0.00728293 0)
(1.00439 0.00737848 0)
(1.00452 0.00745697 0)
(1.00464 0.00752192 0)
(1.00476 0.0075776 0)
(1.00487 0.00762852 0)
(1.00498 0.00767899 0)
(1.00509 0.00773277 0)
(1.00519 0.00779296 0)
(1.0053 0.00786199 0)
(1.0054 0.00794164 0)
(1.0055 0.00803318 0)
(1.00561 0.00813739 0)
(1.00572 0.0082547 0)
(1.00583 0.00838518 0)
(1.00594 0.00852869 0)
(1.00606 0.00868491 0)
(1.00619 0.00885338 0)
(1.00632 0.00903355 0)
(1.00646 0.00922481 0)
(1.00661 0.00942645 0)
(1.00678 0.00963772 0)
(1.00695 0.00985776 0)
(1.00714 0.0100857 0)
(1.00734 0.0103205 0)
(1.00756 0.0105613 0)
(1.0078 0.010807 0)
(1.00806 0.0110564 0)
(1.00833 0.0113083 0)
(1.00863 0.0115615 0)
(1.00895 0.0118143 0)
(1.00929 0.0120652 0)
(1 0.000350115 0)
(1.00008 0.00104757 0)
(1.00022 0.0017244 0)
(1.00043 0.00236774 0)
(1.00068 0.00296768 0)
(1.00097 0.00351868 0)
(1.00127 0.00401956 0)
(1.00157 0.00447255 0)
(1.00187 0.00488154 0)
(1.00215 0.00525044 0)
(1.00242 0.00558239 0)
(1.00268 0.00587991 0)
(1.00292 0.0061455 0)
(1.00315 0.00638195 0)
(1.00335 0.00659212 0)
(1.00354 0.0067783 0)
(1.00372 0.00694183 0)
(1.00388 0.00708334 0)
(1.00403 0.00720338 0)
(1.00418 0.00730318 0)
(1.00431 0.00738512 0)
(1.00443 0.00745274 0)
(1.00455 0.00751037 0)
(1.00467 0.00756259 0)
(1.00478 0.00761379 0)
(1.00489 0.00766778 0)
(1.005 0.00772771 0)
(1.00511 0.00779599 0)
(1.00522 0.00787444 0)
(1.00533 0.00796426 0)
(1.00544 0.00806623 0)
(1.00556 0.0081807 0)
(1.00568 0.00830769 0)
(1.0058 0.00844699 0)
(1.00593 0.00859819 0)
(1.00606 0.00876076 0)
(1.0062 0.00893408 0)
(1.00635 0.00911745 0)
(1.00651 0.00931009 0)
(1.00668 0.00951118 0)
(1.00686 0.00971981 0)
(1.00706 0.00993503 0)
(1.00727 0.0101559 0)
(1.00749 0.0103813 0)
(1.00774 0.0106103 0)
(1.008 0.0108417 0)
(1.00828 0.0110744 0)
(1.00858 0.0113071 0)
(1.00889 0.0115385 0)
(1.00923 0.0117671 0)
(1 0.000333174 0)
(1.00007 0.000998374 0)
(1.0002 0.00164664 0)
(1.00039 0.00226659 0)
(1.00063 0.00284912 0)
(1.00089 0.00338862 0)
(1.00117 0.00388322 0)
(1.00145 0.00433409 0)
(1.00173 0.00474404 0)
(1.002 0.00511609 0)
(1.00226 0.00545272 0)
(1.00251 0.00575592 0)
(1.00274 0.00602781 0)
(1.00295 0.00627086 0)
(1.00316 0.00648763 0)
(1.00334 0.00668017 0)
(1.00352 0.00684964 0)
(1.00368 0.0069965 0)
(1.00383 0.0071212 0)
(1.00397 0.0072249 0)
(1.00411 0.00730995 0)
(1.00423 0.0073799 0)
(1.00436 0.00743914 0)
(1.00448 0.00749235 0)
(1.00459 0.00754395 0)
(1.00471 0.00759783 0)
(1.00482 0.00765715 0)
(1.00494 0.00772437 0)
(1.00505 0.00780125 0)
(1.00517 0.00788902 0)
(1.00529 0.00798839 0)
(1.00541 0.00809967 0)
(1.00554 0.00822281 0)
(1.00567 0.00835755 0)
(1.0058 0.00850339 0)
(1.00594 0.00865974 0)
(1.00609 0.0088259 0)
(1.00625 0.00900109 0)
(1.00641 0.0091845 0)
(1.00659 0.00937521 0)
(1.00678 0.00957229 0)
(1.00698 0.00977476 0)
(1.0072 0.0099816 0)
(1.00743 0.0101918 0)
(1.00767 0.0104043 0)
(1.00794 0.0106181 0)
(1.00822 0.0108321 0)
(1.00852 0.0110451 0)
(1.00883 0.0112558 0)
(1.00917 0.0114629 0)
(1 0.000317278 0)
(1.00007 0.000952155 0)
(1.00019 0.0015734 0)
(1.00036 0.00217096 0)
(1.00057 0.00273645 0)
(1.00082 0.00326429 0)
(1.00107 0.00375205 0)
(1.00134 0.00420003 0)
(1.0016 0.0046101 0)
(1.00186 0.00498448 0)
(1.00211 0.00532498 0)
(1.00234 0.00563311 0)
(1.00257 0.0059106 0)
(1.00278 0.00615958 0)
(1.00297 0.00638235 0)
(1.00316 0.00658072 0)
(1.00333 0.00675564 0)
(1.00349 0.00690742 0)
(1.00364 0.00703637 0)
(1.00378 0.00714357 0)
(1.00392 0.00723135 0)
(1.00405 0.00730329 0)
(1.00417 0.00736381 0)
(1.0043 0.00741765 0)
(1.00442 0.00746933 0)
(1.00454 0.00752275 0)
(1.00466 0.00758114 0)
(1.00478 0.00764694 0)
(1.0049 0.00772193 0)
(1.00502 0.0078073 0)
(1.00514 0.00790373 0)
(1.00527 0.00801147 0)
(1.0054 0.00813044 0)
(1.00554 0.00826027 0)
(1.00568 0.00840044 0)
(1.00583 0.00855027 0)
(1.00599 0.008709 0)
(1.00615 0.00887579 0)
(1.00632 0.00904977 0)
(1.00651 0.00922997 0)
(1.0067 0.00941544 0)
(1.00691 0.00960514 0)
(1.00713 0.00979809 0)
(1.00736 0.00999324 0)
(1.00761 0.0101896 0)
(1.00788 0.0103862 0)
(1.00816 0.010582 0)
(1.00846 0.0107759 0)
(1.00877 0.0109668 0)
(1.00911 0.0111535 0)
(1 0.000302343 0)
(1.00006 0.000908686 0)
(1.00017 0.00150436 0)
(1.00033 0.0020805 0)
(1.00053 0.00262936 0)
(1.00075 0.00314544 0)
(1.00099 0.00362589 0)
(1.00124 0.00407029 0)
(1.00148 0.0044797 0)
(1.00173 0.00485561 0)
(1.00196 0.00519921 0)
(1.00219 0.00551153 0)
(1.00241 0.00579391 0)
(1.00261 0.00604817 0)
(1.0028 0.00627633 0)
(1.00298 0.00647996 0)
(1.00315 0.00665983 0)
(1.00331 0.00681606 0)
(1.00346 0.00694883 0)
(1.0036 0.00705913 0)
(1.00374 0.00714926 0)
(1.00387 0.00722281 0)
(1.004 0.00728425 0)
(1.00413 0.00733838 0)
(1.00425 0.00738978 0)
(1.00437 0.00744242 0)
(1.0045 0.00749953 0)
(1.00462 0.00756358 0)
(1.00475 0.00763633 0)
(1.00488 0.00771897 0)
(1.00501 0.00781212 0)
(1.00514 0.007916 0)
(1.00528 0.00803047 0)
(1.00542 0.00815511 0)
(1.00557 0.00828932 0)
(1.00573 0.00843237 0)
(1.00589 0.00858344 0)
(1.00606 0.00874164 0)
(1.00624 0.00890604 0)
(1.00643 0.00907566 0)
(1.00663 0.0092495 0)
(1.00684 0.00942652 0)
(1.00706 0.00960572 0)
(1.0073 0.0097861 0)
(1.00755 0.00996671 0)
(1.00782 0.0101466 0)
(1.0081 0.0103248 0)
(1.00839 0.0105004 0)
(1.00871 0.0106724 0)
(1.00903 0.0108396 0)
(1 0.000288293 0)
(1.00005 0.000867755 0)
(1.00016 0.00143922 0)
(1.0003 0.00199484 0)
(1.00048 0.0025275 0)
(1.00069 0.00303181 0)
(1.00091 0.00350457 0)
(1.00114 0.00394478 0)
(1.00138 0.00435282 0)
(1.00161 0.0047295 0)
(1.00183 0.00507544 0)
(1.00205 0.00539122 0)
(1.00226 0.00567778 0)
(1.00245 0.00593665 0)
(1.00264 0.00616958 0)
(1.00282 0.00637791 0)
(1.00298 0.0065622 0)
(1.00314 0.0067224 0)
(1.00329 0.00685853 0)
(1.00343 0.00697151 0)
(1.00357 0.00706358 0)
(1.00371 0.00713835 0)
(1.00384 0.00720035 0)
(1.00397 0.00725442 0)
(1.0041 0.00730519 0)
(1.00422 0.00735669 0)
(1.00435 0.00741218 0)
(1.00448 0.00747414 0)
(1.00461 0.00754433 0)
(1.00475 0.0076239 0)
(1.00488 0.00771346 0)
(1.00502 0.00781318 0)
(1.00517 0.00792285 0)
(1.00531 0.00804201 0)
(1.00547 0.00817001 0)
(1.00563 0.00830606 0)
(1.0058 0.00844929 0)
(1.00597 0.00859876 0)
(1.00616 0.00875351 0)
(1.00635 0.00891252 0)
(1.00655 0.00907477 0)
(1.00677 0.00923923 0)
(1.007 0.00940492 0)
(1.00724 0.00957084 0)
(1.00749 0.00973611 0)
(1.00775 0.00989983 0)
(1.00803 0.0100612 0)
(1.00833 0.0102193 0)
(1.00863 0.0103733 0)
(1.00896 0.0105221 0)
(1 0.000275057 0)
(1.00005 0.000829162 0)
(1.00014 0.00137767 0)
(1.00028 0.00191366 0)
(1.00044 0.00243057 0)
(1.00064 0.00292312 0)
(1.00084 0.00338789 0)
(1.00106 0.00382337 0)
(1.00128 0.00422937 0)
(1.0015 0.0046061 0)
(1.00171 0.00495367 0)
(1.00192 0.00527218 0)
(1.00212 0.00556223 0)
(1.00231 0.00582504 0)
(1.00249 0.00606211 0)
(1.00266 0.00627456 0)
(1.00283 0.00646273 0)
(1.00298 0.00662638 0)
(1.00313 0.00676542 0)
(1.00328 0.00688063 0)
(1.00342 0.00697424 0)
(1.00355 0.00704984 0)
(1.00369 0.00711201 0)
(1.00382 0.00716564 0)
(1.00395 0.00721543 0)
(1.00408 0.00726545 0)
(1.00421 0.00731898 0)
(1.00435 0.00737852 0)
(1.00448 0.00744583 0)
(1.00462 0.00752202 0)
(1.00476 0.00760769 0)
(1.00491 0.00770294 0)
(1.00506 0.00780755 0)
(1.00521 0.007921 0)
(1.00537 0.00804257 0)
(1.00554 0.00817143 0)
(1.00571 0.00830668 0)
(1.00589 0.00844732 0)
(1.00608 0.00859238 0)
(1.00628 0.00874081 0)
(1.00648 0.00889159 0)
(1.0067 0.00904369 0)
(1.00693 0.00919614 0)
(1.00717 0.00934798 0)
(1.00742 0.0094984 0)
(1.00769 0.00964656 0)
(1.00797 0.00979176 0)
(1.00826 0.00993315 0)
(1.00856 0.0100701 0)
(1.00888 0.0102016 0)
(1 0.00026257 0)
(1.00005 0.000792722 0)
(1.00013 0.00131945 0)
(1.00025 0.00183665 0)
(1.00041 0.00233825 0)
(1.00059 0.00281911 0)
(1.00078 0.00327564 0)
(1.00098 0.00370592 0)
(1.00119 0.00410927 0)
(1.00139 0.00448537 0)
(1.0016 0.00483386 0)
(1.0018 0.00515441 0)
(1.00199 0.00544725 0)
(1.00217 0.00571334 0)
(1.00235 0.00595392 0)
(1.00252 0.00616989 0)
(1.00268 0.00636138 0)
(1.00284 0.00652799 0)
(1.00299 0.00666944 0)
(1.00313 0.00678644 0)
(1.00327 0.00688115 0)
(1.00341 0.00695718 0)
(1.00354 0.00701913 0)
(1.00368 0.00707196 0)
(1.00381 0.00712041 0)
(1.00395 0.0071686 0)
(1.00409 0.00721984 0)
(1.00422 0.00727663 0)
(1.00436 0.00734074 0)
(1.00451 0.00741326 0)
(1.00465 0.00749474 0)
(1.0048 0.00758528 0)
(1.00496 0.00768459 0)
(1.00512 0.0077921 0)
(1.00528 0.00790706 0)
(1.00545 0.0080286 0)
(1.00563 0.00815576 0)
(1.00581 0.00828754 0)
(1.00601 0.00842293 0)
(1.00621 0.00856087 0)
(1.00642 0.00870034 0)
(1.00664 0.00884031 0)
(1.00687 0.00897985 0)
(1.00711 0.00911806 0)
(1.00736 0.00925417 0)
(1.00762 0.00938741 0)
(1.0079 0.0095172 0)
(1.00818 0.00964278 0)
(1.00848 0.00976367 0)
(1.00879 0.00987891 0)
(1 0.00025077 0)
(1.00004 0.000758262 0)
(1.00012 0.0012643 0)
(1.00023 0.00176349 0)
(1.00038 0.00225022 0)
(1.00054 0.0027195 0)
(1.00072 0.00316758 0)
(1.00091 0.00359226 0)
(1.0011 0.00399239 0)
(1.0013 0.00436723 0)
(1.00149 0.00471595 0)
(1.00168 0.00503785 0)
(1.00187 0.00533282 0)
(1.00205 0.00560152 0)
(1.00222 0.00584498 0)
(1.00239 0.00606387 0)
(1.00255 0.00625813 0)
(1.0027 0.00642715 0)
(1.00285 0.00657053 0)
(1.00299 0.00668885 0)
(1.00313 0.00678423 0)
(1.00327 0.00686028 0)
(1.00341 0.00692162 0)
(1.00355 0.00697327 0)
(1.00369 0.00702003 0)
(1.00383 0.00706605 0)
(1.00397 0.00711467 0)
(1.00411 0.00716841 0)
(1.00425 0.00722901 0)
(1.0044 0.00729757 0)
(1.00455 0.00737462 0)
(1.00471 0.0074602 0)
(1.00486 0.00755399 0)
(1.00503 0.00765539 0)
(1.0052 0.0077636 0)
(1.00537 0.00787771 0)
(1.00555 0.00799674 0)
(1.00574 0.00811966 0)
(1.00593 0.00824544 0)
(1.00614 0.00837303 0)
(1.00635 0.0085014 0)
(1.00657 0.00862955 0)
(1.0068 0.00875658 0)
(1.00704 0.00888163 0)
(1.00729 0.00900401 0)
(1.00755 0.00912302 0)
(1.00782 0.00923818 0)
(1.00811 0.00934884 0)
(1.0084 0.00945464 0)
(1.0087 0.00955475 0)
(1 0.000239601 0)
(1.00004 0.000725618 0)
(1.00011 0.00121196 0)
(1.00022 0.00169389 0)
(1.00035 0.00216618 0)
(1.0005 0.00262399 0)
(1.00067 0.00306348 0)
(1.00084 0.00348217 0)
(1.00103 0.00387858 0)
(1.00121 0.00425155 0)
(1.0014 0.00459987 0)
(1.00158 0.00492245 0)
(1.00176 0.00521887 0)
(1.00193 0.00548954 0)
(1.0021 0.00573524 0)
(1.00226 0.00595645 0)
(1.00242 0.00615291 0)
(1.00257 0.00632382 0)
(1.00272 0.00646862 0)
(1.00287 0.0065878 0)
(1.00301 0.00668341 0)
(1.00315 0.00675905 0)
(1.00329 0.0068194 0)
(1.00343 0.00686951 0)
(1.00357 0.00691422 0)
(1.00371 0.00695773 0)
(1.00386 0.00700341 0)
(1.004 0.00705379 0)
(1.00415 0.00711061 0)
(1.0043 0.00717496 0)
(1.00446 0.00724733 0)
(1.00461 0.00732774 0)
(1.00478 0.00741583 0)
(1.00494 0.00751097 0)
(1.00512 0.00761232 0)
(1.00529 0.00771895 0)
(1.00548 0.00782984 0)
(1.00567 0.00794395 0)
(1.00587 0.00806024 0)
(1.00607 0.00817766 0)
(1.00629 0.0082952 0)
(1.00651 0.00841188 0)
(1.00674 0.00852683 0)
(1.00698 0.00863925 0)
(1.00723 0.00874852 0)
(1.00748 0.00885402 0)
(1.00775 0.00895536 0)
(1.00803 0.00905201 0)
(1.00831 0.00914372 0)
(1.0086 0.00922977 0)
(1 0.000229008 0)
(1.00004 0.000694638 0)
(1.0001 0.00116222 0)
(1.0002 0.00162756 0)
(1.00032 0.00208583 0)
(1.00046 0.0025323 0)
(1.00062 0.00296308 0)
(1.00079 0.00337546 0)
(1.00096 0.00376768 0)
(1.00113 0.00413822 0)
(1.00131 0.0044855 0)
(1.00148 0.00480812 0)
(1.00166 0.00510535 0)
(1.00182 0.00537733 0)
(1.00199 0.00562466 0)
(1.00215 0.00584759 0)
(1.0023 0.00604567 0)
(1.00245 0.00621793 0)
(1.0026 0.00636365 0)
(1.00275 0.0064832 0)
(1.00289 0.0065786 0)
(1.00303 0.00665343 0)
(1.00318 0.00671239 0)
(1.00332 0.00676058 0)
(1.00346 0.0068029 0)
(1.00361 0.00684358 0)
(1.00375 0.00688602 0)
(1.0039 0.00693275 0)
(1.00405 0.00698554 0)
(1.00421 0.00704543 0)
(1.00437 0.0071129 0)
(1.00453 0.00718796 0)
(1.00469 0.00727021 0)
(1.00487 0.00735898 0)
(1.00504 0.00745341 0)
(1.00522 0.00755253 0)
(1.00541 0.00765532 0)
(1.0056 0.00776072 0)
(1.0058 0.00786768 0)
(1.00601 0.00797517 0)
(1.00622 0.00808219 0)
(1.00644 0.00818778 0)
(1.00667 0.00829113 0)
(1.00691 0.00839149 0)
(1.00716 0.00848829 0)
(1.00741 0.00858102 0)
(1.00767 0.00866938 0)
(1.00794 0.00875293 0)
(1.00822 0.00883155 0)
(1.0085 0.00890462 0)
(1 0.000218942 0)
(1.00003 0.000665179 0)
(1.0001 0.00111484 0)
(1.00018 0.00156425 0)
(1.0003 0.00200888 0)
(1.00043 0.00244414 0)
(1.00058 0.00286611 0)
(1.00073 0.0032719 0)
(1.0009 0.00365949 0)
(1.00106 0.00402706 0)
(1.00123 0.00437272 0)
(1.0014 0.00469475 0)
(1.00156 0.00499215 0)
(1.00173 0.00526482 0)
(1.00189 0.00551314 0)
(1.00204 0.0057372 0)
(1.0022 0.00593633 0)
(1.00235 0.0061094 0)
(1.00249 0.00625553 0)
(1.00264 0.00637499 0)
(1.00278 0.00646973 0)
(1.00293 0.00654333 0)
(1.00307 0.00660052 0)
(1.00322 0.00664644 0)
(1.00336 0.00668603 0)
(1.00351 0.00672356 0)
(1.00366 0.00676247 0)
(1.00381 0.0068053 0)
(1.00397 0.0068538 0)
(1.00412 0.00690902 0)
(1.00428 0.00697142 0)
(1.00445 0.00704097 0)
(1.00462 0.00711726 0)
(1.00479 0.00719958 0)
(1.00497 0.00728706 0)
(1.00515 0.0073787 0)
(1.00534 0.00747347 0)
(1.00554 0.0075703 0)
(1.00574 0.00766814 0)
(1.00594 0.00776598 0)
(1.00616 0.00786282 0)
(1.00638 0.00795776 0)
(1.00661 0.00805002 0)
(1.00684 0.00813891 0)
(1.00708 0.00822393 0)
(1.00733 0.00830466 0)
(1.00759 0.00838087 0)
(1.00785 0.00845224 0)
(1.00812 0.00851876 0)
(1.0084 0.00857991 0)
(1 0.000209356 0)
(1.00003 0.000637103 0)
(1.00009 0.00106963 0)
(1.00017 0.00150368 0)
(1.00028 0.00193504 0)
(1.0004 0.00235923 0)
(1.00054 0.0027723 0)
(1.00068 0.00317124 0)
(1.00084 0.00355379 0)
(1.001 0.0039179 0)
(1.00116 0.00426138 0)
(1.00132 0.00458221 0)
(1.00148 0.00487916 0)
(1.00164 0.0051519 0)
(1.00179 0.00540061 0)
(1.00195 0.00562519 0)
(1.0021 0.00582481 0)
(1.00225 0.00599815 0)
(1.00239 0.00614418 0)
(1.00254 0.00626308 0)
(1.00268 0.00635673 0)
(1.00283 0.00642869 0)
(1.00298 0.00648373 0)
(1.00312 0.00652703 0)
(1.00327 0.00656356 0)
(1.00342 0.00659766 0)
(1.00357 0.00663276 0)
(1.00373 0.00667144 0)
(1.00388 0.00671543 0)
(1.00404 0.00676579 0)
(1.00421 0.00682296 0)
(1.00438 0.00688689 0)
(1.00455 0.00695714 0)
(1.00472 0.00703298 0)
(1.0049 0.00711352 0)
(1.00509 0.00719774 0)
(1.00528 0.0072846 0)
(1.00547 0.00737304 0)
(1.00568 0.00746202 0)
(1.00588 0.00755051 0)
(1.0061 0.00763757 0)
(1.00631 0.00772233 0)
(1.00654 0.00780404 0)
(1.00677 0.00788207 0)
(1.00701 0.00795601 0)
(1.00725 0.0080255 0)
(1.0075 0.00809042 0)
(1.00776 0.00815053 0)
(1.00802 0.00820592 0)
(1.00829 0.00825618 0)
(1 0.000200205 0)
(1.00003 0.000610283 0)
(1.00008 0.00102637 0)
(1.00016 0.0014456 0)
(1.00026 0.00186402 0)
(1.00037 0.00227727 0)
(1.0005 0.00268137 0)
(1.00064 0.00307322 0)
(1.00079 0.00345037 0)
(1.00094 0.00381054 0)
(1.00109 0.00415129 0)
(1.00125 0.00447035 0)
(1.0014 0.00476624 0)
(1.00155 0.00503843 0)
(1.00171 0.00528693 0)
(1.00186 0.00551145 0)
(1.00201 0.005711 0)
(1.00216 0.00588408 0)
(1.0023 0.00602952 0)
(1.00245 0.00614739 0)
(1.00259 0.00623951 0)
(1.00274 0.00630944 0)
(1.00289 0.00636196 0)
(1.00304 0.0064023 0)
(1.00319 0.00643548 0)
(1.00334 0.00646586 0)
(1.00349 0.0064969 0)
(1.00365 0.0065312 0)
(1.00381 0.0065705 0)
(1.00397 0.00661584 0)
(1.00414 0.00666766 0)
(1.00431 0.00672587 0)
(1.00448 0.00679003 0)
(1.00466 0.00685939 0)
(1.00484 0.00693303 0)
(1.00503 0.00700994 0)
(1.00522 0.00708906 0)
(1.00541 0.00716933 0)
(1.00561 0.00724971 0)
(1.00582 0.00732922 0)
(1.00603 0.00740692 0)
(1.00625 0.00748198 0)
(1.00647 0.00755371 0)
(1.0067 0.00762153 0)
(1.00693 0.0076851 0)
(1.00717 0.00774413 0)
(1.00742 0.00779859 0)
(1.00767 0.00784834 0)
(1.00792 0.00789356 0)
(1.00818 0.00793395 0)
(1 0.000191448 0)
(1.00003 0.000584596 0)
(1.00008 0.000984876 0)
(1.00015 0.00138977 0)
(1.00024 0.00179556 0)
(1.00035 0.00219798 0)
(1.00047 0.00259305 0)
(1.0006 0.00297758 0)
(1.00074 0.00334898 0)
(1.00088 0.00370476 0)
(1.00103 0.00404226 0)
(1.00118 0.00435899 0)
(1.00133 0.00465323 0)
(1.00148 0.00492429 0)
(1.00163 0.00517198 0)
(1.00178 0.00539587 0)
(1.00193 0.00559479 0)
(1.00207 0.00576708 0)
(1.00222 0.00591144 0)
(1.00237 0.00602782 0)
(1.00251 0.00611799 0)
(1.00266 0.00618551 0)
(1.00281 0.00623516 0)
(1.00296 0.00627222 0)
(1.00311 0.00630176 0)
(1.00326 0.00632816 0)
(1.00342 0.00635492 0)
(1.00358 0.00638465 0)
(1.00374 0.00641909 0)
(1.0039 0.00645928 0)
(1.00407 0.00650564 0)
(1.00424 0.00655809 0)
(1.00442 0.00661615 0)
(1.0046 0.00667906 0)
(1.00478 0.00674589 0)
(1.00497 0.00681561 0)
(1.00516 0.00688718 0)
(1.00536 0.00695953 0)
(1.00556 0.00703164 0)
(1.00576 0.00710254 0)
(1.00597 0.00717134 0)
(1.00618 0.00723722 0)
(1.0064 0.00729955 0)
(1.00663 0.00735781 0)
(1.00686 0.00741172 0)
(1.00709 0.00746108 0)
(1.00733 0.00750591 0)
(1.00757 0.0075462 0)
(1.00782 0.00758218 0)
(1.00807 0.00761368 0)
(1 0.000183045 0)
(1.00002 0.000559927 0)
(1.00007 0.00094497 0)
(1.00014 0.00133596 0)
(1.00023 0.00172938 0)
(1.00033 0.00212107 0)
(1.00044 0.00250705 0)
(1.00056 0.00288405 0)
(1.0007 0.00324936 0)
(1.00083 0.00360032 0)
(1.00098 0.00393408 0)
(1.00112 0.00424792 0)
(1.00127 0.00453996 0)
(1.00141 0.0048093 0)
(1.00156 0.00505561 0)
(1.00171 0.0052783 0)
(1.00185 0.00547605 0)
(1.002 0.00564704 0)
(1.00214 0.00578983 0)
(1.00229 0.00590428 0)
(1.00244 0.0059921 0)
(1.00259 0.00605683 0)
(1.00273 0.00610329 0)
(1.00289 0.00613677 0)
(1.00304 0.0061624 0)
(1.00319 0.00618459 0)
(1.00335 0.00620687 0)
(1.00351 0.00623185 0)
(1.00368 0.00626129 0)
(1.00384 0.00629623 0)
(1.00401 0.00633707 0)
(1.00419 0.00638373 0)
(1.00436 0.00643571 0)
(1.00454 0.00649224 0)
(1.00473 0.00655237 0)
(1.00491 0.00661509 0)
(1.0051 0.00667933 0)
(1.0053 0.00674404 0)
(1.0055 0.00680823 0)
(1.0057 0.00687093 0)
(1.00591 0.00693129 0)
(1.00612 0.00698853 0)
(1.00634 0.00704205 0)
(1.00656 0.00709142 0)
(1.00678 0.00713638 0)
(1.00701 0.00717684 0)
(1.00724 0.00721288 0)
(1.00747 0.00724456 0)
(1.00771 0.00727221 0)
(1.00795 0.00729575 0)
(1 0.000174958 0)
(1.00002 0.000536166 0)
(1.00007 0.000906473 0)
(1.00013 0.00128394 0)
(1.00021 0.00166523 0)
(1.00031 0.00204627 0)
(1.00042 0.00242308 0)
(1.00053 0.00279234 0)
(1.00066 0.00315124 0)
(1.00079 0.00349697 0)
(1.00093 0.0038265 0)
(1.00107 0.00413694 0)
(1.00121 0.00442622 0)
(1.00135 0.00469328 0)
(1.0015 0.00493765 0)
(1.00164 0.0051586 0)
(1.00179 0.00535464 0)
(1.00193 0.00552383 0)
(1.00208 0.00566459 0)
(1.00222 0.00577667 0)
(1.00237 0.00586175 0)
(1.00252 0.00592335 0)
(1.00267 0.00596629 0)
(1.00282 0.00599592 0)
(1.00298 0.00601739 0)
(1.00313 0.00603516 0)
(1.00329 0.00605278 0)
(1.00345 0.00607288 0)
(1.00362 0.00609722 0)
(1.00379 0.00612684 0)
(1.00396 0.00616213 0)
(1.00413 0.00620301 0)
(1.00431 0.00624896 0)
(1.00449 0.0062992 0)
(1.00467 0.00635279 0)
(1.00486 0.0064087 0)
(1.00505 0.00646586 0)
(1.00524 0.00652326 0)
(1.00544 0.00657989 0)
(1.00564 0.00663483 0)
(1.00585 0.00668723 0)
(1.00605 0.00673637 0)
(1.00627 0.0067817 0)
(1.00648 0.00682283 0)
(1.0067 0.00685956 0)
(1.00692 0.00689187 0)
(1.00715 0.00691992 0)
(1.00737 0.00694385 0)
(1.0076 0.00696404 0)
(1.00783 0.00698051 0)
(1 0.000167152 0)
(1.00002 0.000513206 0)
(1.00006 0.000869219 0)
(1.00012 0.00123349 0)
(1.0002 0.00160284 0)
(1.00029 0.00197328 0)
(1.00039 0.00234085 0)
(1.0005 0.00270216 0)
(1.00063 0.00305434 0)
(1.00075 0.00339444 0)
(1.00088 0.00371928 0)
(1.00102 0.00402581 0)
(1.00116 0.00431179 0)
(1.0013 0.00457603 0)
(1.00144 0.00481792 0)
(1.00158 0.00503658 0)
(1.00173 0.0052304 0)
(1.00187 0.0053973 0)
(1.00202 0.00553557 0)
(1.00216 0.00564489 0)
(1.00231 0.00572686 0)
(1.00246 0.00578499 0)
(1.00261 0.00582413 0)
(1.00276 0.00584966 0)
(1.00292 0.00586676 0)
(1.00308 0.00587993 0)
(1.00324 0.00589275 0)
(1.0034 0.00590785 0)
(1.00357 0.00592701 0)
(1.00374 0.00595126 0)
(1.00391 0.00598101 0)
(1.00408 0.00601614 0)
(1.00426 0.00605615 0)
(1.00444 0.00610023 0)
(1.00462 0.00614746 0)
(1.00481 0.00619678 0)
(1.005 0.00624716 0)
(1.00519 0.00629757 0)
(1.00538 0.00634703 0)
(1.00558 0.00639464 0)
(1.00578 0.00643959 0)
(1.00599 0.0064812 0)
(1.0062 0.00651894 0)
(1.00641 0.00655248 0)
(1.00662 0.00658169 0)
(1.00683 0.0066066 0)
(1.00705 0.00662742 0)
(1.00727 0.00664441 0)
(1.00749 0.00665797 0)
(1.00772 0.00666823 0)
(1 0.000159592 0)
(1.00002 0.000490946 0)
(1.00006 0.000833045 0)
(1.00012 0.0011844 0)
(1.00019 0.00154197 0)
(1.00027 0.00190184 0)
(1.00037 0.00226007 0)
(1.00048 0.00261323 0)
(1.0006 0.00295837 0)
(1.00072 0.00329245 0)
(1.00084 0.00361216 0)
(1.00098 0.00391428 0)
(1.00111 0.00419645 0)
(1.00125 0.00445733 0)
(1.00139 0.0046962 0)
(1.00153 0.00491206 0)
(1.00167 0.00510317 0)
(1.00182 0.00526732 0)
(1.00196 0.00540267 0)
(1.00211 0.00550882 0)
(1.00226 0.00558732 0)
(1.00241 0.00564168 0)
(1.00256 0.00567676 0)
(1.00271 0.00569796 0)
(1.00287 0.00571051 0)
(1.00303 0.00571893 0)
(1.00319 0.00572682 0)
(1.00335 0.00573684 0)
(1.00352 0.00575078 0)
(1.00369 0.00576967 0)
(1.00386 0.0057939 0)
(1.00403 0.00582336 0)
(1.00421 0.00585753 0)
(1.00439 0.00589562 0)
(1.00457 0.00593668 0)
(1.00476 0.00597967 0)
(1.00495 0.00602357 0)
(1.00514 0.00606734 0)
(1.00533 0.00611004 0)
(1.00552 0.00615079 0)
(1.00572 0.0061888 0)
(1.00592 0.00622341 0)
(1.00613 0.00625417 0)
(1.00633 0.00628077 0)
(1.00654 0.00630314 0)
(1.00675 0.00632137 0)
(1.00696 0.00633573 0)
(1.00717 0.00634655 0)
(1.00738 0.00635427 0)
(1.0076 0.00635912 0)
(1 0.000152245 0)
(1.00002 0.00046929 0)
(1.00006 0.000797796 0)
(1.00011 0.00113646 0)
(1.00018 0.00148237 0)
(1.00026 0.00183168 0)
(1.00035 0.00218045 0)
(1.00046 0.00252524 0)
(1.00057 0.00286304 0)
(1.00069 0.00319072 0)
(1.00081 0.00350485 0)
(1.00094 0.00380209 0)
(1.00107 0.00407994 0)
(1.00121 0.00433695 0)
(1.00134 0.00457229 0)
(1.00148 0.00478484 0)
(1.00163 0.00497276 0)
(1.00177 0.00513369 0)
(1.00191 0.00526572 0)
(1.00206 0.00536834 0)
(1.00221 0.00544306 0)
(1.00236 0.00549337 0)
(1.00251 0.00552415 0)
(1.00267 0.00554082 0)
(1.00282 0.00554866 0)
(1.00298 0.00555221 0)
(1.00315 0.00555509 0)
(1.00331 0.00555999 0)
(1.00348 0.00556868 0)
(1.00365 0.00558222 0)
(1.00382 0.00560099 0)
(1.00399 0.00562488 0)
(1.00417 0.00565336 0)
(1.00435 0.00568564 0)
(1.00453 0.00572077 0)
(1.00471 0.0057577 0)
(1.0049 0.00579543 0)
(1.00509 0.00583294 0)
(1.00528 0.0058693 0)
(1.00547 0.00590364 0)
(1.00566 0.00593521 0)
(1.00586 0.0059634 0)
(1.00606 0.00598777 0)
(1.00626 0.00600806 0)
(1.00646 0.00602425 0)
(1.00666 0.0060365 0)
(1.00686 0.00604512 0)
(1.00707 0.0060505 0)
(1.00727 0.00605313 0)
(1.00748 0.00605333 0)
(1 0.00014508 0)
(1.00002 0.000448145 0)
(1.00005 0.00076332 0)
(1.0001 0.00108947 0)
(1.00017 0.0014238 0)
(1.00025 0.00176251 0)
(1.00034 0.0021017 0)
(1.00044 0.0024379 0)
(1.00054 0.00276804 0)
(1.00066 0.00308895 0)
(1.00078 0.00339706 0)
(1.00091 0.00368895 0)
(1.00104 0.00396198 0)
(1.00117 0.00421463 0)
(1.00131 0.00444594 0)
(1.00144 0.00465471 0)
(1.00158 0.00483896 0)
(1.00173 0.00499626 0)
(1.00187 0.00512456 0)
(1.00202 0.0052233 0)
(1.00217 0.00529394 0)
(1.00232 0.00533995 0)
(1.00247 0.00536622 0)
(1.00263 0.00537821 0)
(1.00278 0.00538121 0)
(1.00294 0.0053798 0)
(1.00311 0.00537763 0)
(1.00327 0.00537738 0)
(1.00344 0.00538086 0)
(1.00361 0.0053891 0)
(1.00378 0.00540251 0)
(1.00395 0.00542095 0)
(1.00413 0.00544391 0)
(1.00431 0.00547058 0)
(1.00449 0.00550001 0)
(1.00467 0.00553119 0)
(1.00485 0.00556308 0)
(1.00504 0.00559471 0)
(1.00522 0.00562514 0)
(1.00541 0.00565355 0)
(1.0056 0.00567919 0)
(1.00579 0.00570149 0)
(1.00599 0.00572005 0)
(1.00618 0.00573465 0)
(1.00638 0.00574531 0)
(1.00658 0.00575225 0)
(1.00677 0.0057558 0)
(1.00697 0.00575644 0)
(1.00717 0.00575469 0)
(1.00736 0.00575093 0)
(1 0.000138067 0)
(1.00002 0.000427419 0)
(1.00005 0.000729471 0)
(1.0001 0.00104323 0)
(1.00016 0.00136601 0)
(1.00024 0.00169408 0)
(1.00032 0.00202352 0)
(1.00042 0.00235089 0)
(1.00052 0.00267307 0)
(1.00064 0.00298681 0)
(1.00075 0.00328849 0)
(1.00088 0.00357457 0)
(1.001 0.00384231 0)
(1.00114 0.0040901 0)
(1.00127 0.00431691 0)
(1.00141 0.00452142 0)
(1.00155 0.00470158 0)
(1.00169 0.00485483 0)
(1.00184 0.00497905 0)
(1.00198 0.00507359 0)
(1.00213 0.00513987 0)
(1.00228 0.00518135 0)
(1.00244 0.00520294 0)
(1.00259 0.00521011 0)
(1.00275 0.00520818 0)
(1.00291 0.00520175 0)
(1.00307 0.0051945 0)
(1.00324 0.00518912 0)
(1.0034 0.00518743 0)
(1.00357 0.00519046 0)
(1.00374 0.00519861 0)
(1.00392 0.00521176 0)
(1.00409 0.00522938 0)
(1.00427 0.00525068 0)
(1.00445 0.00527469 0)
(1.00463 0.00530041 0)
(1.00481 0.00532682 0)
(1.00499 0.00535294 0)
(1.00517 0.00537788 0)
(1.00536 0.00540082 0)
(1.00554 0.00542104 0)
(1.00573 0.00543799 0)
(1.00592 0.00545129 0)
(1.00611 0.0054608 0)
(1.0063 0.00546654 0)
(1.00649 0.00546879 0)
(1.00668 0.00546793 0)
(1.00687 0.00546448 0)
(1.00706 0.005459 0)
(1.00725 0.00545193 0)
(1 0.000131176 0)
(1.00002 0.000407025 0)
(1.00005 0.000696106 0)
(1.0001 0.000997559 0)
(1.00016 0.00130879 0)
(1.00023 0.00162611 0)
(1.00031 0.00194564 0)
(1.0004 0.00226391 0)
(1.00051 0.00257781 0)
(1.00062 0.00288401 0)
(1.00073 0.00317882 0)
(1.00085 0.00345863 0)
(1.00098 0.00372062 0)
(1.00111 0.00396309 0)
(1.00124 0.00418492 0)
(1.00138 0.00438472 0)
(1.00152 0.00456035 0)
(1.00166 0.00470917 0)
(1.0018 0.00482897 0)
(1.00195 0.00491902 0)
(1.0021 0.00498071 0)
(1.00225 0.00501748 0)
(1.00241 0.00503424 0)
(1.00256 0.00503649 0)
(1.00272 0.00502957 0)
(1.00288 0.00501811 0)
(1.00304 0.00500579 0)
(1.00321 0.00499533 0)
(1.00337 0.00498854 0)
(1.00354 0.00498646 0)
(1.00371 0.00498951 0)
(1.00388 0.00499754 0)
(1.00406 0.00501003 0)
(1.00423 0.00502619 0)
(1.00441 0.00504506 0)
(1.00459 0.00506564 0)
(1.00476 0.00508692 0)
(1.00494 0.00510793 0)
(1.00512 0.0051278 0)
(1.00531 0.00514572 0)
(1.00549 0.005161 0)
(1.00567 0.00517312 0)
(1.00586 0.00518173 0)
(1.00604 0.0051867 0)
(1.00622 0.00518811 0)
(1.00641 0.00518627 0)
(1.00659 0.0051816 0)
(1.00677 0.00517467 0)
(1.00696 0.00516605 0)
(1.00714 0.00515628 0)
(1 0.000124378 0)
(1.00002 0.000386876 0)
(1.00005 0.000663084 0)
(1.00009 0.000952258 0)
(1.00015 0.00125188 0)
(1.00022 0.00155833 0)
(1.0003 0.00186775 0)
(1.00039 0.00217666 0)
(1.00049 0.00248193 0)
(1.0006 0.0027802 0)
(1.00071 0.00306773 0)
(1.00083 0.00334082 0)
(1.00095 0.0035966 0)
(1.00108 0.00383328 0)
(1.00122 0.00404968 0)
(1.00135 0.00424435 0)
(1.00149 0.00441506 0)
(1.00163 0.00455908 0)
(1.00178 0.00467412 0)
(1.00193 0.00475941 0)
(1.00208 0.00481628 0)
(1.00223 0.00484818 0)
(1.00238 0.00486001 0)
(1.00254 0.00485728 0)
(1.0027 0.00484534 0)
(1.00286 0.00482886 0)
(1.00302 0.00481152 0)
(1.00318 0.00479605 0)
(1.00335 0.00478428 0)
(1.00352 0.00477724 0)
(1.00369 0.00477534 0)
(1.00386 0.00477845 0)
(1.00403 0.00478604 0)
(1.0042 0.00479733 0)
(1.00437 0.00481135 0)
(1.00455 0.00482711 0)
(1.00472 0.00484361 0)
(1.0049 0.00485991 0)
(1.00508 0.00487512 0)
(1.00526 0.00488847 0)
(1.00543 0.00489929 0)
(1.00561 0.00490708 0)
(1.00579 0.00491151 0)
(1.00597 0.00491249 0)
(1.00615 0.00491012 0)
(1.00633 0.00490475 0)
(1.0065 0.00489684 0)
(1.00668 0.00488699 0)
(1.00686 0.00487579 0)
(1.00703 0.00486384 0)
(1 0.000117646 0)
(1.00002 0.00036689 0)
(1.00005 0.000630268 0)
(1.00009 0.000907142 0)
(1.00015 0.00119508 0)
(1.00021 0.00149049 0)
(1.00029 0.00178955 0)
(1.00038 0.00208881 0)
(1.00048 0.00238511 0)
(1.00058 0.00267506 0)
(1.00069 0.00295487 0)
(1.00081 0.00322079 0)
(1.00094 0.0034699 0)
(1.00106 0.00370035 0)
(1.0012 0.00391091 0)
(1.00133 0.00410004 0)
(1.00147 0.00426543 0)
(1.00161 0.00440429 0)
(1.00176 0.00451427 0)
(1.00191 0.00459454 0)
(1.00206 0.00464642 0)
(1.00221 0.00467332 0)
(1.00236 0.00468014 0)
(1.00252 0.00467241 0)
(1.00268 0.00465549 0)
(1.00284 0.00463404 0)
(1.003 0.00461177 0)
(1.00316 0.0045914 0)
(1.00333 0.00457476 0)
(1.00349 0.00456292 0)
(1.00366 0.00455626 0)
(1.00383 0.00455466 0)
(1.004 0.0045576 0)
(1.00417 0.00456427 0)
(1.00434 0.00457375 0)
(1.00452 0.00458502 0)
(1.00469 0.0045971 0)
(1.00486 0.00460906 0)
(1.00504 0.00462003 0)
(1.00521 0.00462925 0)
(1.00538 0.00463607 0)
(1.00556 0.00464 0)
(1.00573 0.00464075 0)
(1.0059 0.00463824 0)
(1.00608 0.00463261 0)
(1.00625 0.00462424 0)
(1.00642 0.00461359 0)
(1.00659 0.00460134 0)
(1.00676 0.00458807 0)
(1.00693 0.00457443 0)
(1 0.000110951 0)
(1.00002 0.000346981 0)
(1.00004 0.000597521 0)
(1.00009 0.000862026 0)
(1.00014 0.00113813 0)
(1.00021 0.00142231 0)
(1.00028 0.00171076 0)
(1.00037 0.00200005 0)
(1.00047 0.002287 0)
(1.00057 0.00256823 0)
(1.00068 0.00283989 0)
(1.0008 0.00309821 0)
(1.00092 0.00334021 0)
(1.00105 0.00356399 0)
(1.00118 0.00376826 0)
(1.00132 0.00395144 0)
(1.00145 0.00411115 0)
(1.0016 0.00424454 0)
(1.00174 0.00434919 0)
(1.00189 0.00442423 0)
(1.00204 0.00447096 0)
(1.00219 0.00449276 0)
(1.00235 0.00449454 0)
(1.0025 0.00448182 0)
(1.00266 0.00445995 0)
(1.00282 0.00443361 0)
(1.00298 0.00440651 0)
(1.00315 0.00438137 0)
(1.00331 0.00436005 0)
(1.00348 0.00434358 0)
(1.00364 0.00433236 0)
(1.00381 0.00432629 0)
(1.00398 0.00432482 0)
(1.00415 0.00432717 0)
(1.00432 0.0043324 0)
(1.00449 0.00433951 0)
(1.00466 0.00434753 0)
(1.00483 0.00435552 0)
(1.005 0.00436265 0)
(1.00517 0.00436816 0)
(1.00534 0.00437141 0)
(1.0055 0.00437195 0)
(1.00567 0.00436948 0)
(1.00584 0.00436397 0)
(1.00601 0.00435557 0)
(1.00618 0.00434467 0)
(1.00634 0.00433178 0)
(1.00651 0.00431759 0)
(1.00667 0.0043027 0)
(1.00683 0.0042878 0)
(1 0.000104265 0)
(1.00001 0.000327067 0)
(1.00004 0.000564706 0)
(1.00008 0.000816721 0)
(1.00014 0.00108082 0)
(1.0002 0.00135352 0)
(1.00028 0.00163107 0)
(1.00036 0.00191003 0)
(1.00046 0.00218726 0)
(1.00056 0.00245934 0)
(1.00067 0.00272243 0)
(1.00079 0.0029727 0)
(1.00091 0.00320713 0)
(1.00104 0.00342381 0)
(1.00117 0.00362138 0)
(1.0013 0.00379823 0)
(1.00144 0.00395192 0)
(1.00158 0.00407953 0)
(1.00173 0.00417861 0)
(1.00188 0.00424824 0)
(1.00203 0.00428969 0)
(1.00218 0.00430632 0)
(1.00234 0.00430303 0)
(1.00249 0.00428534 0)
(1.00265 0.0042586 0)
(1.00281 0.00422748 0)
(1.00297 0.00419569 0)
(1.00314 0.00416596 0)
(1.0033 0.00414013 0)
(1.00346 0.00411924 0)
(1.00363 0.00410371 0)
(1.00379 0.00409341 0)
(1.00396 0.0040878 0)
(1.00413 0.00408611 0)
(1.00429 0.0040874 0)
(1.00446 0.00409068 0)
(1.00463 0.00409499 0)
(1.00479 0.00409939 0)
(1.00496 0.00410307 0)
(1.00513 0.00410527 0)
(1.00529 0.00410538 0)
(1.00546 0.00410295 0)
(1.00562 0.0040977 0)
(1.00578 0.00408963 0)
(1.00595 0.00407889 0)
(1.00611 0.00406592 0)
(1.00627 0.00405121 0)
(1.00643 0.00403551 0)
(1.00659 0.00401941 0)
(1.00674 0.00400365 0)
(1 9.756e-05 0)
(1.00001 0.000307062 0)
(1.00004 0.000531683 0)
(1.00008 0.000771037 0)
(1.00013 0.0010229 0)
(1.0002 0.00128385 0)
(1.00027 0.00155016 0)
(1.00036 0.00181844 0)
(1.00045 0.00208553 0)
(1.00055 0.00234804 0)
(1.00066 0.00260209 0)
(1.00078 0.00284386 0)
(1.0009 0.00307029 0)
(1.00103 0.00327943 0)
(1.00116 0.00346991 0)
(1.00129 0.00364004 0)
(1.00143 0.00378737 0)
(1.00158 0.00390892 0)
(1.00172 0.00400221 0)
(1.00187 0.00406627 0)
(1.00202 0.00410235 0)
(1.00218 0.00411378 0)
(1.00233 0.00410545 0)
(1.00249 0.00408286 0)
(1.00265 0.00405135 0)
(1.00281 0.00401559 0)
(1.00297 0.00397928 0)
(1.00313 0.00394514 0)
(1.00329 0.00391501 0)
(1.00345 0.00388994 0)
(1.00362 0.00387033 0)
(1.00378 0.00385606 0)
(1.00394 0.00384659 0)
(1.00411 0.00384116 0)
(1.00427 0.00383882 0)
(1.00444 0.00383859 0)
(1.0046 0.00383952 0)
(1.00476 0.00384069 0)
(1.00493 0.00384128 0)
(1.00509 0.00384056 0)
(1.00525 0.00383792 0)
(1.00541 0.00383292 0)
(1.00557 0.00382532 0)
(1.00573 0.0038151 0)
(1.00589 0.00380243 0)
(1.00605 0.00378779 0)
(1.0062 0.00377167 0)
(1.00636 0.00375484 0)
(1.00651 0.00373789 0)
(1.00666 0.0037216 0)
(1 9.08073e-05 0)
(1.00001 0.00028688 0)
(1.00004 0.000498308 0)
(1.00008 0.000724779 0)
(1.00013 0.000964134 0)
(1.0002 0.00121301 0)
(1.00027 0.00146772 0)
(1.00035 0.0017249 0)
(1.00045 0.00198143 0)
(1.00055 0.00223391 0)
(1.00066 0.00247848 0)
(1.00077 0.00271129 0)
(1.00089 0.00292927 0)
(1.00102 0.00313045 0)
(1.00115 0.00331342 0)
(1.00129 0.00347648 0)
(1.00143 0.00361713 0)
(1.00157 0.00373237 0)
(1.00172 0.00381967 0)
(1.00187 0.00387805 0)
(1.00202 0.00390868 0)
(1.00217 0.00391491 0)
(1.00233 0.00390158 0)
(1.00249 0.00387417 0)
(1.00265 0.00383803 0)
(1.0028 0.00379778 0)
(1.00296 0.00375713 0)
(1.00312 0.0037188 0)
(1.00329 0.00368461 0)
(1.00345 0.0036556 0)
(1.00361 0.00363217 0)
(1.00377 0.0036142 0)
(1.00393 0.00360116 0)
(1.0041 0.00359228 0)
(1.00426 0.00358662 0)
(1.00442 0.00358321 0)
(1.00458 0.00358109 0)
(1.00474 0.00357938 0)
(1.0049 0.00357724 0)
(1.00506 0.00357396 0)
(1.00522 0.00356894 0)
(1.00537 0.00356176 0)
(1.00553 0.00355217 0)
(1.00568 0.00354018 0)
(1.00584 0.00352598 0)
(1.00599 0.00351003 0)
(1.00614 0.00349285 0)
(1.00629 0.00347523 0)
(1.00644 0.00345775 0)
(1.00658 0.00344123 0)
(1 8.39766e-05 0)
(1.00001 0.00026643 0)
(1.00004 0.000464434 0)
(1.00008 0.000677741 0)
(1.00013 0.000904261 0)
(1.00019 0.00114069 0)
(1.00027 0.00138339 0)
(1.00035 0.00162905 0)
(1.00044 0.00187455 0)
(1.00054 0.00211653 0)
(1.00065 0.00235114 0)
(1.00077 0.00257452 0)
(1.00089 0.00278361 0)
(1.00102 0.00297641 0)
(1.00115 0.00315149 0)
(1.00129 0.00330713 0)
(1.00143 0.00344079 0)
(1.00157 0.00354947 0)
(1.00172 0.0036306 0)
(1.00187 0.00368317 0)
(1.00202 0.00370833 0)
(1.00218 0.00370937 0)
(1.00233 0.00369112 0)
(1.00249 0.00365902 0)
(1.00265 0.0036184 0)
(1.00281 0.00357387 0)
(1.00297 0.0035291 0)
(1.00313 0.00348681 0)
(1.00329 0.0034488 0)
(1.00345 0.00341612 0)
(1.00361 0.00338915 0)
(1.00377 0.00336777 0)
(1.00393 0.00335144 0)
(1.00409 0.00333941 0)
(1.00425 0.00333073 0)
(1.00441 0.00332445 0)
(1.00456 0.00331962 0)
(1.00472 0.00331535 0)
(1.00488 0.00331082 0)
(1.00503 0.00330533 0)
(1.00519 0.00329829 0)
(1.00534 0.00328928 0)
(1.00549 0.00327806 0)
(1.00564 0.00326465 0)
(1.00579 0.00324925 0)
(1.00594 0.00323233 0)
(1.00609 0.00321442 0)
(1.00623 0.00319631 0)
(1.00637 0.00317859 0)
(1.00651 0.00316209 0)
(1 7.70358e-05 0)
(1.00001 0.000245617 0)
(1.00004 0.000429901 0)
(1.00008 0.000629708 0)
(1.00013 0.000843012 0)
(1.00019 0.00106657 0)
(1.00027 0.00129682 0)
(1.00035 0.00153048 0)
(1.00044 0.00176447 0)
(1.00054 0.00199545 0)
(1.00065 0.00221961 0)
(1.00077 0.00243309 0)
(1.00089 0.00263283 0)
(1.00102 0.00281682 0)
(1.00115 0.00298361 0)
(1.00129 0.00313148 0)
(1.00143 0.00325787 0)
(1.00158 0.00335976 0)
(1.00173 0.00343456 0)
(1.00188 0.00348123 0)
(1.00203 0.0035009 0)
(1.00219 0.00349682 0)
(1.00234 0.00347376 0)
(1.0025 0.00343714 0)
(1.00266 0.00339223 0)
(1.00282 0.00334362 0)
(1.00298 0.00329497 0)
(1.00313 0.00324897 0)
(1.00329 0.00320741 0)
(1.00345 0.00317132 0)
(1.00361 0.00314109 0)
(1.00377 0.00311658 0)
(1.00393 0.00309728 0)
(1.00409 0.00308239 0)
(1.00424 0.00307101 0)
(1.0044 0.00306218 0)
(1.00455 0.00305495 0)
(1.00471 0.00304844 0)
(1.00486 0.00304184 0)
(1.00502 0.00303447 0)
(1.00517 0.00302572 0)
(1.00532 0.00301521 0)
(1.00546 0.00300268 0)
(1.00561 0.00298818 0)
(1.00576 0.00297189 0)
(1.0059 0.0029543 0)
(1.00604 0.00293594 0)
(1.00618 0.00291762 0)
(1.00632 0.0028999 0)
(1.00646 0.00288364 0)
(1 6.995e-05 0)
(1.00001 0.000224336 0)
(1.00004 0.000394542 0)
(1.00008 0.000580447 0)
(1.00013 0.000780098 0)
(1.00019 0.000990326 0)
(1.00026 0.00120762 0)
(1.00035 0.00142876 0)
(1.00044 0.00165071 0)
(1.00054 0.00187018 0)
(1.00065 0.00208337 0)
(1.00077 0.00228645 0)
(1.00089 0.00247637 0)
(1.00102 0.00265113 0)
(1.00116 0.00280926 0)
(1.0013 0.00294902 0)
(1.00144 0.00306787 0)
(1.00159 0.00316275 0)
(1.00174 0.00323108 0)
(1.00189 0.00327179 0)
(1.00204 0.00328597 0)
(1.0022 0.00327684 0)
(1.00236 0.00324909 0)
(1.00251 0.00320812 0)
(1.00267 0.00315914 0)
(1.00283 0.00310671 0)
(1.00299 0.00305444 0)
(1.00315 0.00300501 0)
(1.00331 0.00296018 0)
(1.00346 0.00292098 0)
(1.00362 0.00288778 0)
(1.00378 0.00286044 0)
(1.00394 0.00283844 0)
(1.00409 0.00282101 0)
(1.00425 0.00280722 0)
(1.0044 0.00279613 0)
(1.00455 0.00278681 0)
(1.0047 0.00277837 0)
(1.00486 0.00277003 0)
(1.005 0.00276107 0)
(1.00515 0.00275094 0)
(1.0053 0.00273923 0)
(1.00544 0.0027257 0)
(1.00559 0.0027104 0)
(1.00573 0.00269351 0)
(1.00587 0.00267553 0)
(1.00601 0.00265698 0)
(1.00614 0.00263868 0)
(1.00628 0.00262117 0)
(1.00641 0.00260534 0)
(1 6.26818e-05 0)
(1.00001 0.000202475 0)
(1.00004 0.000358169 0)
(1.00008 0.000529702 0)
(1.00013 0.000715196 0)
(1.00019 0.000911559 0)
(1.00027 0.00111536 0)
(1.00035 0.00132342 0)
(1.00044 0.00153278 0)
(1.00055 0.00174017 0)
(1.00066 0.00194185 0)
(1.00077 0.00213402 0)
(1.0009 0.00231365 0)
(1.00103 0.00247873 0)
(1.00117 0.00262781 0)
(1.00131 0.00275914 0)
(1.00145 0.00287016 0)
(1.0016 0.00295783 0)
(1.00175 0.00301956 0)
(1.0019 0.00305426 0)
(1.00206 0.00306299 0)
(1.00222 0.0030489 0)
(1.00237 0.00301665 0)
(1.00253 0.00297154 0)
(1.00269 0.00291874 0)
(1.00285 0.00286275 0)
(1.00301 0.00280716 0)
(1.00317 0.00275458 0)
(1.00332 0.00270679 0)
(1.00348 0.00266478 0)
(1.00364 0.0026289 0)
(1.00379 0.00259903 0)
(1.00395 0.00257463 0)
(1.0041 0.00255494 0)
(1.00426 0.00253905 0)
(1.00441 0.002526 0)
(1.00456 0.00251488 0)
(1.00471 0.00250481 0)
(1.00486 0.002495 0)
(1.005 0.00248477 0)
(1.00515 0.00247354 0)
(1.00529 0.00246092 0)
(1.00543 0.00244668 0)
(1.00557 0.00243085 0)
(1.00571 0.00241362 0)
(1.00585 0.0023955 0)
(1.00598 0.002377 0)
(1.00612 0.00235892 0)
(1.00625 0.00234182 0)
(1.00637 0.00232659 0)
(1 5.51888e-05 0)
(1.00001 0.000179909 0)
(1.00004 0.000320574 0)
(1.00008 0.000477185 0)
(1.00013 0.000647945 0)
(1.00019 0.000829844 0)
(1.00027 0.00101953 0)
(1.00035 0.00121391 0)
(1.00045 0.00141007 0)
(1.00055 0.0016048 0)
(1.00066 0.0017944 0)
(1.00078 0.00197512 0)
(1.00091 0.00214397 0)
(1.00104 0.00229893 0)
(1.00118 0.00243857 0)
(1.00132 0.00256113 0)
(1.00147 0.00266406 0)
(1.00162 0.00274434 0)
(1.00177 0.00279936 0)
(1.00193 0.00282803 0)
(1.00208 0.00283135 0)
(1.00224 0.00281243 0)
(1.0024 0.00277585 0)
(1.00256 0.00272684 0)
(1.00272 0.00267049 0)
(1.00288 0.00261125 0)
(1.00304 0.00255263 0)
(1.00319 0.00249725 0)
(1.00335 0.00244681 0)
(1.00351 0.0024023 0)
(1.00366 0.00236408 0)
(1.00382 0.00233199 0)
(1.00397 0.0023055 0)
(1.00412 0.00228386 0)
(1.00427 0.00226615 0)
(1.00442 0.00225144 0)
(1.00457 0.0022388 0)
(1.00472 0.00222738 0)
(1.00487 0.00221639 0)
(1.00501 0.00220515 0)
(1.00515 0.0021931 0)
(1.00529 0.00217983 0)
(1.00543 0.00216513 0)
(1.00557 0.00214902 0)
(1.00571 0.0021317 0)
(1.00584 0.00211367 0)
(1.00597 0.00209541 0)
(1.0061 0.00207776 0)
(1.00623 0.00206124 0)
(1.00635 0.00204674 0)
(0.0622006 0.00249487 0)
(0.0750864 0.00385107 0)
(0.0862828 0.00366383 0)
(0.0928918 0.00350754 0)
(0.0976865 0.00299875 0)
(0.100544 0.00240297 0)
(0.101877 0.00162745 0)
(0.101865 0.000803531 0)
(0.101099 -1.70705e-05 0)
(0.100168 -0.000762341 0)
(0.0996592 -0.00135244 0)
(0.0999743 -0.00163331 0)
(0.101485 -0.00138469 0)
(0.104517 -0.000343143 0)
(0.109338 0.00172959 0)
(0.116071 0.0050205 0)
(0.124636 0.00961925 0)
(0.13472 0.0155079 0)
(0.145814 0.0225626 0)
(0.157288 0.0305703 0)
(0.168489 0.0392506 0)
(0.178825 0.0482732 0)
(0.187807 0.0572675 0)
(0.195085 0.0658218 0)
(0.200461 0.0734794 0)
(0.203906 0.0797363 0)
(0.205592 0.0840515 0)
(0.20592 0.0858794 0)
(0.205538 0.0847348 0)
(0.205306 0.0802926 0)
(0.206187 0.072504 0)
(0.209091 0.0616989 0)
(0.214673 0.0486092 0)
(0.223222 0.0342897 0)
(0.234676 0.0199717 0)
(0.24876 0.00688218 0)
(0.265168 -0.00394488 0)
(0.28367 -0.0116767 0)
(0.304054 -0.0157547 0)
(0.325998 -0.0158734 0)
(0.349011 -0.0119617 0)
(0.37249 -0.00414192 0)
(0.395846 0.00733225 0)
(0.418604 0.0221752 0)
(0.440491 0.0401218 0)
(0.461703 0.0607518 0)
(0.482522 0.0837709 0)
(0.502221 0.110141 0)
(0.521314 0.140216 0)
(0.544275 0.16911 0)
(0.572477 0.194263 0)
(0.600419 0.230901 0)
(0.629643 0.295551 0)
(0.672797 0.365072 0)
(0.736011 0.388893 0)
(0.802138 0.352155 0)
(0.840263 0.268835 0)
(0.856149 0.121461 0)
(0.88609 -0.106176 0)
(0.923268 -0.351429 0)
(0.936122 -0.523449 0)
(0.917923 -0.592047 0)
(0.881545 -0.584063 0)
(0.841568 -0.538653 0)
(0.804856 -0.482083 0)
(0.774944 -0.425513 0)
(0.75065 -0.373079 0)
(0.730609 -0.324652 0)
(0.716821 -0.278804 0)
(0.70351 -0.237244 0)
(0.692675 -0.197032 0)
(0.689912 -0.155598 0)
(0.683615 -0.119215 0)
(0.673694 -0.0855665 0)
(0.67809 -0.0435045 0)
(0.691604 0.00214824 0)
(0.692779 0.0368604 0)
(0.68041 0.0608739 0)
(0.668592 0.084747 0)
(0.661613 0.111279 0)
(0.655847 0.137627 0)
(0.652278 0.167759 0)
(0.658198 0.208438 0)
(0.674247 0.255358 0)
(0.69742 0.294827 0)
(0.718356 0.316413 0)
(0.737387 0.314616 0)
(0.748045 0.282962 0)
(0.754105 0.220057 0)
(0.743513 0.131045 0)
(0.727272 0.0283189 0)
(0.690583 -0.0746168 0)
(0.658291 -0.162748 0)
(0.59957 -0.22443 0)
(0.571395 -0.258751 0)
(0.484678 -0.243289 0)
(0.5089 -0.218997 0)
(0.355781 -0.102541 0)
(0.478502 -0.0789933 0)
(0.327127 0.282442 0)
(0.113329 0.00052719 0)
(0.120998 0.00214278 0)
(0.129212 0.00242316 0)
(0.134096 0.00265738 0)
(0.137496 0.00245551 0)
(0.139333 0.0021113 0)
(0.139859 0.0015635 0)
(0.139124 0.000911172 0)
(0.137488 0.000186299 0)
(0.135347 -0.00054132 0)
(0.133161 -0.00118814 0)
(0.131297 -0.00159216 0)
(0.130154 -0.00152753 0)
(0.130136 -0.000729809 0)
(0.131643 0.00105993 0)
(0.134977 0.00404824 0)
(0.140256 0.00836209 0)
(0.147351 0.014021 0)
(0.155882 0.0209313 0)
(0.165279 0.0288961 0)
(0.174877 0.037636 0)
(0.184021 0.0468097 0)
(0.192143 0.0560271 0)
(0.198814 0.0648528 0)
(0.203775 0.0728032 0)
(0.20696 0.0793432 0)
(0.208529 0.0838961 0)
(0.208894 0.0858772 0)
(0.208732 0.0847641 0)
(0.208931 0.0802073 0)
(0.210471 0.0721557 0)
(0.214206 0.0609673 0)
(0.220654 0.0474294 0)
(0.229902 0.0326576 0)
(0.241669 0.0179251 0)
(0.255532 0.00448589 0)
(0.271188 -0.00668269 0)
(0.288571 -0.0147164 0)
(0.307743 -0.0190681 0)
(0.328659 -0.0194102 0)
(0.350999 -0.0156417 0)
(0.374195 -0.0078694 0)
(0.397589 0.00364887 0)
(0.420599 0.0185989 0)
(0.442895 0.0366609 0)
(0.464597 0.0573789 0)
(0.485775 0.080531 0)
(0.505751 0.107028 0)
(0.525494 0.136812 0)
(0.549288 0.165011 0)
(0.577653 0.189867 0)
(0.605237 0.226415 0)
(0.63448 0.289641 0)
(0.678694 0.356255 0)
(0.744174 0.378353 0)
(0.811891 0.343695 0)
(0.849742 0.264347 0)
(0.867821 0.117949 0)
(0.902954 -0.111115 0)
(0.943139 -0.355211 0)
(0.955003 -0.523115 0)
(0.933896 -0.58778 0)
(0.894561 -0.577938 0)
(0.852354 -0.53244 0)
(0.814154 -0.476667 0)
(0.783035 -0.421117 0)
(0.758159 -0.369483 0)
(0.737362 -0.321899 0)
(0.722948 -0.276629 0)
(0.70988 -0.235283 0)
(0.698151 -0.19589 0)
(0.69474 -0.154913 0)
(0.689851 -0.117947 0)
(0.679594 -0.0849972 0)
(0.681439 -0.0448662 0)
(0.6953 0.00081335 0)
(0.699912 0.0375323 0)
(0.689835 0.0627243 0)
(0.678028 0.0862543 0)
(0.670925 0.112299 0)
(0.665782 0.138358 0)
(0.662757 0.167546 0)
(0.669009 0.206576 0)
(0.685987 0.25207 0)
(0.710959 0.291088 0)
(0.734391 0.312979 0)
(0.756117 0.311937 0)
(0.769644 0.281453 0)
(0.7779 0.220287 0)
(0.769735 0.13332 0)
(0.754162 0.0325059 0)
(0.718854 -0.0688127 0)
(0.685175 -0.155873 0)
(0.627906 -0.216812 0)
(0.594457 -0.250637 0)
(0.513788 -0.236751 0)
(0.523094 -0.211045 0)
(0.393352 -0.0961114 0)
(0.480357 -0.0796539 0)
(0.40067 0.291396 0)
(0.18216 5.18844e-05 0)
(0.182885 0.00129853 0)
(0.186321 0.00168867 0)
(0.188142 0.00214094 0)
(0.189102 0.00217423 0)
(0.189024 0.00203027 0)
(0.187974 0.0016811 0)
(0.185871 0.00119957 0)
(0.182865 0.000603257 0)
(0.179152 -5.14595e-05 0)
(0.175028 -0.000685031 0)
(0.170774 -0.00113589 0)
(0.166751 -0.00118714 0)
(0.163396 -0.000579687 0)
(0.161203 0.000958007 0)
(0.160634 0.00364063 0)
(0.162012 0.00763373 0)
(0.165422 0.0129994 0)
(0.170669 0.0196845 0)
(0.177299 0.0275211 0)
(0.184684 0.0362418 0)
(0.192141 0.0455009 0)
(0.199032 0.0548911 0)
(0.204849 0.0639516 0)
(0.209263 0.0721673 0)
(0.212163 0.0789671 0)
(0.213693 0.0837333 0)
(0.214279 0.0858374 0)
(0.214625 0.0847171 0)
(0.215646 0.0799993 0)
(0.2183 0.0716391 0)
(0.223346 0.0600387 0)
(0.231097 0.0460558 0)
(0.241356 0.0308762 0)
(0.253556 0.0158115 0)
(0.267071 0.00209815 0)
(0.281573 -0.00931498 0)
(0.29719 -0.0176082 0)
(0.314343 -0.0222459 0)
(0.333405 -0.0228667 0)
(0.354362 -0.019317 0)
(0.376744 -0.0116643 0)
(0.399825 -0.000155716 0)
(0.422887 0.0148666 0)
(0.445486 0.0330245 0)
(0.467593 0.0538371 0)
(0.489071 0.07714 0)
(0.509356 0.103738 0)
(0.529799 0.13318 0)
(0.554364 0.160712 0)
(0.582764 0.185362 0)
(0.609872 0.221823 0)
(0.639068 0.283447 0)
(0.684419 0.346873 0)
(0.752254 0.367163 0)
(0.821152 0.334851 0)
(0.858539 0.259573 0)
(0.879299 0.113658 0)
(0.920176 -0.117008 0)
(0.963425 -0.359345 0)
(0.974029 -0.522445 0)
(0.949788 -0.582873 0)
(0.907469 -0.571182 0)
(0.863067 -0.525728 0)
(0.823469 -0.470867 0)
(0.791185 -0.416442 0)
(0.765726 -0.365672 0)
(0.744282 -0.318947 0)
(0.729137 -0.274355 0)
(0.716329 -0.233219 0)
(0.703922 -0.19458 0)
(0.699581 -0.154255 0)
(0.695991 -0.11675 0)
(0.685934 -0.0841896 0)
(0.685202 -0.0460555 0)
(0.69869 -0.000840181 0)
(0.706541 0.0377416 0)
(0.699225 0.0644116 0)
(0.687782 0.0878072 0)
(0.680529 0.113314 0)
(0.675929 0.13902 0)
(0.673439 0.16726 0)
(0.679941 0.204559 0)
(0.697673 0.248463 0)
(0.724289 0.286882 0)
(0.750144 0.309008 0)
(0.774532 0.308711 0)
(0.790902 0.279474 0)
(0.801391 0.220139 0)
(0.795671 0.135417 0)
(0.780968 0.0366923 0)
(0.747156 -0.0628118 0)
(0.712313 -0.14876 0)
(0.656278 -0.208687 0)
(0.618071 -0.242326 0)
(0.543216 -0.229248 0)
(0.537331 -0.20368 0)
(0.435423 -0.0889489 0)
(0.479405 -0.0790214 0)
(0.448325 0.270885 0)
(0.262635 0.000491419 0)
(0.258438 0.00141777 0)
(0.257088 0.00169458 0)
(0.255271 0.00216758 0)
(0.253147 0.00232782 0)
(0.250497 0.00231162 0)
(0.247241 0.00211163 0)
(0.243201 0.00177964 0)
(0.238352 0.00132248 0)
(0.232712 0.000781524 0)
(0.226394 0.000226355 0)
(0.21955 -0.000194115 0)
(0.212454 -0.000282567 0)
(0.205521 0.000207434 0)
(0.199297 0.00153359 0)
(0.194376 0.00392644 0)
(0.191282 0.00757844 0)
(0.190337 0.0125952 0)
(0.191566 0.018972 0)
(0.194689 0.0265826 0)
(0.199176 0.035185 0)
(0.204362 0.0444393 0)
(0.209569 0.0539263 0)
(0.214219 0.0631597 0)
(0.217915 0.07159 0)
(0.220499 0.078604 0)
(0.222097 0.0835369 0)
(0.223147 0.0857117 0)
(0.224378 0.0845245 0)
(0.226711 0.0795831 0)
(0.23105 0.0708609 0)
(0.237986 0.0588223 0)
(0.247554 0.0444139 0)
(0.259205 0.0289039 0)
(0.272015 0.0136289 0)
(0.285091 -0.000227074 0)
(0.298027 -0.0117335 0)
(0.311127 -0.0202003 0)
(0.325251 -0.0251157 0)
(0.341345 -0.0260806 0)
(0.359891 -0.0228563 0)
(0.380653 -0.0154336 0)
(0.40287 -0.00403195 0)
(0.42565 0.0110064 0)
(0.448356 0.0292275 0)
(0.470735 0.0501348 0)
(0.492447 0.0735945 0)
(0.513073 0.100257 0)
(0.534252 0.129313 0)
(0.559499 0.156224 0)
(0.587778 0.180767 0)
(0.614279 0.217138 0)
(0.643388 0.276965 0)
(0.690015 0.336894 0)
(0.760268 0.355327 0)
(0.829839 0.325683 0)
(0.866576 0.254437 0)
(0.890679 0.108481 0)
(0.938028 -0.123798 0)
(0.984209 -0.363723 0)
(0.993143 -0.521376 0)
(0.965549 -0.577298 0)
(0.920243 -0.563782 0)
(0.873699 -0.518511 0)
(0.832787 -0.464678 0)
(0.799398 -0.411477 0)
(0.773338 -0.361646 0)
(0.751362 -0.315788 0)
(0.735408 -0.271966 0)
(0.722819 -0.231067 0)
(0.709986 -0.193092 0)
(0.704493 -0.153591 0)
(0.701976 -0.115659 0)
(0.692638 -0.0831807 0)
(0.689481 -0.0470021 0)
(0.701869 -0.00274481 0)
(0.712599 0.0374451 0)
(0.708462 0.0658524 0)
(0.697817 0.0893723 0)
(0.690441 0.114329 0)
(0.686294 0.139614 0)
(0.684322 0.166904 0)
(0.69099 0.20241 0)
(0.709279 0.244556 0)
(0.737343 0.282208 0)
(0.765521 0.304484 0)
(0.792514 0.304921 0)
(0.811698 0.277001 0)
(0.824445 0.219591 0)
(0.821178 0.137289 0)
(0.807539 0.0407981 0)
(0.775222 -0.0566989 0)
(0.73953 -0.141424 0)
(0.684489 -0.20008 0)
(0.642332 -0.233772 0)
(0.572191 -0.220848 0)
(0.553452 -0.196865 0)
(0.475132 -0.0813364 0)
(0.488248 -0.0775148 0)
(0.476113 0.240291 0)
(0.348982 0.00134649 0)
(0.3426 0.00219336 0)
(0.338058 0.00238632 0)
(0.333261 0.00279684 0)
(0.328264 0.00300736 0)
(0.322981 0.00305849 0)
(0.31732 0.00295772 0)
(0.311082 0.00274558 0)
(0.304146 0.00242444 0)
(0.296394 0.00202394 0)
(0.287779 0.00160376 0)
(0.278298 0.0012885 0)
(0.268095 0.0012527 0)
(0.257503 0.00170973 0)
(0.247063 0.00289007 0)
(0.237467 0.00503198 0)
(0.229431 0.00834206 0)
(0.223525 0.0129669 0)
(0.22004 0.0189556 0)
(0.218921 0.0262349 0)
(0.219795 0.0346024 0)
(0.222071 0.0437368 0)
(0.225078 0.0532155 0)
(0.228195 0.0625299 0)
(0.23097 0.0710935 0)
(0.233202 0.0782464 0)
(0.235 0.0832699 0)
(0.236808 0.085434 0)
(0.239368 0.0840938 0)
(0.243576 0.0788461 0)
(0.250224 0.0696998 0)
(0.259671 0.0572031 0)
(0.271604 0.0424092 0)
(0.285065 0.0266788 0)
(0.298724 0.0113646 0)
(0.311363 -0.00241587 0)
(0.322409 -0.0138143 0)
(0.332263 -0.0223048 0)
(0.342232 -0.0274477 0)
(0.353982 -0.0288175 0)
(0.368728 -0.0260594 0)
(0.386701 -0.0190305 0)
(0.407213 -0.00787281 0)
(0.429175 0.0070735 0)
(0.451662 0.0252999 0)
(0.47411 0.0462863 0)
(0.495969 0.0698922 0)
(0.516958 0.0965712 0)
(0.538878 0.125206 0)
(0.564684 0.151563 0)
(0.592657 0.176107 0)
(0.618413 0.212376 0)
(0.647435 0.270174 0)
(0.69558 0.326278 0)
(0.768233 0.342876 0)
(0.837873 0.316247 0)
(0.873781 0.248883 0)
(0.902165 0.102276 0)
(0.956642 -0.131633 0)
(1.00546 -0.368357 0)
(1.01225 -0.519829 0)
(0.981078 -0.570983 0)
(0.932805 -0.5557 0)
(0.884203 -0.510773 0)
(0.842072 -0.458094 0)
(0.807661 -0.406214 0)
(0.78098 -0.357402 0)
(0.758585 -0.312417 0)
(0.741785 -0.269448 0)
(0.729318 -0.22884 0)
(0.716326 -0.191422 0)
(0.709548 -0.152879 0)
(0.707767 -0.114701 0)
(0.699608 -0.0820243 0)
(0.69436 -0.0476481 0)
(0.704966 -0.00481342 0)
(0.718039 0.0366165 0)
(0.717409 0.0669545 0)
(0.708072 0.0909019 0)
(0.70067 0.115343 0)
(0.696885 0.140145 0)
(0.695407 0.166483 0)
(0.702159 0.200148 0)
(0.720798 0.240372 0)
(0.750068 0.277074 0)
(0.780441 0.299399 0)
(0.809942 0.300552 0)
(0.831906 0.274012 0)
(0.846911 0.218615 0)
(0.846092 0.138896 0)
(0.833705 0.0448048 0)
(0.802878 -0.0504793 0)
(0.766693 -0.133841 0)
(0.712364 -0.191037 0)
(0.667188 -0.224889 0)
(0.600296 -0.21175 0)
(0.572353 -0.190166 0)
(0.509442 -0.0743454 0)
(0.508777 -0.0736373 0)
(0.492795 0.208837 0)
(0.437557 0.00235293 0)
(0.430521 0.00326724 0)
(0.424458 0.00350434 0)
(0.417974 0.00389116 0)
(0.411059 0.00415173 0)
(0.403775 0.00426084 0)
(0.396102 0.00423924 0)
(0.387895 0.00413022 0)
(0.379018 0.00394207 0)
(0.369297 0.00370138 0)
(0.358569 0.00346034 0)
(0.3467 0.00332329 0)
(0.333673 0.00343299 0)
(0.319679 0.00396162 0)
(0.305172 0.005101 0)
(0.290869 0.00706392 0)
(0.277643 0.0100606 0)
(0.26633 0.0142713 0)
(0.257535 0.0198018 0)
(0.251495 0.0266423 0)
(0.248061 0.0346446 0)
(0.246784 0.0435206 0)
(0.247048 0.0528556 0)
(0.248236 0.0621244 0)
(0.249865 0.070704 0)
(0.251703 0.0778835 0)
(0.253843 0.0828858 0)
(0.256727 0.0849244 0)
(0.26108 0.0833169 0)
(0.267725 0.0776616 0)
(0.277277 0.0680235 0)
(0.289791 0.0550571 0)
(0.304556 0.039943 0)
(0.320194 0.0241238 0)
(0.334967 0.00898372 0)
(0.347309 -0.00443498 0)
(0.356373 -0.0154435 0)
(0.362493 -0.0237185 0)
(0.367291 -0.0289661 0)
(0.3732 -0.0307683 0)
(0.382431 -0.0286369 0)
(0.39602 -0.0222273 0)
(0.413594 -0.0115233 0)
(0.433908 0.00316241 0)
(0.455662 0.0212954 0)
(0.477877 0.0423173 0)
(0.499751 0.0660348 0)
(0.521093 0.0926722 0)
(0.543715 0.120863 0)
(0.569913 0.146753 0)
(0.597358 0.171414 0)
(0.622225 0.207547 0)
(0.651248 0.263031 0)
(0.701248 0.314976 0)
(0.776167 0.32985 0)
(0.84515 0.306604 0)
(0.880186 0.242835 0)
(0.914009 0.0948108 0)
(0.976177 -0.14059 0)
(1.02715 -0.373162 0)
(1.03127 -0.517704 0)
(0.996287 -0.563875 0)
(0.945095 -0.546918 0)
(0.894547 -0.50251 0)
(0.851297 -0.451116 0)
(0.815968 -0.400644 0)
(0.788639 -0.35294 0)
(0.765929 -0.308832 0)
(0.748291 -0.266781 0)
(0.735801 -0.226549 0)
(0.722909 -0.189579 0)
(0.714818 -0.152075 0)
(0.713352 -0.113889 0)
(0.706723 -0.0807885 0)
(0.699892 -0.0479541 0)
(0.708142 -0.00694045 0)
(0.722852 0.0352539 0)
(0.725924 0.0676226 0)
(0.718454 0.0923318 0)
(0.711213 0.116353 0)
(0.707711 0.140618 0)
(0.706692 0.166003 0)
(0.713453 0.197795 0)
(0.732226 0.235942 0)
(0.762416 0.271495 0)
(0.794813 0.293747 0)
(0.826694 0.295586 0)
(0.851382 0.270483 0)
(0.868637 0.217187 0)
(0.87024 0.140205 0)
(0.859283 0.0486923 0)
(0.829942 -0.044188 0)
(0.793611 -0.126012 0)
(0.739758 -0.181609 0)
(0.692467 -0.215586 0)
(0.627404 -0.202182 0)
(0.593885 -0.18309 0)
(0.5385 -0.0687202 0)
(0.536098 -0.067268 0)
(0.507262 0.179845 0)
(0.526072 0.00344994 0)
(0.518887 0.00445702 0)
(0.512231 0.0048205 0)
(0.505081 0.00524545 0)
(0.497289 0.00559319 0)
(0.488938 0.00579416 0)
(0.480049 0.005871 0)
(0.470528 0.00587617 0)
(0.46026 0.00583215 0)
(0.44907 0.00577218 0)
(0.436749 0.00574973 0)
(0.423074 0.00585669 0)
(0.40789 0.00620817 0)
(0.391206 0.00693159 0)
(0.3733 0.00816415 0)
(0.354787 0.0100679 0)
(0.336591 0.0128291 0)
(0.319778 0.0166434 0)
(0.30531 0.0216694 0)
(0.293808 0.0279704 0)
(0.285452 0.0354688 0)
(0.280013 0.0439273 0)
(0.277007 0.052953 0)
(0.275864 0.0620131 0)
(0.276109 0.0704512 0)
(0.277497 0.0775044 0)
(0.280106 0.082334 0)
(0.284352 0.0840976 0)
(0.290905 0.0820825 0)
(0.300443 0.0759054 0)
(0.313328 0.0657093 0)
(0.329248 0.0522759 0)
(0.347081 0.0369237 0)
(0.365068 0.0211789 0)
(0.381149 0.00644724 0)
(0.393455 -0.00629098 0)
(0.400802 -0.0165586 0)
(0.403213 -0.0242776 0)
(0.402305 -0.0293895 0)
(0.401099 -0.0315683 0)
(0.402964 -0.0302061 0)
(0.410173 -0.0246933 0)
(0.423095 -0.0147537 0)
(0.440533 -0.000580949 0)
(0.460767 0.0173051 0)
(0.48229 0.0382726 0)
(0.503968 0.062034 0)
(0.52559 0.0885591 0)
(0.548812 0.116298 0)
(0.575176 0.141832 0)
(0.601833 0.166728 0)
(0.625694 0.202651 0)
(0.654942 0.25547 0)
(0.707189 0.302941 0)
(0.784081 0.316313 0)
(0.851553 0.296827 0)
(0.885912 0.236146 0)
(0.926547 0.0858622 0)
(0.996798 -0.150729 0)
(1.04924 -0.378053 0)
(1.05005 -0.514896 0)
(1.01107 -0.55591 0)
(0.95704 -0.537414 0)
(0.904693 -0.493716 0)
(0.86043 -0.443745 0)
(0.824303 -0.394762 0)
(0.796309 -0.348257 0)
(0.773364 -0.305037 0)
(0.754951 -0.263946 0)
(0.742258 -0.2242 0)
(0.729682 -0.187579 0)
(0.720374 -0.151133 0)
(0.718751 -0.113216 0)
(0.713848 -0.0795511 0)
(0.706087 -0.0479065 0)
(0.711577 -0.00900757 0)
(0.727072 0.0333866 0)
(0.73386 0.0677648 0)
(0.728844 0.0935794 0)
(0.722053 0.117342 0)
(0.718784 0.141039 0)
(0.71818 0.165472 0)
(0.724885 0.195374 0)
(0.743565 0.231304 0)
(0.774354 0.265495 0)
(0.808547 0.287531 0)
(0.842646 0.290009 0)
(0.869972 0.26639 0)
(0.889463 0.215284 0)
(0.893442 0.141184 0)
(0.884076 0.0524333 0)
(0.856234 -0.0378606 0)
(0.820061 -0.117933 0)
(0.766547 -0.171851 0)
(0.717877 -0.205786 0)
(0.653616 -0.192349 0)
(0.617216 -0.175243 0)
(0.563958 -0.0645914 0)
(0.564676 -0.0591064 0)
(0.525711 0.154981 0)
(0.612477 0.004627 0)
(0.605323 0.00570416 0)
(0.598474 0.00622035 0)
(0.591186 0.00671741 0)
(0.583198 0.00717496 0)
(0.574544 0.00750219 0)
(0.565229 0.00771054 0)
(0.555167 0.00785812 0)
(0.544247 0.00798288 0)
(0.532307 0.00812941 0)
(0.519131 0.0083594 0)
(0.504462 0.00876215 0)
(0.488059 0.00943646 0)
(0.469774 0.0104736 0)
(0.449662 0.0119537 0)
(0.428103 0.013968 0)
(0.405882 0.0166421 0)
(0.384137 0.0201493 0)
(0.364135 0.0246791 0)
(0.346955 0.0303688 0)
(0.33324 0.0372292 0)
(0.323128 0.0450967 0)
(0.316364 0.0536203 0)
(0.312504 0.0622726 0)
(0.311117 0.0703709 0)
(0.311965 0.0771025 0)
(0.315106 0.081569 0)
(0.3209 0.0828767 0)
(0.329895 0.0802953 0)
(0.342548 0.0734793 0)
(0.358886 0.0626718 0)
(0.378191 0.0487953 0)
(0.398948 0.0333004 0)
(0.419119 0.0178006 0)
(0.436471 0.0037062 0)
(0.448984 -0.00805044 0)
(0.455195 -0.0172047 0)
(0.454619 -0.0239416 0)
(0.448373 -0.0285241 0)
(0.439546 -0.0308614 0)
(0.432511 -0.0303158 0)
(0.43116 -0.0259843 0)
(0.437237 -0.0172034 0)
(0.450064 -0.00389886 0)
(0.467613 0.0134771 0)
(0.487749 0.0342297 0)
(0.508879 0.0579209 0)
(0.530607 0.084247 0)
(0.554235 0.111541 0)
(0.580467 0.136849 0)
(0.606053 0.16209 0)
(0.628871 0.197667 0)
(0.658731 0.247402 0)
(0.713623 0.290133 0)
(0.791958 0.302368 0)
(0.856969 0.286973 0)
(0.891189 0.228609 0)
(0.940199 0.0751794 0)
(1.01866 -0.16207 0)
(1.07163 -0.382893 0)
(1.06847 -0.511278 0)
(1.02531 -0.547035 0)
(0.968569 -0.527179 0)
(0.914607 -0.484393 0)
(0.869441 -0.435987 0)
(0.83265 -0.388566 0)
(0.803987 -0.343347 0)
(0.780857 -0.301037 0)
(0.761779 -0.260925 0)
(0.748692 -0.22179 0)
(0.736578 -0.185449 0)
(0.726269 -0.150015 0)
(0.724019 -0.112656 0)
(0.720848 -0.0783917 0)
(0.712901 -0.0475229 0)
(0.715463 -0.0108921 0)
(0.730791 0.0310798 0)
(0.741084 0.0673006 0)
(0.739084 0.0945437 0)
(0.733149 0.118277 0)
(0.730113 0.141412 0)
(0.729873 0.164895 0)
(0.73647 0.192912 0)
(0.75483 0.226504 0)
(0.785865 0.259109 0)
(0.821558 0.280762 0)
(0.857675 0.283813 0)
(0.887515 0.261712 0)
(0.909221 0.212887 0)
(0.915511 0.1418 0)
(0.907867 0.0559982 0)
(0.881566 -0.0315333 0)
(0.845784 -0.109616 0)
(0.792619 -0.161806 0)
(0.743057 -0.195449 0)
(0.679142 -0.182368 0)
(0.641292 -0.166514 0)
(0.587815 -0.0614799 0)
(0.590953 -0.050258 0)
(0.550194 0.1348 0)
(0.694617 0.00586311 0)
(0.687652 0.00698101 0)
(0.680855 0.00764903 0)
(0.673705 0.00823255 0)
(0.665894 0.00880121 0)
(0.657405 0.00926814 0)
(0.648216 0.00962916 0)
(0.63823 0.00994256 0)
(0.627325 0.0102592 0)
(0.615339 0.0106352 0)
(0.602064 0.0111422 0)
(0.587241 0.0118731 0)
(0.5706 0.0129215 0)
(0.551905 0.0143583 0)
(0.531028 0.0162212 0)
(0.508072 0.0185308 0)
(0.48351 0.0213264 0)
(0.458285 0.0247094 0)
(0.43374 0.028849 0)
(0.411326 0.0339294 0)
(0.39224 0.0400553 0)
(0.377167 0.0471629 0)
(0.36626 0.0549731 0)
(0.359319 0.062987 0)
(0.35603 0.0705093 0)
(0.356183 0.0766858 0)
(0.359801 0.0805653 0)
(0.367144 0.0812141 0)
(0.378565 0.0779014 0)
(0.394217 0.0703403 0)
(0.413728 0.0588918 0)
(0.435961 0.0446239 0)
(0.459065 0.0291001 0)
(0.480839 0.0139983 0)
(0.499055 0.000734587 0)
(0.511761 -0.00982537 0)
(0.517443 -0.017555 0)
(0.515134 -0.022866 0)
(0.50502 -0.0263905 0)
(0.489416 -0.0284351 0)
(0.472989 -0.0285333 0)
(0.461246 -0.0255683 0)
(0.458013 -0.0183824 0)
(0.463944 -0.00642485 0)
(0.477139 0.0100437 0)
(0.494854 0.0303178 0)
(0.514864 0.0537592 0)
(0.536367 0.079776 0)
(0.560086 0.106641 0)
(0.585817 0.131869 0)
(0.610068 0.157535 0)
(0.631947 0.192544 0)
(0.662968 0.238715 0)
(0.720804 0.276542 0)
(0.799727 0.288167 0)
(0.861317 0.277074 0)
(0.896394 0.219951 0)
(0.955467 0.0624902 0)
(1.0419 -0.174584 0)
(1.0942 -0.387507 0)
(1.08633 -0.506717 0)
(1.03889 -0.537196 0)
(0.979611 -0.516208 0)
(0.924251 -0.474548 0)
(0.878304 -0.427849 0)
(0.840986 -0.382057 0)
(0.811674 -0.338205 0)
(0.788373 -0.29684 0)
(0.768782 -0.257704 0)
(0.755126 -0.219311 0)
(0.743523 -0.183218 0)
(0.732532 -0.148692 0)
(0.729247 -0.112161 0)
(0.727603 -0.0773828 0)
(0.720229 -0.0468558 0)
(0.719981 -0.0124788 0)
(0.734161 0.0284373 0)
(0.747491 0.0661722 0)
(0.748992 0.095108 0)
(0.744426 0.119107 0)
(0.741699 0.141734 0)
(0.741777 0.164279 0)
(0.748223 0.190434 0)
(0.766047 0.221596 0)
(0.796951 0.252388 0)
(0.833775 0.273465 0)
(0.871664 0.277003 0)
(0.903851 0.256435 0)
(0.927727 0.209976 0)
(0.936257 0.142025 0)
(0.930423 0.0593555 0)
(0.905743 -0.025241 0)
(0.870507 -0.101077 0)
(0.817846 -0.151508 0)
(0.767636 -0.184586 0)
(0.704185 -0.172273 0)
(0.665169 -0.157 0)
(0.611664 -0.0587578 0)
(0.613892 -0.0415654 0)
(0.578923 0.118666 0)
(0.770328 0.00712286 0)
(0.763727 0.00825621 0)
(0.757208 0.00906285 0)
(0.750411 0.00974018 0)
(0.743025 0.010413 0)
(0.734996 0.0110173 0)
(0.726288 0.0115366 0)
(0.716796 0.0120254 0)
(0.706389 0.0125449 0)
(0.694906 0.0131615 0)
(0.682148 0.0139559 0)
(0.667877 0.0150263 0)
(0.651829 0.0164669 0)
(0.633747 0.0183414 0)
(0.613416 0.0206655 0)
(0.590733 0.0234111 0)
(0.565839 0.0265359 0)
(0.539286 0.0300392 0)
(0.512154 0.0340072 0)
(0.485954 0.0386049 0)
(0.462302 0.0439965 0)
(0.442511 0.0502265 0)
(0.427348 0.0571219 0)
(0.417059 0.0642499 0)
(0.411578 0.0709311 0)
(0.410781 0.0762888 0)
(0.414652 0.0793347 0)
(0.423301 0.0791124 0)
(0.436818 0.0749117 0)
(0.454977 0.0665243 0)
(0.476977 0.054438 0)
(0.501279 0.0398597 0)
(0.525781 0.0244406 0)
(0.548236 0.00987926 0)
(0.566548 -0.0024079 0)
(0.579012 -0.0116642 0)
(0.584357 -0.0178142 0)
(0.5815 -0.0213833 0)
(0.569695 -0.0233045 0)
(0.5497 -0.0243856 0)
(0.525189 -0.0246232 0)
(0.502468 -0.0229365 0)
(0.487755 -0.0177041 0)
(0.484115 -0.00767344 0)
(0.490699 0.00735279 0)
(0.504477 0.0267459 0)
(0.522475 0.0496649 0)
(0.543204 0.0752233 0)
(0.566552 0.101676 0)
(0.591362 0.12696 0)
(0.614098 0.153073 0)
(0.635335 0.187189 0)
(0.668171 0.22929 0)
(0.728989 0.262221 0)
(0.807246 0.273907 0)
(0.864599 0.267108 0)
(0.902108 0.209816 0)
(0.972924 0.0475588 0)
(1.06658 -0.188158 0)
(1.11676 -0.391673 0)
(1.10346 -0.501066 0)
(1.05168 -0.52635 0)
(0.990095 -0.504511 0)
(0.933591 -0.464195 0)
(0.886994 -0.419344 0)
(0.849284 -0.375237 0)
(0.819373 -0.332825 0)
(0.795882 -0.292454 0)
(0.775951 -0.254274 0)
(0.761597 -0.216741 0)
(0.750448 -0.180921 0)
(0.739158 -0.147152 0)
(0.734551 -0.111668 0)
(0.734026 -0.076579 0)
(0.727911 -0.0459916 0)
(0.725271 -0.0136761 0)
(0.737397 0.0255994 0)
(0.753025 0.0643565 0)
(0.758359 0.0951463 0)
(0.755767 0.119755 0)
(0.75353 0.141994 0)
(0.753901 0.163631 0)
(0.760161 0.187966 0)
(0.777256 0.216637 0)
(0.807636 0.2454 0)
(0.845154 0.265686 0)
(0.884503 0.269593 0)
(0.918819 0.250548 0)
(0.944793 0.206537 0)
(0.955488 0.141832 0)
(0.951503 0.0624718 0)
(0.928552 -0.0190162 0)
(0.89395 -0.0923473 0)
(0.842061 -0.140985 0)
(0.791288 -0.173244 0)
(0.72881 -0.162049 0)
(0.688252 -0.146869 0)
(0.636187 -0.0559296 0)
(0.634279 -0.0333396 0)
(0.608421 0.105265 0)
(0.837634 0.00836246 0)
(0.831572 0.00949191 0)
(0.825542 0.010417 0)
(0.8193 0.0111911 0)
(0.812551 0.0119604 0)
(0.805212 0.0126931 0)
(0.797239 0.0133666 0)
(0.788533 0.0140298 0)
(0.778961 0.0147512 0)
(0.76837 0.0156064 0)
(0.75658 0.0166838 0)
(0.74338 0.018086 0)
(0.72854 0.0199097 0)
(0.711822 0.0222178 0)
(0.693 0.0250183 0)
(0.671889 0.0282598 0)
(0.648412 0.0318476 0)
(0.622749 0.0356893 0)
(0.595523 0.0397556 0)
(0.567922 0.044119 0)
(0.541586 0.0489239 0)
(0.518256 0.0542809 0)
(0.499357 0.0601316 0)
(0.48578 0.0661508 0)
(0.477911 0.0717216 0)
(0.475843 0.0759834 0)
(0.479567 0.0779407 0)
(0.489022 0.0766399 0)
(0.503986 0.0714155 0)
(0.523817 0.0621539 0)
(0.547282 0.0494706 0)
(0.572498 0.0346884 0)
(0.597206 0.0195216 0)
(0.619226 0.00563048 0)
(0.636678 -0.00556684 0)
(0.648162 -0.01348 0)
(0.652794 -0.018061 0)
(0.649824 -0.0198284 0)
(0.638199 -0.0198059 0)
(0.617061 -0.0192132 0)
(0.58779 -0.0187478 0)
(0.555711 -0.0178102 0)
(0.528674 -0.0145615 0)
(0.512946 -0.00699298 0)
(0.51015 0.00590645 0)
(0.517873 0.0238373 0)
(0.532517 0.0458296 0)
(0.55163 0.0707149 0)
(0.573987 0.0967476 0)
(0.597442 0.12219 0)
(0.618619 0.148684 0)
(0.639706 0.181476 0)
(0.674976 0.219032 0)
(0.738341 0.247308 0)
(0.814304 0.259821 0)
(0.866986 0.256966 0)
(0.909175 0.19776 0)
(0.993179 0.0301952 0)
(1.0927 -0.202589 0)
(1.13905 -0.395119 0)
(1.1196 -0.494179 0)
(1.06357 -0.514471 0)
(0.999958 -0.492107 0)
(0.942591 -0.453355 0)
(0.895492 -0.410484 0)
(0.857513 -0.368116 0)
(0.827087 -0.3272 0)
(0.803359 -0.287887 0)
(0.783261 -0.250634 0)
(0.768151 -0.214057 0)
(0.757295 -0.178586 0)
(0.7461 -0.145405 0)
(0.740064 -0.111101 0)
(0.740086 -0.0760061 0)
(0.735738 -0.0450443 0)
(0.731414 -0.0144296 0)
(0.740767 0.0227363 0)
(0.757702 0.061878 0)
(0.766971 0.0945341 0)
(0.767007 0.120117 0)
(0.765568 0.142164 0)
(0.766247 0.162952 0)
(0.772301 0.185534 0)
(0.788509 0.21169 0)
(0.817974 0.238226 0)
(0.855681 0.257485 0)
(0.896106 0.261616 0)
(0.932273 0.244053 0)
(0.960221 0.202557 0)
(0.973004 0.141201 0)
(0.970861 0.0653119 0)
(0.949764 -0.0128936 0)
(0.91585 -0.083466 0)
(0.865043 -0.130258 0)
(0.813781 -0.161505 0)
(0.752871 -0.151651 0)
(0.710375 -0.136308 0)
(0.66112 -0.0527458 0)
(0.65368 -0.0255369 0)
(0.635935 0.0934828 0)
(0.894986 0.00953537 0)
(0.889616 0.0106482 0)
(0.884255 0.0116675 0)
(0.878739 0.0125365 0)
(0.8728 0.0133949 0)
(0.866336 0.0142442 0)
(0.8593 0.0150628 0)
(0.851597 0.0158929 0)
(0.843104 0.0168076 0)
(0.833681 0.0178898 0)
(0.823175 0.019234 0)
(0.811409 0.0209459 0)
(0.798197 0.0231243 0)
(0.783345 0.0258331 0)
(0.766658 0.0290793 0)
(0.747948 0.032804 0)
(0.727066 0.0368887 0)
(0.703972 0.0411843 0)
(0.678897 0.045562 0)
(0.652538 0.0499702 0)
(0.626169 0.0544546 0)
(0.601511 0.0591048 0)
(0.580378 0.0639286 0)
(0.564282 0.0687162 0)
(0.554217 0.0729602 0)
(0.550677 0.0758727 0)
(0.55378 0.0765015 0)
(0.563349 0.0739357 0)
(0.578858 0.0675821 0)
(0.599261 0.0574338 0)
(0.622932 0.0442263 0)
(0.647728 0.0293699 0)
(0.671331 0.0145938 0)
(0.691734 0.00152664 0)
(0.70734 -0.00853479 0)
(0.717079 -0.0151052 0)
(0.720391 -0.0182037 0)
(0.716959 -0.0183278 0)
(0.706165 -0.0163844 0)
(0.686523 -0.013693 0)
(0.656883 -0.0115916 0)
(0.619597 -0.0103775 0)
(0.581921 -0.00859344 0)
(0.552841 -0.00372262 0)
(0.537847 0.00636831 0)
(0.536784 0.0220692 0)
(0.546148 0.0425522 0)
(0.562421 0.0664406 0)
(0.582984 0.0919832 0)
(0.604656 0.11761 0)
(0.624376 0.144305 0)
(0.645905 0.175264 0)
(0.683957 0.207922 0)
(0.748817 0.232056 0)
(0.820676 0.246143 0)
(0.86897 0.246395 0)
(0.918744 0.183268 0)
(1.01682 0.010308 0)
(1.12011 -0.217555 0)
(1.16075 -0.397529 0)
(1.13453 -0.485925 0)
(1.07443 -0.501547 0)
(1.00914 -0.479032 0)
(0.951219 -0.442058 0)
(0.903779 -0.401285 0)
(0.865642 -0.360706 0)
(0.834814 -0.321324 0)
(0.810791 -0.283144 0)
(0.79067 -0.24679 0)
(0.774839 -0.211228 0)
(0.764033 -0.176233 0)
(0.753274 -0.14348 0)
(0.74591 -0.110386 0)
(0.745817 -0.0756534 0)
(0.743481 -0.0441432 0)
(0.738395 -0.0147365 0)
(0.744569 0.0200328 0)
(0.761629 0.0588195 0)
(0.774625 0.0931635 0)
(0.777927 0.120063 0)
(0.777743 0.142193 0)
(0.778813 0.162237 0)
(0.784658 0.183158 0)
(0.799865 0.206817 0)
(0.828046 0.23096 0)
(0.865388 0.248949 0)
(0.906419 0.253124 0)
(0.944084 0.236966 0)
(0.973824 0.198033 0)
(0.988604 0.140113 0)
(0.988257 0.0678496 0)
(0.969125 -0.00689986 0)
(0.935968 -0.0744764 0)
(0.88652 -0.119357 0)
(0.834972 -0.149454 0)
(0.776046 -0.141051 0)
(0.731671 -0.125455 0)
(0.685649 -0.0491522 0)
(0.673351 -0.0180304 0)
(0.660645 0.0829431 0)
(0.941508 0.0105991 0)
(0.936933 0.0116887 0)
(0.932361 0.012777 0)
(0.927687 0.0137337 0)
(0.922675 0.0146734 0)
(0.917212 0.0156259 0)
(0.911244 0.0165767 0)
(0.90469 0.0175618 0)
(0.897439 0.0186557 0)
(0.889368 0.0199466 0)
(0.880353 0.0215331 0)
(0.870256 0.0235224 0)
(0.858939 0.026014 0)
(0.846258 0.029073 0)
(0.832069 0.0327078 0)
(0.816223 0.0368585 0)
(0.798575 0.0413991 0)
(0.779018 0.0461543 0)
(0.757571 0.0509338 0)
(0.734537 0.055581 0)
(0.710698 0.0600152 0)
(0.687389 0.0642277 0)
(0.666357 0.0682067 0)
(0.649415 0.071808 0)
(0.638067 0.0746415 0)
(0.63329 0.0760418 0)
(0.635479 0.0751632 0)
(0.644466 0.071193 0)
(0.659513 0.0636466 0)
(0.679251 0.052635 0)
(0.701761 0.0390003 0)
(0.724748 0.0242037 0)
(0.745956 0.00995047 0)
(0.763603 -0.00218258 0)
(0.776433 -0.0111089 0)
(0.783761 -0.0163759 0)
(0.785298 -0.0180955 0)
(0.780933 -0.0167915 0)
(0.770576 -0.0132265 0)
(0.753293 -0.00850324 0)
(0.726804 -0.00415841 0)
(0.689871 -0.00140232 0)
(0.646305 8.7508e-05 0)
(0.605327 0.00269315 0)
(0.576365 0.00948665 0)
(0.563504 0.0220957 0)
(0.564998 0.0402776 0)
(0.576695 0.0626766 0)
(0.594417 0.0875407 0)
(0.613859 0.113261 0)
(0.632296 0.139855 0)
(0.654772 0.168449 0)
(0.695452 0.196064 0)
(0.760185 0.216817 0)
(0.826331 0.23303 0)
(0.871561 0.234953 0)
(0.932244 0.165796 0)
(1.04429 -0.0120298 0)
(1.1485 -0.2326 0)
(1.18143 -0.398551 0)
(1.14798 -0.476184 0)
(1.08414 -0.487595 0)
(1.0176 -0.465333 0)
(0.959442 -0.430339 0)
(0.911843 -0.391764 0)
(0.873637 -0.35302 0)
(0.842544 -0.315194 0)
(0.818177 -0.278225 0)
(0.798125 -0.242757 0)
(0.781699 -0.208226 0)
(0.770665 -0.173863 0)
(0.760563 -0.141425 0)
(0.752179 -0.109462 0)
(0.751328 -0.0754692 0)
(0.750916 -0.0434141 0)
(0.74609 -0.0146566 0)
(0.749092 0.0176665 0)
(0.765023 0.0553282 0)
(0.781167 0.0909634 0)
(0.788259 0.119439 0)
(0.789928 0.141999 0)
(0.791579 0.16147 0)
(0.797245 0.180851 0)
(0.811384 0.202078 0)
(0.83796 0.223709 0)
(0.87436 0.240185 0)
(0.91544 0.244194 0)
(0.954161 0.229322 0)
(0.985435 0.192973 0)
(1.00209 0.138553 0)
(1.00347 0.0700566 0)
(0.986377 -0.00106652 0)
(0.954087 -0.065424 0)
(0.906201 -0.108328 0)
(0.854767 -0.137173 0)
(0.797958 -0.130269 0)
(0.752316 -0.114384 0)
(0.709012 -0.0452076 0)
(0.693599 -0.0108061 0)
(0.683339 0.0739175 0)
(0.977149 0.0115224 0)
(0.973404 0.0125867 0)
(0.969667 0.01372 0)
(0.965877 0.0147526 0)
(0.961832 0.0157649 0)
(0.957412 0.0168061 0)
(0.952564 0.0178732 0)
(0.947217 0.0189975 0)
(0.941276 0.0202521 0)
(0.93464 0.0217281 0)
(0.92721 0.0235264 0)
(0.918892 0.0257538 0)
(0.909593 0.028509 0)
(0.899222 0.0318575 0)
(0.887692 0.0358093 0)
(0.874903 0.0403068 0)
(0.860749 0.0452228 0)
(0.845131 0.0503721 0)
(0.827997 0.0555336 0)
(0.809447 0.0604839 0)
(0.789882 0.0650356 0)
(0.770164 0.069059 0)
(0.751656 0.0724548 0)
(0.736046 0.0750686 0)
(0.725011 0.0765844 0)
(0.719862 0.0764683 0)
(0.721294 0.074028 0)
(0.729267 0.0686058 0)
(0.742977 0.0598682 0)
(0.760891 0.0480595 0)
(0.780947 0.0341152 0)
(0.800851 0.0195072 0)
(0.818528 0.00587221 0)
(0.832484 -0.00529212 0)
(0.841818 -0.0130943 0)
(0.846211 -0.0171568 0)
(0.845687 -0.0176385 0)
(0.840244 -0.015095 0)
(0.829897 -0.0102495 0)
(0.814452 -0.00392409 0)
(0.792274 0.00263885 0)
(0.760207 0.00778415 0)
(0.717392 0.0105303 0)
(0.669572 0.0121495 0)
(0.62762 0.0158605 0)
(0.600711 0.024702 0)
(0.59127 0.0396318 0)
(0.596015 0.0598219 0)
(0.609468 0.0836311 0)
(0.626101 0.109194 0)
(0.643363 0.135267 0)
(0.667021 0.161008 0)
(0.709631 0.183693 0)
(0.772349 0.201975 0)
(0.831822 0.220469 0)
(0.876472 0.221998 0)
(0.951253 0.144874 0)
(1.07578 -0.0365116 0)
(1.17735 -0.247137 0)
(1.20061 -0.397816 0)
(1.15969 -0.464867 0)
(1.09262 -0.472661 0)
(1.02531 -0.451075 0)
(0.967235 -0.418244 0)
(0.919671 -0.381943 0)
(0.881473 -0.345075 0)
(0.850258 -0.308812 0)
(0.825526 -0.273125 0)
(0.805571 -0.238555 0)
(0.788751 -0.205031 0)
(0.777233 -0.171464 0)
(0.76784 -0.139298 0)
(0.758908 -0.108294 0)
(0.756792 -0.0753639 0)
(0.757874 -0.0429574 0)
(0.754263 -0.0143127 0)
(0.754572 0.0157783 0)
(0.768214 0.0516123 0)
(0.786527 0.0879224 0)
(0.7977 0.118087 0)
(0.801928 0.141463 0)
(0.804494 0.160613 0)
(0.810067 0.178619 0)
(0.823126 0.197523 0)
(0.847844 0.216581 0)
(0.882737 0.231324 0)
(0.923236 0.234932 0)
(0.962472 0.221185 0)
(0.994933 0.187396 0)
(1.01329 0.136526 0)
(1.01631 0.0718972 0)
(1.00128 0.0045562 0)
(0.970013 -0.0563617 0)
(0.923818 -0.0972338 0)
(0.873074 -0.12474 0)
(0.818316 -0.119351 0)
(0.772305 -0.103154 0)
(0.730917 -0.0409302 0)
(0.713892 -0.00398522 0)
(0.705125 0.0667185 0)
(1.00269 0.0122904 0)
(0.99974 0.01333 0)
(0.996806 0.0144872 0)
(0.993862 0.015581 0)
(0.99074 0.0166558 0)
(0.987322 0.0177709 0)
(0.983553 0.0189362 0)
(0.979375 0.0201807 0)
(0.974711 0.0215741 0)
(0.969481 0.023208 0)
(0.963615 0.0251833 0)
(0.957055 0.0276052 0)
(0.949753 0.0305696 0)
(0.941671 0.0341412 0)
(0.932772 0.0383316 0)
(0.923014 0.0430861 0)
(0.912338 0.0482798 0)
(0.900678 0.0537249 0)
(0.887981 0.059186 0)
(0.874268 0.0644022 0)
(0.85973 0.0691153 0)
(0.844869 0.0730934 0)
(0.830597 0.0761322 0)
(0.818221 0.0780143 0)
(0.809233 0.0784385 0)
(0.80497 0.0769699 0)
(0.806272 0.0730767 0)
(0.81323 0.0662901 0)
(0.825098 0.0564614 0)
(0.840353 0.0439831 0)
(0.856983 0.0298671 0)
(0.872861 0.0155689 0)
(0.886214 0.00260973 0)
(0.895893 -0.00757918 0)
(0.90135 -0.0143251 0)
(0.902567 -0.0173359 0)
(0.899832 -0.0167801 0)
(0.893345 -0.013203 0)
(0.883055 -0.0073235 0)
(0.868899 0.000135339 0)
(0.850326 0.00835017 0)
(0.824737 0.0159072 0)
(0.788346 0.0211042 0)
(0.74128 0.0235736 0)
(0.691384 0.025518 0)
(0.650756 0.0305993 0)
(0.627693 0.0414113 0)
(0.62249 0.0584455 0)
(0.629683 0.08056 0)
(0.642623 0.105501 0)
(0.658588 0.130527 0)
(0.683327 0.153017 0)
(0.726829 0.171127 0)
(0.785827 0.187842 0)
(0.838619 0.208207 0)
(0.88606 0.206759 0)
(0.977199 0.120237 0)
(1.11107 -0.0625433 0)
(1.20591 -0.260455 0)
(1.21773 -0.394967 0)
(1.16943 -0.451937 0)
(1.09979 -0.456826 0)
(1.03225 -0.436338 0)
(0.974575 -0.405823 0)
(0.927249 -0.371843 0)
(0.889128 -0.336888 0)
(0.857927 -0.302187 0)
(0.832857 -0.267838 0)
(0.812958 -0.234203 0)
(0.795982 -0.201634 0)
(0.78381 -0.169002 0)
(0.774992 -0.137154 0)
(0.766052 -0.106882 0)
(0.762422 -0.0752237 0)
(0.76428 -0.0428239 0)
(0.762588 -0.0138779 0)
(0.761121 0.0144414 0)
(0.771619 0.0479254 0)
(0.790772 0.084112 0)
(0.805947 0.115857 0)
(0.813466 0.140429 0)
(0.817454 0.159598 0)
(0.823114 0.176452 0)
(0.835138 0.19319 0)
(0.857836 0.209682 0)
(0.890716 0.22251 0)
(0.929961 0.225476 0)
(0.969074 0.212649 0)
(1.00225 0.181333 0)
(1.02205 0.134041 0)
(1.02666 0.0733668 0)
(1.01363 0.00992525 0)
(0.983563 -0.0473369 0)
(0.939182 -0.0861509 0)
(0.889768 -0.112246 0)
(0.837002 -0.108352 0)
(0.79141 -0.0918568 0)
(0.751504 -0.036272 0)
(0.733543 0.00225399 0)
(0.72638 0.0612956 0)
(1.01958 0.0129055 0)
(1.01733 0.0139224 0)
(1.0151 0.0150867 0)
(1.0129 0.0162255 0)
(1.01059 0.0173518 0)
(1.00805 0.0185261 0)
(1.00524 0.0197709 0)
(1.00211 0.0211149 0)
(0.998598 0.0226232 0)
(0.994647 0.0243856 0)
(0.990212 0.0265013 0)
(0.985269 0.029072 0)
(0.979809 0.0321897 0)
(0.973841 0.0359167 0)
(0.967379 0.0402652 0)
(0.960431 0.0451839 0)
(0.952991 0.0505519 0)
(0.945031 0.0561829 0)
(0.936522 0.0618356 0)
(0.927463 0.0672292 0)
(0.917946 0.0720626 0)
(0.908246 0.0760338 0)
(0.89892 0.0788503 0)
(0.890848 0.0802197 0)
(0.885137 0.0798178 0)
(0.882883 0.0772667 0)
(0.884842 0.0721707 0)
(0.891131 0.0642479 0)
(0.90109 0.0535416 0)
(0.913339 0.0405909 0)
(0.926083 0.0264703 0)
(0.93751 0.0125916 0)
(0.94625 0.000393592 0)
(0.951519 -0.00891062 0)
(0.95311 -0.0147288 0)
(0.951262 -0.0168501 0)
(0.946408 -0.0154884 0)
(0.938943 -0.0111366 0)
(0.928916 -0.00444513 0)
(0.916076 0.00382112 0)
(0.900227 0.0130833 0)
(0.880253 0.0224501 0)
(0.852543 0.0303416 0)
(0.813117 0.0352358 0)
(0.763623 0.0374856 0)
(0.714055 0.0399708 0)
(0.676995 0.0464205 0)
(0.65884 0.0593129 0)
(0.657056 0.0787851 0)
(0.664912 0.102365 0)
(0.679158 0.125686 0)
(0.70464 0.144609 0)
(0.747976 0.158673 0)
(0.802018 0.174575 0)
(0.849026 0.195768 0)
(0.902908 0.188488 0)
(1.011 0.0919778 0)
(1.14943 -0.0892208 0)
(1.23318 -0.27176 0)
(1.2322 -0.389678 0)
(1.177 -0.437423 0)
(1.10563 -0.44021 0)
(1.03841 -0.421212 0)
(0.981447 -0.393132 0)
(0.934562 -0.361489 0)
(0.896588 -0.328474 0)
(0.865514 -0.295331 0)
(0.840185 -0.262353 0)
(0.820254 -0.229717 0)
(0.803343 -0.198041 0)
(0.790485 -0.166435 0)
(0.781948 -0.135035 0)
(0.77349 -0.105268 0)
(0.768427 -0.0749324 0)
(0.770184 -0.0429959 0)
(0.770699 -0.0135475 0)
(0.768684 0.0136347 0)
(0.775693 0.0445332 0)
(0.794142 0.0797028 0)
(0.812752 0.112646 0)
(0.824181 0.138707 0)
(0.830278 0.158314 0)
(0.836345 0.174318 0)
(0.847454 0.189103 0)
(0.868065 0.203103 0)
(0.89853 0.213896 0)
(0.935856 0.215987 0)
(0.974166 0.203848 0)
(1.00741 0.174864 0)
(1.02831 0.131101 0)
(1.03446 0.0744546 0)
(1.02325 0.0150624 0)
(0.994569 -0.0384074 0)
(0.952211 -0.0751716 0)
(0.904723 -0.0998017 0)
(0.854035 -0.0973129 0)
(0.809328 -0.0806131 0)
(0.770994 -0.0311847 0)
(0.752305 0.00780489 0)
(0.746815 0.0573034 0)
(1.02964 0.0133851 0)
(1.02795 0.0143816 0)
(1.02629 0.0155405 0)
(1.02469 0.0167087 0)
(1.02303 0.0178751 0)
(1.02122 0.0190951 0)
(1.01919 0.0204012 0)
(1.01693 0.0218238 0)
(1.01438 0.023423 0)
(1.01151 0.0252845 0)
(1.00829 0.0275044 0)
(1.00473 0.0301795 0)
(1.00085 0.0333963 0)
(0.99671 0.0372134 0)
(0.992354 0.0416428 0)
(0.987842 0.0466358 0)
(0.983215 0.0520766 0)
(0.978488 0.0577831 0)
(0.973661 0.0635139 0)
(0.968736 0.0689787 0)
(0.963755 0.0738525 0)
(0.958858 0.0777898 0)
(0.954354 0.080438 0)
(0.950762 0.0814438 0)
(0.948779 0.0804524 0)
(0.949132 0.0771157 0)
(0.952324 0.0711409 0)
(0.958374 0.0624048 0)
(0.966673 0.0511197 0)
(0.976033 0.0379506 0)
(0.984976 0.0240117 0)
(0.992102 0.0106594 0)
(0.996461 -0.00075798 0)
(0.997647 -0.00927225 0)
(0.995765 -0.0143031 0)
(0.991251 -0.0157279 0)
(0.984623 -0.0137887 0)
(0.976359 -0.00892682 0)
(0.966683 -0.00171566 0)
(0.955365 0.00714233 0)
(0.942019 0.0170874 0)
(0.926272 0.0275323 0)
(0.906273 0.0374849 0)
(0.877536 0.045309 0)
(0.836517 0.0498044 0)
(0.78691 0.0519076 0)
(0.740249 0.0550016 0)
(0.70815 0.0632852 0)
(0.694281 0.0789856 0)
(0.694789 0.100101 0)
(0.706441 0.120858 0)
(0.732231 0.135934 0)
(0.774473 0.14657 0)
(0.822732 0.162171 0)
(0.865472 0.182558 0)
(0.929174 0.166632 0)
(1.05278 0.0606314 0)
(1.18955 -0.115353 0)
(1.25795 -0.280227 0)
(1.24342 -0.381738 0)
(1.1823 -0.421436 0)
(1.11014 -0.422969 0)
(1.04383 -0.405799 0)
(0.987844 -0.380225 0)
(0.941591 -0.35091 0)
(0.903848 -0.319849 0)
(0.872977 -0.288261 0)
(0.847519 -0.256664 0)
(0.827456 -0.225105 0)
(0.81076 -0.194275 0)
(0.797337 -0.163717 0)
(0.788705 -0.132953 0)
(0.781037 -0.103529 0)
(0.774952 -0.0743978 0)
(0.775778 -0.0433834 0)
(0.778265 -0.0135014 0)
(0.777001 0.0132287 0)
(0.780835 0.0416648 0)
(0.797068 0.0749667 0)
(0.817991 0.108434 0)
(0.833655 0.136094 0)
(0.842678 0.156597 0)
(0.849667 0.17215 0)
(0.860079 0.185262 0)
(0.878647 0.196916 0)
(0.906411 0.205627 0)
(0.941245 0.206642 0)
(0.978081 0.194952 0)
(1.01062 0.168125 0)
(1.03211 0.127741 0)
(1.03962 0.0751481 0)
(1.02995 0.0199755 0)
(1.00294 -0.0296578 0)
(0.962987 -0.0644056 0)
(0.91788 -0.0875353 0)
(0.869483 -0.0862647 0)
(0.825872 -0.0695457 0)
(0.789433 -0.0256944 0)
(0.770378 0.0126794 0)
(0.766227 0.0543687 0)
(1.03475 0.0137552 0)
(1.03348 0.014734 0)
(1.03225 0.0158791 0)
(1.03109 0.0170629 0)
(1.02992 0.0182586 0)
(1.02864 0.0195125 0)
(1.02721 0.0208638 0)
(1.02561 0.0223453 0)
(1.02381 0.0240128 0)
(1.02178 0.0259462 0)
(1.01952 0.0282369 0)
(1.01707 0.0309757 0)
(1.01447 0.0342426 0)
(1.01179 0.0380913 0)
(1.00913 0.042532 0)
(1.00659 0.0475181 0)
(1.00424 0.0529389 0)
(1.00215 0.0586183 0)
(1.00033 0.0643188 0)
(0.998818 0.069749 0)
(0.997614 0.0745729 0)
(0.996781 0.0784218 0)
(0.996454 0.0809085 0)
(0.99688 0.0816419 0)
(0.998404 0.080247 0)
(1.00138 0.0763964 0)
(1.006 0.0698726 0)
(1.01212 0.060673 0)
(1.01912 0.0491385 0)
(1.02602 0.0360251 0)
(1.03166 0.0224549 0)
(1.03507 0.00971973 0)
(1.03571 -0.000962694 0)
(1.03352 -0.00874386 0)
(1.02882 -0.0131295 0)
(1.02222 -0.0140511 0)
(1.01431 -0.0117397 0)
(1.00556 -0.00660177 0)
(0.996292 0.000838381 0)
(0.986484 0.0100458 0)
(0.975677 0.0204326 0)
(0.96345 0.0314681 0)
(0.94919 0.0426103 0)
(0.930177 0.0527856 0)
(0.90151 0.0603264 0)
(0.860949 0.0642926 0)
(0.813986 0.0663158 0)
(0.772064 0.0708291 0)
(0.744844 0.0820298 0)
(0.735079 0.0992784 0)
(0.742179 0.116266 0)
(0.767112 0.127159 0)
(0.806906 0.135066 0)
(0.848666 0.150586 0)
(0.889478 0.167943 0)
(0.96621 0.140886 0)
(1.10174 0.0271885 0)
(1.22952 -0.13951 0)
(1.27884 -0.285082 0)
(1.25095 -0.371101 0)
(1.1853 -0.404178 0)
(1.1134 -0.405288 0)
(1.04853 -0.390204 0)
(0.993765 -0.367162 0)
(0.948315 -0.340137 0)
(0.910904 -0.311027 0)
(0.880281 -0.281 0)
(0.854846 -0.25077 0)
(0.834582 -0.220364 0)
(0.818146 -0.190369 0)
(0.804404 -0.160818 0)
(0.795333 -0.130884 0)
(0.78849 -0.101755 0)
(0.782025 -0.073581 0)
(0.781363 -0.0438367 0)
(0.785087 -0.0138549 0)
(0.785628 0.0129984 0)
(0.787279 0.0394539 0)
(0.800151 0.0702531 0)
(0.821757 0.103328 0)
(0.841468 0.132409 0)
(0.854239 0.154233 0)
(0.862888 0.169832 0)
(0.872989 0.181637 0)
(0.889663 0.191169 0)
(0.914576 0.197829 0)
(0.946499 0.19761 0)
(0.9812 0.186156 0)
(1.01236 0.161279 0)
(1.03383 0.124055 0)
(1.04223 0.0754959 0)
(1.03391 0.0245815 0)
(1.0089 -0.0212067 0)
(0.971765 -0.0539617 0)
(0.929291 -0.0755645 0)
(0.883377 -0.075245 0)
(0.841056 -0.0587485 0)
(0.806738 -0.0199102 0)
(0.788052 0.0169096 0)
(0.784913 0.052211 0)
(1.03658 0.0140446 0)
(1.03561 0.015008 0)
(1.03467 0.0161347 0)
(1.03381 0.0173234 0)
(1.03297 0.0185387 0)
(1.03206 0.0198167 0)
(1.03106 0.0211997 0)
(1.02993 0.0227233 0)
(1.02866 0.024439 0)
(1.02725 0.0264207 0)
(1.02571 0.0287534 0)
(1.02407 0.0315212 0)
(1.02242 0.0347968 0)
(1.02085 0.0386278 0)
(1.01947 0.0430217 0)
(1.01841 0.0479329 0)
(1.01778 0.0532553 0)
(1.01767 0.0588195 0)
(1.01814 0.0643953 0)
(1.01922 0.0696957 0)
(1.02092 0.0743842 0)
(1.02323 0.0780848 0)
(1.02618 0.0803962 0)
(1.02982 0.0809124 0)
(1.03422 0.079253 0)
(1.03942 0.0751119 0)
(1.04533 0.0683293 0)
(1.05163 0.0589882 0)
(1.05768 0.0475135 0)
(1.06267 0.0347082 0)
(1.06574 0.0216745 0)
(1.06627 0.00962497 0)
(1.06408 -0.00036139 0)
(1.05938 -0.00748455 0)
(1.05269 -0.0113662 0)
(1.04466 -0.0119451 0)
(1.03596 -0.00942225 0)
(1.02707 -0.00420412 0)
(1.01832 0.0032453 0)
(1.00985 0.0125269 0)
(1.00139 0.02311 0)
(0.992401 0.034454 0)
(0.982536 0.0461556 0)
(0.970701 0.0576965 0)
(0.953502 0.0677944 0)
(0.926552 0.0746814 0)
(0.889077 0.0780919 0)
(0.84696 0.0811074 0)
(0.81071 0.088401 0)
(0.789891 0.100738 0)
(0.789783 0.112536 0)
(0.810841 0.118784 0)
(0.845137 0.124534 0)
(0.879657 0.139566 0)
(0.922599 0.151043 0)
(1.01516 0.111293 0)
(1.15609 -0.00673509 0)
(1.26676 -0.160074 0)
(1.29443 -0.285704 0)
(1.25448 -0.357889 0)
(1.18611 -0.385945 0)
(1.11549 -0.387371 0)
(1.05255 -0.374532 0)
(0.999216 -0.353994 0)
(0.954711 -0.329204 0)
(0.917754 -0.302021 0)
(0.887403 -0.273565 0)
(0.862135 -0.24468 0)
(0.84167 -0.215482 0)
(0.825428 -0.186355 0)
(0.811666 -0.157727 0)
(0.801962 -0.128777 0)
(0.795692 -0.100029 0)
(0.789527 -0.0725128 0)
(0.787276 -0.0441819 0)
(0.791173 -0.0146176 0)
(0.794021 0.0126665 0)
(0.794973 0.0378847 0)
(0.804056 0.065931 0)
(0.824439 0.0975897 0)
(0.847309 0.127552 0)
(0.864419 0.150963 0)
(0.875675 0.167176 0)
(0.886095 0.178152 0)
(0.901151 0.185879 0)
(0.923211 0.190593 0)
(0.951977 0.189053 0)
(0.983963 0.177647 0)
(1.01315 0.154488 0)
(1.03404 0.120195 0)
(1.04285 0.0755892 0)
(1.03574 0.0288493 0)
(1.01293 -0.0131733 0)
(0.978864 -0.0439275 0)
(0.939076 -0.0639686 0)
(0.895718 -0.064307 0)
(0.855031 -0.0482975 0)
(0.822959 -0.0139879 0)
(0.80548 0.0204766 0)
(0.803413 0.0505663 0)
(1.03645 0.0142792 0)
(1.03566 0.0152295 0)
(1.03492 0.0163361 0)
(1.03425 0.0175218 0)
(1.03361 0.0187489 0)
(1.03294 0.0200434 0)
(1.03221 0.0214477 0)
(1.03139 0.0229997 0)
(1.03049 0.0247473 0)
(1.0295 0.0267577 0)
(1.02846 0.0291089 0)
(1.0274 0.0318778 0)
(1.02643 0.0351294 0)
(1.02563 0.0389045 0)
(1.02516 0.0432067 0)
(1.02514 0.0479906 0)
(1.02571 0.0531537 0)
(1.02698 0.0585339 0)
(1.02903 0.0639097 0)
(1.03192 0.0690031 0)
(1.03564 0.073485 0)
(1.04017 0.0769841 0)
(1.04544 0.0791013 0)
(1.05138 0.0794336 0)
(1.05785 0.0776109 0)
(1.06467 0.0733519 0)
(1.07154 0.0665408 0)
(1.07798 0.0573168 0)
(1.08337 0.0461513 0)
(1.08698 0.0338581 0)
(1.08822 0.0214938 0)
(1.08676 0.0101779 0)
(1.08268 0.000879563 0)
(1.07637 -0.00568388 0)
(1.06847 -0.00917774 0)
(1.05968 -0.0095457 0)
(1.05066 -0.0069788 0)
(1.04191 -0.00182643 0)
(1.03379 0.00548502 0)
(1.02648 0.0146281 0)
(1.01993 0.0251575 0)
(1.01377 0.036573 0)
(1.00759 0.0484766 0)
(1.00087 0.0606004 0)
(0.992103 0.0721938 0)
(0.977948 0.0816213 0)
(0.95486 0.08766 0)
(0.922577 0.0916709 0)
(0.887272 0.0970837 0)
(0.86065 0.104821 0)
(0.853409 0.110682 0)
(0.867172 0.111989 0)
(0.891935 0.115693 0)
(0.919462 0.128533 0)
(0.969774 0.130614 0)
(1.0771 0.0781741 0)
(1.21236 -0.0390215 0)
(1.29802 -0.175493 0)
(1.30349 -0.281797 0)
(1.25405 -0.34247 0)
(1.18496 -0.367105 0)
(1.11656 -0.369424 0)
(1.05592 -0.35888 0)
(1.0042 -0.340772 0)
(0.960758 -0.318148 0)
(0.924388 -0.29285 0)
(0.894333 -0.265974 0)
(0.86934 -0.23841 0)
(0.848756 -0.210444 0)
(0.832573 -0.182256 0)
(0.819039 -0.154466 0)
(0.808731 -0.126564 0)
(0.802588 -0.0983879 0)
(0.797208 -0.0712901 0)
(0.793775 -0.0442736 0)
(0.796779 -0.0156763 0)
(0.801684 0.0119783 0)
(0.803524 0.0367683 0)
(0.809341 0.0622991 0)
(0.826742 0.0916277 0)
(0.851124 0.121575 0)
(0.872615 0.146539 0)
(0.887508 0.163916 0)
(0.89918 0.174668 0)
(0.913093 0.18102 0)
(0.932467 0.183973 0)
(0.95798 0.1811 0)
(0.986825 0.169601 0)
(1.01356 0.147919 0)
(1.03334 0.116304 0)
(1.04215 0.0754972 0)
(1.03606 0.032793 0)
(1.01551 -0.00563145 0)
(0.984539 -0.0343505 0)
(0.947388 -0.052785 0)
(0.906581 -0.0535246 0)
(0.868022 -0.0382851 0)
(0.838422 -0.00810619 0)
(0.822843 0.0233367 0)
(0.822172 0.0491115 0)
(1.03526 0.0144792 0)
(1.0346 0.0154184 0)
(1.03397 0.0165052 0)
(1.03341 0.0176827 0)
(1.03289 0.0189154 0)
(1.03237 0.0202207 0)
(1.0318 0.0216388 0)
(1.03119 0.0232085 0)
(1.03052 0.0249751 0)
(1.02981 0.0269991 0)
(1.0291 0.029351 0)
(1.02843 0.0321 0)
(1.02791 0.0353033 0)
(1.02764 0.0389949 0)
(1.02776 0.0431737 0)
(1.02842 0.0477934 0)
(1.02976 0.052755 0)
(1.03192 0.0579029 0)
(1.03497 0.0630253 0)
(1.03899 0.0678561 0)
(1.04398 0.0720789 0)
(1.04988 0.0753361 0)
(1.0566 0.0772432 0)
(1.06396 0.077413 0)
(1.07172 0.0754973 0)
(1.07954 0.0712455 0)
(1.08696 0.0645759 0)
(1.09342 0.0556602 0)
(1.09829 0.0449881 0)
(1.10095 0.033349 0)
(1.10102 0.0217315 0)
(1.09838 0.0111624 0)
(1.09327 0.00253521 0)
(1.08617 -0.00354277 0)
(1.07775 -0.00673451 0)
(1.06874 -0.00699475 0)
(1.05978 -0.00449649 0)
(1.05139 0.000473615 0)
(1.04394 0.00755148 0)
(1.03765 0.0164089 0)
(1.03258 0.0266766 0)
(1.02863 0.0379252 0)
(1.02545 0.0497816 0)
(1.02262 0.0620292 0)
(1.01956 0.0741958 0)
(1.01477 0.0850825 0)
(1.00514 0.0934876 0)
(0.987386 0.0997397 0)
(0.962647 0.10541 0)
(0.940043 0.110184 0)
(0.93113 0.110925 0)
(0.938069 0.107874 0)
(0.952657 0.109088 0)
(0.976203 0.116779 0)
(1.03628 0.106733 0)
(1.14879 0.0444922 0)
(1.26422 -0.066392 0)
(1.3198 -0.184475 0)
(1.30547 -0.27363 0)
(1.25006 -0.325449 0)
(1.1822 -0.348061 0)
(1.11677 -0.351634 0)
(1.0587 -0.343334 0)
(1.00874 -0.327542 0)
(0.966446 -0.307003 0)
(0.930789 -0.283535 0)
(0.901075 -0.25824 0)
(0.876409 -0.231985 0)
(0.855852 -0.20524 0)
(0.839595 -0.178075 0)
(0.826401 -0.151077 0)
(0.815731 -0.124188 0)
(0.809255 -0.096815 0)
(0.804768 -0.0700442 0)
(0.800924 -0.0440502 0)
(0.802354 -0.0168184 0)
(0.808352 0.0107901 0)
(0.812243 0.0357722 0)
(0.816229 0.0594781 0)
(0.829601 0.0859407 0)
(0.853282 0.114742 0)
(0.878324 0.140793 0)
(0.897662 0.159718 0)
(0.911801 0.170947 0)
(0.925385 0.176502 0)
(0.942452 0.177982 0)
(0.964752 0.173845 0)
(0.990198 0.162162 0)
(1.01413 0.141722 0)
(1.03235 0.112513 0)
(1.04073 0.0752904 0)
(1.03546 0.0364102 0)
(1.01709 0.00138284 0)
(0.989036 -0.025252 0)
(0.95443 -0.042039 0)
(0.916231 -0.0430011 0)
(0.880383 -0.0288435 0)
(0.853703 -0.00247985 0)
(0.840564 0.0254625 0)
(0.841571 0.0475275 0)
(1.03359 0.0146584 0)
(1.03301 0.0155884 0)
(1.03245 0.0166569 0)
(1.03196 0.0178234 0)
(1.03151 0.019057 0)
(1.03107 0.0203687 0)
(1.0306 0.0217948 0)
(1.03011 0.0233743 0)
(1.02959 0.02515 0)
(1.02906 0.0271761 0)
(1.02857 0.0295155 0)
(1.02816 0.0322295 0)
(1.02794 0.0353675 0)
(1.02801 0.0389565 0)
(1.02851 0.0429915 0)
(1.02959 0.0474244 0)
(1.0314 0.0521586 0)
(1.03405 0.0570451 0)
(1.03767 0.061882 0)
(1.0423 0.0664164 0)
(1.04795 0.0703483 0)
(1.05457 0.0733391 0)
(1.06203 0.0750265 0)
(1.07011 0.0750494 0)
(1.07848 0.0730885 0)
(1.08673 0.0689243 0)
(1.09434 0.0625065 0)
(1.10069 0.0540278 0)
(1.10517 0.0439657 0)
(1.10728 0.0330613 0)
(1.10673 0.0222259 0)
(1.10354 0.0124003 0)
(1.09801 0.00439561 0)
(1.09069 -0.00123472 0)
(1.08226 -0.00418466 0)
(1.07342 -0.00440364 0)
(1.0648 -0.00202145 0)
(1.05691 0.00269363 0)
(1.05013 0.00944846 0)
(1.0447 0.0179196 0)
(1.04077 0.0277838 0)
(1.0384 0.0386657 0)
(1.03743 0.0502506 0)
(1.03753 0.0623357 0)
(1.03843 0.0744999 0)
(1.03973 0.0858474 0)
(1.03977 0.0956024 0)
(1.03529 0.103857 0)
(1.02495 0.110685 0)
(1.01405 0.114181 0)
(1.01085 0.111728 0)
(1.01613 0.105862 0)
(1.02581 0.104064 0)
(1.05068 0.103924 0)
(1.11669 0.0815395 0)
(1.21877 0.0144367 0)
(1.30361 -0.0862798 0)
(1.32968 -0.186768 0)
(1.30083 -0.262068 0)
(1.24325 -0.307574 0)
(1.17822 -0.329185 0)
(1.11624 -0.334153 0)
(1.06091 -0.327966 0)
(1.01284 -0.314347 0)
(0.971769 -0.295803 0)
(0.936933 -0.274102 0)
(0.907638 -0.250373 0)
(0.883306 -0.22543 0)
(0.862934 -0.199874 0)
(0.846551 -0.1738 0)
(0.83364 -0.147608 0)
(0.822954 -0.121633 0)
(0.815879 -0.0952377 0)
(0.81198 -0.0688886 0)
(0.808534 -0.043566 0)
(0.808381 -0.017804 0)
(0.81414 0.00913905 0)
(0.820347 0.0345191 0)
(0.824416 0.0573319 0)
(0.83392 0.0809837 0)
(0.854664 0.107553 0)
(0.881398 0.133754 0)
(0.905298 0.154245 0)
(0.923194 0.166634 0)
(0.937705 0.17213 0)
(0.953203 0.172576 0)
(0.97251 0.167347 0)
(0.994451 0.155438 0)
(1.01535 0.136018 0)
(1.03162 0.108943 0)
(1.03918 0.0750307 0)
(1.03451 0.0397394 0)
(1.01811 0.00790541 0)
(0.992634 -0.0166051 0)
(0.960541 -0.0317655 0)
(0.925215 -0.0328869 0)
(0.892727 -0.0201469 0)
(0.869558 0.00263129 0)
(0.859309 0.0268419 0)
(0.862097 0.045607 0)
(1.03176 0.0148252 0)
(1.03123 0.0157474 0)
(1.03072 0.0167996 0)
(1.03027 0.0179538 0)
(1.02986 0.0191849 0)
(1.02946 0.0204996 0)
(1.02906 0.0219298 0)
(1.02865 0.0235132 0)
(1.02823 0.0252903 0)
(1.02783 0.0273096 0)
(1.02748 0.0296265 0)
(1.02725 0.0322948 0)
(1.02723 0.0353564 0)
(1.02752 0.0388314 0)
(1.02826 0.0427101 0)
(1.02959 0.0469436 0)
(1.03165 0.0514374 0)
(1.03457 0.0560484 0)
(1.03844 0.0605849 0)
(1.04333 0.0648078 0)
(1.04924 0.0684353 0)
(1.0561 0.071151 0)
(1.06379 0.0726189 0)
(1.07205 0.0725087 0)
(1.08055 0.0705346 0)
(1.08882 0.0665079 0)
(1.09632 0.0604056 0)
(1.10245 0.0524287 0)
(1.10664 0.0430275 0)
(1.10844 0.0328882 0)
(1.10764 0.0228441 0)
(1.1043 0.0137484 0)
(1.09878 0.00633508 0)
(1.09164 0.00111041 0)
(1.08354 -0.00163567 0)
(1.07513 -0.00184342 0)
(1.06703 0.000381253 0)
(1.05971 0.00481181 0)
(1.05357 0.0111817 0)
(1.04887 0.0192053 0)
(1.04581 0.028579 0)
(1.04453 0.0389605 0)
(1.04502 0.0500891 0)
(1.04715 0.0617839 0)
(1.0508 0.0736045 0)
(1.05595 0.08478 0)
(1.06192 0.0949035 0)
(1.06671 0.104171 0)
(1.06902 0.111798 0)
(1.07142 0.114799 0)
(1.07769 0.110952 0)
(1.08672 0.103736 0)
(1.09865 0.0987037 0)
(1.12834 0.0899942 0)
(1.19216 0.057912 0)
(1.27212 -0.00917939 0)
(1.32493 -0.0981725 0)
(1.32796 -0.183471 0)
(1.29108 -0.248373 0)
(1.23453 -0.289571 0)
(1.17338 -0.310771 0)
(1.11511 -0.317091 0)
(1.06259 -0.312835 0)
(1.0165 -0.301227 0)
(0.976732 -0.284581 0)
(0.942796 -0.26458 0)
(0.914024 -0.242384 0)
(0.890019 -0.218763 0)
(0.86995 -0.194364 0)
(0.853499 -0.169407 0)
(0.840707 -0.14409 0)
(0.830286 -0.118923 0)
(0.82266 -0.0935634 0)
(0.8188 -0.0678652 0)
(0.816223 -0.0429724 0)
(0.815147 -0.0184683 0)
(0.819547 0.00724915 0)
(0.82728 0.032736 0)
(0.833067 0.0554736 0)
(0.840166 0.0769901 0)
(0.856554 0.100661 0)
(0.882348 0.125761 0)
(0.909744 0.147287 0)
(0.932267 0.161285 0)
(0.949325 0.167548 0)
(0.964537 0.167604 0)
(0.981435 0.161614 0)
(0.999977 0.149508 0)
(1.0177 0.130922 0)
(1.03169 0.105722 0)
(1.03809 0.0748124 0)
(1.03378 0.0428204 0)
(1.01899 0.0139758 0)
(0.995798 -0.00839952 0)
(0.966372 -0.0220563 0)
(0.934449 -0.0234031 0)
(0.906015 -0.0124007 0)
(0.886886 0.00695813 0)
(0.879803 0.0274672 0)
(0.884243 0.0432873 0)
(1.02993 0.0149841 0)
(1.02944 0.0158995 0)
(1.02896 0.0169373 0)
(1.02854 0.0180789 0)
(1.02816 0.019305 0)
(1.0278 0.0206198 0)
(1.02744 0.0220506 0)
(1.02709 0.0236333 0)
(1.02674 0.0254057 0)
(1.02643 0.0274113 0)
(1.02619 0.0296984 0)
(1.02609 0.0323134 0)
(1.02621 0.0352909 0)
(1.02665 0.0386453 0)
(1.02755 0.042362 0)
(1.02903 0.0463911 0)
(1.03121 0.0506402 0)
(1.03424 0.0549723 0)
(1.03818 0.0592057 0)
(1.04311 0.0631155 0)
(1.04902 0.0664387 0)
(1.05584 0.0688823 0)
(1.06343 0.0701387 0)
(1.07155 0.0699102 0)
(1.07984 0.0679446 0)
(1.08785 0.0640853 0)
(1.09506 0.0583281 0)
(1.10088 0.0508715 0)
(1.10479 0.0421419 0)
(1.10641 0.032768 0)
(1.10556 0.0235017 0)
(1.10235 0.0151087 0)
(1.09712 0.00825326 0)
(1.09042 0.00340581 0)
(1.08284 0.00084003 0)
(1.07502 0.000623929 0)
(1.06752 0.00267641 0)
(1.0608 0.00680434 0)
(1.05526 0.0127667 0)
(1.05118 0.020307 0)
(1.04878 0.0291397 0)
(1.04824 0.0389457 0)
(1.04964 0.0494938 0)
(1.05303 0.0606167 0)
(1.05845 0.0718671 0)
(1.06596 0.0825301 0)
(1.07525 0.0923824 0)
(1.08549 0.101674 0)
(1.09636 0.109251 0)
(1.10903 0.111792 0)
(1.12383 0.107539 0)
(1.13869 0.0997088 0)
(1.15647 0.0913738 0)
(1.19005 0.0755398 0)
(1.24507 0.0381889 0)
(1.30089 -0.0252619 0)
(1.32825 -0.102968 0)
(1.31745 -0.176442 0)
(1.27812 -0.233829 0)
(1.22474 -0.271997 0)
(1.16795 -0.293011 0)
(1.11347 -0.300523 0)
(1.06379 -0.297988 0)
(1.01973 -0.288224 0)
(0.981341 -0.273367 0)
(0.948362 -0.255001 0)
(0.920219 -0.234291 0)
(0.896559 -0.211995 0)
(0.876835 -0.188737 0)
(0.860462 -0.164881 0)
(0.847635 -0.140526 0)
(0.83756 -0.11612 0)
(0.829698 -0.091728 0)
(0.825403 -0.0669219 0)
(0.823603 -0.0424432 0)
(0.822559 -0.0188061 0)
(0.825249 0.00544141 0)
(0.833028 0.0303958 0)
(0.841103 0.0534045 0)
(0.848004 0.0738229 0)
(0.860197 0.0946626 0)
(0.882492 0.11748 0)
(0.910973 0.138954 0)
(0.937848 0.154491 0)
(0.958957 0.162231 0)
(0.975734 0.162726 0)
(0.991466 0.156531 0)
(1.00719 0.144402 0)
(1.02182 0.126523 0)
(1.03323 0.102959 0)
(1.03818 0.0747316 0)
(1.03394 0.0456965 0)
(1.02045 0.0196184 0)
(0.999432 -0.000688953 0)
(0.973105 -0.0131007 0)
(0.945266 -0.0148428 0)
(0.921447 -0.00581458 0)
(0.906586 0.010298 0)
(0.902557 0.0273666 0)
(0.908195 0.0406388 0)
(1.02818 0.0151372 0)
(1.02771 0.0160464 0)
(1.02727 0.0170716 0)
(1.02687 0.0182006 0)
(1.02651 0.0194197 0)
(1.02618 0.020732 0)
(1.02586 0.0221606 0)
(1.02555 0.0237385 0)
(1.02527 0.0255012 0)
(1.02503 0.0274873 0)
(1.02488 0.0297387 0)
(1.02488 0.0322945 0)
(1.02511 0.035183 0)
(1.02567 0.0384126 0)
(1.02667 0.0419655 0)
(1.02824 0.0457899 0)
(1.03049 0.049796 0)
(1.03353 0.0538529 0)
(1.03745 0.0577886 0)
(1.04229 0.0613927 0)
(1.04805 0.0644206 0)
(1.05467 0.0666032 0)
(1.06199 0.0676614 0)
(1.06977 0.0673294 0)
(1.07768 0.0653883 0)
(1.08528 0.0617099 0)
(1.09208 0.0563063 0)
(1.09754 0.0493726 0)
(1.1012 0.0413029 0)
(1.10271 0.0326667 0)
(1.10193 0.0241411 0)
(1.09898 0.0164152 0)
(1.09418 0.0100894 0)
(1.08802 0.00559773 0)
(1.08107 0.00319606 0)
(1.07389 0.00296598 0)
(1.06703 0.00484419 0)
(1.06092 0.0086658 0)
(1.05594 0.0142151 0)
(1.05238 0.0212569 0)
(1.05049 0.0295239 0)
(1.05046 0.0387175 0)
(1.05242 0.0486159 0)
(1.0565 0.059046 0)
(1.06292 0.0695747 0)
(1.07173 0.079546 0)
(1.08272 0.0887813 0)
(1.09576 0.0974449 0)
(1.11135 0.104259 0)
(1.12995 0.106168 0)
(1.15009 0.101781 0)
(1.16982 0.0934395 0)
(1.19271 0.0821689 0)
(1.22682 0.0617952 0)
(1.27073 0.0231209 0)
(1.30727 -0.0350969 0)
(1.31893 -0.103167 0)
(1.30192 -0.167676 0)
(1.26369 -0.2194 0)
(1.21446 -0.255186 0)
(1.16215 -0.276005 0)
(1.11139 -0.284493 0)
(1.06454 -0.283464 0)
(1.02254 -0.275375 0)
(0.985603 -0.262191 0)
(0.953627 -0.245394 0)
(0.926199 -0.226116 0)
(0.902941 -0.205134 0)
(0.883551 -0.18302 0)
(0.867406 -0.160227 0)
(0.854504 -0.13689 0)
(0.844656 -0.113279 0)
(0.83692 -0.0897333 0)
(0.832066 -0.0659456 0)
(0.83051 -0.0420749 0)
(0.830168 -0.0189754 0)
(0.831711 0.00396554 0)
(0.838199 0.0277528 0)
(0.847753 0.0507603 0)
(0.856282 0.0709837 0)
(0.866101 0.0898017 0)
(0.883652 0.10975 0)
(0.910072 0.129817 0)
(0.939334 0.146128 0)
(0.964961 0.155595 0)
(0.98523 0.157365 0)
(1.00179 0.15176 0)
(1.01609 0.14001 0)
(1.02829 0.122886 0)
(1.03728 0.10078 0)
(1.04069 0.0748904 0)
(1.03631 0.048518 0)
(1.02393 0.0249134 0)
(1.00521 0.00644958 0)
(0.982462 -0.00509044 0)
(0.959148 -0.00745406 0)
(0.940021 -0.000500501 0)
(0.929089 0.0126168 0)
(0.927473 0.026681 0)
(0.933482 0.0378741 0)
(1.02652 0.0152852 0)
(1.02608 0.0161887 0)
(1.02567 0.0172024 0)
(1.02529 0.0183191 0)
(1.02496 0.0195297 0)
(1.02465 0.0208369 0)
(1.02437 0.0222605 0)
(1.0241 0.0238302 0)
(1.02387 0.0255786 0)
(1.0237 0.0275402 0)
(1.02364 0.0297507 0)
(1.02373 0.0322429 0)
(1.02405 0.0350386 0)
(1.0247 0.0381416 0)
(1.02578 0.0415304 0)
(1.0274 0.0451525 0)
(1.02967 0.0489206 0)
(1.03269 0.0527098 0)
(1.03654 0.0563581 0)
(1.04124 0.0596688 0)
(1.04679 0.062416 0)
(1.05311 0.0643536 0)
(1.06007 0.0652301 0)
(1.06743 0.06481 0)
(1.07488 0.0629052 0)
(1.082 0.0594132 0)
(1.08835 0.0543597 0)
(1.09344 0.0479325 0)
(1.09686 0.0404939 0)
(1.09829 0.0325587 0)
(1.09764 0.0247344 0)
(1.095 0.0176383 0)
(1.09068 0.0118121 0)
(1.0851 0.00765588 0)
(1.0788 0.00541128 0)
(1.07228 0.00516524 0)
(1.06605 0.00687305 0)
(1.06053 0.0103943 0)
(1.05608 0.0155351 0)
(1.05298 0.0220778 0)
(1.05151 0.0297719 0)
(1.05184 0.0383388 0)
(1.05413 0.0475558 0)
(1.05858 0.0572305 0)
(1.06545 0.0669534 0)
(1.07481 0.0761389 0)
(1.08652 0.0845838 0)
(1.10078 0.0922821 0)
(1.11839 0.0979863 0)
(1.13937 0.0991329 0)
(1.1618 0.0945526 0)
(1.18427 0.0856069 0)
(1.20953 0.0722481 0)
(1.24123 0.0496531 0)
(1.27529 0.011981 0)
(1.29939 -0.0407749 0)
(1.30297 -0.100997 0)
(1.28433 -0.158453 0)
(1.24888 -0.205592 0)
(1.20407 -0.239285 0)
(1.15608 -0.259796 0)
(1.10894 -0.269032 0)
(1.06487 -0.269294 0)
(1.02495 -0.262715 0)
(0.98952 -0.251084 0)
(0.958595 -0.235784 0)
(0.931937 -0.217886 0)
(0.90917 -0.198188 0)
(0.890095 -0.177229 0)
(0.87426 -0.155469 0)
(0.861379 -0.133154 0)
(0.851571 -0.11042 0)
(0.844136 -0.0876409 0)
(0.838974 -0.0648389 0)
(0.8371 -0.0418275 0)
(0.837459 -0.0191903 0)
(0.838856 0.00284932 0)
(0.843665 0.0252023 0)
(0.853078 0.0475374 0)
(0.863607 0.0678626 0)
(0.873524 0.0857765 0)
(0.887222 0.10319 0)
(0.9092 0.120844 0)
(0.93754 0.136628 0)
(0.96619 0.147318 0)
(0.990825 0.150801 0)
(1.01041 0.146629 0)
(1.02548 0.135951 0)
(1.0368 0.119884 0)
(1.04429 0.0991925 0)
(1.04657 0.0753409 0)
(1.04215 0.0512971 0)
(1.031 0.0298041 0)
(1.01476 0.0127631 0)
(0.995672 0.00177357 0)
(0.976681 -0.00133011 0)
(0.961623 0.00362705 0)
(0.953668 0.0140983 0)
(0.953357 0.0256967 0)
(0.958691 0.0353209 0)
(1.02497 0.0154282 0)
(1.02456 0.0163261 0)
(1.02418 0.0173293 0)
(1.02383 0.0184338 0)
(1.02351 0.0196345 0)
(1.02323 0.0209343 0)
(1.02298 0.0223501 0)
(1.02276 0.0239082 0)
(1.02259 0.0256382 0)
(1.02248 0.0275706 0)
(1.02249 0.0297358 0)
(1.02266 0.0321604 0)
(1.02306 0.0348607 0)
(1.02379 0.037836 0)
(1.02493 0.041062 0)
(1.02659 0.0444857 0)
(1.02887 0.0480225 0)
(1.03185 0.0515535 0)
(1.03559 0.0549267 0)
(1.04012 0.057959 0)
(1.04543 0.0604425 0)
(1.05144 0.0621533 0)
(1.05801 0.0628657 0)
(1.06492 0.0623728 0)
(1.07188 0.0605143 0)
(1.07852 0.0572101 0)
(1.08441 0.0524962 0)
(1.08914 0.0465525 0)
(1.09232 0.0397108 0)
(1.0937 0.0324348 0)
(1.09319 0.025268 0)
(1.09088 0.0187624 0)
(1.08702 0.0134066 0)
(1.08203 0.00956789 0)
(1.07636 0.00747368 0)
(1.07049 0.00721387 0)
(1.06487 0.00875905 0)
(1.05992 0.0119899 0)
(1.05596 0.0167322 0)
(1.05329 0.0227835 0)
(1.05217 0.0299093 0)
(1.05278 0.0378483 0)
(1.05528 0.0463741 0)
(1.0599 0.0552735 0)
(1.06689 0.0641604 0)
(1.07635 0.0725165 0)
(1.08819 0.0800858 0)
(1.10275 0.0866968 0)
(1.12073 0.0912128 0)
(1.14194 0.0915545 0)
(1.16466 0.0866673 0)
(1.18785 0.0771581 0)
(1.21299 0.0625496 0)
(1.24108 0.0393101 0)
(1.26784 0.00361419 0)
(1.28463 -0.0441104 0)
(1.28453 -0.0978391 0)
(1.26646 -0.149466 0)
(1.23432 -0.192636 0)
(1.19376 -0.224338 0)
(1.14986 -0.24439 0)
(1.10616 -0.254156 0)
(1.06482 -0.255507 0)
(1.02697 -0.250279 0)
(0.993094 -0.240079 0)
(0.963274 -0.226195 0)
(0.93742 -0.20963 0)
(0.915227 -0.191173 0)
(0.896489 -0.171368 0)
(0.880965 -0.150638 0)
(0.868249 -0.129312 0)
(0.858393 -0.10752 0)
(0.851186 -0.0855213 0)
(0.846076 -0.0635878 0)
(0.843701 -0.0415667 0)
(0.844219 -0.0195628 0)
(0.846134 0.00189885 0)
(0.849929 0.0230119 0)
(0.857951 0.044097 0)
(0.869302 0.0641335 0)
(0.880812 0.0818884 0)
(0.893109 0.097798 0)
(0.910508 0.112951 0)
(0.934905 0.127006 0)
(0.963308 0.137738 0)
(0.990981 0.142598 0)
(1.01452 0.140306 0)
(1.03255 0.131423 0)
(1.04524 0.116957 0)
(1.05299 0.0978899 0)
(1.05525 0.0759709 0)
(1.05134 0.0539617 0)
(1.04169 0.0342109 0)
(1.02797 0.0182258 0)
(1.01215 0.00755043 0)
(0.996657 0.00371756 0)
(0.984497 0.0069014 0)
(0.978172 0.01513 0)
(0.977863 0.0248028 0)
(0.981536 0.0333321 0)
(1.02353 0.0155661 0)
(1.02315 0.0164582 0)
(1.02279 0.0174513 0)
(1.02247 0.0185437 0)
(1.02218 0.0197332 0)
(1.02193 0.0210233 0)
(1.02171 0.0224284 0)
(1.02154 0.0239716 0)
(1.02141 0.0256794 0)
(1.02137 0.0275785 0)
(1.02144 0.0296943 0)
(1.02169 0.032048 0)
(1.02217 0.0346509 0)
(1.02296 0.0374982 0)
(1.02416 0.0405632 0)
(1.02585 0.0437931 0)
(1.02812 0.0471061 0)
(1.03104 0.0503896 0)
(1.03467 0.053501 0)
(1.03903 0.0562709 0)
(1.04409 0.0585086 0)
(1.04978 0.0600112 0)
(1.05596 0.0605773 0)
(1.06243 0.0600261 0)
(1.06891 0.0582221 0)
(1.07506 0.0551045 0)
(1.08052 0.0507173 0)
(1.0849 0.0452315 0)
(1.08787 0.0389503 0)
(1.08921 0.0322902 0)
(1.08883 0.0257366 0)
(1.08683 0.0197831 0)
(1.08343 0.0148691 0)
(1.07899 0.0113305 0)
(1.07392 0.00938023 0)
(1.06867 0.00910934 0)
(1.06365 0.0105007 0)
(1.05923 0.0134528 0)
(1.05575 0.0178092 0)
(1.05348 0.0233815 0)
(1.05266 0.0299499 0)
(1.05349 0.0372678 0)
(1.05615 0.0451064 0)
(1.06083 0.0532344 0)
(1.06777 0.0612898 0)
(1.07707 0.0688036 0)
(1.08873 0.0754694 0)
(1.10305 0.0809965 0)
(1.12054 0.0843721 0)
(1.14092 0.0839234 0)
(1.16283 0.0786703 0)
(1.18536 0.0687334 0)
(1.20899 0.0535205 0)
(1.23347 0.0304823 0)
(1.25509 -0.0029713 0)
(1.26754 -0.0462109 0)
(1.26587 -0.0944124 0)
(1.24918 -0.141001 0)
(1.22028 -0.180577 0)
(1.18366 -0.210323 0)
(1.14354 -0.229774 0)
(1.10312 -0.239874 0)
(1.06443 -0.242124 0)
(1.02864 -0.238092 0)
(0.99633 -0.229205 0)
(0.967667 -0.216653 0)
(0.942647 -0.201369 0)
(0.921083 -0.184112 0)
(0.902745 -0.165443 0)
(0.887505 -0.145752 0)
(0.875044 -0.125383 0)
(0.865201 -0.104545 0)
(0.858049 -0.0833994 0)
(0.853163 -0.0622555 0)
(0.850504 -0.0411828 0)
(0.850662 -0.0200306 0)
(0.853003 0.000882789 0)
(0.856745 0.0211415 0)
(0.863332 0.0408713 0)
(0.873919 0.0599746 0)
(0.886649 0.0775475 0)
(0.899675 0.0929287 0)
(0.914541 0.106405 0)
(0.93419 0.118363 0)
(0.959115 0.127919 0)
(0.98659 0.133121 0)
(1.01258 0.132393 0)
(1.03404 0.125568 0)
(1.04988 0.113196 0)
(1.05991 0.0961828 0)
(1.06375 0.0763618 0)
(1.06135 0.0563116 0)
(1.05368 0.0380714 0)
(1.04238 0.0229794 0)
(1.02914 0.0124914 0)
(1.01601 0.00802301 0)
(1.00541 0.00975107 0)
(0.999363 0.0161687 0)
(0.997949 0.0243858 0)
(0.999385 0.0321751 0)
(1.0222 0.0156985 0)
(1.02184 0.0165845 0)
(1.02151 0.0175676 0)
(1.02122 0.0186478 0)
(1.02096 0.0198248 0)
(1.02074 0.0211029 0)
(1.02056 0.0224946 0)
(1.02042 0.0240198 0)
(1.02035 0.0257017 0)
(1.02037 0.0275634 0)
(1.02051 0.0296262 0)
(1.02082 0.0319061 0)
(1.02137 0.0344099 0)
(1.02222 0.0371293 0)
(1.02347 0.0400359 0)
(1.02518 0.0430772 0)
(1.02743 0.0461744 0)
(1.03029 0.0492213 0)
(1.0338 0.0520848 0)
(1.03798 0.0546085 0)
(1.04279 0.0566181 0)
(1.04817 0.0579309 0)
(1.05397 0.0583678 0)
(1.06001 0.0577716 0)
(1.06604 0.0560289 0)
(1.07174 0.0530954 0)
(1.07678 0.0490208 0)
(1.08084 0.0439667 0)
(1.08362 0.0382094 0)
(1.08492 0.0321227 0)
(1.08467 0.0261397 0)
(1.08296 0.0207007 0)
(1.07999 0.0162001 0)
(1.07607 0.0129441 0)
(1.07157 0.0111311 0)
(1.0669 0.0108514 0)
(1.06244 0.0120975 0)
(1.05854 0.014783 0)
(1.05551 0.0187672 0)
(1.05361 0.0238752 0)
(1.05307 0.0299003 0)
(1.0541 0.0366092 0)
(1.05686 0.0437719 0)
(1.06154 0.0511464 0)
(1.06835 0.0583897 0)
(1.07739 0.0650703 0)
(1.08869 0.0708441 0)
(1.10248 0.0753452 0)
(1.11909 0.0776819 0)
(1.13823 0.0764883 0)
(1.15881 0.0708602 0)
(1.17996 0.0606481 0)
(1.20156 0.0452524 0)
(1.22284 0.0228338 0)
(1.2407 -0.00837072 0)
(1.25035 -0.0476241 0)
(1.248 -0.0910055 0)
(1.2328 -0.133122 0)
(1.20688 -0.16938 0)
(1.17381 -0.197196 0)
(1.13719 -0.215928 0)
(1.09986 -0.226189 0)
(1.06373 -0.229165 0)
(1.02998 -0.226182 0)
(0.99924 -0.218493 0)
(0.971773 -0.207183 0)
(0.947626 -0.193125 0)
(0.926719 -0.177031 0)
(0.90885 -0.159464 0)
(0.8939 -0.140815 0)
(0.8817 -0.121399 0)
(0.871993 -0.101489 0)
(0.864815 -0.0812492 0)
(0.860073 -0.0609073 0)
(0.857423 -0.0406732 0)
(0.857131 -0.0204496 0)
(0.859387 -0.000264978 0)
(0.863472 0.0193468 0)
(0.869437 0.0380074 0)
(0.878611 0.0558492 0)
(0.891105 0.0727183 0)
(0.905154 0.0878583 0)
(0.919778 0.10066 0)
(0.936351 0.111116 0)
(0.956803 0.119039 0)
(0.980994 0.123514 0)
(1.00625 0.123425 0)
(1.02928 0.118242 0)
(1.0479 0.107979 0)
(1.06095 0.0932947 0)
(1.06755 0.0758399 0)
(1.06772 0.0578704 0)
(1.06257 0.0411854 0)
(1.05361 0.0270498 0)
(1.0423 0.0168714 0)
(1.03058 0.0119976 0)
(1.02053 0.0126194 0)
(1.01395 0.0176074 0)
(1.011 0.0246896 0)
(1.01033 0.0319148 0)
(1.02096 0.0158248 0)
(1.02064 0.0167044 0)
(1.02034 0.0176773 0)
(1.02007 0.0187448 0)
(1.01984 0.0199083 0)
(1.01965 0.0211723 0)
(1.01951 0.0225477 0)
(1.01942 0.0240516 0)
(1.01939 0.0257042 0)
(1.01947 0.0275251 0)
(1.01967 0.0295314 0)
(1.02005 0.031735 0)
(1.02066 0.0341385 0)
(1.02157 0.0367307 0)
(1.02285 0.0394817 0)
(1.02457 0.0423399 0)
(1.0268 0.0452297 0)
(1.0296 0.0480512 0)
(1.03299 0.0506806 0)
(1.03699 0.052974 0)
(1.04156 0.0547731 0)
(1.04663 0.0559136 0)
(1.05207 0.0562373 0)
(1.05771 0.0556083 0)
(1.0633 0.0539325 0)
(1.06858 0.0511795 0)
(1.07325 0.0474029 0)
(1.07701 0.0427545 0)
(1.07961 0.0374858 0)
(1.08087 0.0319318 0)
(1.08075 0.0264781 0)
(1.07931 0.0215171 0)
(1.07673 0.0174021 0)
(1.0733 0.014411 0)
(1.06934 0.0127281 0)
(1.06522 0.0124411 0)
(1.06129 0.0135497 0)
(1.05788 0.0159804 0)
(1.05527 0.0196067 0)
(1.05372 0.024266 0)
(1.05345 0.0297639 0)
(1.05465 0.035879 0)
(1.05749 0.042382 0)
(1.06214 0.0490266 0)
(1.06877 0.0554849 0)
(1.0775 0.0613551 0)
(1.08834 0.0662705 0)
(1.10148 0.0698247 0)
(1.11707 0.0712309 0)
(1.13484 0.0693603 0)
(1.15389 0.0633913 0)
(1.17339 0.0530358 0)
(1.19288 0.0377156 0)
(1.21139 0.0161358 0)
(1.22633 -0.0129065 0)
(1.23395 -0.0485954 0)
(1.23123 -0.0877074 0)
(1.21742 -0.125803 0)
(1.19413 -0.158982 0)
(1.16426 -0.184905 0)
(1.13086 -0.202825 0)
(1.09643 -0.2131 0)
(1.06275 -0.216646 0)
(1.031 -0.214572 0)
(1.00184 -0.207969 0)
(0.975591 -0.197812 0)
(0.952358 -0.184918 0)
(0.932131 -0.169948 0)
(0.914778 -0.153451 0)
(0.900164 -0.13583 0)
(0.888204 -0.117375 0)
(0.878701 -0.0983698 0)
(0.871551 -0.0790388 0)
(0.866808 -0.0595511 0)
(0.864251 -0.0401037 0)
(0.863739 -0.020747 0)
(0.865597 -0.0014405 0)
(0.869758 0.0174594 0)
(0.875753 0.0353313 0)
(0.883973 0.0520412 0)
(0.895257 0.0678176 0)
(0.90917 0.0824049 0)
(0.92423 0.0949567 0)
(0.939929 0.10477 0)
(0.957358 0.111513 0)
(0.977468 0.114919 0)
(0.999453 0.114612 0)
(1.02118 0.110242 0)
(1.04042 0.101609 0)
(1.05522 0.0890964 0)
(1.06416 0.0740435 0)
(1.06702 0.0582755 0)
(1.06452 0.0433327 0)
(1.05774 0.0304254 0)
(1.04801 0.0208554 0)
(1.03731 0.0158592 0)
(1.02764 0.01568 0)
(1.02063 0.0195203 0)
(1.01657 0.0256324 0)
(1.0146 0.0323131 0)
(1.01983 0.0159447 0)
(1.01953 0.0168172 0)
(1.01926 0.0177795 0)
(1.01902 0.0188339 0)
(1.01882 0.0199825 0)
(1.01866 0.0212302 0)
(1.01856 0.0225867 0)
(1.01851 0.0240664 0)
(1.01854 0.0256863 0)
(1.01867 0.027463 0)
(1.01893 0.0294099 0)
(1.01937 0.031535 0)
(1.02004 0.0338374 0)
(1.02099 0.0363034 0)
(1.0223 0.0389021 0)
(1.02403 0.041583 0)
(1.02624 0.044274 0)
(1.02896 0.0468813 0)
(1.03223 0.0492903 0)
(1.03606 0.0513692 0)
(1.04039 0.0529746 0)
(1.04517 0.0539595 0)
(1.05027 0.0541849 0)
(1.05552 0.053534 0)
(1.06072 0.0519296 0)
(1.0656 0.0493526 0)
(1.06992 0.0458591 0)
(1.07341 0.0415913 0)
(1.07584 0.0367772 0)
(1.07708 0.0317167 0)
(1.07707 0.026753 0)
(1.07588 0.0222349 0)
(1.07367 0.0184783 0)
(1.07069 0.0157346 0)
(1.06723 0.0141737 0)
(1.06363 0.0138799 0)
(1.06019 0.014858 0)
(1.05724 0.0170453 0)
(1.05503 0.0203278 0)
(1.05381 0.0245546 0)
(1.05379 0.0295426 0)
(1.05515 0.0350811 0)
(1.05804 0.0409444 0)
(1.06264 0.0468855 0)
(1.06908 0.0525901 0)
(1.07746 0.0576809 0)
(1.08781 0.0617824 0)
(1.10023 0.0644723 0)
(1.11479 0.0650531 0)
(1.13119 0.0625828 0)
(1.14869 0.0563296 0)
(1.16647 0.0459134 0)
(1.18393 0.0308732 0)
(1.20003 0.0102334 0)
(1.21257 -0.0167442 0)
(1.21857 -0.0492223 0)
(1.21561 -0.0845272 0)
(1.20302 -0.118992 0)
(1.18205 -0.149313 0)
(1.15504 -0.173394 0)
(1.12458 -0.190437 0)
(1.09286 -0.200601 0)
(1.06154 -0.204578 0)
(1.03174 -0.203281 0)
(1.00414 -0.197654 0)
(0.979126 -0.188567 0)
(0.956841 -0.176769 0)
(0.937322 -0.162883 0)
(0.92051 -0.147426 0)
(0.906283 -0.130805 0)
(0.89457 -0.113313 0)
(0.885271 -0.0952125 0)
(0.878233 -0.0767655 0)
(0.873453 -0.0581551 0)
(0.870895 -0.0395158 0)
(0.870346 -0.0209568 0)
(0.871878 -0.00253624 0)
(0.875755 0.0155115 0)
(0.881778 0.0326395 0)
(0.889679 0.0484843 0)
(0.899836 0.0632022 0)
(0.912596 0.0769101 0)
(0.927309 0.089037 0)
(0.942935 0.0985978 0)
(0.95922 0.104856 0)
(0.976574 0.107592 0)
(0.995042 0.106868 0)
(1.01382 0.1027 0)
(1.03139 0.0950576 0)
(1.04589 0.0842742 0)
(1.05572 0.0713495 0)
(1.06027 0.0576939 0)
(1.05975 0.0446137 0)
(1.0548 0.0331742 0)
(1.04662 0.0244507 0)
(1.03715 0.0195326 0)
(1.02828 0.0187693 0)
(1.02145 0.0216663 0)
(1.01702 0.0268975 0)
(1.0146 0.032996 0)
(1.01878 0.0160574 0)
(1.01852 0.0169222 0)
(1.01827 0.0178735 0)
(1.01806 0.0189139 0)
(1.0179 0.0200464 0)
(1.01778 0.0212758 0)
(1.01771 0.0226107 0)
(1.0177 0.0240632 0)
(1.01778 0.0256475 0)
(1.01796 0.0273769 0)
(1.01828 0.0292617 0)
(1.01877 0.0313066 0)
(1.01949 0.0335076 0)
(1.02049 0.0358488 0)
(1.02182 0.0382988 0)
(1.02355 0.0408084 0)
(1.02572 0.0433093 0)
(1.02837 0.0457137 0)
(1.03153 0.0479158 0)
(1.03518 0.0497954 0)
(1.03929 0.0512232 0)
(1.04378 0.0520684 0)
(1.04856 0.0522092 0)
(1.05345 0.0515459 0)
(1.05827 0.0500161 0)
(1.0628 0.04761 0)
(1.06679 0.0443849 0)
(1.07003 0.0404731 0)
(1.07232 0.0360811 0)
(1.07353 0.0314771 0)
(1.07363 0.0269657 0)
(1.07267 0.0228568 0)
(1.0708 0.019432 0)
(1.06823 0.0169182 0)
(1.06524 0.0154708 0)
(1.06212 0.0151699 0)
(1.05915 0.0160238 0)
(1.05663 0.0179786 0)
(1.0548 0.0209314 0)
(1.05389 0.024742 0)
(1.05409 0.0292382 0)
(1.05559 0.0342192 0)
(1.05853 0.0394651 0)
(1.06305 0.0447308 0)
(1.06929 0.0497159 0)
(1.07731 0.0540636 0)
(1.08714 0.0574009 0)
(1.09883 0.059308 0)
(1.11236 0.0591595 0)
(1.12745 0.0561714 0)
(1.14342 0.0496853 0)
(1.15954 0.0393146 0)
(1.17512 0.0246568 0)
(1.18908 0.00501627 0)
(1.19958 -0.0199962 0)
(1.20423 -0.0495614 0)
(1.20108 -0.0814536 0)
(1.18955 -0.112634 0)
(1.17061 -0.140308 0)
(1.14617 -0.162612 0)
(1.11839 -0.178733 0)
(1.08921 -0.188683 0)
(1.06013 -0.192967 0)
(1.03222 -0.192328 0)
(1.00617 -0.187572 0)
(0.982388 -0.179469 0)
(0.961071 -0.168702 0)
(0.942292 -0.155852 0)
(0.926039 -0.141405 0)
(0.912235 -0.125759 0)
(0.900803 -0.109216 0)
(0.891696 -0.0920253 0)
(0.884802 -0.0744477 0)
(0.880036 -0.0566997 0)
(0.877402 -0.0388978 0)
(0.876815 -0.021132 0)
(0.878199 -0.00354525 0)
(0.881725 0.013608 0)
(0.887481 0.0299126 0)
(0.895185 0.0450098 0)
(0.904676 0.0588953 0)
(0.916189 0.07171 0)
(0.929763 0.0831499 0)
(0.944819 0.0923565 0)
(0.960599 0.0984426 0)
(0.976682 0.101014 0)
(0.992927 0.100165 0)
(1.00903 0.0961319 0)
(1.02417 0.0891483 0)
(1.03707 0.0796436 0)
(1.04642 0.0684418 0)
(1.05141 0.0566619 0)
(1.05187 0.0453788 0)
(1.04822 0.0354279 0)
(1.04152 0.0276014 0)
(1.03355 0.0228456 0)
(1.02589 0.0216476 0)
(1.01973 0.0237755 0)
(1.01548 0.0282131 0)
(1.01309 0.0337046 0)
(1.01783 0.0161624 0)
(1.01759 0.0170187 0)
(1.01738 0.0179582 0)
(1.0172 0.0189839 0)
(1.01706 0.0200989 0)
(1.01698 0.0213081 0)
(1.01695 0.022619 0)
(1.01698 0.0240415 0)
(1.01711 0.0255872 0)
(1.01734 0.0272667 0)
(1.01771 0.0290872 0)
(1.01825 0.0310504 0)
(1.01902 0.0331499 0)
(1.02005 0.0353681 0)
(1.0214 0.0376733 0)
(1.02312 0.040018 0)
(1.02526 0.0423376 0)
(1.02783 0.0445502 0)
(1.03086 0.0465587 0)
(1.03435 0.0482538 0)
(1.03824 0.0495194 0)
(1.04247 0.0502395 0)
(1.04693 0.0503083 0)
(1.05149 0.0496411 0)
(1.05596 0.0481881 0)
(1.06016 0.0459471 0)
(1.06386 0.0429755 0)
(1.06687 0.039396 0)
(1.06902 0.0353952 0)
(1.07022 0.0312123 0)
(1.07042 0.0271175 0)
(1.06967 0.0233856 0)
(1.06811 0.020267 0)
(1.06593 0.0179656 0)
(1.06337 0.0166229 0)
(1.06069 0.0163138 0)
(1.05817 0.0170489 0)
(1.05605 0.0187816 0)
(1.05457 0.0214187 0)
(1.05394 0.0248299 0)
(1.05436 0.0288531 0)
(1.05598 0.0332974 0)
(1.05895 0.0379496 0)
(1.06338 0.0425698 0)
(1.06939 0.0468715 0)
(1.07704 0.0505158 0)
(1.08634 0.0531432 0)
(1.0973 0.0543403 0)
(1.10983 0.0535584 0)
(1.12366 0.0501263 0)
(1.13819 0.0434688 0)
(1.15272 0.0332321 0)
(1.16654 0.0190227 0)
(1.1786 0.000425761 0)
(1.18735 -0.0227195 0)
(1.19086 -0.0496423 0)
(1.18756 -0.0784691 0)
(1.17695 -0.106677 0)
(1.1598 -0.131906 0)
(1.13765 -0.152507 0)
(1.11233 -0.167683 0)
(1.08551 -0.177335 0)
(1.05855 -0.181818 0)
(1.03247 -0.181726 0)
(1.00794 -0.177742 0)
(0.985387 -0.170541 0)
(0.965051 -0.160739 0)
(0.947036 -0.148873 0)
(0.931365 -0.135403 0)
(0.918003 -0.120709 0)
(0.906889 -0.105094 0)
(0.897984 -0.0888083 0)
(0.891228 -0.0720982 0)
(0.886522 -0.055192 0)
(0.883824 -0.0382274 0)
(0.883137 -0.0212803 0)
(0.884423 -0.00450733 0)
(0.8877 0.0117897 0)
(0.893046 0.0272427 0)
(0.900347 0.0415847 0)
(0.909337 0.0547717 0)
(0.919956 0.0668427 0)
(0.932315 0.0775545 0)
(0.946263 0.0862379 0)
(0.961222 0.0921029 0)
(0.976495 0.0946857 0)
(0.991558 0.0939935 0)
(1.006 0.0902985 0)
(1.01926 0.0839612 0)
(1.03055 0.0755057 0)
(1.0389 0.0657305 0)
(1.04352 0.0555926 0)
(1.0442 0.0459209 0)
(1.04141 0.0372878 0)
(1.03612 0.0302525 0)
(1.02967 0.0256728 0)
(1.0233 0.0241696 0)
(1.01794 0.0257061 0)
(1.01404 0.0294612 0)
(1.01182 0.0343514 0)
(1.01696 0.0162591 0)
(1.01675 0.0171061 0)
(1.01657 0.018033 0)
(1.01642 0.0190429 0)
(1.01632 0.0201391 0)
(1.01626 0.0213262 0)
(1.01627 0.0226106 0)
(1.01635 0.0240006 0)
(1.01652 0.0255051 0)
(1.01679 0.0271322 0)
(1.01721 0.0288865 0)
(1.0178 0.0307672 0)
(1.01861 0.0327655 0)
(1.01967 0.0348627 0)
(1.02103 0.0370274 0)
(1.02274 0.0392137 0)
(1.02483 0.0413607 0)
(1.02733 0.0433926 0)
(1.03024 0.0452204 0)
(1.03356 0.0467452 0)
(1.03724 0.0478632 0)
(1.04122 0.0484722 0)
(1.04539 0.0484803 0)
(1.04964 0.0478164 0)
(1.05379 0.0464414 0)
(1.05767 0.0443593 0)
(1.0611 0.0416266 0)
(1.06391 0.0383564 0)
(1.06595 0.0347172 0)
(1.06712 0.0309219 0)
(1.06742 0.0272099 0)
(1.06687 0.023824 0)
(1.06559 0.0209869 0)
(1.06377 0.0188806 0)
(1.06161 0.0176334 0)
(1.05934 0.0173146 0)
(1.05722 0.0179358 0)
(1.05548 0.0194565 0)
(1.05433 0.0217917 0)
(1.05397 0.0248205 0)
(1.05458 0.0283902 0)
(1.0563 0.0323199 0)
(1.05928 0.036404 0)
(1.06361 0.0404103 0)
(1.06938 0.0440653 0)
(1.07666 0.0470505 0)
(1.08542 0.0490206 0)
(1.09565 0.0495815 0)
(1.10722 0.0482503 0)
(1.11986 0.0444472 0)
(1.13302 0.03769 0)
(1.14605 0.0276225 0)
(1.15824 0.0139724 0)
(1.16863 -0.00357285 0)
(1.17587 -0.0249639 0)
(1.1784 -0.0494887 0)
(1.17497 -0.0755589 0)
(1.16518 -0.101078 0)
(1.1496 -0.124051 0)
(1.12951 -0.143032 0)
(1.10641 -0.157254 0)
(1.08178 -0.166543 0)
(1.05683 -0.171131 0)
(1.03251 -0.171487 0)
(1.00946 -0.168181 0)
(0.988135 -0.161801 0)
(0.968785 -0.152899 0)
(0.951551 -0.141967 0)
(0.936485 -0.129436 0)
(0.923582 -0.115667 0)
(0.912809 -0.10096 0)
(0.90413 -0.0855653 0)
(0.897509 -0.0697195 0)
(0.892873 -0.0536454 0)
(0.890153 -0.0375028 0)
(0.889353 -0.0213837 0)
(0.890499 -0.00543421 0)
(0.893574 0.0100433 0)
(0.898537 0.0246864 0)
(0.905303 0.0382744 0)
(0.913709 0.0507843 0)
(0.923629 0.0622049 0)
(0.935044 0.0722727 0)
(0.947867 0.0804126 0)
(0.961724 0.0859672 0)
(0.976011 0.0885237 0)
(0.990101 0.0880599 0)
(1.00346 0.0848183 0)
(1.01553 0.079179 0)
(1.02568 0.0717237 0)
(1.0331 0.0632657 0)
(1.03717 0.0546142 0)
(1.03788 0.0463284 0)
(1.03586 0.0387708 0)
(1.03186 0.0323985 0)
(1.02676 0.028034 0)
(1.02146 0.0263647 0)
(1.0168 0.0274677 0)
(1.01325 0.0306444 0)
(1.01119 0.0349549 0)
(1.01617 0.0163468 0)
(1.01598 0.0171836 0)
(1.01583 0.018097 0)
(1.01572 0.01909 0)
(1.01565 0.020166 0)
(1.01563 0.0213292 0)
(1.01567 0.022585 0)
(1.01579 0.0239399 0)
(1.016 0.0254009 0)
(1.01632 0.0269735 0)
(1.01678 0.0286601 0)
(1.01742 0.0304575 0)
(1.01826 0.0323555 0)
(1.01934 0.0343343 0)
(1.02071 0.0363629 0)
(1.02241 0.0383974 0)
(1.02445 0.0403807 0)
(1.02687 0.0422427 0)
(1.02966 0.0439024 0)
(1.03282 0.0452705 0)
(1.03629 0.0462547 0)
(1.04003 0.0467651 0)
(1.04393 0.0467229 0)
(1.04788 0.0460684 0)
(1.05174 0.0447719 0)
(1.05534 0.0428419 0)
(1.05852 0.0403334 0)
(1.06114 0.0373506 0)
(1.06307 0.0340449 0)
(1.06424 0.0306055 0)
(1.06462 0.0272441 0)
(1.06425 0.0241751 0)
(1.06324 0.0215954 0)
(1.06174 0.0196674 0)
(1.05994 0.0185064 0)
(1.05806 0.018176 0)
(1.05632 0.0186878 0)
(1.05492 0.020006 0)
(1.05408 0.0220531 0)
(1.05396 0.0247167 0)
(1.05474 0.0278533 0)
(1.05655 0.0312914 0)
(1.05952 0.0348347 0)
(1.06373 0.0382598 0)
(1.06926 0.0413068 0)
(1.07615 0.0436779 0)
(1.08438 0.0450438 0)
(1.09389 0.0450422 0)
(1.10454 0.0432328 0)
(1.11604 0.0391377 0)
(1.12791 0.0323259 0)
(1.13954 0.0224994 0)
(1.15024 0.00945168 0)
(1.15913 -0.00703973 0)
(1.16506 -0.0267921 0)
(1.16677 -0.0491303 0)
(1.16325 -0.0727141 0)
(1.15417 -0.0957968 0)
(1.13999 -0.116695 0)
(1.12173 -0.134141 0)
(1.10067 -0.147415 0)
(1.07807 -0.156291 0)
(1.05501 -0.160905 0)
(1.03236 -0.161619 0)
(1.01076 -0.158905 0)
(0.990642 -0.153269 0)
(0.97228 -0.145201 0)
(0.955838 -0.135152 0)
(0.941394 -0.123519 0)
(0.928968 -0.110647 0)
(0.91855 -0.0968256 0)
(0.910118 -0.0823045 0)
(0.903644 -0.0673129 0)
(0.899079 -0.0520655 0)
(0.896358 -0.0367329 0)
(0.895466 -0.0214324 0)
(0.896442 -0.00630922 0)
(0.899286 0.00836372 0)
(0.903902 0.0222456 0)
(0.91015 0.0351195 0)
(0.91792 0.0469599 0)
(0.927149 0.0577472 0)
(0.937783 0.0672257 0)
(0.949669 0.0748758 0)
(0.96246 0.0801292 0)
(0.975642 0.0826332 0)
(0.988662 0.0823676 0)
(1.00101 0.0795649 0)
(1.01213 0.0746289 0)
(1.02134 0.0681789 0)
(1.02796 0.0609873 0)
(1.03166 0.0536713 0)
(1.03261 0.0465442 0)
(1.03141 0.0398572 0)
(1.02857 0.0340782 0)
(1.02459 0.0300041 0)
(1.02013 0.028298 0)
(1.01604 0.0290848 0)
(1.01284 0.0317633 0)
(1.01096 0.0355239 0)
(1.01545 0.016425 0)
(1.01529 0.0172505 0)
(1.01517 0.0181494 0)
(1.01509 0.0191244 0)
(1.01505 0.0201788 0)
(1.01507 0.0213164 0)
(1.01515 0.0225414 0)
(1.0153 0.0238591 0)
(1.01555 0.0252744 0)
(1.01592 0.0267908 0)
(1.01642 0.0284084 0)
(1.01709 0.0301224 0)
(1.01796 0.0319212 0)
(1.01906 0.0337844 0)
(1.02043 0.0356816 0)
(1.0221 0.037571 0)
(1.0241 0.0393994 0)
(1.02644 0.0411022 0)
(1.02911 0.0426058 0)
(1.03211 0.0438303 0)
(1.03539 0.0446935 0)
(1.0389 0.0451172 0)
(1.04255 0.0450337 0)
(1.04623 0.0443938 0)
(1.0498 0.0431753 0)
(1.05315 0.0413904 0)
(1.05611 0.0390918 0)
(1.05856 0.0363751 0)
(1.06039 0.0333761 0)
(1.06155 0.0302627 0)
(1.062 0.0272215 0)
(1.0618 0.0244415 0)
(1.06103 0.0220964 0)
(1.05983 0.0203303 0)
(1.05837 0.0192463 0)
(1.05685 0.0189019 0)
(1.05545 0.0193084 0)
(1.05437 0.0204335 0)
(1.0538 0.0222064 0)
(1.05391 0.0245222 0)
(1.05484 0.0272466 0)
(1.05672 0.0302176 0)
(1.05966 0.0332483 0)
(1.06374 0.0361259 0)
(1.06902 0.038605 0)
(1.07552 0.0404069 0)
(1.08322 0.0412254 0)
(1.09202 0.0407229 0)
(1.10178 0.0385132 0)
(1.11222 0.0341884 0)
(1.12288 0.0273775 0)
(1.13321 0.0178397 0)
(1.14255 0.00539345 0)
(1.15009 -0.0100391 0)
(1.1549 -0.0282403 0)
(1.15591 -0.0485841 0)
(1.15233 -0.0699243 0)
(1.14389 -0.090801 0)
(1.13094 -0.109792 0)
(1.11433 -0.125793 0)
(1.09512 -0.138135 0)
(1.07438 -0.146562 0)
(1.0531 -0.151136 0)
(1.03206 -0.152128 0)
(1.01186 -0.149925 0)
(0.992922 -0.144959 0)
(0.975542 -0.137663 0)
(0.959898 -0.128444 0)
(0.946087 -0.117669 0)
(0.934154 -0.105661 0)
(0.924107 -0.0927024 0)
(0.915936 -0.0790351 0)
(0.909625 -0.0648831 0)
(0.905135 -0.050454 0)
(0.902418 -0.0359229 0)
(0.901451 -0.0214262 0)
(0.902256 -0.00711619 0)
(0.904839 0.00676513 0)
(0.909104 0.0199146 0)
(0.914884 0.0321164 0)
(0.922058 0.0433156 0)
(0.930598 0.0534788 0)
(0.940472 0.0623838 0)
(0.951511 0.0695832 0)
(0.963349 0.0745805 0)
(0.975494 0.0770532 0)
(0.987454 0.0769747 0)
(0.998763 0.0745918 0)
(1.00886 0.0703559 0)
(1.01712 0.0648889 0)
(1.02306 0.058849 0)
(1.0266 0.0526622 0)
(1.02798 0.0464842 0)
(1.02759 0.0405404 0)
(1.0257 0.035347 0)
(1.02262 0.0316511 0)
(1.01887 0.0300143 0)
(1.01531 0.0305615 0)
(1.0125 0.0327971 0)
(1.01086 0.0360446 0)
(1.0148 0.0164928 0)
(1.01467 0.0173062 0)
(1.01458 0.0181894 0)
(1.01453 0.0191453 0)
(1.01452 0.0201768 0)
(1.01457 0.021287 0)
(1.01469 0.0224794 0)
(1.01488 0.0237579 0)
(1.01517 0.0251256 0)
(1.01557 0.0265843 0)
(1.01611 0.0281322 0)
(1.01681 0.0297629 0)
(1.0177 0.0314639 0)
(1.01882 0.0332145 0)
(1.02019 0.0349852 0)
(1.02183 0.0367364 0)
(1.02378 0.0384185 0)
(1.02603 0.0399726 0)
(1.02859 0.0413318 0)
(1.03144 0.0424248 0)
(1.03454 0.0431792 0)
(1.03783 0.0435269 0)
(1.04124 0.0434103 0)
(1.04466 0.0427891 0)
(1.04798 0.0416474 0)
(1.05109 0.0400002 0)
(1.05384 0.0378975 0)
(1.05614 0.0354266 0)
(1.05789 0.0327089 0)
(1.05904 0.0298932 0)
(1.05957 0.0271436 0)
(1.05952 0.0246262 0)
(1.05897 0.0224939 0)
(1.05804 0.0208739 0)
(1.05689 0.0198578 0)
(1.05568 0.0194971 0)
(1.0546 0.0198021 0)
(1.05382 0.0207434 0)
(1.0535 0.0222556 0)
(1.05381 0.0242416 0)
(1.05487 0.0265752 0)
(1.0568 0.0291042 0)
(1.0597 0.0316519 0)
(1.06364 0.0340166 0)
(1.06866 0.0359682 0)
(1.07477 0.0372477 0)
(1.08194 0.0375719 0)
(1.09006 0.0366314 0)
(1.09897 0.0340888 0)
(1.1084 0.029593 0)
(1.11793 0.0228409 0)
(1.12705 0.0136161 0)
(1.13515 0.0017947 0)
(1.14152 -0.0126006 0)
(1.14535 -0.0293505 0)
(1.14577 -0.0478736 0)
(1.14215 -0.0671854 0)
(1.13428 -0.0860627 0)
(1.12244 -0.103304 0)
(1.1073 -0.117948 0)
(1.08977 -0.129383 0)
(1.07076 -0.137337 0)
(1.05114 -0.141816 0)
(1.03162 -0.143016 0)
(1.01276 -0.141251 0)
(0.994987 -0.136886 0)
(0.978579 -0.130301 0)
(0.963733 -0.12186 0)
(0.950565 -0.1119 0)
(0.939137 -0.100724 0)
(0.929472 -0.0886007 0)
(0.921575 -0.0757658 0)
(0.915438 -0.0624363 0)
(0.911034 -0.0488133 0)
(0.908326 -0.0350733 0)
(0.90729 -0.0213655 0)
(0.907931 -0.00784771 0)
(0.910246 0.00526156 0)
(0.914151 0.0176978 0)
(0.919487 0.029254 0)
(0.926121 0.0398441 0)
(0.934012 0.0494106 0)
(0.943133 0.0577627 0)
(0.953332 0.0645323 0)
(0.964267 0.069297 0)
(0.975468 0.0717614 0)
(0.986446 0.0718931 0)
(0.996725 0.0699529 0)
(1.00579 0.0664188 0)
(1.01315 0.0618611 0)
(1.01855 0.0567947 0)
(1.02209 0.0515164 0)
(1.0239 0.0461327 0)
(1.02416 0.040879 0)
(1.02299 0.036285 0)
(1.02062 0.0330198 0)
(1.01753 0.0315165 0)
(1.0145 0.0318746 0)
(1.01212 0.033711 0)
(1.01076 0.0364888 0)
(1.01421 0.0165498 0)
(1.01411 0.0173499 0)
(1.01405 0.0182165 0)
(1.01403 0.0191521 0)
(1.01405 0.0201592 0)
(1.01414 0.0212404 0)
(1.01429 0.0223985 0)
(1.01452 0.023636 0)
(1.01484 0.0249547 0)
(1.01528 0.0263544 0)
(1.01585 0.0278321 0)
(1.01658 0.0293801 0)
(1.01749 0.0309851 0)
(1.01861 0.0326264 0)
(1.01997 0.0342756 0)
(1.02159 0.0358954 0)
(1.02348 0.0374399 0)
(1.02565 0.0388552 0)
(1.02809 0.0400813 0)
(1.0308 0.0410544 0)
(1.03372 0.0417112 0)
(1.03681 0.0419926 0)
(1.03999 0.04185 0)
(1.04318 0.0412508 0)
(1.04627 0.0401842 0)
(1.04915 0.038667 0)
(1.05172 0.0367464 0)
(1.05388 0.0345018 0)
(1.05556 0.0320414 0)
(1.0567 0.0294967 0)
(1.05729 0.0270118 0)
(1.05738 0.0247321 0)
(1.05703 0.022792 0)
(1.05635 0.0213029 0)
(1.05548 0.0203459 0)
(1.05457 0.0199666 0)
(1.05377 0.0201737 0)
(1.05326 0.0209402 0)
(1.05317 0.0222056 0)
(1.05365 0.0238796 0)
(1.05482 0.0258445 0)
(1.05678 0.0279576 0)
(1.05963 0.0300526 0)
(1.06342 0.0319397 0)
(1.06817 0.0334049 0)
(1.0739 0.0342084 0)
(1.08054 0.0340902 0)
(1.088 0.0327722 0)
(1.0961 0.0299567 0)
(1.10458 0.0253486 0)
(1.11306 0.0186935 0)
(1.12107 0.00982065 0)
(1.12806 -0.0013503 0)
(1.13338 -0.0147554 0)
(1.13636 -0.0301553 0)
(1.13629 -0.0470152 0)
(1.13266 -0.0644916 0)
(1.12531 -0.0815567 0)
(1.11445 -0.0971939 0)
(1.10064 -0.110571 0)
(1.08463 -0.12113 0)
(1.06722 -0.128598 0)
(1.04915 -0.132937 0)
(1.03107 -0.134286 0)
(1.0135 -0.132892 0)
(0.99685 -0.129063 0)
(0.981399 -0.123129 0)
(0.967348 -0.115414 0)
(0.954827 -0.106226 0)
(0.943911 -0.0958476 0)
(0.934639 -0.0845312 0)
(0.927027 -0.072505 0)
(0.921075 -0.0599787 0)
(0.916767 -0.0471467 0)
(0.914073 -0.0341846 0)
(0.912971 -0.021249 0)
(0.913455 -0.00850044 0)
(0.915508 0.00386015 0)
(0.919057 0.0156019 0)
(0.92396 0.0265304 0)
(0.930087 0.0365374 0)
(0.937372 0.0455425 0)
(0.945769 0.0533764 0)
(0.955141 0.0597381 0)
(0.965193 0.0642792 0)
(0.97549 0.0667474 0)
(0.985537 0.0671181 0)
(0.994849 0.065647 0)
(1.00299 0.0627896 0)
(1.00962 0.0590325 0)
(1.01466 0.0547669 0)
(1.01822 0.0502299 0)
(1.02034 0.0455476 0)
(1.02105 0.0409617 0)
(1.02038 0.0369614 0)
(1.01862 0.03413 0)
(1.01615 0.0327907 0)
(1.01367 0.0330042 0)
(1.01171 0.034486 0)
(1.01064 0.0368389 0)
(1.01368 0.0165952 0)
(1.01361 0.017381 0)
(1.01358 0.0182299 0)
(1.01359 0.0191439 0)
(1.01364 0.0201254 0)
(1.01376 0.0211762 0)
(1.01394 0.0222985 0)
(1.01421 0.0234934 0)
(1.01456 0.0247617 0)
(1.01503 0.0261016 0)
(1.01563 0.027509 0)
(1.01638 0.0289751 0)
(1.01731 0.0304862 0)
(1.01844 0.0320218 0)
(1.01978 0.0335547 0)
(1.02137 0.03505 0)
(1.0232 0.0364652 0)
(1.02529 0.0377515 0)
(1.02762 0.0388549 0)
(1.03018 0.0397192 0)
(1.03294 0.0402886 0)
(1.03583 0.0405126 0)
(1.03881 0.0403502 0)
(1.04178 0.0397753 0)
(1.04465 0.0387815 0)
(1.04734 0.0373865 0)
(1.04974 0.0356347 0)
(1.05177 0.0335977 0)
(1.05338 0.031372 0)
(1.05451 0.0290732 0)
(1.05517 0.0268277 0)
(1.05538 0.0247625 0)
(1.05521 0.0229948 0)
(1.05476 0.0216224 0)
(1.05414 0.0207161 0)
(1.05349 0.0203158 0)
(1.05296 0.0204286 0)
(1.05268 0.0210293 0)
(1.05279 0.0220618 0)
(1.05343 0.0234421 0)
(1.05469 0.0250607 0)
(1.05667 0.0267845 0)
(1.05945 0.0284575 0)
(1.06307 0.0299032 0)
(1.06756 0.0309227 0)
(1.0729 0.0312961 0)
(1.07904 0.030787 0)
(1.08586 0.0291464 0)
(1.09319 0.0261155 0)
(1.10079 0.0214453 0)
(1.10829 0.0149269 0)
(1.11529 0.00642948 0)
(1.12126 -0.00409512 0)
(1.12567 -0.0165511 0)
(1.12791 -0.0306903 0)
(1.12744 -0.0460283 0)
(1.12382 -0.0618413 0)
(1.11693 -0.077263 0)
(1.10695 -0.0914318 0)
(1.09434 -0.103628 0)
(1.07972 -0.113348 0)
(1.06377 -0.120324 0)
(1.04714 -0.12449 0)
(1.03042 -0.125934 0)
(1.01409 -0.124852 0)
(0.998527 -0.121499 0)
(0.984012 -0.116159 0)
(0.970747 -0.109121 0)
(0.958873 -0.100662 0)
(0.948475 -0.0910438 0)
(0.939604 -0.0805042 0)
(0.932286 -0.0692613 0)
(0.926528 -0.0575164 0)
(0.922323 -0.0454576 0)
(0.91965 -0.0332576 0)
(0.918487 -0.0210761 0)
(0.918819 -0.00907291 0)
(0.920621 0.00256471 0)
(0.923825 0.0136322 0)
(0.928308 0.0239494 0)
(0.933945 0.0333951 0)
(0.940654 0.0418723 0)
(0.948367 0.0492262 0)
(0.95695 0.0552087 0)
(0.966143 0.0595398 0)
(0.975553 0.0620208 0)
(0.984707 0.0626434 0)
(0.993145 0.0616365 0)
(1.00052 0.0593977 0)
(1.00662 0.056331 0)
(1.01139 0.0527414 0)
(1.01492 0.0488426 0)
(1.01721 0.0448016 0)
(1.0182 0.0408578 0)
(1.01792 0.0374238 0)
(1.01666 0.0349947 0)
(1.0148 0.033824 0)
(1.01286 0.0339366 0)
(1.0113 0.0351162 0)
(1.0105 0.0370901 0)
(1.01321 0.0166286 0)
(1.01317 0.017399 0)
(1.01316 0.018229 0)
(1.0132 0.0191203 0)
(1.01329 0.0200749 0)
(1.01343 0.021094 0)
(1.01365 0.022179 0)
(1.01394 0.0233302 0)
(1.01433 0.0245469 0)
(1.01483 0.0258266 0)
(1.01545 0.0271638 0)
(1.01622 0.0285492 0)
(1.01716 0.0299687 0)
(1.01828 0.0314024 0)
(1.01961 0.0328242 0)
(1.02116 0.0342017 0)
(1.02294 0.0354959 0)
(1.02494 0.0366625 0)
(1.02717 0.0376534 0)
(1.02959 0.0384189 0)
(1.03219 0.0389105 0)
(1.03491 0.039085 0)
(1.03768 0.0389081 0)
(1.04045 0.0383592 0)
(1.04313 0.0374354 0)
(1.04563 0.0361548 0)
(1.04788 0.0345587 0)
(1.0498 0.0327117 0)
(1.05134 0.0306992 0)
(1.05247 0.0286229 0)
(1.05318 0.0265931 0)
(1.05351 0.0247204 0)
(1.0535 0.0231068 0)
(1.05325 0.0218375 0)
(1.05286 0.0209739 0)
(1.05245 0.0205506 0)
(1.05215 0.0205728 0)
(1.05208 0.0210167 0)
(1.05238 0.0218301 0)
(1.05314 0.0229352 0)
(1.05447 0.0242304 0)
(1.05646 0.0255916 0)
(1.05916 0.0268742 0)
(1.06261 0.0279143 0)
(1.06683 0.0285286 0)
(1.07179 0.0285171 0)
(1.07743 0.0276665 0)
(1.08364 0.0257551 0)
(1.09025 0.0225606 0)
(1.09702 0.0178731 0)
(1.10362 0.0115262 0)
(1.10969 0.00341864 0)
(1.11476 -0.00646695 0)
(1.11835 -0.0180155 0)
(1.11997 -0.0309811 0)
(1.11916 -0.0449275 0)
(1.11557 -0.0592324 0)
(1.10911 -0.0731631 0)
(1.09992 -0.085989 0)
(1.08839 -0.0970877 0)
(1.07503 -0.10601 0)
(1.06042 -0.112497 0)
(1.04514 -0.116463 0)
(1.0297 -0.117959 0)
(1.01455 -0.117135 0)
(1.00003 -0.114202 0)
(0.986427 -0.109403 0)
(0.973937 -0.102992 0)
(0.962705 -0.0952195 0)
(0.952827 -0.0863244 0)
(0.944362 -0.07653 0)
(0.937345 -0.0660428 0)
(0.93179 -0.0550557 0)
(0.927696 -0.0437496 0)
(0.925049 -0.0322933 0)
(0.923831 -0.0208451 0)
(0.924018 -0.00956618 0)
(0.925579 0.00137437 0)
(0.928452 0.0117903 0)
(0.93253 0.0215142 0)
(0.937694 0.0304196 0)
(0.94385 0.038399 0)
(0.950916 0.0453094 0)
(0.958754 0.0509458 0)
(0.967125 0.0550877 0)
(0.975679 0.057588 0)
(0.983993 0.058454 0)
(0.991662 0.0578777 0)
(0.998401 0.0561868 0)
(1.00407 0.0537171 0)
(1.00862 0.0507217 0)
(1.01206 0.0474002 0)
(1.0144 0.0439502 0)
(1.01559 0.0406067 0)
(1.01563 0.0376968 0)
(1.01482 0.0356266 0)
(1.01349 0.0346143 0)
(1.01207 0.0346679 0)
(1.0109 0.0356062 0)
(1.01034 0.0372495 0)
(1.01279 0.0166493 0)
(1.01277 0.0174032 0)
(1.01279 0.0182132 0)
(1.01286 0.0190808 0)
(1.01298 0.0200073 0)
(1.01315 0.0209935 0)
(1.0134 0.02204 0)
(1.01372 0.0231464 0)
(1.01414 0.0243109 0)
(1.01466 0.0255301 0)
(1.0153 0.0267977 0)
(1.01609 0.0281038 0)
(1.01703 0.0294342 0)
(1.01815 0.0307699 0)
(1.01946 0.032086 0)
(1.02097 0.0333523 0)
(1.02268 0.0345334 0)
(1.02461 0.0355894 0)
(1.02673 0.0364773 0)
(1.02903 0.0371534 0)
(1.03147 0.0375758 0)
(1.03402 0.0377077 0)
(1.03661 0.0375208 0)
(1.03919 0.0369989 0)
(1.04169 0.0361419 0)
(1.04403 0.0349679 0)
(1.04614 0.033515 0)
(1.04796 0.031841 0)
(1.04944 0.0300217 0)
(1.05056 0.0281459 0)
(1.05132 0.0263097 0)
(1.05175 0.0246092 0)
(1.05189 0.0231327 0)
(1.05182 0.0219537 0)
(1.05163 0.0211255 0)
(1.05143 0.0206773 0)
(1.05134 0.0206127 0)
(1.05146 0.0209087 0)
(1.05191 0.021517 0)
(1.05278 0.0223656 0)
(1.05417 0.0233602 0)
(1.05614 0.0243861 0)
(1.05875 0.0253098 0)
(1.06203 0.02598 0)
(1.06598 0.0262293 0)
(1.07056 0.025877 0)
(1.07573 0.0247316 0)
(1.08135 0.0225981 0)
(1.08728 0.0192859 0)
(1.09328 0.0146222 0)
(1.09906 0.00847103 0)
(1.10428 0.000763131 0)
(1.10854 -0.00849372 0)
(1.11143 -0.0191794 0)
(1.11251 -0.0310549 0)
(1.11142 -0.0437285 0)
(1.10788 -0.0566645 0)
(1.10181 -0.0692422 0)
(1.09334 -0.0808409 0)
(1.08279 -0.0909233 0)
(1.07057 -0.0990896 0)
(1.0572 -0.105096 0)
(1.04316 -0.108843 0)
(1.02893 -0.110354 0)
(1.01489 -0.109742 0)
(1.00138 -0.107179 0)
(0.988655 -0.10287 0)
(0.976923 -0.097039 0)
(0.966327 -0.0899096 0)
(0.956967 -0.0817002 0)
(0.948911 -0.072618 0)
(0.942199 -0.0628576 0)
(0.936854 -0.0526028 0)
(0.932879 -0.0420268 0)
(0.930265 -0.0312931 0)
(0.928995 -0.0205568 0)
(0.929045 -0.00997532 0)
(0.930381 0.000293698 0)
(0.932938 0.0100795 0)
(0.936625 0.0192287 0)
(0.941332 0.0276141 0)
(0.94696 0.0351233 0)
(0.953411 0.041624 0)
(0.960546 0.0469476 0)
(0.968143 0.0509227 0)
(0.975892 0.0534437 0)
(0.983433 0.0545295 0)
(0.990423 0.0543365 0)
(0.996619 0.0531259 0)
(1.00191 0.0511792 0)
(1.00622 0.0487203 0)
(1.00955 0.0459343 0)
(1.01189 0.043026 0)
(1.01321 0.040226 0)
(1.01355 0.0377932 0)
(1.01313 0.0360447 0)
(1.01226 0.0351753 0)
(1.0113 0.0351997 0)
(1.0105 0.0359566 0)
(1.01016 0.037322 0)
(1.01241 0.0166568 0)
(1.01242 0.0173932 0)
(1.01247 0.0181823 0)
(1.01256 0.019025 0)
(1.01271 0.0199223 0)
(1.01291 0.0208745 0)
(1.01318 0.0218816 0)
(1.01353 0.0229423 0)
(1.01398 0.0240541 0)
(1.01452 0.0252129 0)
(1.01518 0.0264116 0)
(1.01598 0.0276401 0)
(1.01693 0.0288844 0)
(1.01803 0.0301259 0)
(1.01932 0.0313416 0)
(1.02079 0.0325035 0)
(1.02244 0.0335792 0)
(1.02428 0.0345329 0)
(1.0263 0.0353267 0)
(1.02848 0.0359222 0)
(1.03078 0.0362833 0)
(1.03317 0.0363788 0)
(1.0356 0.0361855 0)
(1.038 0.0356911 0)
(1.04033 0.0348974 0)
(1.04252 0.0338222 0)
(1.0445 0.0325003 0)
(1.04623 0.0309835 0)
(1.04766 0.0293385 0)
(1.04878 0.0276428 0)
(1.04958 0.0259797 0)
(1.0501 0.0244324 0)
(1.05036 0.0230769 0)
(1.05045 0.0219766 0)
(1.05045 0.021177 0)
(1.05044 0.0207026 0)
(1.05053 0.020555 0)
(1.05081 0.0207122 0)
(1.05139 0.0211295 0)
(1.05236 0.0217401 0)
(1.05378 0.0224572 0)
(1.05572 0.0231752 0)
(1.05823 0.0237711 0)
(1.06133 0.0241069 0)
(1.065 0.0240306 0)
(1.06923 0.0233793 0)
(1.07394 0.0219835 0)
(1.07901 0.0196738 0)
(1.0843 0.0162865 0)
(1.08959 0.0116787 0)
(1.09462 0.00575218 0)
(1.09907 -0.00155497 0)
(1.10261 -0.0102027 0)
(1.10488 -0.0200712 0)
(1.1055 -0.0309351 0)
(1.10418 -0.0424444 0)
(1.1007 -0.0541376 0)
(1.095 -0.0654872 0)
(1.08719 -0.0759654 0)
(1.07751 -0.0851088 0)
(1.06634 -0.092563 0)
(1.0541 -0.0981008 0)
(1.04122 -0.101618 0)
(1.02811 -0.103115 0)
(1.01512 -0.102674 0)
(1.00257 -0.100433 0)
(0.990706 -0.0965678 0)
(0.979713 -0.091271 0)
(0.969742 -0.0847428 0)
(0.960896 -0.077181 0)
(0.953249 -0.0687772 0)
(0.946847 -0.0597136 0)
(0.941716 -0.0501638 0)
(0.937866 -0.0402933 0)
(0.935291 -0.0302589 0)
(0.933976 -0.020212 0)
(0.933899 -0.0103003 0)
(0.93502 -0.000679662 0)
(0.937279 0.00850047 0)
(0.940593 0.0170953 0)
(0.944861 0.0249812 0)
(0.949982 0.0320458 0)
(0.95585 0.0381679 0)
(0.962325 0.0432088 0)
(0.969202 0.0470364 0)
(0.976209 0.0495754 0)
(0.983045 0.0508507 0)
(0.989424 0.0509908 0)
(0.995131 0.0502021 0)
(1.00006 0.0487195 0)
(1.00414 0.046748 0)
(1.00735 0.0444595 0)
(1.00965 0.0420456 0)
(1.01108 0.039728 0)
(1.01168 0.0377224 0)
(1.0116 0.036268 0)
(1.01112 0.0355295 0)
(1.01056 0.0355419 0)
(1.01009 0.0361675 0)
(1.00996 0.0373103 0)
(1.01207 0.0166507 0)
(1.01211 0.0173686 0)
(1.01219 0.0181356 0)
(1.01231 0.0189525 0)
(1.01248 0.0198196 0)
(1.01271 0.020737 0)
(1.013 0.0217038 0)
(1.01338 0.0227182 0)
(1.01384 0.0237772 0)
(1.01441 0.0248758 0)
(1.01508 0.0260067 0)
(1.01589 0.0271595 0)
(1.01683 0.0283206 0)
(1.01793 0.0294723 0)
(1.01919 0.0305929 0)
(1.02061 0.0316566 0)
(1.02221 0.0326343 0)
(1.02397 0.0334939 0)
(1.02589 0.0342018 0)
(1.02795 0.0347248 0)
(1.03011 0.0350316 0)
(1.03235 0.0350962 0)
(1.03463 0.0348995 0)
(1.03688 0.0344324 0)
(1.03905 0.0336982 0)
(1.0411 0.032714 0)
(1.04297 0.0315117 0)
(1.04461 0.0301371 0)
(1.046 0.0286487 0)
(1.04711 0.0271141 0)
(1.04795 0.0256052 0)
(1.04854 0.0241936 0)
(1.04892 0.0229446 0)
(1.04915 0.0219122 0)
(1.0493 0.0211351 0)
(1.04946 0.0206334 0)
(1.0497 0.0204069 0)
(1.05013 0.0204346 0)
(1.05082 0.0206748 0)
(1.05186 0.021066 0)
(1.0533 0.0215286 0)
(1.0552 0.0219656 0)
(1.0576 0.0222651 0)
(1.06051 0.0223011 0)
(1.06392 0.0219372 0)
(1.0678 0.0210274 0)
(1.07206 0.0194232 0)
(1.07662 0.016977 0)
(1.08131 0.0135531 0)
(1.08595 0.00903337 0)
(1.09029 0.00334216 0)
(1.09406 -0.00355789 0)
(1.09696 -0.0116174 0)
(1.09868 -0.0207161 0)
(1.09892 -0.0306433 0)
(1.09743 -0.0410879 0)
(1.09402 -0.0516522 0)
(1.08866 -0.0618871 0)
(1.08144 -0.071343 0)
(1.07256 -0.0796206 0)
(1.06234 -0.0864072 0)
(1.05114 -0.0914937 0)
(1.03933 -0.0947738 0)
(1.02726 -0.0962323 0)
(1.01527 -0.0959266 0)
(1.00364 -0.0939676 0)
(0.992591 -0.0905016 0)
(0.982315 -0.085696 0)
(0.972955 -0.0797278 0)
(0.964617 -0.072776 0)
(0.957377 -0.065016 0)
(0.951285 -0.0566179 0)
(0.946372 -0.0477447 0)
(0.942652 -0.0385531 0)
(0.940123 -0.0291936 0)
(0.938772 -0.0198105 0)
(0.938574 -0.0105462 0)
(0.939494 -0.00154598 0)
(0.941473 0.0070528 0)
(0.944432 0.0151149 0)
(0.948281 0.0225225 0)
(0.952919 0.029167 0)
(0.958235 0.0349382 0)
(0.964093 0.0397217 0)
(0.970305 0.043416 0)
(0.976635 0.0459676 0)
(0.982828 0.0474025 0)
(0.988647 0.0478283 0)
(0.993903 0.0474106 0)
(0.998484 0.0463431 0)
(1.00233 0.0448117 0)
(1.00541 0.042979 0)
(1.00769 0.0410166 0)
(1.0092 0.0391261 0)
(1.01 0.0374973 0)
(1.01022 0.0363135 0)
(1.01008 0.0357021 0)
(1.00984 0.0357129 0)
(1.00966 0.0362417 0)
(1.00974 0.0372104 0)
(1.01178 0.0166304 0)
(1.01184 0.0173289 0)
(1.01194 0.018073 0)
(1.01208 0.0188631 0)
(1.01228 0.0196992 0)
(1.01254 0.0205809 0)
(1.01286 0.0215068 0)
(1.01325 0.0224747 0)
(1.01374 0.0234808 0)
(1.01432 0.0245199 0)
(1.015 0.0255843 0)
(1.01581 0.0266636 0)
(1.01675 0.0277446 0)
(1.01783 0.0288106 0)
(1.01906 0.0298412 0)
(1.02044 0.0308132 0)
(1.02198 0.0316999 0)
(1.02366 0.0324729 0)
(1.02549 0.0331028 0)
(1.02743 0.0335604 0)
(1.02947 0.0338194 0)
(1.03157 0.0338577 0)
(1.0337 0.0336599 0)
(1.03581 0.0332196 0)
(1.03784 0.032541 0)
(1.03976 0.0316404 0)
(1.04153 0.0305464 0)
(1.04309 0.0292999 0)
(1.04443 0.0279519 0)
(1.04554 0.0265608 0)
(1.04641 0.0251886 0)
(1.04707 0.0238967 0)
(1.04754 0.0227407 0)
(1.0479 0.0217665 0)
(1.04819 0.0210065 0)
(1.04849 0.0204768 0)
(1.04887 0.0201758 0)
(1.04942 0.0200833 0)
(1.0502 0.0201604 0)
(1.05128 0.0203509 0)
(1.05273 0.0205817 0)
(1.05458 0.0207645 0)
(1.05686 0.0207978 0)
(1.05959 0.020568 0)
(1.06274 0.0199528 0)
(1.06627 0.0188233 0)
(1.07012 0.0170496 0)
(1.07419 0.0145046 0)
(1.07833 0.0110753 0)
(1.08236 0.00666964 0)
(1.08608 0.00122171 0)
(1.08924 -0.00527329 0)
(1.09158 -0.012765 0)
(1.09284 -0.0211392 0)
(1.09275 -0.0301997 0)
(1.09111 -0.0396708 0)
(1.08779 -0.0492094 0)
(1.08275 -0.0584323 0)
(1.07607 -0.0669564 0)
(1.06792 -0.0744376 0)
(1.05857 -0.0806008 0)
(1.04832 -0.0852553 0)
(1.03749 -0.0882966 0)
(1.02641 -0.089698 0)
(1.01535 -0.0894977 0)
(1.00458 -0.0877829 0)
(0.99432 -0.0846758 0)
(0.984737 -0.0803203 0)
(0.975972 -0.0748724 0)
(0.968132 -0.068493 0)
(0.961294 -0.0613422 0)
(0.955512 -0.0535774 0)
(0.95082 -0.0453512 0)
(0.947235 -0.0368109 0)
(0.944757 -0.0280995 0)
(0.943377 -0.0193548 0)
(0.94307 -0.0107115 0)
(0.943802 -0.00230333 0)
(0.945516 0.00573682 0)
(0.948142 0.0132881 0)
(0.951592 0.0202388 0)
(0.955771 0.026486 0)
(0.960569 0.0319306 0)
(0.965852 0.0364773 0)
(0.971452 0.0400481 0)
(0.977165 0.0426051 0)
(0.982772 0.0441732 0)
(0.988074 0.0448425 0)
(0.992908 0.0447488 0)
(0.997164 0.044052 0)
(1.00078 0.0429162 0)
(1.00373 0.0414956 0)
(1.00597 0.0399435 0)
(1.00755 0.038434 0)
(1.00851 0.0371348 0)
(1.00899 0.036196 0)
(1.00913 0.0357121 0)
(1.00916 0.0357331 0)
(1.00923 0.0361884 0)
(1.00949 0.0370198 0)
(1.01152 0.0165958 0)
(1.0116 0.0172738 0)
(1.01172 0.0179941 0)
(1.01189 0.0187566 0)
(1.01211 0.019561 0)
(1.01239 0.0204064 0)
(1.01273 0.021291 0)
(1.01315 0.0222122 0)
(1.01365 0.0231658 0)
(1.01424 0.0241462 0)
(1.01494 0.0251455 0)
(1.01575 0.0261537 0)
(1.01668 0.0271579 0)
(1.01774 0.0281423 0)
(1.01894 0.0290883 0)
(1.02027 0.0299744 0)
(1.02175 0.0307769 0)
(1.02336 0.0314705 0)
(1.02509 0.0320294 0)
(1.02693 0.0324284 0)
(1.02885 0.0326451 0)
(1.03083 0.0326611 0)
(1.03282 0.0324641 0)
(1.03479 0.0320496 0)
(1.0367 0.0314225 0)
(1.0385 0.0305981 0)
(1.04017 0.0296022 0)
(1.04166 0.0284706 0)
(1.04296 0.0272477 0)
(1.04406 0.0259839 0)
(1.04496 0.0247324 0)
(1.04567 0.0235455 0)
(1.04623 0.0224703 0)
(1.04669 0.0215455 0)
(1.0471 0.020798 0)
(1.04752 0.0202403 0)
(1.04802 0.0198695 0)
(1.04866 0.0196661 0)
(1.04952 0.0195941 0)
(1.05064 0.0196021 0)
(1.05207 0.0196235 0)
(1.05386 0.0195785 0)
(1.05603 0.0193752 0)
(1.05856 0.0189123 0)
(1.06146 0.0180808 0)
(1.06467 0.0167675 0)
(1.06812 0.0148602 0)
(1.07173 0.0122515 0)
(1.07536 0.00884478 0)
(1.07885 0.00456897 0)
(1.08201 -0.000618131 0)
(1.08462 -0.00671477 0)
(1.08647 -0.0136667 0)
(1.08732 -0.0213623 0)
(1.08695 -0.0296223 0)
(1.08521 -0.0382037 0)
(1.08199 -0.0468103 0)
(1.07725 -0.0551149 0)
(1.07106 -0.0627903 0)
(1.06358 -0.0695402 0)
(1.05501 -0.0751235 0)
(1.04564 -0.0793677 0)
(1.03572 -0.082172 0)
(1.02554 -0.0835024 0)
(1.01537 -0.0833818 0)
(1.00542 -0.0818783 0)
(0.995905 -0.0790929 0)
(0.986986 -0.0751488 0)
(0.978798 -0.0701829 0)
(0.971445 -0.064339 0)
(0.965003 -0.0577627 0)
(0.959529 -0.0505985 0)
(0.955059 -0.0429887 0)
(0.951612 -0.0350713 0)
(0.949192 -0.0269802 0)
(0.94779 -0.0188466 0)
(0.947385 -0.0107976 0)
(0.947941 -0.0029583 0)
(0.949409 0.00454981 0)
(0.951721 0.0116135 0)
(0.954796 0.0181287 0)
(0.958542 0.0240003 0)
(0.962854 0.0291395 0)
(0.967605 0.0334663 0)
(0.972643 0.03692 0)
(0.977791 0.0394742 0)
(0.982863 0.0411516 0)
(0.987688 0.0420271 0)
(0.992126 0.0422142 0)
(0.996075 0.0418464 0)
(0.999469 0.0410657 0)
(1.00228 0.0400137 0)
(1.00449 0.0388298 0)
(1.00611 0.0376617 0)
(1.00721 0.0366528 0)
(1.00789 0.0359323 0)
(1.00827 0.0355739 0)
(1.00854 0.0356196 0)
(1.00881 0.0360216 0)
(1.00923 0.0367427 0)
(1.01129 0.0165464 0)
(1.01139 0.0172032 0)
(1.01154 0.0178989 0)
(1.01173 0.0186331 0)
(1.01197 0.0194051 0)
(1.01227 0.0202138 0)
(1.01263 0.0210569 0)
(1.01307 0.0219315 0)
(1.01358 0.0228331 0)
(1.01418 0.0237558 0)
(1.01488 0.0246918 0)
(1.01569 0.0256313 0)
(1.01661 0.0265619 0)
(1.01765 0.027469 0)
(1.01881 0.0283354 0)
(1.02011 0.0291415 0)
(1.02152 0.0298662 0)
(1.02306 0.030487 0)
(1.02471 0.0309814 0)
(1.02644 0.0313279 0)
(1.02825 0.0315073 0)
(1.0301 0.0315044 0)
(1.03197 0.0313094 0)
(1.03382 0.0309195 0)
(1.03561 0.0303398 0)
(1.03731 0.0295846 0)
(1.03889 0.0286767 0)
(1.04032 0.0276477 0)
(1.04158 0.026536 0)
(1.04267 0.0253847 0)
(1.04358 0.0242393 0)
(1.04434 0.0231441 0)
(1.04498 0.0221388 0)
(1.04552 0.0212557 0)
(1.04603 0.0205167 0)
(1.04655 0.0199315 0)
(1.04715 0.0194957 0)
(1.04787 0.0191908 0)
(1.04878 0.0189836 0)
(1.04992 0.0188271 0)
(1.05133 0.0186612 0)
(1.05305 0.0184139 0)
(1.05509 0.0180028 0)
(1.05744 0.0173381 0)
(1.06009 0.0163231 0)
(1.06299 0.0148604 0)
(1.06608 0.0128517 0)
(1.06926 0.0102079 0)
(1.07242 0.00685185 0)
(1.07541 0.0027263 0)
(1.07807 -0.00219795 0)
(1.0802 -0.00790608 0)
(1.08161 -0.0143444 0)
(1.08211 -0.0214057 0)
(1.08152 -0.0289276 0)
(1.07971 -0.0366964 0)
(1.07658 -0.0444564 0)
(1.07212 -0.0519277 0)
(1.06639 -0.0588309 0)
(1.05951 -0.0649108 0)
(1.05167 -0.0699566 0)
(1.0431 -0.0738133 0)
(1.03402 -0.0763856 0)
(1.02469 -0.077635 0)
(1.01533 -0.077573 0)
(1.00616 -0.0762516 0)
(0.997354 -0.0737538 0)
(0.989073 -0.070185 0)
(0.981441 -0.0656644 0)
(0.97456 -0.06032 0)
(0.968507 -0.0542835 0)
(0.963337 -0.0476873 0)
(0.959089 -0.0406625 0)
(0.955783 -0.0333381 0)
(0.953425 -0.0258396 0)
(0.95201 -0.0182896 0)
(0.951516 -0.010808 0)
(0.951913 -0.00351099 0)
(0.953151 0.00348998 0)
(0.955169 0.0100892 0)
(0.957892 0.0161904 0)
(0.961233 0.0217065 0)
(0.965092 0.0265587 0)
(0.969351 0.0306793 0)
(0.973873 0.0340199 0)
(0.978506 0.0365622 0)
(0.983089 0.0383271 0)
(0.987476 0.0393765 0)
(0.991543 0.0398052 0)
(0.995199 0.0397266 0)
(0.998381 0.0392622 0)
(1.00106 0.0385383 0)
(1.00321 0.0376811 0)
(1.00487 0.036818 0)
(1.00607 0.036068 0)
(1.00691 0.0355415 0)
(1.0075 0.035302 0)
(1.00796 0.0353843 0)
(1.0084 0.0357531 0)
(1.00895 0.0363872 0)
(1.01108 0.016482 0)
(1.01121 0.0171168 0)
(1.01138 0.0177872 0)
(1.01159 0.0184924 0)
(1.01185 0.0192317 0)
(1.01217 0.0200033 0)
(1.01255 0.0208049 0)
(1.013 0.0216332 0)
(1.01352 0.0224835 0)
(1.01413 0.0233498 0)
(1.01484 0.0242244 0)
(1.01564 0.0250977 0)
(1.01654 0.0259583 0)
(1.01756 0.0267922 0)
(1.01869 0.0275838 0)
(1.01994 0.0283155 0)
(1.0213 0.0289683 0)
(1.02276 0.0295226 0)
(1.02432 0.0299586 0)
(1.02597 0.0302579 0)
(1.02767 0.0304044 0)
(1.02941 0.0303854 0)
(1.03116 0.0301933 0)
(1.0329 0.0298264 0)
(1.03458 0.0292902 0)
(1.03618 0.0285973 0)
(1.03768 0.0277683 0)
(1.03905 0.0268305 0)
(1.04027 0.025817 0)
(1.04135 0.0247647 0)
(1.04228 0.0237122 0)
(1.04308 0.0226967 0)
(1.04377 0.0217516 0)
(1.04439 0.0209034 0)
(1.04498 0.0201699 0)
(1.04559 0.0195579 0)
(1.04626 0.0190623 0)
(1.04704 0.0186654 0)
(1.04798 0.0183367 0)
(1.04913 0.0180335 0)
(1.05051 0.0177015 0)
(1.05215 0.0172765 0)
(1.05406 0.0166854 0)
(1.05623 0.0158484 0)
(1.05864 0.0146815 0)
(1.06125 0.0131 0)
(1.06399 0.0110202 0)
(1.06678 0.00836878 0)
(1.06951 0.00508375 0)
(1.07205 0.00112104 0)
(1.07426 -0.00353738 0)
(1.07596 -0.00886976 0)
(1.077 -0.0148206 0)
(1.07721 -0.0212898 0)
(1.07643 -0.0281317 0)
(1.07457 -0.0351585 0)
(1.07155 -0.0421494 0)
(1.06736 -0.0488649 0)
(1.06205 -0.055066 0)
(1.05572 -0.0605332 0)
(1.04854 -0.0650825 0)
(1.0407 -0.0685754 0)
(1.0324 -0.0709232 0)
(1.02385 -0.0720851 0)
(1.01526 -0.072064 0)
(1.00681 -0.0708991 0)
(0.998679 -0.0686583 0)
(0.991005 -0.0654308 0)
(0.983908 -0.0613206 0)
(0.977484 -0.0564408 0)
(0.971809 -0.05091 0)
(0.966938 -0.0448488 0)
(0.96291 -0.0383777 0)
(0.959747 -0.031616 0)
(0.957457 -0.0246811 0)
(0.956036 -0.017687 0)
(0.955465 -0.0107453 0)
(0.955715 -0.00396359 0)
(0.956742 0.0025543 0)
(0.958487 0.00871158 0)
(0.960882 0.0144199 0)
(0.963845 0.0195997 0)
(0.967284 0.024181 0)
(0.971089 0.0281062 0)
(0.97514 0.0313361 0)
(0.979301 0.0338578 0)
(0.983437 0.0356902 0)
(0.98742 0.0368844 0)
(0.991142 0.0375196 0)
(0.994521 0.0376922 0)
(0.997498 0.0375071 0)
(1.00004 0.0370741 0)
(1.00214 0.0365055 0)
(1.00381 0.0359123 0)
(1.0051 0.0353935 0)
(1.00606 0.0350414 0)
(1.00681 0.0349121 0)
(1.00743 0.035038 0)
(1.00802 0.0353916 0)
(1.00868 0.0359611 0)
(1.01091 0.0164024 0)
(1.01106 0.0170146 0)
(1.01125 0.017659 0)
(1.01148 0.0183349 0)
(1.01176 0.019041 0)
(1.01209 0.0197755 0)
(1.01248 0.0205357 0)
(1.01295 0.0213181 0)
(1.01348 0.022118 0)
(1.01409 0.0229293 0)
(1.01479 0.0237445 0)
(1.01559 0.0245545 0)
(1.01648 0.0253483 0)
(1.01747 0.0261132 0)
(1.01857 0.0268348 0)
(1.01977 0.0274974 0)
(1.02107 0.028084 0)
(1.02247 0.0285774 0)
(1.02395 0.0289605 0)
(1.0255 0.0292175 0)
(1.02711 0.0293349 0)
(1.02874 0.0293022 0)
(1.03039 0.0291135 0)
(1.03202 0.028768 0)
(1.0336 0.028271 0)
(1.03511 0.0276341 0)
(1.03653 0.0268753 0)
(1.03785 0.0260183 0)
(1.03903 0.0250913 0)
(1.0401 0.0241258 0)
(1.04104 0.0231542 0)
(1.04186 0.0222078 0)
(1.0426 0.0213141 0)
(1.04328 0.0204951 0)
(1.04394 0.0197646 0)
(1.04461 0.0191272 0)
(1.04534 0.0185772 0)
(1.04617 0.0180978 0)
(1.04714 0.0176609 0)
(1.04828 0.0172281 0)
(1.04962 0.0167509 0)
(1.05117 0.016172 0)
(1.05295 0.015427 0)
(1.05494 0.0144458 0)
(1.05712 0.0131559 0)
(1.05945 0.011484 0)
(1.06187 0.00936154 0)
(1.0643 0.00672584 0)
(1.06664 0.00352749 0)
(1.06878 -0.000263825 0)
(1.07059 -0.00465531 0)
(1.07192 -0.00962365 0)
(1.07263 -0.0151136 0)
(1.07259 -0.0210321 0)
(1.07167 -0.0272485 0)
(1.06978 -0.0335984 0)
(1.06687 -0.039891 0)
(1.06293 -0.0459214 0)
(1.05801 -0.0514848 0)
(1.05219 -0.0563927 0)
(1.04562 -0.0604847 0)
(1.03844 -0.063638 0)
(1.03085 -0.0657705 0)
(1.02303 -0.0668413 0)
(1.01515 -0.0668469 0)
(1.00738 -0.0658163 0)
(0.999888 -0.0638046 0)
(0.992791 -0.0608872 0)
(0.986205 -0.0571541 0)
(0.980222 -0.0527053 0)
(0.974914 -0.0476468 0)
(0.970335 -0.0420879 0)
(0.966525 -0.0361389 0)
(0.963507 -0.0299096 0)
(0.961289 -0.0235085 0)
(0.959869 -0.0170419 0)
(0.959232 -0.0106123 0)
(0.95935 -0.00431996 0)
(0.960182 0.00173943 0)
(0.961675 0.00747734 0)
(0.963767 0.012813 0)
(0.96638 0.0176742 0)
(0.969431 0.0219988 0)
(0.97282 0.0257374 0)
(0.976438 0.0288579 0)
(0.980169 0.0313505 0)
(0.983895 0.0332317 0)
(0.987507 0.0345444 0)
(0.990908 0.0353544 0)
(0.994025 0.0357435 0)
(0.996807 0.0358023 0)
(0.999221 0.0356256 0)
(1.00126 0.0353108 0)
(1.00293 0.0349545 0)
(1.00427 0.034641 0)
(1.00533 0.0344469 0)
(1.0062 0.0344205 0)
(1.00696 0.034593 0)
(1.00767 0.034945 0)
(1.00842 0.0354697 0)
(1.01075 0.0163076 0)
(1.01092 0.0168965 0)
(1.01113 0.0175145 0)
(1.01138 0.0181607 0)
(1.01168 0.0188334 0)
(1.01202 0.0195308 0)
(1.01243 0.02025 0)
(1.0129 0.0209872 0)
(1.01344 0.0217377 0)
(1.01406 0.0224956 0)
(1.01475 0.0232536 0)
(1.01554 0.0240029 0)
(1.01641 0.0247334 0)
(1.01738 0.0254333 0)
(1.01844 0.0260895 0)
(1.0196 0.0266879 0)
(1.02084 0.0272136 0)
(1.02217 0.0276514 0)
(1.02358 0.0279866 0)
(1.02504 0.0282057 0)
(1.02656 0.0282972 0)
(1.0281 0.0282528 0)
(1.02964 0.0280676 0)
(1.03117 0.0277417 0)
(1.03266 0.0272801 0)
(1.0341 0.0266931 0)
(1.03545 0.0259965 0)
(1.03671 0.0252106 0)
(1.03786 0.0243595 0)
(1.03891 0.0234697 0)
(1.03985 0.0225684 0)
(1.0407 0.0216816 0)
(1.04147 0.020832 0)
(1.0422 0.0200372 0)
(1.04291 0.019308 0)
(1.04363 0.0186471 0)
(1.04441 0.0180483 0)
(1.04526 0.0174957 0)
(1.04624 0.0169639 0)
(1.04736 0.0164182 0)
(1.04865 0.0158155 0)
(1.05012 0.0151053 0)
(1.05177 0.0142311 0)
(1.05358 0.0131321 0)
(1.05555 0.0117458 0)
(1.05762 0.0100104 0)
(1.05974 0.00786789 0)
(1.06184 0.00526806 0)
(1.06383 0.00217363 0)
(1.06561 -0.00143839 0)
(1.06706 -0.00556664 0)
(1.06806 -0.0101862 0)
(1.0685 -0.0152424 0)
(1.06825 -0.0206496 0)
(1.06721 -0.0262913 0)
(1.06532 -0.032024 0)
(1.06252 -0.037683 0)
(1.05882 -0.0430925 0)
(1.05426 -0.0480775 0)
(1.04891 -0.0524758 0)
(1.04288 -0.056148 0)
(1.03632 -0.0589855 0)
(1.02939 -0.0609136 0)
(1.02223 -0.061892 0)
(1.01502 -0.061913 0)
(1.00789 -0.0609974 0)
(1.00099 -0.0591897 0)
(0.99444 -0.0565535 0)
(0.988341 -0.0531663 0)
(0.982781 -0.0491162 0)
(0.977827 -0.0444974 0)
(0.973533 -0.0394087 0)
(0.969938 -0.0339501 0)
(0.967064 -0.0282227 0)
(0.964922 -0.022326 0)
(0.963512 -0.0163575 0)
(0.962819 -0.0104131 0)
(0.962818 -0.00458479 0)
(0.963473 0.00104041 0)
(0.964735 0.00638119 0)
(0.966547 0.0113638 0)
(0.968839 0.015923 0)
(0.971532 0.0200038 0)
(0.974539 0.0235634 0)
(0.977763 0.0265746 0)
(0.981102 0.0290297 0)
(0.984453 0.030943 0)
(0.987723 0.0323503 0)
(0.990826 0.0333065 0)
(0.993698 0.0338805 0)
(0.996291 0.0341497 0)
(0.998576 0.0341962 0)
(1.00054 0.0341037 0)
(1.0022 0.033955 0)
(1.00357 0.0338227 0)
(1.00471 0.0337711 0)
(1.00567 0.033841 0)
(1.00653 0.0340616 0)
(1.00735 0.0344213 0)
(1.00817 0.0349173 0)
(1.01062 0.0161975 0)
(1.01081 0.0167626 0)
(1.01103 0.0173538 0)
(1.0113 0.01797 0)
(1.01161 0.0186094 0)
(1.01197 0.0192699 0)
(1.01239 0.0199484 0)
(1.01287 0.0206413 0)
(1.01341 0.0213437 0)
(1.01403 0.0220499 0)
(1.01472 0.0227528 0)
(1.01549 0.0234443 0)
(1.01634 0.0241148 0)
(1.01728 0.0247536 0)
(1.01831 0.0253489 0)
(1.01942 0.025888 0)
(1.02061 0.0263576 0)
(1.02188 0.0267447 0)
(1.02321 0.0270365 0)
(1.02459 0.0272214 0)
(1.02602 0.02729 0)
(1.02747 0.0272353 0)
(1.02893 0.0270536 0)
(1.03037 0.0267454 0)
(1.03177 0.0263154 0)
(1.03313 0.0257727 0)
(1.03442 0.0251309 0)
(1.03562 0.0244074 0)
(1.03674 0.0236225 0)
(1.03777 0.0227986 0)
(1.03871 0.0219582 0)
(1.03957 0.0211227 0)
(1.04038 0.0203107 0)
(1.04114 0.0195361 0)
(1.04188 0.0188072 0)
(1.04264 0.0181251 0)
(1.04345 0.0174832 0)
(1.04432 0.0168667 0)
(1.04529 0.0162527 0)
(1.04639 0.0156101 0)
(1.04762 0.0149008 0)
(1.04899 0.0140807 0)
(1.05051 0.0131006 0)
(1.05217 0.0119081 0)
(1.05392 0.0104502 0)
(1.05575 0.00867451 0)
(1.0576 0.00653338 0)
(1.0594 0.00398731 0)
(1.06107 0.0010076 0)
(1.06252 -0.00242122 0)
(1.06366 -0.00629168 0)
(1.06439 -0.010577 0)
(1.06458 -0.0152252 0)
(1.06416 -0.0201582 0)
(1.06304 -0.0252725 0)
(1.06116 -0.0304429 0)
(1.05848 -0.0355271 0)
(1.05501 -0.0403745 0)
(1.05078 -0.0448354 0)
(1.04585 -0.0487701 0)
(1.04033 -0.0520581 0)
(1.03434 -0.0546035 0)
(1.02801 -0.0563388 0)
(1.02147 -0.0572256 0)
(1.01487 -0.0572532 0)
(1.00833 -0.056436 0)
(1.002 -0.05481 0)
(0.995961 -0.0524282 0)
(0.990324 -0.0493576 0)
(0.985167 -0.0456752 0)
(0.980554 -0.0414646 0)
(0.976537 -0.0368145 0)
(0.973151 -0.0318155 0)
(0.970422 -0.0265592 0)
(0.96836 -0.0211372 0)
(0.966965 -0.0156392 0)
(0.966226 -0.0101529 0)
(0.966121 -0.0047623 0)
(0.966616 0.00045257 0)
(0.967668 0.00541759 0)
(0.969224 0.0100661 0)
(0.971221 0.0143391 0)
(0.973588 0.0181877 0)
(0.976246 0.0215743 0)
(0.97911 0.0244759 0)
(0.982091 0.0268858 0)
(0.9851 0.0288161 0)
(0.988055 0.0302964 0)
(0.990883 0.0313725 0)
(0.993525 0.0321021 0)
(0.995937 0.0325512 0)
(0.998095 0.0327904 0)
(0.999984 0.032891 0)
(1.00161 0.0329236 0)
(1.00301 0.0329502 0)
(1.0042 0.033026 0)
(1.00523 0.0331856 0)
(1.00617 0.0334554 0)
(1.00706 0.03383 0)
(1.00795 0.0343096 0)
(1.01051 0.0160721 0)
(1.01071 0.016613 0)
(1.01095 0.0171772 0)
(1.01123 0.0177633 0)
(1.01155 0.0183694 0)
(1.01192 0.0189933 0)
(1.01235 0.0196318 0)
(1.01283 0.0202813 0)
(1.01338 0.020937 0)
(1.01399 0.0215933 0)
(1.01468 0.0222436 0)
(1.01544 0.02288 0)
(1.01627 0.0234939 0)
(1.01718 0.0240754 0)
(1.01817 0.0246139 0)
(1.01924 0.025098 0)
(1.02038 0.0255163 0)
(1.02158 0.0258571 0)
(1.02284 0.0261095 0)
(1.02415 0.0262637 0)
(1.0255 0.0263118 0)
(1.02686 0.026248 0)
(1.02823 0.0260696 0)
(1.02959 0.0257773 0)
(1.03092 0.0253752 0)
(1.03221 0.0248715 0)
(1.03343 0.0242778 0)
(1.03459 0.0236088 0)
(1.03568 0.0228816 0)
(1.03668 0.0221148 0)
(1.03762 0.021327 0)
(1.03849 0.0205357 0)
(1.0393 0.0197558 0)
(1.04009 0.0189984 0)
(1.04086 0.0182693 0)
(1.04164 0.0175686 0)
(1.04246 0.0168895 0)
(1.04334 0.0162182 0)
(1.0443 0.0155342 0)
(1.04536 0.01481 0)
(1.04653 0.0140121 0)
(1.04781 0.0131022 0)
(1.0492 0.0120376 0)
(1.0507 0.0107742 0)
(1.05226 0.00926648 0)
(1.05386 0.00747146 0)
(1.05546 0.00535104 0)
(1.05699 0.00287314 0)
(1.05837 1.6444e-05 0)
(1.05954 -0.0032261 0)
(1.06041 -0.0068447 0)
(1.06089 -0.0108117 0)
(1.06089 -0.0150779 0)
(1.06033 -0.0195723 0)
(1.05915 -0.0242034 0)
(1.05729 -0.0288618 0)
(1.05473 -0.0334251 0)
(1.05147 -0.037764 0)
(1.04755 -0.0417504 0)
(1.04302 -0.0452644 0)
(1.03796 -0.0482017 0)
(1.03249 -0.050478 0)
(1.02671 -0.0520329 0)
(1.02074 -0.0528303 0)
(1.0147 -0.0528577 0)
(1.00873 -0.0521249 0)
(1.00291 -0.0506604 0)
(0.997361 -0.0485087 0)
(0.992162 -0.0457273 0)
(0.987389 -0.0423832 0)
(0.983103 -0.0385506 0)
(0.979351 -0.0343081 0)
(0.976171 -0.0297382 0)
(0.973585 -0.0249234 0)
(0.971605 -0.0199469 0)
(0.970233 -0.0148914 0)
(0.969458 -0.00983617 0)
(0.969262 -0.00485764 0)
(0.969613 -2.95458e-05 0)
(0.970475 0.00458065 0)
(0.971798 0.00891293 0)
(0.973527 0.0129144 0)
(0.975596 0.0165412 0)
(0.977937 0.0197605 0)
(0.980474 0.0225518 0)
(0.98313 0.0249095 0)
(0.985826 0.0268429 0)
(0.988492 0.0283767 0)
(0.991064 0.0295487 0)
(0.99349 0.0304075 0)
(0.995731 0.0310086 0)
(0.997763 0.0314122 0)
(0.999573 0.031679 0)
(1.00117 0.0318688 0)
(1.00256 0.0320347 0)
(1.00378 0.0322235 0)
(1.00487 0.0324656 0)
(1.00586 0.0327846 0)
(1.00681 0.0331792 0)
(1.00775 0.0336521 0)
(1.01041 0.0159315 0)
(1.01062 0.016448 0)
(1.01088 0.016985 0)
(1.01117 0.017541 0)
(1.0115 0.0181141 0)
(1.01189 0.0187018 0)
(1.01232 0.0193011 0)
(1.01281 0.0199083 0)
(1.01335 0.0205187 0)
(1.01396 0.0211271 0)
(1.01464 0.021727 0)
(1.01538 0.0223112 0)
(1.01619 0.0228717 0)
(1.01707 0.0233996 0)
(1.01803 0.0238853 0)
(1.01905 0.0243188 0)
(1.02014 0.0246898 0)
(1.02128 0.0249883 0)
(1.02248 0.025205 0)
(1.02372 0.0253316 0)
(1.02499 0.0253612 0)
(1.02628 0.0252894 0)
(1.02757 0.0251139 0)
(1.02885 0.0248355 0)
(1.0301 0.0244581 0)
(1.03132 0.0239886 0)
(1.03249 0.0234368 0)
(1.0336 0.0228153 0)
(1.03465 0.0221381 0)
(1.03564 0.0214207 0)
(1.03656 0.0206784 0)
(1.03743 0.0199251 0)
(1.03825 0.0191729 0)
(1.03905 0.0184302 0)
(1.03984 0.0177011 0)
(1.04064 0.0169846 0)
(1.04146 0.0162742 0)
(1.04233 0.0155571 0)
(1.04327 0.0148149 0)
(1.04428 0.0140236 0)
(1.04538 0.0131539 0)
(1.04657 0.0121727 0)
(1.04784 0.0110439 0)
(1.04918 0.00972965 0)
(1.05057 0.0081923 0)
(1.05197 0.00639692 0)
(1.05333 0.0043125 0)
(1.05461 0.00191465 0)
(1.05575 -0.000811846 0)
(1.05667 -0.00386809 0)
(1.0573 -0.00724268 0)
(1.05757 -0.0109075 0)
(1.0574 -0.0148166 0)
(1.05673 -0.0189058 0)
(1.05551 -0.0230944 0)
(1.05368 -0.0272872 0)
(1.05124 -0.0313787 0)
(1.04819 -0.035258 0)
(1.04456 -0.0388154 0)
(1.04039 -0.0419482 0)
(1.03576 -0.0445662 0)
(1.03076 -0.0465957 0)
(1.02549 -0.0479829 0)
(1.02004 -0.0486942 0)
(1.01453 -0.0487167 0)
(1.00907 -0.0480561 0)
(1.00374 -0.0467353 0)
(0.998648 -0.0447915 0)
(0.993862 -0.0422738 0)
(0.989453 -0.0392402 0)
(0.985479 -0.0357564 0)
(0.981984 -0.0318923 0)
(0.979003 -0.0277214 0)
(0.976558 -0.0233185 0)
(0.974663 -0.0187594 0)
(0.973318 -0.014118 0)
(0.972518 -0.00946724 0)
(0.972243 -0.00487738 0)
(0.972468 -0.000413799 0)
(0.973158 0.00386272 0)
(0.974271 0.00789668 0)
(0.975756 0.0116407 0)
(0.977556 0.0150556 0)
(0.97961 0.0181123 0)
(0.98185 0.0207928 0)
(0.984209 0.0230914 0)
(0.98662 0.0250155 0)
(0.989022 0.0265852 0)
(0.991357 0.0278317 0)
(0.993582 0.0287954 0)
(0.995659 0.029523 0)
(0.997568 0.0300653 0)
(0.999295 0.0304737 0)
(1.00084 0.0307988 0)
(1.00222 0.0310857 0)
(1.00346 0.0313744 0)
(1.00458 0.0316915 0)
(1.00562 0.0320584 0)
(1.00661 0.0324766 0)
(1.00758 0.0329504 0)
(1.01032 0.015776 0)
(1.01055 0.0162678 0)
(1.01082 0.0167776 0)
(1.01112 0.0173036 0)
(1.01146 0.017844 0)
(1.01185 0.0183962 0)
(1.01229 0.0189572 0)
(1.01278 0.0195232 0)
(1.01332 0.02009 0)
(1.01393 0.0206523 0)
(1.01459 0.0212042 0)
(1.01532 0.0217391 0)
(1.01611 0.0222494 0)
(1.01696 0.0227272 0)
(1.01788 0.0231639 0)
(1.01886 0.0235505 0)
(1.0199 0.0238782 0)
(1.02098 0.0241382 0)
(1.02212 0.0243225 0)
(1.02329 0.024424 0)
(1.02449 0.0244371 0)
(1.0257 0.0243579 0)
(1.02692 0.0241848 0)
(1.02813 0.0239187 0)
(1.02932 0.0235627 0)
(1.03047 0.023123 0)
(1.03159 0.0226078 0)
(1.03265 0.0220274 0)
(1.03367 0.0213936 0)
(1.03463 0.0207189 0)
(1.03554 0.0200158 0)
(1.0364 0.0192954 0)
(1.03722 0.0185672 0)
(1.03803 0.0178375 0)
(1.03882 0.0171091 0)
(1.03962 0.0163801 0)
(1.04044 0.0156442 0)
(1.04129 0.0148899 0)
(1.0422 0.0141009 0)
(1.04317 0.013256 0)
(1.0442 0.0123302 0)
(1.04529 0.011295 0)
(1.04644 0.01012 0)
(1.04764 0.00877339 0)
(1.04886 0.00722466 0)
(1.05006 0.00544494 0)
(1.05122 0.00340957 0)
(1.05228 0.0011014 0)
(1.05319 -0.0014896 0)
(1.0539 -0.00436153 0)
(1.05433 -0.00750077 0)
(1.05442 -0.0108797 0)
(1.05412 -0.0144557 0)
(1.05336 -0.0181713 0)
(1.05211 -0.0219553 0)
(1.05033 -0.025725 0)
(1.04801 -0.0293895 0)
(1.04516 -0.0328538 0)
(1.04179 -0.036024 0)
(1.03796 -0.038812 0)
(1.03372 -0.04114 0)
(1.02916 -0.042944 0)
(1.02435 -0.0441761 0)
(1.01938 -0.0448058 0)
(1.01436 -0.0448199 0)
(1.00937 -0.0442214 0)
(1.0045 -0.0430286 0)
(0.999831 -0.0412723 0)
(0.995432 -0.0389944 0)
(0.991368 -0.0362455 0)
(0.987689 -0.0330827 0)
(0.98444 -0.0295684 0)
(0.981652 -0.0257679 0)
(0.979347 -0.0217484 0)
(0.977537 -0.017578 0)
(0.976227 -0.0133239 0)
(0.975408 -0.00905194 0)
(0.975067 -0.00482546 0)
(0.975182 -0.000703905 0)
(0.97572 0.00325776 0)
(0.976644 0.0070096 0)
(0.97791 0.0105091 0)
(0.979466 0.0137214 0)
(0.981259 0.0166202 0)
(0.983231 0.0191892 0)
(0.985321 0.0214229 0)
(0.987474 0.0233266 0)
(0.989633 0.0249165 0)
(0.99175 0.0262181 0)
(0.993786 0.0272649 0)
(0.995709 0.0280958 0)
(0.997497 0.0287533 0)
(0.999139 0.0292808 0)
(1.00063 0.0297211 0)
(1.00199 0.0301123 0)
(1.00323 0.0304885 0)
(1.00436 0.0308732 0)
(1.00543 0.0312856 0)
(1.00645 0.0317294 0)
(1.00744 0.0322096 0)
(1.01025 0.0156058 0)
(1.01049 0.0160729 0)
(1.01076 0.0165554 0)
(1.01108 0.0170518 0)
(1.01143 0.0175599 0)
(1.01182 0.0180773 0)
(1.01226 0.0186009 0)
(1.01275 0.0191272 0)
(1.01329 0.019652 0)
(1.01389 0.0201703 0)
(1.01454 0.0206766 0)
(1.01525 0.0211648 0)
(1.01601 0.0216281 0)
(1.01684 0.0220591 0)
(1.01772 0.0224503 0)
(1.01866 0.0227938 0)
(1.01965 0.0230818 0)
(1.02068 0.0233066 0)
(1.02176 0.0234614 0)
(1.02287 0.0235402 0)
(1.024 0.0235382 0)
(1.02514 0.0234523 0)
(1.02629 0.0232811 0)
(1.02743 0.0230255 0)
(1.02856 0.0226882 0)
(1.02966 0.0222743 0)
(1.03072 0.0217908 0)
(1.03174 0.021246 0)
(1.03272 0.0206497 0)
(1.03365 0.020012 0)
(1.03454 0.0193428 0)
(1.03539 0.0186511 0)
(1.03621 0.0179441 0)
(1.03701 0.0172264 0)
(1.0378 0.0164996 0)
(1.03859 0.0157616 0)
(1.03939 0.0150061 0)
(1.04023 0.0142228 0)
(1.0411 0.0133975 0)
(1.04201 0.0125118 0)
(1.04297 0.0115443 0)
(1.04397 0.010471 0)
(1.04501 0.00926622 0)
(1.04607 0.00790406 0)
(1.04713 0.00635924 0)
(1.04817 0.00460879 0)
(1.04914 0.00263443 0)
(1.05001 0.00042368 0)
(1.05072 -0.00202922 0)
(1.05123 -0.00471978 0)
(1.05149 -0.00763316 0)
(1.05144 -0.0107425 0)
(1.05102 -0.0140087 0)
(1.05021 -0.0173804 0)
(1.04895 -0.0207949 0)
(1.04722 -0.0241805 0)
(1.04502 -0.0274589 0)
(1.04235 -0.0305489 0)
(1.03923 -0.03337 0)
(1.03571 -0.0358467 0)
(1.03183 -0.0379123 0)
(1.02767 -0.0395109 0)
(1.02328 -0.0406006 0)
(1.01876 -0.0411536 0)
(1.01419 -0.0411571 0)
(1.00964 -0.0406122 0)
(1.00519 -0.0395333 0)
(1.00092 -0.0379461 0)
(0.996881 -0.0358862 0)
(0.99314 -0.0333973 0)
(0.989743 -0.0305295 0)
(0.986728 -0.0273377 0)
(0.984126 -0.0238797 0)
(0.981958 -0.020216 0)
(0.980235 -0.0164072 0)
(0.978962 -0.0125138 0)
(0.978135 -0.00859573 0)
(0.97774 -0.00470921 0)
(0.977758 -0.000908067 0)
(0.978162 0.00275748 0)
(0.978918 0.0062433 0)
(0.979987 0.00951105 0)
(0.981325 0.0125293 0)
(0.982884 0.0152745 0)
(0.984613 0.0177316 0)
(0.98646 0.0198951 0)
(0.988377 0.0217685 0)
(0.990315 0.0233646 0)
(0.992231 0.024704 0)
(0.994092 0.0258141 0)
(0.995867 0.0267273 0)
(0.997538 0.0274789 0)
(0.999093 0.0281053 0)
(1.00053 0.0286424 0)
(1.00186 0.0291225 0)
(1.00308 0.0295746 0)
(1.00422 0.0300194 0)
(1.0053 0.0304741 0)
(1.00633 0.0309441 0)
(1.00734 0.0314346 0)
(1.01018 0.0154212 0)
(1.01043 0.0158636 0)
(1.01072 0.0163191 0)
(1.01104 0.0167862 0)
(1.0114 0.0172626 0)
(1.0118 0.017746 0)
(1.01224 0.0182333 0)
(1.01272 0.0187212 0)
(1.01326 0.0192057 0)
(1.01385 0.019682 0)
(1.01448 0.0201451 0)
(1.01517 0.0205894 0)
(1.01592 0.0210085 0)
(1.01671 0.0213961 0)
(1.01756 0.0217452 0)
(1.01846 0.022049 0)
(1.0194 0.0223005 0)
(1.02038 0.0224932 0)
(1.0214 0.0226212 0)
(1.02245 0.0226794 0)
(1.02352 0.0226637 0)
(1.0246 0.0225714 0)
(1.02568 0.0224017 0)
(1.02676 0.022155 0)
(1.02783 0.0218338 0)
(1.02887 0.0214423 0)
(1.02988 0.0209861 0)
(1.03086 0.0204721 0)
(1.0318 0.0199083 0)
(1.0327 0.0193027 0)
(1.03357 0.0186631 0)
(1.0344 0.0179966 0)
(1.03521 0.0173086 0)
(1.036 0.0166025 0)
(1.03677 0.0158788 0)
(1.03755 0.0151351 0)
(1.03834 0.0143657 0)
(1.03914 0.0135615 0)
(1.03997 0.0127098 0)
(1.04083 0.011795 0)
(1.04171 0.0107991 0)
(1.04263 0.00970188 0)
(1.04356 0.00848222 0)
(1.04449 0.00711884 0)
(1.04541 0.0055915 0)
(1.04629 0.00388265 0)
(1.04709 0.00197862 0)
(1.04778 -0.000129547 0)
(1.04833 -0.00244362 0)
(1.04868 -0.00495703 0)
(1.04879 -0.00765437 0)
(1.04861 -0.0105102 0)
(1.04811 -0.0134887 0)
(1.04725 -0.0165441 0)
(1.04599 -0.0196216 0)
(1.04433 -0.0226589 0)
(1.04225 -0.0255886 0)
(1.03975 -0.0283412 0)
(1.03687 -0.0308479 0)
(1.03363 -0.0330443 0)
(1.03009 -0.0348727 0)
(1.02629 -0.0362851 0)
(1.02229 -0.0372446 0)
(1.01818 -0.0377263 0)
(1.01402 -0.037718 0)
(1.00987 -0.0372195 0)
(1.00582 -0.0362422 0)
(1.00191 -0.0348073 0)
(0.998215 -0.0329453 0)
(0.994779 -0.0306936 0)
(0.991647 -0.0280961 0)
(0.988855 -0.0252007 0)
(0.986432 -0.0220589 0)
(0.984396 -0.0187242 0)
(0.982762 -0.0152508 0)
(0.981531 -0.0116929 0)
(0.980702 -0.00810379 0)
(0.980264 -0.00453504 0)
(0.9802 -0.00103441 0)
(0.980486 0.00235382 0)
(0.981094 0.00558922 0)
(0.981988 0.00863731 0)
(0.98313 0.01147 0)
(0.984479 0.0140658 0)
(0.985989 0.016411 0)
(0.987618 0.0184998 0)
(0.989321 0.0203343 0)
(0.991057 0.021924 0)
(0.992789 0.0232857 0)
(0.994486 0.0244416 0)
(0.996122 0.0254182 0)
(0.99768 0.0262449 0)
(0.999148 0.0269519 0)
(1.00052 0.0275691 0)
(1.00181 0.0281239 0)
(1.00301 0.0286408 0)
(1.00414 0.0291383 0)
(1.00522 0.0296315 0)
(1.00627 0.0301268 0)
(1.00728 0.0306298 0)
(1.01012 0.0152227 0)
(1.01039 0.0156404 0)
(1.01068 0.0160692 0)
(1.01101 0.0165074 0)
(1.01137 0.0169528 0)
(1.01177 0.0174031 0)
(1.01221 0.0178554 0)
(1.01269 0.0183064 0)
(1.01322 0.0187522 0)
(1.0138 0.0191887 0)
(1.01442 0.0196109 0)
(1.01509 0.0200138 0)
(1.01581 0.0203918 0)
(1.01657 0.0207389 0)
(1.01739 0.0210491 0)
(1.01824 0.0213162 0)
(1.01914 0.0215343 0)
(1.02008 0.0216978 0)
(1.02104 0.0218014 0)
(1.02203 0.0218407 0)
(1.02304 0.0218124 0)
(1.02406 0.0217143 0)
(1.02509 0.0215454 0)
(1.02611 0.0213063 0)
(1.02711 0.0209989 0)
(1.0281 0.0206267 0)
(1.02907 0.0201941 0)
(1.03 0.0197069 0)
(1.03091 0.0191713 0)
(1.03178 0.0185936 0)
(1.03262 0.0179801 0)
(1.03343 0.0173361 0)
(1.03422 0.0166657 0)
(1.03499 0.015971 0)
(1.03575 0.0152521 0)
(1.03651 0.0145065 0)
(1.03727 0.0137287 0)
(1.03803 0.0129109 0)
(1.03882 0.0120421 0)
(1.03962 0.0111091 0)
(1.04043 0.0100968 0)
(1.04126 0.00898854 0)
(1.04209 0.00776704 0)
(1.0429 0.0064151 0)
(1.04369 0.00491706 0)
(1.04443 0.00325951 0)
(1.04508 0.00143265 0)
(1.04562 -0.000568974 0)
(1.04602 -0.00274422 0)
(1.04623 -0.00508544 0)
(1.04622 -0.00757708 0)
(1.04594 -0.0101951 0)
(1.04538 -0.0129071 0)
(1.04449 -0.0156723 0)
(1.04325 -0.0184427 0)
(1.04165 -0.0211644 0)
(1.03968 -0.0237795 0)
(1.03736 -0.0262285 0)
(1.03469 -0.0284527 0)
(1.03172 -0.0303969 0)
(1.02848 -0.0320118 0)
(1.02501 -0.0332559 0)
(1.02138 -0.0340969 0)
(1.01764 -0.0345128 0)
(1.01385 -0.0344923 0)
(1.01008 -0.0340343 0)
(1.00639 -0.0331477 0)
(1.00282 -0.0318501 0)
(0.999443 -0.0301673 0)
(0.996292 -0.0281317 0)
(0.99341 -0.0257811 0)
(0.990829 -0.0231577 0)
(0.988577 -0.0203067 0)
(0.986671 -0.0172755 0)
(0.985123 -0.0141123 0)
(0.983939 -0.0108656 0)
(0.983116 -0.00758242 0)
(0.982644 -0.00430886 0)
(0.982511 -0.00108813 0)
(0.982696 0.00203977 0)
(0.983173 0.00503905 0)
(0.983912 0.00787888 0)
(0.984881 0.0105339 0)
(0.986041 0.0129846 0)
(0.987357 0.0152182 0)
(0.988788 0.0172285 0)
(0.990298 0.0190164 0)
(0.99185 0.0205891 0)
(0.993412 0.0219595 0)
(0.994957 0.0231455 0)
(0.996463 0.0241688 0)
(0.997912 0.0250533 0)
(0.999294 0.0258241 0)
(1.0006 0.0265063 0)
(1.00184 0.0271227 0)
(1.00302 0.0276941 0)
(1.00413 0.0282369 0)
(1.00521 0.0287643 0)
(1.00624 0.0292835 0)
(1.00726 0.0297997 0)
(1.01007 0.0150105 0)
(1.01034 0.0154039 0)
(1.01064 0.0158064 0)
(1.01097 0.0162162 0)
(1.01134 0.0166314 0)
(1.01174 0.0170496 0)
(1.01218 0.0174681 0)
(1.01266 0.0178836 0)
(1.01318 0.0182927 0)
(1.01374 0.0186913 0)
(1.01435 0.019075 0)
(1.015 0.0194391 0)
(1.01569 0.0197786 0)
(1.01643 0.0200881 0)
(1.01721 0.0203624 0)
(1.01803 0.0205959 0)
(1.01888 0.0207834 0)
(1.01977 0.0209201 0)
(1.02068 0.0210014 0)
(1.02162 0.0210236 0)
(1.02258 0.0209838 0)
(1.02354 0.0208801 0)
(1.02451 0.0207117 0)
(1.02547 0.0204789 0)
(1.02642 0.0201833 0)
(1.02736 0.0198277 0)
(1.02828 0.0194156 0)
(1.02917 0.0189516 0)
(1.03004 0.0184406 0)
(1.03088 0.0178876 0)
(1.03169 0.0172973 0)
(1.03248 0.0166737 0)
(1.03324 0.0160199 0)
(1.03399 0.0153371 0)
(1.03473 0.0146249 0)
(1.03546 0.0138809 0)
(1.03618 0.0131001 0)
(1.03691 0.0122756 0)
(1.03765 0.0113982 0)
(1.03839 0.0104569 0)
(1.03914 0.00943898 0)
(1.03988 0.00833102 0)
(1.04061 0.00711906 0)
(1.04132 0.00578971 0)
(1.04199 0.00433094 0)
(1.0426 0.00273266 0)
(1.04312 0.00098836 0)
(1.04353 -0.000904265 0)
(1.0438 -0.00294242 0)
(1.04389 -0.00511745 0)
(1.04378 -0.00741402 0)
(1.04343 -0.00980974 0)
(1.04281 -0.0122752 0)
(1.0419 -0.0147744 0)
(1.04069 -0.0172654 0)
(1.03916 -0.0197015 0)
(1.03731 -0.022033 0)
(1.03514 -0.024209 0)
(1.03268 -0.0261795 0)
(1.02995 -0.0278974 0)
(1.02699 -0.0293204 0)
(1.02383 -0.0304129 0)
(1.02053 -0.0311467 0)
(1.01713 -0.0315026 0)
(1.01369 -0.0314701 0)
(1.01027 -0.0310475 0)
(1.0069 -0.0302419 0)
(1.00366 -0.029068 0)
(1.00057 -0.0275475 0)
(0.997686 -0.0257082 0)
(0.995038 -0.0235829 0)
(0.992658 -0.0212084 0)
(0.990569 -0.0186242 0)
(0.988788 -0.0158723 0)
(0.987328 -0.0129951 0)
(0.986192 -0.0100357 0)
(0.98538 -0.00703651 0)
(0.984886 -0.00403762 0)
(0.984696 -0.00107819 0)
(0.984793 0.00180616 0)
(0.985157 0.0045838 0)
(0.98576 0.00722675 0)
(0.986575 0.00971198 0)
(0.987569 0.0120218 0)
(0.988709 0.0141443 0)
(0.989964 0.0160733 0)
(0.991299 0.0178083 0)
(0.992684 0.0193543 0)
(0.994091 0.0207214 0)
(0.995496 0.0219237 0)
(0.996878 0.0229786 0)
(0.998223 0.0239057 0)
(0.99952 0.0247256 0)
(1.00076 0.0254589 0)
(1.00195 0.0261249 0)
(1.00309 0.0267412 0)
(1.00418 0.0273219 0)
(1.00524 0.0278787 0)
(1.00627 0.0284193 0)
(1.00728 0.0289484 0)
(1.01003 0.0147854 0)
(1.0103 0.0151546 0)
(1.01061 0.0155312 0)
(1.01094 0.0159134 0)
(1.01131 0.0162993 0)
(1.01171 0.0166865 0)
(1.01214 0.0170724 0)
(1.01262 0.0174541 0)
(1.01313 0.0178281 0)
(1.01368 0.0181909 0)
(1.01427 0.0185384 0)
(1.0149 0.0188662 0)
(1.01557 0.0191698 0)
(1.01628 0.0194446 0)
(1.01702 0.0196856 0)
(1.0178 0.0198882 0)
(1.01862 0.0200477 0)
(1.01946 0.0201599 0)
(1.02033 0.0202209 0)
(1.02121 0.0202275 0)
(1.02211 0.0201771 0)
(1.02302 0.0200681 0)
(1.02394 0.0198998 0)
(1.02485 0.0196723 0)
(1.02575 0.0193868 0)
(1.02664 0.0190456 0)
(1.02751 0.0186514 0)
(1.02836 0.0182077 0)
(1.02919 0.0177183 0)
(1.02999 0.0171872 0)
(1.03078 0.0166179 0)
(1.03153 0.0160133 0)
(1.03227 0.0153756 0)
(1.03299 0.0147054 0)
(1.0337 0.014002 0)
(1.0344 0.0132631 0)
(1.03509 0.0124843 0)
(1.03578 0.0116596 0)
(1.03647 0.0107814 0)
(1.03715 0.00984049 0)
(1.03783 0.00882665 0)
(1.03849 0.00772898 0)
(1.03913 0.00653655 0)
(1.03974 0.00523905 0)
(1.04031 0.00382754 0)
(1.0408 0.002295 0)
(1.04121 0.00063747 0)
(1.04151 -0.00114533 0)
(1.04166 -0.00304907 0)
(1.04166 -0.00506445 0)
(1.04146 -0.00717664 0)
(1.04105 -0.00936494 0)
(1.0404 -0.0116029 0)
(1.03949 -0.0138586 0)
(1.03831 -0.0160956 0)
(1.03685 -0.0182736 0)
(1.03511 -0.0203498 0)
(1.0331 -0.0222808 0)
(1.03083 -0.024024 0)
(1.02833 -0.0255391 0)
(1.02562 -0.0267902 0)
(1.02275 -0.0277464 0)
(1.01974 -0.0283838 0)
(1.01666 -0.0286852 0)
(1.01354 -0.0286413 0)
(1.01043 -0.0282501 0)
(1.00737 -0.027517 0)
(1.00442 -0.0264545 0)
(1.00161 -0.0250807 0)
(0.998968 -0.0234196 0)
(0.996541 -0.0214994 0)
(0.994349 -0.019352 0)
(0.992415 -0.0170123 0)
(0.990756 -0.0145166 0)
(0.989381 -0.0119027 0)
(0.988297 -0.00920846 0)
(0.987502 -0.00647128 0)
(0.986993 -0.0037268 0)
(0.986757 -0.00101059 0)
(0.986781 0.0016463 0)
(0.987047 0.00421545 0)
(0.987532 0.00667189 0)
(0.988211 0.00899487 0)
(0.989057 0.0111683 0)
(0.990043 0.0131808 0)
(0.991139 0.0150262 0)
(0.992317 0.0167028 0)
(0.993551 0.0182141 0)
(0.994816 0.0195674 0)
(0.996091 0.0207739 0)
(0.997358 0.0218472 0)
(0.998603 0.0228033 0)
(0.999817 0.0236589 0)
(1.00099 0.024431 0)
(1.00213 0.0251355 0)
(1.00323 0.0257873 0)
(1.00429 0.0263988 0)
(1.00533 0.0269802 0)
(1.00634 0.0275391 0)
(1.00734 0.0280798 0)
(1.00998 0.0145478 0)
(1.01026 0.0148933 0)
(1.01057 0.0152446 0)
(1.01091 0.0155999 0)
(1.01127 0.0159573 0)
(1.01167 0.0163146 0)
(1.0121 0.0166693 0)
(1.01257 0.0170187 0)
(1.01307 0.0173596 0)
(1.01361 0.0176886 0)
(1.01418 0.018002 0)
(1.01479 0.0182959 0)
(1.01543 0.0185662 0)
(1.01611 0.0188087 0)
(1.01683 0.0190191 0)
(1.01757 0.0191933 0)
(1.01835 0.0193272 0)
(1.01915 0.019417 0)
(1.01997 0.0194596 0)
(1.0208 0.0194519 0)
(1.02166 0.0193918 0)
(1.02252 0.0192778 0)
(1.02338 0.0191093 0)
(1.02424 0.0188862 0)
(1.02509 0.0186095 0)
(1.02593 0.0182808 0)
(1.02676 0.0179022 0)
(1.02757 0.0174764 0)
(1.02836 0.0170064 0)
(1.02913 0.0164951 0)
(1.02988 0.0159451 0)
(1.0306 0.0153585 0)
(1.03131 0.0147368 0)
(1.03201 0.0140802 0)
(1.03268 0.0133878 0)
(1.03335 0.0126574 0)
(1.034 0.0118853 0)
(1.03465 0.0110664 0)
(1.03528 0.0101943 0)
(1.03591 0.00926164 0)
(1.03652 0.00826021 0)
(1.03711 0.00718151 0)
(1.03767 0.00601711 0)
(1.03819 0.00475931 0)
(1.03865 0.0034014 0)
(1.03905 0.00193948 0)
(1.03935 0.000371201 0)
(1.03955 -0.00130222 0)
(1.03962 -0.00307502 0)
(1.03953 -0.00493767 0)
(1.03927 -0.00687611 0)
(1.03881 -0.00887133 0)
(1.03814 -0.0108996 0)
(1.03724 -0.0129329 0)
(1.0361 -0.0149393 0)
(1.03471 -0.0168841 0)
(1.03308 -0.0187307 0)
(1.03122 -0.0204421 0)
(1.02913 -0.0219818 0)
(1.02683 -0.0233157 0)
(1.02436 -0.024413 0)
(1.02175 -0.0252474 0)
(1.01902 -0.0257983 0)
(1.01622 -0.0260507 0)
(1.01339 -0.0259962 0)
(1.01057 -0.0256329 0)
(1.0078 -0.024965 0)
(1.00512 -0.0240027 0)
(1.00255 -0.0227616 0)
(1.00015 -0.021262 0)
(0.997925 -0.0195281 0)
(0.99591 -0.0175878 0)
(0.994125 -0.0154712 0)
(0.992581 -0.0132101 0)
(0.991292 -0.010838 0)
(0.99026 -0.00838777 0)
(0.989488 -0.00589223 0)
(0.988971 -0.00338458 0)
(0.988699 -0.000894123 0)
(0.988662 0.00155112 0)
(0.988845 0.00392516 0)
(0.989227 0.0062056 0)
(0.989788 0.0083739 0)
(0.990505 0.0104153 0)
(0.991353 0.0123193 0)
(0.992307 0.0140793 0)
(0.993345 0.0156933 0)
(0.994442 0.017163 0)
(0.995578 0.0184936 0)
(0.996734 0.0196937 0)
(0.997893 0.0207739 0)
(0.999044 0.0217469 0)
(1.00018 0.0226262 0)
(1.00129 0.0234258 0)
(1.00237 0.0241588 0)
(1.00342 0.0248376 0)
(1.00445 0.0254731 0)
(1.00546 0.0260738 0)
(1.00645 0.0266475 0)
(1.00743 0.0271976 0)
(1.00994 0.0142983 0)
(1.01022 0.0146206 0)
(1.01053 0.0149472 0)
(1.01087 0.0152764 0)
(1.01124 0.0156063 0)
(1.01163 0.0159349 0)
(1.01206 0.0162599 0)
(1.01251 0.0165785 0)
(1.013 0.016888 0)
(1.01353 0.0171852 0)
(1.01408 0.0174667 0)
(1.01467 0.017729 0)
(1.01529 0.0179684 0)
(1.01594 0.0181811 0)
(1.01662 0.0183633 0)
(1.01733 0.0185115 0)
(1.01807 0.0186219 0)
(1.01883 0.0186915 0)
(1.01961 0.0187171 0)
(1.0204 0.0186964 0)
(1.0212 0.0186275 0)
(1.02201 0.0185089 0)
(1.02283 0.0183399 0)
(1.02364 0.0181206 0)
(1.02444 0.0178515 0)
(1.02524 0.0175338 0)
(1.02603 0.0171691 0)
(1.02679 0.0167594 0)
(1.02755 0.0163069 0)
(1.02828 0.0158137 0)
(1.02899 0.0152818 0)
(1.02969 0.0147127 0)
(1.03036 0.0141072 0)
(1.03102 0.0134653 0)
(1.03167 0.0127861 0)
(1.03229 0.0120675 0)
(1.03291 0.0113064 0)
(1.03351 0.0104986 0)
(1.03409 0.00963892 0)
(1.03466 0.00872146 0)
(1.03521 0.00773978 0)
(1.03573 0.00668732 0)
(1.03621 0.00555782 0)
(1.03665 0.00434582 0)
(1.03703 0.00304695 0)
(1.03734 0.00165879 0)
(1.03756 0.000181025 0)
(1.03767 -0.0013839 0)
(1.03766 -0.00302974 0)
(1.03751 -0.00474699 0)
(1.0372 -0.00652228 0)
(1.03671 -0.00833825 0)
(1.03603 -0.0101737 0)
(1.03514 -0.012004 0)
(1.03405 -0.0138014 0)
(1.03274 -0.015536 0)
(1.03121 -0.0171764 0)
(1.02948 -0.018691 0)
(1.02756 -0.0200489 0)
(1.02546 -0.0212211 0)
(1.0232 -0.0221812 0)
(1.02083 -0.0229071 0)
(1.01835 -0.0233807 0)
(1.01582 -0.0235893 0)
(1.01325 -0.0235255 0)
(1.0107 -0.0231873 0)
(1.00819 -0.0225779 0)
(1.00575 -0.021706 0)
(1.00342 -0.0205846 0)
(1.00123 -0.0192311 0)
(0.999198 -0.0176663 0)
(0.99735 -0.0159143 0)
(0.995704 -0.014001 0)
(0.994273 -0.0119546 0)
(0.993066 -0.0098035 0)
(0.992089 -0.00757735 0)
(0.991342 -0.00530513 0)
(0.990823 -0.0030155 0)
(0.990526 -0.000734144 0)
(0.990441 0.00151362 0)
(0.990553 0.00370464 0)
(0.990847 0.00581899 0)
(0.991305 0.00783997 0)
(0.991908 0.00975408 0)
(0.992635 0.0115513 0)
(0.993464 0.0132253 0)
(0.994376 0.0147732 0)
(0.995351 0.0161956 0)
(0.996369 0.0174959 0)
(0.997415 0.0186803 0)
(0.998474 0.0197573 0)
(0.999535 0.0207367 0)
(1.00059 0.0216292 0)
(1.00163 0.0224462 0)
(1.00266 0.0231985 0)
(1.00367 0.0238962 0)
(1.00466 0.024549 0)
(1.00564 0.0251639 0)
(1.0066 0.0257484 0)
(1.00756 0.0263054 0)
(1.0099 0.0140377 0)
(1.01019 0.0143373 0)
(1.0105 0.0146399 0)
(1.01083 0.0149438 0)
(1.0112 0.0152473 0)
(1.01159 0.0155484 0)
(1.01201 0.015845 0)
(1.01245 0.0161346 0)
(1.01293 0.0164144 0)
(1.01344 0.0166817 0)
(1.01398 0.0169334 0)
(1.01454 0.0171663 0)
(1.01514 0.017377 0)
(1.01576 0.0175622 0)
(1.01641 0.0177186 0)
(1.01709 0.0178429 0)
(1.01779 0.017932 0)
(1.01851 0.017983 0)
(1.01924 0.0179933 0)
(1.01999 0.0179608 0)
(1.02075 0.0178838 0)
(1.02152 0.0177609 0)
(1.02228 0.0175916 0)
(1.02305 0.0173755 0)
(1.02381 0.0171132 0)
(1.02456 0.0168053 0)
(1.02531 0.0164531 0)
(1.02603 0.016058 0)
(1.02675 0.0156216 0)
(1.02744 0.0151454 0)
(1.02812 0.0146309 0)
(1.02878 0.014079 0)
(1.02942 0.0134902 0)
(1.03005 0.0128643 0)
(1.03065 0.0122003 0)
(1.03124 0.0114966 0)
(1.03182 0.0107505 0)
(1.03237 0.00995858 0)
(1.03291 0.00911675 0)
(1.03342 0.00822044 0)
(1.03391 0.00726471 0)
(1.03436 0.00624476 0)
(1.03478 0.00515599 0)
(1.03514 0.00399471 0)
(1.03545 0.00275853 0)
(1.03568 0.00144597 0)
(1.03582 5.86827e-05 0)
(1.03587 -0.00139969 0)
(1.0358 -0.00292315 0)
(1.03559 -0.00450242 0)
(1.03524 -0.00612488 0)
(1.03474 -0.00777474 0)
(1.03405 -0.00943314 0)
(1.03319 -0.0110784 0)
(1.03214 -0.0126865 0)
(1.03091 -0.0142317 0)
(1.02948 -0.0156871 0)
(1.02788 -0.0170259 0)
(1.02611 -0.0182216 0)
(1.02419 -0.0192497 0)
(1.02214 -0.0200879 0)
(1.01998 -0.0207171 0)
(1.01774 -0.0211222 0)
(1.01544 -0.021292 0)
(1.01312 -0.02122 0)
(1.01081 -0.0209044 0)
(1.00854 -0.0203479 0)
(1.00633 -0.0195574 0)
(1.00422 -0.018544 0)
(1.00222 -0.0173226 0)
(1.00037 -0.015911 0)
(0.998676 -0.0143298 0)
(0.997161 -0.0126017 0)
(0.995837 -0.0107507 0)
(0.994711 -0.0088021 0)
(0.993789 -0.00678133 0)
(0.993072 -0.00471421 0)
(0.992558 -0.00262456 0)
(0.992243 -0.000536751 0)
(0.992118 0.00152688 0)
(0.992172 0.00354645 0)
(0.992391 0.00550424 0)
(0.992761 0.00738504 0)
(0.993265 0.00917646 0)
(0.993886 0.0108691 0)
(0.994605 0.0124568 0)
(0.995405 0.013936 0)
(0.996268 0.0153063 0)
(0.99718 0.0165699 0)
(0.998125 0.0177311 0)
(0.999092 0.0187961 0)
(1.00007 0.0197726 0)
(1.00105 0.020669 0)
(1.00203 0.0214943 0)
(1.003 0.0222575 0)
(1.00396 0.0229669 0)
(1.00491 0.0236305 0)
(1.00586 0.0242545 0)
(1.00679 0.0248458 0)
(1.00773 0.0254066 0)
(1.00986 0.0137665 0)
(1.01014 0.0140441 0)
(1.01046 0.0143234 0)
(1.01079 0.014603 0)
(1.01115 0.0148812 0)
(1.01154 0.0151561 0)
(1.01195 0.0154257 0)
(1.01238 0.0156877 0)
(1.01285 0.0159397 0)
(1.01334 0.0161791 0)
(1.01386 0.0164029 0)
(1.01441 0.0166085 0)
(1.01498 0.0167927 0)
(1.01558 0.0169527 0)
(1.0162 0.0170854 0)
(1.01684 0.0171879 0)
(1.0175 0.0172575 0)
(1.01818 0.0172917 0)
(1.01888 0.0172881 0)
(1.01959 0.0172449 0)
(1.0203 0.0171606 0)
(1.02102 0.0170339 0)
(1.02175 0.0168641 0)
(1.02247 0.016651 0)
(1.02319 0.0163948 0)
(1.0239 0.0160959 0)
(1.0246 0.0157552 0)
(1.02529 0.0153736 0)
(1.02596 0.0149523 0)
(1.02662 0.0144924 0)
(1.02726 0.0139948 0)
(1.02788 0.0134601 0)
(1.02849 0.0128887 0)
(1.02908 0.0122801 0)
(1.02965 0.0116335 0)
(1.0302 0.0109475 0)
(1.03073 0.0102199 0)
(1.03124 0.00944805 0)
(1.03173 0.0086288 0)
(1.03219 0.00775865 0)
(1.03262 0.00683405 0)
(1.03302 0.00585156 0)
(1.03337 0.00480817 0)
(1.03367 0.00370147 0)
(1.0339 0.0025303 0)
(1.03407 0.0012953 0)
(1.03415 -1.9224e-06 0)
(1.03414 -0.00135705 0)
(1.03402 -0.00276361 0)
(1.03378 -0.0042126 0)
(1.0334 -0.00569238 0)
(1.03288 -0.0071887 0)
(1.03221 -0.00868483 0)
(1.03137 -0.0101618 0)
(1.03038 -0.0115987 0)
(1.02921 -0.0129735 0)
(1.02789 -0.0142631 0)
(1.02641 -0.0154448 0)
(1.02479 -0.0164961 0)
(1.02303 -0.0173961 0)
(1.02117 -0.0181261 0)
(1.01921 -0.0186697 0)
(1.01717 -0.0190141 0)
(1.0151 -0.0191497 0)
(1.013 -0.019071 0)
(1.01091 -0.018776 0)
(1.00886 -0.0182671 0)
(1.00686 -0.0175501 0)
(1.00494 -0.0166342 0)
(1.00313 -0.0155321 0)
(1.00144 -0.0142591 0)
(0.999895 -0.0128327 0)
(0.998505 -0.0112727 0)
(0.997282 -0.00959959 0)
(0.996234 -0.00783564 0)
(0.995367 -0.00600286 0)
(0.994683 -0.00412328 0)
(0.99418 -0.00221897 0)
(0.993854 -0.000310753 0)
(0.993698 0.00158233 0)
(0.993704 0.00344216 0)
(0.993861 0.0052528 0)
(0.994156 0.00700058 0)
(0.994574 0.0086742 0)
(0.995102 0.0102649 0)
(0.995724 0.0117665 0)
(0.996424 0.0131753 0)
(0.997189 0.01449 0)
(0.998005 0.0157116 0)
(0.998858 0.0168429 0)
(0.999739 0.0178885 0)
(1.00064 0.0188541 0)
(1.00155 0.0197462 0)
(1.00246 0.0205719 0)
(1.00338 0.0213385 0)
(1.00429 0.0220526 0)
(1.0052 0.0227212 0)
(1.00611 0.0233492 0)
(1.00702 0.023943 0)
(1.00792 0.0245043 0)
(1.00981 0.0134856 0)
(1.0101 0.0137417 0)
(1.01041 0.0139986 0)
(1.01074 0.0142549 0)
(1.0111 0.0145089 0)
(1.01148 0.0147588 0)
(1.01188 0.0150029 0)
(1.01231 0.015239 0)
(1.01276 0.0154648 0)
(1.01323 0.015678 0)
(1.01373 0.0158761 0)
(1.01426 0.0160563 0)
(1.01481 0.0162162 0)
(1.01538 0.0163529 0)
(1.01597 0.0164639 0)
(1.01658 0.0165465 0)
(1.01721 0.0165985 0)
(1.01786 0.0166174 0)
(1.01851 0.0166013 0)
(1.01918 0.0165486 0)
(1.01986 0.0164577 0)
(1.02054 0.0163276 0)
(1.02122 0.0161576 0)
(1.0219 0.0159474 0)
(1.02257 0.0156969 0)
(1.02324 0.0154064 0)
(1.0239 0.0150764 0)
(1.02455 0.0147076 0)
(1.02519 0.0143008 0)
(1.02581 0.0138566 0)
(1.02641 0.0133758 0)
(1.027 0.0128586 0)
(1.02757 0.0123052 0)
(1.02812 0.0117153 0)
(1.02865 0.011088 0)
(1.02917 0.0104222 0)
(1.02966 0.00971629 0)
(1.03012 0.00896815 0)
(1.03056 0.00817548 0)
(1.03098 0.00733575 0)
(1.03135 0.00644653 0)
(1.03169 0.0055054 0)
(1.03199 0.00451069 0)
(1.03223 0.00346133 0)
(1.03241 0.00235704 0)
(1.03252 0.00119925 0)
(1.03255 -9.57673e-06 0)
(1.03249 -0.00126459 0)
(1.03233 -0.0025595 0)
(1.03206 -0.0038858 0)
(1.03167 -0.00523273 0)
(1.03114 -0.00658744 0)
(1.03048 -0.00793509 0)
(1.02968 -0.00925911 0)
(1.02874 -0.0105415 0)
(1.02765 -0.0117631 0)
(1.02642 -0.0129044 0)
(1.02506 -0.013946 0)
(1.02357 -0.0148689 0)
(1.02197 -0.0156553 0)
(1.02027 -0.0162894 0)
(1.01849 -0.0167574 0)
(1.01666 -0.0170484 0)
(1.01478 -0.0171541 0)
(1.01289 -0.0170699 0)
(1.011 -0.016794 0)
(1.00914 -0.0163282 0)
(1.00734 -0.0156773 0)
(1.0056 -0.0148494 0)
(1.00396 -0.013855 0)
(1.00242 -0.0127072 0)
(1.00101 -0.011421 0)
(0.999741 -0.0100133 0)
(0.998615 -0.00850206 0)
(0.997643 -0.00690613 0)
(0.996831 -0.00524489 0)
(0.996181 -0.00353758 0)
(0.995692 -0.0018034 0)
(0.995362 -6.04113e-05 0)
(0.995185 0.00167436 0)
(0.995153 0.003385 0)
(0.995258 0.00505731 0)
(0.995488 0.00667897 0)
(0.995834 0.00823969 0)
(0.996281 0.00973126 0)
(0.996817 0.0111477 0)
(0.99743 0.012485 0)
(0.998107 0.0137413 0)
(0.998836 0.0149167 0)
(0.999606 0.0160128 0)
(1.00041 0.0170326 0)
(1.00123 0.0179804 0)
(1.00208 0.0188611 0)
(1.00293 0.0196802 0)
(1.00379 0.0204434 0)
(1.00465 0.021156 0)
(1.00552 0.0218239 0)
(1.00639 0.022451 0)
(1.00727 0.0230433 0)
(1.00815 0.0236017 0)
(1.00977 0.0131956 0)
(1.01005 0.0134311 0)
(1.01036 0.0136665 0)
(1.01069 0.0139003 0)
(1.01104 0.0141312 0)
(1.01141 0.0143576 0)
(1.0118 0.0145776 0)
(1.01222 0.0147893 0)
(1.01266 0.0149906 0)
(1.01312 0.0151795 0)
(1.0136 0.0153535 0)
(1.0141 0.0155104 0)
(1.01463 0.0156478 0)
(1.01517 0.0157633 0)
(1.01574 0.0158545 0)
(1.01632 0.0159191 0)
(1.01692 0.015955 0)
(1.01752 0.0159603 0)
(1.01815 0.015933 0)
(1.01878 0.0158717 0)
(1.01941 0.0157751 0)
(1.02005 0.0156421 0)
(1.02069 0.0154722 0)
(1.02133 0.0152648 0)
(1.02197 0.0150198 0)
(1.0226 0.0147373 0)
(1.02322 0.0144176 0)
(1.02383 0.0140612 0)
(1.02443 0.0136684 0)
(1.02501 0.0132399 0)
(1.02558 0.0127758 0)
(1.02613 0.0122766 0)
(1.02666 0.0117421 0)
(1.02718 0.011172 0)
(1.02767 0.0105658 0)
(1.02814 0.00992256 0)
(1.02859 0.00924098 0)
(1.02902 0.00851962 0)
(1.02942 0.00775681 0)
(1.02978 0.00695091 0)
(1.03011 0.00610029 0)
(1.0304 0.00520368 0)
(1.03064 0.00426024 0)
(1.03083 0.00326973 0)
(1.03097 0.00223312 0)
(1.03103 0.00115154 0)
(1.03102 2.86387e-05 0)
(1.03092 -0.00113001 0)
(1.03073 -0.00231888 0)
(1.03044 -0.00353002 0)
(1.03003 -0.00475351 0)
(1.02952 -0.00597779 0)
(1.02888 -0.00718979 0)
(1.02811 -0.00837501 0)
(1.02722 -0.00951788 0)
(1.02621 -0.010602 0)
(1.02507 -0.0116108 0)
(1.02381 -0.0125276 0)
(1.02245 -0.0133365 0)
(1.02099 -0.0140224 0)
(1.01945 -0.0145718 0)
(1.01784 -0.0149733 0)
(1.01618 -0.0152173 0)
(1.01449 -0.0152972 0)
(1.01278 -0.0152087 0)
(1.01108 -0.0149503 0)
(1.0094 -0.0145236 0)
(1.00777 -0.0139326 0)
(1.0062 -0.013184 0)
(1.00472 -0.0122867 0)
(1.00332 -0.0112519 0)
(1.00204 -0.0100924 0)
(1.00088 -0.00882269 0)
(0.999842 -0.00745826 0)
(0.998944 -0.0060153 0)
(0.998187 -0.0045106 0)
(0.997573 -0.0029608 0)
(0.997102 -0.00138242 0)
(0.996773 0.00020825 0)
(0.99658 0.00179622 0)
(0.996519 0.00336782 0)
(0.996581 0.00491036 0)
(0.996759 0.00641272 0)
(0.997042 0.00786551 0)
(0.99742 0.00926108 0)
(0.997882 0.0105936 0)
(0.998417 0.0118591 0)
(0.999016 0.0130551 0)
(0.999667 0.014181 0)
(1.00036 0.0152374 0)
(1.00109 0.0162262 0)
(1.00185 0.0171504 0)
(1.00263 0.0180136 0)
(1.00342 0.0188198 0)
(1.00423 0.0195737 0)
(1.00505 0.0202792 0)
(1.00587 0.0209413 0)
(1.00671 0.021563 0)
(1.00755 0.0221497 0)
(1.00839 0.0227017 0)
(1.00972 0.0128974 0)
(1.01 0.013113 0)
(1.01031 0.0133277 0)
(1.01063 0.0135403 0)
(1.01098 0.0137493 0)
(1.01134 0.0139533 0)
(1.01172 0.0141506 0)
(1.01213 0.0143394 0)
(1.01255 0.014518 0)
(1.01299 0.0146842 0)
(1.01346 0.0148361 0)
(1.01394 0.0149715 0)
(1.01444 0.0150883 0)
(1.01496 0.0151843 0)
(1.0155 0.0152575 0)
(1.01605 0.0153058 0)
(1.01661 0.0153273 0)
(1.01719 0.0153203 0)
(1.01778 0.0152831 0)
(1.01837 0.0152143 0)
(1.01897 0.0151128 0)
(1.01957 0.0149776 0)
(1.02017 0.014808 0)
(1.02077 0.0146035 0)
(1.02137 0.014364 0)
(1.02196 0.0140894 0)
(1.02254 0.0137798 0)
(1.02312 0.0134355 0)
(1.02368 0.0130566 0)
(1.02422 0.0126436 0)
(1.02475 0.0121966 0)
(1.02527 0.0117157 0)
(1.02577 0.011201 0)
(1.02624 0.010652 0)
(1.0267 0.0100685 0)
(1.02714 0.00944966 0)
(1.02755 0.0087947 0)
(1.02793 0.00810263 0)
(1.02829 0.00737239 0)
(1.02861 0.00660298 0)
(1.02889 0.0057935 0)
(1.02914 0.0049435 0)
(1.02934 0.00405282 0)
(1.02948 0.00312201 0)
(1.02957 0.00215253 0)
(1.0296 0.00114703 0)
(1.02955 0.000108544 0)
(1.02942 -0.000958759 0)
(1.02921 -0.00204794 0)
(1.02891 -0.00315158 0)
(1.0285 -0.00426082 0)
(1.02799 -0.00536538 0)
(1.02738 -0.00645373 0)
(1.02665 -0.00751325 0)
(1.02582 -0.00853051 0)
(1.02487 -0.00949148 0)
(1.02382 -0.0103819 0)
(1.02267 -0.0111878 0)
(1.02143 -0.0118956 0)
(1.0201 -0.0124926 0)
(1.0187 -0.0129675 0)
(1.01724 -0.0133105 0)
(1.01575 -0.0135136 0)
(1.01422 -0.0135712 0)
(1.01268 -0.0134796 0)
(1.01115 -0.0132377 0)
(1.00964 -0.0128465 0)
(1.00817 -0.0123096 0)
(1.00675 -0.0116324 0)
(1.00541 -0.0108227 0)
(1.00415 -0.00988978 0)
(1.00298 -0.00884478 0)
(1.00192 -0.00769987 0)
(1.00097 -0.00646842 0)
(1.00014 -0.00516444 0)
(0.999441 -0.00380223 0)
(0.998864 -0.00239654 0)
(0.998414 -0.000961467 0)
(0.99809 0.000488939 0)
(0.997889 0.00194149 0)
(0.997806 0.00338388 0)
(0.997834 0.00480493 0)
(0.997967 0.00619469 0)
(0.998198 0.00754458 0)
(0.998516 0.00884752 0)
(0.998914 0.0100979 0)
(0.999382 0.0112917 0)
(0.999911 0.0124262 0)
(1.00049 0.0135002 0)
(1.00112 0.0145134 0)
(1.00178 0.015467 0)
(1.00248 0.0163627 0)
(1.0032 0.0172032 0)
(1.00394 0.0179912 0)
(1.00469 0.0187305 0)
(1.00546 0.0194238 0)
(1.00625 0.0200755 0)
(1.00704 0.0206875 0)
(1.00784 0.0212648 0)
(1.00866 0.0218071 0)
(1.00967 0.0125917 0)
(1.00995 0.0127882 0)
(1.01025 0.0129833 0)
(1.01057 0.0131755 0)
(1.0109 0.0133638 0)
(1.01126 0.0135468 0)
(1.01163 0.0137228 0)
(1.01202 0.0138903 0)
(1.01243 0.0140476 0)
(1.01286 0.0141929 0)
(1.01331 0.0143244 0)
(1.01377 0.01444 0)
(1.01425 0.014538 0)
(1.01474 0.0146164 0)
(1.01525 0.0146733 0)
(1.01577 0.0147069 0)
(1.01631 0.0147156 0)
(1.01685 0.0146976 0)
(1.0174 0.0146516 0)
(1.01796 0.0145764 0)
(1.01853 0.0144708 0)
(1.01909 0.0143339 0)
(1.01966 0.0141651 0)
(1.02022 0.0139639 0)
(1.02078 0.0137301 0)
(1.02133 0.0134633 0)
(1.02188 0.0131638 0)
(1.02241 0.0128314 0)
(1.02294 0.0124665 0)
(1.02345 0.0120692 0)
(1.02394 0.0116395 0)
(1.02442 0.0111775 0)
(1.02488 0.0106833 0)
(1.02533 0.0101565 0)
(1.02575 0.00959701 0)
(1.02615 0.00900427 0)
(1.02652 0.00837781 0)
(1.02686 0.00771703 0)
(1.02718 0.00702141 0)
(1.02746 0.00629044 0)
(1.02771 0.00552392 0)
(1.02791 0.00472185 0)
(1.02807 0.00388478 0)
(1.02818 0.00301392 0)
(1.02824 0.0021108 0)
(1.02823 0.00117845 0)
(1.02815 0.000220422 0)
(1.028 -0.000759477 0)
(1.02778 -0.00175446 0)
(1.02746 -0.00275768 0)
(1.02706 -0.00376122 0)
(1.02657 -0.00475593 0)
(1.02598 -0.00573165 0)
(1.0253 -0.00667742 0)
(1.02452 -0.00758163 0)
(1.02364 -0.00843229 0)
(1.02267 -0.00921728 0)
(1.02162 -0.00992467 0)
(1.02048 -0.010543 0)
(1.01928 -0.0110616 0)
(1.01801 -0.0114709 0)
(1.0167 -0.0117627 0)
(1.01535 -0.0119304 0)
(1.01397 -0.0119689 0)
(1.01259 -0.0118754 0)
(1.01121 -0.0116488 0)
(1.00985 -0.01129 0)
(1.00853 -0.0108019 0)
(1.00725 -0.0101892 0)
(1.00604 -0.00945838 0)
(1.0049 -0.0086174 0)
(1.00384 -0.00767563 0)
(1.00288 -0.0066436 0)
(1.00201 -0.00553259 0)
(1.00125 -0.00435463 0)
(1.0006 -0.00312224 0)
(1.00006 -0.00184805 0)
(0.999633 -0.000544428 0)
(0.999319 0.000777469 0)
(0.999114 0.00210499 0)
(0.999015 0.00342735 0)
(0.999017 0.00473479 0)
(0.999114 0.0060184 0)
(0.999301 0.0072704 0)
(0.999569 0.00848424 0)
(0.999911 0.00965461 0)
(1.00032 0.0107774 0)
(1.00079 0.0118499 0)
(1.00131 0.0128702 0)
(1.00187 0.0138376 0)
(1.00248 0.0147525 0)
(1.00311 0.0156158 0)
(1.00378 0.0164291 0)
(1.00446 0.0171945 0)
(1.00517 0.0179145 0)
(1.0059 0.0185913 0)
(1.00664 0.0192283 0)
(1.00739 0.0198268 0)
(1.00816 0.0203912 0)
(1.00894 0.0209206 0)
(1.00961 0.0122793 0)
(1.00989 0.0124577 0)
(1.01019 0.012634 0)
(1.0105 0.0128071 0)
(1.01083 0.0129758 0)
(1.01117 0.0131389 0)
(1.01153 0.0132951 0)
(1.01191 0.0134428 0)
(1.01231 0.0135804 0)
(1.01272 0.0137064 0)
(1.01314 0.0138191 0)
(1.01359 0.0139167 0)
(1.01404 0.0139976 0)
(1.01451 0.01406 0)
(1.015 0.0141022 0)
(1.01549 0.0141227 0)
(1.016 0.0141198 0)
(1.01651 0.0140923 0)
(1.01703 0.0140387 0)
(1.01756 0.013958 0)
(1.01809 0.0138492 0)
(1.01862 0.0137113 0)
(1.01915 0.0135439 0)
(1.01967 0.0133463 0)
(1.0202 0.0131182 0)
(1.02072 0.0128595 0)
(1.02122 0.0125701 0)
(1.02172 0.0122499 0)
(1.02221 0.011899 0)
(1.02269 0.0115176 0)
(1.02315 0.0111056 0)
(1.02359 0.0106631 0)
(1.02402 0.0101901 0)
(1.02443 0.00968644 0)
(1.02481 0.00915208 0)
(1.02517 0.00858674 0)
(1.02551 0.00799021 0)
(1.02582 0.00736225 0)
(1.0261 0.0067027 0)
(1.02635 0.00601155 0)
(1.02656 0.00528902 0)
(1.02673 0.00453562 0)
(1.02685 0.00375235 0)
(1.02693 0.00294064 0)
(1.02695 0.00210267 0)
(1.02692 0.0012411 0)
(1.02682 0.000359654 0)
(1.02666 -0.000536976 0)
(1.02642 -0.00144348 0)
(1.02611 -0.00235344 0)
(1.02572 -0.00325962 0)
(1.02524 -0.00415387 0)
(1.02469 -0.00502728 0)
(1.02404 -0.00587031 0)
(1.02332 -0.00667298 0)
(1.02251 -0.00742501 0)
(1.02162 -0.00811611 0)
(1.02065 -0.00873615 0)
(1.01962 -0.00927547 0)
(1.01853 -0.00972507 0)
(1.01738 -0.0100769 0)
(1.0162 -0.0103241 0)
(1.01498 -0.010461 0)
(1.01374 -0.0104835 0)
(1.0125 -0.0103891 0)
(1.01126 -0.0101769 0)
(1.01004 -0.00984764 0)
(1.00885 -0.00940377 0)
(1.00771 -0.00884927 0)
(1.00661 -0.00818954 0)
(1.00558 -0.00743138 0)
(1.00463 -0.00658266 0)
(1.00375 -0.0056524 0)
(1.00296 -0.00465033 0)
(1.00227 -0.00358667 0)
(1.00167 -0.00247219 0)
(1.00117 -0.00131751 0)
(1.00076 -0.000133558 0)
(1.00046 0.00106963 0)
(1.00026 0.00228137 0)
(1.00015 0.00349231 0)
(1.00013 0.00469366 0)
(1.0002 0.00587743 0)
(1.00035 0.00703656 0)
(1.00058 0.00816503 0)
(1.00087 0.00925778 0)
(1.00123 0.0103108 0)
(1.00164 0.0113212 0)
(1.00211 0.0122869 0)
(1.00262 0.0132066 0)
(1.00317 0.0140802 0)
(1.00375 0.0149078 0)
(1.00436 0.0156905 0)
(1.005 0.0164293 0)
(1.00566 0.0171263 0)
(1.00634 0.0177827 0)
(1.00704 0.0184013 0)
(1.00776 0.0189828 0)
(1.00849 0.0195311 0)
(1.00923 0.0200447 0)
(1.00955 0.0119611 0)
(1.00982 0.0121222 0)
(1.01011 0.0122807 0)
(1.01042 0.0124357 0)
(1.01074 0.0125861 0)
(1.01108 0.0127307 0)
(1.01143 0.0128683 0)
(1.01179 0.0129976 0)
(1.01217 0.0131171 0)
(1.01257 0.0132253 0)
(1.01298 0.0133208 0)
(1.0134 0.013402 0)
(1.01383 0.0134674 0)
(1.01428 0.0135153 0)
(1.01474 0.0135445 0)
(1.01521 0.0135532 0)
(1.01568 0.0135403 0)
(1.01617 0.0135045 0)
(1.01666 0.0134445 0)
(1.01715 0.0133593 0)
(1.01765 0.013248 0)
(1.01814 0.0131099 0)
(1.01864 0.0129443 0)
(1.01913 0.0127507 0)
(1.01962 0.0125289 0)
(1.02011 0.0122784 0)
(1.02058 0.0119993 0)
(1.02105 0.0116915 0)
(1.0215 0.0113549 0)
(1.02194 0.0109896 0)
(1.02237 0.0105956 0)
(1.02278 0.0101731 0)
(1.02317 0.00972195 0)
(1.02354 0.00924224 0)
(1.0239 0.00873393 0)
(1.02422 0.00819701 0)
(1.02453 0.00763147 0)
(1.0248 0.00703737 0)
(1.02505 0.00641488 0)
(1.02526 0.00576435 0)
(1.02544 0.0050863 0)
(1.02558 0.00438168 0)
(1.02568 0.00365168 0)
(1.02573 0.0028981 0)
(1.02573 0.00212324 0)
(1.02567 0.00133001 0)
(1.02556 0.000521862 0)
(1.02539 -0.000296844 0)
(1.02515 -0.00112079 0)
(1.02484 -0.00194431 0)
(1.02446 -0.00276094 0)
(1.02401 -0.00356346 0)
(1.02348 -0.00434404 0)
(1.02288 -0.00509441 0)
(1.02221 -0.00580597 0)
(1.02146 -0.00646996 0)
(1.02064 -0.00707758 0)
(1.01977 -0.00762029 0)
(1.01883 -0.00808991 0)
(1.01784 -0.0084789 0)
(1.01681 -0.00878047 0)
(1.01574 -0.00898883 0)
(1.01464 -0.00909928 0)
(1.01353 -0.00910838 0)
(1.01242 -0.00901399 0)
(1.01131 -0.00881537 0)
(1.01021 -0.00851314 0)
(1.00915 -0.00810936 0)
(1.00812 -0.00760733 0)
(1.00714 -0.00701173 0)
(1.00621 -0.0063282 0)
(1.00535 -0.00556354 0)
(1.00455 -0.00472522 0)
(1.00384 -0.00382148 0)
(1.0032 -0.00286126 0)
(1.00265 -0.00185365 0)
(1.00219 -0.000808061 0)
(1.00181 0.000266864 0)
(1.00153 0.00136105 0)
(1.00133 0.00246612 0)
(1.00121 0.00357381 0)
(1.00118 0.00467622 0)
(1.00123 0.00576622 0)
(1.00135 0.00683742 0)
(1.00154 0.00788429 0)
(1.00179 0.00890206 0)
(1.0021 0.00988688 0)
(1.00247 0.0108357 0)
(1.00289 0.0117463 0)
(1.00335 0.0126171 0)
(1.00385 0.0134475 0)
(1.00438 0.014237 0)
(1.00495 0.0149861 0)
(1.00554 0.0156954 0)
(1.00616 0.016366 0)
(1.00679 0.0169988 0)
(1.00745 0.0175958 0)
(1.00813 0.0181573 0)
(1.00882 0.0186866 0)
(1.00954 0.0191819 0)
(1.00948 0.0116379 0)
(1.00975 0.0117825 0)
(1.01004 0.0119242 0)
(1.01033 0.0120622 0)
(1.01065 0.0121954 0)
(1.01097 0.0123228 0)
(1.01131 0.0124432 0)
(1.01166 0.0125555 0)
(1.01203 0.0126583 0)
(1.01241 0.0127503 0)
(1.0128 0.0128301 0)
(1.0132 0.0128964 0)
(1.01361 0.0129478 0)
(1.01404 0.0129829 0)
(1.01447 0.0130004 0)
(1.01492 0.0129989 0)
(1.01536 0.0129772 0)
(1.01582 0.0129342 0)
(1.01628 0.0128689 0)
(1.01674 0.0127802 0)
(1.01721 0.0126674 0)
(1.01767 0.0125297 0)
(1.01814 0.0123666 0)
(1.0186 0.0121775 0)
(1.01906 0.0119622 0)
(1.0195 0.0117204 0)
(1.01995 0.0114519 0)
(1.02038 0.0111566 0)
(1.0208 0.0108345 0)
(1.02121 0.0104857 0)
(1.0216 0.0101102 0)
(1.02198 0.00970802 0)
(1.02234 0.00927928 0)
(1.02268 0.00882406 0)
(1.023 0.00834248 0)
(1.0233 0.00783466 0)
(1.02357 0.00730081 0)
(1.02382 0.00674121 0)
(1.02403 0.00615629 0)
(1.02422 0.00554662 0)
(1.02437 0.00491307 0)
(1.02448 0.00425674 0)
(1.02455 0.00357917 0)
(1.02458 0.00288216 0)
(1.02456 0.0021681 0)
(1.02449 0.00143987 0)
(1.02436 0.000701114 0)
(1.02419 -4.41817e-05 0)
(1.02395 -0.000791453 0)
(1.02365 -0.00153515 0)
(1.02328 -0.00226961 0)
(1.02285 -0.0029885 0)
(1.02236 -0.00368497 0)
(1.0218 -0.00435186 0)
(1.02118 -0.00498177 0)
(1.02049 -0.00556721 0)
(1.01975 -0.00610073 0)
(1.01895 -0.00657505 0)
(1.0181 -0.00698331 0)
(1.01721 -0.00731914 0)
(1.01628 -0.00757685 0)
(1.01532 -0.00775159 0)
(1.01433 -0.00783941 0)
(1.01334 -0.00783743 0)
(1.01234 -0.00774387 0)
(1.01135 -0.0075581 0)
(1.01037 -0.00728065 0)
(1.00941 -0.00691323 0)
(1.00849 -0.00645866 0)
(1.00761 -0.00592078 0)
(1.00678 -0.00530446 0)
(1.006 -0.00461545 0)
(1.00528 -0.00386008 0)
(1.00464 -0.0030455 0)
(1.00406 -0.00217898 0)
(1.00355 -0.00126835 0)
(1.00313 -0.000321923 0)
(1.00278 0.000652832 0)
(1.00251 0.00164747 0)
(1.00232 0.00265452 0)
(1.0022 0.0036667 0)
(1.00216 0.00467705 0)
(1.00219 0.00567921 0)
(1.00229 0.00666742 0)
(1.00245 0.00763658 0)
(1.00267 0.00858226 0)
(1.00295 0.00950074 0)
(1.00327 0.010389 0)
(1.00365 0.0112446 0)
(1.00406 0.0120659 0)
(1.00452 0.0128517 0)
(1.00501 0.0136013 0)
(1.00553 0.0143147 0)
(1.00608 0.0149919 0)
(1.00665 0.0156336 0)
(1.00725 0.01624 0)
(1.00787 0.0168128 0)
(1.00851 0.0173517 0)
(1.00916 0.0178596 0)
(1.00984 0.0183344 0)
(1.00941 0.0113104 0)
(1.00967 0.0114395 0)
(1.00995 0.0115655 0)
(1.01024 0.0116875 0)
(1.01055 0.0118047 0)
(1.01086 0.0119161 0)
(1.01119 0.0120206 0)
(1.01153 0.0121172 0)
(1.01188 0.0122047 0)
(1.01224 0.0122819 0)
(1.01261 0.0123476 0)
(1.013 0.0124005 0)
(1.01339 0.0124394 0)
(1.01379 0.012463 0)
(1.0142 0.0124702 0)
(1.01462 0.0124598 0)
(1.01504 0.0124306 0)
(1.01547 0.0123816 0)
(1.0159 0.012312 0)
(1.01634 0.0122208 0)
(1.01677 0.0121073 0)
(1.01721 0.0119707 0)
(1.01764 0.0118107 0)
(1.01807 0.0116267 0)
(1.0185 0.0114184 0)
(1.01891 0.0111855 0)
(1.01932 0.0109279 0)
(1.01972 0.0106455 0)
(1.02011 0.0103383 0)
(1.02049 0.0100062 0)
(1.02085 0.00964944 0)
(1.0212 0.00926799 0)
(1.02153 0.00886202 0)
(1.02184 0.00843171 0)
(1.02213 0.00797727 0)
(1.0224 0.00749897 0)
(1.02264 0.00699716 0)
(1.02286 0.0064723 0)
(1.02305 0.00592502 0)
(1.02321 0.00535609 0)
(1.02333 0.00476655 0)
(1.02342 0.00415765 0)
(1.02347 0.00353101 0)
(1.02348 0.00288864 0)
(1.02345 0.00223296 0)
(1.02337 0.00156679 0)
(1.02324 0.000893546 0)
(1.02305 0.000217048 0)
(1.02282 -0.000459163 0)
(1.02253 -0.00112943 0)
(1.02219 -0.00178877 0)
(1.02178 -0.00243169 0)
(1.02132 -0.0030522 0)
(1.0208 -0.00364409 0)
(1.02023 -0.004201 0)
(1.0196 -0.00471654 0)
(1.01893 -0.00518436 0)
(1.0182 -0.00559834 0)
(1.01743 -0.00595266 0)
(1.01663 -0.00624198 0)
(1.01579 -0.00646154 0)
(1.01493 -0.00660725 0)
(1.01405 -0.00667582 0)
(1.01316 -0.00666484 0)
(1.01227 -0.00657282 0)
(1.01138 -0.00639922 0)
(1.0105 -0.00614452 0)
(1.00965 -0.00581012 0)
(1.00883 -0.00539846 0)
(1.00804 -0.0049127 0)
(1.00729 -0.00435697 0)
(1.00659 -0.00373608 0)
(1.00595 -0.00305546 0)
(1.00537 -0.0023211 0)
(1.00484 -0.00153958 0)
(1.00439 -0.00071738 0)
(1.004 0.000139411 0)
(1.00368 0.00102294 0)
(1.00343 0.00192628 0)
(1.00324 0.00284311 0)
(1.00313 0.00376695 0)
(1.00308 0.00469169 0)
(1.0031 0.00561166 0)
(1.00318 0.00652166 0)
(1.00331 0.00741702 0)
(1.00351 0.00829361 0)
(1.00375 0.00914789 0)
(1.00404 0.00997685 0)
(1.00438 0.0107781 0)
(1.00475 0.0115497 0)
(1.00517 0.0122903 0)
(1.00562 0.0129989 0)
(1.0061 0.013675 0)
(1.00661 0.0143182 0)
(1.00714 0.0149288 0)
(1.0077 0.0155068 0)
(1.00828 0.0160532 0)
(1.00888 0.0165674 0)
(1.00951 0.0170519 0)
(1.01015 0.0175042 0)
(1.00933 0.0109794 0)
(1.00959 0.0110939 0)
(1.00986 0.0112052 0)
(1.01014 0.0113123 0)
(1.01044 0.0114146 0)
(1.01074 0.0115112 0)
(1.01106 0.0116012 0)
(1.01138 0.0116834 0)
(1.01172 0.011757 0)
(1.01207 0.0118208 0)
(1.01242 0.0118737 0)
(1.01279 0.0119146 0)
(1.01316 0.0119424 0)
(1.01354 0.011956 0)
(1.01393 0.0119542 0)
(1.01432 0.0119361 0)
(1.01472 0.0119006 0)
(1.01512 0.0118468 0)
(1.01553 0.0117739 0)
(1.01593 0.0116811 0)
(1.01634 0.0115676 0)
(1.01675 0.011433 0)
(1.01715 0.0112767 0)
(1.01755 0.0110983 0)
(1.01795 0.0108974 0)
(1.01833 0.0106739 0)
(1.01871 0.0104276 0)
(1.01908 0.0101583 0)
(1.01944 0.00986616 0)
(1.01979 0.00955112 0)
(1.02012 0.00921329 0)
(1.02044 0.00885281 0)
(1.02074 0.00846987 0)
(1.02103 0.0080647 0)
(1.02129 0.0076376 0)
(1.02153 0.00718895 0)
(1.02175 0.00671923 0)
(1.02194 0.00622903 0)
(1.0221 0.00571909 0)
(1.02224 0.00519034 0)
(1.02234 0.00464391 0)
(1.02241 0.00408122 0)
(1.02244 0.00350391 0)
(1.02244 0.00291405 0)
(1.02239 0.00231396 0)
(1.0223 0.00170632 0)
(1.02217 0.00109419 0)
(1.02199 0.000481335 0)
(1.02176 -0.00012879 0)
(1.02149 -0.000731721 0)
(1.02116 -0.00132238 0)
(1.02079 -0.00189624 0)
(1.02036 -0.00244814 0)
(1.01988 -0.00297263 0)
(1.01936 -0.00346429 0)
(1.01879 -0.00391764 0)
(1.01817 -0.0043273 0)
(1.01751 -0.00468808 0)
(1.01682 -0.00499507 0)
(1.0161 -0.00524379 0)
(1.01535 -0.00543024 0)
(1.01458 -0.00555098 0)
(1.01379 -0.00560328 0)
(1.01299 -0.00558512 0)
(1.0122 -0.00549524 0)
(1.01141 -0.00533322 0)
(1.01063 -0.00509944 0)
(1.00987 -0.00479512 0)
(1.00913 -0.00442218 0)
(1.00843 -0.00398348 0)
(1.00776 -0.00348235 0)
(1.00714 -0.00292288 0)
(1.00656 -0.00230974 0)
(1.00603 -0.00164784 0)
(1.00556 -0.000942727 0)
(1.00515 -0.000200384 0)
(1.00479 0.000574275 0)
(1.0045 0.00137445 0)
(1.00427 0.00219435 0)
(1.0041 0.00302827 0)
(1.00399 0.00387056 0)
(1.00394 0.00471585 0)
(1.00395 0.00555908 0)
(1.00401 0.00639557 0)
(1.00413 0.00722105 0)
(1.0043 0.00803169 0)
(1.00451 0.00882415 0)
(1.00478 0.00959549 0)
(1.00508 0.0103433 0)
(1.00542 0.0110656 0)
(1.0058 0.0117607 0)
(1.00621 0.0124276 0)
(1.00666 0.0130653 0)
(1.00713 0.0136732 0)
(1.00762 0.0142514 0)
(1.00815 0.0147992 0)
(1.00869 0.0153175 0)
(1.00926 0.0158053 0)
(1.00984 0.0162648 0)
(1.01045 0.0166933 0)
(1.00925 0.0106458 0)
(1.0095 0.0107467 0)
(1.00977 0.0108441 0)
(1.01004 0.0109375 0)
(1.01032 0.0110261 0)
(1.01062 0.011109 0)
(1.01092 0.0111856 0)
(1.01123 0.0112548 0)
(1.01155 0.0113158 0)
(1.01188 0.0113675 0)
(1.01222 0.011409 0)
(1.01257 0.0114392 0)
(1.01292 0.0114572 0)
(1.01328 0.011462 0)
(1.01365 0.0114525 0)
(1.01402 0.0114279 0)
(1.01439 0.0113872 0)
(1.01477 0.0113297 0)
(1.01515 0.0112545 0)
(1.01553 0.011161 0)
(1.01591 0.0110485 0)
(1.01629 0.0109164 0)
(1.01667 0.0107645 0)
(1.01704 0.0105921 0)
(1.0174 0.0103992 0)
(1.01776 0.0101854 0)
(1.01811 0.00995063 0)
(1.01846 0.00969483 0)
(1.01879 0.00941798 0)
(1.01911 0.00912015 0)
(1.01941 0.00880146 0)
(1.0197 0.00846209 0)
(1.01998 0.00810225 0)
(1.02023 0.00772225 0)
(1.02047 0.00732247 0)
(1.02069 0.00690336 0)
(1.02088 0.00646549 0)
(1.02105 0.00600953 0)
(1.02119 0.00553633 0)
(1.0213 0.00504689 0)
(1.02139 0.00454242 0)
(1.02144 0.00402435 0)
(1.02146 0.00349442 0)
(1.02145 0.00295455 0)
(1.02139 0.00240698 0)
(1.0213 0.00185435 0)
(1.02117 0.00129956 0)
(1.02099 0.000745909 0)
(1.02078 0.000197023 0)
(1.02052 -0.000344297 0)
(1.02021 -0.000872714 0)
(1.01986 -0.00138403 0)
(1.01947 -0.00187412 0)
(1.01903 -0.00233827 0)
(1.01855 -0.00277174 0)
(1.01803 -0.00316988 0)
(1.01747 -0.00352813 0)
(1.01688 -0.00384211 0)
(1.01626 -0.00410766 0)
(1.01561 -0.00432102 0)
(1.01494 -0.00447882 0)
(1.01425 -0.0045782 0)
(1.01355 -0.00461685 0)
(1.01284 -0.00459309 0)
(1.01213 -0.00450588 0)
(1.01143 -0.00435486 0)
(1.01073 -0.00414035 0)
(1.01006 -0.00386339 0)
(1.0094 -0.00352561 0)
(1.00878 -0.00312934 0)
(1.00818 -0.00267748 0)
(1.00763 -0.0021734 0)
(1.00711 -0.00162094 0)
(1.00664 -0.00102476 0)
(1.00622 -0.000389248 0)
(1.00585 0.000281643 0)
(1.00553 0.000981497 0)
(1.00526 0.00170562 0)
(1.00505 0.00244916 0)
(1.00489 0.00320695 0)
(1.00479 0.00397403 0)
(1.00474 0.00474567 0)
(1.00474 0.00551739 0)
(1.0048 0.00628494 0)
(1.0049 0.00704446 0)
(1.00505 0.00779239 0)
(1.00524 0.00852557 0)
(1.00548 0.00924119 0)
(1.00575 0.00993688 0)
(1.00606 0.0106105 0)
(1.00641 0.0112605 0)
(1.00679 0.0118854 0)
(1.0072 0.0124843 0)
(1.00763 0.0130562 0)
(1.0081 0.0136008 0)
(1.00858 0.0141173 0)
(1.00909 0.0146063 0)
(1.00962 0.0150665 0)
(1.01018 0.0154997 0)
(1.01075 0.0159033 0)
(1.00916 0.0103103 0)
(1.00941 0.0103984 0)
(1.00966 0.0104831 0)
(1.00993 0.0105637 0)
(1.0102 0.0106396 0)
(1.01048 0.0107101 0)
(1.01078 0.0107745 0)
(1.01107 0.0108319 0)
(1.01138 0.0108815 0)
(1.0117 0.0109224 0)
(1.01202 0.0109537 0)
(1.01235 0.0109746 0)
(1.01268 0.0109841 0)
(1.01302 0.0109813 0)
(1.01337 0.0109653 0)
(1.01372 0.0109353 0)
(1.01407 0.0108906 0)
(1.01442 0.0108303 0)
(1.01478 0.0107538 0)
(1.01513 0.0106604 0)
(1.01549 0.0105495 0)
(1.01584 0.0104208 0)
(1.01619 0.0102738 0)
(1.01653 0.0101081 0)
(1.01687 0.00992346 0)
(1.0172 0.00971977 0)
(1.01753 0.00949687 0)
(1.01784 0.00925473 0)
(1.01815 0.00899337 0)
(1.01844 0.00871287 0)
(1.01872 0.00841339 0)
(1.01899 0.00809511 0)
(1.01923 0.00775833 0)
(1.01947 0.00740339 0)
(1.01968 0.0070307 0)
(1.01987 0.00664079 0)
(1.02004 0.00623427 0)
(1.02019 0.00581189 0)
(1.02032 0.00537454 0)
(1.02041 0.00492326 0)
(1.02048 0.00445929 0)
(1.02052 0.00398408 0)
(1.02053 0.00349928 0)
(1.02051 0.00300676 0)
(1.02045 0.00250877 0)
(1.02036 0.00200772 0)
(1.02023 0.00150631 0)
(1.02006 0.00100735 0)
(1.01985 0.000514337 0)
(1.01961 3.03179e-05 0)
(1.01933 -0.000441719 0)
(1.019 -0.000896905 0)
(1.01864 -0.0013314 0)
(1.01824 -0.00174157 0)
(1.01781 -0.00212332 0)
(1.01734 -0.00247258 0)
(1.01684 -0.00278548 0)
(1.0163 -0.00305833 0)
(1.01575 -0.00328765 0)
(1.01516 -0.00347027 0)
(1.01457 -0.00360336 0)
(1.01395 -0.00368452 0)
(1.01333 -0.00371183 0)
(1.0127 -0.00368387 0)
(1.01207 -0.00359977 0)
(1.01144 -0.00345923 0)
(1.01083 -0.00326252 0)
(1.01023 -0.00301047 0)
(1.00965 -0.00270455 0)
(1.00909 -0.00234664 0)
(1.00857 -0.00193925 0)
(1.00807 -0.00148521 0)
(1.00761 -0.000987964 0)
(1.00719 -0.000450822 0)
(1.00682 0.000122403 0)
(1.00648 0.000727616 0)
(1.0062 0.00135984 0)
(1.00596 0.00201503 0)
(1.00577 0.0026888 0)
(1.00562 0.00337673 0)
(1.00553 0.00407451 0)
(1.00548 0.00477798 0)
(1.00548 0.00548312 0)
(1.00553 0.00618616 0)
(1.00562 0.00688354 0)
(1.00575 0.00757201 0)
(1.00593 0.0082486 0)
(1.00614 0.00891062 0)
(1.00639 0.00955574 0)
(1.00667 0.0101819 0)
(1.00699 0.0107874 0)
(1.00734 0.0113706 0)
(1.00772 0.0119305 0)
(1.00812 0.0124659 0)
(1.00855 0.0129764 0)
(1.00901 0.013461 0)
(1.00948 0.0139198 0)
(1.00998 0.0143516 0)
(1.0105 0.0147578 0)
(1.01104 0.0151357 0)
(1.00907 0.0099736 0)
(1.00931 0.0100499 0)
(1.00955 0.0101227 0)
(1.00981 0.0101916 0)
(1.01007 0.010256 0)
(1.01035 0.0103152 0)
(1.01062 0.0103685 0)
(1.01091 0.0104153 0)
(1.0112 0.0104547 0)
(1.0115 0.010486 0)
(1.01181 0.0105084 0)
(1.01212 0.0105211 0)
(1.01244 0.0105232 0)
(1.01276 0.010514 0)
(1.01308 0.0104927 0)
(1.01341 0.0104584 0)
(1.01374 0.0104106 0)
(1.01407 0.0103485 0)
(1.0144 0.0102715 0)
(1.01474 0.0101791 0)
(1.01507 0.0100707 0)
(1.01539 0.00994587 0)
(1.01572 0.00980432 0)
(1.01604 0.00964573 0)
(1.01635 0.00946987 0)
(1.01666 0.00927659 0)
(1.01696 0.00906582 0)
(1.01725 0.00883752 0)
(1.01753 0.00859175 0)
(1.0178 0.00832862 0)
(1.01805 0.0080483 0)
(1.01829 0.00775103 0)
(1.01852 0.00743711 0)
(1.01873 0.00710691 0)
(1.01892 0.00676091 0)
(1.01909 0.00639964 0)
(1.01924 0.00602377 0)
(1.01937 0.00563406 0)
(1.01948 0.00523144 0)
(1.01956 0.00481695 0)
(1.01962 0.00439182 0)
(1.01965 0.00395747 0)
(1.01965 0.0035155 0)
(1.01962 0.00306775 0)
(1.01956 0.00261623 0)
(1.01947 0.00216314 0)
(1.01934 0.00171096 0)
(1.01918 0.00126229 0)
(1.01899 0.000820108 0)
(1.01876 0.000387879 0)
(1.0185 -3.22166e-05 0)
(1.01821 -0.000436763 0)
(1.01788 -0.000821552 0)
(1.01751 -0.00118329 0)
(1.01712 -0.00151882 0)
(1.0167 -0.00182476 0)
(1.01625 -0.00209773 0)
(1.01577 -0.00233455 0)
(1.01527 -0.0025323 0)
(1.01476 -0.00268829 0)
(1.01422 -0.00280014 0)
(1.01368 -0.00286586 0)
(1.01312 -0.00288382 0)
(1.01257 -0.00285284 0)
(1.01201 -0.0027722 0)
(1.01146 -0.00264164 0)
(1.01091 -0.00246139 0)
(1.01038 -0.00223217 0)
(1.00987 -0.00195512 0)
(1.00938 -0.00163188 0)
(1.00891 -0.00126453 0)
(1.00847 -0.000855569 0)
(1.00807 -0.000407804 0)
(1.0077 7.62581e-05 0)
(1.00736 0.000593158 0)
(1.00707 0.00113839 0)
(1.00681 0.001709 0)
(1.0066 0.00230125 0)
(1.00642 0.00291124 0)
(1.0063 0.00353513 0)
(1.00621 0.00416916 0)
(1.00617 0.00480963 0)
(1.00617 0.00545297 0)
(1.00621 0.00609578 0)
(1.00629 0.00673484 0)
(1.00641 0.00736714 0)
(1.00657 0.00798992 0)
(1.00676 0.00860063 0)
(1.00699 0.00919701 0)
(1.00725 0.00977701 0)
(1.00754 0.0103389 0)
(1.00787 0.0108811 0)
(1.00821 0.0114024 0)
(1.00859 0.0119014 0)
(1.00899 0.0123777 0)
(1.00941 0.0128299 0)
(1.00986 0.0132583 0)
(1.01032 0.0136612 0)
(1.01081 0.01404 0)
(1.01131 0.0143918 0)
(1.00897 0.00963642 0)
(1.0092 0.0097018 0)
(1.00944 0.00976379 0)
(1.00969 0.00982196 0)
(1.00994 0.00987577 0)
(1.0102 0.00992469 0)
(1.01047 0.00996809 0)
(1.01074 0.0100053 0)
(1.01102 0.0100358 0)
(1.01131 0.0100586 0)
(1.0116 0.0100733 0)
(1.01189 0.0100789 0)
(1.01219 0.0100748 0)
(1.01249 0.0100603 0)
(1.0128 0.0100346 0)
(1.01311 0.00999716 0)
(1.01341 0.00994722 0)
(1.01372 0.00988422 0)
(1.01403 0.00980759 0)
(1.01434 0.00971684 0)
(1.01465 0.00961152 0)
(1.01496 0.00949125 0)
(1.01526 0.00935572 0)
(1.01555 0.00920466 0)
(1.01584 0.0090379 0)
(1.01613 0.00885532 0)
(1.0164 0.00865685 0)
(1.01667 0.00844251 0)
(1.01692 0.00821237 0)
(1.01717 0.00796655 0)
(1.0174 0.00770526 0)
(1.01762 0.00742875 0)
(1.01783 0.00713735 0)
(1.01802 0.00683146 0)
(1.01819 0.00651155 0)
(1.01834 0.0061782 0)
(1.01848 0.00583207 0)
(1.01859 0.00547396 0)
(1.01869 0.00510475 0)
(1.01876 0.0047255 0)
(1.0188 0.00433741 0)
(1.01882 0.00394183 0)
(1.01882 0.00354027 0)
(1.01878 0.00313445 0)
(1.01872 0.00272622 0)
(1.01864 0.00231767 0)
(1.01852 0.00191104 0)
(1.01837 0.00150881 0)
(1.01819 0.00111341 0)
(1.01798 0.00072749 0)
(1.01774 0.000354364 0)
(1.01747 -3.77247e-06 0)
(1.01717 -0.000344163 0)
(1.01684 -0.00066334 0)
(1.01649 -0.00095803 0)
(1.01611 -0.00122561 0)
(1.01571 -0.00146335 0)
(1.01528 -0.0016686 0)
(1.01484 -0.00183885 0)
(1.01438 -0.00197182 0)
(1.01391 -0.00206551 0)
(1.01342 -0.00211822 0)
(1.01293 -0.0021286 0)
(1.01244 -0.00209565 0)
(1.01195 -0.00201875 0)
(1.01146 -0.00189769 0)
(1.01099 -0.00173269 0)
(1.01052 -0.00152429 0)
(1.01007 -0.00127354 0)
(1.00963 -0.000981816 0)
(1.00922 -0.000650772 0)
(1.00884 -0.00028238 0)
(1.00848 0.000121301 0)
(1.00815 0.000557179 0)
(1.00786 0.0010222 0)
(1.00759 0.00151369 0)
(1.00737 0.00202857 0)
(1.00718 0.00256355 0)
(1.00703 0.00311532 0)
(1.00691 0.00368056 0)
(1.00684 0.00425596 0)
(1.0068 0.00483826 0)
(1.0068 0.00542428 0)
(1.00684 0.00601096 0)
(1.00692 0.00659539 0)
(1.00703 0.00717479 0)
(1.00717 0.00774659 0)
(1.00735 0.0083084 0)
(1.00756 0.00885804 0)
(1.0078 0.00939351 0)
(1.00807 0.0099131 0)
(1.00836 0.0104151 0)
(1.00869 0.0108984 0)
(1.00903 0.0113615 0)
(1.00941 0.0118038 0)
(1.0098 0.0122239 0)
(1.01021 0.0126217 0)
(1.01065 0.0129957 0)
(1.0111 0.013347 0)
(1.01157 0.0136726 0)
(1.00886 0.00929943 0)
(1.00909 0.00935478 0)
(1.00932 0.00940685 0)
(1.00956 0.00945526 0)
(1.0098 0.00949955 0)
(1.01005 0.00953923 0)
(1.01031 0.00957377 0)
(1.01057 0.00960258 0)
(1.01083 0.00962507 0)
(1.0111 0.00964061 0)
(1.01138 0.00964854 0)
(1.01166 0.00964822 0)
(1.01194 0.00963898 0)
(1.01222 0.00962018 0)
(1.01251 0.00959119 0)
(1.0128 0.0095514 0)
(1.01309 0.00950023 0)
(1.01338 0.00943714 0)
(1.01367 0.00936164 0)
(1.01396 0.00927329 0)
(1.01424 0.00917168 0)
(1.01452 0.00905649 0)
(1.0148 0.00892743 0)
(1.01508 0.0087843 0)
(1.01534 0.00862694 0)
(1.01561 0.00845525 0)
(1.01586 0.00826922 0)
(1.0161 0.00806888 0)
(1.01634 0.00785431 0)
(1.01656 0.00762566 0)
(1.01678 0.00738315 0)
(1.01698 0.00712706 0)
(1.01716 0.00685771 0)
(1.01733 0.00657553 0)
(1.01749 0.006281 0)
(1.01763 0.00597468 0)
(1.01775 0.00565725 0)
(1.01785 0.00532947 0)
(1.01793 0.00499224 0)
(1.01799 0.00464654 0)
(1.01803 0.00429354 0)
(1.01804 0.00393451 0)
(1.01803 0.00357088 0)
(1.018 0.00320423 0)
(1.01794 0.0028363 0)
(1.01786 0.00246899 0)
(1.01774 0.00210429 0)
(1.01761 0.00174435 0)
(1.01744 0.00139147 0)
(1.01725 0.00104805 0)
(1.01703 0.000716671 0)
(1.01679 0.000399882 0)
(1.01652 9.98439e-05 0)
(1.01622 -0.000180836 0)
(1.01591 -0.000439602 0)
(1.01557 -0.000673813 0)
(1.01521 -0.000880821 0)
(1.01483 -0.00105851 0)
(1.01444 -0.00120488 0)
(1.01403 -0.001318 0)
(1.01362 -0.00139617 0)
(1.01319 -0.00143798 0)
(1.01276 -0.00144228 0)
(1.01233 -0.00140821 0)
(1.0119 -0.00133528 0)
(1.01147 -0.00122328 0)
(1.01105 -0.00107239 0)
(1.01064 -0.000883093 0)
(1.01024 -0.000656286 0)
(1.00986 -0.000393007 0)
(1.0095 -9.45657e-05 0)
(1.00916 0.00023723 0)
(1.00885 0.000600355 0)
(1.00856 0.000992335 0)
(1.0083 0.00141101 0)
(1.00807 0.00185385 0)
(1.00788 0.00231811 0)
(1.00771 0.00280102 0)
(1.00758 0.00329971 0)
(1.00748 0.0038113 0)
(1.00742 0.00433288 0)
(1.00739 0.00486158 0)
(1.00739 0.00539457 0)
(1.00743 0.00592908 0)
(1.0075 0.00646248 0)
(1.0076 0.00699223 0)
(1.00773 0.00751594 0)
(1.0079 0.00803135 0)
(1.00809 0.00853641 0)
(1.00831 0.00902916 0)
(1.00856 0.00950793 0)
(1.00883 0.00997107 0)
(1.00913 0.0104173 0)
(1.00946 0.0108452 0)
(1.0098 0.011254 0)
(1.01017 0.0116423 0)
(1.01055 0.01201 0)
(1.01096 0.0123553 0)
(1.01138 0.0126792 0)
(1.01182 0.0129789 0)
(1.00875 0.00896325 0)
(1.00897 0.00900944 0)
(1.0092 0.00905249 0)
(1.00942 0.00909208 0)
(1.00966 0.00912782 0)
(1.0099 0.00915926 0)
(1.01014 0.00918595 0)
(1.01039 0.00920736 0)
(1.01064 0.00922295 0)
(1.0109 0.00923217 0)
(1.01116 0.00923444 0)
(1.01142 0.00922916 0)
(1.01169 0.00921574 0)
(1.01196 0.00919362 0)
(1.01223 0.00916221 0)
(1.0125 0.00912098 0)
(1.01277 0.0090694 0)
(1.01304 0.009007 0)
(1.01331 0.00893333 0)
(1.01357 0.008848 0)
(1.01384 0.00875066 0)
(1.0141 0.00864101 0)
(1.01436 0.00851884 0)
(1.01461 0.00838394 0)
(1.01486 0.00823621 0)
(1.0151 0.00807557 0)
(1.01533 0.00790203 0)
(1.01556 0.00771564 0)
(1.01577 0.00751651 0)
(1.01598 0.00730479 0)
(1.01617 0.00708073 0)
(1.01636 0.00684459 0)
(1.01652 0.00659672 0)
(1.01668 0.00633753 0)
(1.01682 0.00606751 0)
(1.01694 0.00578722 0)
(1.01705 0.0054973 0)
(1.01714 0.0051985 0)
(1.01721 0.00489166 0)
(1.01726 0.00457774 0)
(1.01729 0.00425782 0)
(1.0173 0.0039331 0)
(1.01729 0.00360489 0)
(1.01726 0.00327467 0)
(1.0172 0.00294401 0)
(1.01713 0.00261462 0)
(1.01702 0.00228831 0)
(1.0169 0.00196704 0)
(1.01675 0.00165284 0)
(1.01657 0.0013478 0)
(1.01638 0.00105404 0)
(1.01616 0.00077376 0)
(1.01592 0.000509439 0)
(1.01565 0.000263084 0)
(1.01537 3.66107e-05 0)
(1.01507 -0.000167585 0)
(1.01475 -0.000347652 0)
(1.01442 -0.000501547 0)
(1.01407 -0.000627366 0)
(1.01372 -0.000723522 0)
(1.01335 -0.000788611 0)
(1.01298 -0.000821416 0)
(1.0126 -0.000820964 0)
(1.01222 -0.000786566 0)
(1.01184 -0.000717784 0)
(1.01147 -0.00061447 0)
(1.0111 -0.000476702 0)
(1.01074 -0.000304922 0)
(1.0104 -9.9697e-05 0)
(1.01007 0.000137962 0)
(1.00975 0.000406803 0)
(1.00946 0.000705271 0)
(1.00918 0.00103162 0)
(1.00893 0.0013842 0)
(1.00871 0.00176093 0)
(1.00851 0.00215959 0)
(1.00834 0.0025779 0)
(1.0082 0.00301344 0)
(1.00808 0.00346374 0)
(1.008 0.00392627 0)
(1.00794 0.00439849 0)
(1.00792 0.00487785 0)
(1.00793 0.00536184 0)
(1.00797 0.00584796 0)
(1.00803 0.00633383 0)
(1.00813 0.00681712 0)
(1.00825 0.00729561 0)
(1.00841 0.00776719 0)
(1.00859 0.00822992 0)
(1.00879 0.00868192 0)
(1.00902 0.00912156 0)
(1.00927 0.00954722 0)
(1.00955 0.00995762 0)
(1.00985 0.0103513 0)
(1.01017 0.0107275 0)
(1.01051 0.0110847 0)
(1.01087 0.0114228 0)
(1.01125 0.01174 0)
(1.01164 0.0120372 0)
(1.01205 0.0123115 0)
(1.00864 0.00862846 0)
(1.00885 0.00866633 0)
(1.00907 0.00870125 0)
(1.00929 0.00873293 0)
(1.00951 0.00876103 0)
(1.00974 0.00878519 0)
(1.00997 0.00880498 0)
(1.01021 0.00881995 0)
(1.01045 0.00882963 0)
(1.01069 0.0088335 0)
(1.01094 0.00883105 0)
(1.01118 0.00882175 0)
(1.01144 0.00880508 0)
(1.01169 0.00878051 0)
(1.01194 0.00874754 0)
(1.01219 0.00870566 0)
(1.01245 0.00865442 0)
(1.0127 0.00859339 0)
(1.01295 0.00852218 0)
(1.0132 0.00844043 0)
(1.01345 0.00834785 0)
(1.01369 0.00824417 0)
(1.01393 0.0081292 0)
(1.01416 0.00800279 0)
(1.01439 0.00786485 0)
(1.01461 0.00771533 0)
(1.01483 0.00755426 0)
(1.01503 0.00738171 0)
(1.01523 0.00719779 0)
(1.01542 0.00700268 0)
(1.0156 0.00679661 0)
(1.01576 0.00657987 0)
(1.01591 0.0063528 0)
(1.01605 0.00611579 0)
(1.01618 0.00586933 0)
(1.01629 0.00561394 0)
(1.01639 0.00535025 0)
(1.01647 0.00507896 0)
(1.01653 0.00480087 0)
(1.01658 0.00451688 0)
(1.0166 0.00422799 0)
(1.01661 0.0039353 0)
(1.0166 0.00364005 0)
(1.01657 0.00334355 0)
(1.01652 0.00304724 0)
(1.01645 0.00275268 0)
(1.01635 0.0024615 0)
(1.01624 0.0021754 0)
(1.0161 0.00189617 0)
(1.01595 0.00162565 0)
(1.01577 0.00136575 0)
(1.01558 0.00111843 0)
(1.01536 0.000885545 0)
(1.01513 0.00066902 0)
(1.01488 0.000470942 0)
(1.01461 0.00029299 0)
(1.01433 0.000136615 0)
(1.01404 3.64354e-06 0)
(1.01374 -0.000104281 0)
(1.01342 -0.000185825 0)
(1.0131 -0.000239796 0)
(1.01278 -0.000265169 0)
(1.01245 -0.000261111 0)
(1.01212 -0.000227004 0)
(1.01179 -0.000162461 0)
(1.01146 -6.73449e-05 0)
(1.01114 5.8255e-05 0)
(1.01083 0.000214021 0)
(1.01053 0.000399437 0)
(1.01025 0.000613564 0)
(1.00997 0.000855342 0)
(1.00972 0.00112366 0)
(1.00948 0.0014171 0)
(1.00927 0.00173406 0)
(1.00907 0.00207281 0)
(1.0089 0.00243148 0)
(1.00876 0.0028081 0)
(1.00863 0.00320059 0)
(1.00854 0.0036068 0)
(1.00847 0.00402453 0)
(1.00843 0.00445153 0)
(1.00841 0.00488556 0)
(1.00842 0.00532436 0)
(1.00846 0.00576571 0)
(1.00853 0.00620742 0)
(1.00862 0.00664736 0)
(1.00873 0.0070835 0)
(1.00888 0.00751386 0)
(1.00904 0.00793659 0)
(1.00923 0.00834992 0)
(1.00945 0.00875228 0)
(1.00968 0.00914209 0)
(1.00994 0.00951807 0)
(1.01022 0.00987882 0)
(1.01051 0.0102235 0)
(1.01083 0.0105506 0)
(1.01116 0.01086 0)
(1.01151 0.0111499 0)
(1.01188 0.0114209 0)
(1.01227 0.0116705 0)
(1.00853 0.0082956 0)
(1.00873 0.00832597 0)
(1.00893 0.00835359 0)
(1.00914 0.00837822 0)
(1.00936 0.00839958 0)
(1.00958 0.00841735 0)
(1.0098 0.00843116 0)
(1.01002 0.0084406 0)
(1.01025 0.00844526 0)
(1.01048 0.00844469 0)
(1.01071 0.00843842 0)
(1.01095 0.00842598 0)
(1.01118 0.00840689 0)
(1.01142 0.00838069 0)
(1.01166 0.00834691 0)
(1.01189 0.00830512 0)
(1.01213 0.0082549 0)
(1.01237 0.00819586 0)
(1.0126 0.00812766 0)
(1.01283 0.00804999 0)
(1.01306 0.00796257 0)
(1.01329 0.0078652 0)
(1.01351 0.0077577 0)
(1.01373 0.00763996 0)
(1.01394 0.00751189 0)
(1.01414 0.00737349 0)
(1.01434 0.00722479 0)
(1.01453 0.00706587 0)
(1.01471 0.00689687 0)
(1.01488 0.00671796 0)
(1.01504 0.00652937 0)
(1.01519 0.00633138 0)
(1.01533 0.00612433 0)
(1.01546 0.0059086 0)
(1.01557 0.00568464 0)
(1.01568 0.00545295 0)
(1.01576 0.00521413 0)
(1.01583 0.00496883 0)
(1.01589 0.00471779 0)
(1.01593 0.00446185 0)
(1.01596 0.00420192 0)
(1.01596 0.00393903 0)
(1.01595 0.00367427 0)
(1.01592 0.00340887 0)
(1.01588 0.00314412 0)
(1.01581 0.00288138 0)
(1.01573 0.00262212 0)
(1.01563 0.00236787 0)
(1.01551 0.00212021 0)
(1.01537 0.00188079 0)
(1.01521 0.00165126 0)
(1.01504 0.00143328 0)
(1.01485 0.00122856 0)
(1.01465 0.00103871 0)
(1.01443 0.000865284 0)
(1.01419 0.000709808 0)
(1.01395 0.000574043 0)
(1.01369 0.000459304 0)
(1.01343 0.000366784 0)
(1.01315 0.00029768 0)
(1.01288 0.000253043 0)
(1.01259 0.000233743 0)
(1.01231 0.000240489 0)
(1.01202 0.000273828 0)
(1.01174 0.000334095 0)
(1.01145 0.000421421 0)
(1.01118 0.000535724 0)
(1.01091 0.000676725 0)
(1.01065 0.000843882 0)
(1.01041 0.00103662 0)
(1.01017 0.00125407 0)
(1.00995 0.00149519 0)
(1.00975 0.00175878 0)
(1.00957 0.00204351 0)
(1.0094 0.0023479 0)
(1.00926 0.00267035 0)
(1.00913 0.00300916 0)
(1.00903 0.00336253 0)
(1.00895 0.00372861 0)
(1.00889 0.00410545 0)
(1.00886 0.00449109 0)
(1.00886 0.00488353 0)
(1.00887 0.00528075 0)
(1.00891 0.00568075 0)
(1.00898 0.00608155 0)
(1.00906 0.0064812 0)
(1.00918 0.00687781 0)
(1.00931 0.00726954 0)
(1.00946 0.00765466 0)
(1.00964 0.0080315 0)
(1.00984 0.00839853 0)
(1.01006 0.00875425 0)
(1.0103 0.0090974 0)
(1.01056 0.00942662 0)
(1.01083 0.00974102 0)
(1.01113 0.0100392 0)
(1.01144 0.0103209 0)
(1.01176 0.0105845 0)
(1.0121 0.0108305 0)
(1.01246 0.0110563 0)
(1.00841 0.00796514 0)
(1.0086 0.00798879 0)
(1.0088 0.00800992 0)
(1.009 0.00802833 0)
(1.0092 0.00804379 0)
(1.00941 0.00805601 0)
(1.00962 0.00806469 0)
(1.00984 0.00806946 0)
(1.01005 0.00806996 0)
(1.01027 0.00806579 0)
(1.01049 0.00805651 0)
(1.01071 0.00804173 0)
(1.01093 0.00802099 0)
(1.01116 0.00799389 0)
(1.01138 0.00796001 0)
(1.0116 0.00791896 0)
(1.01182 0.00787035 0)
(1.01204 0.00781385 0)
(1.01226 0.00774914 0)
(1.01247 0.00767596 0)
(1.01269 0.00759406 0)
(1.0129 0.00750326 0)
(1.0131 0.00740342 0)
(1.0133 0.00729444 0)
(1.0135 0.00717627 0)
(1.01368 0.00704891 0)
(1.01387 0.00691241 0)
(1.01404 0.00676686 0)
(1.01421 0.00661239 0)
(1.01436 0.00644919 0)
(1.01451 0.00627747 0)
(1.01465 0.00609752 0)
(1.01478 0.00590964 0)
(1.0149 0.0057142 0)
(1.015 0.00551163 0)
(1.01509 0.00530239 0)
(1.01517 0.00508703 0)
(1.01524 0.00486616 0)
(1.01529 0.00464046 0)
(1.01533 0.00441067 0)
(1.01535 0.00417766 0)
(1.01535 0.00394233 0)
(1.01534 0.00370569 0)
(1.01532 0.00346884 0)
(1.01528 0.00323292 0)
(1.01522 0.00299918 0)
(1.01515 0.00276892 0)
(1.01506 0.0025435 0)
(1.01495 0.00232431 0)
(1.01483 0.00211277 0)
(1.0147 0.00191033 0)
(1.01454 0.00171845 0)
(1.01438 0.00153857 0)
(1.0142 0.00137212 0)
(1.01401 0.00122054 0)
(1.01381 0.00108518 0)
(1.01359 0.000967325 0)
(1.01337 0.000868114 0)
(1.01314 0.000788669 0)
(1.01291 0.000730029 0)
(1.01267 0.000693091 0)
(1.01242 0.000678619 0)
(1.01217 0.000687222 0)
(1.01193 0.000719339 0)
(1.01168 0.000775258 0)
(1.01144 0.000855105 0)
(1.01121 0.000958832 0)
(1.01098 0.00108622 0)
(1.01076 0.00123687 0)
(1.01055 0.00141022 0)
(1.01035 0.00160557 0)
(1.01016 0.00182204 0)
(1.00999 0.00205863 0)
(1.00983 0.0023142 0)
(1.00969 0.0025875 0)
(1.00957 0.00287714 0)
(1.00947 0.00318167 0)
(1.00939 0.00349953 0)
(1.00932 0.00382909 0)
(1.00928 0.00416867 0)
(1.00926 0.00451652 0)
(1.00926 0.00487086 0)
(1.00928 0.0052299 0)
(1.00932 0.00559182 0)
(1.00939 0.00595482 0)
(1.00947 0.00631711 0)
(1.00958 0.00667696 0)
(1.0097 0.00703265 0)
(1.00985 0.00738257 0)
(1.01002 0.00772512 0)
(1.0102 0.00805887 0)
(1.01041 0.00838237 0)
(1.01063 0.00869441 0)
(1.01087 0.00899367 0)
(1.01112 0.00927927 0)
(1.0114 0.0095499 0)
(1.01168 0.00980518 0)
(1.01199 0.0100435 0)
(1.0123 0.0102655 0)
(1.01263 0.0104686 0)
(1.00828 0.00763749 0)
(1.00847 0.00765518 0)
(1.00866 0.00767059 0)
(1.00885 0.00768356 0)
(1.00905 0.00769391 0)
(1.00925 0.00770139 0)
(1.00945 0.00770573 0)
(1.00965 0.00770663 0)
(1.00985 0.00770375 0)
(1.01006 0.00769674 0)
(1.01027 0.00768522 0)
(1.01048 0.00766881 0)
(1.01068 0.00764714 0)
(1.01089 0.0076198 0)
(1.0111 0.00758644 0)
(1.01131 0.00754669 0)
(1.01152 0.00750023 0)
(1.01172 0.00744673 0)
(1.01192 0.00738593 0)
(1.01213 0.00731757 0)
(1.01232 0.00724146 0)
(1.01252 0.00715743 0)
(1.01271 0.00706537 0)
(1.01289 0.00696518 0)
(1.01307 0.00685685 0)
(1.01325 0.00674038 0)
(1.01341 0.00661584 0)
(1.01357 0.00648331 0)
(1.01373 0.00634293 0)
(1.01387 0.00619488 0)
(1.01401 0.00603937 0)
(1.01414 0.00587666 0)
(1.01425 0.00570705 0)
(1.01436 0.00553088 0)
(1.01446 0.00534853 0)
(1.01454 0.00516044 0)
(1.01461 0.0049671 0)
(1.01467 0.00476907 0)
(1.01472 0.00456697 0)
(1.01476 0.00436148 0)
(1.01478 0.00415336 0)
(1.01478 0.00394344 0)
(1.01478 0.00373262 0)
(1.01476 0.00352189 0)
(1.01472 0.00331227 0)
(1.01467 0.00310487 0)
(1.01461 0.00290083 0)
(1.01453 0.00270135 0)
(1.01444 0.00250767 0)
(1.01434 0.00232103 0)
(1.01422 0.00214272 0)
(1.01409 0.001974 0)
(1.01395 0.00181614 0)
(1.01379 0.00167038 0)
(1.01363 0.00153792 0)
(1.01345 0.00141992 0)
(1.01327 0.00131748 0)
(1.01308 0.00123168 0)
(1.01288 0.00116346 0)
(1.01268 0.00111369 0)
(1.01247 0.00108314 0)
(1.01226 0.00107246 0)
(1.01205 0.00108218 0)
(1.01184 0.00111269 0)
(1.01163 0.00116427 0)
(1.01143 0.00123701 0)
(1.01123 0.00133091 0)
(1.01103 0.00144577 0)
(1.01085 0.00158129 0)
(1.01067 0.00173699 0)
(1.0105 0.00191227 0)
(1.01034 0.00210642 0)
(1.0102 0.00231857 0)
(1.01007 0.00254776 0)
(1.00995 0.00279291 0)
(1.00985 0.00305285 0)
(1.00977 0.00332631 0)
(1.0097 0.00361195 0)
(1.00966 0.00390834 0)
(1.00963 0.00421399 0)
(1.00961 0.00452737 0)
(1.00962 0.00484689 0)
(1.00965 0.00517093 0)
(1.00969 0.00549786 0)
(1.00976 0.00582604 0)
(1.00984 0.00615382 0)
(1.00994 0.00647961 0)
(1.01006 0.00680182 0)
(1.0102 0.00711893 0)
(1.01036 0.00742944 0)
(1.01053 0.007732 0)
(1.01072 0.00802522 0)
(1.01093 0.00830796 0)
(1.01115 0.00857893 0)
(1.01139 0.0088373 0)
(1.01164 0.0090818 0)
(1.01191 0.00931204 0)
(1.01219 0.00952653 0)
(1.01248 0.00972572 0)
(1.01279 0.00990731 0)
(1.00816 0.00731303 0)
(1.00834 0.00732547 0)
(1.00852 0.00733588 0)
(1.00871 0.00734415 0)
(1.00889 0.00735012 0)
(1.00908 0.0073536 0)
(1.00927 0.00735435 0)
(1.00946 0.00735211 0)
(1.00966 0.00734657 0)
(1.00985 0.00733743 0)
(1.01005 0.00732435 0)
(1.01024 0.00730699 0)
(1.01044 0.00728499 0)
(1.01064 0.00725801 0)
(1.01083 0.00722572 0)
(1.01103 0.00718778 0)
(1.01122 0.00714391 0)
(1.01141 0.00709381 0)
(1.0116 0.00703724 0)
(1.01179 0.00697398 0)
(1.01197 0.00690385 0)
(1.01215 0.00682671 0)
(1.01233 0.00674246 0)
(1.0125 0.00665104 0)
(1.01267 0.00655242 0)
(1.01283 0.00644663 0)
(1.01298 0.00633373 0)
(1.01313 0.00621381 0)
(1.01327 0.00608701 0)
(1.0134 0.0059535 0)
(1.01353 0.00581348 0)
(1.01365 0.00566718 0)
(1.01376 0.00551489 0)
(1.01385 0.0053569 0)
(1.01394 0.00519358 0)
(1.01402 0.00502532 0)
(1.01409 0.00485256 0)
(1.01415 0.0046758 0)
(1.01419 0.0044956 0)
(1.01422 0.00431256 0)
(1.01425 0.00412737 0)
(1.01425 0.00394077 0)
(1.01425 0.00375357 0)
(1.01424 0.00356663 0)
(1.01421 0.00338088 0)
(1.01417 0.0031973 0)
(1.01411 0.00301689 0)
(1.01405 0.00284073 0)
(1.01397 0.00266989 0)
(1.01388 0.00250549 0)
(1.01378 0.00234862 0)
(1.01367 0.00220039 0)
(1.01355 0.00206191 0)
(1.01342 0.00193426 0)
(1.01328 0.00181849 0)
(1.01313 0.0017156 0)
(1.01297 0.00162656 0)
(1.01281 0.00155227 0)
(1.01264 0.00149355 0)
(1.01247 0.00145117 0)
(1.01229 0.00142579 0)
(1.01211 0.00141799 0)
(1.01194 0.00142822 0)
(1.01176 0.00145686 0)
(1.01158 0.00150412 0)
(1.01141 0.00157013 0)
(1.01124 0.00165488 0)
(1.01108 0.00175822 0)
(1.01092 0.00187989 0)
(1.01077 0.00201951 0)
(1.01063 0.00217659 0)
(1.0105 0.00235051 0)
(1.01038 0.00254054 0)
(1.01028 0.00274586 0)
(1.01018 0.00296556 0)
(1.0101 0.00319862 0)
(1.01004 0.00344395 0)
(1.00999 0.00370038 0)
(1.00995 0.00396665 0)
(1.00994 0.00424146 0)
(1.00993 0.00452345 0)
(1.00995 0.00481119 0)
(1.00998 0.00510323 0)
(1.01003 0.00539809 0)
(1.01009 0.00569428 0)
(1.01017 0.00599028 0)
(1.01027 0.00628463 0)
(1.01039 0.00657584 0)
(1.01052 0.00686251 0)
(1.01067 0.00714322 0)
(1.01083 0.0074167 0)
(1.01101 0.00768163 0)
(1.0112 0.00793694 0)
(1.01141 0.00818139 0)
(1.01163 0.00841418 0)
(1.01186 0.00863409 0)
(1.01211 0.00884076 0)
(1.01237 0.00903277 0)
(1.01264 0.00921053 0)
(1.01293 0.00937187 0)
(1.00804 0.00699205 0)
(1.00821 0.00699991 0)
(1.00838 0.00700601 0)
(1.00856 0.00701026 0)
(1.00873 0.00701255 0)
(1.00891 0.00701272 0)
(1.00909 0.00701056 0)
(1.00928 0.00700584 0)
(1.00946 0.00699831 0)
(1.00964 0.00698768 0)
(1.00983 0.00697365 0)
(1.01001 0.00695591 0)
(1.0102 0.00693415 0)
(1.01038 0.00690804 0)
(1.01057 0.00687729 0)
(1.01075 0.0068416 0)
(1.01093 0.00680069 0)
(1.01111 0.00675431 0)
(1.01128 0.00670223 0)
(1.01146 0.00664426 0)
(1.01163 0.00658025 0)
(1.0118 0.00651005 0)
(1.01196 0.00643359 0)
(1.01212 0.00635082 0)
(1.01228 0.00626173 0)
(1.01242 0.00616634 0)
(1.01257 0.00606471 0)
(1.01271 0.00595695 0)
(1.01284 0.00584317 0)
(1.01296 0.00572353 0)
(1.01308 0.00559822 0)
(1.01319 0.00546747 0)
(1.01329 0.0053315 0)
(1.01338 0.00519061 0)
(1.01346 0.00504511 0)
(1.01353 0.00489535 0)
(1.0136 0.00474172 0)
(1.01365 0.00458467 0)
(1.01369 0.00442469 0)
(1.01373 0.00426232 0)
(1.01375 0.00409817 0)
(1.01376 0.00393289 0)
(1.01376 0.00376721 0)
(1.01375 0.00360188 0)
(1.01373 0.00343773 0)
(1.0137 0.00327562 0)
(1.01365 0.00311646 0)
(1.0136 0.00296117 0)
(1.01354 0.0028107 0)
(1.01346 0.00266604 0)
(1.01338 0.00252814 0)
(1.01328 0.00239799 0)
(1.01318 0.00227655 0)
(1.01307 0.00216475 0)
(1.01295 0.00206351 0)
(1.01283 0.0019737 0)
(1.0127 0.00189617 0)
(1.01256 0.0018317 0)
(1.01242 0.00178102 0)
(1.01227 0.00174478 0)
(1.01213 0.00172358 0)
(1.01198 0.00171791 0)
(1.01183 0.0017282 0)
(1.01168 0.00175474 0)
(1.01153 0.00179777 0)
(1.01139 0.00185739 0)
(1.01125 0.00193361 0)
(1.01111 0.00202633 0)
(1.01098 0.00213534 0)
(1.01086 0.00226032 0)
(1.01075 0.00240086 0)
(1.01064 0.00255644 0)
(1.01055 0.00272645 0)
(1.01046 0.00291019 0)
(1.01039 0.00310687 0)
(1.01033 0.00331562 0)
(1.01028 0.00353549 0)
(1.01024 0.00376546 0)
(1.01022 0.00400444 0)
(1.01021 0.00425126 0)
(1.01022 0.0045047 0)
(1.01024 0.0047635 0)
(1.01028 0.00502635 0)
(1.01033 0.00529191 0)
(1.01039 0.00555879 0)
(1.01047 0.00582563 0)
(1.01057 0.00609106 0)
(1.01068 0.0063537 0)
(1.0108 0.00661225 0)
(1.01094 0.00686538 0)
(1.0111 0.00711188 0)
(1.01126 0.00735053 0)
(1.01144 0.0075803 0)
(1.01164 0.00780002 0)
(1.01184 0.00800893 0)
(1.01206 0.00820589 0)
(1.01229 0.00839053 0)
(1.01253 0.00856152 0)
(1.01278 0.00871923 0)
(1.01304 0.00886167 0)
(1.00791 0.00667477 0)
(1.00807 0.00667869 0)
(1.00824 0.00668111 0)
(1.00841 0.00668199 0)
(1.00858 0.00668124 0)
(1.00875 0.00667872 0)
(1.00892 0.00667428 0)
(1.00909 0.0066677 0)
(1.00927 0.00665876 0)
(1.00944 0.00664722 0)
(1.00961 0.00663279 0)
(1.00979 0.00661519 0)
(1.00996 0.00659415 0)
(1.01013 0.00656936 0)
(1.01031 0.00654056 0)
(1.01048 0.00650746 0)
(1.01065 0.00646982 0)
(1.01081 0.0064274 0)
(1.01098 0.00638001 0)
(1.01114 0.00632746 0)
(1.0113 0.00626961 0)
(1.01146 0.00620634 0)
(1.01161 0.00613759 0)
(1.01176 0.00606331 0)
(1.0119 0.00598349 0)
(1.01204 0.00589817 0)
(1.01218 0.0058074 0)
(1.0123 0.00571127 0)
(1.01242 0.0056099 0)
(1.01254 0.00550344 0)
(1.01265 0.00539205 0)
(1.01275 0.00527592 0)
(1.01284 0.00515529 0)
(1.01293 0.00503038 0)
(1.01301 0.00490149 0)
(1.01308 0.00476891 0)
(1.01314 0.004633 0)
(1.01319 0.00449413 0)
(1.01323 0.00435275 0)
(1.01327 0.00420933 0)
(1.01329 0.0040644 0)
(1.0133 0.00391854 0)
(1.01331 0.00377238 0)
(1.0133 0.0036266 0)
(1.01329 0.00348193 0)
(1.01326 0.00333912 0)
(1.01323 0.00319898 0)
(1.01319 0.00306231 0)
(1.01314 0.00292998 0)
(1.01307 0.00280282 0)
(1.01301 0.00268169 0)
(1.01293 0.00256745 0)
(1.01284 0.00246093 0)
(1.01275 0.00236297 0)
(1.01266 0.00227435 0)
(1.01255 0.00219584 0)
(1.01244 0.00212819 0)
(1.01233 0.00207208 0)
(1.01221 0.00202814 0)
(1.01209 0.00199696 0)
(1.01197 0.00197906 0)
(1.01185 0.00197487 0)
(1.01173 0.00198478 0)
(1.0116 0.00200907 0)
(1.01148 0.00204795 0)
(1.01137 0.00210152 0)
(1.01125 0.00216981 0)
(1.01114 0.00225275 0)
(1.01104 0.00235017 0)
(1.01094 0.00246182 0)
(1.01085 0.00258734 0)
(1.01076 0.00272631 0)
(1.01069 0.0028782 0)
(1.01062 0.00304243 0)
(1.01057 0.00321831 0)
(1.01052 0.00340509 0)
(1.01049 0.00360196 0)
(1.01046 0.003808 0)
(1.01045 0.00402226 0)
(1.01046 0.00424371 0)
(1.01047 0.00447126 0)
(1.0105 0.00470377 0)
(1.01054 0.00494005 0)
(1.01059 0.00517889 0)
(1.01066 0.00541902 0)
(1.01074 0.00565918 0)
(1.01083 0.00589811 0)
(1.01094 0.00613452 0)
(1.01106 0.0063672 0)
(1.01119 0.00659492 0)
(1.01133 0.00681654 0)
(1.01149 0.0070309 0)
(1.01166 0.00723702 0)
(1.01184 0.00743384 0)
(1.01203 0.0076206 0)
(1.01223 0.00779624 0)
(1.01245 0.00796042 0)
(1.01267 0.00811189 0)
(1.0129 0.008251 0)
(1.01314 0.00837589 0)
(1.00778 0.00636136 0)
(1.00794 0.00636192 0)
(1.0081 0.00636126 0)
(1.00826 0.00635936 0)
(1.00842 0.00635615 0)
(1.00858 0.00635153 0)
(1.00875 0.00634536 0)
(1.00891 0.00633748 0)
(1.00907 0.00632767 0)
(1.00924 0.00631571 0)
(1.0094 0.00630136 0)
(1.00957 0.00628437 0)
(1.00973 0.00626445 0)
(1.00989 0.00624136 0)
(1.01006 0.00621483 0)
(1.01022 0.00618461 0)
(1.01038 0.00615048 0)
(1.01053 0.00611221 0)
(1.01069 0.00606962 0)
(1.01084 0.00602255 0)
(1.01099 0.00597085 0)
(1.01113 0.00591444 0)
(1.01128 0.00585325 0)
(1.01141 0.00578723 0)
(1.01155 0.00571639 0)
(1.01168 0.00564075 0)
(1.0118 0.00556037 0)
(1.01192 0.00547533 0)
(1.01204 0.00538573 0)
(1.01214 0.00529171 0)
(1.01225 0.00519341 0)
(1.01234 0.00509101 0)
(1.01243 0.00498469 0)
(1.01251 0.00487466 0)
(1.01258 0.00476118 0)
(1.01265 0.00464449 0)
(1.01271 0.00452491 0)
(1.01276 0.00440276 0)
(1.0128 0.00427841 0)
(1.01284 0.00415229 0)
(1.01286 0.00402485 0)
(1.01288 0.0038966 0)
(1.01289 0.0037681 0)
(1.01289 0.00363995 0)
(1.01288 0.00351278 0)
(1.01286 0.00338726 0)
(1.01284 0.00326409 0)
(1.01281 0.00314401 0)
(1.01277 0.00302775 0)
(1.01272 0.00291606 0)
(1.01267 0.0028097 0)
(1.0126 0.00270941 0)
(1.01254 0.00261593 0)
(1.01246 0.00252999 0)
(1.01238 0.0024523 0)
(1.0123 0.00238352 0)
(1.01221 0.0023243 0)
(1.01212 0.00227525 0)
(1.01202 0.00223694 0)
(1.01193 0.00220987 0)
(1.01183 0.00219452 0)
(1.01173 0.00219128 0)
(1.01163 0.0022005 0)
(1.01153 0.00222243 0)
(1.01143 0.00225727 0)
(1.01134 0.00230514 0)
(1.01125 0.00236607 0)
(1.01116 0.00244 0)
(1.01108 0.00252683 0)
(1.011 0.00262633 0)
(1.01093 0.00273822 0)
(1.01087 0.00286214 0)
(1.01081 0.00299766 0)
(1.01076 0.00314426 0)
(1.01072 0.00330136 0)
(1.01069 0.00346831 0)
(1.01067 0.0036444 0)
(1.01066 0.00382883 0)
(1.01066 0.00402075 0)
(1.01067 0.00421925 0)
(1.01069 0.00442336 0)
(1.01073 0.00463203 0)
(1.01077 0.00484421 0)
(1.01083 0.00505876 0)
(1.01089 0.00527454 0)
(1.01097 0.00549039 0)
(1.01106 0.00570512 0)
(1.01117 0.00591756 0)
(1.01128 0.00612656 0)
(1.01141 0.00633097 0)
(1.01154 0.00652973 0)
(1.01169 0.00672176 0)
(1.01185 0.00690613 0)
(1.01202 0.00708183 0)
(1.0122 0.00724817 0)
(1.01239 0.00740416 0)
(1.01258 0.00754945 0)
(1.01279 0.00768292 0)
(1.013 0.00780487 0)
(1.01323 0.00791359 0)
(1.00766 0.00605192 0)
(1.00781 0.00604967 0)
(1.00796 0.00604647 0)
(1.00811 0.00604232 0)
(1.00827 0.00603719 0)
(1.00842 0.00603099 0)
(1.00858 0.00602361 0)
(1.00873 0.0060149 0)
(1.00889 0.00600469 0)
(1.00904 0.00599277 0)
(1.0092 0.00597891 0)
(1.00935 0.00596289 0)
(1.00951 0.00594446 0)
(1.00966 0.00592337 0)
(1.00981 0.00589939 0)
(1.00996 0.00587227 0)
(1.01011 0.00584181 0)
(1.01026 0.0058078 0)
(1.01041 0.00577008 0)
(1.01055 0.00572848 0)
(1.01069 0.00568288 0)
(1.01082 0.00563319 0)
(1.01096 0.00557936 0)
(1.01109 0.00552133 0)
(1.01121 0.00545912 0)
(1.01133 0.00539274 0)
(1.01145 0.00532224 0)
(1.01156 0.0052477 0)
(1.01167 0.00516921 0)
(1.01177 0.00508688 0)
(1.01187 0.00500084 0)
(1.01196 0.00491123 0)
(1.01204 0.00481822 0)
(1.01212 0.00472199 0)
(1.01219 0.00462273 0)
(1.01225 0.00452067 0)
(1.01231 0.00441607 0)
(1.01236 0.00430921 0)
(1.0124 0.0042004 0)
(1.01244 0.00409 0)
(1.01247 0.00397843 0)
(1.01249 0.00386611 0)
(1.0125 0.00375352 0)
(1.01251 0.0036412 0)
(1.01251 0.0035297 0)
(1.0125 0.00341962 0)
(1.01248 0.00331157 0)
(1.01246 0.00320619 0)
(1.01243 0.00310414 0)
(1.01239 0.00300608 0)
(1.01235 0.00291268 0)
(1.01231 0.0028246 0)
(1.01225 0.00274248 0)
(1.0122 0.00266698 0)
(1.01213 0.00259871 0)
(1.01207 0.00253826 0)
(1.012 0.00248622 0)
(1.01193 0.00244312 0)
(1.01185 0.00240946 0)
(1.01177 0.00238571 0)
(1.0117 0.00237228 0)
(1.01162 0.00236955 0)
(1.01154 0.00237781 0)
(1.01146 0.00239732 0)
(1.01139 0.00242826 0)
(1.01131 0.00247075 0)
(1.01124 0.00252484 0)
(1.01117 0.0025905 0)
(1.01111 0.00266764 0)
(1.01105 0.00275609 0)
(1.011 0.00285562 0)
(1.01095 0.00296593 0)
(1.01091 0.00308665 0)
(1.01088 0.00321734 0)
(1.01086 0.00335751 0)
(1.01084 0.00350658 0)
(1.01083 0.00366394 0)
(1.01083 0.00382888 0)
(1.01084 0.00400065 0)
(1.01086 0.00417844 0)
(1.01089 0.00436136 0)
(1.01092 0.00454849 0)
(1.01097 0.00473883 0)
(1.01103 0.00493138 0)
(1.0111 0.00512508 0)
(1.01118 0.00531883 0)
(1.01127 0.00551156 0)
(1.01137 0.00570217 0)
(1.01148 0.00588958 0)
(1.0116 0.00607272 0)
(1.01173 0.0062506 0)
(1.01187 0.0064222 0)
(1.01202 0.00658666 0)
(1.01217 0.00674303 0)
(1.01234 0.00689065 0)
(1.01252 0.00702861 0)
(1.0127 0.00715659 0)
(1.01289 0.00727355 0)
(1.01309 0.00737978 0)
(1.0133 0.0074737 0)
(1.00753 0.00574647 0)
(1.00768 0.00574192 0)
(1.00782 0.00573667 0)
(1.00797 0.00573077 0)
(1.00812 0.00572419 0)
(1.00826 0.00571687 0)
(1.00841 0.00570873 0)
(1.00856 0.00569963 0)
(1.00871 0.00568943 0)
(1.00885 0.00567792 0)
(1.009 0.00566491 0)
(1.00915 0.00565019 0)
(1.00929 0.00563352 0)
(1.00944 0.00561468 0)
(1.00958 0.00559344 0)
(1.00972 0.00556958 0)
(1.00986 0.0055429 0)
(1.01 0.00551321 0)
(1.01014 0.00548035 0)
(1.01027 0.00544417 0)
(1.0104 0.00540455 0)
(1.01053 0.0053614 0)
(1.01066 0.00531468 0)
(1.01078 0.00526433 0)
(1.01089 0.00521036 0)
(1.01101 0.00515278 0)
(1.01112 0.00509164 0)
(1.01122 0.00502699 0)
(1.01132 0.00495892 0)
(1.01142 0.00488752 0)
(1.01151 0.0048129 0)
(1.0116 0.00473517 0)
(1.01168 0.00465448 0)
(1.01175 0.00457096 0)
(1.01182 0.00448479 0)
(1.01188 0.00439615 0)
(1.01194 0.00430524 0)
(1.01199 0.00421231 0)
(1.01203 0.00411762 0)
(1.01207 0.00402148 0)
(1.0121 0.00392423 0)
(1.01213 0.00382624 0)
(1.01214 0.00372795 0)
(1.01216 0.0036298 0)
(1.01216 0.00353229 0)
(1.01216 0.00343594 0)
(1.01215 0.0033413 0)
(1.01214 0.00324893 0)
(1.01212 0.00315942 0)
(1.0121 0.00307334 0)
(1.01207 0.00299129 0)
(1.01203 0.00291385 0)
(1.012 0.00284161 0)
(1.01195 0.00277512 0)
(1.01191 0.00271495 0)
(1.01186 0.00266163 0)
(1.0118 0.00261566 0)
(1.01175 0.00257753 0)
(1.01169 0.0025477 0)
(1.01163 0.00252657 0)
(1.01157 0.00251454 0)
(1.01151 0.00251194 0)
(1.01145 0.00251906 0)
(1.0114 0.00253612 0)
(1.01134 0.00256332 0)
(1.01128 0.00260076 0)
(1.01123 0.00264851 0)
(1.01118 0.00270657 0)
(1.01114 0.00277487 0)
(1.0111 0.00285327 0)
(1.01106 0.0029416 0)
(1.01103 0.00303961 0)
(1.011 0.00314697 0)
(1.01098 0.00326332 0)
(1.01097 0.00338823 0)
(1.01096 0.00352121 0)
(1.01097 0.00366171 0)
(1.01098 0.00380911 0)
(1.01099 0.00396274 0)
(1.01102 0.00412186 0)
(1.01105 0.0042857 0)
(1.0111 0.00445339 0)
(1.01115 0.00462404 0)
(1.01121 0.00479671 0)
(1.01128 0.00497043 0)
(1.01136 0.0051442 0)
(1.01145 0.005317 0)
(1.01154 0.00548781 0)
(1.01165 0.00565562 0)
(1.01176 0.00581945 0)
(1.01189 0.00597834 0)
(1.01202 0.00613135 0)
(1.01216 0.00627768 0)
(1.01231 0.00641643 0)
(1.01246 0.006547 0)
(1.01263 0.00666854 0)
(1.0128 0.00678075 0)
(1.01297 0.00688266 0)
(1.01316 0.00697457 0)
(1.01335 0.00705504 0)
(1.00741 0.00544496 0)
(1.00755 0.00543856 0)
(1.00769 0.00543173 0)
(1.00783 0.00542451 0)
(1.00797 0.00541692 0)
(1.00811 0.0054089 0)
(1.00825 0.00540039 0)
(1.00839 0.00539127 0)
(1.00853 0.00538142 0)
(1.00867 0.00537065 0)
(1.00881 0.00535879 0)
(1.00895 0.00534562 0)
(1.00908 0.00533094 0)
(1.00922 0.00531453 0)
(1.00936 0.00529618 0)
(1.00949 0.00527568 0)
(1.00962 0.00525283 0)
(1.00975 0.00522746 0)
(1.00988 0.0051994 0)
(1.01001 0.00516853 0)
(1.01013 0.00513472 0)
(1.01025 0.00509789 0)
(1.01037 0.00505799 0)
(1.01048 0.00501496 0)
(1.0106 0.00496882 0)
(1.0107 0.00491955 0)
(1.01081 0.00486721 0)
(1.01091 0.00481184 0)
(1.011 0.0047535 0)
(1.01109 0.00469226 0)
(1.01118 0.00462823 0)
(1.01126 0.00456148 0)
(1.01134 0.00449213 0)
(1.01141 0.00442029 0)
(1.01148 0.0043461 0)
(1.01154 0.0042697 0)
(1.0116 0.00419126 0)
(1.01165 0.00411097 0)
(1.01169 0.00402906 0)
(1.01173 0.00394577 0)
(1.01176 0.00386141 0)
(1.01179 0.0037763 0)
(1.01182 0.00369079 0)
(1.01183 0.00360529 0)
(1.01184 0.00352023 0)
(1.01185 0.00343607 0)
(1.01185 0.00335329 0)
(1.01185 0.00327239 0)
(1.01184 0.00319389 0)
(1.01183 0.0031183 0)
(1.01181 0.00304616 0)
(1.01179 0.00297798 0)
(1.01176 0.00291428 0)
(1.01173 0.00285557 0)
(1.0117 0.00280234 0)
(1.01166 0.00275507 0)
(1.01162 0.00271422 0)
(1.01159 0.00268023 0)
(1.01154 0.00265351 0)
(1.0115 0.00263444 0)
(1.01146 0.00262337 0)
(1.01142 0.00262061 0)
(1.01137 0.00262644 0)
(1.01133 0.00264107 0)
(1.01129 0.00266468 0)
(1.01125 0.00269741 0)
(1.01122 0.0027393 0)
(1.01118 0.00279039 0)
(1.01115 0.00285063 0)
(1.01113 0.00291993 0)
(1.01111 0.00299812 0)
(1.01109 0.00308502 0)
(1.01108 0.00318034 0)
(1.01107 0.00328379 0)
(1.01107 0.00339499 0)
(1.01107 0.0035135 0)
(1.01108 0.00363885 0)
(1.0111 0.00377049 0)
(1.01113 0.00390783 0)
(1.01116 0.00405019 0)
(1.0112 0.00419686 0)
(1.01125 0.00434708 0)
(1.0113 0.0045 0)
(1.01136 0.00465478 0)
(1.01144 0.00481051 0)
(1.01151 0.00496625 0)
(1.0116 0.00512107 0)
(1.01169 0.005274 0)
(1.0118 0.00542411 0)
(1.01191 0.00557046 0)
(1.01202 0.00571218 0)
(1.01215 0.00584837 0)
(1.01228 0.00597828 0)
(1.01242 0.00610107 0)
(1.01256 0.0062162 0)
(1.01272 0.00632285 0)
(1.01288 0.00642077 0)
(1.01304 0.00650907 0)
(1.01321 0.00658803 0)
(1.01339 0.00665633 0)
(1.0073 0.0051473 0)
(1.00743 0.00513947 0)
(1.00756 0.00513145 0)
(1.00769 0.00512331 0)
(1.00783 0.00511507 0)
(1.00796 0.00510671 0)
(1.00809 0.00509817 0)
(1.00823 0.00508936 0)
(1.00836 0.00508015 0)
(1.00849 0.00507039 0)
(1.00862 0.0050599 0)
(1.00876 0.0050485 0)
(1.00889 0.00503597 0)
(1.00902 0.00502213 0)
(1.00914 0.00500675 0)
(1.00927 0.00498964 0)
(1.0094 0.00497063 0)
(1.00952 0.00494952 0)
(1.00964 0.00492618 0)
(1.00976 0.00490046 0)
(1.00988 0.00487226 0)
(1.00999 0.00484149 0)
(1.0101 0.00480808 0)
(1.01021 0.004772 0)
(1.01032 0.00473323 0)
(1.01042 0.00469179 0)
(1.01052 0.00464768 0)
(1.01061 0.00460095 0)
(1.0107 0.00455164 0)
(1.01079 0.00449982 0)
(1.01087 0.00444555 0)
(1.01095 0.00438889 0)
(1.01103 0.00432994 0)
(1.0111 0.00426878 0)
(1.01116 0.00420551 0)
(1.01122 0.00414024 0)
(1.01128 0.0040731 0)
(1.01133 0.00400424 0)
(1.01138 0.00393384 0)
(1.01142 0.00386212 0)
(1.01146 0.00378932 0)
(1.01149 0.00371571 0)
(1.01152 0.00364161 0)
(1.01154 0.00356736 0)
(1.01156 0.00349334 0)
(1.01157 0.00341996 0)
(1.01158 0.00334764 0)
(1.01158 0.00327682 0)
(1.01158 0.00320798 0)
(1.01158 0.00314156 0)
(1.01157 0.00307804 0)
(1.01156 0.00301789 0)
(1.01154 0.00296157 0)
(1.01153 0.00290954 0)
(1.01151 0.00286224 0)
(1.01149 0.00282011 0)
(1.01146 0.00278356 0)
(1.01144 0.00275299 0)
(1.01141 0.00272877 0)
(1.01138 0.00271127 0)
(1.01135 0.0027008 0)
(1.01133 0.00269766 0)
(1.0113 0.0027021 0)
(1.01127 0.00271435 0)
(1.01125 0.00273457 0)
(1.01122 0.00276289 0)
(1.0112 0.00279939 0)
(1.01118 0.0028441 0)
(1.01117 0.00289701 0)
(1.01115 0.00295805 0)
(1.01114 0.00302709 0)
(1.01114 0.00310397 0)
(1.01114 0.00318847 0)
(1.01114 0.00328033 0)
(1.01115 0.00337921 0)
(1.01116 0.00348475 0)
(1.01118 0.00359653 0)
(1.01121 0.00371405 0)
(1.01124 0.00383677 0)
(1.01128 0.00396411 0)
(1.01132 0.0040954 0)
(1.01137 0.00422994 0)
(1.01143 0.00436697 0)
(1.0115 0.00450569 0)
(1.01157 0.00464526 0)
(1.01165 0.00478481 0)
(1.01173 0.00492347 0)
(1.01182 0.00506033 0)
(1.01192 0.00519451 0)
(1.01203 0.00532514 0)
(1.01214 0.00545139 0)
(1.01226 0.00557243 0)
(1.01238 0.00568755 0)
(1.01251 0.00579598 0)
(1.01265 0.00589718 0)
(1.01279 0.00599043 0)
(1.01294 0.00607549 0)
(1.01309 0.00615154 0)
(1.01325 0.00621886 0)
(1.01342 0.00627624 0)
(1.00718 0.00485332 0)
(1.00731 0.00484441 0)
(1.00744 0.00483557 0)
(1.00756 0.00482685 0)
(1.00769 0.0048183 0)
(1.00782 0.0048099 0)
(1.00794 0.00480163 0)
(1.00807 0.00479339 0)
(1.0082 0.00478507 0)
(1.00832 0.00477653 0)
(1.00845 0.0047676 0)
(1.00857 0.0047581 0)
(1.0087 0.00474785 0)
(1.00882 0.00473663 0)
(1.00894 0.00472427 0)
(1.00906 0.00471056 0)
(1.00918 0.00469532 0)
(1.0093 0.00467839 0)
(1.00941 0.00465962 0)
(1.00953 0.00463886 0)
(1.00964 0.00461602 0)
(1.00974 0.00459101 0)
(1.00985 0.00456375 0)
(1.00995 0.00453421 0)
(1.01005 0.00450237 0)
(1.01015 0.00446822 0)
(1.01025 0.00443177 0)
(1.01034 0.00439305 0)
(1.01042 0.00435209 0)
(1.01051 0.00430894 0)
(1.01059 0.00426363 0)
(1.01067 0.00421622 0)
(1.01074 0.00416676 0)
(1.01081 0.00411532 0)
(1.01087 0.00406196 0)
(1.01093 0.00400676 0)
(1.01099 0.00394982 0)
(1.01104 0.00389125 0)
(1.01109 0.0038312 0)
(1.01114 0.00376984 0)
(1.01118 0.00370737 0)
(1.01121 0.00364401 0)
(1.01124 0.00358005 0)
(1.01127 0.00351578 0)
(1.01129 0.00345152 0)
(1.01131 0.00338764 0)
(1.01133 0.00332452 0)
(1.01134 0.00326255 0)
(1.01135 0.00320214 0)
(1.01135 0.00314372 0)
(1.01135 0.00308769 0)
(1.01135 0.00303449 0)
(1.01135 0.00298452 0)
(1.01134 0.00293821 0)
(1.01134 0.00289596 0)
(1.01133 0.00285816 0)
(1.01131 0.0028252 0)
(1.0113 0.00279744 0)
(1.01129 0.00277522 0)
(1.01127 0.00275889 0)
(1.01126 0.00274873 0)
(1.01124 0.00274504 0)
(1.01123 0.00274805 0)
(1.01121 0.00275798 0)
(1.0112 0.002775 0)
(1.01119 0.00279923 0)
(1.01118 0.00283078 0)
(1.01118 0.00286968 0)
(1.01117 0.00291594 0)
(1.01117 0.00296951 0)
(1.01117 0.0030303 0)
(1.01118 0.00309818 0)
(1.01119 0.00317297 0)
(1.0112 0.00325443 0)
(1.01122 0.00334229 0)
(1.01124 0.00343622 0)
(1.01127 0.00353586 0)
(1.0113 0.00364075 0)
(1.01134 0.00375042 0)
(1.01138 0.00386433 0)
(1.01143 0.00398188 0)
(1.01148 0.00410241 0)
(1.01154 0.00422522 0)
(1.01161 0.00434958 0)
(1.01168 0.0044747 0)
(1.01176 0.00459976 0)
(1.01184 0.00472395 0)
(1.01193 0.00484642 0)
(1.01203 0.00496634 0)
(1.01213 0.00508288 0)
(1.01224 0.00519528 0)
(1.01235 0.00530275 0)
(1.01247 0.00540461 0)
(1.01259 0.00550017 0)
(1.01272 0.00558891 0)
(1.01285 0.00567016 0)
(1.01299 0.00574371 0)
(1.01313 0.00580881 0)
(1.01328 0.00586574 0)
(1.01343 0.00591338 0)
(1.00707 0.00456276 0)
(1.0072 0.00455312 0)
(1.00732 0.00454375 0)
(1.00744 0.00453476 0)
(1.00756 0.00452618 0)
(1.00768 0.00451802 0)
(1.0078 0.00451025 0)
(1.00792 0.00450279 0)
(1.00804 0.00449555 0)
(1.00816 0.00448839 0)
(1.00828 0.00448116 0)
(1.0084 0.00447367 0)
(1.00852 0.00446575 0)
(1.00864 0.00445721 0)
(1.00875 0.00444785 0)
(1.00887 0.00443749 0)
(1.00898 0.00442595 0)
(1.00909 0.00441306 0)
(1.0092 0.00439867 0)
(1.00931 0.00438266 0)
(1.00941 0.00436491 0)
(1.00952 0.00434533 0)
(1.00962 0.00432386 0)
(1.00972 0.00430044 0)
(1.00981 0.00427505 0)
(1.00991 0.00424768 0)
(1.01 0.00421832 0)
(1.01008 0.00418698 0)
(1.01017 0.0041537 0)
(1.01025 0.00411848 0)
(1.01033 0.00408136 0)
(1.0104 0.00404237 0)
(1.01047 0.00400154 0)
(1.01054 0.0039589 0)
(1.01061 0.00391449 0)
(1.01067 0.00386837 0)
(1.01073 0.0038206 0)
(1.01078 0.00377127 0)
(1.01083 0.00372047 0)
(1.01088 0.00366836 0)
(1.01092 0.00361508 0)
(1.01096 0.00356083 0)
(1.01099 0.00350585 0)
(1.01103 0.0034504 0)
(1.01105 0.00339475 0)
(1.01108 0.00333923 0)
(1.0111 0.00328418 0)
(1.01112 0.00322994 0)
(1.01114 0.0031769 0)
(1.01115 0.00312541 0)
(1.01116 0.00307588 0)
(1.01117 0.00302867 0)
(1.01117 0.00298417 0)
(1.01118 0.00294275 0)
(1.01118 0.00290479 0)
(1.01118 0.00287064 0)
(1.01118 0.00284067 0)
(1.01118 0.0028152 0)
(1.01117 0.00279457 0)
(1.01117 0.00277907 0)
(1.01117 0.00276901 0)
(1.01117 0.00276465 0)
(1.01116 0.00276622 0)
(1.01116 0.00277392 0)
(1.01116 0.00278794 0)
(1.01116 0.00280841 0)
(1.01116 0.00283542 0)
(1.01117 0.00286904 0)
(1.01117 0.00290928 0)
(1.01118 0.00295612 0)
(1.01119 0.0030095 0)
(1.01121 0.0030693 0)
(1.01123 0.00313539 0)
(1.01125 0.00320755 0)
(1.01127 0.00328557 0)
(1.0113 0.00336914 0)
(1.01134 0.00345794 0)
(1.01138 0.00355158 0)
(1.01142 0.00364962 0)
(1.01147 0.00375156 0)
(1.01152 0.00385686 0)
(1.01157 0.0039649 0)
(1.01164 0.00407506 0)
(1.0117 0.00418662 0)
(1.01178 0.00429885 0)
(1.01185 0.004411 0)
(1.01194 0.00452229 0)
(1.01202 0.00463193 0)
(1.01212 0.00473913 0)
(1.01221 0.00484312 0)
(1.01232 0.00494317 0)
(1.01242 0.00503854 0)
(1.01254 0.0051286 0)
(1.01265 0.00521268 0)
(1.01277 0.00529032 0)
(1.0129 0.0053609 0)
(1.01303 0.00542422 0)
(1.01316 0.0054796 0)
(1.0133 0.0055273 0)
(1.01344 0.00556632 0)
(1.00697 0.00427534 0)
(1.00709 0.00426525 0)
(1.0072 0.00425564 0)
(1.00732 0.00424662 0)
(1.00744 0.00423825 0)
(1.00755 0.00423054 0)
(1.00767 0.00422347 0)
(1.00778 0.00421698 0)
(1.0079 0.00421097 0)
(1.00801 0.00420531 0)
(1.00813 0.00419985 0)
(1.00824 0.00419443 0)
(1.00835 0.00418887 0)
(1.00846 0.00418299 0)
(1.00857 0.00417659 0)
(1.00868 0.00416949 0)
(1.00879 0.00416151 0)
(1.0089 0.0041525 0)
(1.009 0.0041423 0)
(1.0091 0.00413078 0)
(1.00921 0.00411782 0)
(1.0093 0.00410335 0)
(1.0094 0.00408727 0)
(1.0095 0.00406955 0)
(1.00959 0.00405013 0)
(1.00968 0.00402901 0)
(1.00977 0.00400617 0)
(1.00985 0.00398161 0)
(1.00993 0.00395534 0)
(1.01001 0.00392736 0)
(1.01009 0.00389769 0)
(1.01016 0.00386633 0)
(1.01023 0.0038333 0)
(1.0103 0.0037986 0)
(1.01037 0.00376226 0)
(1.01043 0.00372429 0)
(1.01049 0.00368473 0)
(1.01054 0.00364365 0)
(1.01059 0.00360111 0)
(1.01064 0.00355721 0)
(1.01069 0.0035121 0)
(1.01073 0.00346592 0)
(1.01077 0.00341887 0)
(1.01081 0.00337119 0)
(1.01084 0.00332311 0)
(1.01087 0.00327492 0)
(1.0109 0.00322693 0)
(1.01092 0.00317944 0)
(1.01095 0.0031328 0)
(1.01097 0.00308734 0)
(1.01098 0.00304342 0)
(1.011 0.00300137 0)
(1.01101 0.00296156 0)
(1.01103 0.00292432 0)
(1.01104 0.00288999 0)
(1.01105 0.00285892 0)
(1.01106 0.00283142 0)
(1.01107 0.00280782 0)
(1.01107 0.00278842 0)
(1.01108 0.00277352 0)
(1.01109 0.00276338 0)
(1.01109 0.00275827 0)
(1.0111 0.00275842 0)
(1.01111 0.00276402 0)
(1.01112 0.00277525 0)
(1.01113 0.00279226 0)
(1.01114 0.00281514 0)
(1.01116 0.00284397 0)
(1.01117 0.00287879 0)
(1.01119 0.00291959 0)
(1.01121 0.00296631 0)
(1.01123 0.0030189 0)
(1.01126 0.00307721 0)
(1.01129 0.00314109 0)
(1.01132 0.00321033 0)
(1.01136 0.00328469 0)
(1.0114 0.00336385 0)
(1.01144 0.00344749 0)
(1.01149 0.00353518 0)
(1.01154 0.00362649 0)
(1.01159 0.00372091 0)
(1.01165 0.00381787 0)
(1.01172 0.00391677 0)
(1.01178 0.00401697 0)
(1.01186 0.00411777 0)
(1.01193 0.00421846 0)
(1.01201 0.0043183 0)
(1.0121 0.00441655 0)
(1.01219 0.00451247 0)
(1.01228 0.00460531 0)
(1.01238 0.0046944 0)
(1.01248 0.00477904 0)
(1.01259 0.00485864 0)
(1.0127 0.00493256 0)
(1.01282 0.00500038 0)
(1.01294 0.00506152 0)
(1.01306 0.0051158 0)
(1.01318 0.0051626 0)
(1.01331 0.00520218 0)
(1.01344 0.00523361 0)
(1.00687 0.00399071 0)
(1.00699 0.00398041 0)
(1.0071 0.0039708 0)
(1.00721 0.00396197 0)
(1.00732 0.00395401 0)
(1.00743 0.00394693 0)
(1.00754 0.00394072 0)
(1.00765 0.00393531 0)
(1.00777 0.00393063 0)
(1.00787 0.00392655 0)
(1.00798 0.00392292 0)
(1.00809 0.00391959 0)
(1.0082 0.00391637 0)
(1.00831 0.0039131 0)
(1.00841 0.00390957 0)
(1.00851 0.00390562 0)
(1.00862 0.00390106 0)
(1.00872 0.00389573 0)
(1.00882 0.00388948 0)
(1.00892 0.00388218 0)
(1.00901 0.00387371 0)
(1.00911 0.00386398 0)
(1.0092 0.00385291 0)
(1.00929 0.00384044 0)
(1.00938 0.00382653 0)
(1.00947 0.00381115 0)
(1.00956 0.00379427 0)
(1.00964 0.00377589 0)
(1.00972 0.003756 0)
(1.0098 0.00373459 0)
(1.00987 0.00371165 0)
(1.00994 0.00368718 0)
(1.01001 0.00366117 0)
(1.01008 0.0036336 0)
(1.01015 0.00360447 0)
(1.01021 0.00357379 0)
(1.01027 0.00354157 0)
(1.01032 0.00350782 0)
(1.01038 0.00347261 0)
(1.01043 0.00343601 0)
(1.01048 0.00339811 0)
(1.01052 0.00335905 0)
(1.01057 0.003319 0)
(1.01061 0.00327814 0)
(1.01065 0.0032367 0)
(1.01068 0.00319494 0)
(1.01072 0.0031531 0)
(1.01075 0.0031115 0)
(1.01078 0.00307042 0)
(1.0108 0.00303019 0)
(1.01083 0.00299111 0)
(1.01085 0.00295351 0)
(1.01087 0.00291771 0)
(1.01089 0.00288403 0)
(1.01091 0.00285278 0)
(1.01093 0.00282429 0)
(1.01095 0.00279885 0)
(1.01097 0.00277676 0)
(1.01098 0.00275833 0)
(1.011 0.00274381 0)
(1.01101 0.00273348 0)
(1.01103 0.00272759 0)
(1.01105 0.00272636 0)
(1.01106 0.00272999 0)
(1.01108 0.00273866 0)
(1.0111 0.00275251 0)
(1.01112 0.00277166 0)
(1.01114 0.00279618 0)
(1.01117 0.00282612 0)
(1.01119 0.00286151 0)
(1.01122 0.0029023 0)
(1.01125 0.00294844 0)
(1.01129 0.00299984 0)
(1.01132 0.00305635 0)
(1.01136 0.0031178 0)
(1.0114 0.00318397 0)
(1.01144 0.0032546 0)
(1.01149 0.00332936 0)
(1.01154 0.0034079 0)
(1.0116 0.0034898 0)
(1.01165 0.00357458 0)
(1.01172 0.00366174 0)
(1.01178 0.00375069 0)
(1.01185 0.00384083 0)
(1.01192 0.00393152 0)
(1.012 0.00402207 0)
(1.01208 0.00411179 0)
(1.01216 0.00419997 0)
(1.01225 0.00428592 0)
(1.01234 0.00436892 0)
(1.01244 0.00444834 0)
(1.01253 0.00452351 0)
(1.01264 0.00459388 0)
(1.01274 0.00465885 0)
(1.01285 0.00471803 0)
(1.01296 0.00477087 0)
(1.01308 0.00481722 0)
(1.01319 0.0048565 0)
(1.01331 0.00488897 0)
(1.01344 0.00491379 0)
(1.00679 0.00370845 0)
(1.00689 0.00369816 0)
(1.007 0.00368874 0)
(1.00711 0.00368029 0)
(1.00722 0.00367289 0)
(1.00732 0.00366658 0)
(1.00743 0.00366134 0)
(1.00754 0.00365712 0)
(1.00764 0.00365383 0)
(1.00775 0.00365137 0)
(1.00785 0.00364959 0)
(1.00795 0.00364832 0)
(1.00806 0.00364741 0)
(1.00816 0.00364666 0)
(1.00826 0.0036459 0)
(1.00836 0.00364495 0)
(1.00846 0.00364362 0)
(1.00856 0.00364176 0)
(1.00865 0.00363922 0)
(1.00875 0.00363585 0)
(1.00884 0.00363155 0)
(1.00893 0.00362621 0)
(1.00902 0.00361976 0)
(1.00911 0.00361211 0)
(1.0092 0.00360324 0)
(1.00928 0.00359308 0)
(1.00936 0.00358163 0)
(1.00945 0.00356885 0)
(1.00952 0.00355473 0)
(1.0096 0.00353924 0)
(1.00967 0.00352236 0)
(1.00975 0.00350408 0)
(1.00982 0.00348435 0)
(1.00988 0.00346316 0)
(1.00995 0.00344048 0)
(1.01001 0.00341629 0)
(1.01007 0.00339057 0)
(1.01013 0.00336334 0)
(1.01019 0.00333462 0)
(1.01024 0.00330446 0)
(1.01029 0.00327293 0)
(1.01034 0.00324014 0)
(1.01039 0.00320623 0)
(1.01043 0.00317136 0)
(1.01047 0.00313573 0)
(1.01051 0.00309957 0)
(1.01055 0.00306311 0)
(1.01059 0.00302662 0)
(1.01062 0.00299037 0)
(1.01066 0.00295465 0)
(1.01069 0.00291975 0)
(1.01072 0.00288598 0)
(1.01075 0.00285362 0)
(1.01078 0.00282298 0)
(1.0108 0.00279435 0)
(1.01083 0.00276802 0)
(1.01085 0.00274429 0)
(1.01088 0.00272344 0)
(1.0109 0.00270575 0)
(1.01093 0.00269148 0)
(1.01095 0.00268088 0)
(1.01097 0.00267421 0)
(1.011 0.00267168 0)
(1.01102 0.00267349 0)
(1.01105 0.00267981 0)
(1.01108 0.00269081 0)
(1.0111 0.00270659 0)
(1.01113 0.00272724 0)
(1.01116 0.00275284 0)
(1.0112 0.00278339 0)
(1.01123 0.0028189 0)
(1.01127 0.00285933 0)
(1.01131 0.00290459 0)
(1.01135 0.00295457 0)
(1.01139 0.00300913 0)
(1.01144 0.00306807 0)
(1.01148 0.00313114 0)
(1.01154 0.00319807 0)
(1.01159 0.00326853 0)
(1.01165 0.00334212 0)
(1.01171 0.00341841 0)
(1.01177 0.00349691 0)
(1.01184 0.00357709 0)
(1.0119 0.00365837 0)
(1.01198 0.00374015 0)
(1.01205 0.00382177 0)
(1.01213 0.00390258 0)
(1.01221 0.0039819 0)
(1.0123 0.00405907 0)
(1.01239 0.00413343 0)
(1.01248 0.00420435 0)
(1.01257 0.00427121 0)
(1.01267 0.00433348 0)
(1.01277 0.00439061 0)
(1.01288 0.00444223 0)
(1.01298 0.00448782 0)
(1.01309 0.00452725 0)
(1.0132 0.00455999 0)
(1.01331 0.0045863 0)
(1.01343 0.0046054 0)
(1.0067 0.00342811 0)
(1.00681 0.00341801 0)
(1.00691 0.00340894 0)
(1.00702 0.00340102 0)
(1.00712 0.00339432 0)
(1.00722 0.00338888 0)
(1.00732 0.00338469 0)
(1.00743 0.00338171 0)
(1.00753 0.00337986 0)
(1.00763 0.00337902 0)
(1.00773 0.00337906 0)
(1.00783 0.00337982 0)
(1.00793 0.00338113 0)
(1.00803 0.00338282 0)
(1.00812 0.00338468 0)
(1.00822 0.00338656 0)
(1.00832 0.00338827 0)
(1.00841 0.00338965 0)
(1.0085 0.00339055 0)
(1.00859 0.00339083 0)
(1.00868 0.00339036 0)
(1.00877 0.00338905 0)
(1.00886 0.00338681 0)
(1.00895 0.00338357 0)
(1.00903 0.00337926 0)
(1.00911 0.00337386 0)
(1.00919 0.0033673 0)
(1.00927 0.00335958 0)
(1.00935 0.00335064 0)
(1.00943 0.00334047 0)
(1.0095 0.00332902 0)
(1.00957 0.00331626 0)
(1.00964 0.00330214 0)
(1.00971 0.00328662 0)
(1.00977 0.00326967 0)
(1.00984 0.00325122 0)
(1.0099 0.00323127 0)
(1.00996 0.0032098 0)
(1.01002 0.0031868 0)
(1.01007 0.00316231 0)
(1.01013 0.00313638 0)
(1.01018 0.00310909 0)
(1.01023 0.00308056 0)
(1.01028 0.00305094 0)
(1.01032 0.00302039 0)
(1.01037 0.00298912 0)
(1.01041 0.00295734 0)
(1.01045 0.00292529 0)
(1.01049 0.00289323 0)
(1.01053 0.00286143 0)
(1.01057 0.00283015 0)
(1.0106 0.00279967 0)
(1.01064 0.00277027 0)
(1.01067 0.00274222 0)
(1.01071 0.00271582 0)
(1.01074 0.00269133 0)
(1.01077 0.00266902 0)
(1.0108 0.00264918 0)
(1.01083 0.00263207 0)
(1.01086 0.00261794 0)
(1.01089 0.00260705 0)
(1.01092 0.00259962 0)
(1.01096 0.00259588 0)
(1.01099 0.00259603 0)
(1.01102 0.00260024 0)
(1.01105 0.00260867 0)
(1.01109 0.00262144 0)
(1.01112 0.00263865 0)
(1.01116 0.00266038 0)
(1.0112 0.00268665 0)
(1.01124 0.00271749 0)
(1.01128 0.00275286 0)
(1.01132 0.0027927 0)
(1.01137 0.00283692 0)
(1.01142 0.0028854 0)
(1.01147 0.00293796 0)
(1.01152 0.00299439 0)
(1.01157 0.00305443 0)
(1.01163 0.00311777 0)
(1.01169 0.00318405 0)
(1.01175 0.00325287 0)
(1.01181 0.00332377 0)
(1.01188 0.00339624 0)
(1.01195 0.00346974 0)
(1.01202 0.00354369 0)
(1.0121 0.00361748 0)
(1.01218 0.00369047 0)
(1.01226 0.00376203 0)
(1.01234 0.00383152 0)
(1.01243 0.00389831 0)
(1.01252 0.0039618 0)
(1.01261 0.0040214 0)
(1.0127 0.00407662 0)
(1.0128 0.00412693 0)
(1.0129 0.00417198 0)
(1.013 0.00421129 0)
(1.0131 0.00424473 0)
(1.0132 0.00427183 0)
(1.01331 0.00429284 0)
(1.01342 0.00430703 0)
(1.00663 0.0031492 0)
(1.00673 0.00313944 0)
(1.00683 0.00313085 0)
(1.00693 0.00312356 0)
(1.00703 0.00311765 0)
(1.00713 0.00311316 0)
(1.00723 0.00311008 0)
(1.00733 0.00310838 0)
(1.00743 0.00310797 0)
(1.00753 0.00310874 0)
(1.00762 0.00311056 0)
(1.00772 0.00311327 0)
(1.00781 0.00311671 0)
(1.00791 0.00312069 0)
(1.008 0.00312503 0)
(1.0081 0.00312956 0)
(1.00819 0.0031341 0)
(1.00828 0.00313848 0)
(1.00837 0.00314255 0)
(1.00846 0.00314616 0)
(1.00854 0.00314921 0)
(1.00863 0.00315157 0)
(1.00872 0.00315316 0)
(1.0088 0.0031539 0)
(1.00888 0.00315373 0)
(1.00896 0.00315259 0)
(1.00904 0.00315044 0)
(1.00912 0.00314724 0)
(1.0092 0.00314294 0)
(1.00927 0.00313751 0)
(1.00935 0.00313089 0)
(1.00942 0.00312304 0)
(1.00949 0.0031139 0)
(1.00955 0.00310341 0)
(1.00962 0.00309151 0)
(1.00969 0.00307815 0)
(1.00975 0.00306329 0)
(1.00981 0.00304688 0)
(1.00987 0.00302892 0)
(1.00993 0.00300941 0)
(1.00998 0.00298839 0)
(1.01004 0.00296592 0)
(1.01009 0.00294211 0)
(1.01014 0.00291706 0)
(1.01019 0.00289095 0)
(1.01024 0.00286393 0)
(1.01029 0.00283623 0)
(1.01033 0.00280805 0)
(1.01038 0.00277963 0)
(1.01042 0.00275121 0)
(1.01046 0.00272306 0)
(1.0105 0.00269542 0)
(1.01054 0.00266857 0)
(1.01058 0.00264276 0)
(1.01062 0.00261826 0)
(1.01066 0.00259533 0)
(1.0107 0.00257423 0)
(1.01074 0.00255524 0)
(1.01077 0.00253859 0)
(1.01081 0.00252455 0)
(1.01085 0.00251335 0)
(1.01088 0.00250522 0)
(1.01092 0.00250038 0)
(1.01096 0.00249904 0)
(1.011 0.00250136 0)
(1.01104 0.00250751 0)
(1.01108 0.00251761 0)
(1.01112 0.00253178 0)
(1.01116 0.00255009 0)
(1.0112 0.00257259 0)
(1.01125 0.00259931 0)
(1.01129 0.00263023 0)
(1.01134 0.00266531 0)
(1.01139 0.00270447 0)
(1.01144 0.00274761 0)
(1.01149 0.00279458 0)
(1.01155 0.00284517 0)
(1.01161 0.00289916 0)
(1.01166 0.00295626 0)
(1.01173 0.00301614 0)
(1.01179 0.00307841 0)
(1.01185 0.00314265 0)
(1.01192 0.00320837 0)
(1.01199 0.00327507 0)
(1.01206 0.00334217 0)
(1.01214 0.00340911 0)
(1.01222 0.00347528 0)
(1.0123 0.00354006 0)
(1.01238 0.00360285 0)
(1.01246 0.00366305 0)
(1.01255 0.00372008 0)
(1.01263 0.00377339 0)
(1.01272 0.0038225 0)
(1.01282 0.00386691 0)
(1.01291 0.00390628 0)
(1.01301 0.00394018 0)
(1.0131 0.00396849 0)
(1.0132 0.00399077 0)
(1.01331 0.00400726 0)
(1.01341 0.00401729 0)
(1.00657 0.00287114 0)
(1.00667 0.00286184 0)
(1.00677 0.00285385 0)
(1.00686 0.00284729 0)
(1.00696 0.00284224 0)
(1.00705 0.00283875 0)
(1.00715 0.00283681 0)
(1.00725 0.00283639 0)
(1.00734 0.0028374 0)
(1.00743 0.00283974 0)
(1.00753 0.00284327 0)
(1.00762 0.00284785 0)
(1.00771 0.00285329 0)
(1.00781 0.00285943 0)
(1.0079 0.00286609 0)
(1.00799 0.00287307 0)
(1.00808 0.00288021 0)
(1.00816 0.00288734 0)
(1.00825 0.00289431 0)
(1.00834 0.00290096 0)
(1.00842 0.00290719 0)
(1.00851 0.00291287 0)
(1.00859 0.00291791 0)
(1.00867 0.00292223 0)
(1.00875 0.00292576 0)
(1.00883 0.00292844 0)
(1.00891 0.00293022 0)
(1.00899 0.00293105 0)
(1.00906 0.00293088 0)
(1.00914 0.00292966 0)
(1.00921 0.00292732 0)
(1.00928 0.00292381 0)
(1.00935 0.00291907 0)
(1.00942 0.00291301 0)
(1.00949 0.00290557 0)
(1.00955 0.00289667 0)
(1.00962 0.00288627 0)
(1.00968 0.00287431 0)
(1.00974 0.00286076 0)
(1.0098 0.00284561 0)
(1.00986 0.00282889 0)
(1.00992 0.00281064 0)
(1.00997 0.00279095 0)
(1.01003 0.0027699 0)
(1.01008 0.00274766 0)
(1.01013 0.00272436 0)
(1.01018 0.00270021 0)
(1.01023 0.00267539 0)
(1.01028 0.00265014 0)
(1.01033 0.00262468 0)
(1.01038 0.00259924 0)
(1.01042 0.00257408 0)
(1.01047 0.00254943 0)
(1.01051 0.00252556 0)
(1.01055 0.00250271 0)
(1.0106 0.00248113 0)
(1.01064 0.00246108 0)
(1.01068 0.0024428 0)
(1.01072 0.00242655 0)
(1.01077 0.00241256 0)
(1.01081 0.00240108 0)
(1.01085 0.00239233 0)
(1.01089 0.00238652 0)
(1.01094 0.00238385 0)
(1.01098 0.00238451 0)
(1.01102 0.00238866 0)
(1.01107 0.00239642 0)
(1.01111 0.00240792 0)
(1.01116 0.00242324 0)
(1.01121 0.00244243 0)
(1.01126 0.00246555 0)
(1.01131 0.00249257 0)
(1.01136 0.00252348 0)
(1.01141 0.00255822 0)
(1.01146 0.0025967 0)
(1.01152 0.00263877 0)
(1.01158 0.00268426 0)
(1.01164 0.00273297 0)
(1.0117 0.00278462 0)
(1.01176 0.0028389 0)
(1.01182 0.00289545 0)
(1.01189 0.00295387 0)
(1.01196 0.0030137 0)
(1.01203 0.00307446 0)
(1.0121 0.0031356 0)
(1.01217 0.00319657 0)
(1.01225 0.00325679 0)
(1.01233 0.00331569 0)
(1.01241 0.00337266 0)
(1.01249 0.00342715 0)
(1.01257 0.0034786 0)
(1.01266 0.00352647 0)
(1.01275 0.00357031 0)
(1.01284 0.00360965 0)
(1.01293 0.00364417 0)
(1.01302 0.00367345 0)
(1.01311 0.0036974 0)
(1.01321 0.00371559 0)
(1.0133 0.00372827 0)
(1.0134 0.00373483 0)
(1.00652 0.00259337 0)
(1.00662 0.00258464 0)
(1.00671 0.00257733 0)
(1.0068 0.00257156 0)
(1.0069 0.00256742 0)
(1.00699 0.00256495 0)
(1.00708 0.00256416 0)
(1.00717 0.002565 0)
(1.00727 0.0025674 0)
(1.00736 0.00257125 0)
(1.00745 0.00257641 0)
(1.00754 0.00258275 0)
(1.00763 0.00259007 0)
(1.00772 0.00259822 0)
(1.00781 0.002607 0)
(1.00789 0.00261624 0)
(1.00798 0.00262575 0)
(1.00807 0.00263539 0)
(1.00815 0.00264497 0)
(1.00824 0.00265437 0)
(1.00832 0.00266346 0)
(1.0084 0.00267212 0)
(1.00848 0.00268024 0)
(1.00857 0.00268776 0)
(1.00864 0.00269459 0)
(1.00872 0.00270066 0)
(1.0088 0.00270593 0)
(1.00888 0.00271033 0)
(1.00895 0.0027138 0)
(1.00903 0.00271629 0)
(1.0091 0.00271772 0)
(1.00917 0.00271804 0)
(1.00924 0.00271715 0)
(1.00931 0.00271497 0)
(1.00938 0.00271144 0)
(1.00944 0.00270645 0)
(1.00951 0.00269996 0)
(1.00957 0.00269188 0)
(1.00964 0.00268218 0)
(1.0097 0.00267085 0)
(1.00976 0.00265788 0)
(1.00982 0.00264331 0)
(1.00988 0.00262721 0)
(1.00993 0.00260966 0)
(1.00999 0.00259079 0)
(1.01004 0.00257074 0)
(1.0101 0.00254969 0)
(1.01015 0.00252782 0)
(1.0102 0.00250534 0)
(1.01025 0.00248246 0)
(1.0103 0.0024594 0)
(1.01035 0.0024364 0)
(1.0104 0.0024137 0)
(1.01045 0.00239152 0)
(1.0105 0.00237012 0)
(1.01055 0.00234973 0)
(1.01059 0.00233059 0)
(1.01064 0.00231296 0)
(1.01069 0.00229706 0)
(1.01073 0.00228314 0)
(1.01078 0.00227142 0)
(1.01083 0.00226213 0)
(1.01087 0.00225549 0)
(1.01092 0.00225169 0)
(1.01097 0.00225091 0)
(1.01102 0.00225331 0)
(1.01107 0.00225905 0)
(1.01112 0.00226822 0)
(1.01117 0.00228094 0)
(1.01122 0.00229727 0)
(1.01127 0.00231725 0)
(1.01132 0.00234089 0)
(1.01138 0.00236818 0)
(1.01143 0.00239906 0)
(1.01149 0.00243347 0)
(1.01155 0.00247129 0)
(1.01161 0.00251234 0)
(1.01167 0.00255644 0)
(1.01173 0.00260335 0)
(1.01179 0.00265276 0)
(1.01186 0.00270433 0)
(1.01192 0.00275769 0)
(1.01199 0.0028124 0)
(1.01206 0.00286798 0)
(1.01214 0.00292394 0)
(1.01221 0.00297973 0)
(1.01228 0.0030348 0)
(1.01236 0.0030886 0)
(1.01244 0.00314055 0)
(1.01252 0.00319011 0)
(1.0126 0.00323675 0)
(1.01268 0.00327996 0)
(1.01277 0.00331929 0)
(1.01285 0.00335431 0)
(1.01294 0.0033847 0)
(1.01303 0.00341008 0)
(1.01312 0.00343035 0)
(1.01321 0.00344512 0)
(1.0133 0.00345464 0)
(1.01339 0.00345834 0)
(1.00648 0.00231527 0)
(1.00658 0.00230718 0)
(1.00667 0.00230061 0)
(1.00676 0.00229568 0)
(1.00685 0.00229248 0)
(1.00694 0.00229105 0)
(1.00703 0.00229139 0)
(1.00712 0.00229346 0)
(1.00721 0.00229719 0)
(1.0073 0.00230248 0)
(1.00738 0.00230918 0)
(1.00747 0.00231715 0)
(1.00756 0.00232622 0)
(1.00765 0.00233621 0)
(1.00773 0.00234693 0)
(1.00782 0.00235822 0)
(1.0079 0.00236989 0)
(1.00799 0.00238178 0)
(1.00807 0.00239372 0)
(1.00815 0.00240557 0)
(1.00824 0.00241721 0)
(1.00832 0.00242851 0)
(1.0084 0.00243938 0)
(1.00848 0.00244972 0)
(1.00856 0.00245946 0)
(1.00863 0.00246853 0)
(1.00871 0.00247686 0)
(1.00879 0.0024844 0)
(1.00886 0.00249107 0)
(1.00893 0.00249681 0)
(1.00901 0.00250154 0)
(1.00908 0.00250519 0)
(1.00915 0.00250768 0)
(1.00922 0.0025089 0)
(1.00929 0.00250877 0)
(1.00936 0.0025072 0)
(1.00942 0.00250411 0)
(1.00949 0.00249943 0)
(1.00955 0.0024931 0)
(1.00962 0.00248509 0)
(1.00968 0.0024754 0)
(1.00974 0.00246405 0)
(1.0098 0.00245108 0)
(1.00986 0.00243659 0)
(1.00992 0.00242068 0)
(1.00998 0.00240347 0)
(1.01003 0.00238514 0)
(1.01009 0.00236585 0)
(1.01014 0.0023458 0)
(1.0102 0.00232519 0)
(1.01025 0.00230423 0)
(1.0103 0.00228315 0)
(1.01036 0.00226216 0)
(1.01041 0.0022415 0)
(1.01046 0.00222139 0)
(1.01051 0.00220207 0)
(1.01056 0.00218378 0)
(1.01061 0.00216673 0)
(1.01066 0.00215118 0)
(1.01071 0.00213735 0)
(1.01076 0.00212547 0)
(1.01082 0.00211576 0)
(1.01087 0.00210842 0)
(1.01092 0.00210366 0)
(1.01097 0.00210167 0)
(1.01102 0.00210259 0)
(1.01107 0.00210659 0)
(1.01112 0.00211378 0)
(1.01118 0.00212427 0)
(1.01123 0.00213812 0)
(1.01129 0.00215539 0)
(1.01134 0.00217611 0)
(1.0114 0.00220027 0)
(1.01146 0.00222782 0)
(1.01152 0.00225871 0)
(1.01158 0.00229283 0)
(1.01164 0.00233004 0)
(1.0117 0.00237015 0)
(1.01176 0.00241293 0)
(1.01183 0.00245811 0)
(1.01189 0.00250536 0)
(1.01196 0.00255433 0)
(1.01203 0.00260459 0)
(1.0121 0.00265569 0)
(1.01217 0.00270716 0)
(1.01224 0.00275846 0)
(1.01232 0.00280909 0)
(1.01239 0.00285848 0)
(1.01247 0.00290611 0)
(1.01255 0.00295143 0)
(1.01263 0.00299395 0)
(1.01271 0.00303317 0)
(1.01279 0.00306867 0)
(1.01287 0.00310003 0)
(1.01296 0.00312694 0)
(1.01304 0.00314905 0)
(1.01313 0.00316626 0)
(1.01322 0.00317822 0)
(1.0133 0.00318515 0)
(1.01339 0.00318653 0)
(1.00646 0.00203617 0)
(1.00655 0.00202879 0)
(1.00664 0.00202302 0)
(1.00673 0.00201896 0)
(1.00681 0.00201671 0)
(1.0069 0.00201631 0)
(1.00699 0.00201776 0)
(1.00708 0.00202103 0)
(1.00716 0.00202603 0)
(1.00725 0.00203267 0)
(1.00734 0.00204081 0)
(1.00742 0.00205029 0)
(1.00751 0.00206095 0)
(1.00759 0.00207262 0)
(1.00768 0.00208511 0)
(1.00776 0.00209825 0)
(1.00784 0.00211185 0)
(1.00793 0.00212574 0)
(1.00801 0.00213978 0)
(1.00809 0.00215381 0)
(1.00817 0.0021677 0)
(1.00825 0.00218134 0)
(1.00833 0.00219461 0)
(1.00841 0.00220743 0)
(1.00849 0.00221972 0)
(1.00856 0.00223141 0)
(1.00864 0.00224242 0)
(1.00872 0.00225268 0)
(1.00879 0.00226214 0)
(1.00886 0.0022707 0)
(1.00894 0.00227831 0)
(1.00901 0.00228487 0)
(1.00908 0.00229028 0)
(1.00915 0.00229445 0)
(1.00922 0.00229729 0)
(1.00929 0.00229869 0)
(1.00936 0.00229856 0)
(1.00942 0.00229683 0)
(1.00949 0.00229343 0)
(1.00955 0.00228832 0)
(1.00962 0.00228149 0)
(1.00968 0.00227295 0)
(1.00974 0.00226273 0)
(1.0098 0.00225092 0)
(1.00987 0.00223759 0)
(1.00993 0.00222289 0)
(1.00998 0.00220696 0)
(1.01004 0.00218995 0)
(1.0101 0.00217205 0)
(1.01016 0.00215346 0)
(1.01021 0.00213438 0)
(1.01027 0.00211501 0)
(1.01033 0.00209556 0)
(1.01038 0.00207627 0)
(1.01044 0.00205735 0)
(1.01049 0.00203902 0)
(1.01055 0.00202151 0)
(1.0106 0.00200505 0)
(1.01065 0.00198986 0)
(1.01071 0.00197618 0)
(1.01076 0.00196421 0)
(1.01081 0.00195419 0)
(1.01087 0.00194632 0)
(1.01092 0.00194079 0)
(1.01098 0.00193779 0)
(1.01103 0.00193749 0)
(1.01109 0.00194004 0)
(1.01114 0.00194555 0)
(1.0112 0.00195414 0)
(1.01125 0.00196589 0)
(1.01131 0.00198085 0)
(1.01137 0.00199907 0)
(1.01143 0.00202053 0)
(1.01149 0.00204523 0)
(1.01155 0.00207309 0)
(1.01161 0.00210402 0)
(1.01167 0.00213791 0)
(1.01174 0.00217456 0)
(1.0118 0.00221378 0)
(1.01186 0.0022553 0)
(1.01193 0.00229881 0)
(1.012 0.00234397 0)
(1.01207 0.00239038 0)
(1.01214 0.00243761 0)
(1.01221 0.00248519 0)
(1.01228 0.00253263 0)
(1.01235 0.00257942 0)
(1.01243 0.00262503 0)
(1.0125 0.00266894 0)
(1.01258 0.00271065 0)
(1.01266 0.00274965 0)
(1.01274 0.00278549 0)
(1.01282 0.00281775 0)
(1.0129 0.00284603 0)
(1.01298 0.00287004 0)
(1.01306 0.00288944 0)
(1.01315 0.00290415 0)
(1.01323 0.00291381 0)
(1.01331 0.00291867 0)
(1.0134 0.00291822 0)
(0.000923432 -0.0013212 0)
(0.00264011 -0.00142764 0)
(0.00430348 -0.00145593 0)
(0.00605746 -0.00155065 0)
(0.00797787 -0.00170015 0)
(0.0101949 -0.0019056 0)
(0.0128659 -0.00217222 0)
(0.01621 -0.00250529 0)
(0.0204959 -0.00290151 0)
(0.0259807 -0.00332925 0)
(0.0327201 -0.00369071 0)
(0.0404251 -0.00382737 0)
(0.0485664 -0.00364746 0)
(0.0566842 -0.00345291 0)
(0.0646159 -0.00340656 0)
(0.072165 -0.0032362 0)
(0.0787779 -0.00285249 0)
(0.0838966 -0.00262511 0)
(0.0873925 -0.00279678 0)
(0.0897851 -0.00319064 0)
(0.0916516 -0.00371451 0)
(0.0929062 -0.00429403 0)
(0.0931154 -0.0047131 0)
(0.092232 -0.00453964 0)
(0.0904993 -0.00331948 0)
(0.0881235 -0.00165366 0)
(0.085301 -0.000674804 0)
(0.0822558 -0.000718083 0)
(0.0788648 -0.00127126 0)
(0.0752742 -0.0015305 0)
(0.0721275 -0.000300426 0)
(0.0697215 0.00245645 0)
(0.0675492 0.00557397 0)
(0.0654167 0.00746918 0)
(0.0635304 0.00754256 0)
(0.0621907 0.0064436 0)
(0.0611591 0.0052833 0)
(0.0597312 0.00476698 0)
(0.0571815 0.00496753 0)
(0.0529714 0.00567435 0)
(0.0467706 0.00664421 0)
(0.0384487 0.00768831 0)
(0.0280265 0.00868856 0)
(0.015654 0.00956793 0)
(0.00150112 0.0103007 0)
(-0.0141035 0.0109326 0)
(-0.0307851 0.0114227 0)
(-0.0483941 0.0118027 0)
(-0.0666767 0.0121207 0)
(-0.0855278 0.0123933 0)
(-0.104973 0.0126483 0)
(-0.125039 0.0127995 0)
(-0.145805 0.0127 0)
(-0.167244 0.0121134 0)
(-0.189 0.0108838 0)
(-0.210315 0.00905986 0)
(-0.230283 0.00720284 0)
(-0.24815 0.00606184 0)
(-0.263471 0.00559061 0)
(-0.275434 0.00427405 0)
(-0.282737 0.000415012 0)
(-0.28489 -0.00506558 0)
(-0.283258 -0.00857922 0)
(-0.280664 -0.00773842 0)
(-0.278437 -0.0031788 0)
(-0.275652 0.00265479 0)
(-0.270653 0.00700912 0)
(-0.261717 0.00765537 0)
(-0.247406 0.0039176 0)
(-0.226945 -0.00268238 0)
(-0.200559 -0.00957206 0)
(-0.169357 -0.0148964 0)
(-0.134665 -0.0182465 0)
(-0.0976009 -0.0200712 0)
(-0.0591564 -0.0208565 0)
(-0.0205199 -0.0207307 0)
(0.0168527 -0.0196617 0)
(0.0509277 -0.0176722 0)
(0.079531 -0.0145053 0)
(0.100989 -0.0103732 0)
(0.114427 -0.00555504 0)
(0.120224 -0.000435945 0)
(0.118937 0.00393284 0)
(0.110201 0.00648828 0)
(0.0955534 0.00747147 0)
(0.0782298 0.00770651 0)
(0.0609527 0.00769434 0)
(0.0449109 0.00770445 0)
(0.0299127 0.00798549 0)
(0.0152945 0.00881387 0)
(0.000451943 0.0102508 0)
(-0.0145585 0.0110744 0)
(-0.0272217 0.0093264 0)
(-0.032599 0.0041306 0)
(-0.0277408 -0.00285992 0)
(-0.0141801 -0.0081275 0)
(0.00283779 -0.00869276 0)
(0.0167638 -0.00387748 0)
(0.0194725 0.00476867 0)
(0.00689717 0.00858701 0)
(0.000743504 -0.00318136 0)
(0.00161583 -0.00295459 0)
(0.00224356 -0.00290559 0)
(0.00292012 -0.0031466 0)
(0.00368594 -0.00359397 0)
(0.00469311 -0.00434422 0)
(0.00618644 -0.00551658 0)
(0.00855437 -0.0072516 0)
(0.0122438 -0.00961327 0)
(0.0174287 -0.0124158 0)
(0.0235506 -0.0150906 0)
(0.0296222 -0.0168482 0)
(0.0349245 -0.0174478 0)
(0.0392422 -0.0174224 0)
(0.0427354 -0.017004 0)
(0.0458226 -0.0153006 0)
(0.0483828 -0.012041 0)
(0.0499661 -0.00825707 0)
(0.0500352 -0.00515859 0)
(0.0488519 -0.00277817 0)
(0.045941 -0.000254564 0)
(0.0408563 0.00277625 0)
(0.0339885 0.0057098 0)
(0.0258199 0.0077191 0)
(0.0166793 0.00824591 0)
(0.00730855 0.00780634 0)
(-0.00111072 0.00792708 0)
(-0.00702494 0.00953875 0)
(-0.00963861 0.0109471 0)
(-0.00894996 0.0100569 0)
(-0.00513983 0.0069044 0)
(0.00119902 0.00315256 0)
(0.00878657 2.24156e-05 0)
(0.0163956 -0.00219328 0)
(0.0231835 -0.00336029 0)
(0.0281248 -0.003375 0)
(0.03072 -0.00215314 0)
(0.0308888 0.000221403 0)
(0.0287069 0.00351708 0)
(0.0243086 0.00743677 0)
(0.0177419 0.0117015 0)
(0.00906126 0.0160424 0)
(-0.00164776 0.0202283 0)
(-0.014219 0.0240496 0)
(-0.0284115 0.0273376 0)
(-0.0439493 0.0300202 0)
(-0.0604791 0.0321462 0)
(-0.0777695 0.0337455 0)
(-0.095617 0.0350916 0)
(-0.114026 0.0364002 0)
(-0.13325 0.0379691 0)
(-0.153732 0.0399318 0)
(-0.176202 0.0422201 0)
(-0.201434 0.0444119 0)
(-0.230028 0.0457061 0)
(-0.261885 0.0451716 0)
(-0.295717 0.0422781 0)
(-0.32861 0.0370729 0)
(-0.35642 0.029738 0)
(-0.375606 0.0206539 0)
(-0.385488 0.0115915 0)
(-0.388539 0.00551663 0)
(-0.387473 0.00340178 0)
(-0.382089 0.00196321 0)
(-0.370797 -0.00301964 0)
(-0.3525 -0.0126148 0)
(-0.32727 -0.0246112 0)
(-0.296784 -0.0364245 0)
(-0.263196 -0.0467592 0)
(-0.227911 -0.0553218 0)
(-0.191255 -0.06227 0)
(-0.152872 -0.0678604 0)
(-0.112411 -0.0722256 0)
(-0.0699519 -0.0751981 0)
(-0.0260327 -0.0764364 0)
(0.0181682 -0.0748796 0)
(0.0606641 -0.0697347 0)
(0.0990036 -0.0606377 0)
(0.130142 -0.0475331 0)
(0.151036 -0.032006 0)
(0.159611 -0.0169042 0)
(0.15591 -0.0036039 0)
(0.145196 0.0102601 0)
(0.132542 0.0242442 0)
(0.116355 0.0338279 0)
(0.0940394 0.0368243 0)
(0.0683651 0.035233 0)
(0.0437127 0.0323253 0)
(0.0217793 0.0301902 0)
(0.00255907 0.0291338 0)
(-0.0142499 0.0278752 0)
(-0.0279958 0.0237083 0)
(-0.0367621 0.0136804 0)
(-0.0381474 -0.00262022 0)
(-0.0317853 -0.020792 0)
(-0.0191671 -0.0324009 0)
(-0.00466322 -0.0316346 0)
(0.00768192 -0.0179832 0)
(0.0135198 0.00903887 0)
(0.00583926 0.0237203 0)
(0.000600168 -0.00428591 0)
(0.000764338 -0.00332686 0)
(0.000612956 -0.00310613 0)
(0.000429607 -0.00335489 0)
(0.000223009 -0.00391776 0)
(8.87927e-05 -0.00502915 0)
(0.000231939 -0.00700119 0)
(0.000947418 -0.01011 0)
(0.00219767 -0.0141092 0)
(0.00293593 -0.0177204 0)
(0.00153578 -0.0191697 0)
(-0.00220979 -0.0176598 0)
(-0.00654539 -0.0146372 0)
(-0.0108376 -0.0125967 0)
(-0.0156098 -0.0117702 0)
(-0.0198966 -0.0100641 0)
(-0.0228411 -0.0073575 0)
(-0.0254523 -0.00480162 0)
(-0.0287604 -0.00195475 0)
(-0.0330076 0.00202329 0)
(-0.0385768 0.00651366 0)
(-0.0456687 0.010621 0)
(-0.0541881 0.0143197 0)
(-0.0631387 0.018017 0)
(-0.070797 0.0210066 0)
(-0.0749431 0.0210442 0)
(-0.0735353 0.0166413 0)
(-0.0664973 0.00896882 0)
(-0.0557249 0.000234228 0)
(-0.0439446 -0.00747628 0)
(-0.0333841 -0.0126276 0)
(-0.025201 -0.014516 0)
(-0.0195804 -0.013837 0)
(-0.0163008 -0.0113967 0)
(-0.0150952 -0.00788015 0)
(-0.0155932 -0.00351397 0)
(-0.0173501 0.00162421 0)
(-0.0201475 0.00738738 0)
(-0.0239737 0.0135456 0)
(-0.0289466 0.019919 0)
(-0.0352897 0.0263307 0)
(-0.0432124 0.0325793 0)
(-0.0528206 0.0384237 0)
(-0.06413 0.0436469 0)
(-0.077029 0.0480321 0)
(-0.0912359 0.0515157 0)
(-0.10648 0.0540183 0)
(-0.122351 0.0558038 0)
(-0.138445 0.0572173 0)
(-0.154602 0.0587509 0)
(-0.170743 0.0610336 0)
(-0.187087 0.0646434 0)
(-0.204172 0.0698967 0)
(-0.222943 0.0765087 0)
(-0.244598 0.0832073 0)
(-0.270127 0.0876628 0)
(-0.299464 0.0868703 0)
(-0.330466 0.0782884 0)
(-0.358912 0.0613744 0)
(-0.38029 0.0387936 0)
(-0.392184 0.0158662 0)
(-0.39415 -0.00271583 0)
(-0.386452 -0.0161134 0)
(-0.369453 -0.0267974 0)
(-0.344416 -0.0378173 0)
(-0.314046 -0.0498752 0)
(-0.281145 -0.0619858 0)
(-0.247357 -0.0734817 0)
(-0.212997 -0.0845568 0)
(-0.177652 -0.0954792 0)
(-0.140742 -0.106058 0)
(-0.101825 -0.115802 0)
(-0.0606489 -0.124101 0)
(-0.017367 -0.130203 0)
(0.0281289 -0.133223 0)
(0.0751497 -0.131368 0)
(0.121546 -0.122865 0)
(0.164833 -0.106119 0)
(0.20114 -0.0801692 0)
(0.225936 -0.0467841 0)
(0.23596 -0.0102329 0)
(0.228592 0.0204113 0)
(0.201814 0.0358961 0)
(0.166856 0.0441699 0)
(0.138964 0.0559239 0)
(0.116832 0.0667031 0)
(0.0922176 0.0695017 0)
(0.0652046 0.0651655 0)
(0.0400193 0.0586029 0)
(0.0187917 0.0527701 0)
(0.00204291 0.0470868 0)
(-0.0109108 0.0381961 0)
(-0.0197486 0.0220253 0)
(-0.024124 -0.00133842 0)
(-0.0232573 -0.02714 0)
(-0.0176035 -0.0435795 0)
(-0.0109338 -0.0431054 0)
(-0.00340175 -0.0270894 0)
(0.00344014 0.00831523 0)
(0.00339899 0.0320523 0)
(0.00037275 -0.00482204 0)
(-0.00028388 -0.0029228 0)
(-0.00132971 -0.00245803 0)
(-0.00250908 -0.00260725 0)
(-0.00385278 -0.00310729 0)
(-0.00538843 -0.00427072 0)
(-0.00710638 -0.00646219 0)
(-0.00921919 -0.00952081 0)
(-0.0126794 -0.0118193 0)
(-0.0187585 -0.0112156 0)
(-0.0270458 -0.00853696 0)
(-0.0351679 -0.00712897 0)
(-0.0416501 -0.00706829 0)
(-0.0474167 -0.0065239 0)
(-0.0530736 -0.0060643 0)
(-0.058181 -0.00574986 0)
(-0.0632025 -0.00395727 0)
(-0.0693018 -0.000513836 0)
(-0.0768515 0.00414809 0)
(-0.0857171 0.0100685 0)
(-0.0958091 0.0169315 0)
(-0.106508 0.0235662 0)
(-0.115932 0.0280278 0)
(-0.12075 0.027837 0)
(-0.118716 0.0215695 0)
(-0.11056 0.0104671 0)
(-0.0991672 -0.00182622 0)
(-0.0879832 -0.0115411 0)
(-0.0796516 -0.016899 0)
(-0.0748733 -0.0184367 0)
(-0.073101 -0.0173327 0)
(-0.0730998 -0.0146288 0)
(-0.0733271 -0.0110646 0)
(-0.0725474 -0.00731579 0)
(-0.0700324 -0.00377783 0)
(-0.0659108 -0.000313521 0)
(-0.0608735 0.00360316 0)
(-0.0558645 0.00855002 0)
(-0.0518043 0.0148721 0)
(-0.0495172 0.0223798 0)
(-0.0497378 0.0307026 0)
(-0.0529688 0.0394727 0)
(-0.0595096 0.0481965 0)
(-0.0693841 0.0562482 0)
(-0.0823215 0.0632239 0)
(-0.0979891 0.0687825 0)
(-0.11571 0.0727853 0)
(-0.134687 0.0754784 0)
(-0.154271 0.077214 0)
(-0.173785 0.0786559 0)
(-0.192702 0.0805894 0)
(-0.210695 0.0839367 0)
(-0.227651 0.0895155 0)
(-0.243887 0.0976401 0)
(-0.260231 0.107365 0)
(-0.277828 0.115884 0)
(-0.297613 0.118667 0)
(-0.319348 0.111041 0)
(-0.341053 0.0910032 0)
(-0.35949 0.0614078 0)
(-0.37149 0.028784 0)
(-0.374653 -0.00131531 0)
(-0.367078 -0.0278868 0)
(-0.347779 -0.0521199 0)
(-0.318657 -0.0745832 0)
(-0.284577 -0.0939865 0)
(-0.250054 -0.109234 0)
(-0.21694 -0.121315 0)
(-0.18475 -0.132259 0)
(-0.152264 -0.143351 0)
(-0.118581 -0.154778 0)
(-0.0830697 -0.166159 0)
(-0.0449748 -0.176936 0)
(-0.00368064 -0.186199 0)
(0.0416226 -0.192306 0)
(0.090539 -0.192389 0)
(0.140767 -0.183138 0)
(0.189333 -0.161226 0)
(0.231305 -0.124851 0)
(0.26227 -0.0758756 0)
(0.278692 -0.0204894 0)
(0.2804 0.0380433 0)
(0.263006 0.0874654 0)
(0.217875 0.103538 0)
(0.164063 0.0966225 0)
(0.127372 0.0948233 0)
(0.103669 0.0981882 0)
(0.0809218 0.095791 0)
(0.0580478 0.087056 0)
(0.0378137 0.0763981 0)
(0.0213876 0.0655931 0)
(0.00817559 0.0521692 0)
(-0.00245343 0.031637 0)
(-0.0102048 0.00331975 0)
(-0.0134648 -0.02764 0)
(-0.0137109 -0.0469015 0)
(-0.0127862 -0.0487567 0)
(-0.0088719 -0.0345366 0)
(-0.00318374 0.00155147 0)
(0.00199172 0.0330665 0)
(8.87661e-05 -0.00440714 0)
(-0.00158708 -0.00122516 0)
(-0.00371301 -0.000394251 0)
(-0.00607614 -0.000257333 0)
(-0.00877074 -0.000376505 0)
(-0.0119743 -0.00102531 0)
(-0.0159352 -0.00230438 0)
(-0.0212663 -0.00332508 0)
(-0.0287515 -0.00254805 0)
(-0.0375451 -0.000445704 0)
(-0.045318 0.000693843 0)
(-0.0517115 0.000743081 0)
(-0.0578593 0.0010429 0)
(-0.0636458 0.00109528 0)
(-0.069132 0.000931739 0)
(-0.0758801 0.00245634 0)
(-0.0847217 0.00624087 0)
(-0.0953537 0.0113753 0)
(-0.107566 0.0178221 0)
(-0.120876 0.0253871 0)
(-0.133781 0.032291 0)
(-0.14372 0.035447 0)
(-0.147943 0.0322697 0)
(-0.14534 0.0225777 0)
(-0.137884 0.0091425 0)
(-0.129475 -0.00358271 0)
(-0.123323 -0.0121424 0)
(-0.120099 -0.0160532 0)
(-0.11861 -0.0168499 0)
(-0.117391 -0.0160087 0)
(-0.115119 -0.0147197 0)
(-0.110617 -0.0140573 0)
(-0.10314 -0.0145253 0)
(-0.0927217 -0.0154811 0)
(-0.080116 -0.0156798 0)
(-0.0663793 -0.0140971 0)
(-0.0526324 -0.0100929 0)
(-0.0399398 -0.00340759 0)
(-0.0295634 0.00603365 0)
(-0.0226947 0.0177029 0)
(-0.0199427 0.0309207 0)
(-0.0217633 0.0450396 0)
(-0.028628 0.0591485 0)
(-0.0404539 0.0723381 0)
(-0.0567718 0.0838223 0)
(-0.0769005 0.0928694 0)
(-0.0999115 0.0994256 0)
(-0.124821 0.103444 0)
(-0.150608 0.105397 0)
(-0.176287 0.10603 0)
(-0.200962 0.106367 0)
(-0.223818 0.107532 0)
(-0.244224 0.110709 0)
(-0.261854 0.116782 0)
(-0.27687 0.125517 0)
(-0.290016 0.134488 0)
(-0.302443 0.138672 0)
(-0.315077 0.13204 0)
(-0.327814 0.110875 0)
(-0.338993 0.0766011 0)
(-0.345577 0.0351203 0)
(-0.344236 -0.00741004 0)
(-0.332361 -0.0479776 0)
(-0.309859 -0.0849029 0)
(-0.281091 -0.114892 0)
(-0.252223 -0.135173 0)
(-0.22594 -0.147533 0)
(-0.20083 -0.15706 0)
(-0.174701 -0.167661 0)
(-0.146617 -0.180295 0)
(-0.116421 -0.194411 0)
(-0.0835626 -0.209531 0)
(-0.0469137 -0.225295 0)
(-0.00562522 -0.240514 0)
(0.0412975 -0.252579 0)
(0.0930547 -0.256879 0)
(0.146627 -0.247973 0)
(0.197183 -0.219951 0)
(0.238943 -0.170437 0)
(0.266755 -0.104852 0)
(0.280972 -0.0295778 0)
(0.279002 0.0416778 0)
(0.268911 0.110581 0)
(0.241681 0.158885 0)
(0.188806 0.162247 0)
(0.134919 0.140986 0)
(0.102196 0.127556 0)
(0.0813222 0.121389 0)
(0.0620939 0.111442 0)
(0.0445299 0.0978873 0)
(0.0296679 0.0835491 0)
(0.0169452 0.0673438 0)
(0.00601691 0.0446136 0)
(-0.00336693 0.0128719 0)
(-0.00847001 -0.0229888 0)
(-0.0115401 -0.0449252 0)
(-0.0130061 -0.0498836 0)
(-0.0106251 -0.0389337 0)
(-0.00666163 -0.00498127 0)
(0.000583541 0.0303885 0)
(-0.000244833 -0.00299875 0)
(-0.00304637 0.00176776 0)
(-0.00631989 0.00303934 0)
(-0.00991883 0.00361165 0)
(-0.0139952 0.00415889 0)
(-0.0188377 0.00453957 0)
(-0.0248255 0.00490123 0)
(-0.0323663 0.00597001 0)
(-0.0410274 0.0078272 0)
(-0.0490599 0.00900345 0)
(-0.0553541 0.00864061 0)
(-0.0607417 0.00785936 0)
(-0.0659477 0.00739763 0)
(-0.0711765 0.0072791 0)
(-0.077879 0.00898447 0)
(-0.0875677 0.0137285 0)
(-0.0999466 0.0203118 0)
(-0.114148 0.0275917 0)
(-0.129499 0.0354034 0)
(-0.144425 0.0422768 0)
(-0.156276 0.0450442 0)
(-0.1626 0.0409053 0)
(-0.162828 0.0298133 0)
(-0.159171 0.0151903 0)
(-0.155262 0.00178779 0)
(-0.153233 -0.00766262 0)
(-0.152413 -0.0136087 0)
(-0.15102 -0.017499 0)
(-0.147973 -0.0200675 0)
(-0.142574 -0.0220479 0)
(-0.133896 -0.0245895 0)
(-0.121363 -0.0281428 0)
(-0.105294 -0.0319939 0)
(-0.0865615 -0.034978 0)
(-0.0661957 -0.0359924 0)
(-0.0453203 -0.0341096 0)
(-0.0251662 -0.0286012 0)
(-0.0069316 -0.0191254 0)
(0.00791232 -0.00599457 0)
(0.0179029 0.010471 0)
(0.0223605 0.0296855 0)
(0.0206735 0.0505132 0)
(0.0123965 0.0715197 0)
(-0.00238067 0.091317 0)
(-0.0231893 0.10861 0)
(-0.0488727 0.122231 0)
(-0.078261 0.132013 0)
(-0.109978 0.13795 0)
(-0.142622 0.140488 0)
(-0.17492 0.140338 0)
(-0.205676 0.138594 0)
(-0.233892 0.136568 0)
(-0.258625 0.135736 0)
(-0.279175 0.137434 0)
(-0.295207 0.142053 0)
(-0.306948 0.147861 0)
(-0.315182 0.150179 0)
(-0.320978 0.142585 0)
(-0.325082 0.120253 0)
(-0.327076 0.0830957 0)
(-0.324977 0.0355348 0)
(-0.315988 -0.016664 0)
(-0.29827 -0.0681352 0)
(-0.274508 -0.112586 0)
(-0.25125 -0.14336 0)
(-0.231582 -0.160367 0)
(-0.212694 -0.171049 0)
(-0.191098 -0.182669 0)
(-0.166483 -0.197205 0)
(-0.140203 -0.213515 0)
(-0.112559 -0.231125 0)
(-0.0823807 -0.250765 0)
(-0.0481797 -0.27263 0)
(-0.00904821 -0.295181 0)
(0.0363052 -0.314694 0)
(0.0866998 -0.324757 0)
(0.138868 -0.316776 0)
(0.186027 -0.280773 0)
(0.222506 -0.21514 0)
(0.243997 -0.129141 0)
(0.252654 -0.0337963 0)
(0.247101 0.05645 0)
(0.230054 0.133205 0)
(0.210886 0.197957 0)
(0.173179 0.218086 0)
(0.12431 0.194087 0)
(0.0883619 0.163421 0)
(0.0678644 0.145606 0)
(0.0520803 0.131461 0)
(0.0381158 0.115655 0)
(0.0259724 0.0991418 0)
(0.0150748 0.0810932 0)
(0.00543063 0.0565988 0)
(-0.00289862 0.0215902 0)
(-0.00720565 -0.0175274 0)
(-0.0120223 -0.0413012 0)
(-0.0142452 -0.049987 0)
(-0.0123017 -0.0423795 0)
(-0.00847322 -0.0116499 0)
(-0.000819205 0.0253688 0)
(-0.000576966 -0.000467676 0)
(-0.00450891 0.00615018 0)
(-0.00890887 0.00790578 0)
(-0.0136828 0.00902454 0)
(-0.0190356 0.0104388 0)
(-0.0253005 0.0120929 0)
(-0.0327536 0.0140119 0)
(-0.0412338 0.0160864 0)
(-0.0495222 0.0172976 0)
(-0.0561172 0.0165913 0)
(-0.0611583 0.0148439 0)
(-0.0659352 0.0137527 0)
(-0.0710234 0.0136499 0)
(-0.0773093 0.0153237 0)
(-0.0865601 0.0206351 0)
(-0.0991386 0.0290024 0)
(-0.113873 0.0379604 0)
(-0.129823 0.0464906 0)
(-0.145814 0.0537968 0)
(-0.159553 0.0572397 0)
(-0.168714 0.0539028 0)
(-0.172647 0.0432512 0)
(-0.173109 0.0282145 0)
(-0.17309 0.01346 0)
(-0.174128 0.00174781 0)
(-0.175108 -0.00735306 0)
(-0.17418 -0.014965 0)
(-0.170514 -0.0212927 0)
(-0.163576 -0.0269006 0)
(-0.152479 -0.0331873 0)
(-0.136764 -0.0409166 0)
(-0.116853 -0.0495101 0)
(-0.0936683 -0.0576408 0)
(-0.0683544 -0.0637362 0)
(-0.0421753 -0.0662558 0)
(-0.0162808 -0.0639962 0)
(0.00818935 -0.0561008 0)
(0.0297042 -0.0425245 0)
(0.0468255 -0.0236577 0)
(0.0584659 1.07687e-06 0)
(0.0633442 0.02745 0)
(0.0603831 0.0570742 0)
(0.0492405 0.0868212 0)
(0.0302885 0.114758 0)
(0.00404742 0.13919 0)
(-0.0278626 0.158478 0)
(-0.0635638 0.172057 0)
(-0.101784 0.179879 0)
(-0.140881 0.182451 0)
(-0.179245 0.180862 0)
(-0.215435 0.176385 0)
(-0.248318 0.170451 0)
(-0.276841 0.164602 0)
(-0.300171 0.160488 0)
(-0.317739 0.159082 0)
(-0.329466 0.159209 0)
(-0.335758 0.156585 0)
(-0.337287 0.144906 0)
(-0.334719 0.118856 0)
(-0.328106 0.0770334 0)
(-0.316168 0.0224409 0)
(-0.297355 -0.0384182 0)
(-0.27391 -0.0956214 0)
(-0.25248 -0.138698 0)
(-0.236302 -0.16426 0)
(-0.221322 -0.179874 0)
(-0.202998 -0.194738 0)
(-0.181974 -0.211242 0)
(-0.161162 -0.227639 0)
(-0.141182 -0.244013 0)
(-0.120297 -0.262825 0)
(-0.0967127 -0.285982 0)
(-0.0694024 -0.313357 0)
(-0.0375067 -0.343015 0)
(0.000156657 -0.37009 0)
(0.0417722 -0.385418 0)
(0.0836314 -0.37605 0)
(0.118224 -0.327496 0)
(0.141617 -0.245302 0)
(0.156412 -0.142833 0)
(0.162644 -0.0332132 0)
(0.162342 0.0706089 0)
(0.14871 0.154931 0)
(0.135492 0.2266 0)
(0.115063 0.258143 0)
(0.0825266 0.23574 0)
(0.0567273 0.195545 0)
(0.0420951 0.166731 0)
(0.0311423 0.147004 0)
(0.0219345 0.129062 0)
(0.0135884 0.111228 0)
(0.00569699 0.0919599 0)
(-0.00136807 0.0658805 0)
(-0.00693135 0.027972 0)
(-0.00995249 -0.0121648 0)
(-0.0155052 -0.0367327 0)
(-0.0176205 -0.0496999 0)
(-0.0157402 -0.0461551 0)
(-0.0102025 -0.0185012 0)
(-0.00206147 0.0187819 0)
(-0.000906362 0.00309505 0)
(-0.00590594 0.0117562 0)
(-0.0113387 0.0140049 0)
(-0.0171715 0.0157287 0)
(-0.0236318 0.0180878 0)
(-0.0310171 0.0209565 0)
(-0.0393494 0.0238755 0)
(-0.0479463 0.0257901 0)
(-0.0553669 0.0253679 0)
(-0.0608475 0.0228147 0)
(-0.0654153 0.0203841 0)
(-0.0703846 0.0197021 0)
(-0.0764371 0.021075 0)
(-0.0848977 0.0259553 0)
(-0.0968043 0.0352224 0)
(-0.111248 0.0463947 0)
(-0.126848 0.0567246 0)
(-0.142729 0.0652628 0)
(-0.157352 0.0703526 0)
(-0.168593 0.0691872 0)
(-0.175429 0.0604993 0)
(-0.17888 0.0461955 0)
(-0.181259 0.0303855 0)
(-0.18406 0.0162746 0)
(-0.1865 0.00398155 0)
(-0.186688 -0.00780686 0)
(-0.183501 -0.0193745 0)
(-0.176465 -0.0304791 0)
(-0.164994 -0.0417303 0)
(-0.148805 -0.0539431 0)
(-0.128385 -0.066941 0)
(-0.10472 -0.0795468 0)
(-0.0788842 -0.0901523 0)
(-0.0517897 -0.0971329 0)
(-0.0240577 -0.0991454 0)
(0.0039246 -0.0952273 0)
(0.0308876 -0.0844938 0)
(0.0547099 -0.0666581 0)
(0.0733268 -0.0415394 0)
(0.0850081 -0.00992778 0)
(0.0882899 0.0267732 0)
(0.0822481 0.0663759 0)
(0.0668441 0.106107 0)
(0.0427284 0.143224 0)
(0.0107399 0.174971 0)
(-0.0270688 0.200322 0)
(-0.0684936 0.218105 0)
(-0.112211 0.228098 0)
(-0.156348 0.230761 0)
(-0.199078 0.227251 0)
(-0.238813 0.2191 0)
(-0.274307 0.208138 0)
(-0.304589 0.196272 0)
(-0.32903 0.18536 0)
(-0.347181 0.176732 0)
(-0.358745 0.169735 0)
(-0.363557 0.160323 0)
(-0.361589 0.142014 0)
(-0.352769 0.109217 0)
(-0.336681 0.0600388 0)
(-0.313277 -0.00214496 0)
(-0.285659 -0.0672048 0)
(-0.261156 -0.121299 0)
(-0.243917 -0.157234 0)
(-0.229702 -0.180641 0)
(-0.213816 -0.200304 0)
(-0.197562 -0.218125 0)
(-0.184027 -0.232624 0)
(-0.17265 -0.245671 0)
(-0.160408 -0.26171 0)
(-0.145517 -0.283463 0)
(-0.128132 -0.310953 0)
(-0.108575 -0.343334 0)
(-0.0863835 -0.37877 0)
(-0.061409 -0.410855 0)
(-0.0363784 -0.426889 0)
(-0.0147878 -0.409455 0)
(0.000792207 -0.348543 0)
(0.0105029 -0.257199 0)
(0.0191204 -0.149052 0)
(0.0257643 -0.0341675 0)
(0.0321306 0.0761977 0)
(0.0297527 0.16651 0)
(0.0274555 0.241165 0)
(0.0247571 0.278068 0)
(0.0146623 0.256301 0)
(0.00883489 0.212378 0)
(0.00589991 0.178227 0)
(0.00267333 0.155591 0)
(-0.000197411 0.136708 0)
(-0.00385785 0.118593 0)
(-0.00788172 0.0988821 0)
(-0.0113975 0.071281 0)
(-0.012895 0.0312379 0)
(-0.0143204 -0.00749363 0)
(-0.0191762 -0.0325459 0)
(-0.0209157 -0.0497385 0)
(-0.0195981 -0.0511546 0)
(-0.0125146 -0.0273931 0)
(-0.00296007 0.0105805 0)
(-0.00121581 0.00760496 0)
(-0.00719063 0.0184676 0)
(-0.0135444 0.0211946 0)
(-0.0203065 0.0235344 0)
(-0.0276976 0.0268066 0)
(-0.0359222 0.0306354 0)
(-0.0447196 0.0338759 0)
(-0.0530812 0.0347614 0)
(-0.0597474 0.0323758 0)
(-0.0647724 0.028482 0)
(-0.069667 0.0261984 0)
(-0.075603 0.0268018 0)
(-0.0834051 0.030728 0)
(-0.0942429 0.0393315 0)
(-0.107976 0.0517462 0)
(-0.122994 0.0643705 0)
(-0.138152 0.0748617 0)
(-0.152572 0.0821081 0)
(-0.164669 0.0839132 0)
(-0.173125 0.0783285 0)
(-0.178207 0.0660401 0)
(-0.18155 0.0502369 0)
(-0.184694 0.0343564 0)
(-0.18762 0.0195398 0)
(-0.188921 0.00469755 0)
(-0.187333 -0.0110019 0)
(-0.182331 -0.0270931 0)
(-0.173549 -0.043158 0)
(-0.160644 -0.05962 0)
(-0.143808 -0.0766577 0)
(-0.123838 -0.0934669 0)
(-0.101575 -0.108681 0)
(-0.0773056 -0.12099 0)
(-0.0506791 -0.129345 0)
(-0.0214798 -0.132663 0)
(0.00937884 -0.129349 0)
(0.0387582 -0.117023 0)
(0.062726 -0.0944454 0)
(0.0786649 -0.0612005 0)
(0.0849826 -0.0188769 0)
(0.0813351 0.029528 0)
(0.0679406 0.0806901 0)
(0.0457226 0.13122 0)
(0.0154435 0.177977 0)
(-0.0214108 0.217952 0)
(-0.0628444 0.249305 0)
(-0.107464 0.27047 0)
(-0.153334 0.281317 0)
(-0.198633 0.282732 0)
(-0.241793 0.276164 0)
(-0.281338 0.263434 0)
(-0.316066 0.246594 0)
(-0.345129 0.227966 0)
(-0.368124 0.209937 0)
(-0.384827 0.193932 0)
(-0.394845 0.178913 0)
(-0.39725 0.160738 0)
(-0.390335 0.132977 0)
(-0.372256 0.0895486 0)
(-0.343481 0.0294373 0)
(-0.309339 -0.0387898 0)
(-0.278868 -0.0997964 0)
(-0.257146 -0.144319 0)
(-0.240922 -0.175433 0)
(-0.226421 -0.199503 0)
(-0.215006 -0.217575 0)
(-0.208156 -0.229717 0)
(-0.203004 -0.240396 0)
(-0.195537 -0.255116 0)
(-0.184944 -0.275507 0)
(-0.173124 -0.300267 0)
(-0.161827 -0.328777 0)
(-0.151524 -0.361706 0)
(-0.142028 -0.397678 0)
(-0.134086 -0.428914 0)
(-0.130572 -0.440684 0)
(-0.130833 -0.415084 0)
(-0.13073 -0.35095 0)
(-0.130862 -0.259872 0)
(-0.127879 -0.153766 0)
(-0.120275 -0.0403845 0)
(-0.110046 0.0704033 0)
(-0.102404 0.164455 0)
(-0.0921235 0.239007 0)
(-0.0759871 0.275114 0)
(-0.0619628 0.251486 0)
(-0.0457051 0.208299 0)
(-0.0346102 0.176015 0)
(-0.028586 0.154958 0)
(-0.0245099 0.137379 0)
(-0.0229733 0.12047 0)
(-0.0223895 0.100911 0)
(-0.0211689 0.0716185 0)
(-0.0179965 0.0309932 0)
(-0.0176169 -0.00454835 0)
(-0.0204743 -0.0293773 0)
(-0.0217321 -0.0494137 0)
(-0.0214482 -0.0560407 0)
(-0.0149602 -0.0380691 0)
(-0.00386582 0.000538288 0)
(-0.0014964 0.0129411 0)
(-0.00834258 0.0261244 0)
(-0.0155084 0.0293028 0)
(-0.0230798 0.0322365 0)
(-0.0312495 0.0363212 0)
(-0.0401066 0.0407834 0)
(-0.0491542 0.0437548 0)
(-0.0572599 0.0431244 0)
(-0.0635665 0.0389174 0)
(-0.0688303 0.0344217 0)
(-0.0747136 0.0330982 0)
(-0.0821684 0.0357368 0)
(-0.0919526 0.0427392 0)
(-0.104581 0.0545983 0)
(-0.118963 0.0687926 0)
(-0.133456 0.0815417 0)
(-0.147218 0.0910628 0)
(-0.159325 0.095969 0)
(-0.168499 0.094137 0)
(-0.174391 0.0849693 0)
(-0.178017 0.0705277 0)
(-0.180804 0.0540619 0)
(-0.183374 0.0377173 0)
(-0.185101 0.0213243 0)
(-0.184981 0.00369831 0)
(-0.182578 -0.0153776 0)
(-0.177722 -0.0352086 0)
(-0.170084 -0.0554244 0)
(-0.159508 -0.0760243 0)
(-0.146328 -0.0965137 0)
(-0.130954 -0.115944 0)
(-0.112949 -0.133672 0)
(-0.090842 -0.149488 0)
(-0.0635277 -0.1625 0)
(-0.032506 -0.169777 0)
(-0.00175354 -0.166659 0)
(0.02299 -0.14929 0)
(0.0372689 -0.11624 0)
(0.0405787 -0.0699219 0)
(0.0342113 -0.0144538 0)
(0.0194664 0.0459174 0)
(-0.00257098 0.107283 0)
(-0.0303795 0.166313 0)
(-0.0630164 0.219834 0)
(-0.100109 0.265271 0)
(-0.14061 0.300022 0)
(-0.183233 0.322826 0)
(-0.226351 0.333469 0)
(-0.268237 0.332838 0)
(-0.307429 0.322479 0)
(-0.342625 0.304471 0)
(-0.372889 0.281444 0)
(-0.39764 0.256186 0)
(-0.416661 0.231133 0)
(-0.429914 0.207744 0)
(-0.436392 0.184711 0)
(-0.43265 0.156113 0)
(-0.414413 0.113658 0)
(-0.381681 0.0541792 0)
(-0.341674 -0.0146883 0)
(-0.304894 -0.0785373 0)
(-0.27711 -0.128543 0)
(-0.256822 -0.16585 0)
(-0.242124 -0.193292 0)
(-0.234023 -0.211073 0)
(-0.231374 -0.22186 0)
(-0.229124 -0.232403 0)
(-0.223433 -0.247538 0)
(-0.215059 -0.266692 0)
(-0.206862 -0.287477 0)
(-0.200669 -0.309624 0)
(-0.197079 -0.334869 0)
(-0.196466 -0.364669 0)
(-0.199431 -0.397182 0)
(-0.207562 -0.424387 0)
(-0.221949 -0.431926 0)
(-0.237368 -0.404364 0)
(-0.250342 -0.340778 0)
(-0.259675 -0.254107 0)
(-0.261974 -0.154817 0)
(-0.254937 -0.0471963 0)
(-0.24219 0.0592346 0)
(-0.226046 0.151315 0)
(-0.200982 0.219372 0)
(-0.164754 0.245189 0)
(-0.127679 0.218802 0)
(-0.0943213 0.184129 0)
(-0.0720422 0.160829 0)
(-0.0578281 0.145131 0)
(-0.0473746 0.131172 0)
(-0.0405813 0.116646 0)
(-0.034613 0.0970867 0)
(-0.0276194 0.0661487 0)
(-0.0201549 0.0270971 0)
(-0.0174551 -0.00424028 0)
(-0.0175856 -0.0278017 0)
(-0.0181176 -0.048369 0)
(-0.0190709 -0.0590641 0)
(-0.0153884 -0.0484427 0)
(-0.0048849 -0.011184 0)
(-0.00174552 0.0189911 0)
(-0.00936075 0.0345848 0)
(-0.0172403 0.0381845 0)
(-0.0255183 0.0416719 0)
(-0.0343484 0.0464394 0)
(-0.0437099 0.0512246 0)
(-0.0529453 0.0535119 0)
(-0.0609613 0.0512255 0)
(-0.0673903 0.0456497 0)
(-0.0734912 0.0413494 0)
(-0.0808066 0.041622 0)
(-0.0899595 0.046641 0)
(-0.101376 0.0564982 0)
(-0.114827 0.0705158 0)
(-0.128818 0.0851208 0)
(-0.142036 0.096941 0)
(-0.153835 0.104595 0)
(-0.163317 0.106538 0)
(-0.169759 0.101269 0)
(-0.173605 0.089475 0)
(-0.17609 0.0737906 0)
(-0.17818 0.0568701 0)
(-0.179971 0.0397745 0)
(-0.180912 0.0218263 0)
(-0.180649 0.00218037 0)
(-0.179302 -0.0189256 0)
(-0.176898 -0.0408211 0)
(-0.173252 -0.0632645 0)
(-0.168284 -0.0860166 0)
(-0.161841 -0.108598 0)
(-0.152809 -0.131045 0)
(-0.138722 -0.154176 0)
(-0.117512 -0.177672 0)
(-0.0907061 -0.197309 0)
(-0.0642111 -0.205338 0)
(-0.0447376 -0.194874 0)
(-0.0366605 -0.164003 0)
(-0.0397145 -0.116146 0)
(-0.0510349 -0.0576171 0)
(-0.0682201 0.00668225 0)
(-0.0900566 0.0730062 0)
(-0.115715 0.139014 0)
(-0.144712 0.20255 0)
(-0.176794 0.260569 0)
(-0.211678 0.309674 0)
(-0.248506 0.346737 0)
(-0.286048 0.37005 0)
(-0.322929 0.379435 0)
(-0.35784 0.375922 0)
(-0.389664 0.361408 0)
(-0.417415 0.338257 0)
(-0.440334 0.309262 0)
(-0.458283 0.277706 0)
(-0.471671 0.246755 0)
(-0.479408 0.216811 0)
(-0.476761 0.182638 0)
(-0.457873 0.136087 0)
(-0.422386 0.0744168 0)
(-0.378169 0.00497702 0)
(-0.335969 -0.0602118 0)
(-0.30189 -0.114032 0)
(-0.276628 -0.155718 0)
(-0.260576 -0.184794 0)
(-0.254016 -0.201708 0)
(-0.253174 -0.211979 0)
(-0.251819 -0.223385 0)
(-0.247143 -0.238907 0)
(-0.240881 -0.256402 0)
(-0.235404 -0.273868 0)
(-0.231601 -0.291631 0)
(-0.229813 -0.310878 0)
(-0.230805 -0.332711 0)
(-0.235852 -0.357667 0)
(-0.246607 -0.383968 0)
(-0.264886 -0.405035 0)
(-0.290228 -0.408118 0)
(-0.317143 -0.379921 0)
(-0.340028 -0.320108 0)
(-0.357195 -0.241665 0)
(-0.365211 -0.152944 0)
(-0.359358 -0.0552589 0)
(-0.342536 0.0413198 0)
(-0.315325 0.121555 0)
(-0.272276 0.1736 0)
(-0.218792 0.1869 0)
(-0.169046 0.166028 0)
(-0.128552 0.147489 0)
(-0.100977 0.13659 0)
(-0.0812145 0.128076 0)
(-0.065521 0.118803 0)
(-0.0533631 0.106596 0)
(-0.0414623 0.0865679 0)
(-0.0289866 0.0551897 0)
(-0.0185681 0.0197932 0)
(-0.0134733 -0.0071922 0)
(-0.0111091 -0.0283389 0)
(-0.010679 -0.047069 0)
(-0.0123085 -0.05912 0)
(-0.0119714 -0.0551785 0)
(-0.00543026 -0.0227268 0)
(-0.00196204 0.0256439 0)
(-0.0102491 0.04372 0)
(-0.0187549 0.0477154 0)
(-0.0276528 0.0517113 0)
(-0.0370542 0.0570355 0)
(-0.0468519 0.0619011 0)
(-0.0563073 0.0632847 0)
(-0.0644804 0.0594721 0)
(-0.0714804 0.053134 0)
(-0.0788246 0.0497098 0)
(-0.0877116 0.0518749 0)
(-0.0983346 0.0591016 0)
(-0.110682 0.0710323 0)
(-0.124027 0.0859591 0)
(-0.136929 0.0998955 0)
(-0.148473 0.110053 0)
(-0.158118 0.115263 0)
(-0.165149 0.114097 0)
(-0.169476 0.105969 0)
(-0.172059 0.0924704 0)
(-0.174059 0.0761816 0)
(-0.176077 0.0589974 0)
(-0.17809 0.0413388 0)
(-0.179884 0.0225415 0)
(-0.181572 0.00219596 0)
(-0.183532 -0.0192783 0)
(-0.185903 -0.0415139 0)
(-0.188453 -0.0644754 0)
(-0.190697 -0.0881737 0)
(-0.191269 -0.113232 0)
(-0.187301 -0.141347 0)
(-0.175984 -0.17318 0)
(-0.158118 -0.204301 0)
(-0.139768 -0.224543 0)
(-0.128549 -0.223903 0)
(-0.12834 -0.198825 0)
(-0.137359 -0.154329 0)
(-0.152307 -0.0983637 0)
(-0.171107 -0.035739 0)
(-0.193464 0.0315462 0)
(-0.219023 0.101657 0)
(-0.247097 0.171932 0)
(-0.277092 0.238909 0)
(-0.308251 0.299335 0)
(-0.34005 0.349828 0)
(-0.371844 0.387041 0)
(-0.402655 0.409138 0)
(-0.431513 0.416167 0)
(-0.457546 0.409288 0)
(-0.479878 0.390298 0)
(-0.497939 0.361749 0)
(-0.511941 0.327432 0)
(-0.522438 0.291449 0)
(-0.527953 0.254959 0)
(-0.523073 0.213605 0)
(-0.501655 0.160661 0)
(-0.463335 0.0946656 0)
(-0.415546 0.022662 0)
(-0.368396 -0.0452893 0)
(-0.328581 -0.102731 0)
(-0.298993 -0.146821 0)
(-0.281469 -0.175748 0)
(-0.275171 -0.191543 0)
(-0.274613 -0.201714 0)
(-0.273547 -0.213544 0)
(-0.270014 -0.228511 0)
(-0.265502 -0.244569 0)
(-0.261269 -0.260754 0)
(-0.257688 -0.277229 0)
(-0.255393 -0.293748 0)
(-0.255267 -0.310265 0)
(-0.258281 -0.327481 0)
(-0.265886 -0.345824 0)
(-0.279881 -0.364263 0)
(-0.301636 -0.378199 0)
(-0.329787 -0.377068 0)
(-0.358988 -0.349249 0)
(-0.384132 -0.293894 0)
(-0.403788 -0.223452 0)
(-0.414666 -0.148332 0)
(-0.408623 -0.0678201 0)
(-0.384541 0.010745 0)
(-0.346214 0.071658 0)
(-0.294267 0.107727 0)
(-0.237079 0.117853 0)
(-0.187366 0.110231 0)
(-0.148182 0.10842 0)
(-0.119255 0.108125 0)
(-0.0956828 0.105833 0)
(-0.0754935 0.100574 0)
(-0.0579511 0.0899096 0)
(-0.0407015 0.0699085 0)
(-0.024613 0.0404862 0)
(-0.0128541 0.010173 0)
(-0.00626193 -0.0125557 0)
(-0.0026964 -0.0305547 0)
(-0.00179222 -0.0463271 0)
(-0.00371851 -0.0572602 0)
(-0.00565762 -0.0567583 0)
(-0.00458585 -0.0309351 0)
(-0.00214441 0.0327934 0)
(-0.0110092 0.0534136 0)
(-0.0200603 0.0577874 0)
(-0.0295004 0.0622503 0)
(-0.039402 0.0680288 0)
(-0.0496033 0.0728213 0)
(-0.0593558 0.0732579 0)
(-0.0679349 0.0682268 0)
(-0.0758356 0.0617354 0)
(-0.0845801 0.0596068 0)
(-0.0948755 0.0635566 0)
(-0.106473 0.0724037 0)
(-0.119008 0.0854081 0)
(-0.131585 0.100171 0)
(-0.143052 0.112717 0)
(-0.152823 0.120783 0)
(-0.16047 0.123343 0)
(-0.165608 0.119365 0)
(-0.168711 0.109201 0)
(-0.170979 0.0948981 0)
(-0.173389 0.0786379 0)
(-0.176356 0.0617111 0)
(-0.179964 0.0442972 0)
(-0.184336 0.0259497 0)
(-0.189841 0.00651329 0)
(-0.196866 -0.0138195 0)
(-0.205367 -0.0350361 0)
(-0.214794 -0.0575992 0)
(-0.223925 -0.0825119 0)
(-0.23022 -0.11196 0)
(-0.230716 -0.147738 0)
(-0.225038 -0.186914 0)
(-0.217578 -0.219336 0)
(-0.215263 -0.232333 0)
(-0.222002 -0.219481 0)
(-0.236158 -0.184093 0)
(-0.254549 -0.134279 0)
(-0.276015 -0.075305 0)
(-0.300464 -0.00945225 0)
(-0.327692 0.0613256 0)
(-0.356632 0.134579 0)
(-0.386186 0.206821 0)
(-0.415819 0.274697 0)
(-0.444947 0.335036 0)
(-0.472783 0.384502 0)
(-0.498626 0.419744 0)
(-0.521711 0.438934 0)
(-0.54133 0.442218 0)
(-0.557033 0.430801 0)
(-0.568752 0.406882 0)
(-0.577088 0.374081 0)
(-0.582458 0.336448 0)
(-0.582829 0.295346 0)
(-0.57268 0.247351 0)
(-0.546358 0.187501 0)
(-0.503746 0.1157 0)
(-0.451689 0.0389782 0)
(-0.3997 -0.0331491 0)
(-0.355226 -0.0937903 0)
(-0.322555 -0.138924 0)
(-0.303613 -0.167341 0)
(-0.296558 -0.182604 0)
(-0.295508 -0.192451 0)
(-0.294761 -0.203265 0)
(-0.292265 -0.216754 0)
(-0.288446 -0.232193 0)
(-0.283986 -0.248778 0)
(-0.279771 -0.265321 0)
(-0.276986 -0.280484 0)
(-0.276169 -0.294209 0)
(-0.277341 -0.30741 0)
(-0.281174 -0.320414 0)
(-0.289012 -0.332992 0)
(-0.302285 -0.344696 0)
(-0.321974 -0.352663 0)
(-0.346475 -0.34893 0)
(-0.370224 -0.323306 0)
(-0.387564 -0.27304 0)
(-0.398305 -0.209511 0)
(-0.403817 -0.14715 0)
(-0.397253 -0.087209 0)
(-0.37204 -0.0289034 0)
(-0.332678 0.0172732 0)
(-0.284375 0.04441 0)
(-0.234395 0.0564099 0)
(-0.191423 0.0624065 0)
(-0.155693 0.0716223 0)
(-0.125608 0.0775936 0)
(-0.0987563 0.079272 0)
(-0.0744924 0.0768352 0)
(-0.0522829 0.0675623 0)
(-0.0316372 0.0493431 0)
(-0.0142405 0.0242543 0)
(-0.00257485 -0.000375002 0)
(0.00398592 -0.0185679 0)
(0.00703501 -0.0330229 0)
(0.00720175 -0.0456036 0)
(0.00436508 -0.0544111 0)
(0.00085696 -0.054266 0)
(-0.0025866 -0.0340559 0)
(-0.00228979 0.0403347 0)
(-0.011637 0.0635558 0)
(-0.0211526 0.0683009 0)
(-0.0310589 0.0731982 0)
(-0.0413966 0.0793612 0)
(-0.0519822 0.0840169 0)
(-0.0621137 0.083601 0)
(-0.0712948 0.0777403 0)
(-0.0802626 0.0715807 0)
(-0.0903333 0.070847 0)
(-0.101683 0.0761454 0)
(-0.113704 0.0858297 0)
(-0.125857 0.098967 0)
(-0.137322 0.112796 0)
(-0.147295 0.123557 0)
(-0.155448 0.129395 0)
(-0.161528 0.129467 0)
(-0.165554 0.123319 0)
(-0.168411 0.112074 0)
(-0.171318 0.097848 0)
(-0.175067 0.0823356 0)
(-0.180048 0.0664584 0)
(-0.186507 0.050356 0)
(-0.194734 0.0337288 0)
(-0.20505 0.0163946 0)
(-0.21749 -0.00186067 0)
(-0.231855 -0.0215283 0)
(-0.247383 -0.0437016 0)
(-0.262236 -0.0707052 0)
(-0.274017 -0.105136 0)
(-0.281496 -0.146622 0)
(-0.286585 -0.188096 0)
(-0.293904 -0.216771 0)
(-0.307369 -0.221633 0)
(-0.326897 -0.200849 0)
(-0.349937 -0.16048 0)
(-0.375404 -0.10715 0)
(-0.403454 -0.0450428 0)
(-0.433424 0.0229309 0)
(-0.463866 0.095216 0)
(-0.494023 0.169149 0)
(-0.523562 0.241155 0)
(-0.551635 0.307866 0)
(-0.577395 0.366075 0)
(-0.599948 0.412335 0)
(-0.618539 0.443397 0)
(-0.632704 0.45769 0)
(-0.642358 0.455895 0)
(-0.647989 0.439891 0)
(-0.650319 0.412416 0)
(-0.649312 0.376526 0)
(-0.642562 0.333297 0)
(-0.624935 0.280349 0)
(-0.591739 0.214522 0)
(-0.543324 0.136988 0)
(-0.486145 0.0550846 0)
(-0.429402 -0.0214291 0)
(-0.381111 -0.0851136 0)
(-0.345963 -0.131653 0)
(-0.32524 -0.160603 0)
(-0.316711 -0.175954 0)
(-0.315029 -0.184646 0)
(-0.314776 -0.193108 0)
(-0.312891 -0.204871 0)
(-0.308784 -0.220377 0)
(-0.30351 -0.237708 0)
(-0.298849 -0.254164 0)
(-0.295998 -0.268404 0)
(-0.294749 -0.281111 0)
(-0.294457 -0.293304 0)
(-0.295456 -0.304709 0)
(-0.298791 -0.314446 0)
(-0.30535 -0.322326 0)
(-0.316119 -0.328448 0)
(-0.331966 -0.331514 0)
(-0.351559 -0.326969 0)
(-0.369476 -0.307014 0)
(-0.37823 -0.265914 0)
(-0.375483 -0.209004 0)
(-0.366892 -0.151886 0)
(-0.354806 -0.104002 0)
(-0.332527 -0.0625394 0)
(-0.298186 -0.0282493 0)
(-0.258261 -0.00588964 0)
(-0.218397 0.00822968 0)
(-0.181985 0.0216427 0)
(-0.148375 0.035637 0)
(-0.116965 0.0446478 0)
(-0.0878248 0.0489444 0)
(-0.0607379 0.04879 0)
(-0.0360452 0.0419928 0)
(-0.0145872 0.0278548 0)
(0.00187077 0.00849432 0)
(0.0118359 -0.0098075 0)
(0.0165724 -0.0232553 0)
(0.0175239 -0.0338553 0)
(0.0156292 -0.0433053 0)
(0.0110749 -0.0500604 0)
(0.00601573 -0.0491208 0)
(-0.000550538 -0.0325967 0)
(-0.00239441 0.0481616 0)
(-0.0121233 0.0740381 0)
(-0.0220183 0.0791585 0)
(-0.0323102 0.0844677 0)
(-0.0430176 0.0909802 0)
(-0.0539646 0.0955122 0)
(-0.0645335 0.0944283 0)
(-0.0744279 0.0881226 0)
(-0.0844707 0.0825889 0)
(-0.0956432 0.0830729 0)
(-0.107649 0.0891125 0)
(-0.119658 0.0988545 0)
(-0.131115 0.111381 0)
(-0.141404 0.123808 0)
(-0.150044 0.132653 0)
(-0.15693 0.136395 0)
(-0.162047 0.134448 0)
(-0.165809 0.126983 0)
(-0.169327 0.115625 0)
(-0.173705 0.102306 0)
(-0.179595 0.0883014 0)
(-0.187407 0.0743334 0)
(-0.197413 0.060485 0)
(-0.209793 0.0464158 0)
(-0.224653 0.0317586 0)
(-0.241864 0.0159445 0)
(-0.260984 -0.00210465 0)
(-0.281313 -0.0241516 0)
(-0.301538 -0.0528718 0)
(-0.320347 -0.0901702 0)
(-0.337885 -0.133648 0)
(-0.355993 -0.174222 0)
(-0.377364 -0.198693 0)
(-0.403286 -0.19791 0)
(-0.432284 -0.172623 0)
(-0.462461 -0.12944 0)
(-0.49371 -0.0740472 0)
(-0.526503 -0.0106958 0)
(-0.559568 0.058019 0)
(-0.591573 0.130138 0)
(-0.622049 0.202963 0)
(-0.650244 0.272873 0)
(-0.67529 0.336413 0)
(-0.696203 0.390387 0)
(-0.712148 0.431386 0)
(-0.72274 0.456592 0)
(-0.728147 0.465254 0)
(-0.729016 0.458794 0)
(-0.725919 0.439119 0)
(-0.718307 0.407718 0)
(-0.703598 0.364929 0)
(-0.677454 0.309282 0)
(-0.636431 0.239352 0)
(-0.581517 0.15742 0)
(-0.518909 0.0710871 0)
(-0.457472 -0.00954554 0)
(-0.405529 -0.0764997 0)
(-0.367789 -0.125262 0)
(-0.344897 -0.155622 0)
(-0.334734 -0.171172 0)
(-0.332566 -0.178274 0)
(-0.332732 -0.184227 0)
(-0.331004 -0.194381 0)
(-0.326319 -0.2096 0)
(-0.320434 -0.226864 0)
(-0.315611 -0.242902 0)
(-0.312585 -0.256897 0)
(-0.310597 -0.269798 0)
(-0.308929 -0.282201 0)
(-0.307983 -0.293483 0)
(-0.308667 -0.302718 0)
(-0.311399 -0.309579 0)
(-0.316359 -0.314058 0)
(-0.324145 -0.316043 0)
(-0.335476 -0.315148 0)
(-0.349961 -0.309662 0)
(-0.364053 -0.295244 0)
(-0.370312 -0.266328 0)
(-0.362079 -0.221994 0)
(-0.340988 -0.170891 0)
(-0.314916 -0.125671 0)
(-0.286961 -0.0913179 0)
(-0.25501 -0.0650204 0)
(-0.220397 -0.0448524 0)
(-0.186696 -0.0296276 0)
(-0.15422 -0.0149592 0)
(-0.122168 -0.000159448 0)
(-0.090945 0.0105879 0)
(-0.0616294 0.0170182 0)
(-0.0345847 0.0195567 0)
(-0.010678 0.0167281 0)
(0.00835519 0.00786355 0)
(0.0212502 -0.00456868 0)
(0.027605 -0.0160662 0)
(0.0288595 -0.0248971 0)
(0.0267473 -0.0318063 0)
(0.0221548 -0.0385216 0)
(0.0158139 -0.0437428 0)
(0.00945652 -0.0418591 0)
(0.000837546 -0.0279155 0)
(-0.00245454 0.0561643 0)
(-0.0124574 0.0847494 0)
(-0.0226393 0.0902593 0)
(-0.0332286 0.0959688 0)
(-0.0442309 0.102826 0)
(-0.0555016 0.107305 0)
(-0.0665249 0.105781 0)
(-0.0771513 0.0993524 0)
(-0.0881563 0.0945483 0)
(-0.100149 0.0959053 0)
(-0.112481 0.102063 0)
(-0.124225 0.11121 0)
(-0.134919 0.122613 0)
(-0.144181 0.133416 0)
(-0.151805 0.140424 0)
(-0.157897 0.142413 0)
(-0.162717 0.13912 0)
(-0.166991 0.131262 0)
(-0.171888 0.120687 0)
(-0.178332 0.109013 0)
(-0.186853 0.0971926 0)
(-0.197784 0.0857563 0)
(-0.211213 0.0745975 0)
(-0.227083 0.0632404 0)
(-0.245352 0.0512142 0)
(-0.265965 0.0378166 0)
(-0.288745 0.0216964 0)
(-0.313229 0.000616514 0)
(-0.339031 -0.027912 0)
(-0.366074 -0.0651051 0)
(-0.394453 -0.107981 0)
(-0.424818 -0.146691 0)
(-0.458271 -0.167904 0)
(-0.494491 -0.163875 0)
(-0.531287 -0.136813 0)
(-0.567313 -0.0928816 0)
(-0.602959 -0.0369207 0)
(-0.637989 0.0266213 0)
(-0.671964 0.0946298 0)
(-0.70422 0.164627 0)
(-0.733485 0.23449 0)
(-0.758905 0.300497 0)
(-0.779638 0.359031 0)
(-0.79481 0.407097 0)
(-0.803923 0.441726 0)
(-0.807075 0.460781 0)
(-0.804732 0.464079 0)
(-0.797085 0.452852 0)
(-0.78329 0.427601 0)
(-0.760898 0.387541 0)
(-0.726483 0.331619 0)
(-0.67793 0.259894 0)
(-0.616871 0.175569 0)
(-0.549263 0.0863007 0)
(-0.483555 0.00237918 0)
(-0.428042 -0.067727 0)
(-0.387426 -0.119143 0)
(-0.362178 -0.151337 0)
(-0.350384 -0.167545 0)
(-0.347643 -0.173723 0)
(-0.347918 -0.177744 0)
(-0.34622 -0.185964 0)
(-0.341201 -0.199746 0)
(-0.334892 -0.216094 0)
(-0.329618 -0.231862 0)
(-0.32593 -0.246205 0)
(-0.323095 -0.259612 0)
(-0.320499 -0.272328 0)
(-0.318364 -0.28389 0)
(-0.317359 -0.293583 0)
(-0.317808 -0.301049 0)
(-0.319677 -0.30618 0)
(-0.323015 -0.308669 0)
(-0.328007 -0.308104 0)
(-0.334939 -0.304332 0)
(-0.343938 -0.297238 0)
(-0.353646 -0.285711 0)
(-0.359524 -0.266938 0)
(-0.354786 -0.23827 0)
(-0.335503 -0.201061 0)
(-0.304682 -0.161781 0)
(-0.268829 -0.127784 0)
(-0.23188 -0.101798 0)
(-0.195144 -0.0817675 0)
(-0.159698 -0.064829 0)
(-0.125694 -0.0491374 0)
(-0.0924769 -0.0344139 0)
(-0.0605538 -0.0219967 0)
(-0.0313004 -0.0128429 0)
(-0.00561136 -0.00669296 0)
(0.0151768 -0.00447181 0)
(0.029668 -0.00693897 0)
(0.0376756 -0.0120386 0)
(0.0393151 -0.0175465 0)
(0.036895 -0.022466 0)
(0.0317653 -0.0265588 0)
(0.0249977 -0.0316189 0)
(0.0178907 -0.0362537 0)
(0.0111402 -0.0333721 0)
(0.00154774 -0.0214418 0)
(-0.00246753 0.0642314 0)
(-0.0126303 0.0955758 0)
(-0.0229993 0.101498 0)
(-0.033789 0.107605 0)
(-0.0450001 0.114826 0)
(-0.0565353 0.119357 0)
(-0.0679823 0.117626 0)
(-0.0792764 0.111311 0)
(-0.0910564 0.107196 0)
(-0.103595 0.109029 0)
(-0.116026 0.114775 0)
(-0.127423 0.122854 0)
(-0.137458 0.132834 0)
(-0.145971 0.14198 0)
(-0.152979 0.147377 0)
(-0.158787 0.148096 0)
(-0.163913 0.144214 0)
(-0.169279 0.136836 0)
(-0.175979 0.12779 0)
(-0.184721 0.118319 0)
(-0.195866 0.109079 0)
(-0.209526 0.100332 0)
(-0.22553 0.0917462 0)
(-0.243704 0.0828574 0)
(-0.264095 0.0733169 0)
(-0.286883 0.0624422 0)
(-0.312262 0.0488479 0)
(-0.340462 0.0303752 0)
(-0.371812 0.00445753 0)
(-0.40665 -0.0303152 0)
(-0.444705 -0.0709997 0)
(-0.485605 -0.107545 0)
(-0.529208 -0.126556 0)
(-0.573975 -0.121365 0)
(-0.617477 -0.0948924 0)
(-0.658706 -0.0525444 0)
(-0.697537 0.00192283 0)
(-0.73339 0.0646453 0)
(-0.766728 0.130491 0)
(-0.797583 0.197241 0)
(-0.82425 0.262768 0)
(-0.845677 0.323368 0)
(-0.861299 0.375654 0)
(-0.870395 0.416965 0)
(-0.872659 0.444734 0)
(-0.868219 0.457188 0)
(-0.856862 0.453995 0)
(-0.837761 0.435238 0)
(-0.808864 0.399702 0)
(-0.767636 0.346066 0)
(-0.713105 0.275102 0)
(-0.64736 0.190715 0)
(-0.57599 0.100415 0)
(-0.506795 0.0143299 0)
(-0.447895 -0.0587112 0)
(-0.404294 -0.11312 0)
(-0.37669 -0.147599 0)
(-0.363337 -0.164992 0)
(-0.359905 -0.171031 0)
(-0.360189 -0.17354 0)
(-0.358645 -0.179478 0)
(-0.35348 -0.191139 0)
(-0.346485 -0.206346 0)
(-0.340111 -0.221954 0)
(-0.335326 -0.236429 0)
(-0.331742 -0.249807 0)
(-0.328628 -0.262609 0)
(-0.325759 -0.274809 0)
(-0.32355 -0.285579 0)
(-0.322371 -0.294136 0)
(-0.322232 -0.300314 0)
(-0.323146 -0.304112 0)
(-0.325197 -0.305276 0)
(-0.328265 -0.303418 0)
(-0.332129 -0.298275 0)
(-0.336742 -0.289954 0)
(-0.341896 -0.27878 0)
(-0.345937 -0.264545 0)
(-0.344908 -0.246223 0)
(-0.334169 -0.223122 0)
(-0.311717 -0.196392 0)
(-0.279751 -0.169167 0)
(-0.242624 -0.144632 0)
(-0.203758 -0.123678 0)
(-0.164726 -0.10501 0)
(-0.126108 -0.0873697 0)
(-0.0884704 -0.0708556 0)
(-0.0527247 -0.0557355 0)
(-0.0202483 -0.042157 0)
(0.00710878 -0.0303909 0)
(0.0273729 -0.0214939 0)
(0.0393293 -0.0161273 0)
(0.0437813 -0.014358 0)
(0.0424794 -0.0151417 0)
(0.0379757 -0.0171977 0)
(0.0312637 -0.0193913 0)
(0.0238778 -0.0240864 0)
(0.0174023 -0.0289474 0)
(0.0113303 -0.0248349 0)
(0.00173688 -0.0144712 0)
(-0.00243269 0.0722506 0)
(-0.012638 0.106401 0)
(-0.0230893 0.112765 0)
(-0.033975 0.119272 0)
(-0.0452972 0.12689 0)
(-0.0570148 0.131594 0)
(-0.0688087 0.129871 0)
(-0.0806433 0.123819 0)
(-0.0929759 0.120265 0)
(-0.105818 0.122211 0)
(-0.118208 0.127162 0)
(-0.129277 0.133885 0)
(-0.138833 0.142318 0)
(-0.14691 0.149909 0)
(-0.153695 0.154017 0)
(-0.159668 0.154006 0)
(-0.165543 0.150255 0)
(-0.172309 0.144064 0)
(-0.180892 0.137047 0)
(-0.191752 0.13004 0)
(-0.205013 0.123381 0)
(-0.220529 0.117053 0)
(-0.237986 0.110654 0)
(-0.257313 0.103966 0)
(-0.278796 0.0968976 0)
(-0.302862 0.0888744 0)
(-0.330039 0.0786439 0)
(-0.361113 0.0642596 0)
(-0.397008 0.0430299 0)
(-0.438012 0.0126088 0)
(-0.483566 -0.0248038 0)
(-0.532704 -0.0590994 0)
(-0.58399 -0.0768469 0)
(-0.635294 -0.0721488 0)
(-0.684595 -0.0482153 0)
(-0.730418 -0.00906807 0)
(-0.771317 0.0427079 0)
(-0.807705 0.102201 0)
(-0.840278 0.164322 0)
(-0.868314 0.226653 0)
(-0.891008 0.286618 0)
(-0.907454 0.340755 0)
(-0.917033 0.385933 0)
(-0.919144 0.41964 0)
(-0.913269 0.439478 0)
(-0.89913 0.443637 0)
(-0.876015 0.431255 0)
(-0.842431 0.401281 0)
(-0.796702 0.352309 0)
(-0.738549 0.284875 0)
(-0.670259 0.202835 0)
(-0.59693 0.113449 0)
(-0.525514 0.026378 0)
(-0.463857 -0.0492273 0)
(-0.41758 -0.106818 0)
(-0.387966 -0.143862 0)
(-0.373409 -0.162749 0)
(-0.369535 -0.169088 0)
(-0.369926 -0.170694 0)
(-0.368662 -0.174773 0)
(-0.36333 -0.184554 0)
(-0.355387 -0.19863 0)
(-0.347565 -0.213742 0)
(-0.341479 -0.227733 0)
(-0.337019 -0.240539 0)
(-0.333233 -0.253157 0)
(-0.329629 -0.26587 0)
(-0.326615 -0.277674 0)
(-0.32462 -0.287472 0)
(-0.323457 -0.294998 0)
(-0.322852 -0.300281 0)
(-0.322873 -0.303139 0)
(-0.323654 -0.303395 0)
(-0.32509 -0.300921 0)
(-0.326817 -0.295469 0)
(-0.328417 -0.28691 0)
(-0.329729 -0.27573 0)
(-0.330635 -0.262959 0)
(-0.330055 -0.249315 0)
(-0.32537 -0.234627 0)
(-0.313575 -0.218437 0)
(-0.293233 -0.200938 0)
(-0.265245 -0.183021 0)
(-0.231779 -0.165416 0)
(-0.194741 -0.148082 0)
(-0.155389 -0.130571 0)
(-0.114887 -0.112762 0)
(-0.0747261 -0.0947162 0)
(-0.036707 -0.0762132 0)
(-0.00316725 -0.0572455 0)
(0.0224829 -0.0389219 0)
(0.0373335 -0.0238654 0)
(0.0419174 -0.0148432 0)
(0.0395726 -0.0114382 0)
(0.0342102 -0.0110675 0)
(0.0272028 -0.0119945 0)
(0.0207259 -0.0174372 0)
(0.0157963 -0.0229253 0)
(0.010791 -0.0170438 0)
(0.00164762 -0.00775297 0)
(-0.00235116 0.0801112 0)
(-0.0124824 0.117109 0)
(-0.0229104 0.123948 0)
(-0.0337834 0.130861 0)
(-0.0451101 0.138916 0)
(-0.0569081 0.143912 0)
(-0.0689358 0.142375 0)
(-0.0811444 0.136664 0)
(-0.0937996 0.13351 0)
(-0.106736 0.135284 0)
(-0.118993 0.139209 0)
(-0.129781 0.144444 0)
(-0.139033 0.151341 0)
(-0.14694 0.157572 0)
(-0.153824 0.160755 0)
(-0.160289 0.160528 0)
(-0.167159 0.157494 0)
(-0.175381 0.152952 0)
(-0.185644 0.148169 0)
(-0.198141 0.143554 0)
(-0.212742 0.139144 0)
(-0.229124 0.134764 0)
(-0.247036 0.130181 0)
(-0.266662 0.125563 0)
(-0.288506 0.121059 0)
(-0.313138 0.116232 0)
(-0.341286 0.110086 0)
(-0.374024 0.10089 0)
(-0.412539 0.0856308 0)
(-0.45738 0.0609381 0)
(-0.50793 0.0277044 0)
(-0.562493 -0.00428359 0)
(-0.618717 -0.0215154 0)
(-0.674203 -0.0180605 0)
(-0.726924 0.00290614 0)
(-0.77513 0.0377882 0)
(-0.817913 0.0845385 0)
(-0.854878 0.138448 0)
(-0.885857 0.195147 0)
(-0.910647 0.251642 0)
(-0.928606 0.304818 0)
(-0.939014 0.351318 0)
(-0.941291 0.388281 0)
(-0.934945 0.413124 0)
(-0.919382 0.423466 0)
(-0.89401 0.417422 0)
(-0.857975 0.393593 0)
(-0.810319 0.350905 0)
(-0.751127 0.289449 0)
(-0.682622 0.21219 0)
(-0.60931 0.125605 0)
(-0.537444 0.0388327 0)
(-0.474418 -0.0385759 0)
(-0.426411 -0.0991522 0)
(-0.395581 -0.138904 0)
(-0.380534 -0.159531 0)
(-0.376738 -0.166731 0)
(-0.377541 -0.168284 0)
(-0.376716 -0.171465 0)
(-0.371369 -0.179971 0)
(-0.362611 -0.193004 0)
(-0.353428 -0.207372 0)
(-0.345917 -0.22068 0)
(-0.340188 -0.232809 0)
(-0.335254 -0.244916 0)
(-0.330648 -0.257423 0)
(-0.326891 -0.269434 0)
(-0.324442 -0.279979 0)
(-0.322957 -0.288854 0)
(-0.321861 -0.295994 0)
(-0.320959 -0.300964 0)
(-0.320269 -0.303345 0)
(-0.319831 -0.303062 0)
(-0.319687 -0.300234 0)
(-0.319698 -0.29491 0)
(-0.319363 -0.286957 0)
(-0.318088 -0.276366 0)
(-0.315774 -0.263878 0)
(-0.312866 -0.251081 0)
(-0.309322 -0.239376 0)
(-0.303708 -0.228956 0)
(-0.293847 -0.219087 0)
(-0.278168 -0.208961 0)
(-0.256247 -0.197989 0)
(-0.228508 -0.185744 0)
(-0.195776 -0.171937 0)
(-0.159041 -0.156332 0)
(-0.119445 -0.138536 0)
(-0.0784849 -0.117767 0)
(-0.0383583 -0.0931261 0)
(-0.00286633 -0.0649171 0)
(0.0227773 -0.036447 0)
(0.0342764 -0.0163151 0)
(0.0340214 -0.00711316 0)
(0.0289567 -0.00459779 0)
(0.0227695 -0.00545765 0)
(0.0180525 -0.0124932 0)
(0.0143563 -0.0183008 0)
(0.0100916 -0.0100738 0)
(0.00148969 -0.00150544 0)
(-0.0022253 0.0877087 0)
(-0.0121712 0.127588 0)
(-0.0224741 0.134936 0)
(-0.0332271 0.142258 0)
(-0.044447 0.150788 0)
(-0.0562107 0.156184 0)
(-0.0683374 0.154973 0)
(-0.080738 0.149627 0)
(-0.093498 0.14671 0)
(-0.10635 0.148114 0)
(-0.118397 0.150911 0)
(-0.12894 0.154649 0)
(-0.138014 0.160115 0)
(-0.145943 0.165239 0)
(-0.153152 0.167864 0)
(-0.160313 0.16786 0)
(-0.168274 0.165948 0)
(-0.177845 0.163264 0)
(-0.189446 0.160637 0)
(-0.202983 0.15807 0)
(-0.218118 0.155396 0)
(-0.234511 0.152498 0)
(-0.252147 0.149502 0)
(-0.271497 0.146949 0)
(-0.293176 0.145114 0)
(-0.317751 0.143677 0)
(-0.345978 0.141941 0)
(-0.378984 0.138414 0)
(-0.418058 0.129786 0)
(-0.464081 0.111645 0)
(-0.516729 0.0834757 0)
(-0.573889 0.0539513 0)
(-0.632226 0.0365718 0)
(-0.689018 0.0379784 0)
(-0.742791 0.0553849 0)
(-0.79175 0.0850866 0)
(-0.834164 0.125367 0)
(-0.869795 0.172572 0)
(-0.898452 0.221996 0)
(-0.919257 0.270851 0)
(-0.93176 0.315987 0)
(-0.935659 0.353693 0)
(-0.930288 0.381271 0)
(-0.915155 0.396233 0)
(-0.889813 0.396016 0)
(-0.853714 0.378708 0)
(-0.806549 0.343154 0)
(-0.748716 0.289189 0)
(-0.682177 0.218781 0)
(-0.610922 0.13711 0)
(-0.54063 0.0524363 0)
(-0.478116 -0.0256167 0)
(-0.4299 -0.088548 0)
(-0.399142 -0.131086 0)
(-0.384591 -0.153969 0)
(-0.381687 -0.162733 0)
(-0.383468 -0.165139 0)
(-0.383473 -0.168424 0)
(-0.378444 -0.176511 0)
(-0.369247 -0.188986 0)
(-0.358979 -0.202882 0)
(-0.350062 -0.215738 0)
(-0.342828 -0.227293 0)
(-0.336427 -0.238625 0)
(-0.330509 -0.250278 0)
(-0.325644 -0.261698 0)
(-0.322324 -0.272208 0)
(-0.320263 -0.281693 0)
(-0.318891 -0.290126 0)
(-0.317885 -0.29708 0)
(-0.31703 -0.301973 0)
(-0.316067 -0.304367 0)
(-0.31483 -0.304052 0)
(-0.313364 -0.301099 0)
(-0.311795 -0.295811 0)
(-0.310049 -0.288494 0)
(-0.307598 -0.279227 0)
(-0.303736 -0.268051 0)
(-0.298388 -0.255671 0)
(-0.292432 -0.24372 0)
(-0.286766 -0.233888 0)
(-0.28107 -0.226731 0)
(-0.273773 -0.221461 0)
(-0.262989 -0.216622 0)
(-0.247308 -0.21079 0)
(-0.226127 -0.202973 0)
(-0.199577 -0.192608 0)
(-0.168144 -0.179052 0)
(-0.132351 -0.160936 0)
(-0.0930174 -0.136039 0)
(-0.0522749 -0.102718 0)
(-0.0146277 -0.0627606 0)
(0.0122166 -0.0263434 0)
(0.0220118 -0.00627786 0)
(0.0220755 0.000215382 0)
(0.019006 -0.000700912 0)
(0.0163667 -0.00896766 0)
(0.0131597 -0.014307 0)
(0.00911887 -0.00367994 0)
(0.00115062 0.00412619 0)
(-0.00205829 0.0949488 0)
(-0.0117164 0.137738 0)
(-0.0218014 0.145629 0)
(-0.0323337 0.153358 0)
(-0.0433372 0.162394 0)
(-0.0549483 0.168277 0)
(-0.0670328 0.167494 0)
(-0.0794494 0.162502 0)
(-0.0921242 0.159675 0)
(-0.104742 0.160588 0)
(-0.116514 0.162256 0)
(-0.126827 0.164571 0)
(-0.135799 0.168777 0)
(-0.143877 0.173084 0)
(-0.151563 0.175504 0)
(-0.159541 0.176071 0)
(-0.168598 0.175516 0)
(-0.179344 0.174676 0)
(-0.191889 0.173898 0)
(-0.205869 0.172853 0)
(-0.220836 0.171357 0)
(-0.236608 0.169579 0)
(-0.253506 0.168088 0)
(-0.272216 0.167654 0)
(-0.293326 0.168519 0)
(-0.31728 0.170431 0)
(-0.344719 0.17299 0)
(-0.376624 0.174984 0)
(-0.41426 0.173061 0)
(-0.45893 0.162023 0)
(-0.510957 0.139592 0)
(-0.568161 0.112634 0)
(-0.626172 0.094572 0)
(-0.681597 0.093394 0)
(-0.733695 0.106703 0)
(-0.781402 0.130338 0)
(-0.821977 0.163393 0)
(-0.854303 0.203212 0)
(-0.878955 0.244639 0)
(-0.89524 0.284455 0)
(-0.902076 0.320262 0)
(-0.89934 0.348411 0)
(-0.886689 0.365816 0)
(-0.863537 0.370163 0)
(-0.829722 0.359042 0)
(-0.785324 0.330725 0)
(-0.730911 0.284813 0)
(-0.668289 0.222556 0)
(-0.600979 0.14779 0)
(-0.534215 0.0674777 0)
(-0.474439 -0.0093452 0)
(-0.428017 -0.0735567 0)
(-0.398786 -0.118881 0)
(-0.385984 -0.144623 0)
(-0.38486 -0.155798 0)
(-0.388254 -0.159975 0)
(-0.38946 -0.164389 0)
(-0.385092 -0.173069 0)
(-0.375914 -0.185804 0)
(-0.365101 -0.199769 0)
(-0.355228 -0.212544 0)
(-0.346757 -0.223796 0)
(-0.33895 -0.234512 0)
(-0.331522 -0.245295 0)
(-0.325045 -0.25584 0)
(-0.320087 -0.265701 0)
(-0.316596 -0.274861 0)
(-0.314204 -0.283441 0)
(-0.31266 -0.29127 0)
(-0.311756 -0.297916 0)
(-0.311134 -0.302874 0)
(-0.310342 -0.305659 0)
(-0.308982 -0.305883 0)
(-0.306852 -0.303382 0)
(-0.304013 -0.298317 0)
(-0.300713 -0.291196 0)
(-0.297092 -0.282626 0)
(-0.292852 -0.272945 0)
(-0.287362 -0.262236 0)
(-0.280422 -0.250923 0)
(-0.272864 -0.24029 0)
(-0.266016 -0.232014 0)
(-0.260395 -0.22697 0)
(-0.255039 -0.224562 0)
(-0.248031 -0.223096 0)
(-0.237494 -0.220663 0)
(-0.222338 -0.215869 0)
(-0.202349 -0.207822 0)
(-0.177539 -0.195212 0)
(-0.147442 -0.175277 0)
(-0.111487 -0.144389 0)
(-0.0708124 -0.101444 0)
(-0.0305872 -0.0533015 0)
(-0.00359371 -0.0174489 0)
(0.00826545 -0.00194074 0)
(0.0126288 0.000435692 0)
(0.0137631 -0.00683104 0)
(0.0111834 -0.0103811 0)
(0.0071912 0.00222527 0)
(0.000358774 0.00884456 0)
(-0.0018536 0.10175 0)
(-0.0111326 0.147474 0)
(-0.0209193 0.155939 0)
(-0.0311425 0.164062 0)
(-0.0418275 0.173625 0)
(-0.0531726 0.180064 0)
(-0.065082 0.179782 0)
(-0.0773604 0.175118 0)
(-0.0897988 0.172258 0)
(-0.102069 0.17262 0)
(-0.113514 0.173223 0)
(-0.123606 0.174248 0)
(-0.132526 0.177408 0)
(-0.140838 0.18121 0)
(-0.149101 0.183763 0)
(-0.157955 0.185164 0)
(-0.168051 0.186046 0)
(-0.179733 0.186844 0)
(-0.192788 0.187431 0)
(-0.206645 0.187298 0)
(-0.220902 0.186478 0)
(-0.235689 0.185612 0)
(-0.251653 0.18565 0)
(-0.269545 0.187367 0)
(-0.289785 0.190828 0)
(-0.312635 0.195817 0)
(-0.33855 0.202184 0)
(-0.368231 0.209028 0)
(-0.402756 0.213306 0)
(-0.443785 0.209549 0)
(-0.492624 0.193622 0)
(-0.54774 0.169595 0)
(-0.603971 0.150139 0)
(-0.656303 0.145554 0)
(-0.703867 0.155113 0)
(-0.747476 0.173196 0)
(-0.785099 0.198082 0)
(-0.81386 0.229128 0)
(-0.833528 0.262232 0)
(-0.844456 0.292977 0)
(-0.845756 0.318756 0)
(-0.836863 0.336712 0)
(-0.817761 0.343687 0)
(-0.788255 0.337311 0)
(-0.748476 0.315712 0)
(-0.699287 0.277786 0)
(-0.642433 0.224123 0)
(-0.580998 0.157606 0)
(-0.519709 0.0837672 0)
(-0.46474 0.0103853 0)
(-0.422177 -0.0535821 0)
(-0.395907 -0.101069 0)
(-0.385728 -0.130131 0)
(-0.386927 -0.144562 0)
(-0.392265 -0.151482 0)
(-0.394961 -0.158034 0)
(-0.391585 -0.168313 0)
(-0.38299 -0.182126 0)
(-0.372415 -0.196742 0)
(-0.362411 -0.209914 0)
(-0.353377 -0.221409 0)
(-0.344586 -0.232145 0)
(-0.335798 -0.242635 0)
(-0.32759 -0.252617 0)
(-0.320578 -0.261764 0)
(-0.314888 -0.270162 0)
(-0.310391 -0.278091 0)
(-0.307038 -0.28563 0)
(-0.304822 -0.292578 0)
(-0.303599 -0.298628 0)
(-0.303011 -0.303435 0)
(-0.302544 -0.306588 0)
(-0.301638 -0.30762 0)
(-0.299809 -0.306145 0)
(-0.296779 -0.302017 0)
(-0.292587 -0.295465 0)
(-0.28758 -0.287112 0)
(-0.28217 -0.27777 0)
(-0.276432 -0.268046 0)
(-0.269998 -0.258125 0)
(-0.262607 -0.248179 0)
(-0.254836 -0.239038 0)
(-0.247983 -0.23215 0)
(-0.242972 -0.228579 0)
(-0.239328 -0.227973 0)
(-0.23524 -0.228504 0)
(-0.228602 -0.227827 0)
(-0.218153 -0.224178 0)
(-0.203681 -0.216406 0)
(-0.184879 -0.202607 0)
(-0.159974 -0.178956 0)
(-0.126338 -0.14161 0)
(-0.0842614 -0.0926219 0)
(-0.0428534 -0.0453139 0)
(-0.015256 -0.0165361 0)
(0.000722103 -0.0060535 0)
(0.00875681 -0.00778572 0)
(0.00718114 -0.00687299 0)
(0.00340016 0.00715314 0)
(-0.00115828 0.0116305 0)
(-0.00161448 0.108042 0)
(-0.0104341 0.156723 0)
(-0.0198568 0.165796 0)
(-0.0296991 0.174289 0)
(-0.0399767 0.184386 0)
(-0.0509543 0.191436 0)
(-0.0625736 0.191706 0)
(-0.0745902 0.18734 0)
(-0.086684 0.184355 0)
(-0.0985326 0.184151 0)
(-0.109619 0.1838 0)
(-0.119503 0.183711 0)
(-0.128413 0.186064 0)
(-0.137013 0.189679 0)
(-0.1459 0.192669 0)
(-0.155612 0.195074 0)
(-0.166587 0.197317 0)
(-0.178857 0.199378 0)
(-0.191925 0.200744 0)
(-0.205151 0.200944 0)
(-0.218371 0.20047 0)
(-0.232109 0.200484 0)
(-0.247211 0.202118 0)
(-0.264279 0.205921 0)
(-0.283472 0.211723 0)
(-0.304878 0.219338 0)
(-0.328766 0.228776 0)
(-0.355497 0.239417 0)
(-0.385789 0.248834 0)
(-0.421371 0.251979 0)
(-0.464526 0.243346 0)
(-0.515256 0.223446 0)
(-0.5688 0.202484 0)
(-0.618319 0.192729 0)
(-0.660743 0.197345 0)
(-0.697506 0.210984 0)
(-0.729277 0.229173 0)
(-0.753729 0.250999 0)
(-0.768893 0.274577 0)
(-0.774639 0.296052 0)
(-0.770833 0.312012 0)
(-0.756993 0.319749 0)
(-0.733133 0.316582 0)
(-0.699628 0.300314 0)
(-0.657261 0.269657 0)
(-0.607746 0.224559 0)
(-0.553967 0.166899 0)
(-0.500144 0.100964 0)
(-0.451927 0.0332277 0)
(-0.414909 -0.0286333 0)
(-0.392636 -0.0771345 0)
(-0.385322 -0.109415 0)
(-0.388892 -0.127754 0)
(-0.396191 -0.138377 0)
(-0.400403 -0.14813 0)
(-0.398219 -0.160933 0)
(-0.390716 -0.176526 0)
(-0.381165 -0.192329 0)
(-0.371891 -0.206432 0)
(-0.363074 -0.21883 0)
(-0.353953 -0.230367 0)
(-0.344346 -0.241364 0)
(-0.334822 -0.251498 0)
(-0.325962 -0.260501 0)
(-0.317955 -0.268514 0)
(-0.310826 -0.275847 0)
(-0.304726 -0.282667 0)
(-0.299893 -0.288962 0)
(-0.296443 -0.294664 0)
(-0.294275 -0.299701 0)
(-0.293111 -0.303926 0)
(-0.292537 -0.307045 0)
(-0.292011 -0.308634 0)
(-0.290905 -0.308242 0)
(-0.288649 -0.305506 0)
(-0.28491 -0.300315 0)
(-0.27971 -0.292922 0)
(-0.273436 -0.28397 0)
(-0.266656 -0.27432 0)
(-0.25975 -0.264707 0)
(-0.252659 -0.255438 0)
(-0.24519 -0.246592 0)
(-0.237707 -0.238663 0)
(-0.231355 -0.232855 0)
(-0.227259 -0.230331 0)
(-0.225261 -0.230918 0)
(-0.223524 -0.232587 0)
(-0.219595 -0.232444 0)
(-0.212026 -0.228288 0)
(-0.200742 -0.218856 0)
(-0.185257 -0.202199 0)
(-0.162566 -0.174537 0)
(-0.128837 -0.133655 0)
(-0.0863632 -0.0859748 0)
(-0.0468875 -0.0462117 0)
(-0.0196034 -0.0237627 0)
(-0.00279863 -0.0137252 0)
(-0.00177875 -0.00444189 0)
(-0.00357583 0.0103715 0)
(-0.00373808 0.0111764 0)
(-0.00134335 0.113767 0)
(-0.00963282 0.16543 0)
(-0.018641 0.175148 0)
(-0.0280498 0.183979 0)
(-0.0378483 0.194601 0)
(-0.0483731 0.202304 0)
(-0.0596098 0.203169 0)
(-0.071274 0.199081 0)
(-0.082956 0.195907 0)
(-0.0943442 0.195153 0)
(-0.105062 0.19399 0)
(-0.114755 0.192985 0)
(-0.123687 0.19478 0)
(-0.132596 0.198504 0)
(-0.142079 0.202174 0)
(-0.152516 0.205628 0)
(-0.164066 0.208996 0)
(-0.176447 0.211818 0)
(-0.188989 0.213375 0)
(-0.201187 0.213504 0)
(-0.213292 0.213305 0)
(-0.226198 0.214338 0)
(-0.240725 0.217619 0)
(-0.257115 0.223311 0)
(-0.275231 0.231057 0)
(-0.295048 0.240733 0)
(-0.316692 0.252402 0)
(-0.340209 0.26561 0)
(-0.365867 0.278647 0)
(-0.395053 0.287511 0)
(-0.430513 0.286356 0)
(-0.474063 0.272417 0)
(-0.52292 0.251742 0)
(-0.569999 0.236271 0)
(-0.609413 0.233324 0)
(-0.640381 0.240964 0)
(-0.664769 0.253686 0)
(-0.682821 0.26819 0)
(-0.693025 0.282705 0)
(-0.694311 0.294717 0)
(-0.68645 0.30117 0)
(-0.669374 0.299336 0)
(-0.643308 0.286965 0)
(-0.609119 0.262448 0)
(-0.568443 0.225266 0)
(-0.523886 0.176482 0)
(-0.479173 0.11916 0)
(-0.43907 0.0583643 0)
(-0.408658 0.000523125 0)
(-0.391038 -0.047591 0)
(-0.386565 -0.0823722 0)
(-0.392164 -0.104872 0)
(-0.400968 -0.119994 0)
(-0.406369 -0.133842 0)
(-0.405393 -0.149929 0)
(-0.399359 -0.167861 0)
(-0.391414 -0.185309 0)
(-0.383485 -0.200837 0)
(-0.375476 -0.214717 0)
(-0.366634 -0.227719 0)
(-0.356868 -0.239979 0)
(-0.346709 -0.251109 0)
(-0.336625 -0.260854 0)
(-0.326781 -0.269323 0)
(-0.317305 -0.276737 0)
(-0.308488 -0.28323 0)
(-0.300699 -0.288877 0)
(-0.294207 -0.293781 0)
(-0.28912 -0.298086 0)
(-0.285413 -0.301875 0)
(-0.282961 -0.305112 0)
(-0.28152 -0.307646 0)
(-0.280686 -0.309222 0)
(-0.279882 -0.309463 0)
(-0.27844 -0.30793 0)
(-0.275754 -0.304267 0)
(-0.271482 -0.298382 0)
(-0.26567 -0.29056 0)
(-0.258735 -0.281441 0)
(-0.251284 -0.271859 0)
(-0.243821 -0.262554 0)
(-0.236481 -0.253894 0)
(-0.229139 -0.24592 0)
(-0.221994 -0.238898 0)
(-0.216049 -0.233824 0)
(-0.212582 -0.231941 0)
(-0.211707 -0.23327 0)
(-0.211462 -0.235584 0)
(-0.208811 -0.235318 0)
(-0.201767 -0.22962 0)
(-0.190152 -0.217151 0)
(-0.173706 -0.196642 0)
(-0.150025 -0.166045 0)
(-0.117035 -0.126003 0)
(-0.0791939 -0.0839982 0)
(-0.0473118 -0.0504388 0)
(-0.0263261 -0.0256446 0)
(-0.0199051 -0.00574157 0)
(-0.0153957 0.00900855 0)
(-0.00735982 0.00440211 0)
(-0.0010417 0.118873 0)
(-0.00873693 0.173554 0)
(-0.0172945 0.183963 0)
(-0.0262368 0.19309 0)
(-0.0355041 0.204214 0)
(-0.0455089 0.212601 0)
(-0.0562937 0.214102 0)
(-0.0675452 0.210286 0)
(-0.0787814 0.206889 0)
(-0.0896991 0.205626 0)
(-0.10005 0.203806 0)
(-0.10957 0.202094 0)
(-0.118538 0.203563 0)
(-0.127726 0.207638 0)
(-0.137688 0.212126 0)
(-0.148591 0.216529 0)
(-0.160281 0.220634 0)
(-0.172219 0.223659 0)
(-0.183735 0.224941 0)
(-0.194678 0.224875 0)
(-0.205817 0.225175 0)
(-0.218293 0.227504 0)
(-0.232634 0.23243 0)
(-0.248585 0.239681 0)
(-0.265741 0.248869 0)
(-0.284022 0.259993 0)
(-0.303474 0.273079 0)
(-0.323932 0.287675 0)
(-0.345251 0.302665 0)
(-0.368194 0.31534 0)
(-0.395229 0.320602 0)
(-0.429347 0.31373 0)
(-0.470389 0.296311 0)
(-0.513122 0.277431 0)
(-0.550623 0.266319 0)
(-0.579117 0.265337 0)
(-0.598801 0.271018 0)
(-0.611053 0.278979 0)
(-0.616193 0.286092 0)
(-0.613705 0.28988 0)
(-0.603278 0.287911 0)
(-0.585092 0.277925 0)
(-0.559833 0.258201 0)
(-0.528913 0.227898 0)
(-0.494602 0.187411 0)
(-0.459999 0.138722 0)
(-0.428911 0.0855148 0)
(-0.405416 0.0328455 0)
(-0.392497 -0.0137175 0)
(-0.390889 -0.0500087 0)
(-0.397903 -0.0762923 0)
(-0.407504 -0.0961534 0)
(-0.413658 -0.114652 0)
(-0.413828 -0.134588 0)
(-0.409472 -0.155317 0)
(-0.403409 -0.174834 0)
(-0.397049 -0.192237 0)
(-0.390051 -0.208067 0)
(-0.381761 -0.223023 0)
(-0.372234 -0.237107 0)
(-0.36198 -0.249916 0)
(-0.351349 -0.261218 0)
(-0.340448 -0.271034 0)
(-0.329422 -0.279429 0)
(-0.318593 -0.286428 0)
(-0.308347 -0.292102 0)
(-0.299003 -0.296635 0)
(-0.290782 -0.300272 0)
(-0.283838 -0.303238 0)
(-0.278268 -0.305684 0)
(-0.274074 -0.30768 0)
(-0.271138 -0.309215 0)
(-0.269219 -0.310191 0)
(-0.267921 -0.3104 0)
(-0.266674 -0.309508 0)
(-0.264791 -0.307085 0)
(-0.261646 -0.302748 0)
(-0.256912 -0.296392 0)
(-0.250698 -0.288324 0)
(-0.243474 -0.279199 0)
(-0.235862 -0.269822 0)
(-0.228396 -0.260914 0)
(-0.221291 -0.252885 0)
(-0.214423 -0.245761 0)
(-0.207785 -0.239601 0)
(-0.202138 -0.23514 0)
(-0.198826 -0.233641 0)
(-0.198268 -0.235398 0)
(-0.198485 -0.238174 0)
(-0.195683 -0.237718 0)
(-0.186696 -0.230148 0)
(-0.170855 -0.213673 0)
(-0.149273 -0.188215 0)
(-0.122787 -0.154305 0)
(-0.0932831 -0.114347 0)
(-0.0665234 -0.0745107 0)
(-0.0476619 -0.0396578 0)
(-0.0370463 -0.012884 0)
(-0.0252274 -0.00183336 0)
(-0.00806613 -0.0109093 0)
(-0.000710222 0.123315 0)
(-0.00775018 0.181062 0)
(-0.0158332 0.192227 0)
(-0.0242945 0.201603 0)
(-0.0329992 0.21319 0)
(-0.0424347 0.222284 0)
(-0.0527195 0.224467 0)
(-0.063523 0.220934 0)
(-0.0743044 0.217307 0)
(-0.0847606 0.215585 0)
(-0.0947534 0.213262 0)
(-0.104106 0.211044 0)
(-0.113099 0.212381 0)
(-0.122487 0.216963 0)
(-0.132731 0.222283 0)
(-0.14375 0.227384 0)
(-0.155093 0.231739 0)
(-0.16607 0.234445 0)
(-0.176204 0.235199 0)
(-0.185865 0.235128 0)
(-0.196344 0.236399 0)
(-0.208815 0.240373 0)
(-0.22332 0.246881 0)
(-0.239094 0.255278 0)
(-0.25552 0.265353 0)
(-0.272479 0.277314 0)
(-0.28999 0.291112 0)
(-0.307824 0.30615 0)
(-0.325575 0.321635 0)
(-0.34334 0.336012 0)
(-0.362796 0.345554 0)
(-0.387093 0.345145 0)
(-0.418063 0.333026 0)
(-0.45327 0.314375 0)
(-0.487011 0.297686 0)
(-0.514161 0.288034 0)
(-0.532551 0.285061 0)
(-0.54251 0.285515 0)
(-0.545099 0.285767 0)
(-0.540933 0.282764 0)
(-0.530307 0.274152 0)
(-0.513842 0.258151 0)
(-0.492763 0.233644 0)
(-0.468849 0.200501 0)
(-0.444412 0.159835 0)
(-0.422294 0.114089 0)
(-0.40576 0.0670525 0)
(-0.39761 0.0232634 0)
(-0.398635 -0.0135448 0)
(-0.406615 -0.0427287 0)
(-0.416517 -0.0670647 0)
(-0.423059 -0.09039 0)
(-0.42427 -0.114469 0)
(-0.421688 -0.138303 0)
(-0.417599 -0.160279 0)
(-0.4128 -0.180044 0)
(-0.406733 -0.198328 0)
(-0.39891 -0.215682 0)
(-0.389593 -0.231989 0)
(-0.37933 -0.246892 0)
(-0.368438 -0.260229 0)
(-0.357021 -0.271987 0)
(-0.345217 -0.282112 0)
(-0.333272 -0.290508 0)
(-0.321458 -0.297165 0)
(-0.310028 -0.302214 0)
(-0.29923 -0.305888 0)
(-0.289322 -0.308457 0)
(-0.280543 -0.310185 0)
(-0.273071 -0.3113 0)
(-0.266992 -0.311971 0)
(-0.262286 -0.312293 0)
(-0.258825 -0.31228 0)
(-0.256372 -0.31187 0)
(-0.254552 -0.310904 0)
(-0.252817 -0.309082 0)
(-0.250477 -0.305963 0)
(-0.246892 -0.301123 0)
(-0.241765 -0.294429 0)
(-0.235274 -0.286202 0)
(-0.22794 -0.277118 0)
(-0.22038 -0.267962 0)
(-0.213129 -0.259444 0)
(-0.206467 -0.252045 0)
(-0.200265 -0.245845 0)
(-0.194257 -0.240724 0)
(-0.188789 -0.237057 0)
(-0.185072 -0.235972 0)
(-0.183853 -0.238078 0)
(-0.183378 -0.241452 0)
(-0.179193 -0.241446 0)
(-0.166789 -0.232957 0)
(-0.144586 -0.212865 0)
(-0.114567 -0.180702 0)
(-0.0817451 -0.138519 0)
(-0.0542622 -0.0922697 0)
(-0.038469 -0.0527028 0)
(-0.0316803 -0.0245325 0)
(-0.0189917 -0.0203172 0)
(-0.00231335 -0.0272886 0)
(-0.000349312 0.12705 0)
(-0.0066717 0.187931 0)
(-0.0142663 0.199937 0)
(-0.0222468 0.209517 0)
(-0.0303782 0.221513 0)
(-0.0392128 0.231329 0)
(-0.0489671 0.234244 0)
(-0.0593073 0.231026 0)
(-0.0696416 0.227179 0)
(-0.0796566 0.225051 0)
(-0.0893003 0.222368 0)
(-0.0984787 0.219825 0)
(-0.107457 0.221169 0)
(-0.116928 0.226315 0)
(-0.127217 0.232349 0)
(-0.137988 0.237791 0)
(-0.14855 0.241885 0)
(-0.158199 0.243868 0)
(-0.166811 0.244087 0)
(-0.175362 0.244458 0)
(-0.185533 0.247312 0)
(-0.198305 0.253274 0)
(-0.213181 0.261256 0)
(-0.228996 0.270381 0)
(-0.244975 0.280798 0)
(-0.260924 0.293023 0)
(-0.27686 0.306965 0)
(-0.292638 0.321805 0)
(-0.307772 0.336767 0)
(-0.321837 0.351091 0)
(-0.33563 0.362518 0)
(-0.35173 0.366622 0)
(-0.372786 0.359883 0)
(-0.398716 0.344039 0)
(-0.426127 0.325422 0)
(-0.450505 0.309756 0)
(-0.468546 0.298958 0)
(-0.479077 0.291757 0)
(-0.482582 0.285331 0)
(-0.480098 0.276572 0)
(-0.472605 0.262986 0)
(-0.461169 0.24304 0)
(-0.44717 0.216132 0)
(-0.432305 0.182573 0)
(-0.418685 0.143727 0)
(-0.408951 0.102301 0)
(-0.405564 0.0619834 0)
(-0.409279 0.0258736 0)
(-0.418169 -0.00528813 0)
(-0.428032 -0.0334454 0)
(-0.434743 -0.0612508 0)
(-0.437054 -0.0893026 0)
(-0.436472 -0.116271 0)
(-0.43454 -0.14105 0)
(-0.431319 -0.163792 0)
(-0.426077 -0.185188 0)
(-0.41855 -0.205498 0)
(-0.409209 -0.224454 0)
(-0.398668 -0.241765 0)
(-0.38729 -0.257372 0)
(-0.375278 -0.271295 0)
(-0.362844 -0.283476 0)
(-0.3502 -0.293802 0)
(-0.33749 -0.30221 0)
(-0.324819 -0.308713 0)
(-0.312339 -0.313407 0)
(-0.300278 -0.316472 0)
(-0.288912 -0.318164 0)
(-0.278511 -0.318785 0)
(-0.269295 -0.318635 0)
(-0.261417 -0.317972 0)
(-0.25494 -0.31699 0)
(-0.249829 -0.315798 0)
(-0.245947 -0.314428 0)
(-0.243063 -0.312846 0)
(-0.240816 -0.310925 0)
(-0.238659 -0.308368 0)
(-0.235893 -0.304693 0)
(-0.231896 -0.299424 0)
(-0.226435 -0.29243 0)
(-0.219778 -0.284085 0)
(-0.212473 -0.275096 0)
(-0.205086 -0.266212 0)
(-0.198111 -0.258122 0)
(-0.191885 -0.251411 0)
(-0.186326 -0.246306 0)
(-0.180934 -0.242598 0)
(-0.175515 -0.240238 0)
(-0.170827 -0.239925 0)
(-0.16771 -0.242352 0)
(-0.164948 -0.246217 0)
(-0.158423 -0.247267 0)
(-0.142902 -0.239456 0)
(-0.114737 -0.217002 0)
(-0.0746766 -0.176237 0)
(-0.0312606 -0.11889 0)
(0.000781605 -0.0620372 0)
(0.000418648 -0.0300565 0)
(0.00161439 -0.0313443 0)
(0.00411675 -0.0320131 0)
(3.84433e-05 0.130036 0)
(-0.00549623 0.194141 0)
(-0.0125913 0.207105 0)
(-0.0201056 0.216849 0)
(-0.0276723 0.229184 0)
(-0.0358926 0.239729 0)
(-0.0451005 0.243432 0)
(-0.0549777 0.240576 0)
(-0.0648838 0.236536 0)
(-0.074484 0.234052 0)
(-0.0837868 0.231127 0)
(-0.0927722 0.228404 0)
(-0.101681 0.229841 0)
(-0.111107 0.235514 0)
(-0.12121 0.242049 0)
(-0.131422 0.247426 0)
(-0.140903 0.2508 0)
(-0.149071 0.251829 0)
(-0.156263 0.251727 0)
(-0.164023 0.253134 0)
(-0.174189 0.258169 0)
(-0.187375 0.266378 0)
(-0.20265 0.275721 0)
(-0.218641 0.285232 0)
(-0.234448 0.295523 0)
(-0.249727 0.307505 0)
(-0.264497 0.321162 0)
(-0.278805 0.335438 0)
(-0.29223 0.349323 0)
(-0.30403 0.362466 0)
(-0.314322 0.373875 0)
(-0.324908 0.380254 0)
(-0.33833 0.377576 0)
(-0.355806 0.365282 0)
(-0.376103 0.347397 0)
(-0.396305 0.328995 0)
(-0.413382 0.312973 0)
(-0.425419 0.299675 0)
(-0.432042 0.287591 0)
(-0.433932 0.274179 0)
(-0.432116 0.257065 0)
(-0.427681 0.234839 0)
(-0.421901 0.207059 0)
(-0.416433 0.174248 0)
(-0.413412 0.138209 0)
(-0.414843 0.101745 0)
(-0.421391 0.0671619 0)
(-0.431435 0.0349835 0)
(-0.441385 0.00390962 0)
(-0.448382 -0.027522 0)
(-0.452184 -0.0588922 0)
(-0.454021 -0.0887823 0)
(-0.454424 -0.116692 0)
(-0.452765 -0.143038 0)
(-0.448332 -0.168213 0)
(-0.441141 -0.192087 0)
(-0.431798 -0.214251 0)
(-0.42089 -0.23446 0)
(-0.408784 -0.2527 0)
(-0.395797 -0.269001 0)
(-0.382282 -0.283348 0)
(-0.368552 -0.29572 0)
(-0.354801 -0.306122 0)
(-0.341115 -0.314552 0)
(-0.327548 -0.320995 0)
(-0.314181 -0.325465 0)
(-0.301157 -0.328078 0)
(-0.288685 -0.329067 0)
(-0.277001 -0.328748 0)
(-0.266332 -0.327461 0)
(-0.256866 -0.325528 0)
(-0.248743 -0.323221 0)
(-0.242019 -0.320744 0)
(-0.236656 -0.318218 0)
(-0.232518 -0.315697 0)
(-0.229383 -0.313182 0)
(-0.226889 -0.310559 0)
(-0.224452 -0.307479 0)
(-0.221329 -0.303361 0)
(-0.216927 -0.297676 0)
(-0.211139 -0.290352 0)
(-0.204363 -0.281891 0)
(-0.197172 -0.273061 0)
(-0.190038 -0.264568 0)
(-0.183355 -0.257058 0)
(-0.177485 -0.25121 0)
(-0.172446 -0.247472 0)
(-0.16765 -0.245718 0)
(-0.162357 -0.245507 0)
(-0.156458 -0.246755 0)
(-0.150338 -0.24965 0)
(-0.143537 -0.253318 0)
(-0.133451 -0.254304 0)
(-0.115255 -0.246176 0)
(-0.0840312 -0.220409 0)
(-0.0392005 -0.168365 0)
(0.0171714 -0.086078 0)
(0.0363959 -0.0258323 0)
(0.0253894 -0.0231635 0)
(0.00790689 -0.0216075 0)
(0.000451611 0.13223 0)
(-0.00421434 0.199665 0)
(-0.0107917 0.213745 0)
(-0.0178688 0.223627 0)
(-0.0248982 0.236224 0)
(-0.0325107 0.247491 0)
(-0.0411688 0.252045 0)
(-0.0505959 0.249608 0)
(-0.0601007 0.245412 0)
(-0.0693158 0.242614 0)
(-0.0782865 0.239537 0)
(-0.0870552 0.236745 0)
(-0.0958344 0.238309 0)
(-0.105097 0.244403 0)
(-0.114825 0.251169 0)
(-0.124265 0.256088 0)
(-0.132532 0.2584 0)
(-0.139279 0.258437 0)
(-0.145351 0.258398 0)
(-0.152705 0.261443 0)
(-0.163062 0.269105 0)
(-0.176595 0.279683 0)
(-0.192153 0.290301 0)
(-0.208369 0.299995 0)
(-0.224224 0.309816 0)
(-0.239141 0.321138 0)
(-0.253137 0.334198 0)
(-0.266513 0.347753 0)
(-0.278989 0.36037 0)
(-0.289676 0.371805 0)
(-0.298295 0.382059 0)
(-0.306018 0.388989 0)
(-0.314875 0.388729 0)
(-0.326461 0.379509 0)
(-0.340969 0.363603 0)
(-0.357122 0.344997 0)
(-0.372874 0.326604 0)
(-0.386377 0.309624 0)
(-0.396708 0.293653 0)
(-0.403871 0.276954 0)
(-0.4084 0.257468 0)
(-0.411192 0.233885 0)
(-0.413534 0.206018 0)
(-0.417123 0.174869 0)
(-0.423478 0.142234 0)
(-0.433052 0.109581 0)
(-0.444425 0.0771437 0)
(-0.455032 0.0442093 0)
(-0.463186 0.0104626 0)
(-0.46915 -0.0232726 0)
(-0.473671 -0.0557865 0)
(-0.476296 -0.0870158 0)
(-0.476015 -0.117374 0)
(-0.472382 -0.146757 0)
(-0.465739 -0.174669 0)
(-0.456709 -0.200634 0)
(-0.445768 -0.224412 0)
(-0.43322 -0.245949 0)
(-0.419388 -0.2652 0)
(-0.404664 -0.282123 0)
(-0.389435 -0.296744 0)
(-0.374039 -0.309153 0)
(-0.358757 -0.31945 0)
(-0.343787 -0.3277 0)
(-0.329217 -0.33392 0)
(-0.315051 -0.338115 0)
(-0.301293 -0.340345 0)
(-0.288023 -0.34078 0)
(-0.275411 -0.339704 0)
(-0.263654 -0.337465 0)
(-0.252936 -0.334407 0)
(-0.243418 -0.330848 0)
(-0.235222 -0.327065 0)
(-0.228406 -0.32327 0)
(-0.222933 -0.319598 0)
(-0.218689 -0.316132 0)
(-0.215477 -0.312917 0)
(-0.212921 -0.309834 0)
(-0.210358 -0.306427 0)
(-0.206965 -0.301963 0)
(-0.202186 -0.295871 0)
(-0.196078 -0.288209 0)
(-0.189195 -0.279665 0)
(-0.182136 -0.271102 0)
(-0.175268 -0.263206 0)
(-0.168847 -0.256574 0)
(-0.163177 -0.251919 0)
(-0.158394 -0.249897 0)
(-0.154032 -0.250625 0)
(-0.149017 -0.253506 0)
(-0.142279 -0.257598 0)
(-0.133269 -0.261912 0)
(-0.12167 -0.264845 0)
(-0.106251 -0.262785 0)
(-0.084288 -0.248871 0)
(-0.0522874 -0.211875 0)
(-0.00757156 -0.135361 0)
(0.0435554 -0.0360748 0)
(0.0373599 -0.00503179 0)
(0.00952428 -0.00133233 0)
(0.00089562 0.133587 0)
(-0.00281082 0.204463 0)
(-0.00885566 0.219873 0)
(-0.0155182 0.229898 0)
(-0.022059 0.242671 0)
(-0.0290911 0.254637 0)
(-0.037209 0.260104 0)
(-0.0462087 0.258155 0)
(-0.055346 0.253845 0)
(-0.0642088 0.250764 0)
(-0.0728584 0.247597 0)
(-0.0813884 0.244811 0)
(-0.0899851 0.246497 0)
(-0.0989908 0.252863 0)
(-0.108211 0.259579 0)
(-0.116769 0.26371 0)
(-0.123832 0.264766 0)
(-0.129376 0.263953 0)
(-0.134727 0.264451 0)
(-0.142039 0.269635 0)
(-0.152669 0.280136 0)
(-0.166379 0.293062 0)
(-0.182047 0.304925 0)
(-0.198477 0.314749 0)
(-0.214521 0.323893 0)
(-0.229314 0.334245 0)
(-0.242871 0.346502 0)
(-0.255764 0.359318 0)
(-0.267874 0.370701 0)
(-0.278268 0.380325 0)
(-0.286516 0.38897 0)
(-0.293406 0.395478 0)
(-0.300429 0.396365 0)
(-0.309053 0.389381 0)
(-0.320172 0.375758 0)
(-0.333702 0.358474 0)
(-0.348611 0.339961 0)
(-0.363468 0.321601 0)
(-0.377124 0.3036 0)
(-0.389021 0.284857 0)
(-0.399252 0.263807 0)
(-0.408618 0.239619 0)
(-0.418383 0.212518 0)
(-0.429621 0.183334 0)
(-0.44245 0.152747 0)
(-0.455678 0.120764 0)
(-0.467737 0.0871416 0)
(-0.477975 0.0522529 0)
(-0.486724 0.0170799 0)
(-0.493922 -0.0176927 0)
(-0.498411 -0.052239 0)
(-0.499096 -0.0867397 0)
(-0.49604 -0.120494 0)
(-0.489834 -0.152724 0)
(-0.481108 -0.182901 0)
(-0.470306 -0.210755 0)
(-0.457739 -0.236166 0)
(-0.443729 -0.259017 0)
(-0.428581 -0.279225 0)
(-0.412562 -0.296771 0)
(-0.395938 -0.311693 0)
(-0.379026 -0.324078 0)
(-0.362187 -0.334069 0)
(-0.345758 -0.341842 0)
(-0.32996 -0.347553 0)
(-0.314845 -0.351289 0)
(-0.300353 -0.353085 0)
(-0.286437 -0.353017 0)
(-0.273153 -0.351296 0)
(-0.260646 -0.348248 0)
(-0.249068 -0.344233 0)
(-0.238544 -0.339581 0)
(-0.229191 -0.334594 0)
(-0.221116 -0.329543 0)
(-0.214373 -0.32464 0)
(-0.208934 -0.320031 0)
(-0.204716 -0.315839 0)
(-0.20156 -0.312152 0)
(-0.199059 -0.308813 0)
(-0.196444 -0.305205 0)
(-0.192822 -0.300432 0)
(-0.187712 -0.293947 0)
(-0.181348 -0.286008 0)
(-0.174407 -0.277507 0)
(-0.167504 -0.269411 0)
(-0.160933 -0.262446 0)
(-0.154794 -0.257185 0)
(-0.149223 -0.254268 0)
(-0.144343 -0.254371 0)
(-0.139888 -0.257817 0)
(-0.134886 -0.264099 0)
(-0.127908 -0.271733 0)
(-0.117544 -0.278311 0)
(-0.102528 -0.279981 0)
(-0.0817379 -0.270404 0)
(-0.0548611 -0.239945 0)
(-0.0264678 -0.176836 0)
(0.0234227 -0.0629835 0)
(0.032936 0.00683044 0)
(0.00728047 0.0197833 0)
(0.00135327 0.134033 0)
(-0.0012717 0.208529 0)
(-0.00678165 0.225491 0)
(-0.01302 0.235707 0)
(-0.0191439 0.248581 0)
(-0.0256463 0.261206 0)
(-0.0332485 0.267642 0)
(-0.0418526 0.266258 0)
(-0.050663 0.261874 0)
(-0.059209 0.258531 0)
(-0.067553 0.255308 0)
(-0.0758288 0.252572 0)
(-0.0842014 0.254351 0)
(-0.0928851 0.260824 0)
(-0.101522 0.267226 0)
(-0.109167 0.270323 0)
(-0.115129 0.270079 0)
(-0.119761 0.268705 0)
(-0.124791 0.27023 0)
(-0.13233 0.27788 0)
(-0.143222 0.291199 0)
(-0.156935 0.306352 0)
(-0.17257 0.319489 0)
(-0.189184 0.329518 0)
(-0.205481 0.337895 0)
(-0.220296 0.347063 0)
(-0.233671 0.358408 0)
(-0.246429 0.370553 0)
(-0.258587 0.380861 0)
(-0.269231 0.388818 0)
(-0.277931 0.395854 0)
(-0.285297 0.401596 0)
(-0.29241 0.402919 0)
(-0.300454 0.397486 0)
(-0.310547 0.386046 0)
(-0.323248 0.370815 0)
(-0.338192 0.353539 0)
(-0.354332 0.335339 0)
(-0.370542 0.31664 0)
(-0.38613 0.296882 0)
(-0.401145 0.27519 0)
(-0.416251 0.251231 0)
(-0.431997 0.225057 0)
(-0.448143 0.196611 0)
(-0.463792 0.165718 0)
(-0.478224 0.132506 0)
(-0.491417 0.0976314 0)
(-0.50336 0.0617763 0)
(-0.513035 0.0250235 0)
(-0.518851 -0.0128286 0)
(-0.520097 -0.0514123 0)
(-0.517189 -0.089611 0)
(-0.510923 -0.126299 0)
(-0.501968 -0.160894 0)
(-0.490846 -0.193023 0)
(-0.478027 -0.222484 0)
(-0.463936 -0.249163 0)
(-0.448904 -0.273013 0)
(-0.433121 -0.294039 0)
(-0.416688 -0.312236 0)
(-0.399674 -0.32759 0)
(-0.382199 -0.340113 0)
(-0.364488 -0.349899 0)
(-0.346893 -0.357152 0)
(-0.329818 -0.362153 0)
(-0.313564 -0.365158 0)
(-0.298212 -0.366307 0)
(-0.283666 -0.365649 0)
(-0.269842 -0.363288 0)
(-0.256791 -0.359486 0)
(-0.244636 -0.354608 0)
(-0.233473 -0.349006 0)
(-0.223365 -0.342974 0)
(-0.21439 -0.336784 0)
(-0.206638 -0.330697 0)
(-0.200153 -0.324923 0)
(-0.194915 -0.319618 0)
(-0.190879 -0.314956 0)
(-0.187895 -0.311045 0)
(-0.18549 -0.307617 0)
(-0.182782 -0.30384 0)
(-0.178884 -0.298724 0)
(-0.173471 -0.291873 0)
(-0.16694 -0.283803 0)
(-0.160024 -0.275573 0)
(-0.153328 -0.268243 0)
(-0.147134 -0.262651 0)
(-0.141446 -0.25943 0)
(-0.136146 -0.259081 0)
(-0.131087 -0.262007 0)
(-0.125993 -0.26833 0)
(-0.120272 -0.277451 0)
(-0.112826 -0.287538 0)
(-0.101911 -0.294672 0)
(-0.0853882 -0.291453 0)
(-0.0619776 -0.265979 0)
(-0.0333874 -0.203511 0)
(-0.000841101 -0.0893064 0)
(0.0216746 0.010466 0)
(0.00132482 0.0337465 0)
(0.00176526 0.133532 0)
(0.000414262 0.211833 0)
(-0.0045331 0.230582 0)
(-0.010338 0.241095 0)
(-0.016125 0.25403 0)
(-0.0221786 0.267251 0)
(-0.029309 0.274701 0)
(-0.037558 0.273958 0)
(-0.0460886 0.269544 0)
(-0.0543568 0.265947 0)
(-0.0624156 0.262679 0)
(-0.0704301 0.260012 0)
(-0.0785507 0.261839 0)
(-0.0868716 0.268255 0)
(-0.0948885 0.274111 0)
(-0.10164 0.276016 0)
(-0.106644 0.274555 0)
(-0.11065 0.273 0)
(-0.115676 0.275996 0)
(-0.123587 0.286258 0)
(-0.134685 0.302214 0)
(-0.148294 0.319434 0)
(-0.16384 0.33392 0)
(-0.180623 0.344295 0)
(-0.197171 0.351883 0)
(-0.212073 0.359746 0)
(-0.225438 0.37015 0)
(-0.238305 0.381749 0)
(-0.250779 0.391196 0)
(-0.262001 0.397754 0)
(-0.271619 0.403424 0)
(-0.280189 0.408446 0)
(-0.288512 0.409957 0)
(-0.297499 0.405697 0)
(-0.308236 0.396246 0)
(-0.321467 0.38325 0)
(-0.337102 0.367743 0)
(-0.35442 0.350464 0)
(-0.372646 0.331974 0)
(-0.391352 0.312224 0)
(-0.410502 0.290794 0)
(-0.430013 0.267238 0)
(-0.449328 0.241019 0)
(-0.46779 0.211804 0)
(-0.485281 0.179904 0)
(-0.501961 0.145938 0)
(-0.517227 0.110034 0)
(-0.529307 0.0717142 0)
(-0.536373 0.0308356 0)
(-0.538025 -0.0116778 0)
(-0.535167 -0.0542516 0)
(-0.528712 -0.0955103 0)
(-0.519254 -0.134688 0)
(-0.507409 -0.171256 0)
(-0.493731 -0.204873 0)
(-0.478783 -0.235396 0)
(-0.463055 -0.262811 0)
(-0.446922 -0.287209 0)
(-0.430629 -0.308695 0)
(-0.414257 -0.327347 0)
(-0.397732 -0.343175 0)
(-0.380888 -0.356126 0)
(-0.363605 -0.366138 0)
(-0.345955 -0.373248 0)
(-0.328285 -0.377681 0)
(-0.311115 -0.379829 0)
(-0.294872 -0.38008 0)
(-0.27967 -0.378643 0)
(-0.265381 -0.375581 0)
(-0.251913 -0.371026 0)
(-0.239332 -0.3653 0)
(-0.227744 -0.358793 0)
(-0.21719 -0.351821 0)
(-0.207679 -0.344633 0)
(-0.19926 -0.337475 0)
(-0.192006 -0.330594 0)
(-0.185951 -0.324191 0)
(-0.181093 -0.31846 0)
(-0.177409 -0.313631 0)
(-0.17471 -0.309765 0)
(-0.172383 -0.306365 0)
(-0.169467 -0.30237 0)
(-0.165201 -0.296844 0)
(-0.159505 -0.289706 0)
(-0.152904 -0.281752 0)
(-0.146095 -0.274136 0)
(-0.139637 -0.267969 0)
(-0.133851 -0.264231 0)
(-0.128766 -0.263696 0)
(-0.124089 -0.266784 0)
(-0.119305 -0.273443 0)
(-0.11388 -0.283058 0)
(-0.107259 -0.294274 0)
(-0.0986525 -0.304186 0)
(-0.0867466 -0.306341 0)
(-0.0694383 -0.28796 0)
(-0.044144 -0.228464 0)
(-0.0157526 -0.112436 0)
(0.012292 0.00789988 0)
(-0.00451182 0.039817 0)
(0.00208456 0.132094 0)
(0.00226889 0.21421 0)
(-0.0020115 0.23516 0)
(-0.00743376 0.246099 0)
(-0.0129563 0.259107 0)
(-0.0186834 0.272851 0)
(-0.0254079 0.281335 0)
(-0.0333532 0.281308 0)
(-0.0416571 0.276901 0)
(-0.04969 0.273048 0)
(-0.0574885 0.269724 0)
(-0.0652436 0.267124 0)
(-0.0730962 0.268945 0)
(-0.0810315 0.275147 0)
(-0.0884157 0.280261 0)
(-0.0943136 0.28089 0)
(-0.0984956 0.278387 0)
(-0.10211 0.277067 0)
(-0.107332 0.281899 0)
(-0.115648 0.294779 0)
(-0.126892 0.313126 0)
(-0.140389 0.332277 0)
(-0.155893 0.348208 0)
(-0.172848 0.359061 0)
(-0.189599 0.365862 0)
(-0.204585 0.372366 0)
(-0.218036 0.381871 0)
(-0.231154 0.393078 0)
(-0.24409 0.401898 0)
(-0.25605 0.40737 0)
(-0.266808 0.412023 0)
(-0.276908 0.416563 0)
(-0.286949 0.41828 0)
(-0.297609 0.415033 0)
(-0.309826 0.407359 0)
(-0.324275 0.396441 0)
(-0.340976 0.38276 0)
(-0.359627 0.366847 0)
(-0.379937 0.349377 0)
(-0.401523 0.33042 0)
(-0.423744 0.3094 0)
(-0.445761 0.285589 0)
(-0.467056 0.258616 0)
(-0.487825 0.228785 0)
(-0.508162 0.196451 0)
(-0.5268 0.1611 0)
(-0.54135 0.12176 0)
(-0.550019 0.0784312 0)
(-0.552777 0.0325541 0)
(-0.550801 -0.0140161 0)
(-0.545076 -0.0597916 0)
(-0.536063 -0.103689 0)
(-0.524204 -0.145063 0)
(-0.509979 -0.183344 0)
(-0.49389 -0.218225 0)
(-0.476517 -0.249557 0)
(-0.458458 -0.277371 0)
(-0.440293 -0.301833 0)
(-0.4225 -0.323192 0)
(-0.405375 -0.341712 0)
(-0.388962 -0.357579 0)
(-0.373034 -0.37083 0)
(-0.357158 -0.381332 0)
(-0.340889 -0.388876 0)
(-0.324049 -0.393367 0)
(-0.30693 -0.395025 0)
(-0.290185 -0.394378 0)
(-0.274394 -0.391971 0)
(-0.259708 -0.388074 0)
(-0.245975 -0.382753 0)
(-0.233121 -0.376193 0)
(-0.22124 -0.368775 0)
(-0.21041 -0.360884 0)
(-0.200617 -0.352781 0)
(-0.191837 -0.344673 0)
(-0.184103 -0.336784 0)
(-0.177474 -0.329344 0)
(-0.171984 -0.322566 0)
(-0.167661 -0.31671 0)
(-0.164485 -0.312044 0)
(-0.162137 -0.308462 0)
(-0.159812 -0.305116 0)
(-0.156552 -0.300797 0)
(-0.151865 -0.294837 0)
(-0.145952 -0.287595 0)
(-0.139407 -0.28012 0)
(-0.132827 -0.273605 0)
(-0.126671 -0.269158 0)
(-0.121261 -0.267812 0)
(-0.116684 -0.270413 0)
(-0.112664 -0.277287 0)
(-0.108549 -0.287858 0)
(-0.103486 -0.300569 0)
(-0.0966588 -0.312582 0)
(-0.0871402 -0.318055 0)
(-0.0731831 -0.304863 0)
(-0.052122 -0.252002 0)
(-0.0257702 -0.138787 0)
(0.00627299 0.00114338 0)
(-0.00736011 0.0406851 0)
(0.00229804 0.129709 0)
(0.00431247 0.215451 0)
(0.000924199 0.239217 0)
(-0.00422966 0.250802 0)
(-0.00958898 0.263911 0)
(-0.0151491 0.278114 0)
(-0.0215642 0.287611 0)
(-0.0292693 0.288361 0)
(-0.0374037 0.283993 0)
(-0.0452469 0.27987 0)
(-0.0528131 0.276465 0)
(-0.0603178 0.273911 0)
(-0.0678966 0.275668 0)
(-0.0754341 0.281508 0)
(-0.0821836 0.285713 0)
(-0.0872669 0.285037 0)
(-0.0907416 0.281725 0)
(-0.0941311 0.281052 0)
(-0.0996408 0.287994 0)
(-0.108319 0.303419 0)
(-0.119673 0.323937 0)
(-0.133143 0.344937 0)
(-0.148721 0.362394 0)
(-0.165861 0.373795 0)
(-0.18273 0.379793 0)
(-0.197744 0.384937 0)
(-0.211308 0.393637 0)
(-0.224733 0.404618 0)
(-0.238173 0.413038 0)
(-0.25091 0.417747 0)
(-0.262855 0.421755 0)
(-0.274547 0.4261 0)
(-0.286401 0.428132 0)
(-0.298894 0.425827 0)
(-0.31282 0.419717 0)
(-0.328774 0.410659 0)
(-0.346934 0.398838 0)
(-0.367363 0.384698 0)
(-0.389868 0.368721 0)
(-0.413634 0.350592 0)
(-0.437614 0.329575 0)
(-0.461348 0.305373 0)
(-0.485145 0.27825 0)
(-0.508936 0.248219 0)
(-0.530938 0.214205 0)
(-0.548304 0.174802 0)
(-0.559312 0.130027 0)
(-0.564349 0.0816505 0)
(-0.564843 0.0318053 0)
(-0.561736 -0.0179778 0)
(-0.555147 -0.0665344 0)
(-0.545139 -0.113054 0)
(-0.531947 -0.156796 0)
(-0.515849 -0.197113 0)
(-0.49737 -0.233566 0)
(-0.47716 -0.2659 0)
(-0.45598 -0.294104 0)
(-0.434609 -0.318369 0)
(-0.413785 -0.339058 0)
(-0.394129 -0.356632 0)
(-0.376049 -0.37156 0)
(-0.35963 -0.38419 0)
(-0.34454 -0.394626 0)
(-0.330046 -0.40265 0)
(-0.315283 -0.407821 0)
(-0.299725 -0.40982 0)
(-0.283577 -0.408827 0)
(-0.267654 -0.405535 0)
(-0.252688 -0.400656 0)
(-0.23883 -0.394497 0)
(-0.225913 -0.387137 0)
(-0.213916 -0.378836 0)
(-0.202947 -0.370016 0)
(-0.193036 -0.361016 0)
(-0.184127 -0.352038 0)
(-0.17618 -0.343254 0)
(-0.169223 -0.334872 0)
(-0.163307 -0.327112 0)
(-0.158487 -0.320234 0)
(-0.154832 -0.314596 0)
(-0.152262 -0.31042 0)
(-0.150229 -0.307246 0)
(-0.147764 -0.303855 0)
(-0.144064 -0.299104 0)
(-0.138988 -0.292801 0)
(-0.132978 -0.285757 0)
(-0.126646 -0.279223 0)
(-0.120493 -0.274424 0)
(-0.114851 -0.272445 0)
(-0.10993 -0.274223 0)
(-0.105785 -0.280412 0)
(-0.102164 -0.290903 0)
(-0.0984569 -0.304448 0)
(-0.0938731 -0.318426 0)
(-0.0872719 -0.327232 0)
(-0.0763853 -0.31889 0)
(-0.0581008 -0.272228 0)
(-0.0345094 -0.163832 0)
(0.00138863 -0.00812474 0)
(-0.0073424 0.0386642 0)
(0.00241026 0.12636 0)
(0.00655471 0.215312 0)
(0.00443075 0.24269 0)
(-0.00059037 0.255325 0)
(-0.00598909 0.268579 0)
(-0.0115559 0.283171 0)
(-0.0178061 0.293615 0)
(-0.0253425 0.29518 0)
(-0.0333689 0.290868 0)
(-0.0410675 0.28645 0)
(-0.0484308 0.282924 0)
(-0.0556995 0.280384 0)
(-0.0630056 0.282014 0)
(-0.0701397 0.287353 0)
(-0.0762552 0.290502 0)
(-0.0805571 0.288528 0)
(-0.0834184 0.284669 0)
(-0.086695 0.285027 0)
(-0.0925097 0.29427 0)
(-0.101475 0.312145 0)
(-0.112937 0.334692 0)
(-0.126514 0.357525 0)
(-0.142309 0.376542 0)
(-0.159629 0.388462 0)
(-0.1765 0.393605 0)
(-0.191449 0.397424 0)
(-0.205101 0.405449 0)
(-0.218822 0.416367 0)
(-0.232727 0.424597 0)
(-0.246183 0.428851 0)
(-0.259243 0.432564 0)
(-0.272416 0.436975 0)
(-0.285929 0.439423 0)
(-0.300125 0.438028 0)
(-0.315764 0.43338 0)
(-0.333458 0.426141 0)
(-0.353484 0.416318 0)
(-0.375897 0.404107 0)
(-0.400162 0.389481 0)
(-0.425263 0.371857 0)
(-0.450732 0.350979 0)
(-0.47692 0.32714 0)
(-0.50366 0.300132 0)
(-0.528888 0.26845 0)
(-0.549474 0.230283 0)
(-0.563726 0.185483 0)
(-0.572346 0.135928 0)
(-0.576922 0.0839086 0)
(-0.578227 0.0309773 0)
(-0.576003 -0.021786 0)
(-0.569819 -0.0734608 0)
(-0.559487 -0.123201 0)
(-0.545107 -0.169974 0)
(-0.527068 -0.212958 0)
(-0.506022 -0.25149 0)
(-0.48276 -0.285212 0)
(-0.458165 -0.314047 0)
(-0.433127 -0.338189 0)
(-0.408507 -0.358048 0)
(-0.385099 -0.374192 0)
(-0.363602 -0.387294 0)
(-0.344538 -0.398044 0)
(-0.328097 -0.407009 0)
(-0.313913 -0.414415 0)
(-0.300986 -0.419938 0)
(-0.287978 -0.422827 0)
(-0.27394 -0.42245 0)
(-0.259008 -0.418944 0)
(-0.244201 -0.413211 0)
(-0.230347 -0.406108 0)
(-0.217547 -0.397935 0)
(-0.205657 -0.388812 0)
(-0.194724 -0.379092 0)
(-0.184836 -0.36919 0)
(-0.175966 -0.359368 0)
(-0.168033 -0.349773 0)
(-0.160999 -0.340561 0)
(-0.154886 -0.331925 0)
(-0.149752 -0.3241 0)
(-0.145702 -0.317451 0)
(-0.142821 -0.312416 0)
(-0.140852 -0.308968 0)
(-0.138977 -0.306141 0)
(-0.136214 -0.302513 0)
(-0.132065 -0.297315 0)
(-0.126723 -0.29093 0)
(-0.120763 -0.284528 0)
(-0.114776 -0.279472 0)
(-0.109192 -0.277013 0)
(-0.104266 -0.278206 0)
(-0.100108 -0.283815 0)
(-0.096603 -0.29393 0)
(-0.093356 -0.307515 0)
(-0.0898366 -0.32225 0)
(-0.0852002 -0.333241 0)
(-0.0774626 -0.329587 0)
(-0.0631156 -0.290236 0)
(-0.0411829 -0.187492 0)
(-0.00330628 -0.0222771 0)
(-0.0038603 0.0355179 0)
(0.00245735 0.122031 0)
(0.00896552 0.213479 0)
(0.00858728 0.245494 0)
(0.0036224 0.25979 0)
(-0.00210371 0.273313 0)
(-0.00790205 0.288174 0)
(-0.0141702 0.299456 0)
(-0.0216211 0.301827 0)
(-0.0296001 0.297575 0)
(-0.0371958 0.292824 0)
(-0.0443845 0.289128 0)
(-0.0514341 0.286557 0)
(-0.0584737 0.287991 0)
(-0.0652027 0.292694 0)
(-0.070688 0.294658 0)
(-0.0742377 0.291421 0)
(-0.0765715 0.287293 0)
(-0.0798229 0.289026 0)
(-0.0859215 0.300692 0)
(-0.0950961 0.320932 0)
(-0.106689 0.34546 0)
(-0.120519 0.370158 0)
(-0.136643 0.390702 0)
(-0.1541 0.403005 0)
(-0.170832 0.4072 0)
(-0.185602 0.409758 0)
(-0.199282 0.417265 0)
(-0.213242 0.428273 0)
(-0.22752 0.436496 0)
(-0.241569 0.440573 0)
(-0.255583 0.444298 0)
(-0.270023 0.448979 0)
(-0.284953 0.451935 0)
(-0.300694 0.45151 0)
(-0.318076 0.448408 0)
(-0.337694 0.443091 0)
(-0.35966 0.435269 0)
(-0.383704 0.424728 0)
(-0.409138 0.41111 0)
(-0.435528 0.394151 0)
(-0.463236 0.374142 0)
(-0.492183 0.350888 0)
(-0.520302 0.322655 0)
(-0.544327 0.287212 0)
(-0.562459 0.244036 0)
(-0.575528 0.194907 0)
(-0.585238 0.142214 0)
(-0.592111 0.0874375 0)
(-0.595407 0.0314168 0)
(-0.594207 -0.0249507 0)
(-0.588016 -0.0806434 0)
(-0.576715 -0.134358 0)
(-0.560603 -0.184822 0)
(-0.540255 -0.230949 0)
(-0.516476 -0.271926 0)
(-0.490196 -0.30731 0)
(-0.462393 -0.337002 0)
(-0.434021 -0.361216 0)
(-0.405956 -0.380405 0)
(-0.378988 -0.395183 0)
(-0.353834 -0.406276 0)
(-0.331173 -0.414503 0)
(-0.311605 -0.420753 0)
(-0.295445 -0.425842 0)
(-0.282382 -0.430141 0)
(-0.271196 -0.433223 0)
(-0.26004 -0.433931 0)
(-0.247563 -0.431258 0)
(-0.233968 -0.425386 0)
(-0.220494 -0.417473 0)
(-0.207952 -0.408431 0)
(-0.196365 -0.398523 0)
(-0.185667 -0.387967 0)
(-0.175953 -0.377181 0)
(-0.167255 -0.366516 0)
(-0.1595 -0.356149 0)
(-0.152603 -0.346196 0)
(-0.146533 -0.336802 0)
(-0.141314 -0.328155 0)
(-0.137035 -0.320567 0)
(-0.133863 -0.314559 0)
(-0.131796 -0.310484 0)
(-0.130283 -0.307795 0)
(-0.128335 -0.305059 0)
(-0.125173 -0.301021 0)
(-0.120681 -0.295543 0)
(-0.115286 -0.289553 0)
(-0.109566 -0.284426 0)
(-0.10401 -0.281515 0)
(-0.0989843 -0.282016 0)
(-0.094765 -0.28691 0)
(-0.0914086 -0.296583 0)
(-0.0885814 -0.310167 0)
(-0.0857394 -0.325369 0)
(-0.082184 -0.337742 0)
(-0.0764616 -0.337806 0)
(-0.0654091 -0.306035 0)
(-0.0455705 -0.211513 0)
(-0.00714771 -0.0414681 0)
(0.00268452 0.0329442 0)
(0.0025242 0.116719 0)
(0.0114076 0.209664 0)
(0.0132983 0.247452 0)
(0.00845388 0.264349 0)
(0.0021027 0.278332 0)
(-0.00422206 0.293319 0)
(-0.0107051 0.305261 0)
(-0.0181712 0.308367 0)
(-0.0261534 0.304155 0)
(-0.0336795 0.299025 0)
(-0.0407174 0.295101 0)
(-0.0475655 0.292448 0)
(-0.0543477 0.293615 0)
(-0.0606729 0.29755 0)
(-0.0655348 0.298209 0)
(-0.0683731 0.293772 0)
(-0.070277 0.289667 0)
(-0.0735873 0.293074 0)
(-0.0799403 0.307222 0)
(-0.0892629 0.329767 0)
(-0.10102 0.356311 0)
(-0.115217 0.38293 0)
(-0.131718 0.404885 0)
(-0.149217 0.417339 0)
(-0.165649 0.42047 0)
(-0.180118 0.42186 0)
(-0.193749 0.429021 0)
(-0.207862 0.440249 0)
(-0.222383 0.448614 0)
(-0.236855 0.452752 0)
(-0.251616 0.456747 0)
(-0.267086 0.461878 0)
(-0.283229 0.465481 0)
(-0.300433 0.46621 0)
(-0.31957 0.46483 0)
(-0.341014 0.46144 0)
(-0.364519 0.455352 0)
(-0.389665 0.446127 0)
(-0.416219 0.43359 0)
(-0.444536 0.417926 0)
(-0.474768 0.39906 0)
(-0.505179 0.375328 0)
(-0.532507 0.3441 0)
(-0.554675 0.304252 0)
(-0.572368 0.257244 0)
(-0.587388 0.205522 0)
(-0.60015 0.150532 0)
(-0.609437 0.0927482 0)
(-0.613802 0.0327922 0)
(-0.612469 -0.0281737 0)
(-0.605247 -0.0886313 0)
(-0.59228 -0.146889 0)
(-0.574032 -0.201429 0)
(-0.551213 -0.250953 0)
(-0.524731 -0.294545 0)
(-0.495614 -0.331683 0)
(-0.464925 -0.362278 0)
(-0.433694 -0.3866 0)
(-0.402836 -0.405195 0)
(-0.373122 -0.418764 0)
(-0.345177 -0.428077 0)
(-0.319567 -0.433941 0)
(-0.29687 -0.437259 0)
(-0.27768 -0.439076 0)
(-0.26243 -0.440409 0)
(-0.250902 -0.441799 0)
(-0.241657 -0.442656 0)
(-0.232315 -0.441276 0)
(-0.221297 -0.436347 0)
(-0.209099 -0.42829 0)
(-0.197116 -0.418498 0)
(-0.186001 -0.407813 0)
(-0.175736 -0.396492 0)
(-0.166362 -0.384874 0)
(-0.157963 -0.373378 0)
(-0.150507 -0.36225 0)
(-0.143898 -0.351601 0)
(-0.138064 -0.341538 0)
(-0.132983 -0.332197 0)
(-0.128699 -0.323808 0)
(-0.125373 -0.316858 0)
(-0.123171 -0.31195 0)
(-0.121833 -0.309015 0)
(-0.120512 -0.306839 0)
(-0.118277 -0.303858 0)
(-0.114731 -0.299398 0)
(-0.110103 -0.294038 0)
(-0.10491 -0.289103 0)
(-0.0996295 -0.28602 0)
(-0.0946188 -0.286024 0)
(-0.0902147 -0.290169 0)
(-0.0866639 -0.29911 0)
(-0.0838299 -0.312295 0)
(-0.0812703 -0.327573 0)
(-0.0784713 -0.340901 0)
(-0.0743749 -0.344063 0)
(-0.0658863 -0.319235 0)
(-0.0477239 -0.234406 0)
(-0.0103848 -0.0652912 0)
(0.0102842 0.0320223 0)
(0.00271384 0.110452 0)
(0.01365 0.203745 0)
(0.018211 0.248309 0)
(0.0137155 0.269077 0)
(0.00655765 0.283859 0)
(-0.000582123 0.29882 0)
(-0.0074958 0.311162 0)
(-0.015077 0.314861 0)
(-0.0230937 0.310641 0)
(-0.0305705 0.305075 0)
(-0.0374723 0.300864 0)
(-0.0441344 0.298075 0)
(-0.0506694 0.2989 0)
(-0.0565957 0.301939 0)
(-0.0608476 0.301192 0)
(-0.0630403 0.295653 0)
(-0.0646404 0.291872 0)
(-0.0681002 0.297198 0)
(-0.0746864 0.313832 0)
(-0.0841146 0.338645 0)
(-0.096067 0.367294 0)
(-0.110684 0.395875 0)
(-0.127524 0.419043 0)
(-0.144915 0.431349 0)
(-0.160878 0.4333 0)
(-0.174924 0.433645 0)
(-0.188424 0.44064 0)
(-0.202586 0.452193 0)
(-0.217195 0.460808 0)
(-0.231897 0.465208 0)
(-0.247198 0.469705 0)
(-0.2635 0.475484 0)
(-0.280721 0.479946 0)
(-0.299308 0.482057 0)
(-0.320007 0.482472 0)
(-0.342819 0.480801 0)
(-0.367303 0.476126 0)
(-0.393379 0.468214 0)
(-0.421499 0.457264 0)
(-0.452046 0.443245 0)
(-0.483869 0.424782 0)
(-0.513968 0.399069 0)
(-0.539871 0.364195 0)
(-0.561811 0.321015 0)
(-0.581614 0.27194 0)
(-0.599847 0.218471 0)
(-0.615021 0.160706 0)
(-0.625186 0.0987957 0)
(-0.62922 0.0338567 0)
(-0.626815 -0.0323693 0)
(-0.618049 -0.0979623 0)
(-0.603212 -0.161012 0)
(-0.582846 -0.219792 0)
(-0.557717 -0.27285 0)
(-0.528776 -0.319134 0)
(-0.497117 -0.358051 0)
(-0.463876 -0.389511 0)
(-0.430154 -0.413847 0)
(-0.396941 -0.431726 0)
(-0.365049 -0.444007 0)
(-0.335079 -0.451583 0)
(-0.307494 -0.455304 0)
(-0.282701 -0.456033 0)
(-0.261132 -0.454723 0)
(-0.243318 -0.452488 0)
(-0.229751 -0.450526 0)
(-0.220287 -0.449517 0)
(-0.213143 -0.448474 0)
(-0.205413 -0.445045 0)
(-0.195694 -0.43789 0)
(-0.184947 -0.427892 0)
(-0.174545 -0.416539 0)
(-0.164904 -0.404518 0)
(-0.15605 -0.392149 0)
(-0.148088 -0.379861 0)
(-0.141045 -0.367986 0)
(-0.134839 -0.356667 0)
(-0.129377 -0.345985 0)
(-0.124606 -0.336043 0)
(-0.120521 -0.32699 0)
(-0.117233 -0.319212 0)
(-0.114977 -0.313412 0)
(-0.113738 -0.309953 0)
(-0.112888 -0.308003 0)
(-0.111471 -0.305892 0)
(-0.108872 -0.302466 0)
(-0.1051 -0.297871 0)
(-0.100571 -0.293282 0)
(-0.0957519 -0.290192 0)
(-0.0910011 -0.289926 0)
(-0.0866417 -0.293573 0)
(-0.0829461 -0.301903 0)
(-0.0798938 -0.314614 0)
(-0.0771813 -0.329688 0)
(-0.0745372 -0.343394 0)
(-0.0714247 -0.348813 0)
(-0.0649256 -0.330179 0)
(-0.0483064 -0.255518 0)
(-0.0145452 -0.0931115 0)
(0.0159985 0.0323969 0)
(0.00307329 0.103317 0)
(0.0154469 0.195892 0)
(0.0227092 0.247841 0)
(0.0189454 0.273875 0)
(0.0110085 0.290052 0)
(0.00286131 0.304864 0)
(-0.00466337 0.317277 0)
(-0.012439 0.321358 0)
(-0.0204948 0.317046 0)
(-0.0279205 0.310988 0)
(-0.0346888 0.306432 0)
(-0.0411762 0.303456 0)
(-0.0474746 0.303864 0)
(-0.0530119 0.305885 0)
(-0.0566819 0.303658 0)
(-0.0583249 0.297158 0)
(-0.0597812 0.294012 0)
(-0.0634894 0.301436 0)
(-0.0702985 0.320506 0)
(-0.079809 0.347562 0)
(-0.0919729 0.378423 0)
(-0.106989 0.408963 0)
(-0.124036 0.433073 0)
(-0.141123 0.444901 0)
(-0.15644 0.445578 0)
(-0.169952 0.445036 0)
(-0.183231 0.452039 0)
(-0.197319 0.463988 0)
(-0.211849 0.47293 0)
(-0.226602 0.477773 0)
(-0.242272 0.483008 0)
(-0.259253 0.489662 0)
(-0.277415 0.49521 0)
(-0.297162 0.498838 0)
(-0.31897 0.50093 0)
(-0.342563 0.500703 0)
(-0.367709 0.497385 0)
(-0.394937 0.49118 0)
(-0.424895 0.482225 0)
(-0.457058 0.469438 0)
(-0.489005 0.450149 0)
(-0.51798 0.421715 0)
(-0.543485 0.384006 0)
(-0.567178 0.339168 0)
(-0.589999 0.288885 0)
(-0.610518 0.233053 0)
(-0.626334 0.171235 0)
(-0.635916 0.104233 0)
(-0.63876 0.0338741 0)
(-0.634878 -0.0377652 0)
(-0.624487 -0.108589 0)
(-0.607911 -0.176517 0)
(-0.585692 -0.239637 0)
(-0.558589 -0.296315 0)
(-0.527577 -0.345355 0)
(-0.493794 -0.386076 0)
(-0.458435 -0.418378 0)
(-0.422655 -0.442652 0)
(-0.3875 -0.459684 0)
(-0.353844 -0.470509 0)
(-0.322311 -0.476201 0)
(-0.293338 -0.477715 0)
(-0.267249 -0.475972 0)
(-0.24433 -0.471886 0)
(-0.224891 -0.46644 0)
(-0.209326 -0.460778 0)
(-0.198181 -0.456291 0)
(-0.191285 -0.453604 0)
(-0.186189 -0.450953 0)
(-0.179738 -0.44542 0)
(-0.171197 -0.436137 0)
(-0.16196 -0.424507 0)
(-0.15315 -0.4119 0)
(-0.145001 -0.398877 0)
(-0.137625 -0.385863 0)
(-0.13111 -0.373269 0)
(-0.125414 -0.361305 0)
(-0.12044 -0.350046 0)
(-0.116109 -0.339566 0)
(-0.112384 -0.329958 0)
(-0.109314 -0.321485 0)
(-0.107131 -0.314828 0)
(-0.105998 -0.310676 0)
(-0.10553 -0.308657 0)
(-0.104837 -0.307185 0)
(-0.103162 -0.304732 0)
(-0.100316 -0.300994 0)
(-0.0965783 -0.296915 0)
(-0.0923594 -0.293989 0)
(-0.0879969 -0.293607 0)
(-0.0838023 -0.296893 0)
(-0.0800545 -0.304715 0)
(-0.0768188 -0.316999 0)
(-0.0739189 -0.331874 0)
(-0.0712125 -0.345728 0)
(-0.0684629 -0.352584 0)
(-0.0630897 -0.338982 0)
(-0.0483607 -0.27433 0)
(-0.0201534 -0.121954 0)
(0.0186165 0.0329556 0)
(0.00354337 0.0954848 0)
(0.0165892 0.186596 0)
(0.0260864 0.245984 0)
(0.0234564 0.278516 0)
(0.0150045 0.296885 0)
(0.00584927 0.311551 0)
(-0.00236801 0.323691 0)
(-0.010368 0.327883 0)
(-0.0184319 0.323364 0)
(-0.0257765 0.316758 0)
(-0.0323996 0.311811 0)
(-0.038717 0.308605 0)
(-0.0447891 0.308525 0)
(-0.0499527 0.309418 0)
(-0.05309 0.305675 0)
(-0.0543157 0.298404 0)
(-0.0558133 0.296205 0)
(-0.0598695 0.305832 0)
(-0.0668993 0.327239 0)
(-0.0764849 0.356515 0)
(-0.088852 0.389669 0)
(-0.104163 0.422093 0)
(-0.121203 0.446816 0)
(-0.137749 0.457845 0)
(-0.152246 0.4572 0)
(-0.165114 0.455955 0)
(-0.178073 0.463126 0)
(-0.191951 0.475515 0)
(-0.206242 0.484845 0)
(-0.2209 0.490314 0)
(-0.236807 0.496526 0)
(-0.254314 0.504274 0)
(-0.273182 0.511058 0)
(-0.293676 0.516172 0)
(-0.316024 0.519729 0)
(-0.339968 0.520843 0)
(-0.365783 0.519172 0)
(-0.394356 0.515109 0)
(-0.425787 0.508028 0)
(-0.458402 0.495548 0)
(-0.489518 0.474605 0)
(-0.517803 0.443858 0)
(-0.544365 0.404729 0)
(-0.570551 0.359142 0)
(-0.5954 0.307139 0)
(-0.616276 0.247718 0)
(-0.631181 0.181036 0)
(-0.639381 0.108729 0)
(-0.640691 0.0329218 0)
(-0.635233 -0.0441819 0)
(-0.623286 -0.120294 0)
(-0.605202 -0.19314 0)
(-0.581493 -0.26064 0)
(-0.552864 -0.320981 0)
(-0.520268 -0.372802 0)
(-0.484872 -0.415317 0)
(-0.447932 -0.448419 0)
(-0.410648 -0.472569 0)
(-0.374088 -0.488657 0)
(-0.339164 -0.497893 0)
(-0.306536 -0.501569 0)
(-0.276641 -0.500765 0)
(-0.249747 -0.496487 0)
(-0.226081 -0.489668 0)
(-0.205877 -0.481311 0)
(-0.189315 -0.472411 0)
(-0.17664 -0.464155 0)
(-0.168565 -0.45816 0)
(-0.164477 -0.45453 0)
(-0.161056 -0.45032 0)
(-0.155539 -0.44259 0)
(-0.148165 -0.431409 0)
(-0.140476 -0.418485 0)
(-0.133216 -0.404932 0)
(-0.12658 -0.391287 0)
(-0.120706 -0.378022 0)
(-0.115617 -0.365436 0)
(-0.111229 -0.353631 0)
(-0.107451 -0.342663 0)
(-0.104221 -0.332588 0)
(-0.101531 -0.323553 0)
(-0.099562 -0.316129 0)
(-0.0985856 -0.311203 0)
(-0.0984534 -0.308879 0)
(-0.0984053 -0.307808 0)
(-0.0976083 -0.306208 0)
(-0.0957111 -0.303333 0)
(-0.0928663 -0.299858 0)
(-0.0894186 -0.297252 0)
(-0.0856534 -0.296967 0)
(-0.0818157 -0.300117 0)
(-0.078144 -0.307596 0)
(-0.0747736 -0.319516 0)
(-0.0716763 -0.334165 0)
(-0.068819 -0.347988 0)
(-0.0660715 -0.355745 0)
(-0.0611295 -0.346228 0)
(-0.0483689 -0.29098 0)
(-0.0259957 -0.150125 0)
(0.0173776 0.031415 0)
(0.00397748 0.0872213 0)
(0.0169069 0.176589 0)
(0.0277779 0.242908 0)
(0.0265136 0.282736 0)
(0.0179792 0.304138 0)
(0.00805721 0.31883 0)
(-0.000791 0.330412 0)
(-0.00897579 0.334413 0)
(-0.0169715 0.329558 0)
(-0.0241741 0.322363 0)
(-0.0306247 0.317 0)
(-0.03677 0.313533 0)
(-0.0426251 0.312903 0)
(-0.0474368 0.312579 0)
(-0.0501149 0.307335 0)
(-0.0510913 0.299531 0)
(-0.0528261 0.298571 0)
(-0.0573165 0.310428 0)
(-0.0645677 0.334029 0)
(-0.074233 0.36549 0)
(-0.086762 0.40096 0)
(-0.102186 0.435102 0)
(-0.118937 0.460077 0)
(-0.13468 0.470022 0)
(-0.148183 0.468066 0)
(-0.160298 0.466322 0)
(-0.172827 0.473806 0)
(-0.186356 0.486662 0)
(-0.200274 0.49645 0)
(-0.214728 0.502731 0)
(-0.230746 0.510134 0)
(-0.24856 0.519117 0)
(-0.267766 0.527155 0)
(-0.288494 0.533621 0)
(-0.3109 0.538512 0)
(-0.335024 0.541132 0)
(-0.361596 0.541522 0)
(-0.391316 0.539713 0)
(-0.423351 0.533904 0)
(-0.455414 0.520901 0)
(-0.485575 0.498288 0)
(-0.514022 0.466261 0)
(-0.542215 0.426693 0)
(-0.570063 0.380179 0)
(-0.595155 0.325437 0)
(-0.61494 0.261641 0)
(-0.628213 0.189801 0)
(-0.63456 0.112029 0)
(-0.633911 0.0306554 0)
(-0.626647 -0.051888 0)
(-0.613185 -0.133154 0)
(-0.593875 -0.21076 0)
(-0.569145 -0.282516 0)
(-0.539584 -0.346456 0)
(-0.506036 -0.401035 0)
(-0.469657 -0.445312 0)
(-0.431762 -0.479145 0)
(-0.393621 -0.503098 0)
(-0.35631 -0.51817 0)
(-0.320731 -0.525712 0)
(-0.287558 -0.527258 0)
(-0.25725 -0.524048 0)
(-0.230048 -0.517203 0)
(-0.206106 -0.507655 0)
(-0.185592 -0.496399 0)
(-0.168753 -0.484562 0)
(-0.155528 -0.47305 0)
(-0.146212 -0.463265 0)
(-0.141674 -0.456917 0)
(-0.140127 -0.452724 0)
(-0.13779 -0.446716 0)
(-0.133004 -0.436805 0)
(-0.126877 -0.424075 0)
(-0.120711 -0.410191 0)
(-0.114972 -0.396038 0)
(-0.109859 -0.382175 0)
(-0.105462 -0.369001 0)
(-0.10174 -0.356676 0)
(-0.0986015 -0.345253 0)
(-0.0959743 -0.334773 0)
(-0.0938059 -0.325294 0)
(-0.0922046 -0.317227 0)
(-0.0914734 -0.311526 0)
(-0.0916674 -0.308722 0)
(-0.0922048 -0.307825 0)
(-0.0922403 -0.306934 0)
(-0.0912901 -0.304891 0)
(-0.0893832 -0.302063 0)
(-0.0868009 -0.299861 0)
(-0.0837857 -0.299802 0)
(-0.0805175 -0.303012 0)
(-0.0771684 -0.310379 0)
(-0.073892 -0.32212 0)
(-0.0707587 -0.336615 0)
(-0.0677718 -0.350333 0)
(-0.064739 -0.358674 0)
(-0.0595403 -0.352278 0)
(-0.0486906 -0.304884 0)
(-0.0310413 -0.175415 0)
(0.0126124 0.0263684 0)
(0.00422394 0.0788904 0)
(0.0162881 0.166707 0)
(0.0274979 0.239006 0)
(0.0275626 0.286335 0)
(0.0194125 0.311469 0)
(0.00915906 0.326491 0)
(-0.000103673 0.337347 0)
(-0.00835059 0.340879 0)
(-0.0161564 0.335563 0)
(-0.0231289 0.327759 0)
(-0.0293659 0.321986 0)
(-0.0353312 0.318247 0)
(-0.040978 0.317019 0)
(-0.0454687 0.31542 0)
(-0.0477865 0.308747 0)
(-0.0487071 0.300696 0)
(-0.0508651 0.301222 0)
(-0.0558497 0.315252 0)
(-0.0633217 0.34088 0)
(-0.0730732 0.374465 0)
(-0.0856825 0.412181 0)
(-0.100971 0.44778 0)
(-0.117103 0.472634 0)
(-0.131771 0.481273 0)
(-0.144111 0.47808 0)
(-0.155366 0.476056 0)
(-0.167355 0.483983 0)
(-0.180409 0.497337 0)
(-0.193847 0.507665 0)
(-0.208005 0.514929 0)
(-0.22397 0.523665 0)
(-0.241781 0.533912 0)
(-0.260879 0.543117 0)
(-0.281366 0.550815 0)
(-0.303541 0.557095 0)
(-0.327816 0.561548 0)
(-0.355043 0.564256 0)
(-0.385308 0.56441 0)
(-0.417001 0.559154 0)
(-0.447982 0.545285 0)
(-0.477481 0.521582 0)
(-0.506524 0.489218 0)
(-0.535894 0.449409 0)
(-0.564037 0.401196 0)
(-0.588003 0.34275 0)
(-0.605658 0.273915 0)
(-0.616279 0.196605 0)
(-0.619811 0.113349 0)
(-0.616611 0.0266696 0)
(-0.607416 -0.0608912 0)
(-0.592644 -0.146861 0)
(-0.572604 -0.22886 0)
(-0.547555 -0.304651 0)
(-0.517871 -0.372101 0)
(-0.484188 -0.429426 0)
(-0.447586 -0.475465 0)
(-0.409433 -0.509974 0)
(-0.371115 -0.533642 0)
(-0.33376 -0.547643 0)
(-0.298245 -0.553449 0)
(-0.265205 -0.552818 0)
(-0.235077 -0.547145 0)
(-0.20809 -0.537699 0)
(-0.184392 -0.525486 0)
(-0.164018 -0.51139 0)
(-0.147217 -0.496613 0)
(-0.134153 -0.482262 0)
(-0.124428 -0.469123 0)
(-0.118946 -0.459187 0)
(-0.117923 -0.453372 0)
(-0.11815 -0.448392 0)
(-0.116351 -0.440258 0)
(-0.112317 -0.428398 0)
(-0.10751 -0.414519 0)
(-0.102824 -0.400017 0)
(-0.0985927 -0.385658 0)
(-0.0949781 -0.37195 0)
(-0.0919928 -0.359135 0)
(-0.089562 -0.347284 0)
(-0.0876147 -0.336437 0)
(-0.0860759 -0.326601 0)
(-0.084981 -0.318019 0)
(-0.0846097 -0.311601 0)
(-0.0851628 -0.308214 0)
(-0.0862508 -0.307289 0)
(-0.0870736 -0.306942 0)
(-0.0870606 -0.305664 0)
(-0.0861312 -0.303496 0)
(-0.084493 -0.301759 0)
(-0.0823393 -0.302023 0)
(-0.0797969 -0.30543 0)
(-0.076991 -0.312858 0)
(-0.0740891 -0.324575 0)
(-0.0712158 -0.339017 0)
(-0.068287 -0.352779 0)
(-0.0647665 -0.36183 0)
(-0.058545 -0.357835 0)
(-0.0491867 -0.316355 0)
(-0.0350209 -0.196626 0)
(0.00492709 0.0166621 0)
(0.00420187 0.0709752 0)
(0.0147113 0.157687 0)
(0.0252444 0.234785 0)
(0.0263747 0.289233 0)
(0.0189821 0.318509 0)
(0.00891604 0.334212 0)
(-0.000422738 0.34431 0)
(-0.00853498 0.34716 0)
(-0.0159924 0.341287 0)
(-0.0226289 0.332894 0)
(-0.0286023 0.326751 0)
(-0.0343763 0.322751 0)
(-0.0398235 0.320899 0)
(-0.0440351 0.318003 0)
(-0.0461141 0.310032 0)
(-0.0471826 0.30205 0)
(-0.0499187 0.304242 0)
(-0.055422 0.320318 0)
(-0.0631075 0.347789 0)
(-0.0729386 0.383394 0)
(-0.0855026 0.423176 0)
(-0.100359 0.459885 0)
(-0.115523 0.484258 0)
(-0.128849 0.491451 0)
(-0.139875 0.487154 0)
(-0.150174 0.48508 0)
(-0.161521 0.493575 0)
(-0.173996 0.507472 0)
(-0.186868 0.518427 0)
(-0.200623 0.526797 0)
(-0.216311 0.536906 0)
(-0.233746 0.548339 0)
(-0.252301 0.558601 0)
(-0.272209 0.567518 0)
(-0.294019 0.575393 0)
(-0.318367 0.581973 0)
(-0.345861 0.586963 0)
(-0.375873 0.588562 0)
(-0.406488 0.583348 0)
(-0.436225 0.568747 0)
(-0.465281 0.544671 0)
(-0.494763 0.512428 0)
(-0.524368 0.471949 0)
(-0.551414 0.421014 0)
(-0.572631 0.357876 0)
(-0.586572 0.283615 0)
(-0.593389 0.200934 0)
(-0.593459 0.112531 0)
(-0.587653 0.0211464 0)
(-0.57674 -0.0707154 0)
(-0.560993 -0.160711 0)
(-0.540739 -0.246592 0)
(-0.516106 -0.326129 0)
(-0.487241 -0.397064 0)
(-0.454403 -0.45725 0)
(-0.418466 -0.505148 0)
(-0.380819 -0.540346 0)
(-0.342996 -0.563646 0)
(-0.306243 -0.576486 0)
(-0.271459 -0.580498 0)
(-0.239244 -0.577679 0)
(-0.209987 -0.569581 0)
(-0.183846 -0.557565 0)
(-0.16093 -0.542754 0)
(-0.141241 -0.525994 0)
(-0.124822 -0.508309 0)
(-0.11215 -0.491186 0)
(-0.102821 -0.475282 0)
(-0.0968126 -0.46184 0)
(-0.0954427 -0.453172 0)
(-0.097205 -0.447977 0)
(-0.0982578 -0.441527 0)
(-0.0967552 -0.431152 0)
(-0.0936331 -0.417758 0)
(-0.0901669 -0.403134 0)
(-0.0869354 -0.388404 0)
(-0.0841906 -0.374232 0)
(-0.0820109 -0.360967 0)
(-0.0803486 -0.348718 0)
(-0.0791408 -0.337531 0)
(-0.0783095 -0.327397 0)
(-0.0778318 -0.318414 0)
(-0.0779335 -0.311364 0)
(-0.0789054 -0.30735 0)
(-0.0805396 -0.306241 0)
(-0.0821153 -0.306278 0)
(-0.0830141 -0.30567 0)
(-0.083072 -0.304135 0)
(-0.0824287 -0.302885 0)
(-0.0812301 -0.303533 0)
(-0.0795635 -0.30724 0)
(-0.0775296 -0.314862 0)
(-0.0753229 -0.326661 0)
(-0.0730784 -0.341166 0)
(-0.0704415 -0.355368 0)
(-0.0661919 -0.365767 0)
(-0.0580655 -0.363825 0)
(-0.0490589 -0.325825 0)
(-0.0371524 -0.21368 0)
(-0.00394244 0.00194988 0)
(0.0038708 0.0640035 0)
(0.0122305 0.150072 0)
(0.0212696 0.230739 0)
(0.0230545 0.29146 0)
(0.016639 0.324949 0)
(0.00724467 0.341635 0)
(-0.00177126 0.351055 0)
(-0.0095078 0.353105 0)
(-0.0164391 0.346626 0)
(-0.0226287 0.337708 0)
(-0.0282876 0.331275 0)
(-0.033859 0.327049 0)
(-0.0391163 0.324568 0)
(-0.0431023 0.320398 0)
(-0.0450809 0.311323 0)
(-0.0464923 0.303727 0)
(-0.0499127 0.307679 0)
(-0.0559203 0.325616 0)
(-0.0637957 0.35474 0)
(-0.0736692 0.392209 0)
(-0.0860198 0.433763 0)
(-0.100125 0.471165 0)
(-0.113978 0.494734 0)
(-0.125723 0.500424 0)
(-0.135314 0.495217 0)
(-0.144587 0.493334 0)
(-0.155216 0.502523 0)
(-0.167022 0.517012 0)
(-0.179242 0.528665 0)
(-0.192452 0.538192 0)
(-0.207587 0.549609 0)
(-0.224272 0.562101 0)
(-0.241943 0.573359 0)
(-0.261071 0.583599 0)
(-0.282417 0.593311 0)
(-0.306596 0.602135 0)
(-0.333754 0.609123 0)
(-0.362747 0.611646 0)
(-0.391813 0.606269 0)
(-0.420255 0.591316 0)
(-0.448816 0.567397 0)
(-0.478155 0.535237 0)
(-0.506734 0.493258 0)
(-0.530773 0.43841 0)
(-0.547482 0.369911 0)
(-0.556921 0.290254 0)
(-0.559739 0.202509 0)
(-0.55671 0.109602 0)
(-0.54879 0.0142694 0)
(-0.536489 -0.0811244 0)
(-0.519966 -0.174515 0)
(-0.49957 -0.263649 0)
(-0.475465 -0.346378 0)
(-0.447847 -0.420496 0)
(-0.416684 -0.483652 0)
(-0.382344 -0.533669 0)
(-0.34604 -0.569694 0)
(-0.309435 -0.592631 0)
(-0.27393 -0.604252 0)
(-0.240466 -0.606397 0)
(-0.209648 -0.601323 0)
(-0.181848 -0.590813 0)
(-0.157198 -0.576313 0)
(-0.135678 -0.559014 0)
(-0.11726 -0.539822 0)
(-0.101767 -0.51947 0)
(-0.0896365 -0.499552 0)
(-0.0810448 -0.481188 0)
(-0.0752482 -0.46481 0)
(-0.0733661 -0.452795 0)
(-0.0756948 -0.446093 0)
(-0.0790148 -0.440678 0)
(-0.0802067 -0.432102 0)
(-0.0791009 -0.419728 0)
(-0.0770427 -0.405295 0)
(-0.0749238 -0.390352 0)
(-0.0731304 -0.375805 0)
(-0.0718175 -0.362139 0)
(-0.0709772 -0.349525 0)
(-0.0705589 -0.338023 0)
(-0.0704942 -0.327632 0)
(-0.0707204 -0.318338 0)
(-0.0713959 -0.310753 0)
(-0.0728547 -0.306109 0)
(-0.0750502 -0.3047 0)
(-0.0773626 -0.304976 0)
(-0.0791523 -0.304938 0)
(-0.0801906 -0.303991 0)
(-0.0805578 -0.303219 0)
(-0.0803596 -0.304267 0)
(-0.0796709 -0.30831 0)
(-0.0786088 -0.316164 0)
(-0.0774271 -0.32806 0)
(-0.0761992 -0.342788 0)
(-0.0740461 -0.358131 0)
(-0.0688067 -0.371002 0)
(-0.0580261 -0.371205 0)
(-0.0480047 -0.334194 0)
(-0.0374517 -0.228089 0)
(-0.0114278 -0.0164912 0)
(0.00325256 0.0584182 0)
(0.00899964 0.144243 0)
(0.0159962 0.227271 0)
(0.0179485 0.293135 0)
(0.012592 0.330581 0)
(0.00424653 0.348443 0)
(-0.00406763 0.357322 0)
(-0.0111748 0.358552 0)
(-0.0174074 0.351473 0)
(-0.0230487 0.342148 0)
(-0.0283513 0.335539 0)
(-0.033711 0.331146 0)
(-0.0387915 0.328056 0)
(-0.0426167 0.322686 0)
(-0.0446409 0.312747 0)
(-0.0465613 0.305823 0)
(-0.0507134 0.311542 0)
(-0.0571725 0.331115 0)
(-0.0651861 0.361693 0)
(-0.075019 0.400811 0)
(-0.0869516 0.443745 0)
(-0.0999906 0.481381 0)
(-0.112225 0.503877 0)
(-0.122201 0.508099 0)
(-0.130284 0.502228 0)
(-0.1385 0.500781 0)
(-0.148355 0.510784 0)
(-0.159412 0.525907 0)
(-0.170879 0.538292 0)
(-0.183365 0.548942 0)
(-0.197655 0.561537 0)
(-0.213272 0.574968 0)
(-0.229832 0.587239 0)
(-0.248056 0.598965 0)
(-0.268774 0.610676 0)
(-0.292366 0.62165 0)
(-0.318517 0.630226 0)
(-0.345873 0.633291 0)
(-0.373096 0.627788 0)
(-0.400141 0.612882 0)
(-0.42787 0.589343 0)
(-0.456131 0.556792 0)
(-0.481958 0.512147 0)
(-0.501288 0.452333 0)
(-0.513056 0.378394 0)
(-0.518265 0.293728 0)
(-0.517711 0.201616 0)
(-0.512375 0.105009 0)
(-0.502789 0.00631783 0)
(-0.489432 -0.0922952 0)
(-0.472245 -0.188616 0)
(-0.4516 -0.280484 0)
(-0.427751 -0.365734 0)
(-0.401084 -0.442309 0)
(-0.371686 -0.508027 0)
(-0.339544 -0.56031 0)
(-0.30535 -0.597398 0)
(-0.270677 -0.620058 0)
(-0.237079 -0.630469 0)
(-0.205547 -0.630753 0)
(-0.176681 -0.623402 0)
(-0.150813 -0.610456 0)
(-0.128123 -0.593492 0)
(-0.108543 -0.573791 0)
(-0.0919743 -0.552382 0)
(-0.078064 -0.529784 0)
(-0.0668696 -0.507248 0)
(-0.05908 -0.486491 0)
(-0.0540295 -0.467753 0)
(-0.0519769 -0.452557 0)
(-0.0542718 -0.443385 0)
(-0.0590817 -0.438034 0)
(-0.0627928 -0.431167 0)
(-0.0639433 -0.420264 0)
(-0.0634935 -0.406401 0)
(-0.0625996 -0.391447 0)
(-0.0618346 -0.376633 0)
(-0.0614428 -0.362626 0)
(-0.061469 -0.349682 0)
(-0.0618797 -0.33789 0)
(-0.0626247 -0.327267 0)
(-0.0636215 -0.317735 0)
(-0.0649592 -0.309713 0)
(-0.066975 -0.304466 0)
(-0.0697566 -0.302675 0)
(-0.0727981 -0.303063 0)
(-0.0754622 -0.303496 0)
(-0.0774686 -0.30308 0)
(-0.0788435 -0.302767 0)
(-0.0796568 -0.30421 0)
(-0.0799918 -0.308574 0)
(-0.0800175 -0.3166 0)
(-0.0800667 -0.328528 0)
(-0.0800204 -0.343715 0)
(-0.078234 -0.361134 0)
(-0.0717625 -0.377772 0)
(-0.0582364 -0.38045 0)
(-0.0464888 -0.342448 0)
(-0.0361832 -0.241966 0)
(-0.0141993 -0.0365013 0)
(0.00242311 0.0545294 0)
(0.00526904 0.140416 0)
(0.00992937 0.224667 0)
(0.0115589 0.294418 0)
(0.00724512 0.335281 0)
(0.00018818 0.354421 0)
(-0.00712976 0.362885 0)
(-0.0133708 0.363354 0)
(-0.0187646 0.35574 0)
(-0.0237802 0.346171 0)
(-0.028701 0.339528 0)
(-0.0338453 0.335047 0)
(-0.0387666 0.331399 0)
(-0.0425046 0.324947 0)
(-0.0447162 0.314414 0)
(-0.0472667 0.308395 0)
(-0.0521384 0.315799 0)
(-0.0589617 0.336756 0)
(-0.0670236 0.368577 0)
(-0.0766775 0.40907 0)
(-0.0879623 0.452926 0)
(-0.0996507 0.490332 0)
(-0.110023 0.511551 0)
(-0.118107 0.514428 0)
(-0.124672 0.508182 0)
(-0.131843 0.507414 0)
(-0.140885 0.518328 0)
(-0.151108 0.5341 0)
(-0.161699 0.5472 0)
(-0.173262 0.558879 0)
(-0.186444 0.572494 0)
(-0.200762 0.586787 0)
(-0.216073 0.600148 0)
(-0.23327 0.613502 0)
(-0.253083 0.627226 0)
(-0.275568 0.640093 0)
(-0.300088 0.64985 0)
(-0.325353 0.653242 0)
(-0.350509 0.647771 0)
(-0.37592 0.633188 0)
(-0.402216 0.60991 0)
(-0.428113 0.576107 0)
(-0.449598 0.527537 0)
(-0.463703 0.462431 0)
(-0.470933 0.383456 0)
(-0.472473 0.29446 0)
(-0.469306 0.198764 0)
(-0.462224 0.0990569 0)
(-0.451379 -0.00259674 0)
(-0.437075 -0.104078 0)
(-0.419275 -0.203045 0)
(-0.398437 -0.297324 0)
(-0.374782 -0.38467 0)
(-0.348821 -0.463041 0)
(-0.320869 -0.530539 0)
(-0.290953 -0.584714 0)
(-0.259333 -0.622994 0)
(-0.227185 -0.645478 0)
(-0.196065 -0.654689 0)
(-0.167013 -0.653137 0)
(-0.140636 -0.643548 0)
(-0.117189 -0.628205 0)
(-0.0968525 -0.60881 0)
(-0.0795927 -0.586756 0)
(-0.0653022 -0.563219 0)
(-0.0535596 -0.538782 0)
(-0.0439311 -0.514071 0)
(-0.0371076 -0.491037 0)
(-0.0330271 -0.470302 0)
(-0.0312789 -0.452459 0)
(-0.0333638 -0.440378 0)
(-0.0389569 -0.434053 0)
(-0.0447494 -0.428445 0)
(-0.0482221 -0.419259 0)
(-0.0495638 -0.40636 0)
(-0.0500065 -0.391636 0)
(-0.0503405 -0.376685 0)
(-0.0509189 -0.362407 0)
(-0.0518495 -0.349177 0)
(-0.0531206 -0.33712 0)
(-0.0547049 -0.326284 0)
(-0.0565182 -0.316564 0)
(-0.0585901 -0.308194 0)
(-0.0612325 -0.302392 0)
(-0.0646344 -0.300167 0)
(-0.0684059 -0.300562 0)
(-0.0719294 -0.301372 0)
(-0.0748842 -0.301432 0)
(-0.0772443 -0.301554 0)
(-0.0790433 -0.303375 0)
(-0.0803774 -0.308016 0)
(-0.0814617 -0.316123 0)
(-0.0826401 -0.328059 0)
(-0.0833451 -0.344131 0)
(-0.0811016 -0.364603 0)
(-0.073155 -0.38587 0)
(-0.0579638 -0.391122 0)
(-0.0458005 -0.351215 0)
(-0.034134 -0.255407 0)
(-0.0128058 -0.0557343 0)
(0.00148484 0.0525124 0)
(0.00132946 0.138673 0)
(0.00357436 0.223075 0)
(0.00447979 0.295469 0)
(0.0011337 0.339103 0)
(-0.00454345 0.359412 0)
(-0.0106956 0.367583 0)
(-0.0158785 0.367393 0)
(-0.0203453 0.359372 0)
(-0.024694 0.349758 0)
(-0.0292288 0.343241 0)
(-0.0341598 0.338765 0)
(-0.0389457 0.334633 0)
(-0.0426748 0.327259 0)
(-0.0451981 0.316409 0)
(-0.0484457 0.311453 0)
(-0.0539733 0.320386 0)
(-0.0610457 0.342452 0)
(-0.0690247 0.375284 0)
(-0.0783069 0.416835 0)
(-0.0887019 0.46113 0)
(-0.0988079 0.497868 0)
(-0.107157 0.517685 0)
(-0.113309 0.519415 0)
(-0.11841 0.513117 0)
(-0.124582 0.513249 0)
(-0.132781 0.525129 0)
(-0.142074 0.541524 0)
(-0.151653 0.555277 0)
(-0.162104 0.567851 0)
(-0.173968 0.582342 0)
(-0.186839 0.59747 0)
(-0.2008 0.612008 0)
(-0.216794 0.627044 0)
(-0.235333 0.642647 0)
(-0.256175 0.657071 0)
(-0.278549 0.667672 0)
(-0.301381 0.671307 0)
(-0.324232 0.666029 0)
(-0.347629 0.651846 0)
(-0.371672 0.628384 0)
(-0.393887 0.592223 0)
(-0.410271 0.539058 0)
(-0.419446 0.468928 0)
(-0.422701 0.385583 0)
(-0.421223 0.293046 0)
(-0.415947 0.194404 0)
(-0.407177 0.0919447 0)
(-0.395015 -0.0123182 0)
(-0.379833 -0.116194 0)
(-0.361622 -0.21752 0)
(-0.340718 -0.313927 0)
(-0.317393 -0.40308 0)
(-0.29218 -0.482839 0)
(-0.265562 -0.551498 0)
(-0.237745 -0.606928 0)
(-0.208821 -0.646202 0)
(-0.179613 -0.668561 0)
(-0.151451 -0.676576 0)
(-0.125336 -0.673216 0)
(-0.101874 -0.661431 0)
(-0.0812665 -0.643749 0)
(-0.0636829 -0.622013 0)
(-0.0490784 -0.597716 0)
(-0.0373219 -0.572076 0)
(-0.0281068 -0.546006 0)
(-0.020685 -0.519683 0)
(-0.0152499 -0.494716 0)
(-0.012255 -0.472211 0)
(-0.0111915 -0.452284 0)
(-0.0131656 -0.437372 0)
(-0.0190448 -0.429232 0)
(-0.0263824 -0.424171 0)
(-0.0320469 -0.416698 0)
(-0.0353036 -0.405097 0)
(-0.0371899 -0.390876 0)
(-0.0386866 -0.375935 0)
(-0.0402785 -0.361467 0)
(-0.0421438 -0.347999 0)
(-0.0443012 -0.335708 0)
(-0.0467451 -0.324675 0)
(-0.0494047 -0.3148 0)
(-0.0522639 -0.306157 0)
(-0.0555941 -0.299857 0)
(-0.0596558 -0.297173 0)
(-0.064168 -0.297491 0)
(-0.0685427 -0.298595 0)
(-0.0724258 -0.299084 0)
(-0.0757358 -0.299626 0)
(-0.0784591 -0.301825 0)
(-0.0806748 -0.30673 0)
(-0.0825514 -0.314927 0)
(-0.0842139 -0.327126 0)
(-0.084249 -0.344868 0)
(-0.0796576 -0.369137 0)
(-0.0698299 -0.394697 0)
(-0.0549819 -0.40169 0)
(-0.0456635 -0.360349 0)
(-0.0314238 -0.267843 0)
(-0.0123127 -0.0727168 0)
(0.000543055 0.0523599 0)
(-0.00257718 0.138923 0)
(-0.00263363 0.222649 0)
(-0.00259675 0.296459 0)
(-0.00518731 0.342108 0)
(-0.00956288 0.363312 0)
(-0.0144258 0.37133 0)
(-0.0184574 0.370605 0)
(-0.0219683 0.362354 0)
(-0.0256528 0.35291 0)
(-0.0298174 0.346685 0)
(-0.0345444 0.342316 0)
(-0.0392238 0.337799 0)
(-0.0430213 0.329691 0)
(-0.045953 0.318785 0)
(-0.0499095 0.314969 0)
(-0.0559914 0.325215 0)
(-0.0631803 0.348098 0)
(-0.0709109 0.381678 0)
(-0.079586 0.42394 0)
(-0.0888501 0.46821 0)
(-0.0972082 0.503906 0)
(-0.103469 0.522273 0)
(-0.107733 0.52312 0)
(-0.111479 0.517103 0)
(-0.116722 0.518313 0)
(-0.124042 0.531158 0)
(-0.132302 0.548108 0)
(-0.140735 0.562419 0)
(-0.149913 0.575747 0)
(-0.160315 0.590997 0)
(-0.171644 0.60696 0)
(-0.184147 0.622726 0)
(-0.198698 0.639386 0)
(-0.21555 0.656622 0)
(-0.234262 0.672255 0)
(-0.254085 0.683454 0)
(-0.274208 0.687315 0)
(-0.294474 0.682318 0)
(-0.315358 0.668396 0)
(-0.336216 0.644047 0)
(-0.353886 0.60466 0)
(-0.365123 0.546862 0)
(-0.369885 0.472246 0)
(-0.3697 0.385283 0)
(-0.365669 0.289891 0)
(-0.358419 0.188768 0)
(-0.347922 0.0839126 0)
(-0.334452 -0.0226276 0)
(-0.318413 -0.128641 0)
(-0.299879 -0.231924 0)
(-0.2791 -0.33015 0)
(-0.256284 -0.420839 0)
(-0.231954 -0.501643 0)
(-0.206723 -0.570978 0)
(-0.180964 -0.627084 0)
(-0.154755 -0.666908 0)
(-0.128699 -0.689035 0)
(-0.103858 -0.695848 0)
(-0.0810752 -0.690697 0)
(-0.0608777 -0.676802 0)
(-0.0434263 -0.656854 0)
(-0.0289151 -0.632913 0)
(-0.0172795 -0.60651 0)
(-0.00824842 -0.578855 0)
(-0.00172053 -0.551191 0)
(0.00306022 -0.523736 0)
(0.00656815 -0.497329 0)
(0.00827788 -0.473343 0)
(0.00837207 -0.451782 0)
(0.00625622 -0.434381 0)
(0.000378205 -0.423991 0)
(-0.00798421 -0.418669 0)
(-0.0155713 -0.412647 0)
(-0.0207749 -0.402569 0)
(-0.0241965 -0.389129 0)
(-0.0269128 -0.374372 0)
(-0.029555 -0.3598 0)
(-0.0323781 -0.346146 0)
(-0.0354405 -0.333654 0)
(-0.038757 -0.32244 0)
(-0.0422808 -0.312432 0)
(-0.0459651 -0.303575 0)
(-0.0500336 -0.296835 0)
(-0.0547941 -0.293683 0)
(-0.060065 -0.293858 0)
(-0.0652928 -0.29519 0)
(-0.0700928 -0.296072 0)
(-0.0743195 -0.297042 0)
(-0.0778877 -0.299666 0)
(-0.0807814 -0.304939 0)
(-0.0828998 -0.313552 0)
(-0.0837436 -0.326865 0)
(-0.0805884 -0.347611 0)
(-0.0706246 -0.375857 0)
(-0.0580358 -0.403464 0)
(-0.0454381 -0.409867 0)
(-0.0430479 -0.368675 0)
(-0.0274265 -0.27973 0)
(-0.0132419 -0.0881678 0)
(-0.000312534 0.0539131 0)
(-0.0061751 0.140991 0)
(-0.00829062 0.223467 0)
(-0.00919272 0.297535 0)
(-0.0112367 0.344318 0)
(-0.0144352 0.366166 0)
(-0.0179847 0.374113 0)
(-0.0208711 0.372992 0)
(-0.023458 0.364712 0)
(-0.0265232 0.355654 0)
(-0.0303493 0.349877 0)
(-0.0348873 0.345719 0)
(-0.0394923 0.340933 0)
(-0.0434287 0.332298 0)
(-0.0468312 0.32156 0)
(-0.0514599 0.318883 0)
(-0.0579722 0.330186 0)
(-0.0651408 0.353576 0)
(-0.0724414 0.387604 0)
(-0.0802535 0.430218 0)
(-0.0881589 0.474058 0)
(-0.094673 0.50843 0)
(-0.0988786 0.525378 0)
(-0.101372 0.525647 0)
(-0.10391 0.520231 0)
(-0.108294 0.522638 0)
(-0.11469 0.536385 0)
(-0.121817 0.553785 0)
(-0.12899 0.568546 0)
(-0.136776 0.582495 0)
(-0.145621 0.598416 0)
(-0.155333 0.61521 0)
(-0.16624 0.632182 0)
(-0.179061 0.650299 0)
(-0.19382 0.668864 0)
(-0.209995 0.685391 0)
(-0.226957 0.697017 0)
(-0.244119 0.701093 0)
(-0.261474 0.696352 0)
(-0.279279 0.682363 0)
(-0.296185 0.656388 0)
(-0.308941 0.613405 0)
(-0.315356 0.55127 0)
(-0.31622 0.472828 0)
(-0.313016 0.382908 0)
(-0.306662 0.285133 0)
(-0.297413 0.181817 0)
(-0.285172 0.0748605 0)
(-0.270427 -0.0335705 0)
(-0.253591 -0.14129 0)
(-0.234842 -0.246149 0)
(-0.214336 -0.345858 0)
(-0.192206 -0.437841 0)
(-0.168935 -0.519412 0)
(-0.145221 -0.589025 0)
(-0.12153 -0.645268 0)
(-0.0980411 -0.685113 0)
(-0.0752684 -0.706742 0)
(-0.0539809 -0.712301 0)
(-0.034815 -0.705361 0)
(-0.0181662 -0.689465 0)
(-0.00414405 -0.667375 0)
(0.00708413 -0.641412 0)
(0.0155513 -0.613032 0)
(0.0216664 -0.583523 0)
(0.0254335 -0.554307 0)
(0.0274154 -0.525908 0)
(0.0285568 -0.498572 0)
(0.0286391 -0.473535 0)
(0.0275502 -0.450792 0)
(0.0249453 -0.431344 0)
(0.0191224 -0.418548 0)
(0.0102036 -0.412272 0)
(0.00103306 -0.407252 0)
(-0.00605989 -0.39877 0)
(-0.0110781 -0.386368 0)
(-0.0150604 -0.371984 0)
(-0.018779 -0.357411 0)
(-0.0225783 -0.343625 0)
(-0.0265579 -0.330965 0)
(-0.0307532 -0.319586 0)
(-0.0351479 -0.309458 0)
(-0.0396815 -0.300433 0)
(-0.0445294 -0.293306 0)
(-0.0500259 -0.289687 0)
(-0.0560794 -0.289667 0)
(-0.0621745 -0.291169 0)
(-0.0678972 -0.292423 0)
(-0.0730281 -0.293858 0)
(-0.0773761 -0.297026 0)
(-0.0807023 -0.302992 0)
(-0.0822972 -0.312858 0)
(-0.080569 -0.328951 0)
(-0.0711072 -0.354656 0)
(-0.0522782 -0.38634 0)
(-0.0353503 -0.411826 0)
(-0.0257726 -0.413588 0)
(-0.032699 -0.373404 0)
(-0.0214186 -0.290045 0)
(-0.012846 -0.102019 0)
(-0.000994233 0.0569203 0)
(-0.00923736 0.144629 0)
(-0.0131101 0.225363 0)
(-0.0149678 0.298782 0)
(-0.0166057 0.345893 0)
(-0.0187766 0.368099 0)
(-0.0210895 0.375985 0)
(-0.0229106 0.374615 0)
(-0.0246617 0.366507 0)
(-0.0271834 0.358031 0)
(-0.0307138 0.352843 0)
(-0.0350812 0.348995 0)
(-0.0396445 0.34407 0)
(-0.0437779 0.335117 0)
(-0.0476779 0.324721 0)
(-0.0529051 0.323116 0)
(-0.0597169 0.335197 0)
(-0.0667391 0.358772 0)
(-0.0734377 0.392909 0)
(-0.0801408 0.435513 0)
(-0.0864843 0.478603 0)
(-0.0911201 0.511485 0)
(-0.0933865 0.527117 0)
(-0.0942886 0.527129 0)
(-0.095773 0.522597 0)
(-0.0993536 0.52625 0)
(-0.104777 0.540779 0)
(-0.110682 0.558502 0)
(-0.116508 0.573606 0)
(-0.122824 0.588061 0)
(-0.130048 0.604573 0)
(-0.138064 0.62216 0)
(-0.147199 0.640234 0)
(-0.157988 0.659564 0)
(-0.170293 0.679138 0)
(-0.183614 0.696296 0)
(-0.197466 0.708218 0)
(-0.21143 0.712466 0)
(-0.225533 0.70785 0)
(-0.239712 0.693363 0)
(-0.252195 0.665239 0)
(-0.260033 0.618661 0)
(-0.262062 0.552654 0)
(-0.259458 0.471025 0)
(-0.253526 0.37867 0)
(-0.244943 0.278858 0)
(-0.233691 0.173617 0)
(-0.219783 0.0648814 0)
(-0.203873 -0.0450699 0)
(-0.18633 -0.154111 0)
(-0.167414 -0.26013 0)
(-0.147275 -0.360935 0)
(-0.125931 -0.453921 0)
(-0.103852 -0.535985 0)
(-0.0818251 -0.605566 0)
(-0.0602697 -0.661471 0)
(-0.0395175 -0.700827 0)
(-0.0201232 -0.721618 0)
(-0.00255277 -0.72581 0)
(0.0128019 -0.717143 0)
(0.0257081 -0.699355 0)
(0.036092 -0.675309 0)
(0.0439037 -0.647387 0)
(0.0491452 -0.617215 0)
(0.0521864 -0.586043 0)
(0.0531913 -0.555359 0)
(0.0524041 -0.526045 0)
(0.0508939 -0.498177 0)
(0.0489647 -0.472557 0)
(0.0464404 -0.449123 0)
(0.0430724 -0.428158 0)
(0.0371742 -0.413011 0)
(0.0279655 -0.40528 0)
(0.0175938 -0.400726 0)
(0.00874772 -0.393746 0)
(0.00210884 -0.382577 0)
(-0.00317554 -0.368755 0)
(-0.00798529 -0.354305 0)
(-0.0127681 -0.340448 0)
(-0.0176704 -0.327656 0)
(-0.0227464 -0.316127 0)
(-0.0280095 -0.305885 0)
(-0.0334032 -0.296724 0)
(-0.0390604 -0.289256 0)
(-0.0453278 -0.285175 0)
(-0.0521938 -0.284915 0)
(-0.0591853 -0.286535 0)
(-0.0658629 -0.288145 0)
(-0.0719274 -0.290102 0)
(-0.0770459 -0.294022 0)
(-0.0805899 -0.301278 0)
(-0.080849 -0.313813 0)
(-0.0748008 -0.335109 0)
(-0.0561982 -0.368195 0)
(-0.0262814 -0.402327 0)
(-0.00304078 -0.420832 0)
(0.00412739 -0.412243 0)
(-0.0105586 -0.371166 0)
(-0.0125634 -0.295213 0)
(-0.0111 -0.112403 0)
(-0.00144693 0.061089 0)
(-0.0116206 0.149537 0)
(-0.0169246 0.228122 0)
(-0.0196512 0.300222 0)
(-0.0209867 0.346983 0)
(-0.0223005 0.369249 0)
(-0.0235201 0.377048 0)
(-0.0244161 0.375577 0)
(-0.0254589 0.367826 0)
(-0.0275302 0.360096 0)
(-0.030813 0.355612 0)
(-0.035029 0.352165 0)
(-0.0395802 0.347238 0)
(-0.0439527 0.338167 0)
(-0.0483446 0.328231 0)
(-0.0540727 0.327579 0)
(-0.0610586 0.340159 0)
(-0.0678318 0.363592 0)
(-0.0737931 0.397464 0)
(-0.0791855 0.439696 0)
(-0.0838013 0.48181 0)
(-0.0865706 0.513163 0)
(-0.0870732 0.527648 0)
(-0.0865955 0.527713 0)
(-0.0871716 0.524288 0)
(-0.089979 0.529168 0)
(-0.0943789 0.544317 0)
(-0.0989963 0.562225 0)
(-0.103415 0.57757 0)
(-0.108212 0.59243 0)
(-0.113763 0.609445 0)
(-0.119986 0.627736 0)
(-0.127152 0.646735 0)
(-0.135621 0.666992 0)
(-0.145177 0.687273 0)
(-0.155404 0.704842 0)
(-0.165955 0.716944 0)
(-0.176497 0.721276 0)
(-0.187023 0.716577 0)
(-0.197149 0.701165 0)
(-0.204981 0.670633 0)
(-0.208118 0.620676 0)
(-0.206197 0.551364 0)
(-0.200465 0.467129 0)
(-0.191999 0.372755 0)
(-0.181242 0.271179 0)
(-0.168076 0.164269 0)
(-0.152663 0.0540757 0)
(-0.13576 -0.0570721 0)
(-0.117619 -0.16709 0)
(-0.0985582 -0.273908 0)
(-0.0788285 -0.375424 0)
(-0.0583009 -0.468985 0)
(-0.0374919 -0.551237 0)
(-0.0172771 -0.620501 0)
(0.00204718 -0.675634 0)
(0.0199952 -0.714059 0)
(0.0359535 -0.733686 0)
(0.0496821 -0.7364 0)
(0.0611063 -0.726067 0)
(0.0701707 -0.706465 0)
(0.0768694 -0.680614 0)
(0.0811969 -0.650833 0)
(0.0831673 -0.619035 0)
(0.0831176 -0.586426 0)
(0.0813527 -0.55441 0)
(0.0779191 -0.524228 0)
(0.0737116 -0.496028 0)
(0.0694757 -0.470217 0)
(0.0652074 -0.446561 0)
(0.0607676 -0.424646 0)
(0.0546014 -0.407426 0)
(0.0452142 -0.397903 0)
(0.0339503 -0.393297 0)
(0.0235578 -0.387605 0)
(0.0153153 -0.377771 0)
(0.00869452 -0.364681 0)
(0.00278315 -0.350473 0)
(-0.00297523 -0.336626 0)
(-0.00879385 -0.323749 0)
(-0.014745 -0.312088 0)
(-0.0208686 -0.301729 0)
(-0.0271221 -0.29245 0)
(-0.0336061 -0.284678 0)
(-0.0406738 -0.280136 0)
(-0.0483867 -0.279589 0)
(-0.0563192 -0.281271 0)
(-0.0640163 -0.283216 0)
(-0.0711016 -0.28576 0)
(-0.077069 -0.290718 0)
(-0.0807009 -0.300131 0)
(-0.0788912 -0.317262 0)
(-0.0669882 -0.346712 0)
(-0.0370568 -0.389278 0)
(0.00235849 -0.424759 0)
(0.0334154 -0.431883 0)
(0.0398097 -0.408104 0)
(0.0221949 -0.360285 0)
(0.000616372 -0.290691 0)
(-0.00844205 -0.117928 0)
(-0.0016461 0.0660889 0)
(-0.0132432 0.155368 0)
(-0.019649 0.231547 0)
(-0.0230844 0.301829 0)
(-0.0241934 0.347696 0)
(-0.0248135 0.369762 0)
(-0.0251346 0.37745 0)
(-0.0252865 0.376003 0)
(-0.0257671 0.368764 0)
(-0.0274851 0.361905 0)
(-0.0305667 0.358213 0)
(-0.0346477 0.355249 0)
(-0.03921 0.350455 0)
(-0.0438459 0.341446 0)
(-0.0486983 0.332039 0)
(-0.0548189 0.332187 0)
(-0.0618672 0.344999 0)
(-0.0683212 0.367971 0)
(-0.0734673 0.401185 0)
(-0.0774228 0.442683 0)
(-0.080199 0.483673 0)
(-0.0811413 0.513578 0)
(-0.0800814 0.527145 0)
(-0.0784429 0.527539 0)
(-0.0782284 0.52537 0)
(-0.080266 0.531399 0)
(-0.0835966 0.546984 0)
(-0.0868808 0.564938 0)
(-0.089857 0.580432 0)
(-0.0931009 0.595597 0)
(-0.0969254 0.613004 0)
(-0.101238 0.631856 0)
(-0.106235 0.65155 0)
(-0.11214 0.672437 0)
(-0.118725 0.693151 0)
(-0.125689 0.710947 0)
(-0.132781 0.723112 0)
(-0.139706 0.727392 0)
(-0.146384 0.722365 0)
(-0.152193 0.705702 0)
(-0.155355 0.672742 0)
(-0.154095 0.619784 0)
(-0.148591 0.547704 0)
(-0.139992 0.461324 0)
(-0.129136 0.365233 0)
(-0.116312 0.262146 0)
(-0.101423 0.153882 0)
(-0.0846806 0.0425872 0)
(-0.0669285 -0.0694454 0)
(-0.0482923 -0.180129 0)
(-0.0291206 -0.287465 0)
(-0.00976745 -0.3894 0)
(0.00991981 -0.482947 0)
(0.0293569 -0.565108 0)
(0.0476838 -0.633755 0)
(0.0646796 -0.687814 0)
(0.0797082 -0.724911 0)
(0.0921486 -0.74305 0)
(0.101988 -0.744161 0)
(0.109478 -0.732136 0)
(0.114716 -0.710815 0)
(0.11772 -0.683289 0)
(0.118576 -0.651869 0)
(0.117338 -0.618576 0)
(0.114263 -0.584736 0)
(0.109774 -0.551582 0)
(0.103852 -0.520556 0)
(0.0970543 -0.492085 0)
(0.0903501 -0.466354 0)
(0.0840601 -0.442897 0)
(0.0782127 -0.420605 0)
(0.0714917 -0.401731 0)
(0.0619241 -0.390278 0)
(0.0499885 -0.385146 0)
(0.0382622 -0.380462 0)
(0.0284905 -0.371991 0)
(0.0205257 -0.359789 0)
(0.0134899 -0.345933 0)
(0.00675668 -0.332158 0)
(4.74564e-05 -0.319251 0)
(-0.00675614 -0.307494 0)
(-0.0137233 -0.297018 0)
(-0.0208284 -0.287621 0)
(-0.0281447 -0.279568 0)
(-0.0360333 -0.27456 0)
(-0.0446276 -0.273673 0)
(-0.0535582 -0.275347 0)
(-0.06237 -0.27758 0)
(-0.0706243 -0.280761 0)
(-0.0776104 -0.287107 0)
(-0.0812818 -0.299802 0)
(-0.0767396 -0.323922 0)
(-0.0573966 -0.364808 0)
(-0.0146496 -0.417192 0)
(0.0290291 -0.4527 0)
(0.0671857 -0.445538 0)
(0.0755122 -0.404624 0)
(0.0589964 -0.342156 0)
(0.0191876 -0.27408 0)
(-0.00476221 -0.11682 0)
(-0.00159976 0.0715555 0)
(-0.0140939 0.161801 0)
(-0.0212567 0.235437 0)
(-0.0252113 0.303538 0)
(-0.0261493 0.348138 0)
(-0.0262329 0.36979 0)
(-0.0258733 0.377353 0)
(-0.0254757 0.376029 0)
(-0.0255402 0.369417 0)
(-0.026994 0.363513 0)
(-0.0299143 0.360673 0)
(-0.033871 0.358258 0)
(-0.0384583 0.353733 0)
(-0.0433639 0.344942 0)
(-0.0486283 0.336083 0)
(-0.055033 0.33686 0)
(-0.0620499 0.349662 0)
(-0.068149 0.371884 0)
(-0.0724698 0.404044 0)
(-0.074959 0.444448 0)
(-0.0758558 0.484217 0)
(-0.0750258 0.51285 0)
(-0.0725956 0.525775 0)
(-0.0699973 0.526733 0)
(-0.0690764 0.525892 0)
(-0.0703244 0.532945 0)
(-0.0725453 0.548775 0)
(-0.0744715 0.566641 0)
(-0.0759846 0.582195 0)
(-0.0776427 0.597557 0)
(-0.0796753 0.615214 0)
(-0.0819564 0.634439 0)
(-0.084606 0.654573 0)
(-0.0877555 0.675801 0)
(-0.0912177 0.696711 0)
(-0.0948057 0.71457 0)
(-0.0983292 0.72667 0)
(-0.101487 0.730736 0)
(-0.104123 0.725144 0)
(-0.105496 0.707031 0)
(-0.104069 0.671746 0)
(-0.0987374 0.616207 0)
(-0.0899814 0.541906 0)
(-0.0787298 0.453816 0)
(-0.0656362 0.356351 0)
(-0.0508836 0.252025 0)
(-0.0344315 0.142591 0)
(-0.0165622 0.0304973 0)
(0.00195887 -0.0820853 0)
(0.0209722 -0.193175 0)
(0.0401319 -0.300782 0)
(0.0592346 -0.402811 0)
(0.078072 -0.496076 0)
(0.0959338 -0.577647 0)
(0.112267 -0.645284 0)
(0.12682 -0.69797 0)
(0.138868 -0.733404 0)
(0.147763 -0.749762 0)
(0.153747 -0.749122 0)
(0.157347 -0.735422 0)
(0.158818 -0.712493 0)
(0.158229 -0.683446 0)
(0.15571 -0.650574 0)
(0.151391 -0.615963 0)
(0.14545 -0.581079 0)
(0.138343 -0.547002 0)
(0.13009 -0.515198 0)
(0.120904 -0.486431 0)
(0.111719 -0.46089 0)
(0.103182 -0.437944 0)
(0.0956003 -0.415815 0)
(0.0879857 -0.395798 0)
(0.0781138 -0.382462 0)
(0.0656413 -0.376432 0)
(0.0527701 -0.372429 0)
(0.0415598 -0.365287 0)
(0.0322686 -0.354098 0)
(0.0241189 -0.340719 0)
(0.0164148 -0.327085 0)
(0.00882193 -0.314181 0)
(0.00119913 -0.302356 0)
(-0.00657269 -0.291782 0)
(-0.0145071 -0.28226 0)
(-0.0226511 -0.273934 0)
(-0.0313689 -0.268444 0)
(-0.0408731 -0.267148 0)
(-0.0508635 -0.268718 0)
(-0.0609067 -0.271157 0)
(-0.0705283 -0.274988 0)
(-0.0787706 -0.283127 0)
(-0.0824704 -0.300493 0)
(-0.0745257 -0.334488 0)
(-0.0459387 -0.390209 0)
(0.00875565 -0.450085 0)
(0.0531288 -0.4833 0)
(0.0963296 -0.462215 0)
(0.10896 -0.402969 0)
(0.0927588 -0.319768 0)
(0.0417505 -0.246771 0)
(-4.57509e-05 -0.106743 0)
(-0.00130673 0.07711 0)
(-0.0141888 0.168562 0)
(-0.0217841 0.239607 0)
(-0.0260611 0.305278 0)
(-0.0268675 0.348398 0)
(-0.0265745 0.369485 0)
(-0.0257461 0.376912 0)
(-0.0249808 0.375781 0)
(-0.0247573 0.369868 0)
(-0.026024 0.364967 0)
(-0.0288143 0.36301 0)
(-0.0326498 0.3612 0)
(-0.0372649 0.35707 0)
(-0.0424306 0.348628 0)
(-0.0480492 0.3403 0)
(-0.0546375 0.341531 0)
(-0.0615488 0.354119 0)
(-0.067288 0.375342 0)
(-0.0708385 0.406077 0)
(-0.0719352 0.445028 0)
(-0.0710003 0.483497 0)
(-0.0684669 0.511091 0)
(-0.0648227 0.523682 0)
(-0.0614255 0.525392 0)
(-0.0598495 0.525879 0)
(-0.0602714 0.533803 0)
(-0.0613478 0.549692 0)
(-0.0619033 0.567343 0)
(-0.0619367 0.582864 0)
(-0.0619736 0.598302 0)
(-0.062142 0.61604 0)
(-0.0622712 0.635419 0)
(-0.0624296 0.655728 0)
(-0.0626995 0.677038 0)
(-0.0629535 0.697936 0)
(-0.0631026 0.715708 0)
(-0.0629866 0.727603 0)
(-0.0622828 0.731287 0)
(-0.0607761 0.724922 0)
(-0.057712 0.705282 0)
(-0.0518968 0.66794 0)
(-0.0427989 0.610286 0)
(-0.0310119 0.534197 0)
(-0.0172788 0.444728 0)
(-0.00205127 0.346047 0)
(0.0144902 0.240701 0)
(0.0322747 0.130471 0)
(0.0510611 0.0178394 0)
(0.0702975 -0.0950444 0)
(0.0896062 -0.206264 0)
(0.108682 -0.31378 0)
(0.127365 -0.415432 0)
(0.145298 -0.508224 0)
(0.161585 -0.588833 0)
(0.175826 -0.655151 0)
(0.187834 -0.706125 0)
(0.196794 -0.739546 0)
(0.202122 -0.753865 0)
(0.204327 -0.751381 0)
(0.204172 -0.736053 0)
(0.202026 -0.711635 0)
(0.198006 -0.681225 0)
(0.192292 -0.647119 0)
(0.1851 -0.611386 0)
(0.176534 -0.575624 0)
(0.166986 -0.54082 0)
(0.15656 -0.508329 0)
(0.145206 -0.479203 0)
(0.13364 -0.453822 0)
(0.122724 -0.431553 0)
(0.113102 -0.410047 0)
(0.104227 -0.389448 0)
(0.0938373 -0.374432 0)
(0.0808656 -0.367262 0)
(0.0670051 -0.363627 0)
(0.0544638 -0.357723 0)
(0.0438756 -0.347632 0)
(0.0346219 -0.334849 0)
(0.0259745 -0.321443 0)
(0.0175282 -0.308586 0)
(0.00910462 -0.29671 0)
(0.000572172 -0.286042 0)
(-0.0081425 -0.276401 0)
(-0.0170939 -0.267794 0)
(-0.0266346 -0.261791 0)
(-0.0370635 -0.259999 0)
(-0.0481681 -0.261339 0)
(-0.0595647 -0.263848 0)
(-0.0707779 -0.268298 0)
(-0.0805363 -0.278693 0)
(-0.0842301 -0.302418 0)
(-0.072136 -0.349614 0)
(-0.0329952 -0.422687 0)
(0.0276738 -0.486339 0)
(0.0763911 -0.515139 0)
(0.124141 -0.481898 0)
(0.141102 -0.401748 0)
(0.121205 -0.294888 0)
(0.0647067 -0.211408 0)
(0.00573683 -0.0864886 0)
(-0.000771194 0.0824004 0)
(-0.0135601 0.175383 0)
(-0.0212988 0.243894 0)
(-0.025732 0.306999 0)
(-0.0264336 0.348539 0)
(-0.0259175 0.368973 0)
(-0.0248096 0.376264 0)
(-0.0238288 0.375367 0)
(-0.0234197 0.370182 0)
(-0.0245628 0.366302 0)
(-0.0272433 0.365236 0)
(-0.0309528 0.364075 0)
(-0.0355854 0.360457 0)
(-0.0409879 0.352475 0)
(-0.0469016 0.344635 0)
(-0.0535864 0.346144 0)
(-0.0603359 0.358353 0)
(-0.0657336 0.378386 0)
(-0.0686197 0.407376 0)
(-0.0684916 0.444529 0)
(-0.0658674 0.481604 0)
(-0.0617224 0.508394 0)
(-0.0569733 0.52097 0)
(-0.0528834 0.523586 0)
(-0.0506724 0.525342 0)
(-0.050223 0.533963 0)
(-0.0501221 0.549742 0)
(-0.0492983 0.567055 0)
(-0.047835 0.582443 0)
(-0.0462035 0.597819 0)
(-0.0444323 0.615441 0)
(-0.0423186 0.634747 0)
(-0.0398889 0.654984 0)
(-0.0372113 0.676146 0)
(-0.0342298 0.696853 0)
(-0.0309308 0.714388 0)
(-0.027156 0.725942 0)
(-0.0225582 0.729075 0)
(-0.0169074 0.721796 0)
(-0.00947728 0.700654 0)
(0.000541644 0.6614 0)
(0.0131333 0.602098 0)
(0.0277242 0.52469 0)
(0.0437751 0.434237 0)
(0.0609551 0.334719 0)
(0.0791436 0.228566 0)
(0.0981278 0.117814 0)
(0.11769 0.00489805 0)
(0.137469 -0.108056 0)
(0.157022 -0.219218 0)
(0.175955 -0.326442 0)
(0.19415 -0.427524 0)
(0.211048 -0.519391 0)
(0.225634 -0.598642 0)
(0.237682 -0.663286 0)
(0.247031 -0.71224 0)
(0.252827 -0.743344 0)
(0.254619 -0.755441 0)
(0.253194 -0.75108 0)
(0.249479 -0.734196 0)
(0.24392 -0.708431 0)
(0.236716 -0.676831 0)
(0.228083 -0.641709 0)
(0.218302 -0.605068 0)
(0.207414 -0.568576 0)
(0.195663 -0.533197 0)
(0.183219 -0.500119 0)
(0.169893 -0.470561 0)
(0.156102 -0.445212 0)
(0.142766 -0.423636 0)
(0.130855 -0.403092 0)
(0.120347 -0.382474 0)
(0.10916 -0.366112 0)
(0.0956433 -0.357695 0)
(0.0808988 -0.354153 0)
(0.0671339 -0.349368 0)
(0.0553007 -0.340433 0)
(0.0449673 -0.328354 0)
(0.0353999 -0.315256 0)
(0.0261402 -0.302503 0)
(0.0169631 -0.290611 0)
(0.00770896 -0.279838 0)
(-0.00172838 -0.270077 0)
(-0.0114365 -0.261183 0)
(-0.0217748 -0.254619 0)
(-0.0331212 -0.252223 0)
(-0.045373 -0.253169 0)
(-0.0582283 -0.255558 0)
(-0.071248 -0.26055 0)
(-0.082749 -0.27375 0)
(-0.08633 -0.305843 0)
(-0.0692674 -0.369602 0)
(-0.0207226 -0.459654 0)
(0.0372977 -0.525376 0)
(0.0980325 -0.551394 0)
(0.15182 -0.504637 0)
(0.171481 -0.398825 0)
(0.144882 -0.267063 0)
(0.0842586 -0.170289 0)
(0.0119539 -0.0567234 0)
(-5.91451e-06 0.0871067 0)
(-0.0122489 0.182026 0)
(-0.0198851 0.248169 0)
(-0.0243644 0.308666 0)
(-0.024982 0.348615 0)
(-0.0243786 0.368361 0)
(-0.0231448 0.375516 0)
(-0.0220659 0.374866 0)
(-0.02155 0.370412 0)
(-0.0226167 0.367548 0)
(-0.0251954 0.367359 0)
(-0.0287653 0.366876 0)
(-0.0333918 0.363875 0)
(-0.0389954 0.356447 0)
(-0.0451493 0.349035 0)
(-0.0518603 0.350657 0)
(-0.0584072 0.362361 0)
(-0.0634961 0.381079 0)
(-0.065855 0.408071 0)
(-0.0647391 0.443113 0)
(-0.0606586 0.478668 0)
(-0.0550308 0.504847 0)
(-0.049244 0.517706 0)
(-0.0445079 0.521352 0)
(-0.0416535 0.524282 0)
(-0.0402835 0.533417 0)
(-0.0389727 0.548928 0)
(-0.0367568 0.56579 0)
(-0.0337708 0.580929 0)
(-0.0304283 0.596092 0)
(-0.0266531 0.6134 0)
(-0.0222192 0.632415 0)
(-0.0171568 0.652335 0)
(-0.0115349 0.673162 0)
(-0.00535159 0.693521 0)
(0.00137101 0.710685 0)
(0.00877896 0.72175 0)
(0.0172351 0.724182 0)
(0.0269789 0.715883 0)
(0.0385433 0.693332 0)
(0.0525158 0.652467 0)
(0.0684639 0.591844 0)
(0.0857105 0.513577 0)
(0.10395 0.422426 0)
(0.122909 0.322337 0)
(0.142544 0.215675 0)
(0.162608 0.104667 0)
(0.182875 -0.00829119 0)
(0.203111 -0.121196 0)
(0.222791 -0.232086 0)
(0.241458 -0.338735 0)
(0.259007 -0.438911 0)
(0.274683 -0.529454 0)
(0.287441 -0.606988 0)
(0.297206 -0.669671 0)
(0.303808 -0.716317 0)
(0.306384 -0.74485 0)
(0.304712 -0.754612 0)
(0.299861 -0.748399 0)
(0.292844 -0.730066 0)
(0.284156 -0.70311 0)
(0.274088 -0.670517 0)
(0.262904 -0.634607 0)
(0.250897 -0.597275 0)
(0.23804 -0.560179 0)
(0.224366 -0.52431 0)
(0.210054 -0.490711 0)
(0.194898 -0.460658 0)
(0.179038 -0.435158 0)
(0.163308 -0.414159 0)
(0.148932 -0.394776 0)
(0.136446 -0.374658 0)
(0.124142 -0.35738 0)
(0.109964 -0.347744 0)
(0.0943948 -0.34409 0)
(0.0795053 -0.340292 0)
(0.0664888 -0.332545 0)
(0.0551124 -0.321271 0)
(0.0446644 -0.308568 0)
(0.0346342 -0.295972 0)
(0.0247598 -0.2841 0)
(0.0148441 -0.273237 0)
(0.00474631 -0.263326 0)
(-0.0056459 -0.254145 0)
(-0.0167251 -0.246965 0)
(-0.0289518 -0.243837 0)
(-0.0423471 -0.244192 0)
(-0.0567255 -0.246215 0)
(-0.0717194 -0.251639 0)
(-0.0851291 -0.268294 0)
(-0.0884749 -0.310981 0)
(-0.0659775 -0.393741 0)
(-0.0137282 -0.497077 0)
(0.0398831 -0.567281 0)
(0.113726 -0.595509 0)
(0.172786 -0.530939 0)
(0.194515 -0.393764 0)
(0.162219 -0.235856 0)
(0.097602 -0.125379 0)
(0.0172728 -0.0196387 0)
(0.000996381 0.0909267 0)
(-0.0102656 0.188287 0)
(-0.0176282 0.252347 0)
(-0.0221013 0.310265 0)
(-0.0226625 0.348674 0)
(-0.0220906 0.367733 0)
(-0.0208433 0.374748 0)
(-0.0197484 0.374334 0)
(-0.0191852 0.370594 0)
(-0.0202058 0.368719 0)
(-0.0226801 0.369374 0)
(-0.0260881 0.369588 0)
(-0.0306704 0.367301 0)
(-0.036429 0.360508 0)
(-0.0427746 0.353462 0)
(-0.0494601 0.355043 0)
(-0.0557763 0.366149 0)
(-0.0605944 0.383488 0)
(-0.0625744 0.408315 0)
(-0.060744 0.440984 0)
(-0.0555126 0.474859 0)
(-0.0485814 0.500535 0)
(-0.0417994 0.513922 0)
(-0.036409 0.518696 0)
(-0.0328766 0.522686 0)
(-0.0305364 0.532153 0)
(-0.0279791 0.547251 0)
(-0.0243524 0.563552 0)
(-0.0198151 0.578322 0)
(-0.0147108 0.593109 0)
(-0.00887871 0.609905 0)
(-0.00212152 0.628414 0)
(0.0055672 0.647846 0)
(0.0141072 0.668164 0)
(0.0234083 0.688034 0)
(0.0334591 0.704699 0)
(0.0444207 0.7151 0)
(0.0566378 0.716701 0)
(0.0703348 0.707279 0)
(0.0858372 0.683373 0)
(0.103465 0.641303 0)
(0.122586 0.579729 0)
(0.142443 0.500994 0)
(0.16275 0.409432 0)
(0.183364 0.308982 0)
(0.204301 0.202121 0)
(0.225321 0.0911136 0)
(0.246203 -0.0216955 0)
(0.266767 -0.134345 0)
(0.286415 -0.244703 0)
(0.30467 -0.350531 0)
(0.32141 -0.449521 0)
(0.335648 -0.538356 0)
(0.346415 -0.61383 0)
(0.353807 -0.674272 0)
(0.357572 -0.718351 0)
(0.356916 -0.744132 0)
(0.351935 -0.751539 0)
(0.343927 -0.74356 0)
(0.333922 -0.723911 0)
(0.322456 -0.695951 0)
(0.309935 -0.662589 0)
(0.296661 -0.626123 0)
(0.282865 -0.588301 0)
(0.268416 -0.550686 0)
(0.253108 -0.514334 0)
(0.237062 -0.48022 0)
(0.220149 -0.449607 0)
(0.20233 -0.423761 0)
(0.184271 -0.403134 0)
(0.167327 -0.384971 0)
(0.152573 -0.365797 0)
(0.138824 -0.348087 0)
(0.123817 -0.337386 0)
(0.107438 -0.333496 0)
(0.0915117 -0.330566 0)
(0.0773851 -0.324022 0)
(0.0650141 -0.31364 0)
(0.053731 -0.30142 0)
(0.0429879 -0.289046 0)
(0.0324783 -0.277231 0)
(0.0219784 -0.266296 0)
(0.011298 -0.256219 0)
(0.000306233 -0.246729 0)
(-0.0114169 -0.238885 0)
(-0.0244487 -0.234884 0)
(-0.038932 -0.234423 0)
(-0.0548322 -0.235791 0)
(-0.0718918 -0.24151 0)
(-0.0873399 -0.262332 0)
(-0.0904923 -0.317629 0)
(-0.0637947 -0.419613 0)
(-0.016483 -0.532889 0)
(0.0396708 -0.612387 0)
(0.117554 -0.644566 0)
(0.176902 -0.55983 0)
(0.201371 -0.388311 0)
(0.168317 -0.203002 0)
(0.10244 -0.0792435 0)
(0.0203636 0.0214726 0)
(0.00222823 0.093558 0)
(-0.00762727 0.193954 0)
(-0.014584 0.256389 0)
(-0.0190749 0.311782 0)
(-0.0196125 0.348761 0)
(-0.0191758 0.367154 0)
(-0.017996 0.374009 0)
(-0.0169387 0.373807 0)
(-0.0163698 0.370754 0)
(-0.0173607 0.369823 0)
(-0.0197168 0.371275 0)
(-0.0229359 0.372191 0)
(-0.0274226 0.370699 0)
(-0.0332782 0.364621 0)
(-0.0397737 0.357887 0)
(-0.046401 0.359283 0)
(-0.0524689 0.369726 0)
(-0.0570508 0.385682 0)
(-0.0587933 0.408263 0)
(-0.0565252 0.438366 0)
(-0.0504894 0.470377 0)
(-0.0424897 0.495556 0)
(-0.0347559 0.509628 0)
(-0.0286619 0.515602 0)
(-0.0243927 0.520537 0)
(-0.0210345 0.530157 0)
(-0.017195 0.544711 0)
(-0.0121257 0.560346 0)
(-0.00600629 0.574609 0)
(0.000883701 0.588884 0)
(0.00879014 0.604981 0)
(0.0178834 0.622791 0)
(0.028132 0.641629 0)
(0.0394662 0.661273 0)
(0.0517695 0.6805 0)
(0.065006 0.696519 0)
(0.079389 0.70613 0)
(0.0952107 0.706761 0)
(0.112651 0.696159 0)
(0.131883 0.670992 0)
(0.152922 0.627978 0)
(0.175032 0.565928 0)
(0.197409 0.487066 0)
(0.219701 0.395401 0)
(0.241872 0.294839 0)
(0.263994 0.188013 0)
(0.285847 0.077224 0)
(0.307236 -0.0352562 0)
(0.327989 -0.147416 0)
(0.347421 -0.256994 0)
(0.365108 -0.361749 0)
(0.38082 -0.459219 0)
(0.393359 -0.54597 0)
(0.401987 -0.619102 0)
(0.406931 -0.677075 0)
(0.407801 -0.718374 0)
(0.40397 -0.741311 0)
(0.395909 -0.746429 0)
(0.385064 -0.736819 0)
(0.372435 -0.716021 0)
(0.358626 -0.687275 0)
(0.344164 -0.653403 0)
(0.329348 -0.616611 0)
(0.314251 -0.578457 0)
(0.298584 -0.540349 0)
(0.281902 -0.503428 0)
(0.264224 -0.468724 0)
(0.245556 -0.437476 0)
(0.225819 -0.411106 0)
(0.205493 -0.390605 0)
(0.185948 -0.373605 0)
(0.168711 -0.355718 0)
(0.153212 -0.33808 0)
(0.137181 -0.326571 0)
(0.119972 -0.322411 0)
(0.103085 -0.320259 0)
(0.0879293 -0.314921 0)
(0.0746255 -0.305511 0)
(0.0625649 -0.293862 0)
(0.0511719 -0.281773 0)
(0.0401028 -0.270064 0)
(0.0291022 -0.259077 0)
(0.01794 -0.248839 0)
(0.00645697 -0.238998 0)
(-0.00579216 -0.230468 0)
(-0.0194993 -0.225443 0)
(-0.0349505 -0.223923 0)
(-0.0522817 -0.224313 0)
(-0.071405 -0.230152 0)
(-0.089029 -0.255752 0)
(-0.0924288 -0.324728 0)
(-0.0658084 -0.443609 0)
(-0.0291677 -0.567148 0)
(0.0316553 -0.659361 0)
(0.102925 -0.691857 0)
(0.158432 -0.588538 0)
(0.185935 -0.384228 0)
(0.158246 -0.171722 0)
(0.097059 -0.0350867 0)
(0.0204832 0.0623488 0)
(0.00347085 0.0947448 0)
(-0.00441602 0.198915 0)
(-0.0108172 0.260297 0)
(-0.0154043 0.313236 0)
(-0.0159424 0.348926 0)
(-0.0157388 0.366669 0)
(-0.0146849 0.373335 0)
(-0.0136995 0.37331 0)
(-0.0131529 0.370906 0)
(-0.0141174 0.370859 0)
(-0.0163359 0.373048 0)
(-0.019335 0.374659 0)
(-0.0236622 0.37403 0)
(-0.0295452 0.368749 0)
(-0.036152 0.362288 0)
(-0.0427067 0.36337 0)
(-0.0485178 0.373101 0)
(-0.0528886 0.387719 0)
(-0.0545132 0.408054 0)
(-0.0520598 0.435476 0)
(-0.0455707 0.465444 0)
(-0.0367833 0.490028 0)
(-0.0281656 0.504833 0)
(-0.0212989 0.512032 0)
(-0.0162165 0.517804 0)
(-0.0117936 0.527423 0)
(-0.00663393 0.541292 0)
(-0.000102262 0.556179 0)
(0.00763695 0.569807 0)
(0.0163352 0.583431 0)
(0.0262779 0.59871 0)
(0.0376616 0.615668 0)
(0.0503615 0.633741 0)
(0.0643245 0.652599 0)
(0.079465 0.671049 0)
(0.095718 0.686277 0)
(0.11333 0.695011 0)
(0.132546 0.694557 0)
(0.153484 0.682757 0)
(0.176195 0.656454 0)
(0.200434 0.612706 0)
(0.225363 0.550527 0)
(0.250141 0.471862 0)
(0.274355 0.38042 0)
(0.297999 0.280028 0)
(0.3212 0.173455 0)
(0.343761 0.0630865 0)
(0.365534 -0.0488707 0)
(0.386316 -0.160298 0)
(0.405331 -0.268831 0)
(0.422269 -0.37225 0)
(0.436685 -0.467857 0)
(0.447267 -0.552201 0)
(0.45365 -0.622779 0)
(0.456085 -0.678086 0)
(0.454033 -0.716442 0)
(0.447165 -0.736545 0)
(0.436338 -0.739524 0)
(0.423022 -0.72846 0)
(0.408194 -0.706722 0)
(0.392574 -0.677457 0)
(0.376787 -0.643364 0)
(0.361045 -0.606454 0)
(0.345154 -0.568046 0)
(0.328601 -0.529384 0)
(0.31074 -0.49172 0)
(0.291477 -0.456262 0)
(0.270989 -0.424279 0)
(0.249296 -0.397244 0)
(0.226745 -0.37663 0)
(0.204618 -0.360657 0)
(0.184769 -0.344295 0)
(0.167268 -0.327216 0)
(0.150017 -0.315237 0)
(0.131936 -0.310863 0)
(0.114155 -0.309435 0)
(0.0980588 -0.305305 0)
(0.0838967 -0.296939 0)
(0.0711259 -0.285946 0)
(0.0591567 -0.274214 0)
(0.0476109 -0.26266 0)
(0.036206 -0.251656 0)
(0.0246814 -0.241257 0)
(0.0128244 -0.231062 0)
(0.000198732 -0.221805 0)
(-0.0139896 -0.215627 0)
(-0.0302176 -0.212806 0)
(-0.0487788 -0.21188 0)
(-0.0698509 -0.217591 0)
(-0.0898008 -0.24818 0)
(-0.094569 -0.33032 0)
(-0.0743778 -0.462535 0)
(-0.0485509 -0.5977 0)
(0.00649048 -0.703417 0)
(0.0664069 -0.734184 0)
(0.117473 -0.615219 0)
(0.14741 -0.382613 0)
(0.130811 -0.145505 0)
(0.0808295 0.00400662 0)
(0.0172398 0.0985856 0)
(0.00452459 0.0944655 0)
(-0.000583653 0.203092 0)
(-0.00640768 0.264053 0)
(-0.0111817 0.314704 0)
(-0.0117515 0.349203 0)
(-0.0118704 0.366309 0)
(-0.0109789 0.372749 0)
(-0.0100972 0.372855 0)
(-0.00959216 0.371056 0)
(-0.0105168 0.37182 0)
(-0.0125746 0.37468 0)
(-0.0153223 0.376964 0)
(-0.0194135 0.37725 0)
(-0.0252439 0.372852 0)
(-0.0319224 0.36665 0)
(-0.038402 0.367306 0)
(-0.043958 0.376284 0)
(-0.0481314 0.389641 0)
(-0.0497256 0.407803 0)
(-0.047293 0.432511 0)
(-0.0406715 0.460278 0)
(-0.0314021 0.48409 0)
(-0.0220089 0.49955 0)
(-0.0143044 0.507948 0)
(-0.00831609 0.514461 0)
(-0.00279698 0.523906 0)
(0.00371043 0.537033 0)
(0.0117447 0.551048 0)
(0.0211026 0.563965 0)
(0.0316114 0.576789 0)
(0.0435299 0.591153 0)
(0.0570748 0.607146 0)
(0.0720751 0.624316 0)
(0.0884851 0.642291 0)
(0.106252 0.659848 0)
(0.125324 0.674158 0)
(0.145935 0.681924 0)
(0.168291 0.68033 0)
(0.192445 0.667325 0)
(0.218351 0.640003 0)
(0.245564 0.595723 0)
(0.273135 0.533631 0)
(0.300196 0.455443 0)
(0.326275 0.36454 0)
(0.351317 0.264607 0)
(0.375503 0.158526 0)
(0.398645 0.0487906 0)
(0.420666 -0.0624342 0)
(0.441273 -0.172862 0)
(0.459666 -0.280097 0)
(0.475654 -0.381905 0)
(0.488454 -0.475288 0)
(0.496861 -0.556964 0)
(0.50095 -0.624847 0)
(0.500833 -0.677331 0)
(0.495898 -0.712661 0)
(0.486236 -0.730052 0)
(0.473013 -0.7311 0)
(0.457628 -0.718796 0)
(0.441102 -0.696384 0)
(0.424322 -0.66693 0)
(0.407923 -0.632916 0)
(0.391895 -0.596037 0)
(0.375676 -0.557344 0)
(0.358491 -0.517956 0)
(0.339546 -0.479282 0)
(0.318677 -0.442831 0)
(0.29625 -0.409985 0)
(0.2725 -0.382187 0)
(0.247729 -0.361269 0)
(0.223079 -0.346154 0)
(0.200582 -0.331458 0)
(0.180905 -0.315381 0)
(0.162261 -0.303322 0)
(0.143263 -0.29887 0)
(0.124649 -0.298157 0)
(0.107708 -0.295244 0)
(0.0927753 -0.287985 0)
(0.0793727 -0.277731 0)
(0.0669085 -0.266427 0)
(0.054977 -0.255088 0)
(0.0432734 -0.244106 0)
(0.0315083 -0.23357 0)
(0.0194301 -0.223041 0)
(0.00660801 -0.213007 0)
(-0.00783529 -0.20559 0)
(-0.0245608 -0.20125 0)
(-0.0440234 -0.198676 0)
(-0.0667736 -0.203888 0)
(-0.0891469 -0.23899 0)
(-0.0970824 -0.332196 0)
(-0.0882956 -0.47438 0)
(-0.0729948 -0.620273 0)
(-0.0352784 -0.738399 0)
(0.011414 -0.769929 0)
(0.0575726 -0.64043 0)
(0.0899516 -0.384643 0)
(0.0880224 -0.128104 0)
(0.0551299 0.0329457 0)
(0.0105387 0.125828 0)
(0.00636813 0.0926243 0)
(0.00392996 0.206072 0)
(-0.00130405 0.267624 0)
(-0.00648049 0.316216 0)
(-0.00714285 0.349631 0)
(-0.00764537 0.366095 0)
(-0.00694552 0.372266 0)
(-0.0061953 0.372455 0)
(-0.00574673 0.371201 0)
(-0.00660445 0.372698 0)
(-0.00847452 0.376156 0)
(-0.0109458 0.379071 0)
(-0.0147141 0.380306 0)
(-0.0203947 0.376885 0)
(-0.0271054 0.370962 0)
(-0.0335138 0.371098 0)
(-0.0388214 0.379283 0)
(-0.0428024 0.391474 0)
(-0.0444201 0.407591 0)
(-0.0421539 0.429624 0)
(-0.0356607 0.455079 0)
(-0.0262119 0.477893 0)
(-0.0161963 0.493817 0)
(-0.00761215 0.503314 0)
(-0.000648321 0.510469 0)
(0.00603549 0.519638 0)
(0.0138982 0.531929 0)
(0.0234162 0.544977 0)
(0.0343946 0.557098 0)
(0.0466679 0.569039 0)
(0.0604679 0.582381 0)
(0.0760078 0.597335 0)
(0.0931177 0.613525 0)
(0.111762 0.630526 0)
(0.131918 0.647084 0)
(0.153575 0.660378 0)
(0.176932 0.667083 0)
(0.202143 0.664323 0)
(0.229197 0.650115 0)
(0.257986 0.621861 0)
(0.287914 0.577214 0)
(0.317936 0.515386 0)
(0.347137 0.437896 0)
(0.375007 0.347809 0)
(0.40137 0.248623 0)
(0.42647 0.143302 0)
(0.450061 0.0344163 0)
(0.472173 -0.0758365 0)
(0.492372 -0.184978 0)
(0.509958 -0.290674 0)
(0.524745 -0.390557 0)
(0.535587 -0.481369 0)
(0.541704 -0.560225 0)
(0.54351 -0.625335 0)
(0.540821 -0.674873 0)
(0.533134 -0.707188 0)
(0.521014 -0.722082 0)
(0.505797 -0.721448 0)
(0.488795 -0.708171 0)
(0.471184 -0.685436 0)
(0.454014 -0.656178 0)
(0.437771 -0.622513 0)
(0.422056 -0.58571 0)
(0.405871 -0.546562 0)
(0.388185 -0.506153 0)
(0.368138 -0.46613 0)
(0.345569 -0.428391 0)
(0.321047 -0.394536 0)
(0.295102 -0.365922 0)
(0.268094 -0.344582 0)
(0.241008 -0.330164 0)
(0.215919 -0.317201 0)
(0.193987 -0.302506 0)
(0.173827 -0.290778 0)
(0.153874 -0.286451 0)
(0.134491 -0.286491 0)
(0.116812 -0.284809 0)
(0.101207 -0.278713 0)
(0.0872618 -0.269278 0)
(0.0743914 -0.258477 0)
(0.0621709 -0.247416 0)
(0.0502794 -0.23651 0)
(0.0384043 -0.22587 0)
(0.0262732 -0.215032 0)
(0.0134547 -0.20423 0)
(-0.000977119 -0.195521 0)
(-0.0178383 -0.189497 0)
(-0.0377423 -0.184978 0)
(-0.0616922 -0.189167 0)
(-0.086459 -0.22755 0)
(-0.0994658 -0.328719 0)
(-0.104013 -0.477855 0)
(-0.101361 -0.632587 0)
(-0.0840071 -0.761729 0)
(-0.0550659 -0.796229 0)
(-0.0156261 -0.663866 0)
(0.02199 -0.392784 0)
(0.0330807 -0.12163 0)
(0.0221264 0.0482184 0)
(0.00167995 0.140468 0)
(0.0113289 0.0883555 0)
(0.00903754 0.207865 0)
(0.0045299 0.271083 0)
(-0.00136633 0.31793 0)
(-0.00220732 0.350246 0)
(-0.00316084 0.366035 0)
(-0.00265252 0.371909 0)
(-0.00205839 0.372115 0)
(-0.00167116 0.371337 0)
(-0.00242811 0.373477 0)
(-0.00408291 0.377461 0)
(-0.0062568 0.380952 0)
(-0.00961437 0.383145 0)
(-0.0150265 0.380805 0)
(-0.0217224 0.375208 0)
(-0.0280755 0.374755 0)
(-0.0331389 0.382106 0)
(-0.0369204 0.393233 0)
(-0.0385894 0.407465 0)
(-0.0365768 0.426922 0)
(-0.0303887 0.450012 0)
(-0.0210243 0.471593 0)
(-0.010579 0.487691 0)
(-0.00112785 0.498108 0)
(0.00690085 0.505818 0)
(0.0147791 0.514663 0)
(0.0239624 0.525963 0)
(0.0349459 0.538002 0)
(0.0475063 0.549245 0)
(0.0614564 0.560259 0)
(0.0770037 0.572515 0)
(0.0943506 0.586385 0)
(0.113351 0.60154 0)
(0.133987 0.617495 0)
(0.156279 0.63296 0)
(0.180258 0.645156 0)
(0.206084 0.650725 0)
(0.233842 0.646777 0)
(0.263461 0.631378 0)
(0.294791 0.60225 0)
(0.327144 0.557354 0)
(0.359402 0.495942 0)
(0.39057 0.419326 0)
(0.420103 0.330296 0)
(0.447704 0.232141 0)
(0.473627 0.127852 0)
(0.497528 0.0199972 0)
(0.519559 -0.0889552 0)
(0.53913 -0.196518 0)
(0.555753 -0.300438 0)
(0.56901 -0.39804 0)
(0.577612 -0.486009 0)
(0.581472 -0.562008 0)
(0.581036 -0.624293 0)
(0.575793 -0.670807 0)
(0.565597 -0.70023 0)
(0.551421 -0.712916 0)
(0.534625 -0.710883 0)
(0.516538 -0.696977 0)
(0.498599 -0.674368 0)
(0.481902 -0.645713 0)
(0.466557 -0.612579 0)
(0.451623 -0.575741 0)
(0.435665 -0.535814 0)
(0.417464 -0.493984 0)
(0.39619 -0.452216 0)
(0.371769 -0.412874 0)
(0.344988 -0.37786 0)
(0.31671 -0.348425 0)
(0.287442 -0.32663 0)
(0.258037 -0.312792 0)
(0.230495 -0.30158 0)
(0.206334 -0.288576 0)
(0.184601 -0.277584 0)
(0.163683 -0.273632 0)
(0.143607 -0.274503 0)
(0.125303 -0.274079 0)
(0.109139 -0.269196 0)
(0.0947491 -0.260652 0)
(0.0815672 -0.25043 0)
(0.0691583 -0.239715 0)
(0.0571926 -0.228946 0)
(0.0453435 -0.218255 0)
(0.0333323 -0.207157 0)
(0.0207332 -0.195646 0)
(0.00660761 -0.185631 0)
(-0.00997058 -0.177829 0)
(-0.0297344 -0.171159 0)
(-0.054171 -0.173672 0)
(-0.0810825 -0.213516 0)
(-0.100338 -0.319169 0)
(-0.117998 -0.472273 0)
(-0.130281 -0.634139 0)
(-0.132704 -0.772653 0)
(-0.124629 -0.813938 0)
(-0.094753 -0.684921 0)
(-0.0489728 -0.408096 0)
(-0.0269584 -0.126742 0)
(-0.0150767 0.0491904 0)
(-0.00872584 0.140873 0)
(0.0194467 0.0799811 0)
(0.0149979 0.209028 0)
(0.0109422 0.274536 0)
(0.00406144 0.320011 0)
(0.00289387 0.351008 0)
(0.00150054 0.366171 0)
(0.00181586 0.371673 0)
(0.00223866 0.371837 0)
(0.00258237 0.371452 0)
(0.00196244 0.374144 0)
(0.00055531 0.37858 0)
(-0.00130858 0.382581 0)
(-0.0041747 0.385704 0)
(-0.00918407 0.384552 0)
(-0.0157947 0.379378 0)
(-0.0221144 0.378288 0)
(-0.0269489 0.384755 0)
(-0.0305041 0.394917 0)
(-0.0322265 0.407446 0)
(-0.0305129 0.424462 0)
(-0.0247228 0.44519 0)
(-0.0156376 0.465329 0)
(-0.00497294 0.481264 0)
(0.00528557 0.492338 0)
(0.0144274 0.500515 0)
(0.023505 0.508955 0)
(0.0339608 0.519205 0)
(0.0463457 0.530167 0)
(0.0604095 0.540476 0)
(0.0759193 0.550541 0)
(0.0930458 0.561699 0)
(0.111988 0.57446 0)
(0.132642 0.588543 0)
(0.155015 0.603398 0)
(0.179178 0.617686 0)
(0.205197 0.628705 0)
(0.233195 0.633085 0)
(0.263179 0.627939 0)
(0.295019 0.611377 0)
(0.328526 0.581412 0)
(0.362976 0.536329 0)
(0.397221 0.475455 0)
(0.430165 0.399868 0)
(0.461177 0.312097 0)
(0.489911 0.215236 0)
(0.516456 0.112233 0)
(0.540572 0.0057248 0)
(0.562377 -0.101602 0)
(0.581138 -0.207382 0)
(0.596599 -0.309251 0)
(0.607937 -0.404196 0)
(0.614196 -0.489192 0)
(0.615966 -0.56239 0)
(0.613317 -0.621788 0)
(0.605611 -0.665278 0)
(0.593258 -0.692041 0)
(0.577448 -0.70284 0)
(0.55951 -0.699742 0)
(0.541005 -0.685672 0)
(0.523639 -0.663724 0)
(0.508291 -0.63603 0)
(0.494441 -0.603443 0)
(0.480531 -0.566272 0)
(0.464785 -0.525104 0)
(0.445916 -0.481377 0)
(0.423217 -0.437453 0)
(0.396769 -0.396204 0)
(0.367588 -0.359898 0)
(0.336875 -0.32968 0)
(0.305348 -0.307482 0)
(0.273773 -0.294174 0)
(0.243993 -0.284707 0)
(0.217733 -0.273632 0)
(0.194454 -0.263754 0)
(0.172599 -0.260454 0)
(0.15192 -0.262266 0)
(0.13312 -0.263134 0)
(0.116519 -0.259507 0)
(0.101791 -0.251922 0)
(0.0883968 -0.242349 0)
(0.0759016 -0.232054 0)
(0.0639741 -0.221493 0)
(0.0522852 -0.210819 0)
(0.0405615 -0.199538 0)
(0.0284044 -0.187422 0)
(0.0149019 -0.17616 0)
(-0.000963679 -0.166561 0)
(-0.0199255 -0.157668 0)
(-0.0439082 -0.157809 0)
(-0.0723818 -0.197007 0)
(-0.0978907 -0.303688 0)
(-0.127266 -0.457838 0)
(-0.154799 -0.624462 0)
(-0.177613 -0.770659 0)
(-0.189937 -0.823073 0)
(-0.171053 -0.704307 0)
(-0.117826 -0.426757 0)
(-0.0849439 -0.141527 0)
(-0.0523202 0.0357473 0)
(-0.0193185 0.126053 0)
(0.0255822 0.0666531 0)
(0.0217493 0.210531 0)
(0.0173799 0.278301 0)
(0.00961298 0.322411 0)
(0.00801407 0.351983 0)
(0.00625327 0.366523 0)
(0.00634985 0.371548 0)
(0.00662098 0.37162 0)
(0.00696049 0.371528 0)
(0.00651989 0.374682 0)
(0.00539124 0.379502 0)
(0.00384782 0.383929 0)
(0.00153281 0.387941 0)
(-0.0029237 0.388047 0)
(-0.00935317 0.38345 0)
(-0.0156521 0.381715 0)
(-0.0202907 0.387232 0)
(-0.0235853 0.396514 0)
(-0.0253293 0.407536 0)
(-0.0239304 0.422264 0)
(-0.0185736 0.440668 0)
(-0.00987367 0.459216 0)
(0.000816988 0.47464 0)
(0.01176 0.486048 0)
(0.022006 0.49455 0)
(0.032277 0.502554 0)
(0.043935 0.511729 0)
(0.0576038 0.521541 0)
(0.0730494 0.530883 0)
(0.0899755 0.540003 0)
(0.108493 0.550085 0)
(0.128804 0.561731 0)
(0.150866 0.574718 0)
(0.174716 0.588428 0)
(0.200479 0.60147 0)
(0.22825 0.611236 0)
(0.258114 0.614385 0)
(0.29 0.60805 0)
(0.323716 0.590368 0)
(0.359026 0.559607 0)
(0.395207 0.514357 0)
(0.431132 0.454086 0)
(0.465635 0.379664 0)
(0.497932 0.293344 0)
(0.527635 0.198018 0)
(0.554637 0.0965946 0)
(0.57888 -0.00819569 0)
(0.60021 -0.113705 0)
(0.618002 -0.217472 0)
(0.632021 -0.316937 0)
(0.641124 -0.408932 0)
(0.645216 -0.491016 0)
(0.645101 -0.561472 0)
(0.640235 -0.617906 0)
(0.630274 -0.658479 0)
(0.616177 -0.682895 0)
(0.599138 -0.692148 0)
(0.580579 -0.688417 0)
(0.562504 -0.67479 0)
(0.546691 -0.654053 0)
(0.53343 -0.627529 0)
(0.521396 -0.59528 0)
(0.508475 -0.557296 0)
(0.492718 -0.514329 0)
(0.472928 -0.468208 0)
(0.448589 -0.421742 0)
(0.419967 -0.378319 0)
(0.388301 -0.340623 0)
(0.355119 -0.309703 0)
(0.321384 -0.287231 0)
(0.287827 -0.274476 0)
(0.256091 -0.26675 0)
(0.227958 -0.257775 0)
(0.203244 -0.249341 0)
(0.180531 -0.246976 0)
(0.159362 -0.249861 0)
(0.140204 -0.252063 0)
(0.123297 -0.249726 0)
(0.108345 -0.243154 0)
(0.0948411 -0.234301 0)
(0.0823603 -0.224498 0)
(0.0705797 -0.214223 0)
(0.0591777 -0.203647 0)
(0.047896 -0.192287 0)
(0.0363874 -0.179705 0)
(0.023832 -0.167335 0)
(0.00908928 -0.156093 0)
(-0.0084049 -0.144944 0)
(-0.0308225 -0.14215 0)
(-0.0598767 -0.178641 0)
(-0.0905286 -0.283121 0)
(-0.129363 -0.43558 0)
(-0.170718 -0.603943 0)
(-0.212328 -0.75633 0)
(-0.244966 -0.822635 0)
(-0.238796 -0.721817 0)
(-0.178415 -0.448438 0)
(-0.134064 -0.164803 0)
(-0.0851815 0.0071787 0)
(-0.028032 0.0970248 0)
(0.0246235 0.0502231 0)
(0.0280039 0.21257 0)
(0.0227992 0.282234 0)
(0.0149731 0.325118 0)
(0.0130438 0.353237 0)
(0.0109825 0.367051 0)
(0.0108585 0.371546 0)
(0.0110069 0.371453 0)
(0.0113972 0.371536 0)
(0.0112001 0.375058 0)
(0.0103724 0.380221 0)
(0.00917266 0.384979 0)
(0.00743671 0.389801 0)
(0.00367267 0.391238 0)
(-0.00243314 0.387374 0)
(-0.00871271 0.385056 0)
(-0.0131936 0.389545 0)
(-0.0162041 0.397999 0)
(-0.0179167 0.407716 0)
(-0.0168208 0.420326 0)
(-0.0118887 0.436471 0)
(-0.00360877 0.453323 0)
(0.00695037 0.467924 0)
(0.0184072 0.479306 0)
(0.0296879 0.48795 0)
(0.0411211 0.495514 0)
(0.0538899 0.503616 0)
(0.0686879 0.512234 0)
(0.0853468 0.52058 0)
(0.103515 0.528774 0)
(0.123223 0.537823 0)
(0.144675 0.54837 0)
(0.167904 0.560244 0)
(0.192978 0.572769 0)
(0.220071 0.584509 0)
(0.249305 0.592957 0)
(0.280731 0.594844 0)
(0.314204 0.587338 0)
(0.349458 0.568596 0)
(0.386205 0.537095 0)
(0.423731 0.491693 0)
(0.460959 0.432028 0)
(0.496727 0.358855 0)
(0.53009 0.274161 0)
(0.560582 0.180607 0)
(0.587911 0.0810562 0)
(0.612064 -0.0217719 0)
(0.632675 -0.125194 0)
(0.649361 -0.226648 0)
(0.661572 -0.323353 0)
(0.668423 -0.412318 0)
(0.670758 -0.491665 0)
(0.668847 -0.559343 0)
(0.661774 -0.612764 0)
(0.649905 -0.65065 0)
(0.634475 -0.673071 0)
(0.616602 -0.681152 0)
(0.598114 -0.67738 0)
(0.581477 -0.66491 0)
(0.568119 -0.645833 0)
(0.557377 -0.620428 0)
(0.547109 -0.588064 0)
(0.534854 -0.548651 0)
(0.518714 -0.503309 0)
(0.497715 -0.454341 0)
(0.471571 -0.405006 0)
(0.440711 -0.359203 0)
(0.406568 -0.320058 0)
(0.370969 -0.288551 0)
(0.335145 -0.265993 0)
(0.29984 -0.253888 0)
(0.266484 -0.247913 0)
(0.236787 -0.241154 0)
(0.21083 -0.234438 0)
(0.187388 -0.233277 0)
(0.165869 -0.237376 0)
(0.146505 -0.240955 0)
(0.129433 -0.239933 0)
(0.114374 -0.234419 0)
(0.100863 -0.226346 0)
(0.0884936 -0.217108 0)
(0.0769607 -0.207203 0)
(0.0659597 -0.196817 0)
(0.0552579 -0.185498 0)
(0.044579 -0.172627 0)
(0.033225 -0.159354 0)
(0.020042 -0.146753 0)
(0.00460292 -0.133469 0)
(-0.0151624 -0.127398 0)
(-0.0434033 -0.15942 0)
(-0.0773106 -0.258831 0)
(-0.12282 -0.407201 0)
(-0.175048 -0.574369 0)
(-0.231862 -0.730842 0)
(-0.283887 -0.812478 0)
(-0.292905 -0.737044 0)
(-0.226482 -0.477081 0)
(-0.166946 -0.195685 0)
(-0.110485 -0.0331939 0)
(-0.0329008 0.0567925 0)
(0.0172685 0.0337612 0)
(0.0323263 0.213349 0)
(0.0265728 0.285649 0)
(0.0199758 0.328054 0)
(0.0178318 0.354703 0)
(0.0155942 0.367706 0)
(0.0152866 0.371665 0)
(0.0153276 0.371319 0)
(0.0158192 0.37144 0)
(0.0159551 0.375233 0)
(0.0154631 0.380727 0)
(0.0146105 0.385745 0)
(0.0134828 0.39122 0)
(0.0105166 0.39405 0)
(0.00489904 0.391105 0)
(-0.00131594 0.38831 0)
(-0.00569606 0.391719 0)
(-0.0083975 0.399351 0)
(-0.0100147 0.407959 0)
(-0.00919835 0.418627 0)
(-0.00467586 0.432575 0)
(0.00321099 0.447685 0)
(0.0135432 0.461224 0)
(0.0253128 0.472217 0)
(0.0374853 0.480775 0)
(0.0500072 0.487887 0)
(0.0637844 0.494961 0)
(0.0795382 0.50238 0)
(0.0972033 0.509705 0)
(0.11641 0.516993 0)
(0.137103 0.525061 0)
(0.159472 0.534535 0)
(0.183634 0.545285 0)
(0.209697 0.556594 0)
(0.237866 0.566988 0)
(0.268287 0.574066 0)
(0.300983 0.574667 0)
(0.335737 0.566016 0)
(0.372213 0.546285 0)
(0.410053 0.514122 0)
(0.448552 0.468608 0)
(0.486676 0.409534 0)
(0.523309 0.337626 0)
(0.557423 0.254662 0)
(0.58843 0.163081 0)
(0.615896 0.0656398 0)
(0.63972 -0.034963 0)
(0.659423 -0.135974 0)
(0.674818 -0.234824 0)
(0.68502 -0.328519 0)
(0.690043 -0.414593 0)
(0.691011 -0.491317 0)
(0.687201 -0.556061 0)
(0.678059 -0.606534 0)
(0.664721 -0.642051 0)
(0.648302 -0.662825 0)
(0.630069 -0.670224 0)
(0.612573 -0.667187 0)
(0.598412 -0.656578 0)
(0.58811 -0.639351 0)
(0.579868 -0.6147 0)
(0.570935 -0.58157 0)
(0.558811 -0.540069 0)
(0.541848 -0.491834 0)
(0.519393 -0.439667 0)
(0.491385 -0.387231 0)
(0.45835 -0.338904 0)
(0.421856 -0.298288 0)
(0.383998 -0.266331 0)
(0.346279 -0.243922 0)
(0.30951 -0.232624 0)
(0.274912 -0.228435 0)
(0.244022 -0.223961 0)
(0.217084 -0.219174 0)
(0.193095 -0.219459 0)
(0.17139 -0.224911 0)
(0.151982 -0.229903 0)
(0.13489 -0.230207 0)
(0.119844 -0.225782 0)
(0.106427 -0.218542 0)
(0.0942611 -0.209938 0)
(0.0830661 -0.200488 0)
(0.0725642 -0.190393 0)
(0.0625546 -0.17925 0)
(0.0528518 -0.166295 0)
(0.0428929 -0.152382 0)
(0.0316361 -0.13872 0)
(0.0186931 -0.123755 0)
(0.00252689 -0.114208 0)
(-0.0232346 -0.14058 0)
(-0.0581488 -0.232498 0)
(-0.1074 -0.37481 0)
(-0.166788 -0.538222 0)
(-0.234605 -0.695915 0)
(-0.3028 -0.79231 0)
(-0.329584 -0.748824 0)
(-0.263862 -0.5149 0)
(-0.179906 -0.233409 0)
(-0.127808 -0.0795493 0)
(-0.0341774 0.00856745 0)
(0.00773282 0.0193719 0)
(0.0343261 0.210932 0)
(0.028853 0.288023 0)
(0.0245628 0.330852 0)
(0.0222807 0.356198 0)
(0.0200312 0.368431 0)
(0.0196112 0.371883 0)
(0.01955 0.371196 0)
(0.0201725 0.371202 0)
(0.0207311 0.375175 0)
(0.0206405 0.381008 0)
(0.0201126 0.386238 0)
(0.0195914 0.392176 0)
(0.0175303 0.396372 0)
(0.0125652 0.394593 0)
(0.00650695 0.391476 0)
(0.00216857 0.393765 0)
(-0.0002208 0.400559 0)
(-0.00164899 0.408234 0)
(-0.0010922 0.417147 0)
(0.00302265 0.428959 0)
(0.0105689 0.442313 0)
(0.0206408 0.454625 0)
(0.032529 0.464907 0)
(0.0453847 0.473122 0)
(0.0588645 0.479742 0)
(0.0735337 0.485863 0)
(0.0900633 0.492117 0)
(0.108504 0.498406 0)
(0.128525 0.504802 0)
(0.149996 0.51194 0)
(0.173077 0.52037 0)
(0.197953 0.529993 0)
(0.224783 0.540058 0)
(0.253795 0.549075 0)
(0.285146 0.554747 0)
(0.318837 0.554048 0)
(0.354589 0.544282 0)
(0.391994 0.523642 0)
(0.430616 0.490908 0)
(0.469748 0.445349 0)
(0.508391 0.38688 0)
(0.545463 0.316247 0)
(0.579937 0.235049 0)
(0.611078 0.145591 0)
(0.638426 0.0504569 0)
(0.661611 -0.0476518 0)
(0.680333 -0.146026 0)
(0.694282 -0.241982 0)
(0.702644 -0.332615 0)
(0.706476 -0.416023 0)
(0.706097 -0.490014 0)
(0.700215 -0.551669 0)
(0.689374 -0.599433 0)
(0.674986 -0.632934 0)
(0.657862 -0.652417 0)
(0.639952 -0.659831 0)
(0.624538 -0.658424 0)
(0.613669 -0.65018 0)
(0.606516 -0.634617 0)
(0.600267 -0.610063 0)
(0.591949 -0.57542 0)
(0.579327 -0.531232 0)
(0.561133 -0.479718 0)
(0.53707 -0.424143 0)
(0.507273 -0.368482 0)
(0.472278 -0.317552 0)
(0.433698 -0.275468 0)
(0.39385 -0.243208 0)
(0.354512 -0.2212 0)
(0.316608 -0.210917 0)
(0.281177 -0.208571 0)
(0.249505 -0.206414 0)
(0.221903 -0.203707 0)
(0.197591 -0.205641 0)
(0.175889 -0.212571 0)
(0.156608 -0.219002 0)
(0.139642 -0.220627 0)
(0.12473 -0.217308 0)
(0.111503 -0.210944 0)
(0.0996249 -0.203036 0)
(0.0888455 -0.194124 0)
(0.0789214 -0.184423 0)
(0.0696881 -0.173597 0)
(0.0610619 -0.16078 0)
(0.0526323 -0.146534 0)
(0.0435255 -0.132169 0)
(0.0334328 -0.116113 0)
(0.02144 -0.103183 0)
(-0.000162375 -0.123294 0)
(-0.0337115 -0.205948 0)
(-0.0839604 -0.340518 0)
(-0.14691 -0.498135 0)
(-0.221009 -0.653993 0)
(-0.30083 -0.762453 0)
(-0.346961 -0.754036 0)
(-0.294223 -0.56103 0)
(-0.17888 -0.277595 0)
(-0.136107 -0.12716 0)
(-0.0330497 -0.0422791 0)
(-0.0009534 0.00774312 0)
(0.0343785 0.204836 0)
(0.0301972 0.289096 0)
(0.0286938 0.333115 0)
(0.0263803 0.357501 0)
(0.0242916 0.369162 0)
(0.0238289 0.37217 0)
(0.0236758 0.371064 0)
(0.0244417 0.370795 0)
(0.0254778 0.374852 0)
(0.0258778 0.381051 0)
(0.0256551 0.38647 0)
(0.0256779 0.392677 0)
(0.0246197 0.398131 0)
(0.0204943 0.397761 0)
(0.0147042 0.394571 0)
(0.0103652 0.39569 0)
(0.00825209 0.401587 0)
(0.00713052 0.408493 0)
(0.00749737 0.415882 0)
(0.0111669 0.425619 0)
(0.018382 0.437178 0)
(0.0282035 0.448167 0)
(0.040061 0.457504 0)
(0.0533616 0.465122 0)
(0.0676086 0.471179 0)
(0.0830283 0.476424 0)
(0.100159 0.481579 0)
(0.119139 0.486837 0)
(0.13973 0.492342 0)
(0.16177 0.498585 0)
(0.185377 0.506006 0)
(0.210776 0.5145 0)
(0.238177 0.523302 0)
(0.267821 0.530921 0)
(0.29987 0.535162 0)
(0.334303 0.533159 0)
(0.370789 0.522311 0)
(0.408854 0.500846 0)
(0.447983 0.467642 0)
(0.48745 0.422125 0)
(0.526289 0.364318 0)
(0.563437 0.294984 0)
(0.597895 0.215609 0)
(0.628829 0.128368 0)
(0.655746 0.0357039 0)
(0.67807 -0.0596999 0)
(0.695814 -0.15526 0)
(0.708209 -0.248138 0)
(0.715238 -0.335885 0)
(0.718205 -0.416711 0)
(0.716067 -0.487675 0)
(0.708189 -0.546285 0)
(0.696178 -0.591715 0)
(0.680951 -0.623482 0)
(0.663457 -0.642166 0)
(0.646849 -0.650535 0)
(0.634555 -0.651583 0)
(0.627288 -0.645808 0)
(0.622783 -0.631326 0)
(0.617643 -0.606037 0)
(0.609099 -0.569174 0)
(0.595393 -0.521843 0)
(0.575659 -0.466834 0)
(0.549942 -0.407799 0)
(0.518557 -0.348909 0)
(0.481962 -0.29536 0)
(0.441702 -0.251827 0)
(0.40025 -0.219395 0)
(0.35965 -0.198043 0)
(0.320988 -0.189008 0)
(0.285155 -0.188583 0)
(0.253132 -0.188747 0)
(0.225215 -0.188213 0)
(0.200839 -0.191958 0)
(0.179346 -0.200463 0)
(0.160368 -0.208344 0)
(0.143675 -0.21127 0)
(0.129012 -0.209056 0)
(0.116067 -0.203599 0)
(0.104551 -0.19644 0)
(0.0942511 -0.188144 0)
(0.0849628 -0.178938 0)
(0.0765597 -0.168567 0)
(0.0690614 -0.156114 0)
(0.0622226 -0.141864 0)
(0.0553585 -0.127206 0)
(0.0483444 -0.110714 0)
(0.0406883 -0.0949997 0)
(0.0246042 -0.108222 0)
(-0.0053061 -0.181027 0)
(-0.0540554 -0.306133 0)
(-0.117506 -0.456564 0)
(-0.193453 -0.608029 0)
(-0.27957 -0.724316 0)
(-0.343382 -0.749372 0)
(-0.315069 -0.609592 0)
(-0.175939 -0.329997 0)
(-0.127406 -0.171507 0)
(-0.0308128 -0.0912172 0)
(-0.00769003 -0.00123027 0)
(0.0330157 0.195711 0)
(0.0311539 0.288734 0)
(0.0323506 0.334592 0)
(0.0301745 0.3585 0)
(0.0283985 0.369847 0)
(0.0279371 0.37249 0)
(0.0277168 0.37091 0)
(0.0286401 0.37021 0)
(0.0301637 0.374236 0)
(0.0311374 0.380834 0)
(0.0312347 0.386464 0)
(0.0316864 0.392749 0)
(0.0316657 0.399276 0)
(0.0286 0.400504 0)
(0.0232279 0.397571 0)
(0.0188543 0.39754 0)
(0.0169396 0.402406 0)
(0.0162374 0.408667 0)
(0.0165555 0.414815 0)
(0.0197428 0.422572 0)
(0.0265678 0.432268 0)
(0.0361475 0.44187 0)
(0.0478677 0.450115 0)
(0.0613764 0.456925 0)
(0.0761584 0.462321 0)
(0.092154 0.466745 0)
(0.109722 0.47089 0)
(0.12903 0.475147 0)
(0.14995 0.479758 0)
(0.17234 0.485119 0)
(0.196291 0.491551 0)
(0.222045 0.498917 0)
(0.249848 0.506444 0)
(0.279941 0.512654 0)
(0.312486 0.515457 0)
(0.347435 0.512155 0)
(0.384417 0.500264 0)
(0.422901 0.478053 0)
(0.46229 0.444486 0)
(0.501844 0.399104 0)
(0.540599 0.342038 0)
(0.577551 0.274042 0)
(0.611652 0.196571 0)
(0.642159 0.111613 0)
(0.66835 0.0215347 0)
(0.689809 -0.0710601 0)
(0.706464 -0.163646 0)
(0.717372 -0.253433 0)
(0.723611 -0.338535 0)
(0.725399 -0.416554 0)
(0.72111 -0.484247 0)
(0.711705 -0.540141 0)
(0.69884 -0.583565 0)
(0.682795 -0.613858 0)
(0.665599 -0.632527 0)
(0.651454 -0.642911 0)
(0.642913 -0.646896 0)
(0.638875 -0.643196 0)
(0.636025 -0.62892 0)
(0.63096 -0.602058 0)
(0.621422 -0.562424 0)
(0.606189 -0.51168 0)
(0.584736 -0.453123 0)
(0.557405 -0.390723 0)
(0.524704 -0.328725 0)
(0.486971 -0.272614 0)
(0.445561 -0.227662 0)
(0.403003 -0.195163 0)
(0.361582 -0.174697 0)
(0.322584 -0.167152 0)
(0.286795 -0.168734 0)
(0.254857 -0.171197 0)
(0.226989 -0.172879 0)
(0.202828 -0.178548 0)
(0.181762 -0.188701 0)
(0.163264 -0.198018 0)
(0.146984 -0.202206 0)
(0.132679 -0.201081 0)
(0.120101 -0.196548 0)
(0.109013 -0.190182 0)
(0.0992403 -0.182571 0)
(0.0906251 -0.173954 0)
(0.083076 -0.164167 0)
(0.0767087 -0.152294 0)
(0.0714477 -0.138366 0)
(0.0667936 -0.123829 0)
(0.0628123 -0.107577 0)
(0.0596141 -0.0901438 0)
(0.0496658 -0.0962578 0)
(0.0252438 -0.158642 0)
(-0.0195559 -0.273237 0)
(-0.0811734 -0.415501 0)
(-0.155743 -0.561008 0)
(-0.242863 -0.680617 0)
(-0.318886 -0.732264 0)
(-0.319942 -0.648472 0)
(-0.185339 -0.394588 0)
(-0.0932293 -0.212173 0)
(-0.03062 -0.134432 0)
(-0.0123166 -0.00783311 0)
(0.0307541 0.184513 0)
(0.0320433 0.286961 0)
(0.0355539 0.335233 0)
(0.0337176 0.359195 0)
(0.0323546 0.370448 0)
(0.0319191 0.372809 0)
(0.0316659 0.37072 0)
(0.0327758 0.369452 0)
(0.0347782 0.373312 0)
(0.0363777 0.380334 0)
(0.0368512 0.386249 0)
(0.0376016 0.392444 0)
(0.0385457 0.399771 0)
(0.0367478 0.402704 0)
(0.0320209 0.400398 0)
(0.0276273 0.399368 0)
(0.0257802 0.403041 0)
(0.0255488 0.40868 0)
(0.0260172 0.413883 0)
(0.0287462 0.419836 0)
(0.0350777 0.427613 0)
(0.0443914 0.435764 0)
(0.0559002 0.442838 0)
(0.0693929 0.448677 0)
(0.0844573 0.453304 0)
(0.100824 0.456935 0)
(0.118657 0.460155 0)
(0.138116 0.463461 0)
(0.159161 0.467185 0)
(0.181699 0.471664 0)
(0.205818 0.47711 0)
(0.231762 0.483341 0)
(0.259807 0.489581 0)
(0.290188 0.494381 0)
(0.323049 0.495749 0)
(0.358317 0.491165 0)
(0.395586 0.478272 0)
(0.434272 0.455398 0)
(0.473708 0.421569 0)
(0.513129 0.376426 0)
(0.551578 0.320172 0)
(0.588095 0.253585 0)
(0.621617 0.178063 0)
(0.651483 0.0954379 0)
(0.67675 0.00801499 0)
(0.697408 -0.0816888 0)
(0.712729 -0.171186 0)
(0.722522 -0.258081 0)
(0.728079 -0.340561 0)
(0.727977 -0.41533 0)
(0.72163 -0.479854 0)
(0.711237 -0.533482 0)
(0.697488 -0.575057 0)
(0.680859 -0.604335 0)
(0.665029 -0.624075 0)
(0.654326 -0.63736 0)
(0.649466 -0.64422 0)
(0.647656 -0.641768 0)
(0.645253 -0.626741 0)
(0.639336 -0.597616 0)
(0.628249 -0.554865 0)
(0.61124 -0.500612 0)
(0.588012 -0.43858 0)
(0.559143 -0.373026 0)
(0.525396 -0.308161 0)
(0.487015 -0.249636 0)
(0.445061 -0.203319 0)
(0.40199 -0.170828 0)
(0.360269 -0.15144 0)
(0.321406 -0.145609 0)
(0.286114 -0.149277 0)
(0.254688 -0.153992 0)
(0.227233 -0.15789 0)
(0.203573 -0.165556 0)
(0.183157 -0.177392 0)
(0.165311 -0.188109 0)
(0.149577 -0.1935 0)
(0.135731 -0.193432 0)
(0.123596 -0.189825 0)
(0.112988 -0.184284 0)
(0.103778 -0.177417 0)
(0.0958529 -0.169471 0)
(0.0891543 -0.160383 0)
(0.0838787 -0.149281 0)
(0.0801146 -0.135977 0)
(0.0775395 -0.121943 0)
(0.0763258 -0.106553 0)
(0.077349 -0.0885976 0)
(0.0738248 -0.0883487 0)
(0.0561725 -0.13962 0)
(0.01721 -0.243036 0)
(-0.0404726 -0.376366 0)
(-0.111884 -0.515473 0)
(-0.195782 -0.634861 0)
(-0.27578 -0.703126 0)
(-0.304381 -0.670922 0)
(-0.21175 -0.479381 0)
(-0.0421321 -0.255693 0)
(-0.030409 -0.164049 0)
(-0.0150604 -0.0122373 0)
(0.0279557 0.172006 0)
(0.0330845 0.283888 0)
(0.0383697 0.335095 0)
(0.0370455 0.359598 0)
(0.0361387 0.370941 0)
(0.0357451 0.373103 0)
(0.0354873 0.370476 0)
(0.036819 0.368518 0)
(0.0393146 0.372079 0)
(0.0415608 0.379527 0)
(0.0424899 0.385841 0)
(0.0434388 0.391842 0)
(0.045172 0.399618 0)
(0.0447709 0.404241 0)
(0.0409779 0.402952 0)
(0.0366774 0.401194 0)
(0.0347595 0.403548 0)
(0.0349509 0.40848 0)
(0.0357756 0.412997 0)
(0.0381578 0.417412 0)
(0.043884 0.423262 0)
(0.0528552 0.42988 0)
(0.0641165 0.43575 0)
(0.077408 0.440519 0)
(0.0924986 0.444271 0)
(0.109023 0.447111 0)
(0.126943 0.449475 0)
(0.146383 0.451881 0)
(0.167376 0.454728 0)
(0.18989 0.458322 0)
(0.214025 0.46278 0)
(0.240017 0.467868 0)
(0.268155 0.472809 0)
(0.298669 0.476198 0)
(0.33168 0.476143 0)
(0.367086 0.470302 0)
(0.40445 0.456453 0)
(0.443144 0.432993 0)
(0.482446 0.399003 0)
(0.521541 0.3542 0)
(0.559525 0.298832 0)
(0.595383 0.233727 0)
(0.628222 0.160158 0)
(0.657139 0.0799735 0)
(0.681535 -0.00470145 0)
(0.701219 -0.0915368 0)
(0.715098 -0.177966 0)
(0.724241 -0.262213 0)
(0.728535 -0.341701 0)
(0.726026 -0.412954 0)
(0.718209 -0.474774 0)
(0.707103 -0.526415 0)
(0.692345 -0.566273 0)
(0.675798 -0.595367 0)
(0.662522 -0.617345 0)
(0.655635 -0.633931 0)
(0.653621 -0.643028 0)
(0.652708 -0.640796 0)
(0.649658 -0.624201 0)
(0.642257 -0.592361 0)
(0.62933 -0.546341 0)
(0.610468 -0.488604 0)
(0.585505 -0.423238 0)
(0.555181 -0.354809 0)
(0.520592 -0.287423 0)
(0.481995 -0.226741 0)
(0.440111 -0.179166 0)
(0.397176 -0.146739 0)
(0.355741 -0.128574 0)
(0.317526 -0.124647 0)
(0.283192 -0.130454 0)
(0.252685 -0.137348 0)
(0.225992 -0.143425 0)
(0.20312 -0.153118 0)
(0.183572 -0.166638 0)
(0.166538 -0.178693 0)
(0.15147 -0.185208 0)
(0.138174 -0.186149 0)
(0.126547 -0.183459 0)
(0.116463 -0.178761 0)
(0.107837 -0.172682 0)
(0.100602 -0.165477 0)
(0.0947266 -0.157182 0)
(0.09047 -0.14701 0)
(0.0880661 -0.134594 0)
(0.0873657 -0.121383 0)
(0.0885202 -0.107359 0)
(0.0931965 -0.0901129 0)
(0.095898 -0.0846487 0)
(0.0857794 -0.124944 0)
(0.0541051 -0.216349 0)
(0.00208269 -0.34005 0)
(-0.0653638 -0.472855 0)
(-0.143631 -0.590054 0)
(-0.220762 -0.666931 0)
(-0.269955 -0.679586 0)
(-0.234943 -0.574428 0)
(-0.0184369 -0.311665 0)
(-0.0178456 -0.177816 0)
(-0.0162162 -0.0149858 0)
(0.0246391 0.158071 0)
(0.0343686 0.279492 0)
(0.0409019 0.334247 0)
(0.040195 0.359701 0)
(0.0397397 0.371308 0)
(0.03939 0.373362 0)
(0.0391351 0.370167 0)
(0.0406961 0.367392 0)
(0.0437355 0.370532 0)
(0.0466534 0.378394 0)
(0.0481176 0.385238 0)
(0.0492198 0.391029 0)
(0.0515111 0.398883 0)
(0.0525135 0.405027 0)
(0.0499415 0.405105 0)
(0.0459513 0.402997 0)
(0.0438818 0.403996 0)
(0.0443629 0.408048 0)
(0.0457145 0.412058 0)
(0.0479567 0.415276 0)
(0.0529979 0.419272 0)
(0.0614659 0.424253 0)
(0.0724482 0.428893 0)
(0.0854317 0.432562 0)
(0.100317 0.435354 0)
(0.11679 0.437383 0)
(0.134646 0.438946 0)
(0.153923 0.440504 0)
(0.174698 0.442483 0)
(0.197023 0.445175 0)
(0.221029 0.448632 0)
(0.246946 0.452568 0)
(0.275051 0.456206 0)
(0.305562 0.458192 0)
(0.338572 0.456735 0)
(0.373952 0.449668 0)
(0.41124 0.434912 0)
(0.449766 0.410938 0)
(0.488766 0.376883 0)
(0.527389 0.332505 0)
(0.564739 0.278115 0)
(0.599809 0.21451 0)
(0.631784 0.142963 0)
(0.659624 0.0652705 0)
(0.68316 -0.0167072 0)
(0.701458 -0.100583 0)
(0.714311 -0.184163 0)
(0.722744 -0.265698 0)
(0.724797 -0.341646 0)
(0.720082 -0.409603 0)
(0.711517 -0.469253 0)
(0.699538 -0.518931 0)
(0.683823 -0.557433 0)
(0.668429 -0.587512 0)
(0.658587 -0.612626 0)
(0.655068 -0.632253 0)
(0.654554 -0.642566 0)
(0.653268 -0.639589 0)
(0.648822 -0.620887 0)
(0.639636 -0.58613 0)
(0.624783 -0.536824 0)
(0.604096 -0.475699 0)
(0.577513 -0.407161 0)
(0.545833 -0.336147 0)
(0.510524 -0.26666 0)
(0.472033 -0.204196 0)
(0.430773 -0.155554 0)
(0.388624 -0.123255 0)
(0.348096 -0.106418 0)
(0.311075 -0.104535 0)
(0.278157 -0.112492 0)
(0.24895 -0.121458 0)
(0.223346 -0.129649 0)
(0.201536 -0.141364 0)
(0.183065 -0.156533 0)
(0.16699 -0.169835 0)
(0.152694 -0.177379 0)
(0.140025 -0.179266 0)
(0.12896 -0.177469 0)
(0.119434 -0.17362 0)
(0.111401 -0.16836 0)
(0.104839 -0.161949 0)
(0.0997418 -0.154517 0)
(0.0964075 -0.145398 0)
(0.095188 -0.134084 0)
(0.0961087 -0.121943 0)
(0.0991779 -0.109626 0)
(0.106676 -0.0942321 0)
(0.114945 -0.0850303 0)
(0.112566 -0.114998 0)
(0.0891353 -0.193979 0)
(0.0441363 -0.307139 0)
(-0.0186366 -0.43328 0)
(-0.0909776 -0.547362 0)
(-0.164322 -0.628565 0)
(-0.224778 -0.670633 0)
(-0.231185 -0.630048 0)
(-0.0680493 -0.380179 0)
(0.0161178 -0.186642 0)
(-0.0159125 -0.0166951 0)
(0.0213847 0.143053 0)
(0.035954 0.274089 0)
(0.043214 0.332789 0)
(0.0431902 0.359508 0)
(0.0431701 0.371552 0)
(0.0428528 0.37359 0)
(0.0425827 0.369801 0)
(0.0443201 0.366065 0)
(0.0479502 0.368652 0)
(0.0516133 0.376914 0)
(0.0536904 0.384426 0)
(0.0549519 0.390076 0)
(0.0575674 0.39767 0)
(0.0598635 0.405026 0)
(0.0587388 0.406715 0)
(0.0553428 0.404706 0)
(0.0531325 0.404445 0)
(0.0537163 0.4074 0)
(0.0556894 0.410956 0)
(0.0581053 0.413358 0)
(0.0625049 0.415703 0)
(0.0702417 0.418951 0)
(0.080827 0.422292 0)
(0.0934599 0.424876 0)
(0.10797 0.426669 0)
(0.124182 0.427843 0)
(0.141842 0.428634 0)
(0.160871 0.4294 0)
(0.18133 0.430536 0)
(0.203331 0.432312 0)
(0.227059 0.434741 0)
(0.252759 0.437508 0)
(0.280697 0.439838 0)
(0.311073 0.440433 0)
(0.343945 0.437602 0)
(0.379149 0.429347 0)
(0.416201 0.413735 0)
(0.454403 0.389315 0)
(0.492944 0.355279 0)
(0.53096 0.311415 0)
(0.567513 0.258075 0)
(0.601714 0.196017 0)
(0.632596 0.126575 0)
(0.659491 0.0512425 0)
(0.681879 -0.0280019 0)
(0.698728 -0.108857 0)
(0.710969 -0.189825 0)
(0.717764 -0.268128 0)
(0.717048 -0.340318 0)
(0.711038 -0.405638 0)
(0.701971 -0.463359 0)
(0.688674 -0.511003 0)
(0.672573 -0.548952 0)
(0.659538 -0.581261 0)
(0.65329 -0.609813 0)
(0.651975 -0.631637 0)
(0.651536 -0.642078 0)
(0.648959 -0.637664 0)
(0.642719 -0.616601 0)
(0.631645 -0.578887 0)
(0.614864 -0.526351 0)
(0.592406 -0.461977 0)
(0.564383 -0.390446 0)
(0.531539 -0.317116 0)
(0.495625 -0.245968 0)
(0.457454 -0.182199 0)
(0.417266 -0.132787 0)
(0.376507 -0.100721 0)
(0.337504 -0.0852931 0)
(0.302234 -0.0855376 0)
(0.27118 -0.0956015 0)
(0.243618 -0.106498 0)
(0.219402 -0.11671 0)
(0.198912 -0.130409 0)
(0.181707 -0.147158 0)
(0.166719 -0.16159 0)
(0.153283 -0.17005 0)
(0.141307 -0.172809 0)
(0.130848 -0.17187 0)
(0.121901 -0.168862 0)
(0.114461 -0.164438 0)
(0.108544 -0.158858 0)
(0.104167 -0.152335 0)
(0.101643 -0.144348 0)
(0.101412 -0.134299 0)
(0.103667 -0.123404 0)
(0.108224 -0.112951 0)
(0.117556 -0.100323 0)
(0.130359 -0.0891291 0)
(0.13535 -0.10985 0)
(0.120603 -0.176442 0)
(0.083661 -0.278251 0)
(0.0269101 -0.39672 0)
(-0.0399245 -0.5069 0)
(-0.111366 -0.59071 0)
(-0.175281 -0.644529 0)
(-0.203422 -0.635054 0)
(-0.146294 -0.459095 0)
(0.0616187 -0.201636 0)
(-0.0142944 -0.017989 0)
(0.0188893 0.127648 0)
(0.0378296 0.267845 0)
(0.0453205 0.330693 0)
(0.0460799 0.359018 0)
(0.0464749 0.371688 0)
(0.0461676 0.373801 0)
(0.0458472 0.369411 0)
(0.0476465 0.364559 0)
(0.0518336 0.366412 0)
(0.0563691 0.375042 0)
(0.0591639 0.383381 0)
(0.0606276 0.389033 0)
(0.063353 0.396104 0)
(0.066748 0.404256 0)
(0.0672156 0.407657 0)
(0.0647249 0.406216 0)
(0.0624832 0.404935 0)
(0.0629582 0.406591 0)
(0.0654992 0.409584 0)
(0.068453 0.411512 0)
(0.0724849 0.412572 0)
(0.0793395 0.414089 0)
(0.0892879 0.416003 0)
(0.101506 0.417499 0)
(0.115557 0.418306 0)
(0.13132 0.418587 0)
(0.148618 0.418587 0)
(0.167323 0.418591 0)
(0.187433 0.418922 0)
(0.209062 0.419796 0)
(0.232425 0.421189 0)
(0.257786 0.42277 0)
(0.285415 0.423785 0)
(0.315504 0.422996 0)
(0.348083 0.41882 0)
(0.382951 0.409417 0)
(0.419611 0.392998 0)
(0.457332 0.368201 0)
(0.495278 0.334259 0)
(0.532552 0.291001 0)
(0.568233 0.23876 0)
(0.601437 0.178338 0)
(0.631232 0.110931 0)
(0.657108 0.037977 0)
(0.677928 -0.038365 0)
(0.693848 -0.116546 0)
(0.705045 -0.194677 0)
(0.709024 -0.269143 0)
(0.706113 -0.338036 0)
(0.699679 -0.401346 0)
(0.689644 -0.456952 0)
(0.674859 -0.502762 0)
(0.659478 -0.541372 0)
(0.64961 -0.576823 0)
(0.646247 -0.608399 0)
(0.645664 -0.631295 0)
(0.644178 -0.641007 0)
(0.639824 -0.6348 0)
(0.631587 -0.611291 0)
(0.618501 -0.570636 0)
(0.59974 -0.514959 0)
(0.575544 -0.447539 0)
(0.546317 -0.373252 0)
(0.512662 -0.29785 0)
(0.47638 -0.225442 0)
(0.438717 -0.160895 0)
(0.399953 -0.111105 0)
(0.361106 -0.0794384 0)
(0.324214 -0.0655019 0)
(0.291237 -0.0679045 0)
(0.262461 -0.0799656 0)
(0.23685 -0.0926158 0)
(0.21429 -0.104738 0)
(0.195355 -0.120356 0)
(0.179586 -0.138577 0)
(0.165789 -0.153999 0)
(0.153283 -0.163248 0)
(0.142051 -0.166794 0)
(0.13223 -0.166668 0)
(0.123877 -0.164483 0)
(0.117019 -0.160896 0)
(0.111711 -0.156166 0)
(0.107985 -0.150576 0)
(0.106155 -0.143764 0)
(0.10671 -0.135087 0)
(0.109996 -0.125551 0)
(0.115675 -0.116956 0)
(0.125898 -0.107629 0)
(0.141819 -0.0963672 0)
(0.153307 -0.109295 0)
(0.147214 -0.163945 0)
(0.118891 -0.253929 0)
(0.0696559 -0.363717 0)
(0.00860591 -0.469263 0)
(-0.0604246 -0.555166 0)
(-0.121966 -0.614732 0)
(-0.159528 -0.632272 0)
(-0.16595 -0.549152 0)
(0.0827915 -0.22237 0)
(-0.0116989 -0.0191708 0)
(0.0163747 0.11253 0)
(0.0397053 0.260868 0)
(0.047178 0.327938 0)
(0.0489353 0.358283 0)
(0.0497261 0.371738 0)
(0.0494053 0.374006 0)
(0.0490037 0.369047 0)
(0.0507245 0.362943 0)
(0.0552897 0.363807 0)
(0.0608122 0.372711 0)
(0.064489 0.382058 0)
(0.0662395 0.387932 0)
(0.0688813 0.394313 0)
(0.0731047 0.402779 0)
(0.0752297 0.40783 0)
(0.0739673 0.407395 0)
(0.0719157 0.405474 0)
(0.0721088 0.40573 0)
(0.0749631 0.407898 0)
(0.0786925 0.409524 0)
(0.0828356 0.409765 0)
(0.0889195 0.40975 0)
(0.0979869 0.410131 0)
(0.109633 0.410464 0)
(0.123199 0.410314 0)
(0.138423 0.409708 0)
(0.155196 0.408884 0)
(0.173437 0.408106 0)
(0.193131 0.407637 0)
(0.21437 0.407626 0)
(0.237351 0.407999 0)
(0.262327 0.408409 0)
(0.289561 0.408121 0)
(0.31924 0.405969 0)
(0.351377 0.40048 0)
(0.385752 0.389969 0)
(0.421859 0.37279 0)
(0.458951 0.347672 0)
(0.49617 0.313893 0)
(0.532591 0.2713 0)
(0.567321 0.220218 0)
(0.599397 0.161451 0)
(0.6281 0.096062 0)
(0.652514 0.0256745 0)
(0.672053 -0.0479902 0)
(0.687177 -0.123607 0)
(0.695929 -0.198173 0)
(0.69695 -0.268819 0)
(0.693125 -0.335293 0)
(0.686309 -0.396689 0)
(0.674557 -0.449865 0)
(0.658785 -0.49459 0)
(0.64533 -0.535158 0)
(0.638639 -0.573992 0)
(0.636862 -0.60765 0)
(0.635693 -0.630569 0)
(0.632458 -0.639025 0)
(0.626057 -0.630885 0)
(0.615661 -0.604912 0)
(0.600387 -0.561348 0)
(0.579559 -0.502647 0)
(0.553633 -0.432467 0)
(0.523429 -0.355776 0)
(0.489435 -0.278574 0)
(0.453213 -0.205238 0)
(0.416331 -0.140413 0)
(0.379294 -0.0906963 0)
(0.342797 -0.0596624 0)
(0.308542 -0.0473147 0)
(0.27836 -0.051856 0)
(0.25223 -0.0657398 0)
(0.228827 -0.079935 0)
(0.208158 -0.0938433 0)
(0.190989 -0.111287 0)
(0.176798 -0.130843 0)
(0.164271 -0.14709 0)
(0.152745 -0.156991 0)
(0.142291 -0.161234 0)
(0.133132 -0.161867 0)
(0.125377 -0.160475 0)
(0.119086 -0.157714 0)
(0.114344 -0.153836 0)
(0.111197 -0.149182 0)
(0.109942 -0.143549 0)
(0.111092 -0.136298 0)
(0.115107 -0.128193 0)
(0.121596 -0.121322 0)
(0.131972 -0.1154 0)
(0.149348 -0.105883 0)
(0.16599 -0.112861 0)
(0.168019 -0.156413 0)
(0.148364 -0.23449 0)
(0.107287 -0.334663 0)
(0.0520756 -0.435007 0)
(-0.0138468 -0.521123 0)
(-0.0724335 -0.585144 0)
(-0.119193 -0.6279 0)
(-0.148404 -0.613244 0)
(0.038882 -0.249264 0)
(-0.00863501 -0.0201346 0)
(0.012235 0.0981221 0)
(0.041047 0.253164 0)
(0.0487143 0.324584 0)
(0.0518071 0.357368 0)
(0.0529759 0.371706 0)
(0.0526575 0.374207 0)
(0.0521789 0.368758 0)
(0.0537058 0.36133 0)
(0.0583322 0.360897 0)
(0.0648235 0.369856 0)
(0.0695958 0.380382 0)
(0.0717878 0.386788 0)
(0.0741932 0.392434 0)
(0.0788788 0.400697 0)
(0.0826191 0.407157 0)
(0.0829058 0.408082 0)
(0.0813946 0.406014 0)
(0.0812836 0.40495 0)
(0.0840726 0.405977 0)
(0.0885149 0.407223 0)
(0.093237 0.407048 0)
(0.0989568 0.405899 0)
(0.107084 0.40478 0)
(0.117926 0.403828 0)
(0.130935 0.402693 0)
(0.145642 0.401236 0)
(0.161856 0.3996 0)
(0.17953 0.398019 0)
(0.198693 0.396721 0)
(0.219457 0.395809 0)
(0.242004 0.395168 0)
(0.26656 0.394428 0)
(0.293358 0.39287 0)
(0.322558 0.389397 0)
(0.354152 0.382645 0)
(0.387909 0.371074 0)
(0.423319 0.353181 0)
(0.459637 0.32779 0)
(0.495984 0.294226 0)
(0.531426 0.252345 0)
(0.565038 0.202485 0)
(0.595904 0.145385 0)
(0.623283 0.0821473 0)
(0.646252 0.0142696 0)
(0.664929 -0.0570002 0)
(0.678042 -0.129464 0)
(0.683486 -0.200058 0)
(0.682795 -0.267713 0)
(0.678833 -0.332326 0)
(0.670811 -0.391359 0)
(0.657006 -0.442158 0)
(0.641327 -0.487014 0)
(0.630558 -0.530469 0)
(0.626263 -0.572228 0)
(0.62466 -0.606845 0)
(0.621957 -0.629017 0)
(0.616558 -0.63595 0)
(0.607861 -0.625822 0)
(0.595092 -0.59737 0)
(0.577482 -0.550972 0)
(0.554594 -0.489423 0)
(0.527025 -0.416827 0)
(0.496013 -0.3382 0)
(0.462122 -0.259556 0)
(0.426499 -0.185587 0)
(0.390796 -0.120912 0)
(0.355798 -0.0717179 0)
(0.322023 -0.0415971 0)
(0.290862 -0.0309593 0)
(0.263917 -0.0375734 0)
(0.240733 -0.053044 0)
(0.219741 -0.0685534 0)
(0.201167 -0.0841175 0)
(0.185947 -0.103268 0)
(0.173442 -0.123987 0)
(0.162239 -0.140878 0)
(0.151722 -0.151287 0)
(0.142069 -0.156129 0)
(0.133585 -0.157462 0)
(0.126425 -0.156824 0)
(0.120679 -0.154865 0)
(0.116455 -0.151828 0)
(0.113815 -0.148095 0)
(0.113025 -0.143615 0)
(0.114594 -0.137795 0)
(0.119052 -0.131154 0)
(0.126082 -0.125823 0)
(0.136145 -0.123007 0)
(0.153349 -0.11666 0)
(0.173392 -0.119825 0)
(0.182541 -0.153495 0)
(0.171249 -0.21987 0)
(0.138231 -0.309526 0)
(0.0889801 -0.403548 0)
(0.0257687 -0.487346 0)
(-0.0330945 -0.551273 0)
(-0.0959198 -0.605117 0)
(-0.14199 -0.616043 0)
(-0.0634755 -0.288485 0)
(-0.00557022 -0.0205508 0)
(0.00635141 0.0846176 0)
(0.0415318 0.244176 0)
(0.0499488 0.320572 0)
(0.0547192 0.356197 0)
(0.0562709 0.371555 0)
(0.0560247 0.37439 0)
(0.0555197 0.368567 0)
(0.0568003 0.359844 0)
(0.0611333 0.357819 0)
(0.0683419 0.366462 0)
(0.0743863 0.378249 0)
(0.077262 0.385579 0)
(0.0793774 0.390607 0)
(0.0840707 0.398172 0)
(0.0892076 0.40561 0)
(0.0913022 0.408092 0)
(0.0907854 0.406414 0)
(0.0905879 0.404328 0)
(0.0930185 0.404001 0)
(0.0978313 0.404582 0)
(0.10335 0.404172 0)
(0.109242 0.402354 0)
(0.116661 0.399984 0)
(0.126522 0.397686 0)
(0.138768 0.395455 0)
(0.152927 0.39313 0)
(0.168654 0.390717 0)
(0.185815 0.38836 0)
(0.204436 0.386233 0)
(0.224657 0.384403 0)
(0.24668 0.382734 0)
(0.270726 0.38085 0)
(0.297005 0.378053 0)
(0.325642 0.373307 0)
(0.356597 0.365351 0)
(0.389623 0.352779 0)
(0.424205 0.334227 0)
(0.459607 0.308614 0)
(0.49493 0.275319 0)
(0.529263 0.234211 0)
(0.561631 0.185621 0)
(0.591265 0.130237 0)
(0.617229 0.0691542 0)
(0.63904 0.00355529 0)
(0.655971 -0.0649393 0)
(0.66577 -0.133614 0)
(0.668835 -0.200809 0)
(0.667792 -0.266361 0)
(0.663261 -0.328904 0)
(0.65308 -0.385089 0)
(0.637662 -0.434185 0)
(0.623249 -0.480473 0)
(0.615164 -0.527092 0)
(0.612043 -0.570853 0)
(0.609429 -0.605423 0)
(0.604577 -0.626367 0)
(0.596713 -0.631651 0)
(0.58548 -0.61951 0)
(0.570159 -0.588597 0)
(0.550135 -0.539502 0)
(0.525288 -0.475361 0)
(0.49631 -0.400716 0)
(0.464675 -0.320665 0)
(0.431189 -0.241032 0)
(0.396663 -0.166749 0)
(0.362603 -0.102585 0)
(0.329993 -0.0543144 0)
(0.299267 -0.0254058 0)
(0.271593 -0.0166171 0)
(0.248249 -0.0251899 0)
(0.228227 -0.0419595 0)
(0.209794 -0.058543 0)
(0.193488 -0.0756311 0)
(0.180368 -0.0963442 0)
(0.169625 -0.118026 0)
(0.159767 -0.135362 0)
(0.150271 -0.146133 0)
(0.14143 -0.151479 0)
(0.133622 -0.153446 0)
(0.127049 -0.153516 0)
(0.121822 -0.152324 0)
(0.11807 -0.150103 0)
(0.115864 -0.147261 0)
(0.115436 -0.143884 0)
(0.117274 -0.139456 0)
(0.121921 -0.134282 0)
(0.12924 -0.130309 0)
(0.138787 -0.130025 0)
(0.154556 -0.12763 0)
(0.175912 -0.129273 0)
(0.190721 -0.154614 0)
(0.187205 -0.209844 0)
(0.16216 -0.288554 0)
(0.119703 -0.374944 0)
(0.0610945 -0.455072 0)
(0.0039488 -0.516027 0)
(-0.0656881 -0.571509 0)
(-0.12032 -0.591887 0)
(-0.135142 -0.35646 0)
(-0.00281312 -0.0201508 0)
(0.000481602 0.0720027 0)
(0.0411748 0.233067 0)
(0.0510693 0.315707 0)
(0.0576881 0.354606 0)
(0.0596687 0.371205 0)
(0.0596024 0.37452 0)
(0.0591559 0.368463 0)
(0.0602105 0.35857 0)
(0.0639918 0.354768 0)
(0.0714395 0.362616 0)
(0.0787584 0.375559 0)
(0.0826097 0.384227 0)
(0.084545 0.388947 0)
(0.088792 0.395435 0)
(0.0948787 0.403249 0)
(0.0988678 0.407258 0)
(0.099806 0.406452 0)
(0.0999539 0.403815 0)
(0.102002 0.402139 0)
(0.106782 0.401721 0)
(0.113 0.400991 0)
(0.119514 0.398862 0)
(0.126721 0.39565 0)
(0.135679 0.392132 0)
(0.146912 0.388706 0)
(0.160289 0.385396 0)
(0.175464 0.382167 0)
(0.192185 0.379054 0)
(0.210378 0.376136 0)
(0.230136 0.373419 0)
(0.251649 0.370744 0)
(0.275143 0.367735 0)
(0.30082 0.363728 0)
(0.328788 0.357757 0)
(0.35899 0.348656 0)
(0.391159 0.335148 0)
(0.424788 0.315996 0)
(0.45914 0.290219 0)
(0.49334 0.257241 0)
(0.52646 0.216952 0)
(0.557573 0.169637 0)
(0.585867 0.115975 0)
(0.610302 0.0569673 0)
(0.630398 -0.00614226 0)
(0.644213 -0.0711822 0)
(0.651223 -0.136356 0)
(0.653598 -0.201153 0)
(0.652283 -0.264746 0)
(0.646068 -0.324579 0)
(0.633391 -0.377909 0)
(0.617361 -0.426448 0)
(0.60496 -0.475129 0)
(0.598887 -0.524549 0)
(0.595678 -0.569241 0)
(0.591194 -0.602999 0)
(0.583785 -0.622444 0)
(0.57322 -0.626023 0)
(0.55926 -0.611877 0)
(0.541293 -0.57858 0)
(0.51889 -0.526995 0)
(0.492236 -0.460595 0)
(0.462158 -0.384291 0)
(0.430172 -0.303295 0)
(0.397311 -0.22317 0)
(0.364249 -0.148952 0)
(0.332276 -0.085631 0)
(0.302415 -0.0386251 0)
(0.275032 -0.0112104 0)
(0.251176 -0.00435001 0)
(0.231711 -0.0147853 0)
(0.214974 -0.0325281 0)
(0.199195 -0.0499514 0)
(0.1853 -0.0684356 0)
(0.174395 -0.0905415 0)
(0.165451 -0.112956 0)
(0.156934 -0.130532 0)
(0.148451 -0.14152 0)
(0.140417 -0.147273 0)
(0.133282 -0.149808 0)
(0.127281 -0.150534 0)
(0.122545 -0.150065 0)
(0.119216 -0.148625 0)
(0.117378 -0.146629 0)
(0.117219 -0.144289 0)
(0.119198 -0.14118 0)
(0.123826 -0.137443 0)
(0.131185 -0.134691 0)
(0.140204 -0.136248 0)
(0.153819 -0.137875 0)
(0.174438 -0.140022 0)
(0.192903 -0.159044 0)
(0.196219 -0.204051 0)
(0.178833 -0.271925 0)
(0.143704 -0.350076 0)
(0.0914801 -0.425838 0)
(0.0390233 -0.485249 0)
(-0.0228837 -0.541035 0)
(-0.0692633 -0.576162 0)
(-0.0974192 -0.426933 0)
(-0.000603271 -0.0191006 0)
(-0.00376373 0.0604247 0)
(0.0399629 0.21999 0)
(0.0523029 0.309946 0)
(0.0606975 0.352483 0)
(0.0632074 0.370581 0)
(0.0634553 0.374552 0)
(0.0631714 0.368405 0)
(0.0640752 0.357528 0)
(0.0672233 0.351935 0)
(0.0743465 0.358518 0)
(0.0826607 0.372277 0)
(0.0877223 0.382606 0)
(0.0897602 0.387497 0)
(0.0932585 0.39275 0)
(0.099669 0.400254 0)
(0.105372 0.405496 0)
(0.108097 0.405886 0)
(0.1091 0.403231 0)
(0.111015 0.400446 0)
(0.115512 0.398804 0)
(0.122133 0.397484 0)
(0.129482 0.395171 0)
(0.137086 0.391541 0)
(0.145599 0.387139 0)
(0.155836 0.382583 0)
(0.168148 0.378179 0)
(0.182468 0.374003 0)
(0.198583 0.370061 0)
(0.216338 0.366342 0)
(0.235719 0.362773 0)
(0.256834 0.359145 0)
(0.279855 0.355072 0)
(0.304961 0.349918 0)
(0.33224 0.342788 0)
(0.361627 0.332615 0)
(0.392854 0.318238 0)
(0.425429 0.298544 0)
(0.458618 0.272646 0)
(0.491585 0.240019 0)
(0.523339 0.200561 0)
(0.55304 0.154533 0)
(0.579531 0.102671 0)
(0.602045 0.0458803 0)
(0.619411 -0.0142199 0)
(0.630223 -0.0758838 0)
(0.636294 -0.138536 0)
(0.638481 -0.201309 0)
(0.635855 -0.262404 0)
(0.627145 -0.319089 0)
(0.612389 -0.370158 0)
(0.596801 -0.419361 0)
(0.586516 -0.47083 0)
(0.581434 -0.522268 0)
(0.577071 -0.5669 0)
(0.570137 -0.599323 0)
(0.559902 -0.617139 0)
(0.54647 -0.619006 0)
(0.529655 -0.602898 0)
(0.509008 -0.567355 0)
(0.484335 -0.513547 0)
(0.456085 -0.445279 0)
(0.425234 -0.367736 0)
(0.393235 -0.286235 0)
(0.361229 -0.206093 0)
(0.329902 -0.132366 0)
(0.300385 -0.0702273 0)
(0.273611 -0.0247818 0)
(0.249868 0.000857255 0)
(0.230062 0.00564673 0)
(0.214622 -0.00639311 0)
(0.201231 -0.0247531 0)
(0.188155 -0.0428044 0)
(0.176787 -0.0625619 0)
(0.168171 -0.0858627 0)
(0.16102 -0.108758 0)
(0.153811 -0.126364 0)
(0.146318 -0.13743 0)
(0.139079 -0.143498 0)
(0.132604 -0.146532 0)
(0.127156 -0.147858 0)
(0.122881 -0.148062 0)
(0.11993 -0.147357 0)
(0.118395 -0.146157 0)
(0.118427 -0.144776 0)
(0.120442 -0.142887 0)
(0.124893 -0.14052 0)
(0.132046 -0.138908 0)
(0.140603 -0.141644 0)
(0.151897 -0.146771 0)
(0.170156 -0.150893 0)
(0.189982 -0.165836 0)
(0.198643 -0.201936 0)
(0.188277 -0.259431 0)
(0.160159 -0.328982 0)
(0.114 -0.399454 0)
(0.0645446 -0.458265 0)
(0.00789256 -0.515058 0)
(-0.0328496 -0.566743 0)
(-0.0303205 -0.457773 0)
(0.000943563 -0.0178266 0)
(-0.00603724 0.0503297 0)
(0.0376426 0.205471 0)
(0.0536339 0.30322 0)
(0.0636889 0.349775 0)
(0.0668774 0.369628 0)
(0.0675936 0.374434 0)
(0.0675835 0.368335 0)
(0.0684378 0.356683 0)
(0.0710396 0.349451 0)
(0.0773879 0.354437 0)
(0.0861482 0.368488 0)
(0.0924609 0.380586 0)
(0.0949763 0.386201 0)
(0.0976949 0.390335 0)
(0.103787 0.396909 0)
(0.110755 0.402859 0)
(0.115378 0.40454 0)
(0.11768 0.402351 0)
(0.119853 0.398854 0)
(0.124026 0.395963 0)
(0.130685 0.393739 0)
(0.138767 0.39111 0)
(0.147231 0.387317 0)
(0.156018 0.382454 0)
(0.165755 0.377062 0)
(0.177073 0.371629 0)
(0.19029 0.366417 0)
(0.205448 0.361512 0)
(0.222475 0.356892 0)
(0.241317 0.35243 0)
(0.261992 0.347866 0)
(0.284577 0.342785 0)
(0.30917 0.336564 0)
(0.335805 0.328367 0)
(0.364386 0.317213 0)
(0.39464 0.30205 0)
(0.426068 0.281885 0)
(0.457972 0.255916 0)
(0.489471 0.223697 0)
(0.519622 0.185113 0)
(0.547431 0.14052 0)
(0.571734 0.0905924 0)
(0.591966 0.0362807 0)
(0.606447 -0.0207461 0)
(0.616009 -0.0799007 0)
(0.622091 -0.140553 0)
(0.623043 -0.200846 0)
(0.618127 -0.258907 0)
(0.606833 -0.31252 0)
(0.590806 -0.362277 0)
(0.576375 -0.413107 0)
(0.567776 -0.467219 0)
(0.562615 -0.519715 0)
(0.556297 -0.563484 0)
(0.546552 -0.594254 0)
(0.533334 -0.610396 0)
(0.516915 -0.610572 0)
(0.497173 -0.592574 0)
(0.473871 -0.554982 0)
(0.447088 -0.499275 0)
(0.417496 -0.429572 0)
(0.386192 -0.351239 0)
(0.354533 -0.269645 0)
(0.323646 -0.189918 0)
(0.294292 -0.117117 0)
(0.267529 -0.0565112 0)
(0.244118 -0.012875 0)
(0.224233 0.0106836 0)
(0.208712 0.013282 0)
(0.197381 1.43819e-05 0)
(0.187248 -0.0186027 0)
(0.176886 -0.0371083 0)
(0.168129 -0.0580205 0)
(0.161831 -0.0822887 0)
(0.156428 -0.105394 0)
(0.150469 -0.122825 0)
(0.143928 -0.133839 0)
(0.137463 -0.140137 0)
(0.131628 -0.143603 0)
(0.126711 -0.145468 0)
(0.122865 -0.14629 0)
(0.120247 -0.146269 0)
(0.11896 -0.145807 0)
(0.119114 -0.145298 0)
(0.121081 -0.144517 0)
(0.125247 -0.143421 0)
(0.131972 -0.142911 0)
(0.140113 -0.146302 0)
(0.149341 -0.154034 0)
(0.16428 -0.160891 0)
(0.18333 -0.173839 0)
(0.1954 -0.202776 0)
(0.191066 -0.250674 0)
(0.16945 -0.311387 0)
(0.129323 -0.375563 0)
(0.0826871 -0.432265 0)
(0.0263736 -0.488801 0)
(-0.0176251 -0.55382 0)
(-0.0234693 -0.46701 0)
(0.00187574 -0.0166198 0)
(-0.00672932 0.0417667 0)
(0.0344275 0.189608 0)
(0.0549236 0.295433 0)
(0.0665896 0.34645 0)
(0.0706288 0.368298 0)
(0.0719696 0.374118 0)
(0.0723386 0.368192 0)
(0.0732439 0.355957 0)
(0.0754806 0.347356 0)
(0.0808533 0.350631 0)
(0.0893932 0.364398 0)
(0.0967171 0.3781 0)
(0.100031 0.384924 0)
(0.102209 0.388299 0)
(0.107519 0.393524 0)
(0.115142 0.399519 0)
(0.121541 0.402339 0)
(0.125466 0.400974 0)
(0.128324 0.397238 0)
(0.132309 0.393275 0)
(0.138678 0.389927 0)
(0.147091 0.386683 0)
(0.156455 0.382706 0)
(0.166096 0.377674 0)
(0.176111 0.371839 0)
(0.18702 0.365657 0)
(0.199344 0.359509 0)
(0.213419 0.353603 0)
(0.229401 0.347982 0)
(0.247347 0.342531 0)
(0.267278 0.336975 0)
(0.289213 0.330885 0)
(0.313162 0.323645 0)
(0.339077 0.314462 0)
(0.366796 0.302426 0)
(0.396001 0.286585 0)
(0.426175 0.266045 0)
(0.456623 0.240111 0)
(0.486434 0.208389 0)
(0.51475 0.170814 0)
(0.540368 0.1278 0)
(0.562669 0.0798252 0)
(0.58055 0.0281089 0)
(0.593363 -0.0264487 0)
(0.603101 -0.083784 0)
(0.608146 -0.142004 0)
(0.606616 -0.199242 0)
(0.59921 -0.254174 0)
(0.585711 -0.305177 0)
(0.569221 -0.354627 0)
(0.556215 -0.407639 0)
(0.548563 -0.463851 0)
(0.542374 -0.516459 0)
(0.533568 -0.55878 0)
(0.520823 -0.587729 0)
(0.504532 -0.602196 0)
(0.485051 -0.600714 0)
(0.462363 -0.580939 0)
(0.436499 -0.541548 0)
(0.40782 -0.484319 0)
(0.377169 -0.413636 0)
(0.345713 -0.334968 0)
(0.314705 -0.253678 0)
(0.285209 -0.174768 0)
(0.258067 -0.103309 0)
(0.234317 -0.0445638 0)
(0.214475 -0.00305737 0)
(0.198635 0.0182113 0)
(0.187582 0.0186883 0)
(0.180297 0.00450782 0)
(0.173256 -0.0140169 0)
(0.165595 -0.0328528 0)
(0.159505 -0.0548002 0)
(0.155502 -0.0797774 0)
(0.151758 -0.102811 0)
(0.146971 -0.119872 0)
(0.141335 -0.130721 0)
(0.135614 -0.137168 0)
(0.130396 -0.140999 0)
(0.125983 -0.143344 0)
(0.122535 -0.144725 0)
(0.120209 -0.145332 0)
(0.119118 -0.145544 0)
(0.119337 -0.145821 0)
(0.121188 -0.14603 0)
(0.125004 -0.146075 0)
(0.131128 -0.146641 0)
(0.138822 -0.150362 0)
(0.146458 -0.159683 0)
(0.15782 -0.169342 0)
(0.174416 -0.18196 0)
(0.187859 -0.205656 0)
(0.188195 -0.245117 0)
(0.172487 -0.297174 0)
(0.138751 -0.354616 0)
(0.0967378 -0.408034 0)
(0.0442276 -0.462985 0)
(0.00241267 -0.534981 0)
(-0.0245159 -0.476485 0)
(0.00223517 -0.0156181 0)
(-0.00626042 0.0343898 0)
(0.0313374 0.173013 0)
(0.0561589 0.286632 0)
(0.0692857 0.342414 0)
(0.0743692 0.366534 0)
(0.0764931 0.37356 0)
(0.0773239 0.367924 0)
(0.0783615 0.355269 0)
(0.0804165 0.345604 0)
(0.0848691 0.347275 0)
(0.0926274 0.360292 0)
(0.100474 0.375194 0)
(0.10471 0.383511 0)
(0.106728 0.386619 0)
(0.11108 0.390349 0)
(0.118736 0.39572 0)
(0.126599 0.399297 0)
(0.132357 0.398935 0)
(0.13637 0.395431 0)
(0.140498 0.390753 0)
(0.146438 0.386262 0)
(0.154655 0.382098 0)
(0.164486 0.377683 0)
(0.175037 0.372503 0)
(0.185881 0.36649 0)
(0.197137 0.359904 0)
(0.20922 0.353097 0)
(0.222579 0.346338 0)
(0.237571 0.339749 0)
(0.254436 0.333273 0)
(0.273309 0.326673 0)
(0.294245 0.319539 0)
(0.317232 0.311284 0)
(0.342163 0.301161 0)
(0.368809 0.288326 0)
(0.396795 0.271908 0)
(0.425583 0.251107 0)
(0.454434 0.225324 0)
(0.482528 0.19419 0)
(0.508922 0.157747 0)
(0.532649 0.116246 0)
(0.553212 0.0702508 0)
(0.569223 0.0208665 0)
(0.581923 -0.0320008 0)
(0.591171 -0.0872299 0)
(0.593364 -0.142229 0)
(0.589144 -0.196353 0)
(0.579569 -0.248391 0)
(0.56433 -0.297388 0)
(0.548006 -0.347412 0)
(0.536298 -0.40274 0)
(0.528743 -0.460293 0)
(0.520799 -0.512199 0)
(0.509204 -0.552686 0)
(0.493379 -0.579734 0)
(0.47397 -0.59254 0)
(0.451408 -0.589457 0)
(0.425831 -0.568058 0)
(0.397556 -0.527172 0)
(0.367226 -0.468832 0)
(0.335806 -0.397626 0)
(0.304473 -0.319068 0)
(0.274379 -0.238466 0)
(0.246529 -0.160758 0)
(0.221843 -0.0910195 0)
(0.201295 -0.0344668 0)
(0.1852 0.00462697 0)
(0.173614 0.0234476 0)
(0.167083 0.0219221 0)
(0.163638 0.00720194 0)
(0.159473 -0.0109185 0)
(0.154485 -0.0300132 0)
(0.151083 -0.0528669 0)
(0.149295 -0.0782646 0)
(0.147087 -0.100944 0)
(0.143376 -0.117459 0)
(0.138588 -0.128042 0)
(0.133576 -0.134569 0)
(0.128948 -0.138702 0)
(0.12501 -0.141465 0)
(0.121926 -0.143345 0)
(0.119855 -0.144519 0)
(0.118915 -0.145343 0)
(0.119154 -0.146315 0)
(0.120836 -0.1474 0)
(0.124266 -0.148441 0)
(0.12968 -0.150039 0)
(0.136819 -0.153955 0)
(0.143351 -0.163941 0)
(0.151462 -0.175932 0)
(0.164573 -0.189309 0)
(0.17754 -0.209605 0)
(0.180922 -0.242092 0)
(0.170201 -0.28609 0)
(0.14238 -0.336763 0)
(0.104926 -0.386613 0)
(0.0572395 -0.439983 0)
(0.0187496 -0.518036 0)
(-0.00354454 -0.47746 0)
(0.00204424 -0.0148655 0)
(-0.00516057 0.0279378 0)
(0.0281893 0.156454 0)
(0.0572229 0.27699 0)
(0.071637 0.337497 0)
(0.07801 0.364293 0)
(0.0810515 0.372724 0)
(0.0823905 0.367486 0)
(0.0836127 0.35456 0)
(0.0856032 0.344108 0)
(0.089345 0.344425 0)
(0.096034 0.356434 0)
(0.103821 0.372029 0)
(0.108849 0.381866 0)
(0.111048 0.385186 0)
(0.114516 0.387528 0)
(0.121683 0.391722 0)
(0.130541 0.395498 0)
(0.138196 0.396087 0)
(0.143871 0.393197 0)
(0.148724 0.388278 0)
(0.154476 0.382867 0)
(0.162201 0.377655 0)
(0.171895 0.372496 0)
(0.182892 0.366957 0)
(0.194534 0.360779 0)
(0.206543 0.353994 0)
(0.219024 0.34681 0)
(0.232303 0.339458 0)
(0.246773 0.332084 0)
(0.262786 0.324685 0)
(0.280604 0.317081 0)
(0.300381 0.308915 0)
(0.322156 0.299657 0)
(0.345827 0.288625 0)
(0.371153 0.275043 0)
(0.397727 0.258119 0)
(0.42499 0.237142 0)
(0.452203 0.211566 0)
(0.478611 0.181087 0)
(0.503203 0.145749 0)
(0.52544 0.105676 0)
(0.544322 0.0616376 0)
(0.559525 0.0139488 0)
(0.572138 -0.0372626 0)
(0.578646 -0.0893781 0)
(0.577333 -0.140966 0)
(0.57115 -0.192395 0)
(0.559655 -0.241787 0)
(0.543101 -0.289416 0)
(0.527362 -0.340684 0)
(0.516537 -0.398111 0)
(0.508276 -0.456183 0)
(0.498092 -0.506757 0)
(0.483575 -0.545174 0)
(0.464665 -0.570292 0)
(0.442154 -0.581462 0)
(0.416556 -0.576857 0)
(0.388204 -0.554029 0)
(0.357712 -0.511987 0)
(0.325982 -0.452968 0)
(0.294072 -0.381691 0)
(0.263109 -0.303661 0)
(0.234158 -0.22412 0)
(0.208189 -0.147975 0)
(0.186189 -0.0803537 0)
(0.169017 -0.0263178 0)
(0.15681 0.0102135 0)
(0.149624 0.026431 0)
(0.147557 0.0230934 0)
(0.147621 0.00829779 0)
(0.146094 -0.00920708 0)
(0.143752 -0.0285518 0)
(0.143011 -0.0521625 0)
(0.143304 -0.0776658 0)
(0.142475 -0.0997175 0)
(0.139736 -0.115534 0)
(0.135735 -0.125771 0)
(0.131392 -0.132315 0)
(0.127321 -0.13669 0)
(0.123827 -0.139811 0)
(0.121077 -0.142128 0)
(0.119226 -0.143809 0)
(0.118396 -0.145179 0)
(0.118619 -0.14676 0)
(0.120092 -0.148609 0)
(0.12312 -0.150501 0)
(0.127781 -0.153049 0)
(0.13422 -0.157166 0)
(0.140011 -0.167123 0)
(0.145538 -0.180672 0)
(0.154826 -0.195297 0)
(0.16589 -0.213745 0)
(0.170691 -0.240827 0)
(0.163838 -0.277612 0)
(0.14111 -0.32155 0)
(0.107647 -0.367187 0)
(0.062808 -0.418769 0)
(0.0248001 -0.504039 0)
(0.00405513 -0.470195 0)
(0.00133876 -0.0142587 0)
(-0.00405747 0.0225336 0)
(0.0230631 0.140371 0)
(0.0576789 0.266542 0)
(0.0735196 0.331642 0)
(0.081493 0.361578 0)
(0.0855222 0.371581 0)
(0.0873828 0.366852 0)
(0.0888093 0.353807 0)
(0.0907591 0.342784 0)
(0.0940129 0.342033 0)
(0.0996501 0.352995 0)
(0.106909 0.368818 0)
(0.112402 0.379991 0)
(0.114957 0.383881 0)
(0.117739 0.385118 0)
(0.12404 0.387779 0)
(0.133276 0.391103 0)
(0.142627 0.39233 0)
(0.150354 0.390241 0)
(0.156671 0.385547 0)
(0.162906 0.379635 0)
(0.170367 0.373508 0)
(0.179633 0.367457 0)
(0.190521 0.361303 0)
(0.202503 0.354787 0)
(0.215128 0.347793 0)
(0.228219 0.34037 0)
(0.241869 0.33264 0)
(0.256342 0.324708 0)
(0.271968 0.31658 0)
(0.289057 0.308117 0)
(0.307836 0.29902 0)
(0.328411 0.288829 0)
(0.350745 0.276938 0)
(0.374623 0.262657 0)
(0.399657 0.245276 0)
(0.425291 0.224162 0)
(0.450851 0.198812 0)
(0.475543 0.169001 0)
(0.498553 0.134662 0)
(0.519364 0.096012 0)
(0.536889 0.0536113 0)
(0.551726 0.00731756 0)
(0.562232 -0.041323 0)
(0.564463 -0.0897352 0)
(0.560671 -0.138553 0)
(0.553192 -0.187634 0)
(0.539747 -0.234514 0)
(0.52234 -0.281455 0)
(0.507371 -0.33438 0)
(0.496846 -0.393428 0)
(0.487228 -0.45126 0)
(0.474528 -0.500052 0)
(0.457078 -0.53627 0)
(0.435145 -0.559455 0)
(0.409603 -0.569023 0)
(0.38107 -0.562999 0)
(0.350107 -0.538968 0)
(0.31762 -0.496127 0)
(0.284739 -0.436866 0)
(0.252585 -0.365955 0)
(0.222213 -0.288848 0)
(0.194613 -0.210727 0)
(0.170746 -0.136528 0)
(0.151634 -0.0713982 0)
(0.138004 -0.020098 0)
(0.129814 0.0136834 0)
(0.127089 0.0272169 0)
(0.129283 0.0223854 0)
(0.132416 0.00797429 0)
(0.13328 -0.00879689 0)
(0.133571 -0.0284216 0)
(0.135417 -0.0526047 0)
(0.137599 -0.0778788 0)
(0.137972 -0.09905 0)
(0.136094 -0.114044 0)
(0.132816 -0.123871 0)
(0.129102 -0.13038 0)
(0.125553 -0.13494 0)
(0.122472 -0.13836 0)
(0.120023 -0.141055 0)
(0.118359 -0.143181 0)
(0.117605 -0.145034 0)
(0.117782 -0.147142 0)
(0.119022 -0.14965 0)
(0.121639 -0.152259 0)
(0.125561 -0.155634 0)
(0.131163 -0.160029 0)
(0.136404 -0.169539 0)
(0.140105 -0.183799 0)
(0.145813 -0.199653 0)
(0.154088 -0.217388 0)
(0.158898 -0.240589 0)
(0.154736 -0.271212 0)
(0.136392 -0.308701 0)
(0.107051 -0.349541 0)
(0.0656944 -0.398807 0)
(0.0300012 -0.487864 0)
(0.00254608 -0.463158 0)
(0.000280021 -0.0136488 0)
(-0.00335029 0.0185694 0)
(0.0152495 0.124881 0)
(0.0569101 0.254606 0)
(0.0748838 0.324827 0)
(0.0847832 0.35838 0)
(0.0897986 0.3701 0)
(0.0921717 0.366023 0)
(0.0937845 0.353026 0)
(0.0956295 0.341585 0)
(0.0985232 0.340002 0)
(0.103331 0.350017 0)
(0.109852 0.365752 0)
(0.115452 0.377968 0)
(0.118358 0.382629 0)
(0.120655 0.383124 0)
(0.12586 0.384129 0)
(0.134759 0.386389 0)
(0.145232 0.387715 0)
(0.155016 0.386328 0)
(0.163378 0.382164 0)
(0.170948 0.376209 0)
(0.178862 0.369515 0)
(0.187986 0.362672 0)
(0.198599 0.355794 0)
(0.21051 0.348758 0)
(0.223358 0.341427 0)
(0.236863 0.333745 0)
(0.250933 0.325724 0)
(0.26566 0.317392 0)
(0.281259 0.308721 0)
(0.29799 0.299581 0)
(0.316084 0.289712 0)
(0.335684 0.278714 0)
(0.356804 0.266064 0)
(0.379271 0.251159 0)
(0.402765 0.233376 0)
(0.426761 0.21215 0)
(0.450672 0.187045 0)
(0.4737 0.157847 0)
(0.495298 0.12443 0)
(0.514636 0.0871069 0)
(0.531038 0.0460465 0)
(0.544198 0.00171033 0)
(0.550433 -0.0434141 0)
(0.549062 -0.0886183 0)
(0.544323 -0.135482 0)
(0.535478 -0.182142 0)
(0.520041 -0.22669 0)
(0.5023 -0.273644 0)
(0.488039 -0.328349 0)
(0.477186 -0.388403 0)
(0.465746 -0.445362 0)
(0.450421 -0.49208 0)
(0.430116 -0.52604 0)
(0.40528 -0.547302 0)
(0.37683 -0.55531 0)
(0.345521 -0.547988 0)
(0.312156 -0.523002 0)
(0.277914 -0.47973 0)
(0.24412 -0.420653 0)
(0.211935 -0.350524 0)
(0.18235 -0.274719 0)
(0.156294 -0.198384 0)
(0.134748 -0.126518 0)
(0.118722 -0.0641671 0)
(0.108744 -0.0157896 0)
(0.10464 0.0150431 0)
(0.10636 0.0259085 0)
(0.112433 0.0200501 0)
(0.118131 0.00642522 0)
(0.121199 -0.00960561 0)
(0.124107 -0.029561 0)
(0.128399 -0.0540864 0)
(0.132232 -0.0787882 0)
(0.133618 -0.0988574 0)
(0.132489 -0.112938 0)
(0.129872 -0.122311 0)
(0.126741 -0.128738 0)
(0.123678 -0.13343 0)
(0.120976 -0.137093 0)
(0.118798 -0.140106 0)
(0.117291 -0.142618 0)
(0.116584 -0.144894 0)
(0.116692 -0.147449 0)
(0.117683 -0.150518 0)
(0.119885 -0.153727 0)
(0.12312 -0.157781 0)
(0.127793 -0.162539 0)
(0.132524 -0.17143 0)
(0.135056 -0.185659 0)
(0.1378 -0.202382 0)
(0.142951 -0.220089 0)
(0.146701 -0.240738 0)
(0.144084 -0.266366 0)
(0.129343 -0.29797 0)
(0.103818 -0.334023 0)
(0.0666873 -0.380898 0)
(0.0340551 -0.472343 0)
(0.00819685 -0.454186 0)
(-0.000801454 -0.0129133 0)
(-0.00297107 0.0162379 0)
(0.00714641 0.110125 0)
(0.0546589 0.240328 0)
(0.0758047 0.316868 0)
(0.087856 0.354617 0)
(0.0938182 0.368256 0)
(0.0966787 0.365024 0)
(0.0984136 0.35226 0)
(0.100023 0.340511 0)
(0.102551 0.338236 0)
(0.106792 0.347435 0)
(0.112647 0.362924 0)
(0.11813 0.3759 0)
(0.121308 0.381405 0)
(0.123293 0.38153 0)
(0.127331 0.380979 0)
(0.135229 0.38173 0)
(0.145933 0.382515 0)
(0.157235 0.381451 0)
(0.167709 0.377845 0)
(0.177205 0.37217 0)
(0.186386 0.365303 0)
(0.196063 0.35795 0)
(0.206759 0.350446 0)
(0.218602 0.342845 0)
(0.231458 0.335075 0)
(0.245116 0.327058 0)
(0.259433 0.318737 0)
(0.274386 0.310068 0)
(0.290073 0.300975 0)
(0.306663 0.29131 0)
(0.324332 0.280829 0)
(0.343219 0.269177 0)
(0.363339 0.255902 0)
(0.384585 0.240474 0)
(0.406681 0.222359 0)
(0.429178 0.201055 0)
(0.451545 0.176193 0)
(0.473071 0.147532 0)
(0.493218 0.115009 0)
(0.510856 0.078927 0)
(0.525348 0.0394669 0)
(0.534843 -0.00199794 0)
(0.536698 -0.0436531 0)
(0.533807 -0.0867917 0)
(0.528754 -0.131965 0)
(0.517952 -0.175849 0)
(0.500767 -0.218478 0)
(0.483162 -0.266065 0)
(0.469333 -0.322391 0)
(0.457582 -0.382804 0)
(0.444032 -0.438412 0)
(0.426097 -0.48289 0)
(0.403081 -0.514579 0)
(0.375514 -0.533934 0)
(0.34434 -0.540431 0)
(0.310467 -0.531953 0)
(0.274941 -0.50627 0)
(0.239192 -0.462928 0)
(0.20471 -0.404442 0)
(0.172688 -0.335487 0)
(0.144068 -0.261362 0)
(0.119751 -0.187186 0)
(0.100729 -0.117995 0)
(0.08793 -0.0586748 0)
(0.0816603 -0.0134663 0)
(0.0816831 0.0143144 0)
(0.0877159 0.0226914 0)
(0.0971027 0.0163693 0)
(0.104845 0.00384659 0)
(0.109996 -0.0115674 0)
(0.115496 -0.0318933 0)
(0.122024 -0.0564777 0)
(0.127233 -0.0802702 0)
(0.129438 -0.0990575 0)
(0.128955 -0.112165 0)
(0.126937 -0.121056 0)
(0.124343 -0.127363 0)
(0.121729 -0.132137 0)
(0.119372 -0.135989 0)
(0.117433 -0.139266 0)
(0.116058 -0.142106 0)
(0.11537 -0.144745 0)
(0.115391 -0.147676 0)
(0.116129 -0.151214 0)
(0.117912 -0.154927 0)
(0.120529 -0.159502 0)
(0.124243 -0.164674 0)
(0.128409 -0.172956 0)
(0.130242 -0.186608 0)
(0.130783 -0.203682 0)
(0.132927 -0.22164 0)
(0.134944 -0.240786 0)
(0.132885 -0.262573 0)
(0.120888 -0.288957 0)
(0.0985279 -0.320341 0)
(0.0647819 -0.364875 0)
(0.0342976 -0.45912 0)
(0.0110851 -0.443186 0)
(-0.00158713 -0.0120282 0)
(-0.00264394 0.0151569 0)
(0.00194894 0.0965176 0)
(0.051424 0.223471 0)
(0.0764404 0.307596 0)
(0.0906979 0.350182 0)
(0.0975691 0.366031 0)
(0.100881 0.363908 0)
(0.102627 0.351571 0)
(0.103826 0.339609 0)
(0.105866 0.33669 0)
(0.1097 0.345134 0)
(0.11514 0.36031 0)
(0.120513 0.373838 0)
(0.123946 0.380188 0)
(0.125819 0.38028 0)
(0.128826 0.378451 0)
(0.135319 0.377504 0)
(0.145333 0.377182 0)
(0.157206 0.375896 0)
(0.169252 0.372601 0)
(0.180691 0.367278 0)
(0.191608 0.360511 0)
(0.202511 0.352953 0)
(0.213907 0.345046 0)
(0.226083 0.336981 0)
(0.239103 0.328782 0)
(0.252895 0.320399 0)
(0.267365 0.311758 0)
(0.282468 0.302769 0)
(0.298237 0.293317 0)
(0.314763 0.28323 0)
(0.332167 0.272265 0)
(0.350541 0.260098 0)
(0.369896 0.246324 0)
(0.390167 0.23048 0)
(0.411065 0.21211 0)
(0.432259 0.190768 0)
(0.453163 0.166154 0)
(0.473144 0.138035 0)
(0.491387 0.106501 0)
(0.506593 0.0718663 0)
(0.517868 0.0346204 0)
(0.523136 -0.00369599 0)
(0.522509 -0.0429023 0)
(0.519725 -0.0847964 0)
(0.513809 -0.127846 0)
(0.500576 -0.168727 0)
(0.482204 -0.210084 0)
(0.465025 -0.258718 0)
(0.451218 -0.316292 0)
(0.438115 -0.376474 0)
(0.42232 -0.430403 0)
(0.401874 -0.472567 0)
(0.376343 -0.502003 0)
(0.346269 -0.519479 0)
(0.312611 -0.524522 0)
(0.276432 -0.515035 0)
(0.239011 -0.488915 0)
(0.202004 -0.445848 0)
(0.167052 -0.388332 0)
(0.135381 -0.320932 0)
(0.107902 -0.24886 0)
(0.0855149 -0.177206 0)
(0.069189 -0.111009 0)
(0.0596666 -0.0549165 0)
(0.0571365 -0.0130163 0)
(0.0612991 0.0116029 0)
(0.0713118 0.0178335 0)
(0.0832866 0.0116386 0)
(0.0926178 0.000356219 0)
(0.0998206 -0.014631 0)
(0.107845 -0.0353172 0)
(0.116324 -0.0596282 0)
(0.12261 -0.0821993 0)
(0.125453 -0.0995729 0)
(0.125519 -0.11168 0)
(0.12404 -0.120074 0)
(0.121939 -0.126229 0)
(0.119733 -0.13104 0)
(0.117687 -0.135031 0)
(0.115959 -0.138518 0)
(0.114689 -0.141631 0)
(0.114001 -0.144577 0)
(0.113917 -0.14782 0)
(0.114406 -0.151739 0)
(0.115768 -0.155879 0)
(0.117839 -0.160827 0)
(0.120626 -0.166413 0)
(0.124132 -0.174199 0)
(0.125539 -0.186949 0)
(0.124605 -0.203845 0)
(0.124163 -0.222032 0)
(0.12415 -0.240412 0)
(0.121904 -0.259398 0)
(0.111857 -0.281285 0)
(0.0921803 -0.308084 0)
(0.061332 -0.350432 0)
(0.0337181 -0.446408 0)
(0.00996478 -0.432842 0)
(-0.0019444 -0.0110757 0)
(-0.0022245 0.0145418 0)
(0.00065216 0.0842977 0)
(0.0478054 0.204875 0)
(0.0769975 0.297263 0)
(0.0932899 0.345037 0)
(0.10107 0.363445 0)
(0.104805 0.362738 0)
(0.106417 0.351026 0)
(0.107013 0.338958 0)
(0.108363 0.335382 0)
(0.111777 0.343018 0)
(0.117056 0.357808 0)
(0.12253 0.371742 0)
(0.12636 0.378911 0)
(0.128422 0.379251 0)
(0.13078 0.376522 0)
(0.135887 0.373949 0)
(0.144627 0.372171 0)
(0.156118 0.370131 0)
(0.168847 0.366727 0)
(0.181708 0.361588 0)
(0.1943 0.354983 0)
(0.206736 0.347414 0)
(0.219321 0.339318 0)
(0.232323 0.330958 0)
(0.245885 0.322431 0)
(0.260039 0.313731 0)
(0.274768 0.304792 0)
(0.290056 0.29551 0)
(0.305924 0.285744 0)
(0.322429 0.275307 0)
(0.339647 0.263954 0)
(0.357621 0.251382 0)
(0.376373 0.237215 0)
(0.395777 0.221065 0)
(0.415574 0.202523 0)
(0.435439 0.181227 0)
(0.454661 0.15695 0)
(0.472643 0.129542 0)
(0.488214 0.099267 0)
(0.500247 0.0664285 0)
(0.508 0.031638 0)
(0.51042 -0.00416059 0)
(0.509443 -0.0419929 0)
(0.506911 -0.0826158 0)
(0.499101 -0.122851 0)
(0.483487 -0.160897 0)
(0.464615 -0.201712 0)
(0.447918 -0.251533 0)
(0.433686 -0.30986 0)
(0.418915 -0.369323 0)
(0.40085 -0.421375 0)
(0.378049 -0.461221 0)
(0.350236 -0.488449 0)
(0.317928 -0.504082 0)
(0.28208 -0.507734 0)
(0.243895 -0.497385 0)
(0.204874 -0.471078 0)
(0.166868 -0.428612 0)
(0.131665 -0.372425 0)
(0.100532 -0.306945 0)
(0.0743748 -0.237292 0)
(0.0540872 -0.168503 0)
(0.040572 -0.105571 0)
(0.0343449 -0.0528536 0)
(0.0355159 -0.0143486 0)
(0.0437043 0.00706497 0)
(0.0571443 0.0116827 0)
(0.0709005 0.00616328 0)
(0.0815153 -0.00390053 0)
(0.0908149 -0.0187462 0)
(0.101216 -0.0397049 0)
(0.111296 -0.0633741 0)
(0.11836 -0.0844543 0)
(0.121674 -0.100334 0)
(0.122204 -0.111443 0)
(0.121208 -0.119335 0)
(0.119554 -0.125311 0)
(0.117717 -0.130117 0)
(0.115949 -0.1342 0)
(0.114403 -0.137847 0)
(0.113214 -0.141181 0)
(0.112507 -0.144384 0)
(0.112307 -0.14788 0)
(0.112556 -0.1521 0)
(0.113497 -0.156602 0)
(0.115084 -0.161799 0)
(0.117022 -0.167751 0)
(0.119783 -0.17519 0)
(0.120877 -0.186906 0)
(0.119057 -0.203181 0)
(0.116597 -0.221391 0)
(0.114564 -0.239455 0)
(0.111634 -0.256513 0)
(0.102865 -0.274635 0)
(0.0853561 -0.297134 0)
(0.057513 -0.337642 0)
(0.0329468 -0.434734 0)
(0.010817 -0.422596 0)
(-0.00193699 -0.0101338 0)
(-0.00184861 0.0137549 0)
(0.00198115 0.0735327 0)
(0.0433722 0.186207 0)
(0.0772707 0.286193 0)
(0.095509 0.339136 0)
(0.104342 0.360549 0)
(0.108499 0.361574 0)
(0.10983 0.350695 0)
(0.109639 0.338655 0)
(0.110058 0.334385 0)
(0.112867 0.341055 0)
(0.118088 0.355299 0)
(0.123937 0.369498 0)
(0.128451 0.377437 0)
(0.131124 0.378234 0)
(0.133419 0.375 0)
(0.137592 0.371066 0)
(0.145018 0.367746 0)
(0.155557 0.364582 0)
(0.168148 0.360637 0)
(0.181681 0.355375 0)
(0.195474 0.348809 0)
(0.209298 0.341261 0)
(0.223193 0.333097 0)
(0.237287 0.324585 0)
(0.251688 0.315857 0)
(0.266454 0.306936 0)
(0.281611 0.297769 0)
(0.297176 0.288251 0)
(0.313178 0.278232 0)
(0.329666 0.267516 0)
(0.346679 0.255865 0)
(0.364244 0.242982 0)
(0.382334 0.228541 0)
(0.400747 0.212211 0)
(0.419296 0.193622 0)
(0.43746 0.172546 0)
(0.454573 0.148797 0)
(0.470014 0.122366 0)
(0.482505 0.0935907 0)
(0.491612 0.0625902 0)
(0.497001 0.0298771 0)
(0.498514 -0.0043023 0)
(0.49806 -0.0411798 0)
(0.49482 -0.0798858 0)
(0.48441 -0.116858 0)
(0.466969 -0.152614 0)
(0.448182 -0.193503 0)
(0.431824 -0.244388 0)
(0.416766 -0.302944 0)
(0.400137 -0.361319 0)
(0.379852 -0.4114 0)
(0.354886 -0.448979 0)
(0.325054 -0.474068 0)
(0.290823 -0.487908 0)
(0.253127 -0.490237 0)
(0.213285 -0.479171 0)
(0.172992 -0.45291 0)
(0.134263 -0.411342 0)
(0.099035 -0.356821 0)
(0.0686316 -0.293609 0)
(0.0439724 -0.226732 0)
(0.0259075 -0.161115 0)
(0.0152349 -0.101677 0)
(0.012249 -0.0524532 0)
(0.0170613 -0.0174505 0)
(0.0290292 0.000916793 0)
(0.0450599 0.00463147 0)
(0.0598557 0.000146454 0)
(0.0716175 -0.00887394 0)
(0.0830781 -0.02386 0)
(0.0956288 -0.044899 0)
(0.106911 -0.0675447 0)
(0.114467 -0.086924 0)
(0.11811 -0.101282 0)
(0.11903 -0.111415 0)
(0.118464 -0.118811 0)
(0.117212 -0.124584 0)
(0.115705 -0.129347 0)
(0.11418 -0.133478 0)
(0.112788 -0.137241 0)
(0.11166 -0.140747 0)
(0.110919 -0.144158 0)
(0.110589 -0.147857 0)
(0.11061 -0.152305 0)
(0.11114 -0.157111 0)
(0.112287 -0.162465 0)
(0.113481 -0.168697 0)
(0.115451 -0.175932 0)
(0.11624 -0.186623 0)
(0.113952 -0.201967 0)
(0.11005 -0.219914 0)
(0.106219 -0.237876 0)
(0.102334 -0.253682 0)
(0.0943027 -0.26871 0)
(0.0783937 -0.287346 0)
(0.0532716 -0.326352 0)
(0.0311121 -0.424659 0)
(0.0112153 -0.41233 0)
(-0.00172127 -0.00925868 0)
(-0.00167362 0.0125351 0)
(0.00396361 0.0643866 0)
(0.0370244 0.168472 0)
(0.0765211 0.274144 0)
(0.0971324 0.332355 0)
(0.107385 0.357363 0)
(0.112 0.360443 0)
(0.112953 0.350635 0)
(0.111833 0.338797 0)
(0.111078 0.333811 0)
(0.112972 0.339299 0)
(0.117998 0.352724 0)
(0.124381 0.366972 0)
(0.129883 0.375588 0)
(0.133619 0.376967 0)
(0.136508 0.373571 0)
(0.140445 0.368633 0)
(0.146963 0.363905 0)
(0.156477 0.359468 0)
(0.168442 0.354671 0)
(0.181975 0.348971 0)
(0.196333 0.34223 0)
(0.211074 0.334615 0)
(0.226011 0.326399 0)
(0.241099 0.317811 0)
(0.256347 0.30898 0)
(0.271774 0.299937 0)
(0.2874 0.290634 0)
(0.303247 0.280964 0)
(0.319346 0.270774 0)
(0.33573 0.25987 0)
(0.352418 0.248017 0)
(0.369414 0.234943 0)
(0.386596 0.220378 0)
(0.403804 0.204007 0)
(0.420791 0.185566 0)
(0.436901 0.164918 0)
(0.45177 0.141877 0)
(0.464637 0.116598 0)
(0.474645 0.0892518 0)
(0.482135 0.0597279 0)
(0.486687 0.0285205 0)
(0.488323 -0.00454586 0)
(0.487935 -0.0401947 0)
(0.482866 -0.0762484 0)
(0.469809 -0.109969 0)
(0.45133 -0.144168 0)
(0.432996 -0.185515 0)
(0.416722 -0.237149 0)
(0.400524 -0.295442 0)
(0.381943 -0.352469 0)
(0.359535 -0.400565 0)
(0.332612 -0.435971 0)
(0.301043 -0.459017 0)
(0.265227 -0.471134 0)
(0.226067 -0.472218 0)
(0.184958 -0.460572 0)
(0.143758 -0.434566 0)
(0.104611 -0.394164 0)
(0.0695948 -0.341617 0)
(0.0401089 -0.281001 0)
(0.0170944 -0.217263 0)
(0.00130396 -0.155155 0)
(-0.00655853 -0.0992457 0)
(-0.00638973 -0.0536018 0)
(0.00191501 -0.0220229 0)
(0.017193 -0.00641521 0)
(0.0347877 -0.00295123 0)
(0.050063 -0.00617825 0)
(0.0630558 -0.0145814 0)
(0.0766943 -0.0298879 0)
(0.0910487 -0.0507137 0)
(0.103113 -0.0719736 0)
(0.110909 -0.0895123 0)
(0.114765 -0.102365 0)
(0.116012 -0.111566 0)
(0.115828 -0.118474 0)
(0.114933 -0.124024 0)
(0.113716 -0.12871 0)
(0.112402 -0.13285 0)
(0.111137 -0.136685 0)
(0.110049 -0.140321 0)
(0.10926 -0.143895 0)
(0.108793 -0.147753 0)
(0.108598 -0.152365 0)
(0.108732 -0.157423 0)
(0.109468 -0.16287 0)
(0.110031 -0.169282 0)
(0.111212 -0.176416 0)
(0.111649 -0.186182 0)
(0.109149 -0.200419 0)
(0.104309 -0.217818 0)
(0.0990138 -0.235723 0)
(0.0940902 -0.250763 0)
(0.0863972 -0.263272 0)
(0.0716484 -0.278467 0)
(0.0487533 -0.316345 0)
(0.0290619 -0.415546 0)
(0.010227 -0.402881 0)
(-0.00144547 -0.00846492 0)
(-0.00165921 0.0109701 0)
(0.00536167 0.0570434 0)
(0.0292086 0.151863 0)
(0.0743026 0.260369 0)
(0.0980633 0.324502 0)
(0.110183 0.353812 0)
(0.115337 0.359308 0)
(0.115903 0.350882 0)
(0.113777 0.33946 0)
(0.111637 0.333782 0)
(0.11225 0.337881 0)
(0.116717 0.350132 0)
(0.123522 0.364102 0)
(0.130151 0.373214 0)
(0.135274 0.37521 0)
(0.139277 0.371912 0)
(0.14362 0.366334 0)
(0.149776 0.360465 0)
(0.158483 0.354806 0)
(0.169652 0.349016 0)
(0.182722 0.342654 0)
(0.197048 0.335531 0)
(0.21212 0.327717 0)
(0.227608 0.319395 0)
(0.243323 0.310743 0)
(0.259165 0.301861 0)
(0.275083 0.292769 0)
(0.291054 0.283412 0)
(0.307075 0.273679 0)
(0.323159 0.263413 0)
(0.33931 0.252425 0)
(0.355535 0.240487 0)
(0.37178 0.227369 0)
(0.387914 0.21282 0)
(0.403845 0.196563 0)
(0.419147 0.178463 0)
(0.433419 0.158341 0)
(0.446503 0.136071 0)
(0.457506 0.111884 0)
(0.466406 0.0855979 0)
(0.473602 0.0571523 0)
(0.477999 0.0271735 0)
(0.479613 -0.0047603 0)
(0.478309 -0.0386131 0)
(0.470775 -0.0715742 0)
(0.455565 -0.102456 0)
(0.436813 -0.135805 0)
(0.419071 -0.177731 0)
(0.402598 -0.229695 0)
(0.385045 -0.287296 0)
(0.364494 -0.342807 0)
(0.340081 -0.388967 0)
(0.311415 -0.422332 0)
(0.278394 -0.443458 0)
(0.241346 -0.453943 0)
(0.20113 -0.453874 0)
(0.159179 -0.441778 0)
(0.117471 -0.416215 0)
(0.0782445 -0.377214 0)
(0.0436839 -0.326907 0)
(0.01527 -0.269221 0)
(-0.00603021 -0.208909 0)
(-0.0194699 -0.150456 0)
(-0.0245854 -0.0981514 0)
(-0.0213606 -0.0562823 0)
(-0.0098977 -0.0280597 0)
(0.00778556 -0.0144246 0)
(0.0260248 -0.0106763 0)
(0.0415211 -0.0127571 0)
(0.0559254 -0.0210408 0)
(0.0716837 -0.0367147 0)
(0.0873973 -0.0569463 0)
(0.0998354 -0.0765081 0)
(0.107663 -0.0921409 0)
(0.111642 -0.103546 0)
(0.113164 -0.111866 0)
(0.113316 -0.1183 0)
(0.112733 -0.123609 0)
(0.111769 -0.128186 0)
(0.110632 -0.132299 0)
(0.10947 -0.136169 0)
(0.108401 -0.139894 0)
(0.107554 -0.143592 0)
(0.106942 -0.147568 0)
(0.106541 -0.152289 0)
(0.106302 -0.157548 0)
(0.106646 -0.16305 0)
(0.10668 -0.169543 0)
(0.107118 -0.17664 0)
(0.107141 -0.18562 0)
(0.104565 -0.198687 0)
(0.0991788 -0.215301 0)
(0.092782 -0.233095 0)
(0.0868721 -0.247686 0)
(0.0792533 -0.258154 0)
(0.0653216 -0.270325 0)
(0.0444267 -0.30752 0)
(0.0271525 -0.407365 0)
(0.00978262 -0.394106 0)
(-0.00119682 -0.00775452 0)
(-0.00161415 0.00927983 0)
(0.00599245 0.0513475 0)
(0.0224149 0.136487 0)
(0.0708052 0.244278 0)
(0.0984322 0.315457 0)
(0.112728 0.349757 0)
(0.11854 0.358101 0)
(0.118812 0.351436 0)
(0.115686 0.340688 0)
(0.112027 0.33441 0)
(0.111004 0.33698 0)
(0.114395 0.347686 0)
(0.121187 0.360953 0)
(0.128764 0.370284 0)
(0.135298 0.37284 0)
(0.140613 0.369817 0)
(0.145709 0.363925 0)
(0.151874 0.35723 0)
(0.16001 0.350525 0)
(0.170373 0.343749 0)
(0.182726 0.336615 0)
(0.196604 0.328963 0)
(0.211531 0.320819 0)
(0.227117 0.31231 0)
(0.24308 0.30356 0)
(0.259223 0.294637 0)
(0.275421 0.285534 0)
(0.291591 0.276182 0)
(0.307691 0.266458 0)
(0.323693 0.256205 0)
(0.339583 0.245231 0)
(0.355337 0.233329 0)
(0.370874 0.220287 0)
(0.386151 0.205854 0)
(0.401001 0.18985 0)
(0.415029 0.172156 0)
(0.428271 0.152514 0)
(0.440338 0.130975 0)
(0.450557 0.107626 0)
(0.459551 0.0820413 0)
(0.466791 0.054607 0)
(0.470704 0.0259426 0)
(0.471621 -0.00458994 0)
(0.46863 -0.036155 0)
(0.458599 -0.0659703 0)
(0.441996 -0.0946406 0)
(0.42356 -0.127685 0)
(0.406382 -0.170094 0)
(0.389459 -0.221931 0)
(0.370429 -0.278487 0)
(0.347936 -0.332385 0)
(0.321646 -0.376702 0)
(0.291444 -0.40819 0)
(0.25725 -0.427545 0)
(0.219318 -0.436519 0)
(0.178455 -0.435404 0)
(0.136103 -0.422987 0)
(0.0943058 -0.398034 0)
(0.0553612 -0.360627 0)
(0.0214931 -0.312795 0)
(-0.00570932 -0.258333 0)
(-0.0252001 -0.201528 0)
(-0.0363329 -0.146799 0)
(-0.0388685 -0.098373 0)
(-0.0327178 -0.0603095 0)
(-0.0184773 -0.0352584 0)
(0.000396919 -0.0226963 0)
(0.0184744 -0.0182827 0)
(0.0342732 -0.0196711 0)
(0.050362 -0.028265 0)
(0.0680058 -0.0441725 0)
(0.0845609 -0.0633868 0)
(0.097006 -0.0810172 0)
(0.104704 -0.0947505 0)
(0.108744 -0.104794 0)
(0.110497 -0.112292 0)
(0.110939 -0.118265 0)
(0.110627 -0.123317 0)
(0.109877 -0.127758 0)
(0.108888 -0.131812 0)
(0.107802 -0.135682 0)
(0.106736 -0.139459 0)
(0.105819 -0.143244 0)
(0.105057 -0.147306 0)
(0.104457 -0.152088 0)
(0.103872 -0.157501 0)
(0.103838 -0.163036 0)
(0.10343 -0.169527 0)
(0.103199 -0.176608 0)
(0.102762 -0.184951 0)
(0.100157 -0.19687 0)
(0.0945066 -0.212527 0)
(0.087347 -0.230107 0)
(0.0805831 -0.244433 0)
(0.0728845 -0.253236 0)
(0.0594832 -0.262817 0)
(0.0404432 -0.299729 0)
(0.0251134 -0.400184 0)
(0.00932236 -0.385896 0)
(-0.00100656 -0.00715182 0)
(-0.00135947 0.00763678 0)
(0.00617596 0.0466729 0)
(0.0188214 0.122582 0)
(0.0661243 0.226365 0)
(0.0982937 0.305289 0)
(0.11496 0.34506 0)
(0.121628 0.356751 0)
(0.121795 0.35226 0)
(0.11778 0.342471 0)
(0.112588 0.335773 0)
(0.109656 0.336781 0)
(0.111405 0.345637 0)
(0.117502 0.357742 0)
(0.125479 0.36693 0)
(0.133061 0.36991 0)
(0.139498 0.367263 0)
(0.145315 0.361321 0)
(0.151589 0.354101 0)
(0.159289 0.346564 0)
(0.168929 0.338883 0)
(0.180547 0.330942 0)
(0.193871 0.322663 0)
(0.208497 0.314082 0)
(0.22402 0.305296 0)
(0.240091 0.296393 0)
(0.256439 0.287406 0)
(0.272865 0.2783 0)
(0.289231 0.268985 0)
(0.305448 0.259324 0)
(0.321456 0.249148 0)
(0.337223 0.238267 0)
(0.352704 0.226483 0)
(0.367863 0.213575 0)
(0.38268 0.199331 0)
(0.396895 0.183636 0)
(0.410452 0.166264 0)
(0.423432 0.147037 0)
(0.435069 0.126153 0)
(0.445331 0.103372 0)
(0.454647 0.0784483 0)
(0.461244 0.0522977 0)
(0.464004 0.0251304 0)
(0.46371 -0.00376398 0)
(0.458718 -0.0327702 0)
(0.446582 -0.0596902 0)
(0.429368 -0.0868172 0)
(0.411621 -0.11989 0)
(0.394885 -0.162533 0)
(0.377326 -0.213797 0)
(0.356775 -0.269023 0)
(0.332402 -0.321261 0)
(0.304358 -0.36386 0)
(0.27281 -0.393662 0)
(0.237705 -0.411425 0)
(0.199218 -0.419033 0)
(0.1581 -0.417001 0)
(0.115774 -0.404395 0)
(0.0743035 -0.380195 0)
(0.0359995 -0.34452 0)
(0.00305669 -0.299388 0)
(-0.0227797 -0.248276 0)
(-0.0404116 -0.19508 0)
(-0.0493535 -0.144238 0)
(-0.0493879 -0.0997915 0)
(-0.0405307 -0.0654522 0)
(-0.0243768 -0.0430145 0)
(-0.00551984 -0.0308713 0)
(0.0120163 -0.0257804 0)
(0.0284624 -0.0269964 0)
(0.0464119 -0.0362053 0)
(0.0655389 -0.0520458 0)
(0.0824029 -0.0698364 0)
(0.0945548 -0.0853981 0)
(0.102015 -0.0973003 0)
(0.106072 -0.106085 0)
(0.108018 -0.112822 0)
(0.108709 -0.118346 0)
(0.108626 -0.123129 0)
(0.108054 -0.127407 0)
(0.107182 -0.131374 0)
(0.10615 -0.135214 0)
(0.105069 -0.139012 0)
(0.104072 -0.14285 0)
(0.103156 -0.146969 0)
(0.102364 -0.151775 0)
(0.101461 -0.157295 0)
(0.10106 -0.162851 0)
(0.100276 -0.169276 0)
(0.0994669 -0.176334 0)
(0.0985449 -0.184176 0)
(0.0959137 -0.195026 0)
(0.0901836 -0.209621 0)
(0.0825519 -0.226875 0)
(0.075102 -0.241021 0)
(0.0672503 -0.248441 0)
(0.0541847 -0.255844 0)
(0.0367677 -0.292821 0)
(0.0231521 -0.393729 0)
(0.00845442 -0.378443 0)
(-0.000864419 -0.00669321 0)
(-0.00087548 0.00610536 0)
(0.00617014 0.042323 0)
(0.0184297 0.110396 0)
(0.0599862 0.208112 0)
(0.0973002 0.293981 0)
(0.116725 0.339564 0)
(0.124596 0.355179 0)
(0.124935 0.353264 0)
(0.120255 0.344744 0)
(0.113664 0.337894 0)
(0.108707 0.337442 0)
(0.108325 0.344257 0)
(0.112957 0.354798 0)
(0.12051 0.363444 0)
(0.128449 0.366645 0)
(0.1355 0.364398 0)
(0.141756 0.358585 0)
(0.148088 0.351063 0)
(0.1555 0.342868 0)
(0.164684 0.334353 0)
(0.17588 0.325585 0)
(0.188952 0.316602 0)
(0.203546 0.307489 0)
(0.219232 0.298345 0)
(0.235603 0.289234 0)
(0.252317 0.280157 0)
(0.269116 0.271047 0)
(0.285818 0.261789 0)
(0.302301 0.252224 0)
(0.318493 0.242169 0)
(0.334351 0.231428 0)
(0.349843 0.219796 0)
(0.364978 0.20705 0)
(0.379654 0.193039 0)
(0.393727 0.177603 0)
(0.40739 0.160467 0)
(0.420265 0.141695 0)
(0.431664 0.121381 0)
(0.44212 0.0990719 0)
(0.450977 0.0751196 0)
(0.455964 0.0505774 0)
(0.457248 0.0249337 0)
(0.455603 -0.00220574 0)
(0.44866 -0.0285798 0)
(0.435009 -0.05303 0)
(0.417856 -0.079207 0)
(0.40098 -0.112439 0)
(0.384535 -0.154979 0)
(0.366226 -0.205268 0)
(0.344172 -0.258933 0)
(0.318004 -0.309494 0)
(0.288321 -0.350524 0)
(0.255591 -0.378855 0)
(0.219812 -0.395227 0)
(0.181071 -0.401639 0)
(0.140052 -0.398836 0)
(0.0981443 -0.386179 0)
(0.057394 -0.362851 0)
(0.020048 -0.329002 0)
(-0.0117186 -0.286767 0)
(-0.0360401 -0.239016 0)
(-0.0518139 -0.189603 0)
(-0.0586276 -0.142734 0)
(-0.0562637 -0.102283 0)
(-0.0452214 -0.0714771 0)
(-0.0284096 -0.0509138 0)
(-0.0103823 -0.0387336 0)
(0.00668425 -0.0332347 0)
(0.0242796 -0.0348887 0)
(0.0440565 -0.0447549 0)
(0.064106 -0.0600968 0)
(0.080783 -0.0761236 0)
(0.0924213 -0.0895786 0)
(0.0995802 -0.0997652 0)
(0.103626 -0.107405 0)
(0.105733 -0.113436 0)
(0.106631 -0.118523 0)
(0.106738 -0.123024 0)
(0.10631 -0.127119 0)
(0.105526 -0.130973 0)
(0.104525 -0.134756 0)
(0.103413 -0.138546 0)
(0.102327 -0.142408 0)
(0.101254 -0.146558 0)
(0.100274 -0.151357 0)
(0.0990812 -0.156942 0)
(0.0983274 -0.162515 0)
(0.0972146 -0.16883 0)
(0.095919 -0.175843 0)
(0.0945154 -0.183296 0)
(0.0918362 -0.193183 0)
(0.0861376 -0.206673 0)
(0.0782674 -0.223497 0)
(0.0703054 -0.237485 0)
(0.0622871 -0.243727 0)
(0.0494408 -0.249318 0)
(0.0334642 -0.286687 0)
(0.0213803 -0.387914 0)
(0.00776979 -0.371657 0)
(-0.000749469 -0.00640214 0)
(-0.000250124 0.00466382 0)
(0.00609713 0.0379353 0)
(0.0195606 0.099993 0)
(0.0526533 0.190734 0)
(0.0949499 0.281185 0)
(0.117865 0.33306 0)
(0.127435 0.353262 0)
(0.128273 0.354307 0)
(0.123257 0.347386 0)
(0.115554 0.340715 0)
(0.108673 0.339039 0)
(0.105874 0.343787 0)
(0.10837 0.352477 0)
(0.114619 0.360203 0)
(0.122092 0.363369 0)
(0.129147 0.361446 0)
(0.135532 0.355819 0)
(0.141956 0.348093 0)
(0.149423 0.339308 0)
(0.158711 0.329968 0)
(0.170147 0.320326 0)
(0.183631 0.310566 0)
(0.198785 0.300851 0)
(0.21512 0.2913 0)
(0.23216 0.281958 0)
(0.249508 0.27279 0)
(0.266865 0.263695 0)
(0.284029 0.254522 0)
(0.300874 0.245086 0)
(0.317335 0.235186 0)
(0.333376 0.224614 0)
(0.348994 0.21315 0)
(0.36417 0.200603 0)
(0.378781 0.186829 0)
(0.392912 0.171584 0)
(0.406548 0.154744 0)
(0.418922 0.136518 0)
(0.429975 0.116697 0)
(0.440058 0.0950244 0)
(0.447295 0.0724865 0)
(0.4502 0.0496275 0)
(0.450222 0.0253418 0)
(0.447318 3.36444e-05 0)
(0.438654 -0.0237752 0)
(0.424125 -0.0462623 0)
(0.407541 -0.071955 0)
(0.391581 -0.105314 0)
(0.375282 -0.147386 0)
(0.356179 -0.196346 0)
(0.332696 -0.248263 0)
(0.304838 -0.297146 0)
(0.273618 -0.336763 0)
(0.239839 -0.363857 0)
(0.203588 -0.379065 0)
(0.164862 -0.384469 0)
(0.124255 -0.381059 0)
(0.0831085 -0.368487 0)
(0.0434323 -0.346124 0)
(0.00731254 -0.314248 0)
(-0.0230302 -0.274921 0)
(-0.0456721 -0.230603 0)
(-0.0596003 -0.185075 0)
(-0.0643299 -0.142249 0)
(-0.0598373 -0.105705 0)
(-0.0475911 -0.0777917 0)
(-0.0312749 -0.0584717 0)
(-0.0143883 -0.0462263 0)
(0.00268356 -0.0408139 0)
(0.0218485 -0.0433821 0)
(0.0431589 -0.0537141 0)
(0.0634916 -0.0680834 0)
(0.079571 -0.0821151 0)
(0.0905572 -0.0935157 0)
(0.0973884 -0.102133 0)
(0.101408 -0.108739 0)
(0.103644 -0.114117 0)
(0.104712 -0.118777 0)
(0.10497 -0.122985 0)
(0.104653 -0.126878 0)
(0.10393 -0.130597 0)
(0.102939 -0.134299 0)
(0.10178 -0.138056 0)
(0.100595 -0.141917 0)
(0.0993644 -0.146076 0)
(0.0981971 -0.150845 0)
(0.096741 -0.156456 0)
(0.0956503 -0.162042 0)
(0.0942435 -0.168225 0)
(0.0925462 -0.175159 0)
(0.0906855 -0.182312 0)
(0.0879317 -0.191354 0)
(0.0823237 -0.203742 0)
(0.0743932 -0.220058 0)
(0.0660812 -0.233867 0)
(0.0579229 -0.239079 0)
(0.0452242 -0.243188 0)
(0.0305784 -0.281217 0)
(0.0197026 -0.382698 0)
(0.00713235 -0.36545 0)
(-0.000643201 -0.00627718 0)
(0.00040359 0.00327798 0)
(0.00605444 0.0335081 0)
(0.0205877 0.0912182 0)
(0.0455794 0.174753 0)
(0.0909501 0.266554 0)
(0.118233 0.325331 0)
(0.130111 0.350815 0)
(0.13182 0.355216 0)
(0.12687 0.350232 0)
(0.118479 0.344099 0)
(0.110006 0.341536 0)
(0.104815 0.344367 0)
(0.10477 0.351059 0)
(0.109036 0.357553 0)
(0.115346 0.360386 0)
(0.121929 0.358595 0)
(0.128326 0.353054 0)
(0.135112 0.345066 0)
(0.143229 0.335632 0)
(0.153417 0.325401 0)
(0.165942 0.314822 0)
(0.180615 0.304241 0)
(0.196957 0.293909 0)
(0.214388 0.283965 0)
(0.232371 0.274429 0)
(0.250477 0.265224 0)
(0.268402 0.2562 0)
(0.285958 0.247167 0)
(0.303045 0.237909 0)
(0.319619 0.228205 0)
(0.335668 0.217831 0)
(0.351193 0.206574 0)
(0.366138 0.194266 0)
(0.380491 0.180709 0)
(0.394355 0.165693 0)
(0.407267 0.149316 0)
(0.418678 0.131658 0)
(0.42907 0.112326 0)
(0.437817 0.0916548 0)
(0.442661 0.0707935 0)
(0.443792 0.0493553 0)
(0.443045 0.0262188 0)
(0.43898 0.0028462 0)
(0.428905 -0.0185662 0)
(0.414107 -0.0396188 0)
(0.398434 -0.0651435 0)
(0.383342 -0.0984776 0)
(0.367075 -0.139724 0)
(0.347197 -0.187059 0)
(0.322403 -0.237072 0)
(0.292982 -0.284277 0)
(0.260316 -0.322636 0)
(0.225582 -0.348739 0)
(0.189017 -0.363033 0)
(0.150538 -0.367638 0)
(0.110616 -0.363794 0)
(0.0705333 -0.351439 0)
(0.032213 -0.330132 0)
(-0.00241654 -0.30037 0)
(-0.0311041 -0.263883 0)
(-0.0519313 -0.22308 0)
(-0.0639748 -0.18145 0)
(-0.0667497 -0.142599 0)
(-0.0608613 -0.109609 0)
(-0.0486619 -0.0839534 0)
(-0.0334886 -0.0654508 0)
(-0.017484 -0.0534597 0)
(0.000296041 -0.0487663 0)
(0.0211963 -0.0524395 0)
(0.0434789 -0.0628298 0)
(0.0634712 -0.075791 0)
(0.0786572 -0.0877218 0)
(0.0889272 -0.0971917 0)
(0.0954321 -0.1044 0)
(0.0994166 -0.110078 0)
(0.101752 -0.114849 0)
(0.102954 -0.11909 0)
(0.103328 -0.122996 0)
(0.10309 -0.126671 0)
(0.102402 -0.130236 0)
(0.1014 -0.133836 0)
(0.10018 -0.137538 0)
(0.0988868 -0.141375 0)
(0.0974959 -0.145525 0)
(0.0961431 -0.150245 0)
(0.0944469 -0.15585 0)
(0.0930371 -0.161444 0)
(0.0913602 -0.167486 0)
(0.0893354 -0.174313 0)
(0.0870571 -0.18123 0)
(0.0842066 -0.189544 0)
(0.0787143 -0.200869 0)
(0.0708542 -0.216622 0)
(0.062334 -0.23021 0)
(0.0540836 -0.234496 0)
(0.0415028 -0.237416 0)
(0.0280709 -0.276308 0)
(0.0181629 -0.377939 0)
(0.00640649 -0.359835 0)
(-0.000531752 -0.00630706 0)
(0.00100803 0.00191722 0)
(0.00612069 0.0292088 0)
(0.0208504 0.0836354 0)
(0.0404705 0.160407 0)
(0.0852358 0.250372 0)
(0.117571 0.316195 0)
(0.132503 0.347597 0)
(0.13556 0.35581 0)
(0.131119 0.353087 0)
(0.122548 0.347837 0)
(0.113016 0.344781 0)
(0.105803 0.34598 0)
(0.103219 0.350682 0)
(0.105204 0.35571 0)
(0.10999 0.357881 0)
(0.115927 0.355915 0)
(0.122487 0.350205 0)
(0.130116 0.34175 0)
(0.139597 0.331514 0)
(0.151478 0.320293 0)
(0.165817 0.308739 0)
(0.182232 0.297359 0)
(0.200097 0.286479 0)
(0.21875 0.27624 0)
(0.237622 0.266621 0)
(0.256298 0.257486 0)
(0.274513 0.24863 0)
(0.292128 0.239818 0)
(0.309086 0.230804 0)
(0.325374 0.221349 0)
(0.341003 0.211225 0)
(0.355967 0.20023 0)
(0.370245 0.188182 0)
(0.38391 0.174865 0)
(0.3968 0.160227 0)
(0.408316 0.144426 0)
(0.418552 0.127266 0)
(0.427783 0.108571 0)
(0.43434 0.0892579 0)
(0.436849 0.0699637 0)
(0.43705 0.049496 0)
(0.435923 0.0274308 0)
(0.430712 0.00610929 0)
(0.419588 -0.0131583 0)
(0.405058 -0.0332685 0)
(0.390491 -0.0587994 0)
(0.376165 -0.0918883 0)
(0.359854 -0.131985 0)
(0.339272 -0.177455 0)
(0.313327 -0.225429 0)
(0.282495 -0.270947 0)
(0.24847 -0.308186 0)
(0.212832 -0.333551 0)
(0.176051 -0.347201 0)
(0.138 -0.351239 0)
(0.0990003 -0.347143 0)
(0.0602437 -0.335135 0)
(0.0235124 -0.315003 0)
(-0.00939327 -0.287381 0)
(-0.036234 -0.253741 0)
(-0.0551696 -0.216453 0)
(-0.0653871 -0.178653 0)
(-0.0667425 -0.143563 0)
(-0.0605045 -0.11354 0)
(-0.0491363 -0.0896527 0)
(-0.0352024 -0.0718965 0)
(-0.0193753 -0.0606968 0)
(-0.000242787 -0.0572503 0)
(0.0221791 -0.0619029 0)
(0.0447156 -0.0718258 0)
(0.0638416 -0.0830527 0)
(0.0779586 -0.0928975 0)
(0.0875084 -0.100608 0)
(0.0937061 -0.106569 0)
(0.0976488 -0.111415 0)
(0.100058 -0.115616 0)
(0.101358 -0.119445 0)
(0.101814 -0.123041 0)
(0.101626 -0.126485 0)
(0.100948 -0.129879 0)
(0.0999147 -0.133359 0)
(0.0986194 -0.136988 0)
(0.0972096 -0.140782 0)
(0.0956573 -0.144905 0)
(0.0941187 -0.149564 0)
(0.0922023 -0.155135 0)
(0.0904929 -0.160732 0)
(0.0885634 -0.166637 0)
(0.0862721 -0.17333 0)
(0.0836246 -0.180059 0)
(0.0806639 -0.187752 0)
(0.0752921 -0.198075 0)
(0.0675954 -0.213237 0)
(0.0589852 -0.226555 0)
(0.0507 -0.229987 0)
(0.0382418 -0.231971 0)
(0.0259106 -0.271878 0)
(0.016783 -0.373563 0)
(0.0057713 -0.354747 0)
(-0.000408334 -0.00647323 0)
(0.00153067 0.000555952 0)
(0.00630937 0.0251793 0)
(0.0204256 0.0767388 0)
(0.037887 0.147822 0)
(0.0781051 0.233649 0)
(0.115461 0.305468 0)
(0.134352 0.343309 0)
(0.139428 0.355889 0)
(0.135975 0.355745 0)
(0.127758 0.351678 0)
(0.117829 0.348516 0)
(0.109253 0.348446 0)
(0.104569 0.351296 0)
(0.104432 0.354703 0)
(0.107747 0.355874 0)
(0.113191 0.35334 0)
(0.120266 0.347097 0)
(0.129261 0.337888 0)
(0.140686 0.326666 0)
(0.154758 0.314387 0)
(0.171223 0.301896 0)
(0.189461 0.289833 0)
(0.208712 0.278565 0)
(0.228273 0.268205 0)
(0.247605 0.258666 0)
(0.266358 0.249742 0)
(0.284344 0.241168 0)
(0.301495 0.232666 0)
(0.317804 0.223967 0)
(0.333293 0.214823 0)
(0.347988 0.205006 0)
(0.361905 0.194315 0)
(0.375085 0.182548 0)
(0.387508 0.169567 0)
(0.398782 0.155446 0)
(0.408689 0.140178 0)
(0.417688 0.123472 0)
(0.425175 0.105684 0)
(0.42927 0.0878445 0)
(0.430274 0.0696675 0)
(0.430413 0.0497826 0)
(0.428966 0.0289304 0)
(0.422596 0.00973851 0)
(0.410857 -0.00775237 0)
(0.397023 -0.027338 0)
(0.383622 -0.0529159 0)
(0.369936 -0.0855066 0)
(0.353545 -0.124183 0)
(0.332371 -0.167599 0)
(0.305473 -0.21342 0)
(0.273419 -0.257222 0)
(0.23813 -0.293448 0)
(0.201596 -0.318314 0)
(0.164619 -0.331613 0)
(0.127102 -0.335341 0)
(0.0892072 -0.331187 0)
(0.0519803 -0.319661 0)
(0.0170291 -0.300783 0)
(-0.0139717 -0.27536 0)
(-0.038871 -0.244546 0)
(-0.0559823 -0.210685 0)
(-0.0647477 -0.17652 0)
(-0.0654762 -0.144733 0)
(-0.0596623 -0.117153 0)
(-0.0494015 -0.0947578 0)
(-0.0361873 -0.078079 0)
(-0.0196514 -0.0682394 0)
(0.00113925 -0.0662977 0)
(0.0245002 -0.0714992 0)
(0.0465497 -0.0804441 0)
(0.0644346 -0.0897608 0)
(0.0774183 -0.0976333 0)
(0.0862872 -0.103781 0)
(0.092206 -0.108647 0)
(0.0961018 -0.112741 0)
(0.0985581 -0.116405 0)
(0.0999239 -0.119827 0)
(0.100431 -0.123108 0)
(0.100264 -0.126308 0)
(0.099573 -0.129517 0)
(0.0984904 -0.132862 0)
(0.0971059 -0.1364 0)
(0.09557 -0.140137 0)
(0.0938545 -0.144219 0)
(0.0921296 -0.148808 0)
(0.0900092 -0.154323 0)
(0.0880203 -0.159916 0)
(0.0858517 -0.165696 0)
(0.0833421 -0.172237 0)
(0.0803771 -0.17881 0)
(0.0773021 -0.185978 0)
(0.0720455 -0.195375 0)
(0.0645762 -0.209937 0)
(0.0559709 -0.222936 0)
(0.0477116 -0.225568 0)
(0.0353978 -0.226831 0)
(0.024078 -0.267851 0)
(0.0155227 -0.369519 0)
(0.00518354 -0.350125 0)
(-0.000273072 -0.00675726 0)
(0.00196134 -0.000836364 0)
(0.00657716 0.0214748 0)
(0.019616 0.0701881 0)
(0.0370207 0.136915 0)
(0.0704827 0.217486 0)
(0.111519 0.293018 0)
(0.135262 0.337614 0)
(0.143258 0.355204 0)
(0.141354 0.357991 0)
(0.134015 0.355364 0)
(0.12438 0.352425 0)
(0.115272 0.351454 0)
(0.109259 0.352667 0)
(0.107572 0.354381 0)
(0.109834 0.35424 0)
(0.115166 0.350723 0)
(0.123149 0.343552 0)
(0.133871 0.3333 0)
(0.147475 0.320953 0)
(0.163766 0.307629 0)
(0.182143 0.294336 0)
(0.201775 0.281793 0)
(0.221828 0.270364 0)
(0.241632 0.260094 0)
(0.260739 0.250815 0)
(0.278909 0.242241 0)
(0.296057 0.234053 0)
(0.312187 0.225938 0)
(0.327341 0.217615 0)
(0.341569 0.20883 0)
(0.354926 0.199357 0)
(0.36746 0.188988 0)
(0.379188 0.177554 0)
(0.38992 0.16502 0)
(0.39939 0.15142 0)
(0.407874 0.136558 0)
(0.415484 0.120399 0)
(0.420834 0.103745 0)
(0.422961 0.0871379 0)
(0.42362 0.0695067 0)
(0.424166 0.0500832 0)
(0.422168 0.030733 0)
(0.414695 0.0136507 0)
(0.402815 -0.00250435 0)
(0.389991 -0.0218958 0)
(0.377712 -0.0474565 0)
(0.364533 -0.0792979 0)
(0.348058 -0.116342 0)
(0.326437 -0.157568 0)
(0.298819 -0.201139 0)
(0.265772 -0.243176 0)
(0.22934 -0.27845 0)
(0.191892 -0.303027 0)
(0.154652 -0.316274 0)
(0.117663 -0.319978 0)
(0.0809557 -0.315978 0)
(0.0453865 -0.305076 0)
(0.012291 -0.287523 0)
(-0.0167409 -0.264288 0)
(-0.0397265 -0.236227 0)
(-0.055304 -0.205596 0)
(-0.0631834 -0.174724 0)
(-0.0639063 -0.145768 0)
(-0.0588101 -0.120331 0)
(-0.0493543 -0.0994726 0)
(-0.0359626 -0.084346 0)
(-0.0179913 -0.076296 0)
(0.00427227 -0.0757195 0)
(0.0277599 -0.0809108 0)
(0.0486923 -0.0884868 0)
(0.0651288 -0.0958673 0)
(0.0770034 -0.101948 0)
(0.0852569 -0.106732 0)
(0.090928 -0.110638 0)
(0.0947707 -0.114051 0)
(0.0972492 -0.117203 0)
(0.0986506 -0.120224 0)
(0.0991793 -0.123184 0)
(0.0990081 -0.12613 0)
(0.0982819 -0.129143 0)
(0.0971312 -0.132338 0)
(0.0956442 -0.135773 0)
(0.0939729 -0.139437 0)
(0.0920922 -0.143467 0)
(0.0901798 -0.14798 0)
(0.0878683 -0.153424 0)
(0.0856194 -0.159005 0)
(0.0832238 -0.164677 0)
(0.0805321 -0.171055 0)
(0.0773011 -0.177495 0)
(0.0741153 -0.184221 0)
(0.0689649 -0.192775 0)
(0.0617654 -0.206747 0)
(0.0532399 -0.219382 0)
(0.0450656 -0.221255 0)
(0.0329289 -0.22198 0)
(0.0225332 -0.264159 0)
(0.0143857 -0.365731 0)
(0.00459478 -0.345941 0)
(-0.000135805 -0.00714319 0)
(0.00230441 -0.00226872 0)
(0.00686223 0.018094 0)
(0.0186771 0.0638635 0)
(0.0366339 0.127419 0)
(0.0636568 0.202604 0)
(0.105663 0.279015 0)
(0.134747 0.33021 0)
(0.146716 0.353438 0)
(0.147087 0.359596 0)
(0.141162 0.358651 0)
(0.132456 0.356186 0)
(0.123664 0.35463 0)
(0.117261 0.354444 0)
(0.114849 0.354464 0)
(0.116694 0.352765 0)
(0.122374 0.347898 0)
(0.131552 0.339459 0)
(0.144079 0.327949 0)
(0.159685 0.314435 0)
(0.177756 0.300181 0)
(0.197388 0.286303 0)
(0.217616 0.273542 0)
(0.237623 0.262201 0)
(0.256846 0.25223 0)
(0.27498 0.243364 0)
(0.291923 0.235246 0)
(0.307691 0.227511 0)
(0.322353 0.219828 0)
(0.335989 0.21191 0)
(0.348681 0.203502 0)
(0.360503 0.194378 0)
(0.371483 0.184352 0)
(0.381537 0.173318 0)
(0.390481 0.161258 0)
(0.398417 0.148055 0)
(0.405683 0.133546 0)
(0.411645 0.118126 0)
(0.414969 0.102599 0)
(0.416196 0.0867045 0)
(0.417447 0.0692001 0)
(0.418333 0.0504272 0)
(0.415458 0.0328695 0)
(0.407096 0.017712 0)
(0.395536 0.00244997 0)
(0.383894 -0.0169563 0)
(0.372618 -0.0423685 0)
(0.359821 -0.0732364 0)
(0.343284 -0.1085 0)
(0.321383 -0.147452 0)
(0.293308 -0.188695 0)
(0.259545 -0.228897 0)
(0.222143 -0.263223 0)
(0.183767 -0.287664 0)
(0.146119 -0.301142 0)
(0.109515 -0.305125 0)
(0.0739271 -0.301517 0)
(0.0399923 -0.291394 0)
(0.00872893 -0.275253 0)
(-0.0184231 -0.254076 0)
(-0.0397195 -0.228651 0)
(-0.0541534 -0.200966 0)
(-0.0615812 -0.172987 0)
(-0.0625114 -0.146568 0)
(-0.0579157 -0.123186 0)
(-0.0484538 -0.104176 0)
(-0.0339672 -0.09103 0)
(-0.0143091 -0.0848909 0)
(0.00876206 -0.0852121 0)
(0.031527 -0.0898502 0)
(0.0509142 -0.0958346 0)
(0.065848 -0.101375 0)
(0.0766992 -0.105879 0)
(0.0844149 -0.109488 0)
(0.0898673 -0.11255 0)
(0.09365 -0.115337 0)
(0.096127 -0.118 0)
(0.0975361 -0.120622 0)
(0.0980593 -0.123257 0)
(0.0978595 -0.125941 0)
(0.097077 -0.128748 0)
(0.0958409 -0.131783 0)
(0.0942384 -0.135102 0)
(0.0924222 -0.138683 0)
(0.0903735 -0.142652 0)
(0.0882721 -0.147085 0)
(0.0857794 -0.152446 0)
(0.0832885 -0.158008 0)
(0.0806773 -0.163589 0)
(0.07783 -0.169802 0)
(0.0743815 -0.17613 0)
(0.0710943 -0.182481 0)
(0.0660413 -0.190278 0)
(0.0591383 -0.203682 0)
(0.0507512 -0.215916 0)
(0.0427166 -0.217067 0)
(0.0307975 -0.217402 0)
(0.0212374 -0.260747 0)
(0.0133695 -0.36215 0)
(0.0040546 -0.342149 0)
(-3.60238e-06 -0.00760968 0)
(0.00256811 -0.00371832 0)
(0.00710379 0.0149993 0)
(0.0177502 0.0578055 0)
(0.0359251 0.118956 0)
(0.0585076 0.189323 0)
(0.0983096 0.264105 0)
(0.132341 0.32092 0)
(0.149278 0.350219 0)
(0.152859 0.360289 0)
(0.148962 0.361316 0)
(0.14175 0.359517 0)
(0.13402 0.35761 0)
(0.128139 0.356241 0)
(0.125888 0.35462 0)
(0.127999 0.35121 0)
(0.134436 0.344736 0)
(0.144914 0.334803 0)
(0.159031 0.321943 0)
(0.176119 0.307333 0)
(0.195205 0.292354 0)
(0.21518 0.278165 0)
(0.235055 0.265459 0)
(0.254119 0.254435 0)
(0.271981 0.244926 0)
(0.288507 0.236574 0)
(0.30373 0.228962 0)
(0.317753 0.2217 0)
(0.330694 0.21445 0)
(0.342665 0.206926 0)
(0.35376 0.198876 0)
(0.364025 0.190096 0)
(0.373412 0.180441 0)
(0.381806 0.169829 0)
(0.389244 0.158151 0)
(0.396037 0.145227 0)
(0.402065 0.131162 0)
(0.40627 0.116606 0)
(0.408276 0.101889 0)
(0.409767 0.086145 0)
(0.411972 0.0686745 0)
(0.412745 0.0509411 0)
(0.40878 0.0353387 0)
(0.399896 0.0217643 0)
(0.389054 0.00697011 0)
(0.378626 -0.0125134 0)
(0.368182 -0.0375919 0)
(0.355658 -0.067303 0)
(0.339099 -0.100701 0)
(0.317097 -0.137345 0)
(0.288849 -0.176211 0)
(0.254694 -0.214492 0)
(0.216565 -0.247815 0)
(0.177301 -0.272196 0)
(0.139072 -0.286137 0)
(0.102589 -0.290698 0)
(0.0678808 -0.287737 0)
(0.0353805 -0.278546 0)
(0.00577167 -0.263859 0)
(-0.0197201 -0.24463 0)
(-0.0396145 -0.221659 0)
(-0.0531775 -0.196647 0)
(-0.060265 -0.171283 0)
(-0.0611969 -0.147227 0)
(-0.0564157 -0.126021 0)
(-0.0459983 -0.109232 0)
(-0.0298728 -0.0982976 0)
(-0.00887601 -0.093795 0)
(0.0140798 -0.0944575 0)
(0.0354308 -0.0981056 0)
(0.0530618 -0.102445 0)
(0.0665557 -0.106324 0)
(0.0765038 -0.109473 0)
(0.0837598 -0.112073 0)
(0.0890186 -0.114388 0)
(0.0927331 -0.116594 0)
(0.0951866 -0.118784 0)
(0.0965777 -0.121011 0)
(0.0970705 -0.123318 0)
(0.0968193 -0.125734 0)
(0.0959607 -0.128325 0)
(0.0946221 -0.13119 0)
(0.0928913 -0.134384 0)
(0.0909206 -0.137873 0)
(0.0887005 -0.141773 0)
(0.0864082 -0.146124 0)
(0.0837412 -0.151397 0)
(0.0810247 -0.156932 0)
(0.0782095 -0.162442 0)
(0.0752247 -0.168495 0)
(0.071603 -0.174725 0)
(0.0682272 -0.18076 0)
(0.0632655 -0.187887 0)
(0.0566744 -0.200751 0)
(0.0484713 -0.212559 0)
(0.0406257 -0.213019 0)
(0.0289677 -0.213085 0)
(0.0201624 -0.257565 0)
(0.0124551 -0.358739 0)
(0.00354398 -0.338708 0)
(0.000117288 -0.00814153 0)
(0.00275845 -0.00516368 0)
(0.00726188 0.0121481 0)
(0.0168782 0.0521068 0)
(0.0346869 0.111152 0)
(0.0550433 0.177662 0)
(0.0903579 0.249193 0)
(0.127801 0.309789 0)
(0.150313 0.345196 0)
(0.158157 0.359748 0)
(0.157056 0.363129 0)
(0.151884 0.362184 0)
(0.145815 0.360091 0)
(0.141208 0.357715 0)
(0.139888 0.354541 0)
(0.142856 0.349374 0)
(0.150325 0.341172 0)
(0.162017 0.329663 0)
(0.177287 0.315496 0)
(0.19513 0.299967 0)
(0.214322 0.284529 0)
(0.233678 0.270314 0)
(0.252297 0.257908 0)
(0.269655 0.247373 0)
(0.285564 0.238422 0)
(0.300063 0.230617 0)
(0.313296 0.223504 0)
(0.325431 0.216685 0)
(0.336616 0.209826 0)
(0.346972 0.202648 0)
(0.356562 0.194924 0)
(0.365353 0.186484 0)
(0.37325 0.177206 0)
(0.380261 0.166951 0)
(0.38663 0.155529 0)
(0.392458 0.142888 0)
(0.397103 0.129415 0)
(0.399863 0.115616 0)
(0.401613 0.101196 0)
(0.404147 0.0852427 0)
(0.407064 0.0680444 0)
(0.40718 0.0517561 0)
(0.402146 0.0380666 0)
(0.393185 0.0256578 0)
(0.38334 0.0110085 0)
(0.374051 -0.00851384 0)
(0.36424 -0.033062 0)
(0.351893 -0.0614856 0)
(0.335368 -0.0929914 0)
(0.313447 -0.127343 0)
(0.285316 -0.163815 0)
(0.251131 -0.200091 0)
(0.212606 -0.232305 0)
(0.1726 -0.256611 0)
(0.133668 -0.271165 0)
(0.0969938 -0.276564 0)
(0.062799 -0.274501 0)
(0.0313864 -0.266402 0)
(0.00313587 -0.253202 0)
(-0.0209624 -0.235835 0)
(-0.039662 -0.21514 0)
(-0.0523959 -0.192587 0)
(-0.058929 -0.16969 0)
(-0.0592815 -0.14803 0)
(-0.053467 -0.129218 0)
(-0.0414438 -0.114875 0)
(-0.0237359 -0.106059 0)
(-0.00225351 -0.10265 0)
(0.0196821 -0.103136 0)
(0.0391994 -0.105558 0)
(0.0550489 -0.108337 0)
(0.0672435 -0.110775 0)
(0.0764221 -0.112778 0)
(0.0832905 -0.114511 0)
(0.0883756 -0.116154 0)
(0.0920131 -0.117817 0)
(0.0944228 -0.119546 0)
(0.0957725 -0.121382 0)
(0.0962118 -0.123357 0)
(0.0958879 -0.125499 0)
(0.094934 -0.127868 0)
(0.0934767 -0.130555 0)
(0.0916048 -0.133615 0)
(0.08947 -0.137006 0)
(0.0870744 -0.140831 0)
(0.0845885 -0.145102 0)
(0.0817521 -0.150283 0)
(0.0788239 -0.155784 0)
(0.0758165 -0.161243 0)
(0.0727062 -0.167146 0)
(0.0689503 -0.173294 0)
(0.0655006 -0.17906 0)
(0.0606274 -0.1856 0)
(0.0543557 -0.197961 0)
(0.0463723 -0.209324 0)
(0.0387592 -0.209125 0)
(0.0274056 -0.209019 0)
(0.0192781 -0.254571 0)
(0.011638 -0.355454 0)
(0.00304479 -0.335589 0)
(0.000225289 -0.00872277 0)
(0.00288324 -0.0065878 0)
(0.00731842 0.00950756 0)
(0.0160515 0.0468276 0)
(0.0330469 0.103767 0)
(0.05264 0.167422 0)
(0.0828552 0.23507 0)
(0.121303 0.297179 0)
(0.149249 0.338148 0)
(0.162289 0.35762 0)
(0.164899 0.363825 0)
(0.162383 0.363986 0)
(0.158468 0.361853 0)
(0.155677 0.358609 0)
(0.155846 0.353997 0)
(0.160075 0.347121 0)
(0.168687 0.337206 0)
(0.181351 0.324186 0)
(0.197206 0.308875 0)
(0.21501 0.292683 0)
(0.233417 0.277075 0)
(0.251303 0.263095 0)
(0.267953 0.251174 0)
(0.283079 0.241224 0)
(0.296702 0.232852 0)
(0.309004 0.225564 0)
(0.320211 0.218891 0)
(0.330524 0.212442 0)
(0.340098 0.205898 0)
(0.349018 0.199007 0)
(0.357266 0.191578 0)
(0.364742 0.183468 0)
(0.371413 0.174518 0)
(0.377457 0.164509 0)
(0.38304 0.153296 0)
(0.387819 0.141051 0)
(0.391113 0.128204 0)
(0.393183 0.114807 0)
(0.395652 0.100198 0)
(0.399384 0.0840085 0)
(0.402407 0.0675119 0)
(0.401484 0.0529348 0)
(0.395641 0.0409253 0)
(0.387038 0.0292613 0)
(0.378316 0.0145872 0)
(0.369997 -0.00487268 0)
(0.36062 -0.0287191 0)
(0.348382 -0.0557788 0)
(0.331952 -0.0854183 0)
(0.310281 -0.117538 0)
(0.282548 -0.151638 0)
(0.248718 -0.185844 0)
(0.210211 -0.216812 0)
(0.169751 -0.240943 0)
(0.130139 -0.256153 0)
(0.0930328 -0.262578 0)
(0.0589697 -0.261638 0)
(0.028244 -0.254797 0)
(0.00102499 -0.243145 0)
(-0.021903 -0.227597 0)
(-0.0394761 -0.209069 0)
(-0.051214 -0.188867 0)
(-0.0567406 -0.168412 0)
(-0.0558236 -0.149278 0)
(-0.0483784 -0.133042 0)
(-0.0346848 -0.121094 0)
(-0.0160659 -0.114014 0)
(0.00488275 -0.111108 0)
(0.0251332 -0.111022 0)
(0.0426601 -0.112183 0)
(0.056846 -0.113576 0)
(0.067922 -0.1148 0)
(0.0764617 -0.115839 0)
(0.0830051 -0.116819 0)
(0.0879314 -0.117853 0)
(0.091483 -0.118999 0)
(0.0938303 -0.12028 0)
(0.0951173 -0.121725 0)
(0.095482 -0.123367 0)
(0.0950652 -0.12523 0)
(0.093998 -0.12737 0)
(0.0924059 -0.129874 0)
(0.0903803 -0.132793 0)
(0.0880713 -0.136079 0)
(0.0854951 -0.139827 0)
(0.0828127 -0.144018 0)
(0.07981 -0.149108 0)
(0.0766811 -0.154572 0)
(0.0734937 -0.159998 0)
(0.0702652 -0.165765 0)
(0.0664089 -0.171847 0)
(0.0629003 -0.177385 0)
(0.0581164 -0.183416 0)
(0.0521658 -0.195314 0)
(0.0444302 -0.206224 0)
(0.0370879 -0.205399 0)
(0.0260807 -0.205193 0)
(0.0185563 -0.251729 0)
(0.0109124 -0.352267 0)
(0.00256896 -0.33276 0)
(0.000317027 -0.00933369 0)
(0.00294764 -0.00797425 0)
(0.0072711 0.00705356 0)
(0.015245 0.0419818 0)
(0.0312016 0.0967076 0)
(0.0505941 0.158294 0)
(0.076515 0.222198 0)
(0.113489 0.283756 0)
(0.14578 0.329095 0)
(0.164512 0.353598 0)
(0.171749 0.363103 0)
(0.17261 0.36472 0)
(0.171324 0.362735 0)
(0.17073 0.358765 0)
(0.17272 0.352853 0)
(0.178406 0.344395 0)
(0.188103 0.332903 0)
(0.201384 0.318556 0)
(0.217217 0.302356 0)
(0.234228 0.285797 0)
(0.251097 0.270299 0)
(0.266874 0.256758 0)
(0.281108 0.24543 0)
(0.293756 0.236084 0)
(0.305023 0.228244 0)
(0.315194 0.221388 0)
(0.324536 0.215057 0)
(0.333252 0.208879 0)
(0.341462 0.202567 0)
(0.34917 0.19591 0)
(0.35627 0.188752 0)
(0.362678 0.180931 0)
(0.368494 0.172214 0)
(0.373891 0.162383 0)
(0.378691 0.151451 0)
(0.382309 0.139703 0)
(0.384658 0.127295 0)
(0.386959 0.113833 0)
(0.390664 0.0987764 0)
(0.395198 0.0826211 0)
(0.397683 0.0672587 0)
(0.395626 0.0544478 0)
(0.389377 0.043765 0)
(0.381472 0.0324903 0)
(0.373853 0.017737 0)
(0.36628 -0.00150925 0)
(0.357161 -0.0245124 0)
(0.344985 -0.0501819 0)
(0.328711 -0.0780234 0)
(0.307442 -0.108012 0)
(0.28036 -0.139807 0)
(0.247261 -0.171912 0)
(0.209243 -0.201496 0)
(0.168768 -0.225291 0)
(0.128708 -0.241099 0)
(0.0911186 -0.248641 0)
(0.0569297 -0.249001 0)
(0.0265602 -0.243581 0)
(0.000110583 -0.233579 0)
(-0.0217776 -0.21987 0)
(-0.0381792 -0.20349 0)
(-0.0486363 -0.185645 0)
(-0.0526919 -0.167712 0)
(-0.0500913 -0.151197 0)
(-0.0409636 -0.137513 0)
(-0.0261658 -0.127654 0)
(-0.00764308 -0.121743 0)
(0.0119195 -0.11888 0)
(0.0301386 -0.118029 0)
(0.0457345 -0.118028 0)
(0.0584626 -0.11825 0)
(0.0686112 -0.11847 0)
(0.07663 -0.118698 0)
(0.0829001 -0.119015 0)
(0.0876787 -0.119486 0)
(0.0911357 -0.120136 0)
(0.093404 -0.120977 0)
(0.0946091 -0.122034 0)
(0.0948794 -0.12334 0)
(0.0943507 -0.12492 0)
(0.0931527 -0.126827 0)
(0.0914103 -0.12914 0)
(0.0892183 -0.131914 0)
(0.0867248 -0.135092 0)
(0.0839624 -0.13876 0)
(0.0810797 -0.142874 0)
(0.0779121 -0.147877 0)
(0.0745912 -0.153301 0)
(0.0712357 -0.15871 0)
(0.0678929 -0.16436 0)
(0.0639648 -0.170392 0)
(0.0604118 -0.175736 0)
(0.0557212 -0.181336 0)
(0.0500892 -0.19281 0)
(0.0426239 -0.203268 0)
(0.0355858 -0.201851 0)
(0.0249655 -0.201596 0)
(0.017975 -0.249009 0)
(0.0102699 -0.349152 0)
(0.00210904 -0.330194 0)
(0.000391241 -0.00996084 0)
(0.00295668 -0.00930681 0)
(0.00712534 0.00477062 0)
(0.0144378 0.0375562 0)
(0.0292901 0.0899762 0)
(0.0484727 0.149962 0)
(0.071477 0.210709 0)
(0.105276 0.270296 0)
(0.140038 0.318354 0)
(0.164238 0.347523 0)
(0.176767 0.360681 0)
(0.181753 0.364162 0)
(0.183608 0.362599 0)
(0.185513 0.358093 0)
(0.189494 0.351059 0)
(0.196655 0.341214 0)
(0.207248 0.328368 0)
(0.220732 0.312968 0)
(0.235959 0.29619 0)
(0.251549 0.279567 0)
(0.266333 0.264414 0)
(0.279635 0.251443 0)
(0.29129 0.240734 0)
(0.301485 0.231938 0)
(0.310555 0.22453 0)
(0.318843 0.21799 0)
(0.326617 0.211883 0)
(0.334046 0.205874 0)
(0.341165 0.199722 0)
(0.347881 0.193262 0)
(0.354064 0.186338 0)
(0.359727 0.178727 0)
(0.365011 0.170168 0)
(0.369837 0.16055 0)
(0.373698 0.15002 0)
(0.376278 0.138722 0)
(0.378389 0.12639 0)
(0.381634 0.112479 0)
(0.386521 0.0970167 0)
(0.391188 0.0813142 0)
(0.392694 0.0673804 0)
(0.389678 0.0561894 0)
(0.383453 0.0464465 0)
(0.376439 0.0353176 0)
(0.369785 0.0205256 0)
(0.362719 0.0016579 0)
(0.353717 -0.0204019 0)
(0.341582 -0.0446984 0)
(0.325522 -0.0708419 0)
(0.304773 -0.0988322 0)
(0.278549 -0.128429 0)
(0.246516 -0.158451 0)
(0.209467 -0.186545 0)
(0.169522 -0.20982 0)
(0.129456 -0.226089 0)
(0.0915919 -0.234743 0)
(0.0572507 -0.236515 0)
(0.0270834 -0.232667 0)
(0.00126909 -0.224442 0)
(-0.0196223 -0.212654 0)
(-0.0347646 -0.19848 0)
(-0.0437295 -0.183061 0)
(-0.0461424 -0.167706 0)
(-0.0419418 -0.153769 0)
(-0.0316709 -0.142389 0)
(-0.0167245 -0.134158 0)
(0.000740815 -0.128887 0)
(0.0184058 -0.12582 0)
(0.0345502 -0.124181 0)
(0.0484178 -0.123188 0)
(0.0599311 -0.122453 0)
(0.0693335 -0.12185 0)
(0.0769328 -0.121387 0)
(0.0829713 -0.121111 0)
(0.0876103 -0.121054 0)
(0.0909646 -0.121225 0)
(0.093139 -0.121632 0)
(0.0942446 -0.122302 0)
(0.0944023 -0.123271 0)
(0.0937437 -0.124564 0)
(0.0923979 -0.126232 0)
(0.09049 -0.128352 0)
(0.0881189 -0.130975 0)
(0.0854304 -0.134043 0)
(0.082475 -0.13763 0)
(0.0793878 -0.141672 0)
(0.0760552 -0.146592 0)
(0.0725486 -0.151977 0)
(0.0690362 -0.157385 0)
(0.0655809 -0.162937 0)
(0.0616051 -0.168939 0)
(0.0580205 -0.174119 0)
(0.05343 -0.179358 0)
(0.0481113 -0.190448 0)
(0.040935 -0.200463 0)
(0.0342299 -0.198488 0)
(0.0240344 -0.198221 0)
(0.0175146 -0.246385 0)
(0.00970717 -0.346085 0)
(0.00166093 -0.327865 0)
(0.000447784 -0.0105906 0)
(0.00291562 -0.010573 0)
(0.00689011 0.00265143 0)
(0.0136178 0.0335204 0)
(0.0273797 0.0836047 0)
(0.0461429 0.142184 0)
(0.0674456 0.200493 0)
(0.0975036 0.257454 0)
(0.132599 0.306494 0)
(0.161238 0.339482 0)
(0.179217 0.356371 0)
(0.188912 0.362098 0)
(0.194419 0.361306 0)
(0.19911 0.356532 0)
(0.205169 0.348618 0)
(0.21372 0.337642 0)
(0.224947 0.323736 0)
(0.238216 0.307608 0)
(0.252346 0.290579 0)
(0.266069 0.274164 0)
(0.278479 0.259524 0)
(0.28922 0.247175 0)
(0.298402 0.237038 0)
(0.306387 0.228686 0)
(0.31359 0.22158 0)
(0.320359 0.215224 0)
(0.326927 0.209224 0)
(0.333382 0.203299 0)
(0.339658 0.197261 0)
(0.345603 0.190964 0)
(0.351147 0.184212 0)
(0.356373 0.176736 0)
(0.361262 0.168338 0)
(0.365383 0.159049 0)
(0.368238 0.148972 0)
(0.370218 0.137892 0)
(0.372822 0.125235 0)
(0.377275 0.110717 0)
(0.382858 0.0951269 0)
(0.387017 0.0802797 0)
(0.387398 0.0678693 0)
(0.383762 0.058021 0)
(0.377915 0.048872 0)
(0.37183 0.0377666 0)
(0.365928 0.0230436 0)
(0.359155 0.00470111 0)
(0.350172 -0.0163608 0)
(0.338079 -0.0393348 0)
(0.322282 -0.0638993 0)
(0.302134 -0.0900445 0)
(0.276909 -0.117587 0)
(0.246203 -0.145599 0)
(0.210549 -0.172149 0)
(0.171705 -0.194739 0)
(0.13222 -0.211291 0)
(0.094519 -0.220974 0)
(0.0602506 -0.2242 0)
(0.0303416 -0.222037 0)
(0.00516313 -0.215711 0)
(-0.0147338 -0.205963 0)
(-0.0286159 -0.194083 0)
(-0.0361458 -0.181135 0)
(-0.0371686 -0.168311 0)
(-0.0319455 -0.156751 0)
(-0.0214407 -0.147291 0)
(-0.00730398 -0.140223 0)
(0.00847832 -0.135243 0)
(0.0240916 -0.131894 0)
(0.0383364 -0.129567 0)
(0.0507515 -0.127775 0)
(0.0612936 -0.126277 0)
(0.0701098 -0.124996 0)
(0.0773733 -0.123934 0)
(0.0832137 -0.123117 0)
(0.0877189 -0.122558 0)
(0.0909634 -0.122262 0)
(0.0930306 -0.12224 0)
(0.0940208 -0.122524 0)
(0.0940487 -0.123153 0)
(0.093243 -0.124156 0)
(0.0917332 -0.125582 0)
(0.0896446 -0.127504 0)
(0.0870816 -0.129974 0)
(0.0841872 -0.13293 0)
(0.0810315 -0.136437 0)
(0.0777346 -0.140411 0)
(0.0742357 -0.145256 0)
(0.0705477 -0.150604 0)
(0.0668885 -0.156025 0)
(0.0633212 -0.161502 0)
(0.0593171 -0.167492 0)
(0.0557125 -0.172537 0)
(0.0512307 -0.17748 0)
(0.0462182 -0.188227 0)
(0.0393465 -0.197815 0)
(0.0329992 -0.195318 0)
(0.023264 -0.195058 0)
(0.0171578 -0.243837 0)
(0.009221 -0.343051 0)
(0.00122943 -0.325751 0)
(0.000487141 -0.0112105 0)
(0.00283087 -0.0117622 0)
(0.00657582 0.000693087 0)
(0.0127795 0.029838 0)
(0.0254956 0.0776191 0)
(0.0436431 0.134817 0)
(0.0639966 0.191318 0)
(0.0906628 0.245611 0)
(0.124306 0.294203 0)
(0.155752 0.329823 0)
(0.178679 0.350161 0)
(0.193298 0.358387 0)
(0.202836 0.358736 0)
(0.21057 0.354033 0)
(0.21877 0.345551 0)
(0.228594 0.333762 0)
(0.240191 0.319137 0)
(0.252893 0.302629 0)
(0.265585 0.285658 0)
(0.277227 0.269665 0)
(0.287242 0.255627 0)
(0.295596 0.243875 0)
(0.302626 0.234212 0)
(0.308802 0.22617 0)
(0.314562 0.219227 0)
(0.320221 0.21293 0)
(0.325936 0.206943 0)
(0.331689 0.201046 0)
(0.337339 0.19509 0)
(0.342754 0.188909 0)
(0.347942 0.18226 0)
(0.352913 0.174898 0)
(0.357331 0.166755 0)
(0.360584 0.157902 0)
(0.362623 0.148179 0)
(0.36462 0.136975 0)
(0.36819 0.12371 0)
(0.373649 0.108677 0)
(0.379276 0.0933364 0)
(0.382503 0.0796161 0)
(0.381871 0.0686423 0)
(0.377993 0.0598116 0)
(0.372743 0.0509984 0)
(0.367496 0.0398959 0)
(0.362114 0.0253729 0)
(0.355464 0.00767302 0)
(0.34645 -0.012376 0)
(0.334416 -0.0340984 0)
(0.318915 -0.0572104 0)
(0.299409 -0.0816732 0)
(0.275253 -0.107333 0)
(0.246032 -0.133456 0)
(0.212088 -0.158472 0)
(0.17484 -0.18026 0)
(0.136537 -0.196918 0)
(0.0995615 -0.207497 0)
(0.065766 -0.212151 0)
(0.036327 -0.21173 0)
(0.0118601 -0.207362 0)
(-0.00708418 -0.1998 0)
(-0.0198912 -0.190238 0)
(-0.0263494 -0.179725 0)
(-0.0265847 -0.169271 0)
(-0.0211813 -0.15979 0)
(-0.011342 -0.151856 0)
(0.00134431 -0.14559 0)
(0.0152171 -0.140779 0)
(0.0288967 -0.13717 0)
(0.0415409 -0.13431 0)
(0.0527996 -0.131903 0)
(0.0625922 -0.129801 0)
(0.0709573 -0.127954 0)
(0.0779528 -0.126363 0)
(0.0836218 -0.125041 0)
(0.0879981 -0.123999 0)
(0.0911265 -0.123244 0)
(0.0930748 -0.122797 0)
(0.0939348 -0.122694 0)
(0.0938168 -0.122981 0)
(0.0928476 -0.123691 0)
(0.0911577 -0.124871 0)
(0.0888735 -0.126592 0)
(0.0861055 -0.128907 0)
(0.0829941 -0.131752 0)
(0.0796298 -0.135179 0)
(0.0761174 -0.139093 0)
(0.0724496 -0.143871 0)
(0.0685829 -0.149186 0)
(0.0647855 -0.154632 0)
(0.0611062 -0.160058 0)
(0.0570891 -0.166058 0)
(0.0534745 -0.170991 0)
(0.0491111 -0.175702 0)
(0.0443967 -0.186145 0)
(0.037843 -0.195327 0)
(0.0318745 -0.192347 0)
(0.022633 -0.192102 0)
(0.0168901 -0.241349 0)
(0.0088083 -0.340035 0)
(0.000814599 -0.323828 0)
(0.000510409 -0.0118106 0)
(0.00270959 -0.0128665 0)
(0.00619497 -0.00110832 0)
(0.0119226 0.026478 0)
(0.0236477 0.0720285 0)
(0.0410598 0.127794 0)
(0.0608003 0.182937 0)
(0.0848472 0.234886 0)
(0.115993 0.282113 0)
(0.148426 0.319089 0)
(0.175185 0.342263 0)
(0.19444 0.353021 0)
(0.208112 0.354824 0)
(0.219032 0.350563 0)
(0.229408 0.341879 0)
(0.240404 0.329644 0)
(0.252169 0.314667 0)
(0.264079 0.298121 0)
(0.275198 0.281472 0)
(0.284794 0.266042 0)
(0.292644 0.252625 0)
(0.298993 0.241392 0)
(0.304335 0.232075 0)
(0.309185 0.224203 0)
(0.313954 0.217295 0)
(0.318888 0.210958 0)
(0.324044 0.204924 0)
(0.329318 0.199025 0)
(0.334552 0.193116 0)
(0.339686 0.186995 0)
(0.344724 0.180411 0)
(0.349439 0.173224 0)
(0.353207 0.165466 0)
(0.355589 0.157063 0)
(0.357241 0.147452 0)
(0.359808 0.135799 0)
(0.364429 0.121847 0)
(0.370395 0.106564 0)
(0.375492 0.0918193 0)
(0.37763 0.0793275 0)
(0.376247 0.0695843 0)
(0.372444 0.0614668 0)
(0.367861 0.0528313 0)
(0.363282 0.0417799 0)
(0.358211 0.0275862 0)
(0.351574 0.0106042 0)
(0.342517 -0.00844564 0)
(0.330567 -0.0289956 0)
(0.31538 -0.0507786 0)
(0.296515 -0.07372 0)
(0.273426 -0.0976785 0)
(0.245734 -0.12207 0)
(0.213663 -0.145623 0)
(0.178344 -0.166555 0)
(0.141709 -0.183172 0)
(0.105985 -0.194497 0)
(0.0730948 -0.200493 0)
(0.0443923 -0.201805 0)
(0.0206822 -0.199398 0)
(0.00255235 -0.194068 0)
(-0.00951285 -0.186785 0)
(-0.0154581 -0.178583 0)
(-0.0156328 -0.17027 0)
(-0.0108192 -0.162553 0)
(-0.00222146 -0.15583 0)
(0.0087763 -0.150184 0)
(0.020828 -0.145564 0)
(0.0328714 -0.141777 0)
(0.0442507 -0.138541 0)
(0.0546314 -0.135676 0)
(0.0638644 -0.133092 0)
(0.0718884 -0.130762 0)
(0.0786708 -0.128689 0)
(0.0841903 -0.126889 0)
(0.0884419 -0.125377 0)
(0.0914488 -0.12417 0)
(0.0932677 -0.123298 0)
(0.0939838 -0.122807 0)
(0.0937048 -0.12275 0)
(0.0925561 -0.123164 0)
(0.0906705 -0.124096 0)
(0.0881756 -0.125614 0)
(0.0851894 -0.127772 0)
(0.0818494 -0.130505 0)
(0.0782675 -0.133856 0)
(0.0745332 -0.137716 0)
(0.0706927 -0.142436 0)
(0.0666483 -0.147726 0)
(0.0627196 -0.15321 0)
(0.0589284 -0.158608 0)
(0.0549095 -0.164639 0)
(0.0512941 -0.169487 0)
(0.0470586 -0.174022 0)
(0.042634 -0.184199 0)
(0.0364099 -0.193003 0)
(0.0308381 -0.189579 0)
(0.0221218 -0.189345 0)
(0.016699 -0.238908 0)
(0.0084672 -0.337026 0)
(0.000418694 -0.322076 0)
(0.000519216 -0.0123823 0)
(0.00255884 -0.0138792 0)
(0.00576151 -0.00275681 0)
(0.01105 0.0234137 0)
(0.0218431 0.0668272 0)
(0.0384655 0.121095 0)
(0.0576844 0.175146 0)
(0.0798898 0.225205 0)
(0.108251 0.270667 0)
(0.140109 0.307887 0)
(0.16922 0.333079 0)
(0.192318 0.346155 0)
(0.209861 0.349604 0)
(0.223917 0.346133 0)
(0.236434 0.337633 0)
(0.248517 0.32534 0)
(0.260339 0.310381 0)
(0.271401 0.294107 0)
(0.281031 0.27798 0)
(0.288852 0.263186 0)
(0.294967 0.250348 0)
(0.299831 0.239527 0)
(0.304016 0.230424 0)
(0.308028 0.222598 0)
(0.312218 0.215626 0)
(0.316743 0.209188 0)
(0.321567 0.203077 0)
(0.326548 0.197154 0)
(0.33158 0.191252 0)
(0.336642 0.185146 0)
(0.341598 0.178654 0)
(0.345916 0.171762 0)
(0.348914 0.164479 0)
(0.350652 0.156405 0)
(0.352435 0.14661 0)
(0.355878 0.134305 0)
(0.361294 0.119782 0)
(0.367193 0.104577 0)
(0.371391 0.0906641 0)
(0.372501 0.0793544 0)
(0.37066 0.0705865 0)
(0.367131 0.0629397 0)
(0.36317 0.0544124 0)
(0.359065 0.0434942 0)
(0.354142 0.0297373 0)
(0.347466 0.0135097 0)
(0.338385 -0.00457455 0)
(0.326544 -0.0240306 0)
(0.31167 -0.0445967 0)
(0.293409 -0.066166 0)
(0.271322 -0.0886034 0)
(0.245095 -0.111439 0)
(0.214893 -0.13364 0)
(0.181628 -0.153719 0)
(0.146934 -0.170194 0)
(0.112815 -0.18212 0)
(0.0811504 -0.189332 0)
(0.0533737 -0.192298 0)
(0.03041 -0.191812 0)
(0.0128797 -0.188612 0)
(0.00115592 -0.183529 0)
(-0.00482556 -0.177454 0)
(-0.0055171 -0.171041 0)
(-0.00173847 -0.16483 0)
(0.005436 -0.159136 0)
(0.0148375 -0.154092 0)
(0.0253563 -0.149709 0)
(0.0361275 -0.14586 0)
(0.046566 -0.142386 0)
(0.0563107 -0.139183 0)
(0.0651402 -0.136206 0)
(0.0729119 -0.13345 0)
(0.0795258 -0.130929 0)
(0.0849142 -0.128668 0)
(0.089045 -0.126694 0)
(0.0919261 -0.125038 0)
(0.093606 -0.123741 0)
(0.0941656 -0.122861 0)
(0.0937108 -0.122457 0)
(0.0923672 -0.122571 0)
(0.0902702 -0.123252 0)
(0.0875499 -0.124566 0)
(0.0843318 -0.126565 0)
(0.0807514 -0.129188 0)
(0.076942 -0.132466 0)
(0.0729787 -0.136281 0)
(0.0689603 -0.140953 0)
(0.0647382 -0.146226 0)
(0.0606832 -0.151761 0)
(0.0567805 -0.157154 0)
(0.0527674 -0.163239 0)
(0.0491595 -0.168026 0)
(0.0450609 -0.172439 0)
(0.0409182 -0.182386 0)
(0.035033 -0.190843 0)
(0.0298733 -0.187017 0)
(0.0217119 -0.186783 0)
(0.0165734 -0.236506 0)
(0.00819525 -0.334016 0)
(4.57928e-05 -0.320473 0)
(0.000515766 -0.0129193 0)
(0.00238563 -0.0147969 0)
(0.00528955 -0.00425603 0)
(0.010166 0.0206214 0)
(0.0200887 0.0620008 0)
(0.0359053 0.114715 0)
(0.054597 0.167806 0)
(0.0755441 0.216406 0)
(0.101358 0.260083 0)
(0.131605 0.296761 0)
(0.161569 0.323117 0)
(0.187365 0.338101 0)
(0.208156 0.343223 0)
(0.225064 0.340812 0)
(0.239582 0.33286 0)
(0.252671 0.320887 0)
(0.264536 0.306286 0)
(0.27486 0.29054 0)
(0.283284 0.27507 0)
(0.289777 0.260923 0)
(0.294704 0.248587 0)
(0.298643 0.238065 0)
(0.302182 0.229063 0)
(0.305787 0.221192 0)
(0.309731 0.214098 0)
(0.314078 0.207531 0)
(0.318742 0.201332 0)
(0.323606 0.195359 0)
(0.328629 0.189423 0)
(0.333735 0.183332 0)
(0.338537 0.177022 0)
(0.342297 0.17055 0)
(0.344575 0.163734 0)
(0.346064 0.155771 0)
(0.348402 0.145534 0)
(0.352727 0.132548 0)
(0.358496 0.117696 0)
(0.363856 0.102862 0)
(0.367009 0.0898819 0)
(0.367269 0.0796115 0)
(0.365217 0.0715707 0)
(0.362041 0.0642272 0)
(0.358581 0.0558004 0)
(0.354775 0.0451031 0)
(0.3499 0.0318545 0)
(0.343176 0.0163955 0)
(0.334101 -0.00076625 0)
(0.322388 -0.0192022 0)
(0.307809 -0.0386481 0)
(0.290085 -0.0589766 0)
(0.268883 -0.0800586 0)
(0.243972 -0.101512 0)
(0.215496 -0.122495 0)
(0.184206 -0.141764 0)
(0.151479 -0.158038 0)
(0.119082 -0.170435 0)
(0.088771 -0.178721 0)
(0.0619755 -0.183209 0)
(0.0396783 -0.184534 0)
(0.0225181 -0.183325 0)
(0.0108056 -0.180299 0)
(0.00443121 -0.176147 0)
(0.00295202 -0.171427 0)
(0.00561586 -0.166577 0)
(0.0114936 -0.16186 0)
(0.0195865 -0.157445 0)
(0.0289455 -0.153362 0)
(0.0388004 -0.149555 0)
(0.0485824 -0.145947 0)
(0.0578907 -0.142493 0)
(0.0664423 -0.139184 0)
(0.0740334 -0.136041 0)
(0.0805157 -0.133094 0)
(0.0857893 -0.130383 0)
(0.0898031 -0.127952 0)
(0.0925547 -0.125847 0)
(0.0940867 -0.124124 0)
(0.0944778 -0.122851 0)
(0.0938331 -0.122097 0)
(0.0922793 -0.121909 0)
(0.0899555 -0.122336 0)
(0.086995 -0.123443 0)
(0.0835311 -0.125284 0)
(0.079698 -0.127799 0)
(0.0756504 -0.131008 0)
(0.0714503 -0.134787 0)
(0.0672477 -0.139422 0)
(0.0628468 -0.144688 0)
(0.0586686 -0.150285 0)
(0.054655 -0.155699 0)
(0.0506525 -0.161859 0)
(0.0470598 -0.16661 0)
(0.0431058 -0.170951 0)
(0.0392378 -0.180704 0)
(0.0336984 -0.18885 0)
(0.0289645 -0.184663 0)
(0.021386 -0.184411 0)
(0.0165032 -0.234136 0)
(0.00798946 -0.331001 0)
(-0.000301728 -0.318998 0)
(0.000502252 -0.0134166 0)
(0.00219638 -0.0156186 0)
(0.0047929 -0.0056102 0)
(0.00927623 0.0180797 0)
(0.0183911 0.0575302 0)
(0.0334043 0.108652 0)
(0.0515465 0.160829 0)
(0.0716008 0.20831 0)
(0.095333 0.250397 0)
(0.123505 0.286097 0)
(0.153092 0.312877 0)
(0.180338 0.329258 0)
(0.203498 0.335926 0)
(0.222754 0.334733 0)
(0.239024 0.327623 0)
(0.253035 0.316299 0)
(0.265009 0.302344 0)
(0.274835 0.287315 0)
(0.282465 0.272572 0)
(0.288156 0.259042 0)
(0.292448 0.247128 0)
(0.295974 0.23681 0)
(0.299304 0.22783 0)
(0.302842 0.21986 0)
(0.306775 0.212621 0)
(0.311106 0.205924 0)
(0.315752 0.199628 0)
(0.320665 0.193576 0)
(0.325815 0.187589 0)
(0.330963 0.181565 0)
(0.335467 0.175561 0)
(0.338599 0.169582 0)
(0.34039 0.163117 0)
(0.342061 0.155018 0)
(0.345173 0.144194 0)
(0.350151 0.130644 0)
(0.355819 0.115745 0)
(0.360345 0.101491 0)
(0.362479 0.0894335 0)
(0.362101 0.0800175 0)
(0.359997 0.0724961 0)
(0.357156 0.0653559 0)
(0.354054 0.0570546 0)
(0.350412 0.0466504 0)
(0.345538 0.0339516 0)
(0.338786 0.0192493 0)
(0.329744 0.00296768 0)
(0.318163 -0.0145058 0)
(0.303843 -0.0329092 0)
(0.28657 -0.0521061 0)
(0.266106 -0.071976 0)
(0.242304 -0.0922055 0)
(0.215309 -0.112102 0)
(0.185758 -0.130625 0)
(0.154821 -0.146669 0)
(0.124042 -0.159434 0)
(0.0950236 -0.168647 0)
(0.0691401 -0.174504 0)
(0.0473914 -0.177491 0)
(0.0304295 -0.178118 0)
(0.0185605 -0.176975 0)
(0.0116952 -0.174591 0)
(0.00944736 -0.171444 0)
(0.01117 -0.167887 0)
(0.0160524 -0.164145 0)
(0.0232052 -0.160385 0)
(0.0317704 -0.156665 0)
(0.0410206 -0.152979 0)
(0.0503806 -0.149311 0)
(0.0594128 -0.145662 0)
(0.0677874 -0.142062 0)
(0.0752565 -0.138555 0)
(0.0816384 -0.135194 0)
(0.0868117 -0.132038 0)
(0.0907125 -0.12915 0)
(0.0933313 -0.126595 0)
(0.0947075 -0.124444 0)
(0.0949185 -0.122775 0)
(0.0940701 -0.121667 0)
(0.0922911 -0.121173 0)
(0.0897251 -0.121343 0)
(0.0865092 -0.122244 0)
(0.0827852 -0.123926 0)
(0.0786869 -0.126336 0)
(0.0743896 -0.12948 0)
(0.0699444 -0.133232 0)
(0.0655497 -0.137842 0)
(0.0609683 -0.143114 0)
(0.0566683 -0.148784 0)
(0.0525447 -0.154243 0)
(0.0485549 -0.160501 0)
(0.0449847 -0.165241 0)
(0.0411816 -0.169557 0)
(0.0375819 -0.179149 0)
(0.0323927 -0.187023 0)
(0.0280966 -0.18252 0)
(0.0211279 -0.182226 0)
(0.0164788 -0.231795 0)
(0.00784615 -0.327979 0)
(-0.000621065 -0.317633 0)
(0.000480917 -0.0138712 0)
(0.00199677 -0.0163445 0)
(0.00428431 -0.0068235 0)
(0.00838661 0.0157696 0)
(0.0167557 0.0533949 0)
(0.030977 0.1029 0)
(0.0485589 0.154167 0)
(0.0679265 0.200764 0)
(0.0900575 0.241533 0)
(0.116126 0.276102 0)
(0.144528 0.302769 0)
(0.172107 0.320039 0)
(0.196673 0.328017 0)
(0.217634 0.328076 0)
(0.23531 0.322007 0)
(0.250141 0.311579 0)
(0.262334 0.298482 0)
(0.271966 0.284291 0)
(0.279247 0.270299 0)
(0.284641 0.257344 0)
(0.288784 0.245783 0)
(0.29232 0.235605 0)
(0.295776 0.226601 0)
(0.299482 0.218515 0)
(0.303555 0.211138 0)
(0.307981 0.204317 0)
(0.312738 0.197911 0)
(0.317834 0.19176 0)
(0.323161 0.185742 0)
(0.328256 0.179884 0)
(0.332337 0.174296 0)
(0.334922 0.168793 0)
(0.336573 0.162497 0)
(0.338766 0.154059 0)
(0.342654 0.142636 0)
(0.34795 0.128731 0)
(0.353159 0.114039 0)
(0.356737 0.100474 0)
(0.357976 0.0892581 0)
(0.357143 0.0805125 0)
(0.355062 0.0733545 0)
(0.352485 0.0663655 0)
(0.349607 0.0582236 0)
(0.346042 0.0481621 0)
(0.341156 0.03603 0)
(0.334399 0.0220615 0)
(0.325408 0.00663033 0)
(0.313947 -0.00992779 0)
(0.299836 -0.0273509 0)
(0.282915 -0.0455035 0)
(0.263029 -0.0642787 0)
(0.240102 -0.0834179 0)
(0.214294 -0.102347 0)
(0.18616 -0.120189 0)
(0.156709 -0.135993 0)
(0.1273 -0.149043 0)
(0.0993871 -0.159055 0)
(0.0742756 -0.166132 0)
(0.0529643 -0.17063 0)
(0.0361276 -0.172947 0)
(0.0240968 -0.173544 0)
(0.0168347 -0.172837 0)
(0.0140249 -0.171195 0)
(0.0151068 -0.168891 0)
(0.0193423 -0.166126 0)
(0.0259085 -0.16305 0)
(0.0339976 -0.159739 0)
(0.0428982 -0.156226 0)
(0.0520239 -0.152544 0)
(0.0609082 -0.148736 0)
(0.0691873 -0.144867 0)
(0.0765833 -0.141008 0)
(0.0828923 -0.137238 0)
(0.0879786 -0.133638 0)
(0.0917703 -0.130291 0)
(0.0942537 -0.127283 0)
(0.0954663 -0.124698 0)
(0.0954859 -0.122629 0)
(0.0944202 -0.121163 0)
(0.0924011 -0.120359 0)
(0.0895774 -0.120271 0)
(0.0860909 -0.120964 0)
(0.0820922 -0.122488 0)
(0.0777157 -0.124795 0)
(0.0731562 -0.127879 0)
(0.0684569 -0.131615 0)
(0.0638615 -0.136213 0)
(0.0590967 -0.141504 0)
(0.0546746 -0.147259 0)
(0.0504422 -0.152786 0)
(0.0464651 -0.159165 0)
(0.0429245 -0.163921 0)
(0.0392773 -0.168254 0)
(0.0359402 -0.177719 0)
(0.0311027 -0.185361 0)
(0.0272556 -0.18059 0)
(0.0209222 -0.180227 0)
(0.0164898 -0.229481 0)
(0.00776047 -0.324951 0)
(-0.000909569 -0.316358 0)
(0.00045393 -0.0142816 0)
(0.00179157 -0.0169769 0)
(0.00377481 -0.00790058 0)
(0.00750373 0.0136741 0)
(0.015187 0.0495737 0)
(0.0286336 0.0974504 0)
(0.0456576 0.147789 0)
(0.0644523 0.193652 0)
(0.0853774 0.233368 0)
(0.109566 0.26684 0)
(0.136388 0.293071 0)
(0.163467 0.310797 0)
(0.188558 0.319801 0)
(0.210547 0.321047 0)
(0.229232 0.316112 0)
(0.244753 0.306733 0)
(0.257275 0.294622 0)
(0.267007 0.281332 0)
(0.27434 0.268087 0)
(0.279859 0.255666 0)
(0.284234 0.244408 0)
(0.28809 0.234334 0)
(0.291897 0.225294 0)
(0.295909 0.217106 0)
(0.300208 0.209612 0)
(0.304821 0.202674 0)
(0.309801 0.196143 0)
(0.315155 0.189891 0)
(0.32062 0.183907 0)
(0.325536 0.178326 0)
(0.329163 0.17321 0)
(0.331416 0.168088 0)
(0.333284 0.16176 0)
(0.336186 0.152868 0)
(0.340694 0.140944 0)
(0.34598 0.126922 0)
(0.35052 0.112628 0)
(0.353171 0.0997826 0)
(0.353674 0.0892944 0)
(0.352521 0.0810598 0)
(0.350477 0.0741569 0)
(0.348072 0.0672962 0)
(0.345315 0.0593427 0)
(0.341776 0.0496512 0)
(0.336878 0.038085 0)
(0.330132 0.0248325 0)
(0.321189 0.0102184 0)
(0.309815 -0.00545498 0)
(0.295853 -0.0219419 0)
(0.279183 -0.0391174 0)
(0.259717 -0.0568894 0)
(0.237436 -0.0750443 0)
(0.212514 -0.0931024 0)
(0.185453 -0.110322 0)
(0.157144 -0.125886 0)
(0.128802 -0.139163 0)
(0.101763 -0.149869 0)
(0.0772702 -0.158043 0)
(0.0563228 -0.163931 0)
(0.0396219 -0.167827 0)
(0.0275308 -0.170072 0)
(0.0200647 -0.17097 0)
(0.0169606 -0.170782 0)
(0.0177088 -0.169715 0)
(0.021616 -0.16793 0)
(0.0278959 -0.165555 0)
(0.0357656 -0.162678 0)
(0.0445197 -0.159369 0)
(0.0535603 -0.155697 0)
(0.0623997 -0.151748 0)
(0.0706508 -0.14762 0)
(0.0780156 -0.143413 0)
(0.0842761 -0.139233 0)
(0.089288 -0.135186 0)
(0.0929744 -0.131376 0)
(0.0953197 -0.127909 0)
(0.0963613 -0.124885 0)
(0.0961784 -0.122411 0)
(0.094882 -0.120582 0)
(0.0926079 -0.119465 0)
(0.0895108 -0.119116 0)
(0.0857383 -0.1196 0)
(0.0814499 -0.120967 0)
(0.0767819 -0.123174 0)
(0.0719471 -0.126205 0)
(0.066984 -0.129935 0)
(0.0621778 -0.134534 0)
(0.057226 -0.139859 0)
(0.0526805 -0.145711 0)
(0.0483399 -0.15133 0)
(0.0443744 -0.157853 0)
(0.0408697 -0.162651 0)
(0.0373824 -0.167041 0)
(0.0343031 -0.176409 0)
(0.0298161 -0.183863 0)
(0.0264275 -0.178872 0)
(0.0207543 -0.178409 0)
(0.0165259 -0.227198 0)
(0.00772692 -0.321915 0)
(-0.00116574 -0.315157 0)
(0.000423328 -0.0146473 0)
(0.00158444 -0.017519 0)
(0.00327326 -0.00884783 0)
(0.00663421 0.0117779 0)
(0.0136881 0.0460457 0)
(0.0263817 0.0922917 0)
(0.042858 0.141673 0)
(0.0611493 0.186893 0)
(0.0811583 0.225776 0)
(0.103783 0.258277 0)
(0.12895 0.283922 0)
(0.155017 0.301787 0)
(0.179946 0.311541 0)
(0.202356 0.313842 0)
(0.221656 0.31004 0)
(0.23772 0.301772 0)
(0.250646 0.290702 0)
(0.260712 0.278328 0)
(0.268402 0.265809 0)
(0.274348 0.253887 0)
(0.279218 0.242906 0)
(0.283593 0.232926 0)
(0.287872 0.223867 0)
(0.292256 0.215608 0)
(0.296836 0.20802 0)
(0.301713 0.200963 0)
(0.306993 0.194299 0)
(0.31261 0.187979 0)
(0.318118 0.182118 0)
(0.322765 0.176905 0)
(0.326022 0.172247 0)
(0.328232 0.167357 0)
(0.330599 0.160832 0)
(0.33424 0.15147 0)
(0.339145 0.13921 0)
(0.344174 0.12529 0)
(0.34797 0.111517 0)
(0.349797 0.0993678 0)
(0.349721 0.0894901 0)
(0.348337 0.0816415 0)
(0.34631 0.0749227 0)
(0.343994 0.0681812 0)
(0.341284 0.0604353 0)
(0.337739 0.0511246 0)
(0.332825 0.0401167 0)
(0.326083 0.027563 0)
(0.317165 0.0137395 0)
(0.305838 -0.00106685 0)
(0.291958 -0.0166507 0)
(0.275441 -0.0328992 0)
(0.256247 -0.049737 0)
(0.234404 -0.066988 0)
(0.210098 -0.0842498 0)
(0.183794 -0.100895 0)
(0.156304 -0.116225 0)
(0.128741 -0.12969 0)
(0.102359 -0.141018 0)
(0.0783582 -0.150201 0)
(0.0577387 -0.157394 0)
(0.0412251 -0.162793 0)
(0.0292078 -0.166622 0)
(0.0217365 -0.169074 0)
(0.0185798 -0.170314 0)
(0.0192572 -0.170471 0)
(0.0230963 -0.169659 0)
(0.029328 -0.167989 0)
(0.037181 -0.165557 0)
(0.0459494 -0.162462 0)
(0.055025 -0.158811 0)
(0.0639043 -0.154726 0)
(0.0721845 -0.150339 0)
(0.0795549 -0.145782 0)
(0.0857892 -0.141187 0)
(0.0907384 -0.136686 0)
(0.0943233 -0.132407 0)
(0.0965281 -0.128473 0)
(0.0973912 -0.125004 0)
(0.096995 -0.122118 0)
(0.0954542 -0.11992 0)
(0.0929101 -0.118486 0)
(0.0895238 -0.117874 0)
(0.0854497 -0.118149 0)
(0.0808561 -0.11936 0)
(0.0758827 -0.121472 0)
(0.0707586 -0.124454 0)
(0.0655215 -0.12819 0)
(0.0604935 -0.132803 0)
(0.0553502 -0.138178 0)
(0.0506786 -0.14414 0)
(0.0462306 -0.149874 0)
(0.0422744 -0.156564 0)
(0.0388111 -0.16143 0)
(0.0354875 -0.165915 0)
(0.0326614 -0.175215 0)
(0.0285209 -0.182526 0)
(0.0255994 -0.17737 0)
(0.0206097 -0.176773 0)
(0.0165775 -0.22495 0)
(0.00773952 -0.318872 0)
(-0.00138908 -0.314014 0)
(0.000390815 -0.0149683 0)
(0.00137765 -0.0179752 0)
(0.00278604 -0.00966938 0)
(0.00578488 0.0100673 0)
(0.0122611 0.0427902 0)
(0.0242271 0.0874118 0)
(0.0401685 0.135802 0)
(0.0580067 0.180428 0)
(0.0773029 0.218647 0)
(0.0986734 0.250333 0)
(0.122303 0.275364 0)
(0.147128 0.293164 0)
(0.171442 0.30343 0)
(0.193801 0.306624 0)
(0.213373 0.303887 0)
(0.229829 0.296716 0)
(0.243186 0.286682 0)
(0.253732 0.275203 0)
(0.261972 0.263382 0)
(0.268533 0.251933 0)
(0.27405 0.241218 0)
(0.279041 0.231346 0)
(0.283836 0.222302 0)
(0.288611 0.214008 0)
(0.293509 0.206344 0)
(0.298711 0.199163 0)
(0.304321 0.192377 0)
(0.310144 0.186049 0)
(0.31559 0.180403 0)
(0.319952 0.175602 0)
(0.323019 0.171327 0)
(0.325474 0.16651 0)
(0.328511 0.159686 0)
(0.332809 0.149918 0)
(0.33789 0.137511 0)
(0.342517 0.123868 0)
(0.345598 0.110679 0)
(0.34674 0.0991754 0)
(0.346224 0.0898041 0)
(0.344666 0.0822499 0)
(0.342628 0.0756705 0)
(0.340336 0.0690451 0)
(0.33762 0.0615166 0)
(0.334043 0.0525887 0)
(0.329096 0.0421302 0)
(0.32233 0.0302614 0)
(0.313397 0.0172208 0)
(0.302064 0.00326002 0)
(0.288199 -0.0114471 0)
(0.271745 -0.0268062 0)
(0.252699 -0.0427604 0)
(0.231117 -0.0591667 0)
(0.207199 -0.0756886 0)
(0.181389 -0.091798 0)
(0.154451 -0.106905 0)
(0.127433 -0.120536 0)
(0.101534 -0.132442 0)
(0.0779272 -0.142578 0)
(0.0576158 -0.151022 0)
(0.0413399 -0.157876 0)
(0.0295076 -0.163249 0)
(0.0221892 -0.167227 0)
(0.0191701 -0.169871 0)
(0.0199803 -0.171236 0)
(0.0239533 -0.171389 0)
(0.0303241 -0.170419 0)
(0.0383216 -0.168431 0)
(0.0472346 -0.16555 0)
(0.0564442 -0.161918 0)
(0.0654351 -0.157693 0)
(0.0737939 -0.153041 0)
(0.081203 -0.148125 0)
(0.0874317 -0.143107 0)
(0.0923292 -0.138142 0)
(0.0958162 -0.133384 0)
(0.0978778 -0.128975 0)
(0.0985551 -0.125053 0)
(0.0979343 -0.121748 0)
(0.0961356 -0.119176 0)
(0.0933062 -0.117421 0)
(0.0896148 -0.116542 0)
(0.0852232 -0.116608 0)
(0.0803084 -0.117664 0)
(0.0750155 -0.119684 0)
(0.0695875 -0.122624 0)
(0.0640653 -0.126378 0)
(0.0588036 -0.131019 0)
(0.0534634 -0.136461 0)
(0.0486618 -0.142546 0)
(0.0441068 -0.148418 0)
(0.0401573 -0.155298 0)
(0.0367399 -0.16026 0)
(0.0335838 -0.164875 0)
(0.031007 -0.174135 0)
(0.0272068 -0.181346 0)
(0.024759 -0.176081 0)
(0.0204738 -0.175317 0)
(0.0166368 -0.222745 0)
(0.00779182 -0.315824 0)
(-0.00158002 -0.312914 0)
(0.000357455 -0.0152455 0)
(0.00117297 -0.0183503 0)
(0.00231696 -0.0103716 0)
(0.00496086 0.00852955 0)
(0.0109067 0.0397876 0)
(0.0221736 0.0827984 0)
(0.0375925 0.130162 0)
(0.0550197 0.174217 0)
(0.0737464 0.211893 0)
(0.0941273 0.242912 0)
(0.116424 0.26737 0)
(0.13998 0.284995 0)
(0.163435 0.295589 0)
(0.185425 0.299512 0)
(0.205006 0.297732 0)
(0.221713 0.291592 0)
(0.235485 0.282546 0)
(0.246572 0.271921 0)
(0.255453 0.260763 0)
(0.262716 0.249769 0)
(0.268939 0.239323 0)
(0.274565 0.229587 0)
(0.279868 0.2206 0)
(0.285034 0.212304 0)
(0.290283 0.20457 0)
(0.295841 0.197269 0)
(0.301756 0.190394 0)
(0.307693 0.184133 0)
(0.313004 0.178774 0)
(0.317152 0.174374 0)
(0.320254 0.170366 0)
(0.323184 0.165485 0)
(0.326944 0.15833 0)
(0.33176 0.14827 0)
(0.336846 0.135896 0)
(0.34102 0.122655 0)
(0.343476 0.11007 0)
(0.344083 0.0991533 0)
(0.343243 0.0902044 0)
(0.341553 0.0828812 0)
(0.339481 0.0764146 0)
(0.337167 0.0699048 0)
(0.334405 0.062599 0)
(0.330763 0.0540526 0)
(0.325749 0.0441361 0)
(0.318916 0.032943 0)
(0.309918 0.0206751 0)
(0.298523 0.00754408 0)
(0.284612 -0.00630491 0)
(0.268146 -0.0208025 0)
(0.249141 -0.03591 0)
(0.227679 -0.0515146 0)
(0.20397 -0.067339 0)
(0.178451 -0.082945 0)
(0.151859 -0.0978425 0)
(0.125206 -0.111634 0)
(0.0996536 -0.124094 0)
(0.0763594 -0.135153 0)
(0.0563297 -0.144818 0)
(0.0403167 -0.153099 0)
(0.0287411 -0.159994 0)
(0.0216862 -0.165477 0)
(0.0189434 -0.16951 0)
(0.0200419 -0.17207 0)
(0.0243088 -0.173176 0)
(0.0309697 -0.172896 0)
(0.0392441 -0.171344 0)
(0.0484101 -0.168669 0)
(0.0578378 -0.165045 0)
(0.0670024 -0.160668 0)
(0.0754842 -0.155738 0)
(0.0829619 -0.150451 0)
(0.0892042 -0.144996 0)
(0.0940605 -0.139557 0)
(0.0974528 -0.134308 0)
(0.0993685 -0.129415 0)
(0.0998523 -0.12503 0)
(0.0989956 -0.121297 0)
(0.096925 -0.118345 0)
(0.093795 -0.116264 0)
(0.0897821 -0.115117 0)
(0.0850568 -0.114973 0)
(0.0798045 -0.115877 0)
(0.0741775 -0.117809 0)
(0.0684301 -0.120713 0)
(0.0626112 -0.124497 0)
(0.0571027 -0.12918 0)
(0.0515595 -0.134708 0)
(0.0466229 -0.140929 0)
(0.0419613 -0.146962 0)
(0.0380154 -0.154055 0)
(0.0346473 -0.159141 0)
(0.031663 -0.163919 0)
(0.0293321 -0.173163 0)
(0.0258643 -0.180322 0)
(0.0238945 -0.175008 0)
(0.0203323 -0.174041 0)
(0.0166969 -0.22059 0)
(0.00787731 -0.312776 0)
(-0.00173936 -0.311844 0)
(0.000324102 -0.0154806 0)
(0.000970423 -0.0186493 0)
(0.00186743 -0.0109636 0)
(0.00416676 0.00715236 0)
(0.00962466 0.0370192 0)
(0.0202229 0.0784394 0)
(0.0351309 0.124739 0)
(0.0521832 0.168229 0)
(0.0704463 0.205447 0)
(0.0900482 0.235927 0)
(0.111235 0.259881 0)
(0.133612 0.277285 0)
(0.156127 0.288078 0)
(0.177567 0.292583 0)
(0.196977 0.291634 0)
(0.213817 0.286431 0)
(0.227952 0.278298 0)
(0.239577 0.268472 0)
(0.249114 0.257942 0)
(0.257091 0.247389 0)
(0.264011 0.237224 0)
(0.270239 0.227661 0)
(0.276016 0.21877 0)
(0.28157 0.210493 0)
(0.287187 0.202694 0)
(0.293097 0.195289 0)
(0.299249 0.188376 0)
(0.305208 0.182255 0)
(0.310368 0.177216 0)
(0.314432 0.173162 0)
(0.317787 0.169295 0)
(0.321339 0.164254 0)
(0.325788 0.156794 0)
(0.330972 0.146579 0)
(0.335952 0.134388 0)
(0.339692 0.121629 0)
(0.34164 0.109643 0)
(0.341853 0.0992549 0)
(0.340788 0.0906647 0)
(0.339001 0.0835312 0)
(0.336883 0.0771643 0)
(0.334516 0.0707726 0)
(0.331672 0.063694 0)
(0.327929 0.0555286 0)
(0.322802 0.046149 0)
(0.315852 0.0356247 0)
(0.306736 0.0241199 0)
(0.295228 0.0118065 0)
(0.281217 -0.00120128 0)
(0.264675 -0.0148591 0)
(0.24563 -0.0291469 0)
(0.224177 -0.0439816 0)
(0.20054 -0.0591411 0)
(0.175159 -0.0742716 0)
(0.148759 -0.0889764 0)
(0.122328 -0.10293 0)
(0.097009 -0.115937 0)
(0.0739465 -0.127903 0)
(0.0541548 -0.138774 0)
(0.0384008 -0.14847 0)
(0.0271192 -0.156877 0)
(0.0204025 -0.163856 0)
(0.0180418 -0.169271 0)
(0.0195547 -0.173018 0)
(0.024248 -0.175065 0)
(0.031326 -0.175463 0)
(0.0399899 -0.174332 0)
(0.0495024 -0.171845 0)
(0.0592216 -0.168213 0)
(0.0686152 -0.163667 0)
(0.07726 -0.158442 0)
(0.0848344 -0.152767 0)
(0.0911082 -0.146862 0)
(0.0959329 -0.140934 0)
(0.0992332 -0.135182 0)
(0.101 -0.129791 0)
(0.101282 -0.124933 0)
(0.100178 -0.120765 0)
(0.0978215 -0.117425 0)
(0.0943751 -0.115014 0)
(0.0900241 -0.113596 0)
(0.0849486 -0.113243 0)
(0.0793421 -0.113994 0)
(0.0733659 -0.115843 0)
(0.067283 -0.118719 0)
(0.0611551 -0.122544 0)
(0.0553856 -0.127285 0)
(0.0496328 -0.132917 0)
(0.0445548 -0.13929 0)
(0.0397871 -0.145505 0)
(0.0358414 -0.152835 0)
(0.0325249 -0.158073 0)
(0.0297175 -0.163045 0)
(0.0276296 -0.172296 0)
(0.0244856 -0.179447 0)
(0.0229954 -0.174147 0)
(0.020172 -0.172945 0)
(0.0167513 -0.21849 0)
(0.00798965 -0.309733 0)
(-0.00186813 -0.310794 0)
(0.000291264 -0.0156748 0)
(0.000769361 -0.0188768 0)
(0.00143673 -0.0114523 0)
(0.00340595 0.00592414 0)
(0.0084133 0.0344677 0)
(0.0183754 0.0743228 0)
(0.0327828 0.119522 0)
(0.0494906 0.162437 0)
(0.0673727 0.199258 0)
(0.0863598 0.229301 0)
(0.106642 0.25283 0)
(0.127983 0.270007 0)
(0.149583 0.280911 0)
(0.1704 0.285874 0)
(0.189531 0.285634 0)
(0.206408 0.28126 0)
(0.22084 0.273958 0)
(0.232957 0.264869 0)
(0.243114 0.254928 0)
(0.251767 0.244807 0)
(0.25933 0.234943 0)
(0.2661 0.225587 0)
(0.272312 0.216822 0)
(0.278248 0.208577 0)
(0.284233 0.200722 0)
(0.290452 0.193243 0)
(0.296753 0.186353 0)
(0.302666 0.180426 0)
(0.307715 0.175702 0)
(0.311851 0.171905 0)
(0.315632 0.168066 0)
(0.319862 0.162816 0)
(0.324913 0.155118 0)
(0.330333 0.144882 0)
(0.335154 0.132989 0)
(0.338518 0.120758 0)
(0.340084 0.109349 0)
(0.340028 0.0994399 0)
(0.338822 0.0911628 0)
(0.336973 0.0841948 0)
(0.334807 0.0779242 0)
(0.332365 0.0716578 0)
(0.329408 0.0648127 0)
(0.325522 0.0570303 0)
(0.320236 0.048185 0)
(0.313121 0.0383226 0)
(0.30384 0.027571 0)
(0.292178 0.0160628 0)
(0.278024 0.00388109 0)
(0.261355 -0.00895394 0)
(0.242205 -0.0224422 0)
(0.220679 -0.0365304 0)
(0.19701 -0.0510508 0)
(0.17165 -0.0657297 0)
(0.145318 -0.0802589 0)
(0.11899 -0.0943824 0)
(0.0937939 -0.107933 0)
(0.070874 -0.120802 0)
(0.0512599 -0.132877 0)
(0.0357418 -0.143987 0)
(0.0247724 -0.153909 0)
(0.0184512 -0.162389 0)
(0.0165611 -0.169186 0)
(0.0185965 -0.174116 0)
(0.0238317 -0.177094 0)
(0.0314381 -0.178153 0)
(0.0405904 -0.177424 0)
(0.0505321 -0.175104 0)
(0.0606089 -0.171441 0)
(0.0702818 -0.166703 0)
(0.0791266 -0.161163 0)
(0.0868234 -0.155082 0)
(0.0931454 -0.148708 0)
(0.0979476 -0.142275 0)
(0.101158 -0.136006 0)
(0.102772 -0.130105 0)
(0.102845 -0.124761 0)
(0.101481 -0.120148 0)
(0.098824 -0.116414 0)
(0.0950453 -0.113667 0)
(0.0903392 -0.111976 0)
(0.0848968 -0.111412 0)
(0.0789187 -0.112014 0)
(0.0725778 -0.113784 0)
(0.0661428 -0.116638 0)
(0.0596929 -0.120517 0)
(0.0536471 -0.12533 0)
(0.0476775 -0.131088 0)
(0.0424504 -0.137627 0)
(0.037577 -0.144047 0)
(0.0336282 -0.151637 0)
(0.0303648 -0.157056 0)
(0.0277401 -0.162251 0)
(0.0258929 -0.171529 0)
(0.0230645 -0.178718 0)
(0.0220519 -0.173496 0)
(0.0199803 -0.172029 0)
(0.0167944 -0.216455 0)
(0.00812269 -0.306701 0)
(-0.00196755 -0.309754 0)
(0.000259055 -0.0158293 0)
(0.000568481 -0.0190369 0)
(0.00102243 -0.0118454 0)
(0.00268031 0.00483356 0)
(0.00727017 0.0321165 0)
(0.0166301 0.0704367 0)
(0.0305462 0.114501 0)
(0.0469338 0.156822 0)
(0.0645014 0.193285 0)
(0.083003 0.222972 0)
(0.102557 0.246148 0)
(0.12302 0.263114 0)
(0.143783 0.274078 0)
(0.163975 0.279399 0)
(0.182773 0.279755 0)
(0.199617 0.276106 0)
(0.214275 0.269549 0)
(0.226817 0.261134 0)
(0.237532 0.251747 0)
(0.246791 0.242049 0)
(0.25492 0.232505 0)
(0.262165 0.223386 0)
(0.268777 0.214767 0)
(0.275086 0.206562 0)
(0.281414 0.198668 0)
(0.287873 0.191158 0)
(0.294237 0.184348 0)
(0.300073 0.178644 0)
(0.305087 0.174194 0)
(0.309442 0.170557 0)
(0.313755 0.166656 0)
(0.318648 0.161193 0)
(0.324188 0.153342 0)
(0.329744 0.143205 0)
(0.334394 0.131691 0)
(0.337462 0.120004 0)
(0.338764 0.109146 0)
(0.338547 0.099674 0)
(0.337273 0.091679 0)
(0.335395 0.0848656 0)
(0.333185 0.0786966 0)
(0.330653 0.0725671 0)
(0.327556 0.0659658 0)
(0.323493 0.0585705 0)
(0.318008 0.0502575 0)
(0.310688 0.0410497 0)
(0.301208 0.0310403 0)
(0.289359 0.020325 0)
(0.275032 0.00895549 0)
(0.258199 -0.0030706 0)
(0.238894 -0.0157741 0)
(0.21723 -0.0291335 0)
(0.193451 -0.043035 0)
(0.168015 -0.0572818 0)
(0.141645 -0.07165 0)
(0.115306 -0.0859504 0)
(0.090121 -0.100047 0)
(0.0672469 -0.113821 0)
(0.0477421 -0.127107 0)
(0.0324298 -0.139645 0)
(0.0217845 -0.151098 0)
(0.0159084 -0.161093 0)
(0.0145678 -0.169281 0)
(0.0172232 -0.175394 0)
(0.0231045 -0.179293 0)
(0.0313395 -0.180996 0)
(0.0410699 -0.180645 0)
(0.0515165 -0.178467 0)
(0.0620112 -0.174746 0)
(0.0720101 -0.16979 0)
(0.0810891 -0.16391 0)
(0.0889325 -0.157401 0)
(0.0953182 -0.150539 0)
(0.100106 -0.143584 0)
(0.103229 -0.13678 0)
(0.104686 -0.130354 0)
(0.10454 -0.124513 0)
(0.102905 -0.119444 0)
(0.0999318 -0.115308 0)
(0.0958043 -0.11222 0)
(0.0907259 -0.110253 0)
(0.0848992 -0.109479 0)
(0.0785321 -0.109934 0)
(0.0718105 -0.111629 0)
(0.0650059 -0.114468 0)
(0.0582204 -0.118413 0)
(0.0518818 -0.123315 0)
(0.0456879 -0.129218 0)
(0.0403023 -0.135939 0)
(0.035324 -0.142589 0)
(0.0313691 -0.15046 0)
(0.0281597 -0.15609 0)
(0.0257238 -0.161537 0)
(0.0241158 -0.170859 0)
(0.0215964 -0.178129 0)
(0.0210552 -0.173054 0)
(0.0197457 -0.171296 0)
(0.016821 -0.214494 0)
(0.00827074 -0.303687 0)
(-0.00203908 -0.308716 0)
(0.000227352 -0.015945 0)
(0.00036604 -0.0191334 0)
(0.000620887 -0.0121511 0)
(0.00199037 0.00386944 0)
(0.00619199 0.0299505 0)
(0.0149849 0.0667694 0)
(0.0284182 0.109667 0)
(0.0445041 0.151369 0)
(0.0618113 0.187495 0)
(0.0799309 0.21689 0)
(0.0989041 0.239778 0)
(0.118637 0.256558 0)
(0.138665 0.26755 0)
(0.158269 0.273154 0)
(0.17672 0.27401 0)
(0.193481 0.270991 0)
(0.208298 0.265095 0)
(0.221196 0.257294 0)
(0.232392 0.248425 0)
(0.242171 0.239147 0)
(0.250781 0.229938 0)
(0.25844 0.221075 0)
(0.265426 0.212613 0)
(0.272089 0.204458 0)
(0.278713 0.196553 0)
(0.285331 0.189061 0)
(0.291691 0.182376 0)
(0.297457 0.176894 0)
(0.302524 0.172655 0)
(0.307207 0.169084 0)
(0.312091 0.165065 0)
(0.317579 0.159415 0)
(0.323494 0.151502 0)
(0.329114 0.141558 0)
(0.333611 0.130476 0)
(0.336465 0.119334 0)
(0.337609 0.108996 0)
(0.337323 0.0999289 0)
(0.336041 0.0921967 0)
(0.334166 0.0855367 0)
(0.331921 0.0794812 0)
(0.329292 0.0735052 0)
(0.326037 0.0671607 0)
(0.321771 0.0601584 0)
(0.316061 0.052376 0)
(0.308511 0.0438147 0)
(0.298812 0.0345359 0)
(0.286757 0.0246005 0)
(0.272235 0.0140309 0)
(0.255211 0.00280243 0)
(0.235716 -0.00912694 0)
(0.213863 -0.0217702 0)
(0.189907 -0.0350673 0)
(0.164312 -0.0488962 0)
(0.137802 -0.0631135 0)
(0.111339 -0.0775964 0)
(0.0860535 -0.0922439 0)
(0.0631276 -0.106932 0)
(0.0436635 -0.121446 0)
(0.0285266 -0.135438 0)
(0.0182147 -0.14845 0)
(0.0128287 -0.159985 0)
(0.0121099 -0.169578 0)
(0.0154752 -0.176878 0)
(0.0220991 -0.18169 0)
(0.031056 -0.184017 0)
(0.0414481 -0.184018 0)
(0.0524701 -0.181951 0)
(0.0634396 -0.178141 0)
(0.0738079 -0.172939 0)
(0.0831533 -0.166692 0)
(0.0911657 -0.159731 0)
(0.0976295 -0.152359 0)
(0.10241 -0.144861 0)
(0.105446 -0.137505 0)
(0.106742 -0.130538 0)
(0.106369 -0.124186 0)
(0.104448 -0.118651 0)
(0.101144 -0.114104 0)
(0.0966507 -0.110671 0)
(0.0911823 -0.108425 0)
(0.0849541 -0.10744 0)
(0.07818 -0.10775 0)
(0.0710613 -0.109374 0)
(0.0638689 -0.112206 0)
(0.0567338 -0.116229 0)
(0.0500845 -0.121236 0)
(0.0436582 -0.127306 0)
(0.0381038 -0.134228 0)
(0.0330211 -0.141129 0)
(0.0290571 -0.149304 0)
(0.0259026 -0.155176 0)
(0.023662 -0.160902 0)
(0.0222928 -0.170282 0)
(0.0200781 -0.177674 0)
(0.0199982 -0.172815 0)
(0.0194582 -0.170747 0)
(0.0168264 -0.212614 0)
(0.00842862 -0.300699 0)
(-0.0020844 -0.307675 0)
(0.000195754 -0.016022 0)
(0.000160024 -0.0191692 0)
(0.000227641 -0.0123777 0)
(0.00133527 0.00302062 0)
(0.00517495 0.0279554 0)
(0.0134369 0.0633095 0)
(0.0263956 0.105012 0)
(0.0421923 0.146063 0)
(0.0592828 0.181862 0)
(0.0771046 0.211014 0)
(0.095618 0.233669 0)
(0.114753 0.250293 0)
(0.134153 0.261296 0)
(0.153226 0.267128 0)
(0.171334 0.268403 0)
(0.18798 0.26593 0)
(0.202903 0.260621 0)
(0.216087 0.253376 0)
(0.227682 0.244995 0)
(0.237892 0.236131 0)
(0.246905 0.227269 0)
(0.25493 0.218672 0)
(0.262265 0.210372 0)
(0.269251 0.202281 0)
(0.276111 0.1944 0)
(0.282814 0.186975 0)
(0.289129 0.180442 0)
(0.294853 0.175158 0)
(0.300052 0.171058 0)
(0.305121 0.167477 0)
(0.310555 0.163313 0)
(0.316542 0.157517 0)
(0.322728 0.149625 0)
(0.32837 0.139946 0)
(0.332744 0.129324 0)
(0.335464 0.118717 0)
(0.336538 0.10887 0)
(0.336257 0.100182 0)
(0.33502 0.0927017 0)
(0.333176 0.0862012 0)
(0.330908 0.0802766 0)
(0.328183 0.0744737 0)
(0.324763 0.0684013 0)
(0.320284 0.0617987 0)
(0.314338 0.0545447 0)
(0.30655 0.0466215 0)
(0.296623 0.0380608 0)
(0.284355 0.0288927 0)
(0.269627 0.019112 0)
(0.252395 0.00867285 0)
(0.232681 -0.00248954 0)
(0.210598 -0.0144237 0)
(0.186406 -0.0271252 0)
(0.160575 -0.0405441 0)
(0.133828 -0.0546156 0)
(0.107131 -0.0692841 0)
(0.0816337 -0.0844887 0)
(0.0585615 -0.100106 0)
(0.0390715 -0.115877 0)
(0.0240789 -0.131359 0)
(0.0141067 -0.14597 0)
(0.0092511 -0.159077 0)
(0.00922086 -0.170097 0)
(0.0133808 -0.178591 0)
(0.0208397 -0.184309 0)
(0.0306079 -0.187239 0)
(0.0417416 -0.187563 0)
(0.0534064 -0.185574 0)
(0.0649045 -0.181641 0)
(0.0756832 -0.176159 0)
(0.085325 -0.169516 0)
(0.0935273 -0.162075 0)
(0.100082 -0.15417 0)
(0.104863 -0.146109 0)
(0.107812 -0.138182 0)
(0.108942 -0.130657 0)
(0.10833 -0.123779 0)
(0.106111 -0.117766 0)
(0.10246 -0.1128 0)
(0.0975834 -0.109015 0)
(0.091707 -0.106488 0)
(0.0850594 -0.105292 0)
(0.0778599 -0.105459 0)
(0.0703274 -0.107017 0)
(0.0627285 -0.109849 0)
(0.055229 -0.113962 0)
(0.0482499 -0.119091 0)
(0.0415827 -0.12535 0)
(0.0358478 -0.13249 0)
(0.0306612 -0.139667 0)
(0.0266856 -0.148168 0)
(0.0235871 -0.154313 0)
(0.0215483 -0.160345 0)
(0.0204186 -0.169795 0)
(0.0185068 -0.177349 0)
(0.0188752 -0.172774 0)
(0.0191099 -0.170383 0)
(0.0168066 -0.210827 0)
(0.0085917 -0.297742 0)
(-0.00210551 -0.306625 0)
(0.000163657 -0.01606 0)
(-5.16209e-05 -0.0191472 0)
(-0.000162167 -0.0125325 0)
(0.000713026 0.00227588 0)
(0.00421493 0.0261177 0)
(0.0119823 0.0600456 0)
(0.0244744 0.10053 0)
(0.0399897 0.140895 0)
(0.0568974 0.176367 0)
(0.0744904 0.205309 0)
(0.0926444 0.227779 0)
(0.111295 0.244275 0)
(0.130166 0.255286 0)
(0.148769 0.261303 0)
(0.166554 0.262934 0)
(0.183067 0.260934 0)
(0.198052 0.256145 0)
(0.211457 0.249406 0)
(0.223373 0.241486 0)
(0.233931 0.233031 0)
(0.243279 0.224518 0)
(0.251631 0.216188 0)
(0.259289 0.208055 0)
(0.266559 0.200048 0)
(0.273592 0.192232 0)
(0.280323 0.184914 0)
(0.28658 0.178543 0)
(0.2923 0.17342 0)
(0.297683 0.16939 0)
(0.303148 0.165742 0)
(0.309067 0.161426 0)
(0.315446 0.155534 0)
(0.321816 0.147733 0)
(0.327454 0.138368 0)
(0.331743 0.128217 0)
(0.334398 0.118127 0)
(0.335476 0.108744 0)
(0.33526 0.100415 0)
(0.334108 0.0931825 0)
(0.332321 0.0868527 0)
(0.330046 0.0810794 0)
(0.327232 0.0754713 0)
(0.323654 0.0696868 0)
(0.318966 0.0634907 0)
(0.312788 0.056763 0)
(0.304768 0.049469 0)
(0.294619 0.0416142 0)
(0.282139 0.0332018 0)
(0.267202 0.0242018 0)
(0.249751 0.0145469 0)
(0.229797 0.00414517 0)
(0.207449 -0.00708077 0)
(0.182968 -0.0191889 0)
(0.156826 -0.0321992 0)
(0.129747 -0.0461244 0)
(0.102711 -0.0609799 0)
(0.0768976 -0.07675 0)
(0.0535875 -0.0933186 0)
(0.0340042 -0.110382 0)
(0.019121 -0.127402 0)
(0.00948971 -0.14366 0)
(0.00520038 -0.158383 0)
(0.00592219 -0.170857 0)
(0.0109591 -0.180557 0)
(0.0193441 -0.187172 0)
(0.0300115 -0.190684 0)
(0.0419649 -0.191298 0)
(0.0543381 -0.18935 0)
(0.0664164 -0.185256 0)
(0.0776444 -0.179459 0)
(0.0876106 -0.172388 0)
(0.096022 -0.16444 0)
(0.10268 -0.155977 0)
(0.107466 -0.14733 0)
(0.110328 -0.138811 0)
(0.111286 -0.13071 0)
(0.110426 -0.12329 0)
(0.107894 -0.116786 0)
(0.103878 -0.111393 0)
(0.098601 -0.10725 0)
(0.0922983 -0.104439 0)
(0.0852131 -0.103033 0)
(0.0775697 -0.103059 0)
(0.069606 -0.104555 0)
(0.0615813 -0.107394 0)
(0.0537019 -0.111609 0)
(0.046373 -0.116878 0)
(0.0394554 -0.123349 0)
(0.0335276 -0.130726 0)
(0.0282372 -0.138204 0)
(0.0242478 -0.147051 0)
(0.0212072 -0.153502 0)
(0.0193769 -0.159866 0)
(0.0184887 -0.169398 0)
(0.0168807 -0.177148 0)
(0.017682 -0.172925 0)
(0.0186948 -0.170207 0)
(0.016758 -0.209141 0)
(0.00875595 -0.294826 0)
(-0.00210473 -0.305561 0)
(0.000130212 -0.0160588 0)
(-0.00027036 -0.0190701 0)
(-0.000553389 -0.0126223 0)
(0.000120295 0.00162518 0)
(0.00330783 0.0244247 0)
(0.0106167 0.0569665 0)
(0.0226506 0.0962154 0)
(0.0378881 0.135856 0)
(0.0546378 0.170992 0)
(0.0720582 0.19975 0)
(0.0899361 0.222074 0)
(0.108199 0.238471 0)
(0.126629 0.249488 0)
(0.144825 0.255662 0)
(0.162313 0.257599 0)
(0.178686 0.256011 0)
(0.193696 0.251683 0)
(0.207265 0.245407 0)
(0.219426 0.237924 0)
(0.230259 0.22987 0)
(0.239891 0.221703 0)
(0.248537 0.213636 0)
(0.256489 0.205675 0)
(0.263996 0.197779 0)
(0.271148 0.190066 0)
(0.277872 0.182885 0)
(0.284078 0.176673 0)
(0.28983 0.171667 0)
(0.295421 0.167648 0)
(0.301249 0.163895 0)
(0.307565 0.159438 0)
(0.314229 0.153499 0)
(0.32071 0.145842 0)
(0.326333 0.13682 0)
(0.330574 0.127138 0)
(0.333222 0.117542 0)
(0.334361 0.108599 0)
(0.334255 0.100614 0)
(0.333222 0.0936301 0)
(0.331516 0.0874851 0)
(0.32925 0.0818849 0)
(0.326365 0.0764935 0)
(0.322643 0.0710125 0)
(0.317765 0.0652294 0)
(0.311374 0.0590255 0)
(0.303139 0.0523519 0)
(0.292783 0.0451925 0)
(0.280102 0.0375258 0)
(0.264958 0.0293008 0)
(0.247281 0.0204275 0)
(0.22707 0.0107877 0)
(0.204427 0.000268288 0)
(0.179608 -0.0112403 0)
(0.153085 -0.0238371 0)
(0.125586 -0.0376107 0)
(0.0981094 -0.0526524 0)
(0.0718785 -0.0689979 0)
(0.0482379 -0.0865436 0)
(0.028489 -0.104943 0)
(0.0136737 -0.123557 0)
(0.00437871 -0.141526 0)
(0.000688858 -0.157915 0)
(0.00222586 -0.171869 0)
(0.00822249 -0.182794 0)
(0.017626 -0.190303 0)
(0.0292813 -0.19437 0)
(0.0421321 -0.195241 0)
(0.0552776 -0.193294 0)
(0.0679859 -0.188998 0)
(0.0797 -0.182847 0)
(0.0900166 -0.175314 0)
(0.0986547 -0.166829 0)
(0.105427 -0.157781 0)
(0.110222 -0.148524 0)
(0.112997 -0.139391 0)
(0.113776 -0.130694 0)
(0.112657 -0.122717 0)
(0.109796 -0.115709 0)
(0.105399 -0.109879 0)
(0.0997023 -0.105373 0)
(0.0929544 -0.102276 0)
(0.0854133 -0.100659 0)
(0.0773071 -0.100547 0)
(0.0688944 -0.101984 0)
(0.0604241 -0.104839 0)
(0.0521486 -0.109166 0)
(0.0444488 -0.114593 0)
(0.0372703 -0.121298 0)
(0.0311367 -0.128933 0)
(0.025742 -0.136738 0)
(0.021737 -0.145954 0)
(0.0187568 -0.152742 0)
(0.0171424 -0.159464 0)
(0.0164991 -0.169087 0)
(0.0151982 -0.177066 0)
(0.0164161 -0.173262 0)
(0.0182085 -0.170218 0)
(0.0166774 -0.207567 0)
(0.00891786 -0.291956 0)
(-0.00208462 -0.304483 0)
(9.45013e-05 -0.0160182 0)
(-0.000497223 -0.0189394 0)
(-0.000949884 -0.0126557 0)
(-0.000447374 0.00105993 0)
(0.0024494 0.0228641 0)
(0.00933493 0.054061 0)
(0.0209203 0.0920637 0)
(0.0358803 0.130941 0)
(0.0524885 0.165724 0)
(0.0697811 0.194314 0)
(0.0874522 0.216523 0)
(0.10541 0.232847 0)
(0.123477 0.243878 0)
(0.141324 0.250189 0)
(0.158544 0.25239 0)
(0.174776 0.251164 0)
(0.189783 0.24725 0)
(0.203462 0.241401 0)
(0.215804 0.234334 0)
(0.226853 0.226668 0)
(0.236726 0.218836 0)
(0.245637 0.211027 0)
(0.253848 0.203246 0)
(0.261548 0.195487 0)
(0.268778 0.187913 0)
(0.275483 0.18089 0)
(0.281657 0.174824 0)
(0.287469 0.169894 0)
(0.293262 0.16584 0)
(0.299396 0.161963 0)
(0.306008 0.157383 0)
(0.312859 0.151439 0)
(0.319397 0.143963 0)
(0.324999 0.135297 0)
(0.329223 0.126073 0)
(0.33191 0.116948 0)
(0.333153 0.108423 0)
(0.333193 0.10077 0)
(0.332303 0.0940375 0)
(0.330697 0.0880927 0)
(0.328461 0.0826872 0)
(0.325527 0.0775333 0)
(0.321688 0.0723704 0)
(0.316646 0.0670062 0)
(0.310071 0.0613237 0)
(0.301648 0.055263 0)
(0.291106 0.0487896 0)
(0.278237 0.0418614 0)
(0.262894 0.0344076 0)
(0.244989 0.0263164 0)
(0.224509 0.0174456 0)
(0.201544 0.00763471 0)
(0.176342 -0.00326696 0)
(0.149371 -0.0154356 0)
(0.121369 -0.0290477 0)
(0.0933556 -0.0442726 0)
(0.0666055 -0.0612031 0)
(0.0425365 -0.0797548 0)
(0.0225413 -0.0995411 0)
(0.0077435 -0.119815 0)
(-0.00122384 -0.139579 0)
(-0.00427767 -0.157686 0)
(-0.00186234 -0.173136 0)
(0.00517715 -0.185318 0)
(0.0156963 -0.193722 0)
(0.0284303 -0.198319 0)
(0.0422563 -0.199409 0)
(0.0562377 -0.197419 0)
(0.0696241 -0.192876 0)
(0.0818588 -0.18633 0)
(0.0925498 -0.178298 0)
(0.101431 -0.169245 0)
(0.108327 -0.159584 0)
(0.113135 -0.149692 0)
(0.11582 -0.139923 0)
(0.116414 -0.13061 0)
(0.115023 -0.122057 0)
(0.111818 -0.114532 0)
(0.107021 -0.108255 0)
(0.100886 -0.103382 0)
(0.0936737 -0.0999961 0)
(0.085658 -0.0981677 0)
(0.07707 -0.0979204 0)
(0.0681902 -0.0993017 0)
(0.059254 -0.10218 0)
(0.0505651 -0.10663 0)
(0.0424727 -0.112233 0)
(0.035021 -0.119197 0)
(0.0286683 -0.127112 0)
(0.0231685 -0.135271 0)
(0.0191464 -0.144876 0)
(0.0162302 -0.152035 0)
(0.0148394 -0.159139 0)
(0.0144462 -0.168864 0)
(0.0134587 -0.177098 0)
(0.0150763 -0.173778 0)
(0.0176476 -0.17042 0)
(0.0165621 -0.206113 0)
(0.00907436 -0.289141 0)
(-0.00204797 -0.303387 0)
(5.58103e-05 -0.0159375 0)
(-0.000733213 -0.0187549 0)
(-0.0013542 -0.0126396 0)
(-0.000995071 0.000572032 0)
(0.00163525 0.0214238 0)
(0.00813156 0.0513185 0)
(0.0192798 0.0880703 0)
(0.0339596 0.126147 0)
(0.0504358 0.160553 0)
(0.067635 0.188984 0)
(0.0851563 0.211104 0)
(0.102878 0.22738 0)
(0.120651 0.238431 0)
(0.138201 0.244867 0)
(0.155184 0.247302 0)
(0.171279 0.246397 0)
(0.186259 0.242858 0)
(0.200004 0.237404 0)
(0.212472 0.230733 0)
(0.223688 0.223439 0)
(0.233767 0.215929 0)
(0.242914 0.208373 0)
(0.251348 0.200783 0)
(0.259201 0.193186 0)
(0.266486 0.185779 0)
(0.273176 0.178924 0)
(0.279342 0.172989 0)
(0.285229 0.168102 0)
(0.291203 0.163982 0)
(0.297572 0.159974 0)
(0.304383 0.155293 0)
(0.311337 0.149376 0)
(0.317887 0.142104 0)
(0.323468 0.133795 0)
(0.327701 0.125012 0)
(0.33046 0.116333 0)
(0.331837 0.108205 0)
(0.332045 0.100876 0)
(0.331317 0.0943996 0)
(0.32983 0.0886699 0)
(0.327645 0.0834794 0)
(0.324688 0.078582 0)
(0.320763 0.0737505 0)
(0.315592 0.0688102 0)
(0.308867 0.0636473 0)
(0.300285 0.0581933 0)
(0.289583 0.0523986 0)
(0.276546 0.0462042 0)
(0.261013 0.0395202 0)
(0.242882 0.0322142 0)
(0.222122 0.0241192 0)
(0.198811 0.0150346 0)
(0.173186 0.00474905 0)
(0.145708 -0.00697584 0)
(0.117121 -0.0204105 0)
(0.0884762 -0.0358122 0)
(0.061101 -0.053336 0)
(0.0364971 -0.0729241 0)
(0.0161648 -0.0941531 0)
(0.0013233 -0.11617 0)
(-0.0073244 -0.137802 0)
(-0.00969557 -0.157703 0)
(-0.0063393 -0.17472 0)
(0.00182438 -0.188126 0)
(0.0135632 -0.197452 0)
(0.0274715 -0.20255 0)
(0.0423514 -0.203817 0)
(0.0572314 -0.201736 0)
(0.0713424 -0.1969 0)
(0.0841302 -0.189914 0)
(0.0952173 -0.181345 0)
(0.104355 -0.17169 0)
(0.111383 -0.161388 0)
(0.116208 -0.150836 0)
(0.118801 -0.140407 0)
(0.119201 -0.130455 0)
(0.117525 -0.121308 0)
(0.11396 -0.113252 0)
(0.108744 -0.10652 0)
(0.10215 -0.101272 0)
(0.0944544 -0.0975957 0)
(0.0859452 -0.0955561 0)
(0.0768562 -0.095176 0)
(0.0674906 -0.0965051 0)
(0.0580679 -0.0994138 0)
(0.0489473 -0.103997 0)
(0.0404398 -0.109795 0)
(0.0327014 -0.117043 0)
(0.0261158 -0.125259 0)
(0.0205097 -0.1338 0)
(0.0164691 -0.143817 0)
(0.0136216 -0.151381 0)
(0.0124633 -0.158891 0)
(0.0123272 -0.168727 0)
(0.0116621 -0.17724 0)
(0.0136628 -0.174466 0)
(0.0170093 -0.170812 0)
(0.0164094 -0.204788 0)
(0.00922278 -0.286386 0)
(-0.00199759 -0.302274 0)
(1.35113e-05 -0.0158156 0)
(-0.000978768 -0.0185171 0)
(-0.00176804 -0.0125788 0)
(-0.00152847 0.000151028 0)
(0.000861172 0.0200931 0)
(0.00700107 0.0487285 0)
(0.0177254 0.0842308 0)
(0.0321202 0.12147 0)
(0.0484679 0.155474 0)
(0.0655989 0.183745 0)
(0.0830169 0.205797 0)
(0.100561 0.222046 0)
(0.118098 0.233128 0)
(0.135401 0.23968 0)
(0.152176 0.242326 0)
(0.168139 0.241711 0)
(0.183075 0.238514 0)
(0.196849 0.233431 0)
(0.2094 0.227135 0)
(0.220746 0.220197 0)
(0.231001 0.212994 0)
(0.240351 0.205685 0)
(0.248971 0.198296 0)
(0.256947 0.190885 0)
(0.264276 0.183664 0)
(0.270966 0.176982 0)
(0.277149 0.171162 0)
(0.28312 0.166292 0)
(0.289241 0.162091 0)
(0.295771 0.157955 0)
(0.302697 0.153194 0)
(0.309686 0.147328 0)
(0.316214 0.140271 0)
(0.321774 0.132311 0)
(0.326032 0.123947 0)
(0.328885 0.11569 0)
(0.330416 0.107941 0)
(0.330807 0.100929 0)
(0.330254 0.0947125 0)
(0.328901 0.0892117 0)
(0.326788 0.0842542 0)
(0.323836 0.0796303 0)
(0.319859 0.0751415 0)
(0.314597 0.0706298 0)
(0.307757 0.0659852 0)
(0.29905 0.0611331 0)
(0.288215 0.0560121 0)
(0.275029 0.0505483 0)
(0.259319 0.0446351 0)
(0.240966 0.0381213 0)
(0.21992 0.0308092 0)
(0.196242 0.0224695 0)
(0.170156 0.0128244 0)
(0.142115 0.00155271 0)
(0.112867 -0.0116763 0)
(0.0834936 -0.0272433 0)
(0.0553811 -0.0453653 0)
(0.0301253 -0.0660213 0)
(0.00935296 -0.0887525 0)
(-0.00559428 -0.11261 0)
(-0.0139321 -0.136186 0)
(-0.015589 -0.157967 0)
(-0.0112006 -0.17664 0)
(-0.00182063 -0.191257 0)
(0.0112283 -0.201516 0)
(0.0264176 -0.207081 0)
(0.0424311 -0.208482 0)
(0.0582723 -0.206258 0)
(0.0731525 -0.201075 0)
(0.0865236 -0.193604 0)
(0.0980262 -0.184457 0)
(0.107432 -0.174167 0)
(0.114599 -0.163194 0)
(0.119443 -0.151955 0)
(0.121942 -0.14084 0)
(0.12214 -0.130228 0)
(0.120165 -0.120468 0)
(0.116221 -0.111866 0)
(0.110566 -0.104668 0)
(0.103494 -0.0990408 0)
(0.0952946 -0.0950724 0)
(0.0862728 -0.0928217 0)
(0.0766638 -0.0923113 0)
(0.0667932 -0.0935912 0)
(0.056863 -0.0965379 0)
(0.0472913 -0.101264 0)
(0.0383457 -0.107276 0)
(0.0303051 -0.114832 0)
(0.0234724 -0.123375 0)
(0.0177587 -0.132327 0)
(0.0136983 -0.142779 0)
(0.0109254 -0.150782 0)
(0.0100094 -0.158723 0)
(0.0101392 -0.168678 0)
(0.00980981 -0.177489 0)
(0.0121769 -0.17532 0)
(0.016291 -0.171395 0)
(0.0162171 -0.203599 0)
(0.00936081 -0.283699 0)
(-0.0019363 -0.301143 0)
(-3.28276e-05 -0.0156514 0)
(-0.00123358 -0.0182262 0)
(-0.0021925 -0.0124774 0)
(-0.00205306 -0.000215178 0)
(0.000123526 0.0188628 0)
(0.00593776 0.0462809 0)
(0.0162536 0.080541 0)
(0.0303574 0.116909 0)
(0.0465748 0.150481 0)
(0.0636544 0.178587 0)
(0.0810061 0.200586 0)
(0.098422 0.216827 0)
(0.115774 0.227951 0)
(0.132873 0.234616 0)
(0.149468 0.237455 0)
(0.165307 0.237106 0)
(0.180184 0.234227 0)
(0.193959 0.229492 0)
(0.20656 0.223552 0)
(0.218007 0.21695 0)
(0.228409 0.210041 0)
(0.23793 0.202975 0)
(0.246704 0.195796 0)
(0.254779 0.188587 0)
(0.262151 0.181566 0)
(0.268861 0.175057 0)
(0.275084 0.16934 0)
(0.281138 0.164472 0)
(0.287372 0.160183 0)
(0.294001 0.155929 0)
(0.300969 0.151108 0)
(0.307941 0.145309 0)
(0.314423 0.138468 0)
(0.319959 0.130843 0)
(0.324253 0.122874 0)
(0.327213 0.115015 0)
(0.328908 0.107628 0)
(0.32949 0.100926 0)
(0.329121 0.0949737 0)
(0.327915 0.0897138 0)
(0.325894 0.0850047 0)
(0.322975 0.0806685 0)
(0.31898 0.0765323 0)
(0.313664 0.0724534 0)
(0.306746 0.0683265 0)
(0.297947 0.064073 0)
(0.287005 0.0596222 0)
(0.273692 0.0548884 0)
(0.25782 0.0497488 0)
(0.239249 0.0440356 0)
(0.217912 0.0375235 0)
(0.193853 0.0299463 0)
(0.16727 0.0209571 0)
(0.138614 0.0101757 0)
(0.108631 -0.00284795 0)
(0.0784262 -0.0185374 0)
(0.0494556 -0.0372584 0)
(0.0234213 -0.0590121 0)
(0.00209343 -0.0833211 0)
(-0.013026 -0.109113 0)
(-0.0210621 -0.134741 0)
(-0.0219647 -0.158492 0)
(-0.0164569 -0.178878 0)
(-0.00576018 -0.194763 0)
(0.0087048 -0.205938 0)
(0.0252826 -0.211932 0)
(0.04251 -0.213417 0)
(0.0593744 -0.210995 0)
(0.0750668 -0.205411 0)
(0.0890487 -0.197404 0)
(0.100984 -0.187638 0)
(0.110669 -0.176678 0)
(0.11798 -0.165004 0)
(0.122845 -0.153049 0)
(0.125245 -0.141224 0)
(0.125232 -0.129927 0)
(0.122944 -0.119534 0)
(0.118602 -0.110371 0)
(0.112487 -0.102698 0)
(0.104915 -0.0966857 0)
(0.0961923 -0.0924234 0)
(0.0866389 -0.0899619 0)
(0.0764908 -0.0893237 0)
(0.0660956 -0.0905568 0)
(0.0556368 -0.0935487 0)
(0.0455932 -0.0984259 0)
(0.0361858 -0.104672 0)
(0.0278254 -0.112561 0)
(0.0207312 -0.121457 0)
(0.0149085 -0.130852 0)
(0.0108271 -0.141761 0)
(0.00813622 -0.150239 0)
(0.00747301 -0.158634 0)
(0.00788019 -0.168717 0)
(0.007903 -0.177843 0)
(0.0106204 -0.176332 0)
(0.0154908 -0.172169 0)
(0.0159832 -0.202556 0)
(0.00948646 -0.281085 0)
(-0.00186676 -0.299995 0)
(-8.33319e-05 -0.015444 0)
(-0.00149647 -0.0178823 0)
(-0.00262775 -0.0123385 0)
(-0.00257331 -0.000535188 0)
(-0.000580666 0.0177238 0)
(0.00493593 0.0439658 0)
(0.0148608 0.0769965 0)
(0.0286672 0.112465 0)
(0.0447483 0.145571 0)
(0.0617861 0.173503 0)
(0.0791 0.195457 0)
(0.0964285 0.211707 0)
(0.11364 0.222885 0)
(0.130573 0.229662 0)
(0.147014 0.232683 0)
(0.162737 0.232581 0)
(0.177547 0.23 0)
(0.191302 0.225595 0)
(0.203931 0.219992 0)
(0.215454 0.213709 0)
(0.225976 0.207078 0)
(0.235637 0.200252 0)
(0.244534 0.193291 0)
(0.252693 0.186296 0)
(0.260113 0.179482 0)
(0.266862 0.173142 0)
(0.273143 0.167518 0)
(0.279278 0.162646 0)
(0.285593 0.158272 0)
(0.292269 0.153915 0)
(0.299228 0.14905 0)
(0.306143 0.143327 0)
(0.312562 0.136697 0)
(0.318071 0.12939 0)
(0.322406 0.121791 0)
(0.325478 0.114307 0)
(0.32734 0.107265 0)
(0.328115 0.100866 0)
(0.327936 0.0951816 0)
(0.326888 0.0901724 0)
(0.324978 0.0857244 0)
(0.322119 0.0816879 0)
(0.318138 0.0779125 0)
(0.312801 0.0742701 0)
(0.305841 0.0706606 0)
(0.296981 0.0670037 0)
(0.28596 0.0632215 0)
(0.27254 0.0592186 0)
(0.25652 0.0548583 0)
(0.23774 0.0499565 0)
(0.216113 0.0442659 0)
(0.191653 0.0374715 0)
(0.164545 0.0291723 0)
(0.135221 0.0189185 0)
(0.104431 0.00613772 0)
(0.0732964 -0.00966383 0)
(0.0433312 -0.0289806 0)
(0.0163777 -0.0518553 0)
(-0.00563013 -0.0778473 0)
(-0.0209896 -0.105661 0)
(-0.0287344 -0.133462 0)
(-0.0288393 -0.159299 0)
(-0.0221151 -0.18147 0)
(-0.00999174 -0.198695 0)
(0.00600241 -0.210701 0)
(0.02408 -0.217122 0)
(0.0426032 -0.218639 0)
(0.0605524 -0.215956 0)
(0.0770978 -0.209912 0)
(0.0917154 -0.201317 0)
(0.104097 -0.190889 0)
(0.11407 -0.179222 0)
(0.121529 -0.166817 0)
(0.126415 -0.154119 0)
(0.128713 -0.141557 0)
(0.128479 -0.129551 0)
(0.125862 -0.118504 0)
(0.121102 -0.108763 0)
(0.114506 -0.100605 0)
(0.106412 -0.0942033 0)
(0.0971457 -0.0896463 0)
(0.0870414 -0.0869745 0)
(0.0763354 -0.0862109 0)
(0.0653956 -0.0873992 0)
(0.0543868 -0.0904432 0)
(0.0438492 -0.0954792 0)
(0.033956 -0.101979 0)
(0.0252556 -0.110227 0)
(0.0178853 -0.119504 0)
(0.0119517 -0.129373 0)
(0.00784876 -0.140763 0)
(0.00524871 -0.149754 0)
(0.00484953 -0.158628 0)
(0.00554825 -0.168847 0)
(0.00594295 -0.178298 0)
(0.00899595 -0.177492 0)
(0.0146079 -0.173134 0)
(0.0157059 -0.201664 0)
(0.00959804 -0.278551 0)
(-0.00179141 -0.298832 0)
(-0.000137765 -0.0151926 0)
(-0.00176533 -0.0174859 0)
(-0.00307256 -0.0121641 0)
(-0.00309315 -0.000815717 0)
(-0.0012541 0.0166654 0)
(0.00399031 0.0417738 0)
(0.0135436 0.0735925 0)
(0.0270465 0.108136 0)
(0.042982 0.140745 0)
(0.0599813 0.168486 0)
(0.0772781 0.190401 0)
(0.0945529 0.206674 0)
(0.111661 0.217916 0)
(0.128462 0.224807 0)
(0.144771 0.228003 0)
(0.160388 0.228135 0)
(0.175127 0.225835 0)
(0.18885 0.221744 0)
(0.20149 0.216461 0)
(0.21307 0.210479 0)
(0.223688 0.204116 0)
(0.233459 0.197527 0)
(0.242455 0.190788 0)
(0.250687 0.184012 0)
(0.258161 0.177406 0)
(0.264967 0.171233 0)
(0.271318 0.165697 0)
(0.277528 0.16082 0)
(0.2839 0.15637 0)
(0.290586 0.151925 0)
(0.297499 0.147031 0)
(0.304333 0.14139 0)
(0.310676 0.134962 0)
(0.316156 0.127951 0)
(0.320531 0.120698 0)
(0.323716 0.113566 0)
(0.325743 0.106854 0)
(0.326711 0.100752 0)
(0.326723 0.0953356 0)
(0.325842 0.0905845 0)
(0.324059 0.0864078 0)
(0.321283 0.0826805 0)
(0.317346 0.0792728 0)
(0.312022 0.0760701 0)
(0.305049 0.0729782 0)
(0.296159 0.0699167 0)
(0.285084 0.066803 0)
(0.271579 0.063533 0)
(0.255427 0.0599601 0)
(0.236449 0.0558832 0)
(0.214531 0.0510305 0)
(0.189661 0.0450453 0)
(0.162002 0.0374822 0)
(0.131962 0.0277875 0)
(0.100283 0.0152918 0)
(0.0681053 -0.000611124 0)
(0.0370138 -0.0204951 0)
(0.00898171 -0.0445169 0)
(-0.0138353 -0.0722995 0)
(-0.029505 -0.102241 0)
(-0.0369758 -0.132351 0)
(-0.0362325 -0.160402 0)
(-0.0281953 -0.184438 0)
(-0.0145051 -0.203071 0)
(0.00314256 -0.215837 0)
(0.0228132 -0.222671 0)
(0.0427264 -0.22416 0)
(0.0618217 -0.221152 0)
(0.0792587 -0.214583 0)
(0.0945337 -0.205346 0)
(0.107374 -0.19421 0)
(0.117639 -0.181802 0)
(0.125251 -0.168635 0)
(0.130158 -0.155165 0)
(0.13235 -0.141837 0)
(0.131885 -0.129097 0)
(0.128922 -0.117373 0)
(0.123723 -0.107039 0)
(0.116621 -0.0983856 0)
(0.107982 -0.0915908 0)
(0.0981524 -0.0867386 0)
(0.0874783 -0.0838572 0)
(0.0761958 -0.0829705 0)
(0.0646912 -0.0841155 0)
(0.0531107 -0.087218 0)
(0.0420554 -0.0924199 0)
(0.031652 -0.0991933 0)
(0.0225889 -0.107826 0)
(0.0149278 -0.117515 0)
(0.00888083 -0.127891 0)
(0.00475637 -0.139787 0)
(0.00225764 -0.14933 0)
(0.00213417 -0.158705 0)
(0.0031419 -0.16907 0)
(0.00393113 -0.178855 0)
(0.00730677 -0.178793 0)
(0.0136421 -0.174289 0)
(0.015384 -0.200929 0)
(0.0096941 -0.276102 0)
(-0.0017124 -0.297656 0)
(-0.000195533 -0.014897 0)
(-0.00203709 -0.0170375 0)
(-0.00352415 -0.0119555 0)
(-0.00361557 -0.00106282 0)
(-0.00189929 0.0156773 0)
(0.00309623 0.0396958 0)
(0.0122983 0.0703243 0)
(0.0254927 0.103923 0)
(0.0412708 0.136001 0)
(0.0582295 0.163534 0)
(0.0755233 0.185409 0)
(0.0927713 0.201717 0)
(0.109809 0.213033 0)
(0.126506 0.220043 0)
(0.142706 0.223409 0)
(0.158226 0.223764 0)
(0.172894 0.221735 0)
(0.186579 0.217941 0)
(0.199219 0.212963 0)
(0.21084 0.207267 0)
(0.221531 0.201162 0)
(0.231388 0.194806 0)
(0.240461 0.188291 0)
(0.248757 0.181737 0)
(0.256292 0.175338 0)
(0.263166 0.169325 0)
(0.269594 0.163876 0)
(0.275877 0.158997 0)
(0.282288 0.154484 0)
(0.288958 0.149967 0)
(0.295803 0.145057 0)
(0.302541 0.139499 0)
(0.308802 0.133263 0)
(0.314251 0.126528 0)
(0.318666 0.119596 0)
(0.321959 0.112795 0)
(0.324147 0.106396 0)
(0.325305 0.100583 0)
(0.325508 0.0954356 0)
(0.324799 0.0909478 0)
(0.323157 0.0870503 0)
(0.320486 0.0836397 0)
(0.316619 0.0806051 0)
(0.311335 0.0778446 0)
(0.304381 0.0752708 0)
(0.295487 0.0728044 0)
(0.284383 0.0703597 0)
(0.270815 0.0678261 0)
(0.254548 0.0650493 0)
(0.235383 0.0618106 0)
(0.213177 0.0578167 0)
(0.187891 0.052674 0)
(0.159656 0.0458778 0)
(0.128844 0.0367797 0)
(0.096199 0.0246337 0)
(0.0628754 0.00866204 0)
(0.0305126 -0.0117603 0)
(0.00122008 -0.036983 0)
(-0.0225384 -0.0666241 0)
(-0.0385991 -0.0988372 0)
(-0.0458161 -0.131418 0)
(-0.0441655 -0.161812 0)
(-0.0347057 -0.187809 0)
(-0.0193006 -0.207867 0)
(0.000132841 -0.22142 0)
(0.0215 -0.228604 0)
(0.0428965 -0.229996 0)
(0.0631985 -0.226589 0)
(0.081563 -0.219427 0)
(0.0975139 -0.20949 0)
(0.11082 -0.197602 0)
(0.121383 -0.184416 0)
(0.129148 -0.170456 0)
(0.134077 -0.156186 0)
(0.136157 -0.142065 0)
(0.13545 -0.128563 0)
(0.132124 -0.11614 0)
(0.126463 -0.105195 0)
(0.118831 -0.096037 0)
(0.109625 -0.0888451 0)
(0.0992103 -0.0836979 0)
(0.0879475 -0.080608 0)
(0.0760708 -0.0796004 0)
(0.0639807 -0.0807029 0)
(0.051807 -0.0838696 0)
(0.0402087 -0.0892437 0)
(0.0292701 -0.0963099 0)
(0.0198182 -0.105355 0)
(0.0118515 -0.115489 0)
(0.00568813 -0.126406 0)
(0.00154249 -0.138837 0)
(-0.000841425 -0.148975 0)
(-0.000677084 -0.158869 0)
(0.000659317 -0.169383 0)
(0.00186887 -0.179512 0)
(0.00555685 -0.180226 0)
(0.0125936 -0.175631 0)
(0.0150165 -0.200359 0)
(0.00977343 -0.273743 0)
(-0.00163159 -0.29647 0)
(-0.000255722 -0.0145576 0)
(-0.00230779 -0.0165379 0)
(-0.00397818 -0.0117132 0)
(-0.00414206 -0.00128174 0)
(-0.00251861 0.0147503 0)
(0.00224961 0.0377232 0)
(0.0111216 0.0671866 0)
(0.0240042 0.0998267 0)
(0.0396111 0.131342 0)
(0.0565227 0.158644 0)
(0.0738214 0.180477 0)
(0.0910636 0.196826 0)
(0.108057 0.208227 0)
(0.124677 0.215361 0)
(0.140786 0.218895 0)
(0.15622 0.219467 0)
(0.170821 0.217697 0)
(0.184465 0.214189 0)
(0.197099 0.2095 0)
(0.20875 0.204078 0)
(0.219495 0.198222 0)
(0.229416 0.192096 0)
(0.238551 0.185805 0)
(0.246904 0.179471 0)
(0.254502 0.173273 0)
(0.261451 0.167418 0)
(0.267961 0.162053 0)
(0.27431 0.157181 0)
(0.280748 0.152618 0)
(0.287389 0.148047 0)
(0.294153 0.143131 0)
(0.30079 0.137657 0)
(0.306968 0.1316 0)
(0.312385 0.12512 0)
(0.316837 0.118486 0)
(0.320234 0.111994 0)
(0.322578 0.105895 0)
(0.323919 0.100362 0)
(0.324313 0.0954821 0)
(0.323783 0.0912609 0)
(0.322293 0.0876481 0)
(0.319744 0.0845599 0)
(0.315969 0.0819025 0)
(0.310753 0.0795863 0)
(0.303843 0.077531 0)
(0.29497 0.0756596 0)
(0.283862 0.0738851 0)
(0.270252 0.0720928 0)
(0.253888 0.0701202 0)
(0.234548 0.0677364 0)
(0.212061 0.0646244 0)
(0.186354 0.060358 0)
(0.157517 0.0543691 0)
(0.125895 0.0459308 0)
(0.0922022 0.0342008 0)
(0.0576081 0.018224 0)
(0.0238214 -0.00275155 0)
(-0.00691782 -0.0292305 0)
(-0.0317628 -0.0607927 0)
(-0.048308 -0.095435 0)
(-0.055287 -0.130663 0)
(-0.052662 -0.163552 0)
(-0.0416549 -0.191604 0)
(-0.0243803 -0.213117 0)
(-0.00302 -0.227473 0)
(0.0201591 -0.234941 0)
(0.0431319 -0.23616 0)
(0.0646995 -0.232275 0)
(0.0840245 -0.224449 0)
(0.100666 -0.213751 0)
(0.114444 -0.201063 0)
(0.125305 -0.187064 0)
(0.133225 -0.172281 0)
(0.138174 -0.157183 0)
(0.140139 -0.14224 0)
(0.139178 -0.127948 0)
(0.13547 -0.1148 0)
(0.129323 -0.103228 0)
(0.121136 -0.093555 0)
(0.111337 -0.0859631 0)
(0.100317 -0.0805222 0)
(0.0884475 -0.0772255 0)
(0.0759594 -0.0760986 0)
(0.0632635 -0.0771589 0)
(0.0504747 -0.0803946 0)
(0.0383062 -0.0859463 0)
(0.0268069 -0.0933243 0)
(0.0169366 -0.102809 0)
(0.00864897 -0.113423 0)
(0.00236457 -0.12492 0)
(-0.00180066 -0.137913 0)
(-0.00405229 -0.148681 0)
(-0.00358627 -0.159128 0)
(-0.00190027 -0.169798 0)
(-0.000244089 -0.180264 0)
(0.00375023 -0.181784 0)
(0.0114634 -0.177159 0)
(0.0146028 -0.199958 0)
(0.009835 -0.271479 0)
(-0.00155054 -0.295276 0)
(-0.000317132 -0.0141758 0)
(-0.00257263 -0.0159888 0)
(-0.00442874 -0.0114369 0)
(-0.00467226 -0.00147638 0)
(-0.00311452 0.0138755 0)
(0.00144699 0.0358483 0)
(0.0100098 0.0641743 0)
(0.0225793 0.0958472 0)
(0.0380003 0.12677 0)
(0.0548547 0.153817 0)
(0.072161 0.1756 0)
(0.0894128 0.191996 0)
(0.106385 0.203491 0)
(0.122951 0.210753 0)
(0.138986 0.214456 0)
(0.154346 0.215241 0)
(0.168884 0.21372 0)
(0.182489 0.210486 0)
(0.195114 0.206075 0)
(0.206784 0.200916 0)
(0.21757 0.195301 0)
(0.227538 0.189402 0)
(0.236721 0.183332 0)
(0.245126 0.177214 0)
(0.252787 0.171213 0)
(0.259813 0.165511 0)
(0.266404 0.160232 0)
(0.272815 0.155374 0)
(0.279272 0.150776 0)
(0.285877 0.146165 0)
(0.292559 0.141254 0)
(0.299095 0.135862 0)
(0.305192 0.129973 0)
(0.310579 0.123728 0)
(0.315065 0.11737 0)
(0.318561 0.111167 0)
(0.321054 0.105352 0)
(0.322575 0.100092 0)
(0.323158 0.0954759 0)
(0.322809 0.0915227 0)
(0.321483 0.0881983 0)
(0.319071 0.0854365 0)
(0.315409 0.0831592 0)
(0.310282 0.0812888 0)
(0.30344 0.0797523 0)
(0.294614 0.0784761 0)
(0.283525 0.0773734 0)
(0.269893 0.0763274 0)
(0.253451 0.0751685 0)
(0.233951 0.0736573 0)
(0.211192 0.0714534 0)
(0.185062 0.0680986 0)
(0.155607 0.0629687 0)
(0.123128 0.0552542 0)
(0.0883067 0.0439819 0)
(0.0523217 0.0280949 0)
(0.0169341 0.00662697 0)
(-0.0154286 -0.0212328 0)
(-0.0415313 -0.0547798 0)
(-0.058669 -0.0920177 0)
(-0.0654241 -0.130087 0)
(-0.0617471 -0.165645 0)
(-0.0490522 -0.195853 0)
(-0.0297479 -0.218869 0)
(-0.00630876 -0.234004 0)
(0.0188089 -0.241702 0)
(0.0434517 -0.242664 0)
(0.0663422 -0.238216 0)
(0.0866575 -0.229648 0)
(0.104001 -0.218128 0)
(0.118251 -0.204593 0)
(0.12941 -0.189744 0)
(0.137484 -0.17411 0)
(0.142453 -0.158154 0)
(0.144297 -0.142359 0)
(0.143071 -0.127248 0)
(0.138962 -0.11335 0)
(0.132303 -0.101132 0)
(0.123532 -0.0909356 0)
(0.113116 -0.0829419 0)
(0.101471 -0.0772094 0)
(0.088977 -0.0737081 0)
(0.0758618 -0.0724635 0)
(0.06254 -0.0734809 0)
(0.0491146 -0.0767894 0)
(0.0363467 -0.082523 0)
(0.0242604 -0.0902312 0)
(0.0139379 -0.100183 0)
(0.00531235 -0.111317 0)
(-0.00109845 -0.123434 0)
(-0.00527682 -0.137012 0)
(-0.00738111 -0.148447 0)
(-0.00660159 -0.159482 0)
(-0.00453553 -0.170334 0)
(-0.00240415 -0.181114 0)
(0.0018901 -0.183457 0)
(0.0102534 -0.178869 0)
(0.0141427 -0.19973 0)
(0.00987799 -0.269315 0)
(-0.00147051 -0.294078 0)
(-0.000378329 -0.0137535 0)
(-0.00282609 -0.0153923 0)
(-0.00486832 -0.0111258 0)
(-0.00520387 -0.00164956 0)
(-0.00368935 0.0130453 0)
(0.000685634 0.0340638 0)
(0.00895943 0.0612818 0)
(0.0212171 0.0919845 0)
(0.0364369 0.122286 0)
(0.0532209 0.149053 0)
(0.070533 0.170775 0)
(0.0878051 0.187221 0)
(0.104775 0.198816 0)
(0.121306 0.206213 0)
(0.137285 0.210087 0)
(0.152582 0.21108 0)
(0.167065 0.209803 0)
(0.180634 0.206833 0)
(0.193249 0.202688 0)
(0.204932 0.197783 0)
(0.215745 0.192404 0)
(0.225748 0.186727 0)
(0.234969 0.180874 0)
(0.243421 0.174967 0)
(0.251143 0.169157 0)
(0.258244 0.163603 0)
(0.264912 0.158411 0)
(0.271381 0.153576 0)
(0.277853 0.148958 0)
(0.28442 0.144322 0)
(0.291021 0.139424 0)
(0.297462 0.134113 0)
(0.303484 0.128379 0)
(0.308843 0.122351 0)
(0.313363 0.116249 0)
(0.316954 0.110316 0)
(0.31959 0.104771 0)
(0.321286 0.0997738 0)
(0.322057 0.095418 0)
(0.321893 0.0917327 0)
(0.320737 0.0886986 0)
(0.318477 0.0862658 0)
(0.314946 0.0843704 0)
(0.309929 0.0829464 0)
(0.303178 0.0819287 0)
(0.294421 0.0812479 0)
(0.283372 0.080819 0)
(0.269741 0.0805241 0)
(0.25324 0.0801899 0)
(0.233597 0.0795685 0)
(0.210577 0.0783015 0)
(0.184025 0.0758975 0)
(0.153936 0.0716786 0)
(0.120558 0.0647493 0)
(0.0845367 0.0540222 0)
(0.0470453 0.0382652 0)
(0.00984003 0.0163907 0)
(-0.024338 -0.0128949 0)
(-0.0518627 -0.0485484 0)
(-0.069723 -0.0885699 0)
(-0.0762648 -0.129697 0)
(-0.0714407 -0.168112 0)
(-0.0569046 -0.2006 0)
(-0.035392 -0.225147 0)
(-0.00971577 -0.241048 0)
(0.0174652 -0.248909 0)
(0.0438755 -0.249521 0)
(0.0681447 -0.244418 0)
(0.0894767 -0.235026 0)
(0.107528 -0.222617 0)
(0.122248 -0.208189 0)
(0.133701 -0.192456 0)
(0.141929 -0.175941 0)
(0.146916 -0.1591 0)
(0.148636 -0.142423 0)
(0.147132 -0.126461 0)
(0.142601 -0.111787 0)
(0.135403 -0.0989029 0)
(0.12602 -0.0881748 0)
(0.11496 -0.0797786 0)
(0.10267 -0.0737581 0)
(0.0895362 -0.0700551 0)
(0.0757801 -0.0686941 0)
(0.0618134 -0.0696669 0)
(0.0477302 -0.0730501 0)
(0.0343318 -0.0789694 0)
(0.0216309 -0.0870247 0)
(0.0108168 -0.0974706 0)
(0.00183493 -0.109172 0)
(-0.00470822 -0.121943 0)
(-0.00889234 -0.136137 0)
(-0.0108331 -0.148282 0)
(-0.0097288 -0.159927 0)
(-0.00724941 -0.170991 0)
(-0.00460819 -0.182074 0)
(-1.72386e-05 -0.185238 0)
(0.00896571 -0.180755 0)
(0.0136362 -0.199681 0)
(0.00990171 -0.267253 0)
(-0.00139255 -0.292879 0)
(-0.000437727 -0.0132938 0)
(-0.00306213 -0.0147515 0)
(-0.00528812 -0.0107789 0)
(-0.00573216 -0.00180204 0)
(-0.00424535 0.0122534 0)
(-3.66571e-05 0.0323619 0)
(0.00796725 0.0585036 0)
(0.0199162 0.0882382 0)
(0.0349202 0.117893 0)
(0.0516184 0.144354 0)
(0.0689306 0.166002 0)
(0.0862289 0.182496 0)
(0.10321 0.194198 0)
(0.119726 0.201736 0)
(0.135664 0.205783 0)
(0.15091 0.206983 0)
(0.165347 0.205942 0)
(0.178885 0.203228 0)
(0.191489 0.199341 0)
(0.20318 0.194682 0)
(0.214014 0.189533 0)
(0.224043 0.184075 0)
(0.233294 0.178434 0)
(0.241787 0.172732 0)
(0.249566 0.167106 0)
(0.256738 0.161697 0)
(0.263478 0.156594 0)
(0.269999 0.15179 0)
(0.276482 0.147165 0)
(0.283012 0.142516 0)
(0.289539 0.137639 0)
(0.295893 0.132407 0)
(0.301847 0.126817 0)
(0.307182 0.120989 0)
(0.311737 0.115123 0)
(0.315419 0.109442 0)
(0.318195 0.104153 0)
(0.320062 0.0994098 0)
(0.32102 0.0953094 0)
(0.321043 0.0918905 0)
(0.320066 0.0891474 0)
(0.317969 0.0870445 0)
(0.314585 0.0855319 0)
(0.309697 0.0845544 0)
(0.303058 0.084055 0)
(0.294391 0.0839696 0)
(0.283405 0.0842162 0)
(0.269796 0.0846775 0)
(0.253259 0.085179 0)
(0.233491 0.0854654 0)
(0.210224 0.0851641 0)
(0.183254 0.0837526 0)
(0.152518 0.0805007 0)
(0.118205 0.0744363 0)
(0.0809016 0.0643331 0)
(0.0417836 0.0487906 0)
(0.00256001 0.0264944 0)
(-0.0336555 -0.00414102 0)
(-0.0628003 -0.0420562 0)
(-0.0815114 -0.0850754 0)
(-0.0878345 -0.129501 0)
(-0.0817376 -0.170979 0)
(-0.0651819 -0.205879 0)
(-0.0412889 -0.231987 0)
(-0.0132261 -0.248635 0)
(0.0161512 -0.256582 0)
(0.0444245 -0.256742 0)
(0.0701255 -0.250885 0)
(0.0924966 -0.240581 0)
(0.111257 -0.227216 0)
(0.126441 -0.211846 0)
(0.138183 -0.195197 0)
(0.146562 -0.177774 0)
(0.151567 -0.16002 0)
(0.153158 -0.142429 0)
(0.151365 -0.125585 0)
(0.146389 -0.110105 0)
(0.138622 -0.0965368 0)
(0.128597 -0.0852683 0)
(0.116868 -0.0764707 0)
(0.103914 -0.0701672 0)
(0.0901274 -0.0662664 0)
(0.0757202 -0.0647897 0)
(0.0610917 -0.065715 0)
(0.0463306 -0.0691732 0)
(0.0322681 -0.0752804 0)
(0.0189233 -0.0836971 0)
(0.00757125 -0.0946652 0)
(-0.00178773 -0.106986 0)
(-0.00847235 -0.120445 0)
(-0.0126539 -0.135295 0)
(-0.0144127 -0.148188 0)
(-0.0129716 -0.16047 0)
(-0.0100438 -0.171768 0)
(-0.00685618 -0.183145 0)
(-0.00196532 -0.187123 0)
(0.00760395 -0.182813 0)
(0.0130836 -0.199814 0)
(0.0099057 -0.265299 0)
(-0.00131745 -0.291682 0)
(-0.000493673 -0.0128008 0)
(-0.00327444 -0.0140704 0)
(-0.005678 -0.0103954 0)
(-0.00624981 -0.00193316 0)
(-0.00478459 0.0114949 0)
(-0.000721438 0.0307357 0)
(0.00703025 0.0558343 0)
(0.0186758 0.0846076 0)
(0.03345 0.113595 0)
(0.0500454 0.139723 0)
(0.0673486 0.161281 0)
(0.0846755 0.177819 0)
(0.10168 0.189631 0)
(0.118194 0.197316 0)
(0.134108 0.201538 0)
(0.149316 0.202944 0)
(0.163716 0.202136 0)
(0.177228 0.19967 0)
(0.189823 0.196032 0)
(0.20152 0.191613 0)
(0.212369 0.186689 0)
(0.222417 0.181446 0)
(0.231693 0.176013 0)
(0.240222 0.17051 0)
(0.248053 0.165063 0)
(0.255289 0.159794 0)
(0.262094 0.154781 0)
(0.268661 0.150017 0)
(0.275154 0.145395 0)
(0.28165 0.140745 0)
(0.288109 0.135895 0)
(0.294386 0.13074 0)
(0.300281 0.125285 0)
(0.305599 0.119641 0)
(0.310189 0.113993 0)
(0.313962 0.108548 0)
(0.316873 0.1035 0)
(0.318908 0.0990015 0)
(0.320052 0.0951509 0)
(0.320266 0.091996 0)
(0.319474 0.089543 0)
(0.317552 0.0877702 0)
(0.314329 0.0866401 0)
(0.309589 0.0861085 0)
(0.303081 0.0861264 0)
(0.294526 0.0866362 0)
(0.283624 0.0875598 0)
(0.27006 0.0887825 0)
(0.253508 0.0901302 0)
(0.233637 0.0913427 0)
(0.210138 0.0920368 0)
(0.182758 0.0916613 0)
(0.15137 0.0894406 0)
(0.116085 0.0843186 0)
(0.0774293 0.0749338 0)
(0.0365511 0.0597581 0)
(-0.00489616 0.0370353 0)
(-0.0433855 0.00504611 0)
(-0.0743759 -0.035262 0)
(-0.094059 -0.0815187 0)
(-0.100103 -0.129517 0)
(-0.0925364 -0.174288 0)
(-0.0737574 -0.21172 0)
(-0.047341 -0.239442 0)
(-0.0167827 -0.256786 0)
(0.0148964 -0.264729 0)
(0.0451215 -0.264337 0)
(0.0723035 -0.25762 0)
(0.0957323 -0.246312 0)
(0.115199 -0.231921 0)
(0.130836 -0.215562 0)
(0.142857 -0.197965 0)
(0.151384 -0.179609 0)
(0.156409 -0.160914 0)
(0.157867 -0.142379 0)
(0.155772 -0.124618 0)
(0.150328 -0.108302 0)
(0.141962 -0.0940282 0)
(0.131262 -0.0822118 0)
(0.118838 -0.0730158 0)
(0.105205 -0.0664365 0)
(0.0907575 -0.0623431 0)
(0.0756939 -0.0607509 0)
(0.0603906 -0.0616244 0)
(0.0449333 -0.0651548 0)
(0.0301715 -0.0714506 0)
(0.0161503 -0.0802392 0)
(0.00420539 -0.0917613 0)
(-0.00555679 -0.104753 0)
(-0.0123974 -0.118943 0)
(-0.0165666 -0.13449 0)
(-0.0181245 -0.148167 0)
(-0.0163337 -0.161116 0)
(-0.0129199 -0.172676 0)
(-0.00914789 -0.184331 0)
(-0.00394774 -0.189111 0)
(0.0061729 -0.185032 0)
(0.0124851 -0.200131 0)
(0.00988961 -0.263455 0)
(-0.00124579 -0.290491 0)
(-0.00054453 -0.0122794 0)
(-0.00345674 -0.013354 0)
(-0.00602722 -0.00997435 0)
(-0.00674687 -0.00204123 0)
(-0.005308 0.010766 0)
(-0.00136962 0.0291783 0)
(0.00614586 0.0532687 0)
(0.0174946 0.0810915 0)
(0.0320266 0.109393 0)
(0.0485011 0.135162 0)
(0.0657836 0.156612 0)
(0.0831378 0.173189 0)
(0.100174 0.185113 0)
(0.1167 0.192948 0)
(0.132603 0.197349 0)
(0.147786 0.19896 0)
(0.162158 0.198381 0)
(0.175651 0.196157 0)
(0.18824 0.192762 0)
(0.199942 0.188576 0)
(0.210803 0.183875 0)
(0.220866 0.178842 0)
(0.230162 0.173613 0)
(0.238723 0.168302 0)
(0.246599 0.163028 0)
(0.253893 0.157897 0)
(0.260756 0.152976 0)
(0.267362 0.148256 0)
(0.273862 0.143649 0)
(0.280328 0.139008 0)
(0.286728 0.13419 0)
(0.292937 0.12911 0)
(0.298782 0.12378 0)
(0.304088 0.118306 0)
(0.308718 0.112858 0)
(0.31258 0.107633 0)
(0.315625 0.102814 0)
(0.317827 0.0985505 0)
(0.319156 0.0949434 0)
(0.319563 0.0920489 0)
(0.318964 0.0898844 0)
(0.317228 0.0884406 0)
(0.31418 0.087692 0)
(0.309604 0.0876047 0)
(0.303246 0.0881386 0)
(0.294823 0.0892428 0)
(0.284028 0.0908446 0)
(0.270532 0.0928333 0)
(0.253987 0.0950375 0)
(0.234036 0.097195 0)
(0.210326 0.0989148 0)
(0.182549 0.0996217 0)
(0.150505 0.0984981 0)
(0.11422 0.0944037 0)
(0.0741528 0.0858489 0)
(0.0313694 0.0711822 0)
(-0.0125155 0.0480631 0)
(-0.0535413 0.0146608 0)
(-0.086615 -0.028128 0)
(-0.107335 -0.0779001 0)
(-0.11288 -0.129797 0)
(-0.103477 -0.178097 0)
(-0.082243 -0.218162 0)
(-0.0532638 -0.247512 0)
(-0.0202318 -0.265549 0)
(0.0137646 -0.273329 0)
(0.0459929 -0.272312 0)
(0.0746981 -0.264624 0)
(0.0991984 -0.252214 0)
(0.119363 -0.236725 0)
(0.135437 -0.219331 0)
(0.147726 -0.200756 0)
(0.156399 -0.181445 0)
(0.161443 -0.161783 0)
(0.162766 -0.142269 0)
(0.160356 -0.123556 0)
(0.154421 -0.106372 0)
(0.145422 -0.0913721 0)
(0.134014 -0.0790013 0)
(0.120871 -0.0694123 0)
(0.10655 -0.0625673 0)
(0.0914399 -0.0582879 0)
(0.075723 -0.0565801 0)
(0.0597385 -0.0573951 0)
(0.04357 -0.0609916 0)
(0.0280721 -0.0674733 0)
(0.0133365 -0.0766419 0)
(0.000734932 -0.0887557 0)
(-0.00946762 -0.102464 0)
(-0.0164869 -0.117436 0)
(-0.0206344 -0.133724 0)
(-0.021972 -0.148221 0)
(-0.0198187 -0.161872 0)
(-0.0158796 -0.173719 0)
(-0.0114829 -0.185636 0)
(-0.00595647 -0.191211 0)
(0.00467881 -0.187391 0)
(0.0118402 -0.200635 0)
(0.00985326 -0.261725 0)
(-0.00117795 -0.28931 0)
(-0.000588777 -0.0117356 0)
(-0.00360293 -0.0126086 0)
(-0.00632458 -0.00951579 0)
(-0.00721093 -0.00212252 0)
(-0.00581474 0.0100644 0)
(-0.00198147 0.0276839 0)
(0.00531199 0.0508018 0)
(0.0163716 0.0776884 0)
(0.0306505 0.10529 0)
(0.0469855 0.130675 0)
(0.0642332 0.151997 0)
(0.0816105 0.168603 0)
(0.0986829 0.180639 0)
(0.115233 0.188628 0)
(0.131139 0.193212 0)
(0.14631 0.195028 0)
(0.160665 0.194674 0)
(0.174146 0.192686 0)
(0.186731 0.189529 0)
(0.198439 0.185573 0)
(0.20931 0.181089 0)
(0.219385 0.176264 0)
(0.228699 0.171234 0)
(0.237287 0.166111 0)
(0.245203 0.161003 0)
(0.252547 0.156007 0)
(0.259459 0.151179 0)
(0.266099 0.146511 0)
(0.272604 0.141926 0)
(0.279042 0.137302 0)
(0.28539 0.13252 0)
(0.291541 0.127513 0)
(0.297346 0.1223 0)
(0.302648 0.116982 0)
(0.307319 0.11172 0)
(0.311271 0.1067 0)
(0.31445 0.102097 0)
(0.316817 0.0980579 0)
(0.318333 0.0946876 0)
(0.318938 0.0920491 0)
(0.318537 0.0901704 0)
(0.316997 0.0890536 0)
(0.314138 0.0886845 0)
(0.309741 0.0890396 0)
(0.303551 0.0900876 0)
(0.295281 0.0917848 0)
(0.284615 0.0940655 0)
(0.27121 0.0968246 0)
(0.254698 0.099895 0)
(0.234691 0.103016 0)
(0.210792 0.105792 0)
(0.182635 0.10763 0)
(0.149938 0.107672 0)
(0.112631 0.104698 0)
(0.0711014 0.0970965 0)
(0.0262518 0.0830918 0)
(-0.0203019 0.0595989 0)
(-0.0641258 0.0248839 0)
(-0.099494 -0.0206274 0)
(-0.121149 -0.0742698 0)
(-0.125592 -0.130456 0)
(-0.113659 -0.182505 0)
(-0.0896952 -0.225239 0)
(-0.0583535 -0.256165 0)
(-0.0231829 -0.274867 0)
(0.0129152 -0.282386 0)
(0.0470814 -0.280668 0)
(0.0773313 -0.271898 0)
(0.10291 -0.258284 0)
(0.123759 -0.241622 0)
(0.140249 -0.223147 0)
(0.152792 -0.203568 0)
(0.161606 -0.18328 0)
(0.166672 -0.162626 0)
(0.167859 -0.142102 0)
(0.165122 -0.122397 0)
(0.158668 -0.104312 0)
(0.149003 -0.0885635 0)
(0.136856 -0.0756331 0)
(0.122974 -0.0656601 0)
(0.107961 -0.0585627 0)
(0.0921988 -0.0541061 0)
(0.075844 -0.0522816 0)
(0.0591813 -0.0530293 0)
(0.0422923 -0.0566806 0)
(0.0260205 -0.0633413 0)
(0.0105243 -0.0728935 0)
(-0.00280552 -0.0856404 0)
(-0.0135029 -0.100109 0)
(-0.0207381 -0.115922 0)
(-0.0248584 -0.132999 0)
(-0.0259581 -0.148352 0)
(-0.0234285 -0.162744 0)
(-0.018924 -0.174905 0)
(-0.0138645 -0.187062 0)
(-0.0079794 -0.193403 0)
(0.00313206 -0.189897 0)
(0.0111455 -0.201328 0)
(0.00979664 -0.260112 0)
(-0.00111411 -0.288141 0)
(-0.000625102 -0.011176 0)
(-0.00370762 -0.0118414 0)
(-0.00655886 -0.00902116 0)
(-0.00762727 -0.00217237 0)
(-0.00630129 0.00939016 0)
(-0.00255676 0.0262467 0)
(0.00452714 0.0484291 0)
(0.0153054 0.0743962 0)
(0.0293223 0.101289 0)
(0.0454993 0.126266 0)
(0.0626965 0.147438 0)
(0.0800899 0.164063 0)
(0.0972012 0.176208 0)
(0.113784 0.184353 0)
(0.129705 0.189121 0)
(0.144877 0.191143 0)
(0.159225 0.191012 0)
(0.172701 0.189257 0)
(0.185288 0.186333 0)
(0.197003 0.182602 0)
(0.207884 0.178332 0)
(0.217971 0.173712 0)
(0.2273 0.168877 0)
(0.235911 0.163936 0)
(0.243862 0.158992 0)
(0.251247 0.154127 0)
(0.258201 0.149392 0)
(0.264869 0.144781 0)
(0.271377 0.140226 0)
(0.27779 0.135626 0)
(0.284092 0.130883 0)
(0.290195 0.125946 0)
(0.295967 0.120841 0)
(0.301271 0.115667 0)
(0.305988 0.110577 0)
(0.310033 0.105747 0)
(0.313344 0.101348 0)
(0.315877 0.0975245 0)
(0.317582 0.0943839 0)
(0.318387 0.0919966 0)
(0.318193 0.0904001 0)
(0.316858 0.0896075 0)
(0.314201 0.0896153 0)
(0.309999 0.0904101 0)
(0.303995 0.0919694 0)
(0.295898 0.094258 0)
(0.285382 0.0972176 0)
(0.272093 0.100751 0)
(0.25564 0.104697 0)
(0.235603 0.1088 0)
(0.211542 0.112663 0)
(0.183025 0.11568 0)
(0.149686 0.116959 0)
(0.111341 0.115207 0)
(0.0683104 0.108691 0)
(0.0212211 0.0954874 0)
(-0.0282151 0.0717529 0)
(-0.0751319 0.0357902 0)
(-0.112942 -0.0127864 0)
(-0.134942 -0.0707951 0)
(-0.136951 -0.131738 0)
(-0.121297 -0.187671 0)
(-0.094295 -0.232938 0)
(-0.0611699 -0.265274 0)
(-0.0247881 -0.284553 0)
(0.0127065 -0.291877 0)
(0.048503 -0.289381 0)
(0.0802364 -0.279433 0)
(0.106881 -0.264515 0)
(0.128395 -0.246604 0)
(0.145276 -0.227002 0)
(0.158056 -0.206397 0)
(0.167008 -0.185115 0)
(0.172098 -0.163445 0)
(0.173149 -0.141875 0)
(0.170074 -0.121139 0)
(0.163075 -0.102115 0)
(0.152708 -0.0855974 0)
(0.13979 -0.0721049 0)
(0.125155 -0.0617607 0)
(0.10946 -0.0544289 0)
(0.0930735 -0.0498067 0)
(0.0761134 -0.0478637 0)
(0.0587893 -0.0485314 0)
(0.0411783 -0.0522193 0)
(0.0240952 -0.0590473 0)
(0.00778138 -0.068969 0)
(-0.00636005 -0.0824101 0)
(-0.0176273 -0.0976803 0)
(-0.025136 -0.114394 0)
(-0.0292352 -0.132318 0)
(-0.0300828 -0.148563 0)
(-0.0271629 -0.163734 0)
(-0.0220538 -0.176242 0)
(-0.0162889 -0.188614 0)
(-0.0100119 -0.195663 0)
(0.0015374 -0.192564 0)
(0.0104046 -0.202213 0)
(0.00972018 -0.258617 0)
(-0.00105421 -0.286989 0)
(-0.000652466 -0.0106079 0)
(-0.00376632 -0.0110607 0)
(-0.00671928 -0.00849277 0)
(-0.00797949 -0.00218563 0)
(-0.00676072 0.00874495 0)
(-0.00309481 0.024862 0)
(0.00379037 0.0461467 0)
(0.0142948 0.071213 0)
(0.0280424 0.0973896 0)
(0.0440436 0.121936 0)
(0.0611731 0.142937 0)
(0.0785736 0.159567 0)
(0.0957238 0.171817 0)
(0.112346 0.18012 0)
(0.128294 0.185074 0)
(0.143478 0.187303 0)
(0.157831 0.187393 0)
(0.17131 0.185867 0)
(0.183904 0.183172 0)
(0.195629 0.179663 0)
(0.20652 0.175605 0)
(0.216618 0.171186 0)
(0.225962 0.166542 0)
(0.234592 0.16178 0)
(0.242572 0.156994 0)
(0.249993 0.152259 0)
(0.256979 0.147618 0)
(0.263669 0.143067 0)
(0.270177 0.138548 0)
(0.276567 0.133978 0)
(0.28283 0.129275 0)
(0.288892 0.124407 0)
(0.294641 0.119402 0)
(0.299953 0.114361 0)
(0.304721 0.109429 0)
(0.308859 0.104777 0)
(0.312305 0.100569 0)
(0.315005 0.096951 0)
(0.3169 0.0940326 0)
(0.317911 0.091891 0)
(0.31793 0.0905726 0)
(0.31681 0.0901006 0)
(0.314367 0.090482 0)
(0.310375 0.0917131 0)
(0.304575 0.0937806 0)
(0.29667 0.0966581 0)
(0.286327 0.100296 0)
(0.273177 0.104606 0)
(0.25681 0.109437 0)
(0.236774 0.114539 0)
(0.21258 0.11952 0)
(0.183731 0.123766 0)
(0.149763 0.126358 0)
(0.110376 0.125932 0)
(0.0658015 0.120643 0)
(0.016323 0.108365 0)
(-0.0362413 0.0846177 0)
(-0.0865326 0.0472293 0)
(-0.126615 -0.00473715 0)
(-0.147499 -0.067844 0)
(-0.1447 -0.134055 0)
(-0.123612 -0.193835 0)
(-0.0932672 -0.24119 0)
(-0.0593438 -0.274558 0)
(-0.0234631 -0.294327 0)
(0.0139015 -0.30158 0)
(0.0505229 -0.298366 0)
(0.0834799 -0.287204 0)
(0.111132 -0.270895 0)
(0.133279 -0.251661 0)
(0.150521 -0.230891 0)
(0.163518 -0.20924 0)
(0.172604 -0.18695 0)
(0.177724 -0.164241 0)
(0.178641 -0.141589 0)
(0.175215 -0.11978 0)
(0.167644 -0.0997778 0)
(0.15654 -0.0824688 0)
(0.142826 -0.0684158 0)
(0.127434 -0.0577194 0)
(0.111086 -0.0501767 0)
(0.0941232 -0.0454035 0)
(0.0766128 -0.0433389 0)
(0.0586618 -0.043909 0)
(0.040337 -0.047607 0)
(0.0224105 -0.0545838 0)
(0.00520346 -0.0648767 0)
(-0.00984709 -0.0790227 0)
(-0.0217777 -0.095159 0)
(-0.0296484 -0.112842 0)
(-0.0337526 -0.131679 0)
(-0.0343413 -0.148857 0)
(-0.0310199 -0.164846 0)
(-0.02527 -0.177737 0)
(-0.0187528 -0.190299 0)
(-0.0120471 -0.197998 0)
(-9.85955e-05 -0.195374 0)
(0.00962004 -0.203289 0)
(0.00962455 -0.257243 0)
(-0.000997907 -0.285857 0)
(-0.000670183 -0.010039 0)
(-0.0037758 -0.0102759 0)
(-0.00679625 -0.00793453 0)
(-0.00825038 -0.00215707 0)
(-0.0071821 0.00813275 0)
(-0.00359453 0.0235253 0)
(0.00310126 0.0439519 0)
(0.0133383 0.0681365 0)
(0.0268113 0.0935946 0)
(0.0426197 0.11769 0)
(0.0596636 0.138499 0)
(0.07706 0.155119 0)
(0.0942469 0.167467 0)
(0.110914 0.175925 0)
(0.126899 0.181066 0)
(0.142106 0.183503 0)
(0.156474 0.183813 0)
(0.169966 0.182514 0)
(0.182572 0.180045 0)
(0.194309 0.176754 0)
(0.205213 0.172905 0)
(0.215323 0.168686 0)
(0.22468 0.16423 0)
(0.233328 0.159643 0)
(0.241331 0.155011 0)
(0.24878 0.150404 0)
(0.255794 0.145859 0)
(0.262499 0.141371 0)
(0.269005 0.136893 0)
(0.275372 0.132356 0)
(0.281601 0.127696 0)
(0.28763 0.122892 0)
(0.293362 0.117981 0)
(0.298689 0.113061 0)
(0.303511 0.108275 0)
(0.307747 0.103787 0)
(0.311328 0.0997605 0)
(0.314197 0.0963379 0)
(0.316285 0.0936341 0)
(0.317506 0.0917321 0)
(0.317745 0.0906871 0)
(0.31685 0.0905316 0)
(0.314633 0.0912825 0)
(0.310866 0.0929458 0)
(0.305287 0.0955178 0)
(0.297594 0.0989811 0)
(0.287446 0.103296 0)
(0.274462 0.108385 0)
(0.258209 0.114108 0)
(0.238204 0.120226 0)
(0.21391 0.126355 0)
(0.18476 0.131879 0)
(0.150185 0.135863 0)
(0.109759 0.136875 0)
(0.0636029 0.132968 0)
(0.0116045 0.121786 0)
(-0.0443656 0.0982156 0)
(-0.0982218 0.0592604 0)
(-0.139765 0.00319442 0)
(-0.15674 -0.0660362 0)
(-0.145796 -0.138061 0)
(-0.117468 -0.201283 0)
(-0.0835644 -0.249858 0)
(-0.0499663 -0.283587 0)
(-0.0168556 -0.303663 0)
(0.0178845 -0.311071 0)
(0.053686 -0.307419 0)
(0.0872092 -0.295141 0)
(0.115694 -0.277404 0)
(0.138422 -0.256781 0)
(0.155988 -0.234803 0)
(0.169179 -0.212091 0)
(0.178394 -0.188784 0)
(0.183551 -0.165015 0)
(0.184338 -0.141245 0)
(0.18055 -0.118316 0)
(0.172381 -0.0972957 0)
(0.160506 -0.0791739 0)
(0.145975 -0.0645665 0)
(0.129841 -0.0535456 0)
(0.112891 -0.0458227 0)
(0.0954306 -0.0409166 0)
(0.0774521 -0.0387251 0)
(0.058929 -0.0391732 0)
(0.0399089 -0.0428448 0)
(0.0211041 -0.0499416 0)
(0.00292701 -0.0606176 0)
(-0.0131445 -0.0754366 0)
(-0.0258686 -0.0925194 0)
(-0.0342198 -0.111248 0)
(-0.0383847 -0.131078 0)
(-0.0387216 -0.149231 0)
(-0.0349931 -0.166085 0)
(-0.0285721 -0.179397 0)
(-0.021254 -0.192124 0)
(-0.0140776 -0.200407 0)
(-0.00176756 -0.198315 0)
(0.00879422 -0.204553 0)
(0.0095107 -0.255993 0)
(-0.000944588 -0.284746 0)
(-0.000677952 -0.00947688 0)
(-0.00373436 -0.00949707 0)
(-0.00678207 -0.00735213 0)
(-0.00842285 -0.00208227 0)
(-0.0075506 0.00755953 0)
(-0.00405391 0.022237 0)
(0.00246014 0.0418398 0)
(0.0124345 0.0651642 0)
(0.0256291 0.0899043 0)
(0.0412289 0.113531 0)
(0.058169 0.134124 0)
(0.0755486 0.150718 0)
(0.0927679 0.163156 0)
(0.109484 0.171768 0)
(0.125513 0.177096 0)
(0.140755 0.17974 0)
(0.155148 0.18027 0)
(0.16866 0.179196 0)
(0.181285 0.176949 0)
(0.19304 0.173876 0)
(0.203959 0.170234 0)
(0.214081 0.166211 0)
(0.22345 0.161941 0)
(0.232114 0.157525 0)
(0.240137 0.153046 0)
(0.247608 0.148565 0)
(0.254642 0.144115 0)
(0.261357 0.139693 0)
(0.267858 0.13526 0)
(0.274204 0.13076 0)
(0.280402 0.126143 0)
(0.286404 0.121401 0)
(0.292127 0.116576 0)
(0.297474 0.111767 0)
(0.302355 0.107115 0)
(0.30669 0.10278 0)
(0.31041 0.0989219 0)
(0.31345 0.0956855 0)
(0.315734 0.0931884 0)
(0.31717 0.0915198 0)
(0.317636 0.0907427 0)
(0.316975 0.0908989 0)
(0.314996 0.0920148 0)
(0.311469 0.0941059 0)
(0.306127 0.0971778 0)
(0.298665 0.101223 0)
(0.288736 0.106213 0)
(0.275942 0.112082 0)
(0.259833 0.118703 0)
(0.239893 0.125853 0)
(0.215536 0.133158 0)
(0.186121 0.140012 0)
(0.15097 0.145465 0)
(0.109519 0.148033 0)
(0.0617488 0.145673 0)
(0.00711113 0.135787 0)
(-0.0525318 0.112555 0)
(-0.109926 0.0717491 0)
(-0.15107 0.0103944 0)
(-0.15993 -0.0662696 0)
(-0.137538 -0.144398 0)
(-0.101262 -0.210066 0)
(-0.0636884 -0.258758 0)
(-0.0308756 -0.291899 0)
(-0.00241309 -0.311835 0)
(0.0266458 -0.319708 0)
(0.0589767 -0.316149 0)
(0.091736 -0.303093 0)
(0.120636 -0.283997 0)
(0.143837 -0.26195 0)
(0.161679 -0.238731 0)
(0.175039 -0.214947 0)
(0.184378 -0.190617 0)
(0.189581 -0.16577 0)
(0.190243 -0.140844 0)
(0.186085 -0.116746 0)
(0.17729 -0.094665 0)
(0.164616 -0.0757112 0)
(0.14926 -0.0605612 0)
(0.132418 -0.0492534 0)
(0.11495 -0.0413905 0)
(0.0971034 -0.0363734 0)
(0.0787682 -0.0340463 0)
(0.0597475 -0.0343388 0)
(0.0400595 -0.0379352 0)
(0.0203414 -0.0451106 0)
(0.00110965 -0.0561537 0)
(-0.0161076 -0.0716406 0)
(-0.0297806 -0.0897289 0)
(-0.0387657 -0.109586 0)
(-0.0430854 -0.130502 0)
(-0.0432016 -0.149682 0)
(-0.0390698 -0.167452 0)
(-0.0319577 -0.181226 0)
(-0.0237894 -0.1941 0)
(-0.0160944 -0.202892 0)
(-0.00345979 -0.201375 0)
(0.00793016 -0.206005 0)
(0.0093799 -0.254868 0)
(-0.000893326 -0.283661 0)
(-0.000675862 -0.00892926 0)
(-0.00364199 -0.00873475 0)
(-0.00667169 -0.00675311 0)
(-0.00848097 -0.00195847 0)
(-0.00784697 0.00703294 0)
(-0.00447029 0.0209995 0)
(0.00186697 0.0398053 0)
(0.0115825 0.0622938 0)
(0.0244957 0.0863192 0)
(0.0398726 0.109462 0)
(0.0566908 0.129817 0)
(0.0740395 0.146367 0)
(0.0912851 0.158885 0)
(0.108051 0.167645 0)
(0.124133 0.173161 0)
(0.139418 0.176012 0)
(0.153847 0.17676 0)
(0.167388 0.175909 0)
(0.180038 0.173884 0)
(0.191815 0.171025 0)
(0.202752 0.167589 0)
(0.212889 0.163762 0)
(0.222271 0.159675 0)
(0.230948 0.155428 0)
(0.238986 0.151098 0)
(0.246475 0.146742 0)
(0.253522 0.142388 0)
(0.260243 0.138034 0)
(0.266735 0.133649 0)
(0.273061 0.129188 0)
(0.279232 0.124615 0)
(0.285212 0.119931 0)
(0.290931 0.115185 0)
(0.296304 0.110478 0)
(0.301248 0.105948 0)
(0.305685 0.101753 0)
(0.309546 0.0980539 0)
(0.312759 0.0949941 0)
(0.315244 0.0926956 0)
(0.3169 0.0912536 0)
(0.3176 0.0907387 0)
(0.317183 0.0912014 0)
(0.315453 0.0926772 0)
(0.31218 0.0951908 0)
(0.307092 0.0987576 0)
(0.299881 0.103381 0)
(0.290191 0.109043 0)
(0.277615 0.115691 0)
(0.26168 0.123216 0)
(0.24184 0.131412 0)
(0.21746 0.139921 0)
(0.187823 0.148152 0)
(0.152133 0.155154 0)
(0.109683 0.159402 0)
(0.0602809 0.158763 0)
(0.00289017 0.150401 0)
(-0.0606686 0.127597 0)
(-0.121104 0.0842646 0)
(-0.158575 0.0161297 0)
(-0.154451 -0.069473 0)
(-0.120201 -0.153043 0)
(-0.0771261 -0.220058 0)
(-0.0357781 -0.267854 0)
(-0.00268353 -0.299262 0)
(0.0211946 -0.318287 0)
(0.042283 -0.326702 0)
(0.0678508 -0.323945 0)
(0.0976389 -0.310767 0)
(0.126103 -0.290581 0)
(0.14955 -0.267139 0)
(0.1676 -0.242661 0)
(0.181096 -0.217803 0)
(0.190555 -0.19245 0)
(0.195813 -0.166507 0)
(0.196359 -0.140386 0)
(0.191823 -0.115069 0)
(0.182381 -0.0918833 0)
(0.168885 -0.0720816 0)
(0.152712 -0.0564103 0)
(0.135225 -0.0448638 0)
(0.117358 -0.036911 0)
(0.0992722 -0.0318083 0)
(0.0807187 -0.0293315 0)
(0.0612901 -0.0294236 0)
(0.0409639 -0.0328813 0)
(0.0202932 -0.0400795 0)
(-8.6008e-05 -0.0514604 0)
(-0.0185806 -0.0676055 0)
(-0.0333723 -0.0867491 0)
(-0.0431742 -0.107824 0)
(-0.0477847 -0.129932 0)
(-0.0477442 -0.150201 0)
(-0.0432291 -0.168941 0)
(-0.0354213 -0.18323 0)
(-0.0263565 -0.196233 0)
(-0.0180884 -0.205454 0)
(-0.00516341 -0.204542 0)
(0.00703147 -0.207642 0)
(0.00923376 -0.253869 0)
(-0.000842864 -0.282602 0)
(-0.000664367 -0.00840332 0)
(-0.00350047 -0.00799967 0)
(-0.00646311 -0.00614669 0)
(-0.00841115 -0.00178488 0)
(-0.00804953 0.00656163 0)
(-0.00483831 0.0198152 0)
(0.00132228 0.0378471 0)
(0.0107816 0.0595233 0)
(0.0234111 0.0828393 0)
(0.0385521 0.105484 0)
(0.0552304 0.125581 0)
(0.0725335 0.142069 0)
(0.0897976 0.154654 0)
(0.106613 0.163558 0)
(0.122752 0.169257 0)
(0.138091 0.172315 0)
(0.152565 0.173282 0)
(0.166144 0.172653 0)
(0.178827 0.170848 0)
(0.19063 0.168203 0)
(0.201589 0.164971 0)
(0.211743 0.161337 0)
(0.221138 0.157432 0)
(0.229827 0.153352 0)
(0.237878 0.14917 0)
(0.245378 0.144937 0)
(0.252434 0.140679 0)
(0.259155 0.136396 0)
(0.265637 0.132061 0)
(0.271942 0.12764 0)
(0.278089 0.12311 0)
(0.284051 0.11848 0)
(0.28977 0.113807 0)
(0.295174 0.109191 0)
(0.300184 0.104773 0)
(0.304728 0.100708 0)
(0.308732 0.0971565 0)
(0.312122 0.0942638 0)
(0.314811 0.0921557 0)
(0.316693 0.0909333 0)
(0.317634 0.0906744 0)
(0.317469 0.0914378 0)
(0.316001 0.0932679 0)
(0.312995 0.0961985 0)
(0.308178 0.100255 0)
(0.301236 0.10545 0)
(0.291809 0.11178 0)
(0.279476 0.119208 0)
(0.263747 0.12764 0)
(0.244044 0.136893 0)
(0.219684 0.146632 0)
(0.189874 0.156288 0)
(0.153691 0.164919 0)
(0.11028 0.170976 0)
(0.0592428 0.172245 0)
(-0.00101673 0.16565 0)
(-0.0686521 0.143244 0)
(-0.13084 0.0962571 0)
(-0.160283 0.0192669 0)
(-0.140272 -0.0757626 0)
(-0.097973 -0.163441 0)
(-0.0507028 -0.231059 0)
(-0.00578996 -0.277346 0)
(0.0300996 -0.306078 0)
(0.0524288 -0.323073 0)
(0.0658701 -0.331462 0)
(0.0819547 -0.330065 0)
(0.105824 -0.317698 0)
(0.13238 -0.296979 0)
(0.15562 -0.2723 0)
(0.173759 -0.24658 0)
(0.187351 -0.220653 0)
(0.196922 -0.194282 0)
(0.202247 -0.167231 0)
(0.202688 -0.139874 0)
(0.197771 -0.113284 0)
(0.187661 -0.0889497 0)
(0.173332 -0.0682888 0)
(0.156371 -0.0521293 0)
(0.138335 -0.0404064 0)
(0.120226 -0.0324227 0)
(0.102083 -0.0272607 0)
(0.0834683 -0.0246125 0)
(0.0637258 -0.0244452 0)
(0.0427823 -0.0276853 0)
(0.0211083 -0.0348355 0)
(-0.000520416 -0.0465123 0)
(-0.0204244 -0.0632987 0)
(-0.0365029 -0.083539 0)
(-0.0473164 -0.105917 0)
(-0.052389 -0.129337 0)
(-0.0522936 -0.150771 0)
(-0.0474382 -0.170549 0)
(-0.0389515 -0.185408 0)
(-0.0289511 -0.198532 0)
(-0.0200497 -0.208095 0)
(-0.00686495 -0.2078 0)
(0.0061029 -0.209463 0)
(0.00907446 -0.252997 0)
(-0.000791567 -0.281571 0)
(-0.000644233 -0.00790559 0)
(-0.00331329 -0.0073023 0)
(-0.00615791 -0.00554342 0)
(-0.00820369 -0.0015636 0)
(-0.00813563 0.00615444 0)
(-0.00514876 0.0186899 0)
(0.000827161 0.035964 0)
(0.0100311 0.0568509 0)
(0.0223746 0.0794645 0)
(0.0372683 0.101601 0)
(0.0537897 0.121419 0)
(0.0710317 0.137824 0)
(0.0883053 0.150463 0)
(0.105169 0.159503 0)
(0.12137 0.165385 0)
(0.136769 0.168648 0)
(0.151297 0.169832 0)
(0.164923 0.169424 0)
(0.177645 0.167838 0)
(0.189481 0.165406 0)
(0.200465 0.162377 0)
(0.210638 0.158936 0)
(0.220047 0.155211 0)
(0.228747 0.151297 0)
(0.236808 0.147261 0)
(0.244316 0.14315 0)
(0.251375 0.138989 0)
(0.258092 0.134777 0)
(0.264561 0.130495 0)
(0.270846 0.126116 0)
(0.27697 0.121627 0)
(0.282917 0.117048 0)
(0.288642 0.11244 0)
(0.294081 0.107908 0)
(0.299162 0.10359 0)
(0.303814 0.0996443 0)
(0.307965 0.0962297 0)
(0.311535 0.0934947 0)
(0.314432 0.0915688 0)
(0.316545 0.0905586 0)
(0.317734 0.0905493 0)
(0.317832 0.0916073 0)
(0.316636 0.0937855 0)
(0.31391 0.0971268 0)
(0.309379 0.101666 0)
(0.302726 0.107428 0)
(0.293583 0.114421 0)
(0.281521 0.122625 0)
(0.266031 0.131968 0)
(0.246504 0.142288 0)
(0.222211 0.153281 0)
(0.192281 0.164408 0)
(0.155661 0.174746 0)
(0.111339 0.182747 0)
(0.0586814 0.186121 0)
(-0.00456587 0.181533 0)
(-0.0762417 0.159275 0)
(-0.137925 0.106924 0)
(-0.154259 0.0190211 0)
(-0.121325 -0.0842964 0)
(-0.0764438 -0.174707 0)
(-0.0281479 -0.242664 0)
(0.0196077 -0.287564 0)
(0.0606878 -0.313427 0)
(0.0865275 -0.32706 0)
(0.0962296 -0.334038 0)
(0.102417 -0.333893 0)
(0.11744 -0.323282 0)
(0.139943 -0.302897 0)
(0.162166 -0.27734 0)
(0.180176 -0.250461 0)
(0.193805 -0.22349 0)
(0.203477 -0.196115 0)
(0.208883 -0.167943 0)
(0.209232 -0.139311 0)
(0.203932 -0.111392 0)
(0.193143 -0.0858655 0)
(0.177983 -0.0643415 0)
(0.16029 -0.0477399 0)
(0.141837 -0.035919 0)
(0.123681 -0.0279718 0)
(0.105684 -0.0227718 0)
(0.0871702 -0.0199179 0)
(0.0671953 -0.0194174 0)
(0.0456299 -0.0223447 0)
(0.0228791 -0.0293624 0)
(-0.000112751 -0.0412829 0)
(-0.0215534 -0.0586898 0)
(-0.0390654 -0.0800595 0)
(-0.0510689 -0.103824 0)
(-0.0567884 -0.12868 0)
(-0.0567753 -0.151371 0)
(-0.0516492 -0.172264 0)
(-0.042528 -0.187756 0)
(-0.0315678 -0.201008 0)
(-0.0219674 -0.210814 0)
(-0.00855123 -0.211139 0)
(0.00514916 -0.211462 0)
(0.00890595 -0.252252 0)
(-0.000737444 -0.28057 0)
(-0.000616459 -0.00744173 0)
(-0.00308545 -0.00665249 0)
(-0.00576143 -0.00495509 0)
(-0.00785391 -0.0012998 0)
(-0.00808374 0.00581936 0)
(-0.00538767 0.0176317 0)
(0.000383535 0.0341561 0)
(0.0093305 0.054275 0)
(0.0213857 0.0761944 0)
(0.0360219 0.0978129 0)
(0.0523703 0.117333 0)
(0.0695356 0.133636 0)
(0.0868085 0.146315 0)
(0.103717 0.155482 0)
(0.119982 0.161541 0)
(0.135448 0.165008 0)
(0.150039 0.166408 0)
(0.16372 0.166221 0)
(0.176489 0.164854 0)
(0.188363 0.162633 0)
(0.199377 0.159808 0)
(0.209572 0.156558 0)
(0.218996 0.153013 0)
(0.227707 0.149263 0)
(0.235775 0.145372 0)
(0.243287 0.141384 0)
(0.250346 0.13732 0)
(0.257054 0.13318 0)
(0.263507 0.128951 0)
(0.26977 0.124614 0)
(0.275874 0.120166 0)
(0.28181 0.115633 0)
(0.287544 0.111083 0)
(0.293021 0.106625 0)
(0.298176 0.102399 0)
(0.30294 0.0985612 0)
(0.30724 0.0952735 0)
(0.310994 0.0926869 0)
(0.314104 0.0909347 0)
(0.316453 0.0901294 0)
(0.317898 0.0903627 0)
(0.318267 0.0917088 0)
(0.317354 0.0942287 0)
(0.314922 0.0979742 0)
(0.310693 0.10299 0)
(0.304347 0.109312 0)
(0.295511 0.116962 0)
(0.283746 0.125939 0)
(0.268527 0.136192 0)
(0.249218 0.147588 0)
(0.225041 0.159856 0)
(0.195049 0.172496 0)
(0.158059 0.184619 0)
(0.112885 0.1947 0)
(0.0586406 0.200382 0)
(-0.00769768 0.198006 0)
(-0.0830392 0.175337 0)
(-0.141007 0.115605 0)
(-0.140858 0.0159172 0)
(-0.102707 -0.0938839 0)
(-0.0594285 -0.185905 0)
(-0.0115995 -0.254444 0)
(0.0377983 -0.29879 0)
(0.084118 -0.322269 0)
(0.117588 -0.331662 0)
(0.129736 -0.335325 0)
(0.128975 -0.335299 0)
(0.133546 -0.326929 0)
(0.149467 -0.307925 0)
(0.1694 -0.282104 0)
(0.186894 -0.254262 0)
(0.200461 -0.226303 0)
(0.210218 -0.197948 0)
(0.215717 -0.168648 0)
(0.215992 -0.1387 0)
(0.210312 -0.109396 0)
(0.198841 -0.0826352 0)
(0.182869 -0.0602533 0)
(0.164528 -0.0432713 0)
(0.145829 -0.0314459 0)
(0.127851 -0.0236105 0)
(0.110215 -0.0183854 0)
(0.0919442 -0.0152694 0)
(0.0717836 -0.0143446 0)
(0.0495476 -0.0168481 0)
(0.0256091 -0.0236376 0)
(0.00112149 -0.0357468 0)
(-0.0219738 -0.0537538 0)
(-0.0410265 -0.07628 0)
(-0.0543476 -0.101504 0)
(-0.0608765 -0.127922 0)
(-0.0611002 -0.151968 0)
(-0.055798 -0.174065 0)
(-0.0461201 -0.190265 0)
(-0.0341966 -0.203667 0)
(-0.0238307 -0.213614 0)
(-0.0102058 -0.214555 0)
(0.00417805 -0.213624 0)
(0.00873085 -0.251634 0)
(-0.00067822 -0.279596 0)
(-0.000582201 -0.00701641 0)
(-0.00282319 -0.00605902 0)
(-0.00528264 -0.00439408 0)
(-0.00736294 -0.00100168 0)
(-0.00787591 0.00556233 0)
(-0.00553624 0.0166505 0)
(-5.37513e-06 0.0324256 0)
(0.00867977 0.0517944 0)
(0.0204435 0.0730284 0)
(0.0348133 0.0941222 0)
(0.0509739 0.113326 0)
(0.0680469 0.129507 0)
(0.0853079 0.142209 0)
(0.102257 0.151494 0)
(0.118587 0.157725 0)
(0.134126 0.161393 0)
(0.148787 0.163009 0)
(0.162531 0.163042 0)
(0.175354 0.161893 0)
(0.187273 0.159884 0)
(0.198321 0.157261 0)
(0.208541 0.154203 0)
(0.217982 0.150837 0)
(0.226703 0.14725 0)
(0.234777 0.143504 0)
(0.24229 0.139638 0)
(0.249343 0.135671 0)
(0.25604 0.131605 0)
(0.262475 0.12743 0)
(0.268715 0.123135 0)
(0.274799 0.118725 0)
(0.280726 0.114234 0)
(0.286473 0.109737 0)
(0.291991 0.105344 0)
(0.297223 0.101198 0)
(0.302103 0.0974588 0)
(0.306556 0.0942881 0)
(0.310497 0.0918403 0)
(0.313824 0.0902534 0)
(0.316415 0.0896453 0)
(0.318123 0.0901142 0)
(0.318771 0.0917416 0)
(0.318152 0.0945964 0)
(0.316026 0.0987388 0)
(0.312114 0.104223 0)
(0.306093 0.111098 0)
(0.297586 0.119399 0)
(0.286146 0.129143 0)
(0.271232 0.140305 0)
(0.252181 0.152783 0)
(0.228174 0.166344 0)
(0.198184 0.180537 0)
(0.160901 0.194521 0)
(0.114947 0.206817 0)
(0.0591628 0.215019 0)
(-0.0103576 0.214994 0)
(-0.0886625 0.191005 0)
(-0.139615 0.121724 0)
(-0.12354 0.0106466 0)
(-0.0876018 -0.103274 0)
(-0.0463861 -0.196784 0)
(0.00193293 -0.266221 0)
(0.0519304 -0.3107 0)
(0.100634 -0.332698 0)
(0.141837 -0.338015 0)
(0.161754 -0.336736 0)
(0.159608 -0.334833 0)
(0.154594 -0.328299 0)
(0.161728 -0.31159 0)
(0.177657 -0.286357 0)
(0.193996 -0.25791 0)
(0.207332 -0.229075 0)
(0.217141 -0.199778 0)
(0.222745 -0.169349 0)
(0.222965 -0.138046 0)
(0.216916 -0.107299 0)
(0.20477 -0.0792664 0)
(0.188026 -0.0560428 0)
(0.169153 -0.0387595 0)
(0.15041 -0.027037 0)
(0.132853 -0.0193917 0)
(0.115783 -0.0141445 0)
(0.0978556 -0.0106949 0)
(0.0774959 -0.00922171 0)
(0.0544768 -0.011174 0)
(0.0291897 -0.0176342 0)
(0.00304747 -0.0298725 0)
(-0.0218139 -0.0484732 0)
(-0.0424633 -0.0721847 0)
(-0.0571471 -0.098933 0)
(-0.0645803 -0.12703 0)
(-0.0651771 -0.152531 0)
(-0.0598063 -0.175926 0)
(-0.049683 -0.192918 0)
(-0.0368235 -0.20651 0)
(-0.0256297 -0.216502 0)
(-0.0118103 -0.218037 0)
(0.00319936 -0.215938 0)
(0.00855205 -0.251141 0)
(-0.000611331 -0.278652 0)
(-0.000542696 -0.00663314 0)
(-0.00253359 -0.00552922 0)
(-0.00473383 -0.00387253 0)
(-0.00673818 -0.000680252 0)
(-0.00750005 0.00538606 0)
(-0.00557205 0.0157573 0)
(-0.000334303 0.030777 0)
(0.00807902 0.0494086 0)
(0.0195472 0.0699659 0)
(0.0336426 0.0905295 0)
(0.0496016 0.109401 0)
(0.0665673 0.12544 0)
(0.0838048 0.138149 0)
(0.100788 0.14754 0)
(0.117183 0.153936 0)
(0.1328 0.157803 0)
(0.147538 0.159632 0)
(0.161352 0.159885 0)
(0.174236 0.158953 0)
(0.186206 0.157156 0)
(0.197294 0.154736 0)
(0.207542 0.15187 0)
(0.217001 0.148683 0)
(0.225733 0.145259 0)
(0.23381 0.141657 0)
(0.241321 0.137913 0)
(0.248366 0.134043 0)
(0.255048 0.130052 0)
(0.261462 0.125931 0)
(0.267679 0.121678 0)
(0.273743 0.117304 0)
(0.279664 0.112851 0)
(0.285425 0.108399 0)
(0.290988 0.104063 0)
(0.2963 0.0999886 0)
(0.301298 0.0963369 0)
(0.305908 0.0932732 0)
(0.310039 0.0909551 0)
(0.313588 0.089525 0)
(0.316427 0.0891062 0)
(0.318405 0.0898034 0)
(0.319341 0.091705 0)
(0.319026 0.0948874 0)
(0.317218 0.0994193 0)
(0.313638 0.105365 0)
(0.307959 0.112784 0)
(0.299803 0.121728 0)
(0.288715 0.132233 0)
(0.27414 0.1443 0)
(0.255392 0.157864 0)
(0.231609 0.172733 0)
(0.201691 0.188514 0)
(0.164201 0.204432 0)
(0.117555 0.219074 0)
(0.0602858 0.23003 0)
(-0.0124399 0.232361 0)
(-0.09235 0.205735 0)
(-0.132397 0.124913 0)
(-0.106543 0.00441246 0)
(-0.075884 -0.112025 0)
(-0.0340903 -0.207702 0)
(0.0162537 -0.278037 0)
(0.0668112 -0.322566 0)
(0.114571 -0.343881 0)
(0.15953 -0.346264 0)
(0.188831 -0.33951 0)
(0.19116 -0.333579 0)
(0.180007 -0.327496 0)
(0.177374 -0.313481 0)
(0.187382 -0.289793 0)
(0.20162 -0.261291 0)
(0.214443 -0.231775 0)
(0.224245 -0.201603 0)
(0.229963 -0.170051 0)
(0.23015 -0.137353 0)
(0.223749 -0.105108 0)
(0.210947 -0.0757706 0)
(0.193492 -0.0517343 0)
(0.174233 -0.0342456 0)
(0.155675 -0.0227475 0)
(0.138782 -0.0153635 0)
(0.122445 -0.0100876 0)
(0.104895 -0.00620585 0)
(0.0842468 -0.00403147 0)
(0.0602497 -0.00529332 0)
(0.033394 -0.0113193 0)
(0.00540357 -0.0236278 0)
(-0.021334 -0.0428399 0)
(-0.0435829 -0.067777 0)
(-0.0595734 -0.0961097 0)
(-0.0678959 -0.125985 0)
(-0.0689358 -0.153032 0)
(-0.0635895 -0.177818 0)
(-0.0531562 -0.195691 0)
(-0.0394268 -0.209536 0)
(-0.0273536 -0.21948 0)
(-0.0133447 -0.221575 0)
(0.00222464 -0.218395 0)
(0.00837289 -0.250771 0)
(-0.000533914 -0.277734 0)
(-0.000499189 -0.00629431 0)
(-0.00222412 -0.00506867 0)
(-0.00412985 -0.0034019 0)
(-0.00599343 -0.000348749 0)
(-0.00695168 0.00528911 0)
(-0.00547155 0.0149631 0)
(-0.000594978 0.0292175 0)
(0.00752879 0.0471178 0)
(0.0186959 0.0670065 0)
(0.0325096 0.0870354 0)
(0.0482546 0.105559 0)
(0.0650986 0.121437 0)
(0.0823006 0.134135 0)
(0.0993109 0.14362 0)
(0.115771 0.150174 0)
(0.131468 0.154234 0)
(0.146289 0.156276 0)
(0.160181 0.156747 0)
(0.173133 0.156033 0)
(0.185159 0.154448 0)
(0.196291 0.152232 0)
(0.206571 0.149558 0)
(0.216052 0.14655 0)
(0.224794 0.143289 0)
(0.232874 0.139831 0)
(0.24038 0.136209 0)
(0.247413 0.132438 0)
(0.254077 0.128521 0)
(0.260467 0.124455 0)
(0.26666 0.120243 0)
(0.272705 0.115902 0)
(0.278621 0.111482 0)
(0.284399 0.107069 0)
(0.290009 0.102782 0)
(0.295405 0.0987692 0)
(0.300524 0.0951955 0)
(0.305292 0.092229 0)
(0.309619 0.0900313 0)
(0.313394 0.0887493 0)
(0.316487 0.0885119 0)
(0.31874 0.0894299 0)
(0.319973 0.0915983 0)
(0.319973 0.0951008 0)
(0.318495 0.100014 0)
(0.31526 0.106412 0)
(0.309942 0.114367 0)
(0.302158 0.123945 0)
(0.291447 0.135204 0)
(0.277247 0.148172 0)
(0.258845 0.16282 0)
(0.235345 0.179009 0)
(0.205573 0.196409 0)
(0.16797 0.214328 0)
(0.120738 0.231443 0)
(0.0620585 0.245374 0)
(-0.0137332 0.249928 0)
(-0.0932728 0.219113 0)
(-0.119666 0.125981 0)
(-0.0925689 -0.00179198 0)
(-0.0651483 -0.120454 0)
(-0.0210859 -0.218959 0)
(0.0314932 -0.290028 0)
(0.0836828 -0.334097 0)
(0.129854 -0.354787 0)
(0.173792 -0.355621 0)
(0.210008 -0.344158 0)
(0.220588 -0.332719 0)
(0.208197 -0.325089 0)
(0.196644 -0.313394 0)
(0.199068 -0.292077 0)
(0.209975 -0.26424 0)
(0.221838 -0.234355 0)
(0.23153 -0.203414 0)
(0.237361 -0.170756 0)
(0.237541 -0.136629 0)
(0.230811 -0.102831 0)
(0.217387 -0.0721631 0)
(0.199306 -0.047357 0)
(0.179834 -0.0297765 0)
(0.161703 -0.0186303 0)
(0.145695 -0.0115667 0)
(0.130196 -0.0062202 0)
(0.112972 -0.0017708 0)
(0.0918501 0.00126744 0)
(0.0666023 0.000844507 0)
(0.0378952 -0.00465549 0)
(0.00782474 -0.0169874 0)
(-0.0209028 -0.0368544 0)
(-0.0447135 -0.0630793 0)
(-0.0618558 -0.0930604 0)
(-0.0709176 -0.124797 0)
(-0.0723548 -0.153459 0)
(-0.06707 -0.179716 0)
(-0.0564666 -0.198552 0)
(-0.0419751 -0.212737 0)
(-0.0289898 -0.222548 0)
(-0.0147896 -0.225155 0)
(0.00126605 -0.220985 0)
(0.00819806 -0.250523 0)
(-0.000442821 -0.276841 0)
(-0.000452891 -0.00600117 0)
(-0.00190235 -0.00468103 0)
(-0.00348734 -0.00299226 0)
(-0.00514836 -2.18885e-05 0)
(-0.00623511 0.00526549 0)
(-0.00521353 0.0142772 0)
(-0.000775298 0.0277565 0)
(0.00703029 0.0449236 0)
(0.0178889 0.0641496 0)
(0.0314138 0.0836404 0)
(0.0469337 0.101801 0)
(0.0636423 0.117499 0)
(0.0807969 0.130169 0)
(0.0978271 0.139734 0)
(0.114349 0.146438 0)
(0.130129 0.150688 0)
(0.145037 0.15294 0)
(0.159014 0.153628 0)
(0.172041 0.153132 0)
(0.18413 0.15176 0)
(0.195311 0.149747 0)
(0.205627 0.147267 0)
(0.21513 0.144438 0)
(0.223884 0.141341 0)
(0.231966 0.138027 0)
(0.239465 0.134527 0)
(0.246484 0.130855 0)
(0.253126 0.127013 0)
(0.259491 0.123002 0)
(0.265658 0.118829 0)
(0.271684 0.114519 0)
(0.277595 0.110128 0)
(0.283392 0.105747 0)
(0.289052 0.1015 0)
(0.294533 0.0975399 0)
(0.299776 0.0940343 0)
(0.304707 0.0911553 0)
(0.309232 0.0890688 0)
(0.313238 0.0879264 0)
(0.31659 0.0878624 0)
(0.319127 0.0889935 0)
(0.320665 0.0914212 0)
(0.320988 0.0952361 0)
(0.319852 0.100523 0)
(0.316976 0.107365 0)
(0.312035 0.115845 0)
(0.304644 0.126048 0)
(0.294338 0.138051 0)
(0.280545 0.151912 0)
(0.262535 0.167642 0)
(0.239377 0.185159 0)
(0.209832 0.204203 0)
(0.172218 0.224184 0)
(0.124527 0.243894 0)
(0.0645058 0.261003 0)
(-0.0141479 0.267453 0)
(-0.0914296 0.230742 0)
(-0.10341 0.125713 0)
(-0.0816903 -0.00750921 0)
(-0.053794 -0.128966 0)
(-0.00845828 -0.230389 0)
(0.0454216 -0.302357 0)
(0.100164 -0.345629 0)
(0.146974 -0.365085 0)
(0.187812 -0.365082 0)
(0.226475 -0.350412 0)
(0.245978 -0.333113 0)
(0.237062 -0.321935 0)
(0.219176 -0.311421 0)
(0.213141 -0.292916 0)
(0.219329 -0.266547 0)
(0.229593 -0.236739 0)
(0.239 -0.205194 0)
(0.24493 -0.171468 0)
(0.24513 -0.135881 0)
(0.238105 -0.10048 0)
(0.224107 -0.0684627 0)
(0.205506 -0.0429448 0)
(0.186015 -0.0254002 0)
(0.168552 -0.0147317 0)
(0.153602 -0.00802904 0)
(0.138963 -0.00252406 0)
(0.121911 0.00265381 0)
(0.10004 0.00673488 0)
(0.0731968 0.00730507 0)
(0.0423158 0.00239996 0)
(0.00990558 -0.00992284 0)
(-0.0209401 -0.030521 0)
(-0.0462573 -0.0581293 0)
(-0.0643258 -0.0898382 0)
(-0.0738472 -0.123509 0)
(-0.0754867 -0.153826 0)
(-0.0701982 -0.181604 0)
(-0.0595344 -0.201468 0)
(-0.0444251 -0.216094 0)
(-0.0305224 -0.22571 0)
(-0.0161244 -0.228763 0)
(0.000337249 -0.223697 0)
(0.00803303 -0.250392 0)
(-0.000334629 -0.27597 0)
(-0.000404922 -0.00575394 0)
(-0.00157561 -0.00436796 0)
(-0.00282371 -0.00265155 0)
(-0.00422747 0.000285088 0)
(-0.00536396 0.00530464 0)
(-0.00478265 0.013706 0)
(-0.000859119 0.0264051 0)
(0.00658596 0.0428287 0)
(0.0171252 0.0613952 0)
(0.0303546 0.0803445 0)
(0.0456394 0.0981297 0)
(0.0622 0.113629 0)
(0.0792953 0.126253 0)
(0.0963373 0.135885 0)
(0.112918 0.142729 0)
(0.128781 0.147162 0)
(0.143782 0.149621 0)
(0.157848 0.150526 0)
(0.170956 0.150247 0)
(0.183114 0.149088 0)
(0.19435 0.147281 0)
(0.204705 0.144994 0)
(0.214233 0.142346 0)
(0.223 0.139413 0)
(0.231083 0.136244 0)
(0.238573 0.132867 0)
(0.245575 0.129294 0)
(0.252193 0.125528 0)
(0.25853 0.121572 0)
(0.26467 0.117437 0)
(0.270676 0.113155 0)
(0.276584 0.108788 0)
(0.282401 0.104432 0)
(0.288112 0.100217 0)
(0.293682 0.0963004 0)
(0.299052 0.0928533 0)
(0.304149 0.0900523 0)
(0.308877 0.0880677 0)
(0.313119 0.0870562 0)
(0.316735 0.0871575 0)
(0.319562 0.088494 0)
(0.321412 0.0911732 0)
(0.322068 0.0952924 0)
(0.321285 0.100944 0)
(0.318782 0.10822 0)
(0.314234 0.117217 0)
(0.307255 0.128033 0)
(0.297381 0.140769 0)
(0.28403 0.155514 0)
(0.266457 0.172321 0)
(0.243703 0.191169 0)
(0.214466 0.211877 0)
(0.176955 0.233971 0)
(0.128943 0.256394 0)
(0.06764 0.276873 0)
(-0.0136354 0.284693 0)
(-0.0867834 0.240338 0)
(-0.086114 0.124656 0)
(-0.0717952 -0.0125659 0)
(-0.0421695 -0.137651 0)
(0.00335159 -0.241761 0)
(0.0576884 -0.315041 0)
(0.114383 -0.357621 0)
(0.16407 -0.375144 0)
(0.202991 -0.374079 0)
(0.240305 -0.357589 0)
(0.266806 -0.335111 0)
(0.264625 -0.318918 0)
(0.244042 -0.307945 0)
(0.229813 -0.29214 0)
(0.229988 -0.267982 0)
(0.237815 -0.238821 0)
(0.246665 -0.206917 0)
(0.252657 -0.172186 0)
(0.252904 -0.135117 0)
(0.245626 -0.0980667 0)
(0.23112 -0.0646922 0)
(0.212126 -0.0385346 0)
(0.192822 -0.0211641 0)
(0.176246 -0.0110896 0)
(0.162458 -0.00475728 0)
(0.148603 0.00102361 0)
(0.131473 0.00711836 0)
(0.108508 0.012442 0)
(0.0796749 0.0141663 0)
(0.0462786 0.0099402 0)
(0.0112631 -0.0024397 0)
(-0.0218362 -0.0238439 0)
(-0.0486104 -0.052971 0)
(-0.0673585 -0.0865158 0)
(-0.0769726 -0.122193 0)
(-0.0784714 -0.154178 0)
(-0.0729729 -0.183486 0)
(-0.062285 -0.204409 0)
(-0.0467224 -0.219584 0)
(-0.0319324 -0.228963 0)
(-0.0173283 -0.232394 0)
(-0.000547011 -0.226512 0)
(0.00788411 -0.250373 0)
(-0.000205678 -0.275116 0)
(-0.000356277 -0.00555187 0)
(-0.00125085 -0.00412912 0)
(-0.0021563 -0.00238524 0)
(-0.00325861 0.000557512 0)
(-0.00436082 0.00539212 0)
(-0.00417253 0.0132515 0)
(-0.000827299 0.0251752 0)
(0.00620007 0.0408384 0)
(0.0164044 0.0587435 0)
(0.029331 0.0771478 0)
(0.0443719 0.0945454 0)
(0.060773 0.109828 0)
(0.0777975 0.122389 0)
(0.0948428 0.132072 0)
(0.111478 0.139046 0)
(0.127425 0.143657 0)
(0.142521 0.146319 0)
(0.156682 0.147439 0)
(0.169878 0.147378 0)
(0.18211 0.146433 0)
(0.193405 0.144831 0)
(0.203803 0.14274 0)
(0.21336 0.140273 0)
(0.22214 0.137506 0)
(0.230223 0.134483 0)
(0.237704 0.13123 0)
(0.244686 0.127756 0)
(0.251277 0.124066 0)
(0.257584 0.120165 0)
(0.263695 0.116066 0)
(0.269682 0.111809 0)
(0.275585 0.107461 0)
(0.281424 0.103124 0)
(0.287189 0.0989334 0)
(0.292849 0.0950506 0)
(0.29835 0.0916524 0)
(0.303616 0.0889198 0)
(0.30855 0.087028 0)
(0.313032 0.0861389 0)
(0.316918 0.0863973 0)
(0.320042 0.0879313 0)
(0.322212 0.0908541 0)
(0.32321 0.0952695 0)
(0.32279 0.101277 0)
(0.320673 0.108978 0)
(0.316533 0.11848 0)
(0.309987 0.129898 0)
(0.300569 0.143354 0)
(0.287694 0.158971 0)
(0.270605 0.176847 0)
(0.248316 0.197023 0)
(0.219475 0.21941 0)
(0.182185 0.24366 0)
(0.134012 0.268911 0)
(0.0714851 0.292919 0)
(-0.0119654 0.301473 0)
(-0.0786546 0.247891 0)
(-0.0701379 0.123253 0)
(-0.0610716 -0.0170773 0)
(-0.0306 -0.146418 0)
(0.0154688 -0.253014 0)
(0.0700909 -0.327796 0)
(0.127082 -0.370047 0)
(0.179677 -0.385412 0)
(0.219065 -0.382569 0)
(0.253328 -0.365005 0)
(0.283604 -0.33861 0)
(0.289477 -0.316741 0)
(0.269966 -0.303546 0)
(0.248991 -0.289753 0)
(0.242236 -0.268326 0)
(0.246648 -0.240466 0)
(0.254544 -0.20854 0)
(0.260525 -0.172907 0)
(0.260848 -0.134347 0)
(0.253368 -0.095608 0)
(0.238434 -0.0608772 0)
(0.219194 -0.0341652 0)
(0.200284 -0.0171114 0)
(0.184768 -0.00773254 0)
(0.172164 -0.00173932 0)
(0.158919 0.00446909 0)
(0.141388 0.0116948 0)
(0.116941 0.0184706 0)
(0.0857241 0.0214997 0)
(0.0494666 0.0180295 0)
(0.011605 0.00551359 0)
(-0.0238543 -0.0168233 0)
(-0.0520659 -0.0476454 0)
(-0.0712838 -0.0831709 0)
(-0.0806108 -0.120945 0)
(-0.0815259 -0.154596 0)
(-0.0754573 -0.185396 0)
(-0.0646642 -0.207356 0)
(-0.0488031 -0.22318 0)
(-0.033196 -0.2323 0)
(-0.0183779 -0.236042 0)
(-0.00136819 -0.22941 0)
(0.00775718 -0.25046 0)
(-5.21471e-05 -0.274276 0)
(-0.000307809 -0.00539337 0)
(-0.00093452 -0.00396233 0)
(-0.00150171 -0.00219616 0)
(-0.00227126 0.00078231 0)
(-0.00325598 0.00551053 0)
(-0.00338763 0.01291 0)
(-0.00066016 0.0240775 0)
(0.00587944 0.0389596 0)
(0.0157263 0.0561954 0)
(0.0283421 0.0740502 0)
(0.0431311 0.0910487 0)
(0.0593623 0.106099 0)
(0.0763052 0.118578 0)
(0.0933452 0.128298 0)
(0.11003 0.13539 0)
(0.12606 0.140172 0)
(0.141254 0.143033 0)
(0.155514 0.144367 0)
(0.168802 0.144524 0)
(0.181114 0.143792 0)
(0.192473 0.142398 0)
(0.202919 0.140503 0)
(0.212506 0.138219 0)
(0.221301 0.135619 0)
(0.229385 0.132743 0)
(0.236854 0.129615 0)
(0.243814 0.126242 0)
(0.250377 0.122628 0)
(0.256651 0.11878 0)
(0.262732 0.114717 0)
(0.268697 0.110482 0)
(0.274598 0.106148 0)
(0.280459 0.101823 0)
(0.286279 0.0976479 0)
(0.292031 0.0937902 0)
(0.297665 0.0904315 0)
(0.303103 0.0877579 0)
(0.308248 0.0859499 0)
(0.312975 0.0851744 0)
(0.317137 0.0855818 0)
(0.320564 0.0873053 0)
(0.323061 0.0904637 0)
(0.32441 0.0951668 0)
(0.324364 0.101521 0)
(0.322644 0.109637 0)
(0.318927 0.119632 0)
(0.312833 0.13164 0)
(0.303896 0.145803 0)
(0.291529 0.162279 0)
(0.27497 0.181211 0)
(0.253211 0.20271 0)
(0.224854 0.226782 0)
(0.187912 0.253218 0)
(0.139757 0.281406 0)
(0.0761306 0.309065 0)
(-0.00865155 0.317561 0)
(-0.0667755 0.2539 0)
(-0.0566776 0.121725 0)
(-0.0494211 -0.0213636 0)
(-0.01865 -0.155174 0)
(0.0284215 -0.264244 0)
(0.083617 -0.340364 0)
(0.139869 -0.38253 0)
(0.193736 -0.396 0)
(0.235168 -0.390759 0)
(0.266642 -0.37219 0)
(0.29746 -0.343223 0)
(0.310915 -0.315826 0)
(0.295626 -0.298876 0)
(0.270248 -0.28594 0)
(0.25628 -0.267417 0)
(0.256262 -0.241517 0)
(0.262673 -0.210002 0)
(0.268518 -0.173624 0)
(0.26894 -0.133581 0)
(0.261322 -0.0931221 0)
(0.246058 -0.0570463 0)
(0.226728 -0.0298748 0)
(0.208405 -0.0132767 0)
(0.194066 -0.00466872 0)
(0.182573 0.00105497 0)
(0.169683 0.00787713 0)
(0.151383 0.0164639 0)
(0.125064 0.0248989 0)
(0.0911021 0.0293692 0)
(0.0516989 0.0266868 0)
(0.0108074 0.014024 0)
(-0.0270818 -0.00945978 0)
(-0.0567223 -0.0421827 0)
(-0.0762863 -0.0798686 0)
(-0.0850231 -0.11986 0)
(-0.0849049 -0.155178 0)
(-0.0777802 -0.1874 0)
(-0.066655 -0.210307 0)
(-0.0505994 -0.226854 0)
(-0.0342833 -0.235707 0)
(-0.0192489 -0.239693 0)
(-0.00210625 -0.232375 0)
(0.00765886 -0.250646 0)
(0.000129835 -0.273441 0)
(-0.00026023 -0.00527613 0)
(-0.000632679 -0.00386367 0)
(-0.000875377 -0.00208447 0)
(-0.00129487 0.000948864 0)
(-0.00208555 0.00564087 0)
(-0.002444 0.0126725 0)
(-0.000341074 0.0231205 0)
(0.00563391 0.0372013 0)
(0.0150916 0.0537527 0)
(0.0273869 0.0710516 0)
(0.0419166 0.0876401 0)
(0.0579687 0.102441 0)
(0.0748198 0.114821 0)
(0.091846 0.124562 0)
(0.108575 0.131762 0)
(0.124686 0.136706 0)
(0.139979 0.139763 0)
(0.154343 0.141308 0)
(0.167728 0.141682 0)
(0.180126 0.141166 0)
(0.191554 0.13998 0)
(0.202051 0.138283 0)
(0.211671 0.136184 0)
(0.220482 0.133752 0)
(0.228567 0.131025 0)
(0.236023 0.128022 0)
(0.242959 0.124751 0)
(0.24949 0.121214 0)
(0.25573 0.117419 0)
(0.261779 0.113389 0)
(0.267722 0.109172 0)
(0.273619 0.104847 0)
(0.279503 0.100528 0)
(0.28538 0.0963608 0)
(0.291227 0.0925192 0)
(0.296995 0.0891906 0)
(0.302609 0.0865667 0)
(0.307968 0.0848333 0)
(0.312945 0.0841628 0)
(0.317388 0.084711 0)
(0.321124 0.086616 0)
(0.323956 0.0900021 0)
(0.325664 0.0949844 0)
(0.326001 0.101676 0)
(0.32469 0.110196 0)
(0.321412 0.120673 0)
(0.315787 0.133256 0)
(0.307355 0.148113 0)
(0.29553 0.16543 0)
(0.279545 0.185404 0)
(0.258378 0.208214 0)
(0.230597 0.233971 0)
(0.194137 0.262612 0)
(0.1462 0.293823 0)
(0.0816291 0.325185 0)
(-0.00346216 0.332675 0)
(-0.051506 0.258968 0)
(-0.0449124 0.1204 0)
(-0.0372668 -0.025652 0)
(-0.00630172 -0.163786 0)
(0.0413929 -0.275533 0)
(0.0975333 -0.352763 0)
(0.153351 -0.394803 0)
(0.206875 -0.406774 0)
(0.250584 -0.39887 0)
(0.2806 -0.378933 0)
(0.309593 -0.348457 0)
(0.328863 -0.316301 0)
(0.319886 -0.294534 0)
(0.2929 -0.281041 0)
(0.272182 -0.265182 0)
(0.266839 -0.241811 0)
(0.271108 -0.211224 0)
(0.276622 -0.174322 0)
(0.277158 -0.132828 0)
(0.269477 -0.0906298 0)
(0.253994 -0.0532296 0)
(0.234737 -0.0256988 0)
(0.217167 -0.00968488 0)
(0.20405 -0.00188635 0)
(0.193512 0.00367438 0)
(0.180664 0.0113233 0)
(0.161219 0.0215051 0)
(0.132675 0.031794 0)
(0.0956776 0.0378272 0)
(0.0529489 0.035941 0)
(0.00894598 0.0230523 0)
(-0.0313717 -0.00179196 0)
(-0.0624193 -0.0365997 0)
(-0.082318 -0.0766467 0)
(-0.0903189 -0.119014 0)
(-0.088835 -0.15603 0)
(-0.0801188 -0.18959 0)
(-0.0682883 -0.213289 0)
(-0.0520493 -0.230583 0)
(-0.0351585 -0.239172 0)
(-0.0199175 -0.243331 0)
(-0.00274173 -0.235391 0)
(0.00759684 -0.250921 0)
(0.000344136 -0.272607 0)
(-0.000214166 -0.00519721 0)
(-0.000351065 -0.00382763 0)
(-0.00029137 -0.00204795 0)
(-0.000357409 0.00104959 0)
(-0.000888968 0.00576389 0)
(-0.00136869 0.0125247 0)
(0.000139535 0.0223083 0)
(0.00547619 0.0355735 0)
(0.014502 0.0514184 0)
(0.0264645 0.0681521 0)
(0.040728 0.0843197 0)
(0.0565927 0.0988562 0)
(0.0733428 0.11112 0)
(0.0903467 0.120867 0)
(0.107115 0.128162 0)
(0.123305 0.133261 0)
(0.138698 0.136508 0)
(0.153168 0.138263 0)
(0.166655 0.138852 0)
(0.179141 0.138552 0)
(0.190643 0.137576 0)
(0.201195 0.136079 0)
(0.210851 0.134167 0)
(0.21968 0.131904 0)
(0.227766 0.129327 0)
(0.235208 0.126452 0)
(0.242119 0.123283 0)
(0.248616 0.119823 0)
(0.254818 0.116081 0)
(0.260834 0.112083 0)
(0.266754 0.107881 0)
(0.272647 0.10356 0)
(0.278555 0.0992387 0)
(0.284488 0.0950718 0)
(0.290432 0.0912375 0)
(0.296338 0.0879297 0)
(0.302132 0.0853461 0)
(0.307709 0.0836783 0)
(0.31294 0.0831044 0)
(0.31767 0.083785 0)
(0.321721 0.0858636 0)
(0.324895 0.0894691 0)
(0.326969 0.094722 0)
(0.327699 0.101742 0)
(0.326808 0.110655 0)
(0.32398 0.121602 0)
(0.318843 0.134746 0)
(0.310939 0.150278 0)
(0.299687 0.168421 0)
(0.28432 0.189417 0)
(0.26381 0.213522 0)
(0.236695 0.240956 0)
(0.200856 0.27181 0)
(0.153342 0.306101 0)
(0.0879447 0.34115 0)
(0.00344862 0.346578 0)
(-0.0336303 0.263389 0)
(-0.0330314 0.119584 0)
(-0.0246231 -0.0299512 0)
(0.00610881 -0.172211 0)
(0.0539359 -0.286928 0)
(0.111076 -0.365168 0)
(0.167309 -0.406838 0)
(0.219719 -0.417553 0)
(0.264974 -0.407041 0)
(0.295031 -0.38522 0)
(0.321056 -0.353852 0)
(0.343714 -0.318055 0)
(0.341935 -0.290994 0)
(0.316123 -0.275491 0)
(0.289835 -0.261657 0)
(0.278544 -0.2412 0)
(0.279923 -0.212107 0)
(0.28483 -0.174976 0)
(0.285478 -0.1321 0)
(0.277816 -0.0881534 0)
(0.262239 -0.0494577 0)
(0.243217 -0.0216692 0)
(0.226528 -0.00634827 0)
(0.214603 0.000638453 0)
(0.204795 0.0061798 0)
(0.191649 0.0148839 0)
(0.170711 0.0268881 0)
(0.139654 0.0392059 0)
(0.099438 0.0468957 0)
(0.0533338 0.0457906 0)
(0.00628864 0.0325381 0)
(-0.0363246 0.00617489 0)
(-0.068716 -0.0308992 0)
(-0.0890507 -0.0735073 0)
(-0.0963761 -0.118437 0)
(-0.0934338 -0.157232 0)
(-0.0826598 -0.192069 0)
(-0.0696447 -0.216352 0)
(-0.0531074 -0.234353 0)
(-0.0357806 -0.242673 0)
(-0.0203575 -0.246944 0)
(-0.00325401 -0.238438 0)
(0.00757942 -0.251273 0)
(0.000594582 -0.271763 0)
(-0.00017021 -0.00515312 0)
(-9.52596e-05 -0.00384777 0)
(0.000237561 -0.00208089 0)
(0.00051559 0.00107983 0)
(0.000293446 0.0058614 0)
(-0.000197915 0.0124478 0)
(0.000781036 0.0216393 0)
(0.00542073 0.0340861 0)
(0.0139613 0.0491972 0)
(0.0255742 0.0653521 0)
(0.0395645 0.0810876 0)
(0.0552346 0.0953448 0)
(0.0718753 0.107476 0)
(0.088849 0.117214 0)
(0.10565 0.124592 0)
(0.121916 0.129836 0)
(0.137409 0.133268 0)
(0.151988 0.135229 0)
(0.16558 0.136034 0)
(0.178161 0.135951 0)
(0.18974 0.135186 0)
(0.200351 0.13389 0)
(0.210045 0.132167 0)
(0.218893 0.130076 0)
(0.22698 0.127651 0)
(0.234408 0.124904 0)
(0.241291 0.121839 0)
(0.247753 0.118456 0)
(0.253915 0.114766 0)
(0.259895 0.110798 0)
(0.265791 0.106608 0)
(0.271679 0.102285 0)
(0.27761 0.097956 0)
(0.283603 0.0937809 0)
(0.289645 0.089945 0)
(0.295691 0.0866487 0)
(0.301667 0.0840961 0)
(0.307467 0.082485 0)
(0.312957 0.081999 0)
(0.317978 0.082804 0)
(0.322351 0.0850481 0)
(0.325873 0.0888649 0)
(0.328322 0.0943798 0)
(0.329453 0.101718 0)
(0.328992 0.111013 0)
(0.326629 0.122417 0)
(0.321995 0.136107 0)
(0.314641 0.152298 0)
(0.303992 0.171245 0)
(0.289288 0.193242 0)
(0.269496 0.218621 0)
(0.243139 0.247717 0)
(0.208062 0.280778 0)
(0.161178 0.318189 0)
(0.0949862 0.356891 0)
(0.0118708 0.359189 0)
(-0.0144868 0.267188 0)
(-0.0201142 0.119315 0)
(-0.0114021 -0.0342005 0)
(0.0188208 -0.180476 0)
(0.0666074 -0.298357 0)
(0.124316 -0.377641 0)
(0.181446 -0.418693 0)
(0.232712 -0.428183 0)
(0.278361 -0.415306 0)
(0.309517 -0.391156 0)
(0.332568 -0.359063 0)
(0.356141 -0.32081 0)
(0.361324 -0.288554 0)
(0.339078 -0.269758 0)
(0.308956 -0.256986 0)
(0.291499 -0.239572 0)
(0.289214 -0.21254 0)
(0.293144 -0.175552 0)
(0.293874 -0.131403 0)
(0.286322 -0.0857167 0)
(0.270785 -0.0457607 0)
(0.252152 -0.0178109 0)
(0.236426 -0.0032667 0)
(0.225594 0.00294525 0)
(0.216242 0.00863854 0)
(0.202463 0.0186281 0)
(0.179739 0.0326655 0)
(0.145976 0.0471628 0)
(0.102486 0.0565679 0)
(0.0531204 0.0562029 0)
(0.00328285 0.0424245 0)
(-0.0413494 0.0145121 0)
(-0.0749616 -0.0250791 0)
(-0.0958937 -0.0704168 0)
(-0.102804 -0.118102 0)
(-0.0986335 -0.158817 0)
(-0.0855436 -0.194934 0)
(-0.070842 -0.219571 0)
(-0.0537538 -0.238167 0)
(-0.0361076 -0.246191 0)
(-0.0205418 -0.250517 0)
(-0.00362056 -0.241494 0)
(0.00761597 -0.25169 0)
(0.000884913 -0.270902 0)
(-0.000129038 -0.00513979 0)
(0.00012949 -0.00391681 0)
(0.000699875 -0.00217588 0)
(0.00130128 0.00103818 0)
(0.00142295 0.00591821 0)
(0.00102554 0.0124193 0)
(0.00157073 0.0211063 0)
(0.00548156 0.0327475 0)
(0.0134752 0.0470948 0)
(0.0247161 0.0626525 0)
(0.0384255 0.0779435 0)
(0.0538946 0.0919071 0)
(0.0704183 0.103889 0)
(0.0873543 0.113603 0)
(0.104183 0.121051 0)
(0.120521 0.126432 0)
(0.136114 0.130043 0)
(0.150803 0.132207 0)
(0.164503 0.133227 0)
(0.177182 0.13336 0)
(0.188842 0.132807 0)
(0.199515 0.131716 0)
(0.209251 0.130183 0)
(0.218119 0.128266 0)
(0.226208 0.125995 0)
(0.23362 0.123379 0)
(0.240475 0.120418 0)
(0.246898 0.117113 0)
(0.253019 0.113475 0)
(0.258961 0.109535 0)
(0.264831 0.105352 0)
(0.270714 0.101023 0)
(0.276668 0.0966793 0)
(0.28272 0.0924881 0)
(0.288862 0.0886417 0)
(0.295052 0.0853476 0)
(0.301213 0.082817 0)
(0.307239 0.0812536 0)
(0.312993 0.080847 0)
(0.318312 0.0817682 0)
(0.323012 0.0841698 0)
(0.326889 0.0881898 0)
(0.329719 0.093958 0)
(0.331259 0.101605 0)
(0.331238 0.111271 0)
(0.329351 0.123118 0)
(0.325236 0.137339 0)
(0.318453 0.15417 0)
(0.308436 0.173899 0)
(0.294436 0.196872 0)
(0.275425 0.223499 0)
(0.249916 0.254232 0)
(0.215744 0.289486 0)
(0.169708 0.330051 0)
(0.102714 0.372355 0)
(0.021864 0.370445 0)
(0.00439071 0.270457 0)
(-0.00616044 0.119486 0)
(0.00246323 -0.0382524 0)
(0.0323766 -0.188595 0)
(0.0799684 -0.309687 0)
(0.137601 -0.390114 0)
(0.195557 -0.43041 0)
(0.246065 -0.438561 0)
(0.291016 -0.423613 0)
(0.323638 -0.396882 0)
(0.344481 -0.36389 0)
(0.366922 -0.324214 0)
(0.377943 -0.287336 0)
(0.361022 -0.264282 0)
(0.329118 -0.251406 0)
(0.305753 -0.236869 0)
(0.299085 -0.212406 0)
(0.301576 -0.176001 0)
(0.302322 -0.130742 0)
(0.294972 -0.0833441 0)
(0.279617 -0.0421673 0)
(0.261513 -0.0141413 0)
(0.246785 -0.000427156 0)
(0.236885 0.00508342 0)
(0.227692 0.0111174 0)
(0.212978 0.0226142 0)
(0.18825 0.03887 0)
(0.151696 0.0556656 0)
(0.105022 0.0668074 0)
(0.0526771 0.0671044 0)
(0.000498281 0.052635 0)
(-0.0457563 0.0231025 0)
(-0.0804133 -0.0191426 0)
(-0.102094 -0.0673156 0)
(-0.108981 -0.117925 0)
(-0.104133 -0.160746 0)
(-0.0888022 -0.198243 0)
(-0.0720086 -0.223029 0)
(-0.0539992 -0.242047 0)
(-0.0361011 -0.24971 0)
(-0.0204421 -0.254033 0)
(-0.00381747 -0.244537 0)
(0.00771665 -0.252158 0)
(0.00121876 -0.270013 0)
(-9.14656e-05 -0.00515253 0)
(0.000317911 -0.0040264 0)
(0.00108522 -0.00232527 0)
(0.00197997 0.000926402 0)
(0.00246366 0.00592224 0)
(0.00225533 0.0124155 0)
(0.00248428 0.0206968 0)
(0.0056691 0.0315631 0)
(0.0130517 0.0451185 0)
(0.0238909 0.0600549 0)
(0.0373103 0.0748875 0)
(0.0525726 0.0885433 0)
(0.0689727 0.100361 0)
(0.085864 0.110035 0)
(0.102713 0.117541 0)
(0.119121 0.123049 0)
(0.134812 0.126833 0)
(0.149612 0.129197 0)
(0.163423 0.13043 0)
(0.176203 0.13078 0)
(0.187949 0.130441 0)
(0.198687 0.129555 0)
(0.208467 0.128215 0)
(0.217358 0.126475 0)
(0.225448 0.12436 0)
(0.232844 0.121876 0)
(0.239668 0.119021 0)
(0.246051 0.115795 0)
(0.252128 0.112208 0)
(0.25803 0.108293 0)
(0.263872 0.104115 0)
(0.269748 0.0997736 0)
(0.275726 0.0954085 0)
(0.281838 0.0911932 0)
(0.288082 0.0873275 0)
(0.294417 0.0840266 0)
(0.300768 0.0815086 0)
(0.307024 0.0799841 0)
(0.313046 0.0796485 0)
(0.318668 0.0806778 0)
(0.3237 0.083229 0)
(0.327938 0.087444 0)
(0.331157 0.0934567 0)
(0.333114 0.101402 0)
(0.333542 0.111428 0)
(0.332141 0.123705 0)
(0.32856 0.13844 0)
(0.322367 0.155891 0)
(0.313011 0.176379 0)
(0.299755 0.2003 0)
(0.281585 0.228144 0)
(0.257013 0.260482 0)
(0.223892 0.2979 0)
(0.178936 0.341666 0)
(0.111184 0.387443 0)
(0.0338016 0.380457 0)
(0.0220958 0.273444 0)
(0.00867951 0.119981 0)
(0.0171923 -0.0421492 0)
(0.0468519 -0.196588 0)
(0.0940676 -0.320817 0)
(0.151175 -0.402487 0)
(0.209531 -0.442015 0)
(0.259766 -0.448642 0)
(0.303292 -0.431858 0)
(0.33711 -0.402514 0)
(0.356831 -0.368265 0)
(0.376802 -0.327908 0)
(0.391957 -0.287302 0)
(0.38137 -0.259431 0)
(0.34981 -0.245222 0)
(0.321267 -0.233098 0)
(0.309642 -0.211592 0)
(0.310155 -0.176264 0)
(0.310799 -0.130117 0)
(0.303742 -0.0810592 0)
(0.288716 -0.0387045 0)
(0.271264 -0.0106717 0)
(0.257519 0.00219359 0)
(0.248344 0.00710781 0)
(0.239015 0.0136773 0)
(0.223114 0.0268852 0)
(0.196256 0.0455129 0)
(0.156939 0.0646853 0)
(0.107319 0.0775468 0)
(0.0524341 0.0783962 0)
(-0.00150078 0.063073 0)
(-0.0488918 0.031791 0)
(-0.0843567 -0.0130941 0)
(-0.106904 -0.0641339 0)
(-0.114179 -0.117779 0)
(-0.109413 -0.16291 0)
(-0.0923049 -0.201992 0)
(-0.0732484 -0.226799 0)
(-0.0538819 -0.246034 0)
(-0.0357293 -0.253219 0)
(-0.0200282 -0.257475 0)
(-0.00382032 -0.247539 0)
(0.00789223 -0.252663 0)
(0.00159977 -0.269085 0)
(-5.84742e-05 -0.00518622 0)
(0.000464749 -0.00416738 0)
(0.00138428 -0.00251991 0)
(0.00253492 0.000748514 0)
(0.00338365 0.0058641 0)
(0.00344477 0.0124136 0)
(0.00348722 0.0203929 0)
(0.00598698 0.0305338 0)
(0.0127005 0.0432756 0)
(0.0231008 0.0575619 0)
(0.0362184 0.0719195 0)
(0.0512685 0.0852535 0)
(0.0675392 0.0968923 0)
(0.0843794 0.106511 0)
(0.101244 0.114062 0)
(0.117717 0.119688 0)
(0.133505 0.123638 0)
(0.148416 0.126197 0)
(0.162341 0.127642 0)
(0.175225 0.128209 0)
(0.187059 0.128086 0)
(0.197866 0.127408 0)
(0.207691 0.126263 0)
(0.216606 0.124702 0)
(0.224698 0.122745 0)
(0.232077 0.120395 0)
(0.238869 0.117648 0)
(0.245209 0.1145 0)
(0.25124 0.110964 0)
(0.257099 0.107073 0)
(0.262912 0.102895 0)
(0.268781 0.0985372 0)
(0.274782 0.0941438 0)
(0.280954 0.0898963 0)
(0.287301 0.0860025 0)
(0.293784 0.0826855 0)
(0.300327 0.080171 0)
(0.306818 0.0786767 0)
(0.313114 0.0784036 0)
(0.319043 0.079533 0)
(0.324414 0.0822259 0)
(0.329019 0.0866279 0)
(0.332633 0.0928765 0)
(0.335014 0.101111 0)
(0.335899 0.111485 0)
(0.334996 0.124177 0)
(0.331961 0.139409 0)
(0.326377 0.157459 0)
(0.317706 0.178682 0)
(0.305234 0.20352 0)
(0.287962 0.232545 0)
(0.264411 0.266448 0)
(0.232494 0.305986 0)
(0.188854 0.353004 0)
(0.120556 0.402009 0)
(0.0480263 0.389472 0)
(0.0387502 0.276237 0)
(0.0243727 0.120715 0)
(0.0328432 -0.04587 0)
(0.0619713 -0.204417 0)
(0.108769 -0.331718 0)
(0.165214 -0.414676 0)
(0.223409 -0.453501 0)
(0.27369 -0.458425 0)
(0.3155 -0.439933 0)
(0.349833 -0.408121 0)
(0.369451 -0.372216 0)
(0.386388 -0.331585 0)
(0.403734 -0.288293 0)
(0.399729 -0.255475 0)
(0.370487 -0.238767 0)
(0.337906 -0.228334 0)
(0.320982 -0.210006 0)
(0.318924 -0.176271 0)
(0.319287 -0.129521 0)
(0.312606 -0.0788842 0)
(0.298057 -0.0353961 0)
(0.281361 -0.00740593 0)
(0.268538 0.00462694 0)
(0.259853 0.00907403 0)
(0.250114 0.0163695 0)
(0.232841 0.0314664 0)
(0.203816 0.0525836 0)
(0.161883 0.0741665 0)
(0.10969 0.0886875 0)
(0.0528345 0.0899567 0)
(-0.00220336 0.0736222 0)
(-0.0502513 0.0405503 0)
(-0.0862935 -0.00693869 0)
(-0.109767 -0.0608106 0)
(-0.117742 -0.11753 0)
(-0.113827 -0.165146 0)
(-0.0957334 -0.206105 0)
(-0.0745995 -0.230926 0)
(-0.0534572 -0.250176 0)
(-0.0349734 -0.256714 0)
(-0.0192705 -0.26083 0)
(-0.00360387 -0.250474 0)
(0.00815424 -0.253188 0)
(0.0020316 -0.268105 0)
(-3.11616e-05 -0.00523537 0)
(0.00056492 -0.00433006 0)
(0.00158868 -0.00274995 0)
(0.00295212 0.000510577 0)
(0.00415562 0.00573819 0)
(0.00454908 0.0123927 0)
(0.00453754 0.0201723 0)
(0.00642962 0.0296555 0)
(0.0124321 0.0415731 0)
(0.0223493 0.0551769 0)
(0.0351499 0.0690398 0)
(0.049982 0.0820374 0)
(0.0661182 0.0934824 0)
(0.0829016 0.103032 0)
(0.0997767 0.110615 0)
(0.116311 0.116349 0)
(0.132193 0.120458 0)
(0.147216 0.123209 0)
(0.161255 0.124864 0)
(0.174246 0.125648 0)
(0.186171 0.125741 0)
(0.197049 0.125273 0)
(0.206923 0.124326 0)
(0.215862 0.122946 0)
(0.223957 0.12115 0)
(0.231318 0.118936 0)
(0.238076 0.116298 0)
(0.244372 0.11323 0)
(0.250354 0.109744 0)
(0.256168 0.105875 0)
(0.261949 0.101694 0)
(0.267809 0.0973136 0)
(0.273832 0.092885 0)
(0.280066 0.0885973 0)
(0.286517 0.0846666 0)
(0.293151 0.0813244 0)
(0.29989 0.0788044 0)
(0.30662 0.0773314 0)
(0.313193 0.0771126 0)
(0.319435 0.0783341 0)
(0.32515 0.081161 0)
(0.330128 0.085742 0)
(0.334143 0.0922178 0)
(0.336955 0.100732 0)
(0.338306 0.111442 0)
(0.337909 0.124536 0)
(0.335433 0.140247 0)
(0.330474 0.158875 0)
(0.322514 0.180804 0)
(0.31086 0.206526 0)
(0.294542 0.236692 0)
(0.272093 0.272114 0)
(0.241538 0.313703 0)
(0.199432 0.364025 0)
(0.130943 0.415883 0)
(0.0646847 0.397711 0)
(0.0551587 0.279035 0)
(0.0409394 0.121505 0)
(0.0492565 -0.0494275 0)
(0.0775939 -0.212067 0)
(0.123972 -0.342397 0)
(0.179798 -0.426623 0)
(0.237319 -0.46483 0)
(0.287694 -0.467927 0)
(0.327852 -0.447744 0)
(0.361859 -0.413712 0)
(0.382085 -0.37583 0)
(0.396098 -0.33502 0)
(0.41376 -0.29007 0)
(0.415902 -0.252569 0)
(0.390629 -0.232377 0)
(0.355448 -0.222716 0)
(0.333173 -0.207578 0)
(0.327942 -0.175941 0)
(0.327777 -0.12894 0)
(0.321537 -0.07684 0)
(0.307612 -0.0322633 0)
(0.291752 -0.00434065 0)
(0.279752 0.0069098 0)
(0.271313 0.0110347 0)
(0.260928 0.0192334 0)
(0.242168 0.0363649 0)
(0.211032 0.06005 0)
(0.166736 0.0840335 0)
(0.112457 0.100113 0)
(0.0542593 0.101645 0)
(-0.00125437 0.0841753 0)
(-0.0495559 0.0493281 0)
(-0.0860098 -0.000680319 0)
(-0.11043 -0.0573097 0)
(-0.119259 -0.117074 0)
(-0.116765 -0.167276 0)
(-0.0986118 -0.210438 0)
(-0.0759978 -0.235402 0)
(-0.0527789 -0.254519 0)
(-0.0338286 -0.260207 0)
(-0.0181406 -0.264079 0)
(-0.00314199 -0.253314 0)
(0.00851496 -0.253714 0)
(0.00251785 -0.26706 0)
(-1.0752e-05 -0.005294 0)
(0.000613614 -0.00450445 0)
(0.00169108 -0.00300491 0)
(0.0032201 0.000220232 0)
(0.00475695 0.00554229 0)
(0.00552722 0.0123343 0)
(0.00558881 0.0200101 0)
(0.00698111 0.0289184 0)
(0.0122553 0.0400159 0)
(0.021642 0.0529044 0)
(0.0341055 0.0662492 0)
(0.0487129 0.078895 0)
(0.0647101 0.0901318 0)
(0.0814316 0.0995988 0)
(0.0983118 0.107202 0)
(0.114903 0.113032 0)
(0.130878 0.117293 0)
(0.146012 0.120232 0)
(0.160166 0.122095 0)
(0.173265 0.123096 0)
(0.185285 0.123407 0)
(0.196236 0.12315 0)
(0.20616 0.122404 0)
(0.215125 0.121208 0)
(0.223222 0.119575 0)
(0.230566 0.1175 0)
(0.237288 0.114972 0)
(0.243537 0.111985 0)
(0.249467 0.108547 0)
(0.255234 0.104698 0)
(0.260981 0.100511 0)
(0.26683 0.0961029 0)
(0.272875 0.0916323 0)
(0.27917 0.0872963 0)
(0.285728 0.0833199 0)
(0.292515 0.0799433 0)
(0.299453 0.0774088 0)
(0.306426 0.0759484 0)
(0.313282 0.0757757 0)
(0.319842 0.0770815 0)
(0.325907 0.0800346 0)
(0.331263 0.0847867 0)
(0.335684 0.0914812 0)
(0.338933 0.100264 0)
(0.340757 0.111299 0)
(0.340875 0.124781 0)
(0.338969 0.140954 0)
(0.334651 0.160137 0)
(0.327423 0.182744 0)
(0.316622 0.209314 0)
(0.301311 0.240576 0)
(0.280036 0.277462 0)
(0.251008 0.321017 0)
(0.210603 0.374683 0)
(0.142303 0.428895 0)
(0.0836117 0.405294 0)
(0.072108 0.281983 0)
(0.0584347 0.122274 0)
(0.0663129 -0.0528006 0)
(0.0937692 -0.219518 0)
(0.13961 -0.352862 0)
(0.194898 -0.438293 0)
(0.251396 -0.475948 0)
(0.301671 -0.477167 0)
(0.340448 -0.455228 0)
(0.373344 -0.419253 0)
(0.394478 -0.379209 0)
(0.406152 -0.338074 0)
(0.422566 -0.292359 0)
(0.429874 -0.250762 0)
(0.409779 -0.226357 0)
(0.373602 -0.216436 0)
(0.346248 -0.204278 0)
(0.337282 -0.175194 0)
(0.336272 -0.128351 0)
(0.33051 -0.0749439 0)
(0.317351 -0.0293241 0)
(0.302384 -0.00146749 0)
(0.29108 0.00908136 0)
(0.282646 0.0130363 0)
(0.271427 0.0222949 0)
(0.251138 0.0415712 0)
(0.21803 0.0678618 0)
(0.171712 0.0941941 0)
(0.115901 0.111694 0)
(0.0569901 0.113336 0)
(0.00153529 0.0946495 0)
(-0.0467606 0.058076 0)
(-0.0835752 0.00564891 0)
(-0.108967 -0.0536191 0)
(-0.118647 -0.11636 0)
(-0.117819 -0.169157 0)
(-0.100402 -0.214804 0)
(-0.0772569 -0.240159 0)
(-0.0518796 -0.259099 0)
(-0.0323031 -0.263716 0)
(-0.0166131 -0.26721 0)
(-0.00240904 -0.256031 0)
(0.00898687 -0.254223 0)
(0.00306215 -0.265935 0)
(1.42854e-06 -0.00535574 0)
(0.000606531 -0.00468033 0)
(0.00168532 -0.0032739 0)
(0.00332958 -0.000113533 0)
(0.00516944 0.00527712 0)
(0.00634308 0.0122235 0)
(0.00659326 0.0198805 0)
(0.00761557 0.0283071 0)
(0.0121758 0.0386062 0)
(0.0209859 0.0507491 0)
(0.0330869 0.0635491 0)
(0.0474614 0.075826 0)
(0.0633153 0.0868405 0)
(0.0799703 0.096211 0)
(0.0968508 0.103821 0)
(0.113495 0.109739 0)
(0.12956 0.114145 0)
(0.144804 0.117267 0)
(0.159074 0.119335 0)
(0.172284 0.120553 0)
(0.184399 0.121082 0)
(0.195426 0.121039 0)
(0.205402 0.120495 0)
(0.214394 0.119486 0)
(0.222494 0.11802 0)
(0.229818 0.116086 0)
(0.236503 0.11367 0)
(0.242702 0.110763 0)
(0.248579 0.107375 0)
(0.254295 0.103544 0)
(0.260005 0.0993465 0)
(0.265842 0.0949052 0)
(0.271908 0.0903857 0)
(0.278265 0.0859934 0)
(0.284931 0.0819624 0)
(0.291873 0.0785423 0)
(0.299014 0.0759842 0)
(0.306234 0.0745278 0)
(0.313378 0.0743931 0)
(0.320261 0.0757754 0)
(0.32668 0.0788472 0)
(0.33242 0.0837628 0)
(0.337254 0.0906675 0)
(0.340946 0.0997103 0)
(0.343248 0.111058 0)
(0.343889 0.124912 0)
(0.342564 0.141529 0)
(0.3389 0.161244 0)
(0.332425 0.1845 0)
(0.322507 0.21188 0)
(0.308254 0.24419 0)
(0.288215 0.282478 0)
(0.260893 0.327898 0)
(0.222277 0.384946 0)
(0.154476 0.440906 0)
(0.10426 0.412225 0)
(0.0899733 0.28514 0)
(0.0768356 0.123045 0)
(0.0840616 -0.0559673 0)
(0.110596 -0.226741 0)
(0.155684 -0.363103 0)
(0.210455 -0.449673 0)
(0.265753 -0.486805 0)
(0.31557 -0.486154 0)
(0.353291 -0.462353 0)
(0.384488 -0.424682 0)
(0.406436 -0.382446 0)
(0.416597 -0.340695 0)
(0.430659 -0.294888 0)
(0.441779 -0.250005 0)
(0.427578 -0.220963 0)
(0.392032 -0.209721 0)
(0.360188 -0.200116 0)
(0.347025 -0.173949 0)
(0.344787 -0.12772 0)
(0.339504 -0.073208 0)
(0.32724 -0.0265923 0)
(0.313201 0.0012258 0)
(0.302449 0.0111805 0)
(0.2938 0.0151178 0)
(0.28161 0.0255668 0)
(0.259816 0.0470608 0)
(0.224948 0.0759538 0)
(0.177018 0.104545 0)
(0.120255 0.123307 0)
(0.0612031 0.124919 0)
(0.00619018 0.104989 0)
(-0.0420209 0.0667614 0)
(-0.0792724 0.0120779 0)
(-0.105687 -0.0497495 0)
(-0.116094 -0.115384 0)
(-0.116881 -0.170716 0)
(-0.100641 -0.219019 0)
(-0.0780782 -0.245075 0)
(-0.0507496 -0.263921 0)
(-0.0304131 -0.267258 0)
(-0.0146663 -0.270218 0)
(-0.00137945 -0.258597 0)
(0.00958304 -0.254692 0)
(0.00366831 -0.264713 0)
(3.99808e-06 -0.00541389 0)
(0.000540044 -0.0048474 0)
(0.0015666 -0.00354616 0)
(0.00327339 -0.000481504 0)
(0.00537881 0.00494588 0)
(0.00696608 0.0120489 0)
(0.00750442 0.0197583 0)
(0.0082988 0.0278021 0)
(0.0121935 0.0373419 0)
(0.020389 0.0487159 0)
(0.0320972 0.0609415 0)
(0.0462279 0.0728307 0)
(0.061934 0.0836085 0)
(0.0785186 0.0928692 0)
(0.0953951 0.100475 0)
(0.112089 0.10647 0)
(0.12824 0.111013 0)
(0.143593 0.114313 0)
(0.157979 0.116584 0)
(0.1713 0.118018 0)
(0.183513 0.118767 0)
(0.194617 0.118939 0)
(0.204647 0.118601 0)
(0.213667 0.117782 0)
(0.22177 0.116484 0)
(0.229074 0.114694 0)
(0.23572 0.112392 0)
(0.241867 0.109567 0)
(0.247686 0.106227 0)
(0.253349 0.102412 0)
(0.259021 0.0982005 0)
(0.264844 0.0937207 0)
(0.27093 0.0891454 0)
(0.277349 0.0846886 0)
(0.284123 0.0805941 0)
(0.291223 0.0771214 0)
(0.298571 0.0745308 0)
(0.306042 0.0730699 0)
(0.313478 0.0729649 0)
(0.320689 0.0744163 0)
(0.327469 0.0775994 0)
(0.333598 0.0826707 0)
(0.33885 0.0897773 0)
(0.34299 0.0990702 0)
(0.345776 0.110719 0)
(0.346947 0.124932 0)
(0.34621 0.141974 0)
(0.343213 0.162197 0)
(0.337509 0.186071 0)
(0.328502 0.21422 0)
(0.315353 0.247529 0)
(0.296605 0.287144 0)
(0.271179 0.334329 0)
(0.234356 0.394796 0)
(0.167319 0.451844 0)
(0.125796 0.418497 0)
(0.10875 0.288492 0)
(0.0960353 0.123861 0)
(0.102591 -0.0589199 0)
(0.128155 -0.233702 0)
(0.172246 -0.373095 0)
(0.22641 -0.460754 0)
(0.280462 -0.497351 0)
(0.329396 -0.494885 0)
(0.366321 -0.469108 0)
(0.395487 -0.429926 0)
(0.417854 -0.385608 0)
(0.427352 -0.342896 0)
(0.438476 -0.297416 0)
(0.451869 -0.250173 0)
(0.443772 -0.216386 0)
(0.410384 -0.202818 0)
(0.374921 -0.195147 0)
(0.35725 -0.172136 0)
(0.353353 -0.127005 0)
(0.348502 -0.0716381 0)
(0.337244 -0.0240778 0)
(0.324149 0.00375461 0)
(0.313801 0.0132434 0)
(0.304744 0.0173088 0)
(0.291497 0.0290498 0)
(0.268282 0.0527968 0)
(0.231925 0.0842508 0)
(0.18283 0.114979 0)
(0.12568 0.134835 0)
(0.0669579 0.136303 0)
(0.0126058 0.115177 0)
(-0.0355975 0.0753778 0)
(-0.0734965 0.0185515 0)
(-0.101063 -0.0457281 0)
(-0.11203 -0.114195 0)
(-0.11412 -0.171958 0)
(-0.0990599 -0.222944 0)
(-0.0780968 -0.249996 0)
(-0.0493191 -0.268953 0)
(-0.0281773 -0.270849 0)
(-0.0122859 -0.273106 0)
(-2.75459e-05 -0.26098 0)
(0.0103186 -0.255097 0)
(0.00434029 -0.263379 0)
(-4.4264e-06 -0.00546155 0)
(0.000411381 -0.00499546 0)
(0.00133155 -0.00381105 0)
(0.00304651 -0.000873629 0)
(0.00537439 0.00455388 0)
(0.00737115 0.0118028 0)
(0.00827917 0.0196202 0)
(0.00899081 0.02738 0)
(0.0123011 0.0362166 0)
(0.0198593 0.0468086 0)
(0.031141 0.058429 0)
(0.0450135 0.0699094 0)
(0.0605666 0.0804356 0)
(0.077077 0.0895736 0)
(0.0939456 0.0971626 0)
(0.110685 0.103226 0)
(0.126921 0.107898 0)
(0.142381 0.111371 0)
(0.156882 0.113842 0)
(0.170316 0.115491 0)
(0.182628 0.116461 0)
(0.193811 0.116851 0)
(0.203895 0.11672 0)
(0.212943 0.116094 0)
(0.221049 0.114968 0)
(0.228331 0.113323 0)
(0.234937 0.111138 0)
(0.241029 0.108396 0)
(0.246788 0.105104 0)
(0.252395 0.101302 0)
(0.258025 0.0970732 0)
(0.263831 0.0925495 0)
(0.269936 0.0879114 0)
(0.276417 0.0833819 0)
(0.283302 0.0792151 0)
(0.290562 0.0756807 0)
(0.29812 0.0730485 0)
(0.305848 0.0715746 0)
(0.313581 0.0714916 0)
(0.321125 0.0730044 0)
(0.328271 0.0762915 0)
(0.334794 0.0815112 0)
(0.340468 0.0888117 0)
(0.345061 0.0983452 0)
(0.348337 0.110284 0)
(0.350043 0.124841 0)
(0.349903 0.142289 0)
(0.347584 0.162997 0)
(0.342666 0.187457 0)
(0.334596 0.216332 0)
(0.322593 0.250589 0)
(0.30518 0.291444 0)
(0.28185 0.3403 0)
(0.246769 0.404225 0)
(0.180813 0.461729 0)
(0.147392 0.424131 0)
(0.128279 0.291974 0)
(0.115949 0.124727 0)
(0.121933 -0.061665 0)
(0.146477 -0.240373 0)
(0.189348 -0.382803 0)
(0.242719 -0.471528 0)
(0.295545 -0.50755 0)
(0.343193 -0.503341 0)
(0.379451 -0.475504 0)
(0.4065 -0.434915 0)
(0.428713 -0.388726 0)
(0.438261 -0.344737 0)
(0.446348 -0.299752 0)
(0.460473 -0.251084 0)
(0.458221 -0.212745 0)
(0.428316 -0.195975 0)
(0.390322 -0.189467 0)
(0.368025 -0.169702 0)
(0.362013 -0.126158 0)
(0.357491 -0.0702328 0)
(0.347325 -0.0217866 0)
(0.335175 0.00613526 0)
(0.325087 0.015302 0)
(0.315465 0.01963 0)
(0.301124 0.0327339 0)
(0.276621 0.0587325 0)
(0.239086 0.0926723 0)
(0.189289 0.125394 0)
(0.132268 0.146181 0)
(0.0742217 0.147431 0)
(0.0205938 0.125232 0)
(-0.027824 0.0839443 0)
(-0.0666647 0.025093 0)
(-0.0955843 -0.0415674 0)
(-0.107027 -0.112876 0)
(-0.10994 -0.172948 0)
(-0.0956423 -0.226524 0)
(-0.0769615 -0.254769 0)
(-0.047455 -0.274126 0)
(-0.025607 -0.274498 0)
(-0.00946286 -0.275881 0)
(0.0016711 -0.263148 0)
(0.011209 -0.255414 0)
(0.00508204 -0.261913 0)
(-2.51651e-05 -0.00549174 0)
(0.000218816 -0.00511444 0)
(0.0009787 -0.00405807 0)
(0.00264605 -0.00127922 0)
(0.00514872 0.00410796 0)
(0.00753844 0.0114811 0)
(0.00887913 0.0194456 0)
(0.00964855 0.0270155 0)
(0.0124831 0.0352191 0)
(0.0194031 0.0450292 0)
(0.0302243 0.0560147 0)
(0.0438202 0.0670629 0)
(0.0592137 0.0773219 0)
(0.0756463 0.0863243 0)
(0.0925034 0.0938853 0)
(0.109285 0.100006 0)
(0.125602 0.104801 0)
(0.141167 0.108441 0)
(0.155784 0.111109 0)
(0.16933 0.112973 0)
(0.181742 0.114163 0)
(0.193005 0.114773 0)
(0.203145 0.114853 0)
(0.212222 0.114422 0)
(0.22033 0.113471 0)
(0.22759 0.111975 0)
(0.234152 0.109907 0)
(0.240188 0.107249 0)
(0.245883 0.104005 0)
(0.25143 0.100215 0)
(0.257015 0.0959649 0)
(0.262803 0.0913918 0)
(0.268925 0.0866838 0)
(0.275468 0.0820735 0)
(0.282465 0.0778254 0)
(0.289889 0.0742202 0)
(0.29766 0.0715375 0)
(0.305648 0.0700421 0)
(0.313683 0.0699732 0)
(0.321567 0.0715402 0)
(0.329082 0.0749243 0)
(0.336004 0.0802851 0)
(0.342105 0.0877714 0)
(0.347156 0.0975362 0)
(0.350926 0.109754 0)
(0.353173 0.12464 0)
(0.353636 0.142476 0)
(0.352003 0.163644 0)
(0.347886 0.188659 0)
(0.340775 0.218214 0)
(0.329955 0.253368 0)
(0.313917 0.295363 0)
(0.292884 0.345802 0)
(0.259478 0.41322 0)
(0.195079 0.470642 0)
(0.168534 0.429157 0)
(0.148423 0.295481 0)
(0.136553 0.12563 0)
(0.142059 -0.064211 0)
(0.165533 -0.246732 0)
(0.207024 -0.392187 0)
(0.259359 -0.48198 0)
(0.310988 -0.517375 0)
(0.357022 -0.511498 0)
(0.392594 -0.481556 0)
(0.41763 -0.439595 0)
(0.439068 -0.391802 0)
(0.44914 -0.346298 0)
(0.454492 -0.301765 0)
(0.467959 -0.252531 0)
(0.470892 -0.21009 0)
(0.445517 -0.189422 0)
(0.406218 -0.183207 0)
(0.379398 -0.166613 0)
(0.370823 -0.125124 0)
(0.366467 -0.0689822 0)
(0.357447 -0.0197206 0)
(0.346233 0.00838368 0)
(0.336275 0.0173826 0)
(0.325966 0.0220934 0)
(0.310536 0.0366003 0)
(0.284917 0.0648154 0)
(0.246541 0.101137 0)
(0.196496 0.135695 0)
(0.140049 0.157274 0)
(0.0829121 0.158285 0)
(0.0299405 0.135226 0)
(-0.0189837 0.0924639 0)
(-0.0590428 0.0318275 0)
(-0.089539 -0.0372583 0)
(-0.101471 -0.111483 0)
(-0.104868 -0.173809 0)
(-0.0906064 -0.229779 0)
(-0.0744161 -0.25927 0)
(-0.0449718 -0.27934 0)
(-0.0226959 -0.278199 0)
(-0.00619036 -0.278537 0)
(0.00373995 -0.265085 0)
(0.0122684 -0.255619 0)
(0.00589758 -0.260296 0)
(-5.93643e-05 -0.00549781 0)
(-3.81135e-05 -0.00519426 0)
(0.000508636 -0.00427709 0)
(0.00207154 -0.00168779 0)
(0.00469726 0.00361605 0)
(0.00745297 0.0110824 0)
(0.0092714 0.0192171 0)
(0.0102286 0.0266827 0)
(0.0127166 0.0343337 0)
(0.0190238 0.0433771 0)
(0.0293542 0.0537019 0)
(0.0426514 0.0642927 0)
(0.0578764 0.0742675 0)
(0.0742271 0.0831213 0)
(0.0910694 0.0906431 0)
(0.10789 0.0968115 0)
(0.124285 0.101721 0)
(0.139954 0.105523 0)
(0.154685 0.108386 0)
(0.168344 0.110463 0)
(0.180856 0.111875 0)
(0.1922 0.112706 0)
(0.202396 0.112999 0)
(0.211502 0.112766 0)
(0.219612 0.111993 0)
(0.226848 0.110648 0)
(0.233365 0.108701 0)
(0.23934 0.106127 0)
(0.244969 0.102931 0)
(0.250453 0.099151 0)
(0.25599 0.0948759 0)
(0.261757 0.0902479 0)
(0.267895 0.0854629 0)
(0.2745 0.0807634 0)
(0.281609 0.0764251 0)
(0.289199 0.0727398 0)
(0.297188 0.0699979 0)
(0.305441 0.0684726 0)
(0.313783 0.0684101 0)
(0.322011 0.0700241 0)
(0.329902 0.0734982 0)
(0.337227 0.078993 0)
(0.34376 0.0866575 0)
(0.349273 0.0966446 0)
(0.353541 0.109129 0)
(0.356333 0.124331 0)
(0.357404 0.142536 0)
(0.356465 0.164139 0)
(0.353159 0.189677 0)
(0.347028 0.219867 0)
(0.337418 0.255866 0)
(0.322795 0.298885 0)
(0.304245 0.350831 0)
(0.272465 0.421748 0)
(0.210311 0.478691 0)
(0.189146 0.433613 0)
(0.169114 0.298897 0)
(0.157836 0.12656 0)
(0.162893 -0.0665635 0)
(0.185253 -0.252768 0)
(0.22528 -0.401218 0)
(0.276329 -0.492095 0)
(0.326756 -0.526807 0)
(0.370947 -0.519324 0)
(0.405679 -0.487281 0)
(0.428925 -0.443928 0)
(0.449018 -0.394809 0)
(0.459822 -0.347667 0)
(0.463009 -0.303382 0)
(0.474699 -0.254296 0)
(0.481849 -0.208404 0)
(0.461724 -0.183363 0)
(0.422404 -0.176529 0)
(0.391388 -0.162862 0)
(0.37984 -0.123845 0)
(0.375427 -0.0678676 0)
(0.367573 -0.0178774 0)
(0.357278 0.0105144 0)
(0.347343 0.0195052 0)
(0.336261 0.0247028 0)
(0.319785 0.040624 0)
(0.293248 0.0709898 0)
(0.254376 0.109567 0)
(0.204511 0.145804 0)
(0.149002 0.168062 0)
(0.0929131 0.168855 0)
(0.0404388 0.14513 0)
(-0.00925051 0.101047 0)
(-0.0506734 0.0387608 0)
(-0.0829342 -0.0327791 0)
(-0.0954651 -0.110034 0)
(-0.0992851 -0.174653 0)
(-0.0843401 -0.232789 0)
(-0.0703534 -0.263436 0)
(-0.0416598 -0.284477 0)
(-0.0194125 -0.281927 0)
(-0.00246888 -0.281064 0)
(0.00619571 -0.266783 0)
(0.013515 -0.255686 0)
(0.00679118 -0.258508 0)
(-0.000107814 -0.00547237 0)
(-0.000358509 -0.00522622 0)
(-7.59407e-05 -0.00445869 0)
(0.0013254 -0.00208843 0)
(0.00401831 0.00308738 0)
(0.0071044 0.010608 0)
(0.00942866 0.0189209 0)
(0.0106894 0.026356 0)
(0.0129721 0.0335411 0)
(0.0187199 0.0418485 0)
(0.0285386 0.0514934 0)
(0.0415116 0.0616006 0)
(0.0565563 0.0712729 0)
(0.0728203 0.0799648 0)
(0.0896444 0.0874361 0)
(0.106501 0.093643 0)
(0.122972 0.0986593 0)
(0.138742 0.102619 0)
(0.153587 0.105673 0)
(0.167357 0.107962 0)
(0.17997 0.109596 0)
(0.191395 0.110649 0)
(0.201648 0.111158 0)
(0.210783 0.111127 0)
(0.218894 0.110534 0)
(0.226105 0.109344 0)
(0.232574 0.107519 0)
(0.238486 0.105031 0)
(0.244044 0.101882 0)
(0.249462 0.0981102 0)
(0.254947 0.0938063 0)
(0.26069 0.0891179 0)
(0.266843 0.0842488 0)
(0.273509 0.0794519 0)
(0.280732 0.0750143 0)
(0.288491 0.0712398 0)
(0.296701 0.0684296 0)
(0.305224 0.0668662 0)
(0.313879 0.0668024 0)
(0.322455 0.0684564 0)
(0.330727 0.0720139 0)
(0.338461 0.077636 0)
(0.345429 0.085471 0)
(0.351407 0.0956715 0)
(0.356177 0.108413 0)
(0.359517 0.123915 0)
(0.361201 0.142471 0)
(0.360962 0.164485 0)
(0.358474 0.190511 0)
(0.353345 0.22129 0)
(0.344962 0.258083 0)
(0.331798 0.302 0)
(0.315894 0.355381 0)
(0.285701 0.429752 0)
(0.226694 0.485966 0)
(0.209494 0.437554 0)
(0.190328 0.30212 0)
(0.17976 0.127492 0)
(0.184342 -0.0687251 0)
(0.20556 -0.258481 0)
(0.244095 -0.409872 0)
(0.293633 -0.501851 0)
(0.3428 -0.535835 0)
(0.385018 -0.526788 0)
(0.418663 -0.492692 0)
(0.440385 -0.447896 0)
(0.458688 -0.397705 0)
(0.470172 -0.34892 0)
(0.471904 -0.304586 0)
(0.481039 -0.256175 0)
(0.491232 -0.207613 0)
(0.476736 -0.177962 0)
(0.438653 -0.169607 0)
(0.403982 -0.158471 0)
(0.389125 -0.122266 0)
(0.38438 -0.066862 0)
(0.377669 -0.0162506 0)
(0.368274 0.0125398 0)
(0.358278 0.0216838 0)
(0.346374 0.0274559 0)
(0.328921 0.0447755 0)
(0.301682 0.0772 0)
(0.262656 0.117891 0)
(0.213358 0.155654 0)
(0.15907 0.178511 0)
(0.104083 0.179148 0)
(0.0519554 0.154912 0)
(0.0013428 0.109808 0)
(-0.0414797 0.0459112 0)
(-0.0756239 -0.0281052 0)
(-0.0889218 -0.108509 0)
(-0.0933487 -0.175535 0)
(-0.0772326 -0.235679 0)
(-0.0648365 -0.267266 0)
(-0.0373197 -0.289431 0)
(-0.0156982 -0.285638 0)
(0.00170298 -0.28347 0)
(0.00905261 -0.268216 0)
(0.0149681 -0.255589 0)
(0.00776771 -0.256526 0)
(-0.000171235 -0.00540832 0)
(-0.00074043 -0.00520335 0)
(-0.000770227 -0.00459333 0)
(0.000412981 -0.00247019 0)
(0.00311382 0.00253212 0)
(0.00648622 0.0100615 0)
(0.00932942 0.0185465 0)
(0.010993 0.0260117 0)
(0.0132158 0.0328193 0)
(0.0184843 0.0404359 0)
(0.0277844 0.0493912 0)
(0.0404068 0.0589889 0)
(0.0552561 0.0683388 0)
(0.0714269 0.0768549 0)
(0.0882294 0.0842647 0)
(0.105118 0.0905007 0)
(0.121662 0.0956164 0)
(0.137532 0.0997277 0)
(0.152488 0.10297 0)
(0.16637 0.10547 0)
(0.179084 0.107326 0)
(0.190591 0.108603 0)
(0.2009 0.10933 0)
(0.210065 0.109504 0)
(0.218175 0.109095 0)
(0.225359 0.108062 0)
(0.231778 0.106361 0)
(0.237623 0.103961 0)
(0.243107 0.100859 0)
(0.248454 0.097093 0)
(0.253884 0.0927566 0)
(0.2596 0.0880021 0)
(0.265765 0.0830417 0)
(0.272493 0.0781389 0)
(0.279832 0.0735929 0)
(0.287761 0.06972 0)
(0.296197 0.0668327 0)
(0.304994 0.065223 0)
(0.313967 0.0651505 0)
(0.322898 0.0668376 0)
(0.331555 0.070472 0)
(0.339702 0.0762147 0)
(0.34711 0.0842131 0)
(0.353556 0.0946185 0)
(0.35883 0.107605 0)
(0.362722 0.123395 0)
(0.365021 0.142283 0)
(0.365488 0.164684 0)
(0.363824 0.191165 0)
(0.359714 0.222485 0)
(0.352562 0.26002 0)
(0.34091 0.304697 0)
(0.327785 0.35945 0)
(0.299118 0.437159 0)
(0.244312 0.492517 0)
(0.229951 0.441053 0)
(0.21205 0.305095 0)
(0.202259 0.128417 0)
(0.206318 -0.0706947 0)
(0.226374 -0.263873 0)
(0.263427 -0.418138 0)
(0.311279 -0.511229 0)
(0.359072 -0.544451 0)
(0.399266 -0.533863 0)
(0.431529 -0.497796 0)
(0.451971 -0.451497 0)
(0.468202 -0.40044 0)
(0.480109 -0.350115 0)
(0.481108 -0.3054 0)
(0.487273 -0.25799 0)
(0.499244 -0.2076 0)
(0.490417 -0.173337 0)
(0.454733 -0.162625 0)
(0.41713 -0.153485 0)
(0.398736 -0.120339 0)
(0.393338 -0.0659306 0)
(0.387705 -0.0148298 0)
(0.379188 0.0144695 0)
(0.369075 0.0239259 0)
(0.356331 0.0303445 0)
(0.337992 0.0490231 0)
(0.310273 0.083392 0)
(0.271423 0.126044 0)
(0.223031 0.165193 0)
(0.17017 0.188605 0)
(0.116295 0.189179 0)
(0.0644072 0.164616 0)
(0.0128326 0.118734 0)
(-0.0313143 0.0532768 0)
(-0.0673759 -0.0232167 0)
(-0.0816086 -0.106862 0)
(-0.0870255 -0.17646 0)
(-0.0695573 -0.238557 0)
(-0.0580628 -0.270808 0)
(-0.0318034 -0.294117 0)
(-0.0114701 -0.289286 0)
(0.006331 -0.28574 0)
(0.0123221 -0.269359 0)
(0.0166462 -0.255302 0)
(0.00883256 -0.254327 0)
(-0.000250106 -0.00529976 0)
(-0.00118032 -0.0051187 0)
(-0.00156734 -0.00467186 0)
(-0.000657885 -0.00282211 0)
(0.00198929 0.00196028 0)
(0.00559654 0.00944894 0)
(0.00895792 0.0180866 0)
(0.0111057 0.0256282 0)
(0.0134115 0.0321445 0)
(0.0183036 0.0391278 0)
(0.027097 0.0473952 0)
(0.0393443 0.0564602 0)
(0.0539794 0.0654665 0)
(0.0700485 0.073792 0)
(0.0868252 0.0811291 0)
(0.103744 0.087385 0)
(0.120358 0.0925927 0)
(0.136325 0.0968503 0)
(0.151392 0.100277 0)
(0.165384 0.102986 0)
(0.178198 0.105065 0)
(0.189786 0.106568 0)
(0.200153 0.107516 0)
(0.209345 0.107896 0)
(0.217455 0.107674 0)
(0.22461 0.106801 0)
(0.230976 0.105227 0)
(0.236751 0.102916 0)
(0.242156 0.0998609 0)
(0.247428 0.0960997 0)
(0.252799 0.091727 0)
(0.258484 0.0869008 0)
(0.264661 0.0818418 0)
(0.271449 0.0768246 0)
(0.278904 0.0721611 0)
(0.287008 0.0681805 0)
(0.295673 0.0652073 0)
(0.30475 0.0635431 0)
(0.314046 0.0634545 0)
(0.323337 0.0651681 0)
(0.332384 0.0688731 0)
(0.340949 0.0747301 0)
(0.3488 0.0828849 0)
(0.355718 0.0934868 0)
(0.361498 0.106709 0)
(0.365943 0.122772 0)
(0.368859 0.141974 0)
(0.370034 0.164738 0)
(0.369197 0.191639 0)
(0.366125 0.223456 0)
(0.360195 0.261678 0)
(0.35012 0.306967 0)
(0.339873 0.363045 0)
(0.312619 0.443893 0)
(0.263092 0.498345 0)
(0.250799 0.444182 0)
(0.23426 0.307809 0)
(0.225254 0.129326 0)
(0.228745 -0.0724722 0)
(0.24763 -0.268952 0)
(0.283225 -0.426011 0)
(0.329268 -0.520208 0)
(0.37553 -0.552649 0)
(0.4137 -0.540525 0)
(0.444284 -0.502591 0)
(0.463626 -0.454741 0)
(0.477667 -0.402966 0)
(0.489599 -0.351288 0)
(0.490506 -0.305878 0)
(0.49363 -0.259599 0)
(0.506128 -0.208217 0)
(0.502696 -0.169562 0)
(0.470421 -0.155765 0)
(0.430751 -0.14798 0)
(0.408718 -0.118022 0)
(0.402318 -0.0650323 0)
(0.397655 -0.0136008 0)
(0.389993 0.0163103 0)
(0.379735 0.0262336 0)
(0.366161 0.0333564 0)
(0.347041 0.0533342 0)
(0.319062 0.0895151 0)
(0.280696 0.133971 0)
(0.233502 0.174384 0)
(0.182213 0.198335 0)
(0.129443 0.198965 0)
(0.0777639 0.174257 0)
(0.025292 0.127855 0)
(-0.0200134 0.0607776 0)
(-0.0579298 -0.0181051 0)
(-0.0732129 -0.105035 0)
(-0.0801124 -0.17739 0)
(-0.0614517 -0.241483 0)
(-0.0502884 -0.274146 0)
(-0.0250421 -0.298479 0)
(-0.00662672 -0.292762 0)
(0.0114295 -0.2879 0)
(0.01601 -0.270198 0)
(0.018568 -0.2548 0)
(0.00999173 -0.251887 0)
(-0.000344477 -0.00514122 0)
(-0.00167306 -0.00496571 0)
(-0.00245817 -0.0046864 0)
(-0.00187672 -0.00313376 0)
(0.000653234 0.00138228 0)
(0.00443878 0.00877776 0)
(0.00830369 0.0175375 0)
(0.0109994 0.0251871 0)
(0.013523 0.0314925 0)
(0.0181587 0.0379097 0)
(0.026479 0.0455036 0)
(0.038332 0.0540169 0)
(0.0527315 0.0626579 0)
(0.0686874 0.0707767 0)
(0.085433 0.0780295 0)
(0.102378 0.0842961 0)
(0.11906 0.0895886 0)
(0.135122 0.093987 0)
(0.150297 0.0975952 0)
(0.1644 0.100512 0)
(0.177313 0.102813 0)
(0.188983 0.104544 0)
(0.199405 0.105714 0)
(0.208625 0.106305 0)
(0.216732 0.106273 0)
(0.223856 0.105563 0)
(0.230166 0.104119 0)
(0.235867 0.101897 0)
(0.241189 0.0988892 0)
(0.246381 0.0951306 0)
(0.251689 0.0907179 0)
(0.257341 0.0858144 0)
(0.263526 0.0806494 0)
(0.270375 0.0755092 0)
(0.277947 0.070719 0)
(0.286228 0.0666214 0)
(0.295126 0.0635533 0)
(0.304488 0.0618265 0)
(0.314113 0.0617147 0)
(0.323769 0.0634483 0)
(0.333212 0.0672179 0)
(0.342199 0.0731831 0)
(0.350496 0.0814876 0)
(0.357889 0.0922781 0)
(0.364177 0.105725 0)
(0.369177 0.122048 0)
(0.372711 0.141547 0)
(0.374595 0.16465 0)
(0.374585 0.191936 0)
(0.372567 0.224208 0)
(0.367839 0.263059 0)
(0.359413 0.308807 0)
(0.352108 0.366182 0)
(0.326109 0.449892 0)
(0.282782 0.503426 0)
(0.27212 0.446995 0)
(0.256916 0.310271 0)
(0.24866 0.130217 0)
(0.251561 -0.0740583 0)
(0.26927 -0.273724 0)
(0.30343 -0.433492 0)
(0.347592 -0.528771 0)
(0.39214 -0.560423 0)
(0.428311 -0.546757 0)
(0.456949 -0.50707 0)
(0.475284 -0.457647 0)
(0.487167 -0.40524 0)
(0.498657 -0.352451 0)
(0.499962 -0.30609 0)
(0.500268 -0.260901 0)
(0.512148 -0.209299 0)
(0.513562 -0.166664 0)
(0.485513 -0.149195 0)
(0.444735 -0.14205 0)
(0.419104 -0.115288 0)
(0.411345 -0.0641213 0)
(0.407497 -0.0125463 0)
(0.400668 0.0180664 0)
(0.390262 0.028604 0)
(0.375892 0.0364765 0)
(0.356105 0.0576767 0)
(0.32808 0.0955229 0)
(0.290478 0.141624 0)
(0.244722 0.183197 0)
(0.195106 0.207699 0)
(0.143446 0.20851 0)
(0.0920349 0.18383 0)
(0.0387845 0.137088 0)
(-0.00743906 0.0684184 0)
(-0.047042 -0.0127768 0)
(-0.0634192 -0.102972 0)
(-0.0722915 -0.178246 0)
(-0.0529054 -0.244469 0)
(-0.0417546 -0.27737 0)
(-0.0170429 -0.3025 0)
(-0.00107487 -0.295974 0)
(0.0170122 -0.289957 0)
(0.0201294 -0.270718 0)
(0.0207527 -0.254056 0)
(0.011252 -0.249179 0)
(-0.000453956 -0.00492792 0)
(-0.00221223 -0.00473925 0)
(-0.00343104 -0.00463014 0)
(-0.0032303 -0.00339669 0)
(-0.000882691 0.000810733 0)
(0.00302019 0.00805627 0)
(0.00736255 0.0168985 0)
(0.0106522 0.0246731 0)
(0.0135154 0.0308395 0)
(0.0180253 0.036764 0)
(0.0259283 0.0437113 0)
(0.0373779 0.0516608 0)
(0.0515189 0.0599149 0)
(0.067347 0.0678102 0)
(0.0840543 0.0749665 0)
(0.101022 0.0812344 0)
(0.117769 0.0866044 0)
(0.133924 0.0911383 0)
(0.149206 0.0949242 0)
(0.163417 0.098047 0)
(0.176429 0.100571 0)
(0.188179 0.10253 0)
(0.198657 0.103925 0)
(0.207904 0.10473 0)
(0.216007 0.104892 0)
(0.223097 0.104348 0)
(0.229347 0.103035 0)
(0.23497 0.100905 0)
(0.240205 0.0979439 0)
(0.245313 0.0941861 0)
(0.250553 0.0897297 0)
(0.256168 0.0847431 0)
(0.262358 0.0794648 0)
(0.269267 0.0741928 0)
(0.276958 0.0692665 0)
(0.285418 0.0650426 0)
(0.294554 0.0618708 0)
(0.304206 0.0600734 0)
(0.314166 0.0599312 0)
(0.324193 0.0616786 0)
(0.334037 0.0655069 0)
(0.343449 0.0715746 0)
(0.352197 0.0800225 0)
(0.360066 0.0909938 0)
(0.366864 0.104656 0)
(0.372418 0.121227 0)
(0.376571 0.141005 0)
(0.379164 0.164423 0)
(0.379982 0.192058 0)
(0.37903 0.224745 0)
(0.375474 0.264164 0)
(0.368773 0.310214 0)
(0.364439 0.368879 0)
(0.339535 0.455121 0)
(0.302993 0.507727 0)
(0.293816 0.449518 0)
(0.279949 0.312498 0)
(0.272397 0.131096 0)
(0.274714 -0.0754552 0)
(0.291249 -0.278197 0)
(0.323985 -0.440587 0)
(0.366233 -0.536904 0)
(0.408878 -0.567767 0)
(0.443073 -0.552548 0)
(0.46955 -0.511223 0)
(0.486883 -0.460236 0)
(0.496753 -0.407232 0)
(0.507331 -0.353597 0)
(0.50934 -0.306114 0)
(0.507272 -0.261837 0)
(0.51757 -0.210677 0)
(0.523065 -0.164626 0)
(0.499832 -0.143062 0)
(0.458948 -0.135807 0)
(0.429911 -0.112121 0)
(0.420445 -0.0631494 0)
(0.417216 -0.0116439 0)
(0.411193 0.01974 0)
(0.400662 0.0310299 0)
(0.38555 0.0396875 0)
(0.365211 0.0620201 0)
(0.337342 0.101374 0)
(0.300756 0.148965 0)
(0.256633 0.191613 0)
(0.208761 0.216696 0)
(0.158242 0.217809 0)
(0.107222 0.193308 0)
(0.0533927 0.146328 0)
(0.00653594 0.0762673 0)
(-0.0345454 -0.00726418 0)
(-0.0519682 -0.100633 0)
(-0.0632116 -0.178933 0)
(-0.0437712 -0.247475 0)
(-0.0326412 -0.280554 0)
(-0.0078888 -0.30619 0)
(0.00527488 -0.298888 0)
(0.0231074 -0.291853 0)
(0.0246867 -0.270906 0)
(0.0232195 -0.253046 0)
(0.0126211 -0.246176 0)
(-0.000577728 -0.00465596 0)
(-0.00279026 -0.00443555 0)
(-0.00447214 -0.00449722 0)
(-0.0047021 -0.00360244 0)
(-0.00260239 0.000258802 0)
(0.00135102 0.00729379 0)
(0.00613636 0.0161711 0)
(0.0100482 0.0240744 0)
(0.0133573 0.0301633 0)
(0.0178759 0.0356711 0)
(0.0254383 0.0420107 0)
(0.0364888 0.0493926 0)
(0.0503494 0.0572401 0)
(0.0660317 0.0648938 0)
(0.0826913 0.0719406 0)
(0.0996768 0.0782003 0)
(0.116486 0.0836405 0)
(0.132732 0.0883046 0)
(0.148119 0.0922647 0)
(0.162436 0.095592 0)
(0.175547 0.0983383 0)
(0.187377 0.100527 0)
(0.197909 0.10215 0)
(0.207181 0.103171 0)
(0.215278 0.103529 0)
(0.222331 0.103155 0)
(0.228519 0.101976 0)
(0.234059 0.0999394 0)
(0.239202 0.0970254 0)
(0.24422 0.0932668 0)
(0.249387 0.0887628 0)
(0.254961 0.0836873 0)
(0.261155 0.0782881 0)
(0.268122 0.0728757 0)
(0.275934 0.0678038 0)
(0.284576 0.0634441 0)
(0.293954 0.0601599 0)
(0.303902 0.0582839 0)
(0.314201 0.0581043 0)
(0.324606 0.0598594 0)
(0.334855 0.0637409 0)
(0.344699 0.0699056 0)
(0.3539 0.0784907 0)
(0.362247 0.0896355 0)
(0.369556 0.103503 0)
(0.375664 0.120309 0)
(0.380435 0.140349 0)
(0.383734 0.164061 0)
(0.385378 0.192009 0)
(0.3855 0.225075 0)
(0.383081 0.264995 0)
(0.378184 0.31119 0)
(0.37681 0.371159 0)
(0.352912 0.45958 0)
(0.323293 0.511234 0)
(0.315687 0.451748 0)
(0.30326 0.314497 0)
(0.296389 0.131966 0)
(0.29815 -0.0766687 0)
(0.313523 -0.282376 0)
(0.344837 -0.4473 0)
(0.385165 -0.544596 0)
(0.425726 -0.574676 0)
(0.457951 -0.557892 0)
(0.482119 -0.515034 0)
(0.49837 -0.462531 0)
(0.506445 -0.408923 0)
(0.515692 -0.354705 0)
(0.518521 -0.306022 0)
(0.514661 -0.262386 0)
(0.522648 -0.212189 0)
(0.531297 -0.163396 0)
(0.513236 -0.137492 0)
(0.473243 -0.129375 0)
(0.441135 -0.108526 0)
(0.429648 -0.0620682 0)
(0.426804 -0.010869 0)
(0.421553 0.0213315 0)
(0.410941 0.0335006 0)
(0.395158 0.0429709 0)
(0.374383 0.0663361 0)
(0.346854 0.107034 0)
(0.311505 0.155965 0)
(0.269167 0.199619 0)
(0.223097 0.225324 0)
(0.173783 0.22685 0)
(0.123323 0.202658 0)
(0.0691506 0.155531 0)
(0.0219641 0.0843265 0)
(-0.0203347 -0.00168666 0)
(-0.0386874 -0.0979922 0)
(-0.05256 -0.179359 0)
(-0.0338087 -0.250411 0)
(-0.0230396 -0.283736 0)
(0.00229259 -0.309579 0)
(0.0124859 -0.301467 0)
(0.029751 -0.293554 0)
(0.0296868 -0.270748 0)
(0.0259881 -0.251747 0)
(0.0141077 -0.242849 0)
(-0.000714596 -0.0043224 0)
(-0.00339847 -0.00405231 0)
(-0.00556567 -0.00428282 0)
(-0.00627223 -0.00374175 0)
(-0.0044857 -0.00026248 0)
(-0.000554664 0.00650102 0)
(0.00463112 0.0153588 0)
(0.00917809 0.0233828 0)
(0.0130217 0.0294439 0)
(0.0176807 0.0346101 0)
(0.024997 0.0403912 0)
(0.0356691 0.0472114 0)
(0.0492316 0.0546359 0)
(0.0647478 0.0620296 0)
(0.0813472 0.0689529 0)
(0.0983441 0.0751944 0)
(0.115212 0.0806974 0)
(0.131545 0.0854862 0)
(0.147036 0.089617 0)
(0.161459 0.093147 0)
(0.174666 0.0961157 0)
(0.186575 0.0985353 0)
(0.197161 0.100388 0)
(0.206457 0.101628 0)
(0.214545 0.102187 0)
(0.221559 0.101985 0)
(0.227681 0.100943 0)
(0.233134 0.0990008 0)
(0.238179 0.0961341 0)
(0.243102 0.0923729 0)
(0.248191 0.0878177 0)
(0.253719 0.0826475 0)
(0.259914 0.0771197 0)
(0.266938 0.0715579 0)
(0.27487 0.0663309 0)
(0.283699 0.061826 0)
(0.293323 0.0584204 0)
(0.303572 0.0564579 0)
(0.314218 0.0562342 0)
(0.325005 0.057991 0)
(0.335666 0.0619205 0)
(0.345944 0.0681769 0)
(0.355602 0.0768935 0)
(0.364429 0.0882049 0)
(0.37225 0.10227 0)
(0.378912 0.119298 0)
(0.384299 0.139583 0)
(0.388299 0.163568 0)
(0.39077 0.191793 0)
(0.391964 0.225205 0)
(0.390646 0.265556 0)
(0.387634 0.311739 0)
(0.389154 0.373035 0)
(0.36631 0.463303 0)
(0.34332 0.513957 0)
(0.337524 0.453655 0)
(0.326744 0.316263 0)
(0.320564 0.132813 0)
(0.321818 -0.0777081 0)
(0.33605 -0.28627 0)
(0.365935 -0.453642 0)
(0.40435 -0.551841 0)
(0.44267 -0.581142 0)
(0.472903 -0.562789 0)
(0.494677 -0.518491 0)
(0.509707 -0.464549 0)
(0.516236 -0.410307 0)
(0.523824 -0.355741 0)
(0.527413 -0.305876 0)
(0.522403 -0.262559 0)
(0.527605 -0.213688 0)
(0.538394 -0.162888 0)
(0.525622 -0.132579 0)
(0.487466 -0.122884 0)
(0.452755 -0.104519 0)
(0.438983 -0.060831 0)
(0.436258 -0.0101945 0)
(0.431738 0.0228404 0)
(0.421105 0.0360028 0)
(0.404734 0.0463077 0)
(0.383636 0.0705992 0)
(0.356614 0.112473 0)
(0.322688 0.1626 0)
(0.282256 0.207208 0)
(0.23804 0.233578 0)
(0.190028 0.235615 0)
(0.140324 0.211842 0)
(0.0860882 0.164652 0)
(0.0388402 0.0924335 0)
(-0.0043509 0.00399338 0)
(-0.0234946 -0.0950245 0)
(-0.0401102 -0.179451 0)
(-0.0227423 -0.253157 0)
(-0.0129446 -0.286919 0)
(0.0133631 -0.312708 0)
(0.0205873 -0.303685 0)
(0.0369857 -0.295025 0)
(0.0351355 -0.270227 0)
(0.0290787 -0.250135 0)
(0.0157217 -0.239169 0)
(-0.000863036 -0.00392536 0)
(-0.00402728 -0.00358867 0)
(-0.00669404 -0.00398337 0)
(-0.00791731 -0.0038063 0)
(-0.00650834 -0.000742256 0)
(-0.00267749 0.00568987 0)
(0.00285604 0.0144672 0)
(0.00803812 0.0225931 0)
(0.0124865 0.0286643 0)
(0.01741 0.0335603 0)
(0.0245874 0.0388394 0)
(0.0349201 0.0451143 0)
(0.0481742 0.0521041 0)
(0.0635026 0.0592198 0)
(0.0800262 0.0660048 0)
(0.097026 0.0722174 0)
(0.113948 0.0777755 0)
(0.130367 0.0826836 0)
(0.145958 0.0869816 0)
(0.160485 0.0907125 0)
(0.173788 0.0939033 0)
(0.185774 0.0965551 0)
(0.196412 0.0986397 0)
(0.20573 0.100102 0)
(0.213808 0.100864 0)
(0.22078 0.100837 0)
(0.22683 0.0999353 0)
(0.232191 0.0980898 0)
(0.237133 0.0952706 0)
(0.241955 0.0915052 0)
(0.246961 0.0868949 0)
(0.252438 0.0816241 0)
(0.258631 0.07596 0)
(0.265712 0.0702397 0)
(0.273766 0.064848 0)
(0.282782 0.0601883 0)
(0.292658 0.0566523 0)
(0.303214 0.0545955 0)
(0.314213 0.054321 0)
(0.325388 0.0560739 0)
(0.336466 0.0600463 0)
(0.347184 0.0663895 0)
(0.357301 0.0752323 0)
(0.366611 0.0867037 0)
(0.374942 0.100957 0)
(0.382156 0.118196 0)
(0.388159 0.138711 0)
(0.392852 0.162946 0)
(0.396151 0.191412 0)
(0.39841 0.225143 0)
(0.398153 0.265848 0)
(0.397113 0.311871 0)
(0.401396 0.374515 0)
(0.379829 0.466339 0)
(0.362864 0.515931 0)
(0.359181 0.455198 0)
(0.350304 0.317779 0)
(0.344856 0.133626 0)
(0.345656 -0.0785832 0)
(0.358782 -0.289884 0)
(0.387234 -0.459618 0)
(0.423749 -0.558637 0)
(0.459699 -0.587158 0)
(0.487889 -0.567239 0)
(0.507243 -0.521581 0)
(0.520872 -0.466307 0)
(0.5261 -0.411389 0)
(0.53181 -0.35667 0)
(0.535956 -0.305722 0)
(0.530424 -0.262394 0)
(0.532631 -0.215052 0)
(0.544519 -0.162996 0)
(0.536923 -0.128388 0)
(0.501462 -0.116462 0)
(0.464728 -0.100136 0)
(0.448479 -0.0593961 0)
(0.445584 -0.00958969 0)
(0.441739 0.0242658 0)
(0.431158 0.0385213 0)
(0.414292 0.049679 0)
(0.392978 0.0747868 0)
(0.366611 0.117666 0)
(0.334264 0.168855 0)
(0.295829 0.214373 0)
(0.253525 0.241453 0)
(0.206937 0.244082 0)
(0.158195 0.220822 0)
(0.104179 0.173645 0)
(0.0571504 0.100431 0)
(0.0134298 0.00979264 0)
(-0.00642718 -0.0917381 0)
(-0.0257423 -0.179174 0)
(-0.0103206 -0.255565 0)
(-0.00227768 -0.290011 0)
(0.0251932 -0.315668 0)
(0.0295747 -0.30553 0)
(0.0448559 -0.296233 0)
(0.0410394 -0.269326 0)
(0.032512 -0.248189 0)
(0.0174744 -0.235105 0)
(-0.00102127 -0.00346403 0)
(-0.00466644 -0.00304525 0)
(-0.00783803 -0.00359674 0)
(-0.00961044 -0.00378892 0)
(-0.00864152 -0.00116901 0)
(-0.00499222 0.00487298 0)
(0.00082373 0.0135036 0)
(0.0066295 0.021703 0)
(0.0117354 0.0278102 0)
(0.0170353 0.0325014 0)
(0.0241883 0.0373402 0)
(0.0342385 0.0430958 0)
(0.0471848 0.0496458 0)
(0.0623049 0.056467 0)
(0.0787342 0.0630981 0)
(0.0957256 0.0692703 0)
(0.112695 0.0748754 0)
(0.129196 0.0798972 0)
(0.144886 0.0843588 0)
(0.159515 0.0882888 0)
(0.172912 0.0917014 0)
(0.184973 0.0945864 0)
(0.195662 0.0969051 0)
(0.205 0.0985921 0)
(0.213065 0.0995608 0)
(0.219992 0.0997133 0)
(0.225967 0.0989539 0)
(0.231231 0.0972066 0)
(0.236064 0.0944353 0)
(0.240778 0.090664 0)
(0.245695 0.0859948 0)
(0.251117 0.0806176 0)
(0.257303 0.0748093 0)
(0.264439 0.0689214 0)
(0.272616 0.0633551 0)
(0.281824 0.0585309 0)
(0.291956 0.0548557 0)
(0.302825 0.0526968 0)
(0.314182 0.0523649 0)
(0.325753 0.0541084 0)
(0.337254 0.0581189 0)
(0.348415 0.0645443 0)
(0.358995 0.0735082 0)
(0.368788 0.0851335 0)
(0.377631 0.0995664 0)
(0.385395 0.117005 0)
(0.39201 0.137736 0)
(0.397388 0.162199 0)
(0.401516 0.190873 0)
(0.404824 0.224897 0)
(0.405587 0.265874 0)
(0.406623 0.311601 0)
(0.413447 0.375597 0)
(0.393556 0.46874 0)
(0.381888 0.517207 0)
(0.380604 0.456334 0)
(0.373861 0.319022 0)
(0.369197 0.1344 0)
(0.369596 -0.0793052 0)
(0.38167 -0.293228 0)
(0.40869 -0.465237 0)
(0.443317 -0.564983 0)
(0.476799 -0.592719 0)
(0.502869 -0.571248 0)
(0.51982 -0.524294 0)
(0.531857 -0.467813 0)
(0.535995 -0.412182 0)
(0.539725 -0.357457 0)
(0.544124 -0.305592 0)
(0.538626 -0.261944 0)
(0.537868 -0.216184 0)
(0.549852 -0.163598 0)
(0.547111 -0.124955 0)
(0.515085 -0.110235 0)
(0.476993 -0.095428 0)
(0.45816 -0.0577283 0)
(0.454793 -0.00902296 0)
(0.451552 0.0256077 0)
(0.441101 0.04104 0)
(0.423843 0.0530661 0)
(0.402414 0.0788794 0)
(0.376828 0.122594 0)
(0.346184 0.174717 0)
(0.309818 0.221113 0)
(0.269489 0.248938 0)
(0.224466 0.252226 0)
(0.176891 0.229561 0)
(0.123378 0.182467 0)
(0.0768283 0.108319 0)
(0.0329204 0.015583 0)
(0.0124189 -0.0882472 0)
(-0.00943014 -0.178516 0)
(0.00365384 -0.257486 0)
(0.00909047 -0.292937 0)
(0.0376817 -0.318519 0)
(0.0394239 -0.307009 0)
(0.0534035 -0.297148 0)
(0.0474069 -0.268026 0)
(0.0363102 -0.245889 0)
(0.0193781 -0.230622 0)
(-0.00118737 -0.0029387 0)
(-0.00530525 -0.00242436 0)
(-0.00897696 -0.00312241 0)
(-0.0113217 -0.00368373 0)
(-0.0108517 -0.00153162 0)
(-0.00746812 0.00406376 0)
(-0.00144838 0.0124766 0)
(0.00495764 0.020713 0)
(0.0107568 0.0268707 0)
(0.0165303 0.0314147 0)
(0.0237754 0.0358767 0)
(0.0336162 0.0411483 0)
(0.0462689 0.0472608 0)
(0.0611641 0.0537735 0)
(0.0774785 0.060235 0)
(0.0944472 0.0663546 0)
(0.111457 0.071998 0)
(0.128034 0.0771277 0)
(0.14382 0.0817491 0)
(0.158549 0.0858763 0)
(0.172038 0.0895104 0)
(0.184174 0.0926296 0)
(0.194912 0.0951844 0)
(0.204268 0.0970994 0)
(0.212317 0.0982781 0)
(0.219194 0.0986129 0)
(0.22509 0.0979989 0)
(0.230251 0.0963518 0)
(0.234969 0.0936287 0)
(0.239569 0.08985 0)
(0.24439 0.0851182 0)
(0.249752 0.0796284 0)
(0.255928 0.073668 0)
(0.263117 0.0676031 0)
(0.271418 0.0618523 0)
(0.280821 0.0568538 0)
(0.291214 0.0530304 0)
(0.302401 0.0507617 0)
(0.314125 0.0503659 0)
(0.326098 0.0520948 0)
(0.338026 0.0561389 0)
(0.349635 0.0626423 0)
(0.360681 0.0717227 0)
(0.370959 0.0834959 0)
(0.380312 0.0981014 0)
(0.388624 0.115729 0)
(0.395848 0.136661 0)
(0.401901 0.161331 0)
(0.406861 0.19018 0)
(0.411194 0.224478 0)
(0.412933 0.265633 0)
(0.416166 0.31095 0)
(0.425219 0.376275 0)
(0.407536 0.470545 0)
(0.400491 0.517842 0)
(0.401813 0.457033 0)
(0.397361 0.319979 0)
(0.393519 0.135126 0)
(0.393566 -0.0798878 0)
(0.40466 -0.296313 0)
(0.430263 -0.470508 0)
(0.463008 -0.570883 0)
(0.493956 -0.597818 0)
(0.51781 -0.57482 0)
(0.532405 -0.526624 0)
(0.542667 -0.469073 0)
(0.545872 -0.412706 0)
(0.547631 -0.358069 0)
(0.551916 -0.305498 0)
(0.546898 -0.261273 0)
(0.543413 -0.217018 0)
(0.554583 -0.164563 0)
(0.556194 -0.122283 0)
(0.528198 -0.104316 0)
(0.489474 -0.0904565 0)
(0.468044 -0.0558001 0)
(0.463901 -0.00846053 0)
(0.461173 0.026867 0)
(0.450936 0.0435421 0)
(0.433393 0.0564507 0)
(0.411943 0.0828607 0)
(0.387244 0.127245 0)
(0.358399 0.180182 0)
(0.324156 0.227425 0)
(0.285875 0.256025 0)
(0.242569 0.260024 0)
(0.196355 0.238022 0)
(0.143624 0.19108 0)
(0.0978249 0.11607 0)
(0.0539948 0.0214892 0)
(0.0329235 -0.0845733 0)
(0.00878143 -0.177462 0)
(0.0192966 -0.258922 0)
(0.0213132 -0.295655 0)
(0.0507713 -0.321241 0)
(0.0500836 -0.308132 0)
(0.062665 -0.297745 0)
(0.0542485 -0.266309 0)
(0.0404963 -0.243216 0)
(0.0214468 -0.225687 0)
(-0.0013594 -0.00235077 0)
(-0.00593287 -0.00172996 0)
(-0.0100891 -0.00256166 0)
(-0.0130188 -0.00348642 0)
(-0.0131004 -0.00181928 0)
(-0.0100689 0.0032763 0)
(-0.00393671 0.011396 0)
(0.00303215 0.0196273 0)
(0.00954461 0.0258383 0)
(0.0158723 0.0302837 0)
(0.0233224 0.0344318 0)
(0.0330398 0.0392617 0)
(0.0454286 0.044947 0)
(0.0600893 0.0511414 0)
(0.0762681 0.0574182 0)
(0.0931967 0.063472 0)
(0.110235 0.0691444 0)
(0.126883 0.0743756 0)
(0.142762 0.079153 0)
(0.157589 0.0834754 0)
(0.171167 0.0873306 0)
(0.183376 0.0906849 0)
(0.194161 0.093478 0)
(0.203533 0.0956238 0)
(0.211563 0.0970159 0)
(0.218387 0.0975364 0)
(0.224199 0.0970708 0)
(0.229251 0.0955258 0)
(0.233847 0.0928514 0)
(0.238326 0.0890639 0)
(0.243044 0.0842656 0)
(0.248339 0.078657 0)
(0.254502 0.0725365 0)
(0.261743 0.0662851 0)
(0.270168 0.0603397 0)
(0.279768 0.055157 0)
(0.290428 0.0511764 0)
(0.30194 0.0487901 0)
(0.314037 0.0483242 0)
(0.326418 0.0500334 0)
(0.338781 0.0541069 0)
(0.350843 0.0606844 0)
(0.362357 0.0698769 0)
(0.373121 0.0817928 0)
(0.382984 0.0965635 0)
(0.391842 0.11437 0)
(0.399669 0.13549 0)
(0.406387 0.160345 0)
(0.41218 0.189338 0)
(0.417509 0.223894 0)
(0.420179 0.265126 0)
(0.425743 0.309944 0)
(0.43664 0.376541 0)
(0.42175 0.47177 0)
(0.418826 0.517887 0)
(0.422856 0.457283 0)
(0.420752 0.320645 0)
(0.417754 0.135795 0)
(0.417492 -0.0803451 0)
(0.427695 -0.299154 0)
(0.451915 -0.475441 0)
(0.482778 -0.576342 0)
(0.511153 -0.602452 0)
(0.53268 -0.577962 0)
(0.544984 -0.528571 0)
(0.553311 -0.47009 0)
(0.555681 -0.412985 0)
(0.555571 -0.358482 0)
(0.559361 -0.30544 0)
(0.555132 -0.26045 0)
(0.549317 -0.217515 0)
(0.558902 -0.165761 0)
(0.564214 -0.120351 0)
(0.540685 -0.0988068 0)
(0.502082 -0.0852952 0)
(0.478145 -0.053594 0)
(0.472931 -0.00786857 0)
(0.470604 0.0280464 0)
(0.46066 0.046011 0)
(0.442943 0.0598155 0)
(0.421562 0.0867171 0)
(0.397832 0.131608 0)
(0.370856 0.185246 0)
(0.338783 0.233306 0)
(0.302628 0.262702 0)
(0.261188 0.267454 0)
(0.21652 0.246172 0)
(0.164846 0.199441 0)
(0.120068 0.123646 0)
(0.0765288 0.0274054 0)
(0.0549944 -0.0806987 0)
(0.028698 -0.175923 0)
(0.0366365 -0.259852 0)
(0.0345592 -0.298074 0)
(0.064445 -0.323816 0)
(0.0614885 -0.308918 0)
(0.0726679 -0.298009 0)
(0.0615761 -0.264156 0)
(0.0450956 -0.240153 0)
(0.0236957 -0.220263 0)
(-0.0015355 -0.00170273 0)
(-0.00653855 -0.00096754 0)
(-0.011152 -0.00191766 0)
(-0.014667 -0.00319442 0)
(-0.0153444 -0.00202214 0)
(-0.0127522 0.0025255 0)
(-0.00660972 0.0102775 0)
(0.000867106 0.0184489 0)
(0.00809709 0.0247081 0)
(0.0150422 0.0290942 0)
(0.0228023 0.0329882 0)
(0.0324911 0.037424 0)
(0.0446614 0.0427005 0)
(0.0590882 0.0485718 0)
(0.0751125 0.0546502 0)
(0.0919817 0.0606248 0)
(0.109035 0.0663161 0)
(0.125746 0.071642 0)
(0.141712 0.0765711 0)
(0.156633 0.0810864 0)
(0.1703 0.0851623 0)
(0.182579 0.0887527 0)
(0.193409 0.0917861 0)
(0.202794 0.0941657 0)
(0.210803 0.0957744 0)
(0.217569 0.0964841 0)
(0.223291 0.09617 0)
(0.228229 0.0947292 0)
(0.232695 0.0921041 0)
(0.237047 0.0883062 0)
(0.241655 0.0834376 0)
(0.246877 0.0777042 0)
(0.253022 0.0714152 0)
(0.260312 0.0649676 0)
(0.268862 0.0588174 0)
(0.278663 0.0534405 0)
(0.289595 0.0492936 0)
(0.301439 0.0467821 0)
(0.313916 0.0462399 0)
(0.326712 0.0479245 0)
(0.339515 0.0520235 0)
(0.352035 0.0586714 0)
(0.364021 0.0679721 0)
(0.375272 0.0800258 0)
(0.385644 0.0949549 0)
(0.395046 0.11293 0)
(0.403469 0.134227 0)
(0.410842 0.159246 0)
(0.417469 0.188355 0)
(0.423756 0.223157 0)
(0.427318 0.264352 0)
(0.43534 0.308611 0)
(0.447664 0.376396 0)
(0.436117 0.472411 0)
(0.437014 0.517385 0)
(0.443763 0.457088 0)
(0.443985 0.321027 0)
(0.44183 0.136403 0)
(0.441299 -0.0806917 0)
(0.450718 -0.301768 0)
(0.473609 -0.480045 0)
(0.502583 -0.581367 0)
(0.528366 -0.606617 0)
(0.547457 -0.58068 0)
(0.557537 -0.530135 0)
(0.563807 -0.47086 0)
(0.565377 -0.413041 0)
(0.56357 -0.358681 0)
(0.566501 -0.305405 0)
(0.56323 -0.259536 0)
(0.555591 -0.217664 0)
(0.562988 -0.167068 0)
(0.571239 -0.119112 0)
(0.552446 -0.0937922 0)
(0.514719 -0.080025 0)
(0.488463 -0.0511035 0)
(0.481908 -0.00721404 0)
(0.479849 0.0291509 0)
(0.47027 0.0484309 0)
(0.452493 0.0631439 0)
(0.431262 0.090438 0)
(0.408565 0.135681 0)
(0.383506 0.189909 0)
(0.353637 0.238757 0)
(0.319692 0.268958 0)
(0.280265 0.274496 0)
(0.237315 0.253982 0)
(0.186962 0.207509 0)
(0.143458 0.131008 0)
(0.100387 0.0332636 0)
(0.0784803 -0.0766629 0)
(0.0501676 -0.17397 0)
(0.0556157 -0.260229 0)
(0.0489618 -0.300108 0)
(0.0787198 -0.326213 0)
(0.0735681 -0.309386 0)
(0.0834297 -0.297929 0)
(0.0694026 -0.261546 0)
(0.0501349 -0.236683 0)
(0.0261415 -0.214311 0)
(-0.00171398 -0.00099795 0)
(-0.00711196 -0.000144052 0)
(-0.0121429 -0.00119555 0)
(-0.0162303 -0.00280721 0)
(-0.0175356 -0.00213185 0)
(-0.015468 0.00182676 0)
(-0.00942903 0.00913879 0)
(-0.00151902 0.0171827 0)
(0.00641771 0.0234786 0)
(0.0140252 0.027835 0)
(0.0221889 0.0315297 0)
(0.0319479 0.0356219 0)
(0.0439597 0.040515 0)
(0.0581657 0.0460645 0)
(0.0740216 0.0519333 0)
(0.0908111 0.0578155 0)
(0.107863 0.0635148 0)
(0.124626 0.0689279 0)
(0.140672 0.0740042 0)
(0.155684 0.0787101 0)
(0.169436 0.083006 0)
(0.181783 0.0868333 0)
(0.192656 0.090109 0)
(0.202051 0.0927252 0)
(0.210035 0.094554 0)
(0.21674 0.0954564 0)
(0.222367 0.0952968 0)
(0.227183 0.0939625 0)
(0.231513 0.0913873 0)
(0.235728 0.0875776 0)
(0.240219 0.082635 0)
(0.245362 0.0767705 0)
(0.251483 0.0703047 0)
(0.258821 0.0636511 0)
(0.267496 0.0572855 0)
(0.277502 0.0517043 0)
(0.28871 0.047382 0)
(0.300894 0.0447375 0)
(0.313758 0.044113 0)
(0.326977 0.0457684 0)
(0.340227 0.0498892 0)
(0.353209 0.0566042 0)
(0.36567 0.0660096 0)
(0.37741 0.0781966 0)
(0.388289 0.0932778 0)
(0.398232 0.111413 0)
(0.407244 0.132876 0)
(0.415262 0.158036 0)
(0.422723 0.187236 0)
(0.429922 0.222275 0)
(0.434351 0.263311 0)
(0.444927 0.306981 0)
(0.45829 0.375845 0)
(0.450508 0.472457 0)
(0.455091 0.516364 0)
(0.464514 0.456466 0)
(0.466999 0.321133 0)
(0.465676 0.136947 0)
(0.464916 -0.0809437 0)
(0.473674 -0.304175 0)
(0.495309 -0.484332 0)
(0.522384 -0.585964 0)
(0.545571 -0.610315 0)
(0.562121 -0.582979 0)
(0.570037 -0.531322 0)
(0.574173 -0.471382 0)
(0.574922 -0.412899 0)
(0.571636 -0.358657 0)
(0.573393 -0.30537 0)
(0.571109 -0.258589 0)
(0.562206 -0.217475 0)
(0.567002 -0.168371 0)
(0.577364 -0.118499 0)
(0.563406 -0.0893379 0)
(0.52728 -0.0747313 0)
(0.498992 -0.0483327 0)
(0.490859 -0.00646551 0)
(0.488915 0.0301879 0)
(0.479762 0.0507874 0)
(0.462038 0.0664202 0)
(0.441034 0.0940154 0)
(0.419414 0.13946 0)
(0.396298 0.194175 0)
(0.368665 0.243776 0)
(0.337014 0.274784 0)
(0.299732 0.281134 0)
(0.258665 0.261424 0)
(0.209881 0.215246 0)
(0.167877 0.138128 0)
(0.125421 0.0390502 0)
(0.103223 -0.0724851 0)
(0.0730137 -0.171642 0)
(0.0761221 -0.260037 0)
(0.0646075 -0.301683 0)
(0.0936372 -0.32839 0)
(0.086254 -0.309552 0)
(0.0949575 -0.297506 0)
(0.077741 -0.258464 0)
(0.0556437 -0.23279 0)
(0.0288026 -0.20779 0)
(-0.00189349 -0.000240534 0)
(-0.00764345 0.000731883 0)
(-0.0130395 -0.000402502 0)
(-0.0176711 -0.00232654 0)
(-0.0196221 -0.00214163 0)
(-0.0181594 0.00119543 0)
(-0.0123476 0.00799582 0)
(-0.00410117 0.0158393 0)
(0.00451463 0.0221521 0)
(0.012811 0.026498 0)
(0.0214574 0.0300415 0)
(0.0313848 0.033841 0)
(0.0433104 0.0383823 0)
(0.0573228 0.0436176 0)
(0.0730042 0.0492693 0)
(0.089695 0.0550467 0)
(0.106727 0.0607428 0)
(0.123528 0.066235 0)
(0.139646 0.0714532 0)
(0.154743 0.076347 0)
(0.168576 0.0808621 0)
(0.180989 0.0849271 0)
(0.191901 0.088447 0)
(0.201304 0.0913027 0)
(0.209259 0.093355 0)
(0.215898 0.0944537 0)
(0.221424 0.0944519 0)
(0.226112 0.0932263 0)
(0.230298 0.0907018 0)
(0.234368 0.086879 0)
(0.238733 0.0818585 0)
(0.24379 0.0758566 0)
(0.249884 0.0692054 0)
(0.257266 0.0623358 0)
(0.266067 0.0557442 0)
(0.27628 0.0499482 0)
(0.287771 0.0454413 0)
(0.3003 0.0426563 0)
(0.31356 0.0419435 0)
(0.32721 0.0435653 0)
(0.340913 0.0477044 0)
(0.354363 0.0544837 0)
(0.367302 0.0639906 0)
(0.379531 0.0763068 0)
(0.390917 0.0915341 0)
(0.401399 0.109821 0)
(0.41099 0.131439 0)
(0.419645 0.156719 0)
(0.427939 0.185989 0)
(0.43599 0.221257 0)
(0.441291 0.262006 0)
(0.454452 0.30508 0)
(0.468559 0.374904 0)
(0.464766 0.471898 0)
(0.472992 0.514848 0)
(0.485034 0.455436 0)
(0.489726 0.320978 0)
(0.489222 0.137423 0)
(0.488281 -0.0811178 0)
(0.49651 -0.306396 0)
(0.516977 -0.488315 0)
(0.542143 -0.590144 0)
(0.56274 -0.613546 0)
(0.576656 -0.584866 0)
(0.582457 -0.532142 0)
(0.584425 -0.471653 0)
(0.584287 -0.412578 0)
(0.579757 -0.358411 0)
(0.580098 -0.30531 0)
(0.578709 -0.257655 0)
(0.569109 -0.216977 0)
(0.571083 -0.169573 0)
(0.582701 -0.118432 0)
(0.573511 -0.0854903 0)
(0.539661 -0.0695008 0)
(0.509712 -0.0452973 0)
(0.499813 -0.00559393 0)
(0.497813 0.0311672 0)
(0.48913 0.0530675 0)
(0.471574 0.0696297 0)
(0.450866 0.0974435 0)
(0.430348 0.142949 0)
(0.409185 0.198049 0)
(0.383812 0.248365 0)
(0.354539 0.280172 0)
(0.31952 0.287351 0)
(0.28049 0.268472 0)
(0.233506 0.222621 0)
(0.193199 0.144983 0)
(0.151477 0.0447587 0)
(0.129056 -0.0681839 0)
(0.0970593 -0.16898 0)
(0.0980078 -0.259276 0)
(0.0815273 -0.30274 0)
(0.109251 -0.330294 0)
(0.0994845 -0.30943 0)
(0.107249 -0.296744 0)
(0.0866031 -0.254895 0)
(0.0616551 -0.228462 0)
(0.0316989 -0.200657 0)
(-0.00207309 0.000564491 0)
(-0.00812443 0.00165014 0)
(-0.0138199 0.000452157 0)
(-0.0189516 -0.00175669 0)
(-0.0215486 -0.00204667 0)
(-0.0207623 0.000646539 0)
(-0.0153089 0.00686739 0)
(-0.00684548 0.0144339 0)
(0.00240138 0.0207315 0)
(0.0113941 0.0250779 0)
(0.020586 0.0285108 0)
(0.0307745 0.032067 0)
(0.0426947 0.0362925 0)
(0.0565551 0.0412275 0)
(0.0720666 0.0466589 0)
(0.0886435 0.0523209 0)
(0.105636 0.0580026 0)
(0.122459 0.0635651 0)
(0.138638 0.0689195 0)
(0.153812 0.073998 0)
(0.167722 0.0787313 0)
(0.180197 0.0830345 0)
(0.191145 0.0868005 0)
(0.200552 0.0898984 0)
(0.208474 0.0921777 0)
(0.215042 0.0934764 0)
(0.220462 0.0936357 0)
(0.225015 0.0925212 0)
(0.229048 0.0900483 0)
(0.232965 0.0862111 0)
(0.237196 0.0811089 0)
(0.242158 0.0749631 0)
(0.248218 0.0681179 0)
(0.255643 0.061022 0)
(0.264569 0.0541935 0)
(0.274993 0.0481724 0)
(0.286772 0.0434715 0)
(0.299656 0.0405383 0)
(0.313319 0.0397314 0)
(0.327407 0.0413153 0)
(0.34157 0.0454697 0)
(0.355493 0.0523105 0)
(0.368914 0.0619163 0)
(0.381634 0.0743582 0)
(0.393525 0.089726 0)
(0.404543 0.108157 0)
(0.414703 0.129922 0)
(0.423987 0.155298 0)
(0.433114 0.184623 0)
(0.441941 0.220109 0)
(0.448161 0.260442 0)
(0.463846 0.302932 0)
(0.478536 0.373597 0)
(0.478745 0.47074 0)
(0.490581 0.512852 0)
(0.505221 0.454016 0)
(0.512098 0.32057 0)
(0.512403 0.137833 0)
(0.511332 -0.0812311 0)
(0.519177 -0.308454 0)
(0.53858 -0.492006 0)
(0.561827 -0.593914 0)
(0.579842 -0.616315 0)
(0.59105 -0.586345 0)
(0.594768 -0.532605 0)
(0.594576 -0.471669 0)
(0.593453 -0.412096 0)
(0.587914 -0.357951 0)
(0.586676 -0.305196 0)
(0.585991 -0.256766 0)
(0.576225 -0.216215 0)
(0.575342 -0.170596 0)
(0.587379 -0.118818 0)
(0.582735 -0.0822759 0)
(0.551757 -0.0644185 0)
(0.520593 -0.0420232 0)
(0.508796 -0.00457426 0)
(0.506555 0.0321011 0)
(0.498371 0.0552602 0)
(0.481091 0.072759 0)
(0.460745 0.100719 0)
(0.441338 0.146153 0)
(0.42212 0.201537 0)
(0.399029 0.252522 0)
(0.37221 0.285115 0)
(0.33956 0.293136 0)
(0.302711 0.275108 0)
(0.257737 0.229608 0)
(0.219289 0.151554 0)
(0.178397 0.0503642 0)
(0.155817 -0.0637764 0)
(0.122133 -0.166022 0)
(0.121106 -0.257971 0)
(0.0996989 -0.303242 0)
(0.125618 -0.331873 0)
(0.113208 -0.309027 0)
(0.120293 -0.295655 0)
(0.0959979 -0.250827 0)
(0.0682064 -0.223686 0)
(0.0348527 -0.192865 0)
(-0.0022523 0.00141145 0)
(-0.00854753 0.00259942 0)
(-0.0144638 0.00135689 0)
(-0.0200342 -0.00110468 0)
(-0.0232576 -0.00184458 0)
(-0.0232053 0.000194076 0)
(-0.018245 0.00577423 0)
(-0.00970724 0.0129857 0)
(9.77467e-05 0.0192222 0)
(0.00977469 0.0235727 0)
(0.0195564 0.0269274 0)
(0.0300895 0.0302861 0)
(0.0420894 0.0342342 0)
(0.0558526 0.0388884 0)
(0.0712111 0.0441013 0)
(0.0876657 0.0496399 0)
(0.104601 0.0552967 0)
(0.121428 0.0609205 0)
(0.137654 0.0664047 0)
(0.152896 0.0716643 0)
(0.166876 0.0766143 0)
(0.179407 0.081156 0)
(0.190389 0.0851698 0)
(0.199796 0.0885129 0)
(0.207681 0.0910226 0)
(0.214173 0.0925248 0)
(0.21948 0.0928488 0)
(0.223889 0.0918479 0)
(0.227761 0.0894275 0)
(0.231516 0.0855746 0)
(0.235603 0.080387 0)
(0.240464 0.0740908 0)
(0.246484 0.0670427 0)
(0.253947 0.0597101 0)
(0.263 0.0526337 0)
(0.273638 0.0463766 0)
(0.285712 0.0414724 0)
(0.298956 0.0383834 0)
(0.313031 0.0374766 0)
(0.327566 0.0390186 0)
(0.342196 0.0431855 0)
(0.356598 0.0500856 0)
(0.370504 0.0597878 0)
(0.383716 0.0723522 0)
(0.396112 0.0878555 0)
(0.407661 0.106425 0)
(0.418381 0.128326 0)
(0.428286 0.153776 0)
(0.438246 0.183148 0)
(0.447756 0.218837 0)
(0.45499 0.258629 0)
(0.473037 0.300557 0)
(0.488293 0.371948 0)
(0.49233 0.469006 0)
(0.507706 0.510389 0)
(0.524972 0.452214 0)
(0.534053 0.319915 0)
(0.535158 0.138173 0)
(0.534021 -0.0813021 0)
(0.541632 -0.310375 0)
(0.560083 -0.495421 0)
(0.581404 -0.597282 0)
(0.596847 -0.618626 0)
(0.605291 -0.587421 0)
(0.606941 -0.532724 0)
(0.604634 -0.471429 0)
(0.602411 -0.411467 0)
(0.596075 -0.357292 0)
(0.593181 -0.304999 0)
(0.592937 -0.255943 0)
(0.583467 -0.21524 0)
(0.579861 -0.17138 0)
(0.59153 -0.119556 0)
(0.59107 -0.0797012 0)
(0.563471 -0.0595648 0)
(0.531594 -0.0385461 0)
(0.517833 -0.00338641 0)
(0.515158 0.0330039 0)
(0.507478 0.0573571 0)
(0.490579 0.0757956 0)
(0.470656 0.103839 0)
(0.452356 0.149078 0)
(0.435061 0.204647 0)
(0.414269 0.256251 0)
(0.389974 0.289609 0)
(0.359781 0.298479 0)
(0.325248 0.281313 0)
(0.282469 0.236191 0)
(0.246009 0.157829 0)
(0.206024 0.0558506 0)
(0.183347 -0.0592782 0)
(0.148073 -0.1628 0)
(0.145244 -0.256154 0)
(0.119054 -0.30317 0)
(0.142787 -0.333074 0)
(0.127381 -0.308345 0)
(0.134075 -0.294256 0)
(0.105931 -0.246255 0)
(0.0753412 -0.218454 0)
(0.0382895 -0.184365 0)
(-0.00243117 0.00229454 0)
(-0.00890688 0.00356725 0)
(-0.0149522 0.00229826 0)
(-0.0208832 -0.000380356 0)
(-0.024691 -0.00153624 0)
(-0.0254111 -0.000149631 0)
(-0.0210761 0.00473831 0)
(-0.0126289 0.0115147 0)
(-0.00236791 0.0176349 0)
(0.00796009 0.0219839 0)
(0.0183556 0.0252838 0)
(0.0293034 0.0284858 0)
(0.0414678 0.0321952 0)
(0.0551992 0.0365928 0)
(0.070435 0.0415943 0)
(0.0867682 0.0470049 0)
(0.103631 0.0526276 0)
(0.120444 0.0583035 0)
(0.136701 0.0639108 0)
(0.151999 0.0693472 0)
(0.166041 0.074512 0)
(0.178623 0.0792924 0)
(0.189632 0.0835556 0)
(0.199036 0.0871465 0)
(0.206879 0.08989 0)
(0.21329 0.0915996 0)
(0.218477 0.0920916 0)
(0.222735 0.0912071 0)
(0.226437 0.0888402 0)
(0.23002 0.0849706 0)
(0.233954 0.0796936 0)
(0.238704 0.0732405 0)
(0.244678 0.0659805 0)
(0.252177 0.0584005 0)
(0.261356 0.0510648 0)
(0.272211 0.044561 0)
(0.284584 0.0394439 0)
(0.298197 0.0361914 0)
(0.312693 0.0351791 0)
(0.327682 0.0366754 0)
(0.342788 0.0408521 0)
(0.357674 0.0478096 0)
(0.372069 0.0576064 0)
(0.385774 0.0702905 0)
(0.398674 0.0859247 0)
(0.41075 0.104627 0)
(0.42202 0.126655 0)
(0.432541 0.152158 0)
(0.44333 0.181573 0)
(0.453419 0.217442 0)
(0.461807 0.25658 0)
(0.481957 0.297973 0)
(0.497881 0.369983 0)
(0.505461 0.466738 0)
(0.524247 0.507475 0)
(0.544211 0.450034 0)
(0.555537 0.319018 0)
(0.557434 0.138438 0)
(0.556303 -0.0813498 0)
(0.563838 -0.312182 0)
(0.581455 -0.498574 0)
(0.600844 -0.600259 0)
(0.613722 -0.620487 0)
(0.619371 -0.588102 0)
(0.618951 -0.532513 0)
(0.614603 -0.470934 0)
(0.61116 -0.410699 0)
(0.604203 -0.356451 0)
(0.59966 -0.304696 0)
(0.599552 -0.255196 0)
(0.590747 -0.214107 0)
(0.584689 -0.171887 0)
(0.595293 -0.120547 0)
(0.598536 -0.0777544 0)
(0.574714 -0.0550129 0)
(0.542664 -0.0349101 0)
(0.526943 -0.00201566 0)
(0.523641 0.0338918 0)
(0.51645 0.059352 0)
(0.500029 0.0787285 0)
(0.480584 0.106804 0)
(0.463374 0.151734 0)
(0.447969 0.207388 0)
(0.429488 0.259555 0)
(0.407775 0.293652 0)
(0.380113 0.303373 0)
(0.348019 0.287073 0)
(0.307595 0.242354 0)
(0.27322 0.163798 0)
(0.234206 0.0612064 0)
(0.211492 -0.0547042 0)
(0.174729 -0.159345 0)
(0.170251 -0.253864 0)
(0.139492 -0.302525 0)
(0.160791 -0.333851 0)
(0.141973 -0.307381 0)
(0.148573 -0.292566 0)
(0.116402 -0.241174 0)
(0.0831096 -0.21276 0)
(0.0420393 -0.175102 0)
(-0.00261029 0.00320772 0)
(-0.00919826 0.00454011 0)
(-0.0152688 0.00326095 0)
(-0.0214651 0.000403519 0)
(-0.025791 -0.00112621 0)
(-0.0272975 -0.000374421 0)
(-0.02371 0.00378207 0)
(-0.0155367 0.0100444 0)
(-0.00495481 0.0159837 0)
(0.00596655 0.0203168 0)
(0.0169774 0.0235756 0)
(0.0283933 0.0266553 0)
(0.0408015 0.0301635 0)
(0.0545731 0.0343317 0)
(0.0697294 0.0391337 0)
(0.0859533 0.0444156 0)
(0.102736 0.0499971 0)
(0.119518 0.0557167 0)
(0.135789 0.0614398 0)
(0.15113 0.0670484 0)
(0.165222 0.0724258 0)
(0.177848 0.0774445 0)
(0.188879 0.0819585 0)
(0.198273 0.0857996 0)
(0.206069 0.0887804 0)
(0.212392 0.0907012 0)
(0.217453 0.0913648 0)
(0.221552 0.0905993 0)
(0.225074 0.0882872 0)
(0.228474 0.0843997 0)
(0.232245 0.0790296 0)
(0.236876 0.0724129 0)
(0.242798 0.064932 0)
(0.250328 0.0570936 0)
(0.259633 0.0494871 0)
(0.270708 0.0427255 0)
(0.283387 0.0373858 0)
(0.297376 0.0339622 0)
(0.312301 0.0328389 0)
(0.327754 0.0342857 0)
(0.343342 0.0384699 0)
(0.358719 0.0454833 0)
(0.373607 0.055373 0)
(0.387807 0.0681743 0)
(0.40121 0.0839357 0)
(0.413809 0.102766 0)
(0.425617 0.124913 0)
(0.436751 0.150445 0)
(0.448359 0.179909 0)
(0.45892 0.215924 0)
(0.46863 0.25431 0)
(0.490559 0.295196 0)
(0.507317 0.367727 0)
(0.518124 0.463984 0)
(0.54015 0.504124 0)
(0.562902 0.447474 0)
(0.576511 0.31788 0)
(0.579183 0.138627 0)
(0.578141 -0.0813936 0)
(0.585762 -0.3139 0)
(0.602663 -0.501479 0)
(0.620123 -0.602852 0)
(0.630437 -0.621905 0)
(0.633277 -0.588393 0)
(0.630776 -0.531985 0)
(0.62448 -0.470188 0)
(0.619708 -0.4098 0)
(0.612262 -0.35545 0)
(0.606148 -0.304266 0)
(0.605853 -0.254523 0)
(0.597978 -0.212873 0)
(0.589848 -0.172099 0)
(0.598801 -0.121691 0)
(0.605169 -0.0764068 0)
(0.585406 -0.0508269 0)
(0.553745 -0.0311661 0)
(0.536141 -0.00045373 0)
(0.532024 0.034782 0)
(0.525285 0.0612417 0)
(0.509428 0.0815481 0)
(0.490513 0.109614 0)
(0.474368 0.154132 0)
(0.460807 0.209772 0)
(0.444642 0.262437 0)
(0.425559 0.297246 0)
(0.400488 0.307813 0)
(0.370942 0.29238 0)
(0.333009 0.248088 0)
(0.300791 0.169453 0)
(0.262799 0.0664221 0)
(0.240106 -0.0500692 0)
(0.201963 -0.155682 0)
(0.195967 -0.251142 0)
(0.160886 -0.301322 0)
(0.179646 -0.334166 0)
(0.156955 -0.306127 0)
(0.163767 -0.290607 0)
(0.127407 -0.235588 0)
(0.0915706 -0.206602 0)
(0.0461374 -0.165017 0)
(-0.00279075 0.00414497 0)
(-0.00941909 0.00550372 0)
(-0.0153993 0.00422791 0)
(-0.0217499 0.00123138 0)
(-0.0265023 -0.000622976 0)
(-0.0287792 -0.000473816 0)
(-0.0260424 0.00292732 0)
(-0.0183378 0.00860099 0)
(-0.00760481 0.0142881 0)
(0.00382291 0.0185796 0)
(0.0154249 0.0218019 0)
(0.0273418 0.0247862 0)
(0.0400628 0.0281276 0)
(0.0539488 0.0320949 0)
(0.0690795 0.0367133 0)
(0.0852183 0.0418702 0)
(0.101921 0.0474061 0)
(0.11866 0.053162 0)
(0.134928 0.0589941 0)
(0.150295 0.0647698 0)
(0.164426 0.070357 0)
(0.177086 0.0756134 0)
(0.188132 0.0803792 0)
(0.19751 0.0844731 0)
(0.205253 0.0876944 0)
(0.211482 0.08983 0)
(0.216408 0.090669 0)
(0.22034 0.0900254 0)
(0.223672 0.0877693 0)
(0.226879 0.083863 0)
(0.230477 0.078396 0)
(0.234979 0.071609 0)
(0.240841 0.0638978 0)
(0.248398 0.0557899 0)
(0.257828 0.0479008 0)
(0.269126 0.04087 0)
(0.282117 0.0352981 0)
(0.29649 0.0316957 0)
(0.311853 0.0304559 0)
(0.327778 0.0318497 0)
(0.343856 0.0360394 0)
(0.35973 0.0431073 0)
(0.375115 0.0530888 0)
(0.389811 0.0660054 0)
(0.403717 0.0818904 0)
(0.416834 0.100845 0)
(0.429168 0.123101 0)
(0.440919 0.148643 0)
(0.453319 0.178169 0)
(0.464262 0.21428 0)
(0.475461 0.251838 0)
(0.498822 0.292244 0)
(0.516585 0.365195 0)
(0.530344 0.460795 0)
(0.55543 0.500353 0)
(0.58104 0.444536 0)
(0.596939 0.316508 0)
(0.600361 0.138736 0)
(0.599505 -0.0814537 0)
(0.607378 -0.315554 0)
(0.62368 -0.504152 0)
(0.639215 -0.60507 0)
(0.646963 -0.622892 0)
(0.647 -0.5883 0)
(0.642397 -0.531154 0)
(0.634259 -0.469195 0)
(0.628065 -0.408773 0)
(0.620216 -0.354308 0)
(0.612666 -0.303696 0)
(0.611873 -0.253913 0)
(0.605082 -0.21159 0)
(0.595333 -0.172013 0)
(0.602181 -0.122897 0)
(0.611025 -0.0756146 0)
(0.595482 -0.0470597 0)
(0.564772 -0.0273698 0)
(0.545432 0.00130081 0)
(0.540328 0.0356919 0)
(0.533981 0.0630254 0)
(0.518764 0.0842461 0)
(0.500428 0.112271 0)
(0.485313 0.156284 0)
(0.473542 0.211811 0)
(0.459691 0.264905 0)
(0.443273 0.300391 0)
(0.420841 0.311798 0)
(0.393938 0.297226 0)
(0.358607 0.253387 0)
(0.328594 0.174794 0)
(0.291668 0.0714899 0)
(0.269053 -0.0453876 0)
(0.229649 -0.151838 0)
(0.222242 -0.248028 0)
(0.183104 -0.299588 0)
(0.199345 -0.333991 0)
(0.172303 -0.304576 0)
(0.179634 -0.288402 0)
(0.138934 -0.229506 0)
(0.100793 -0.199982 0)
(0.0506248 -0.154044 0)
(-0.00297399 0.00510039 0)
(-0.00956824 0.0064432 0)
(-0.015332 0.00518064 0)
(-0.0217112 0.00208517 0)
(-0.0267737 -3.91895e-05 0)
(-0.0297707 -0.00044659 0)
(-0.0279585 0.0021938 0)
(-0.020918 0.00721348 0)
(-0.0102368 0.0125733 0)
(0.00157541 0.0167835 0)
(0.0137151 0.0199657 0)
(0.0261414 0.0228733 0)
(0.0392281 0.0260772 0)
(0.0532992 0.0298722 0)
(0.068465 0.034326 0)
(0.0845546 0.0393654 0)
(0.101187 0.0448546 0)
(0.117876 0.0506413 0)
(0.134128 0.0565759 0)
(0.149506 0.0625135 0)
(0.163662 0.0683073 0)
(0.176344 0.0738004 0)
(0.187395 0.0788186 0)
(0.19675 0.0831674 0)
(0.204434 0.0866326 0)
(0.210561 0.0889868 0)
(0.215345 0.0900049 0)
(0.219099 0.0894861 0)
(0.222232 0.0872874 0)
(0.225235 0.0833614 0)
(0.228649 0.0777937 0)
(0.233013 0.0708296 0)
(0.238807 0.0628785 0)
(0.246387 0.0544899 0)
(0.255941 0.0463061 0)
(0.267464 0.0389948 0)
(0.280771 0.0331807 0)
(0.295537 0.0293917 0)
(0.311345 0.0280299 0)
(0.327751 0.0293674 0)
(0.344328 0.0335608 0)
(0.360705 0.0406823 0)
(0.37659 0.0507546 0)
(0.391785 0.063785 0)
(0.406192 0.0797909 0)
(0.419824 0.0988663 0)
(0.432671 0.121224 0)
(0.445048 0.146755 0)
(0.458193 0.176362 0)
(0.469461 0.212509 0)
(0.482281 0.24918 0)
(0.506752 0.289137 0)
(0.525644 0.362403 0)
(0.542158 0.457212 0)
(0.570139 0.496181 0)
(0.598638 0.441226 0)
(0.616793 0.314909 0)
(0.620934 0.138761 0)
(0.62037 -0.0815507 0)
(0.628664 -0.317166 0)
(0.644478 -0.506606 0)
(0.658096 -0.606921 0)
(0.663272 -0.623456 0)
(0.660528 -0.587832 0)
(0.653801 -0.530035 0)
(0.643929 -0.467964 0)
(0.636246 -0.407619 0)
(0.628033 -0.353048 0)
(0.619226 -0.302978 0)
(0.617655 -0.253349 0)
(0.611994 -0.210304 0)
(0.601114 -0.171646 0)
(0.605547 -0.12408 0)
(0.616178 -0.0753221 0)
(0.604892 -0.0437523 0)
(0.575674 -0.0235791 0)
(0.554815 0.00324246 0)
(0.548575 0.0366389 0)
(0.542541 0.0647051 0)
(0.528025 0.0868158 0)
(0.510314 0.114777 0)
(0.496188 0.158201 0)
(0.486145 0.213515 0)
(0.474598 0.266964 0)
(0.460866 0.303093 0)
(0.44111 0.315326 0)
(0.416929 0.301608 0)
(0.384285 0.258249 0)
(0.35651 0.179819 0)
(0.32069 0.076403 0)
(0.298207 -0.0406742 0)
(0.257673 -0.147835 0)
(0.248938 -0.244559 0)
(0.206011 -0.297361 0)
(0.219861 -0.333308 0)
(0.187988 -0.302717 0)
(0.196153 -0.285975 0)
(0.150961 -0.222942 0)
(0.110856 -0.19291 0)
(0.0555492 -0.142114 0)
(-0.00316149 0.00606838 0)
(-0.00964553 0.00734327 0)
(-0.0150573 0.00609944 0)
(-0.0213269 0.00294457 0)
(-0.0265596 0.000608549 0)
(-0.0301889 -0.000296422 0)
(-0.0293358 0.00159752 0)
(-0.0231412 0.00591167 0)
(-0.0127422 0.0108677 0)
(-0.000706707 0.0149453 0)
(0.0118839 0.0180742 0)
(0.0247984 0.020915 0)
(0.0382823 0.0240048 0)
(0.0525991 0.0276535 0)
(0.0678625 0.0319634 0)
(0.083948 0.0368963 0)
(0.100532 0.0423409 0)
(0.117173 0.0481551 0)
(0.133397 0.054187 0)
(0.148772 0.0602815 0)
(0.162938 0.0662786 0)
(0.17563 0.0720068 0)
(0.186677 0.077278 0)
(0.196 0.0818836 0)
(0.203615 0.0855956 0)
(0.209633 0.0881722 0)
(0.214267 0.089373 0)
(0.217834 0.0889821 0)
(0.220757 0.0868424 0)
(0.223545 0.0828958 0)
(0.226762 0.0772236 0)
(0.230978 0.0700755 0)
(0.236696 0.061875 0)
(0.244294 0.0531941 0)
(0.253971 0.0447034 0)
(0.265721 0.0370999 0)
(0.27935 0.0310336 0)
(0.294514 0.0270503 0)
(0.310777 0.0255612 0)
(0.327672 0.0268392 0)
(0.344754 0.0310346 0)
(0.36164 0.0382089 0)
(0.378031 0.0483716 0)
(0.393726 0.0615147 0)
(0.408633 0.077639 0)
(0.422775 0.0968339 0)
(0.436123 0.119281 0)
(0.449142 0.144787 0)
(0.462961 0.174496 0)
(0.474543 0.210608 0)
(0.489058 0.246356 0)
(0.514373 0.285895 0)
(0.534445 0.35936 0)
(0.553594 0.453269 0)
(0.584336 0.491628 0)
(0.615707 0.437557 0)
(0.636042 0.313096 0)
(0.640867 0.1387 0)
(0.640715 -0.0817053 0)
(0.649603 -0.31876 0)
(0.665033 -0.508856 0)
(0.676745 -0.608412 0)
(0.679337 -0.623609 0)
(0.673848 -0.586998 0)
(0.664978 -0.528641 0)
(0.653475 -0.466505 0)
(0.644267 -0.406337 0)
(0.635687 -0.351689 0)
(0.625827 -0.30211 0)
(0.623243 -0.252809 0)
(0.618662 -0.209053 0)
(0.607145 -0.171022 0)
(0.608997 -0.12517 0)
(0.620712 -0.0754635 0)
(0.6136 -0.0409331 0)
(0.58638 -0.0198532 0)
(0.564281 0.00535924 0)
(0.556786 0.0376392 0)
(0.55097 0.0662855 0)
(0.5372 0.0892522 0)
(0.520155 0.117136 0)
(0.506975 0.159899 0)
(0.49859 0.214901 0)
(0.489326 0.268624 0)
(0.478289 0.305358 0)
(0.461235 0.318401 0)
(0.43984 0.305526 0)
(0.409948 0.262677 0)
(0.384427 0.184531 0)
(0.349751 0.0811546 0)
(0.327452 -0.0359439 0)
(0.285932 -0.143694 0)
(0.275926 -0.240768 0)
(0.229479 -0.294685 0)
(0.241141 -0.332105 0)
(0.203976 -0.300545 0)
(0.213306 -0.28335 0)
(0.163462 -0.215918 0)
(0.121855 -0.185401 0)
(0.0609655 -0.129143 0)
(-0.00335436 0.00704365 0)
(-0.00965068 0.00818845 0)
(-0.0145665 0.00696382 0)
(-0.0205784 0.00378731 0)
(-0.0258202 0.00129953 0)
(-0.0299554 -3.26925e-05 0)
(-0.0300485 0.00114905 0)
(-0.0248516 0.00472436 0)
(-0.0149807 0.00920249 0)
(-0.00292316 0.0130877 0)
(0.00999336 0.0161398 0)
(0.02334 0.0189138 0)
(0.0372244 0.0219055 0)
(0.0518301 0.0254306 0)
(0.067249 0.0296169 0)
(0.0833803 0.0344567 0)
(0.0999464 0.0398623 0)
(0.116548 0.0457033 0)
(0.132742 0.0518286 0)
(0.148101 0.0580758 0)
(0.162264 0.0642727 0)
(0.174953 0.0702343 0)
(0.185983 0.0757585 0)
(0.195265 0.0806227 0)
(0.202803 0.0845844 0)
(0.208703 0.0873869 0)
(0.213177 0.0887742 0)
(0.216548 0.0885143 0)
(0.21925 0.0864351 0)
(0.22181 0.0824671 0)
(0.224821 0.0766868 0)
(0.228877 0.0693478 0)
(0.234512 0.0608881 0)
(0.242123 0.0519031 0)
(0.25192 0.0430931 0)
(0.263899 0.0351856 0)
(0.277854 0.028857 0)
(0.293422 0.0246715 0)
(0.310146 0.0230497 0)
(0.327538 0.0242651 0)
(0.345133 0.028461 0)
(0.362534 0.0356878 0)
(0.379435 0.0459407 0)
(0.395631 0.0591957 0)
(0.411039 0.0754365 0)
(0.425686 0.0947499 0)
(0.439521 0.117275 0)
(0.453201 0.142747 0)
(0.4676 0.172579 0)
(0.479538 0.208579 0)
(0.495749 0.243382 0)
(0.52172 0.28254 0)
(0.542947 0.356079 0)
(0.564652 0.44899 0)
(0.598053 0.486714 0)
(0.632241 0.433549 0)
(0.654655 0.311085 0)
(0.660132 0.138548 0)
(0.660525 -0.0819392 0)
(0.670184 -0.320356 0)
(0.685324 -0.510915 0)
(0.69514 -0.609553 0)
(0.695137 -0.623362 0)
(0.686948 -0.585807 0)
(0.675919 -0.526984 0)
(0.662883 -0.464828 0)
(0.652144 -0.404929 0)
(0.643158 -0.350247 0)
(0.632458 -0.301097 0)
(0.628687 -0.25227 0)
(0.625052 -0.207864 0)
(0.613365 -0.170177 0)
(0.61261 -0.126108 0)
(0.624721 -0.0759669 0)
(0.621587 -0.0386161 0)
(0.596819 -0.0162529 0)
(0.573813 0.00763107 0)
(0.564982 0.0387071 0)
(0.559272 0.0677734 0)
(0.546279 0.0915519 0)
(0.529937 0.11935 0)
(0.517657 0.161391 0)
(0.510853 0.215982 0)
(0.503842 0.269896 0)
(0.495496 0.307194 0)
(0.481162 0.321028 0)
(0.462598 0.308983 0)
(0.435505 0.266676 0)
(0.412242 0.188932 0)
(0.378752 0.0857399 0)
(0.356682 -0.0312115 0)
(0.314332 -0.139435 0)
(0.303092 -0.236687 0)
(0.253394 -0.291607 0)
(0.263108 -0.33038 0)
(0.220221 -0.298054 0)
(0.23108 -0.280552 0)
(0.176394 -0.208462 0)
(0.1339 -0.177482 0)
(0.0669389 -0.115039 0)
(-0.00355236 0.00802109 0)
(-0.00958152 0.0089631 0)
(-0.0138501 0.00775278 0)
(-0.0194494 0.00458981 0)
(-0.0245227 0.00200921 0)
(-0.0290012 0.000328135 0)
(-0.0299734 0.000852144 0)
(-0.0258787 0.00367712 0)
(-0.0167788 0.00761118 0)
(-0.00493597 0.0112387 0)
(0.00813962 0.0141802 0)
(0.0218222 0.0168775 0)
(0.0360754 0.0197789 0)
(0.0509878 0.0231973 0)
(0.0666069 0.0272788 0)
(0.0828327 0.03204 0)
(0.0994174 0.0374145 0)
(0.116 0.0432843 0)
(0.132164 0.0495011 0)
(0.147501 0.0558975 0)
(0.161649 0.0622913 0)
(0.174322 0.0684846 0)
(0.185325 0.0742616 0)
(0.194554 0.0793856 0)
(0.202005 0.0835997 0)
(0.207778 0.0866318 0)
(0.212083 0.0882093 0)
(0.215247 0.0880834 0)
(0.217716 0.0860664 0)
(0.220038 0.0820764 0)
(0.22283 0.0761841 0)
(0.226716 0.0686472 0)
(0.232259 0.0599184 0)
(0.239877 0.0506175 0)
(0.249792 0.0414757 0)
(0.262 0.0332521 0)
(0.276284 0.026651 0)
(0.292262 0.0222556 0)
(0.309455 0.0204958 0)
(0.32735 0.0216455 0)
(0.345464 0.0258407 0)
(0.363386 0.0331197 0)
(0.3808 0.0434631 0)
(0.397498 0.0568293 0)
(0.413408 0.0731853 0)
(0.428552 0.0926172 0)
(0.442868 0.115206 0)
(0.457223 0.140642 0)
(0.472097 0.170614 0)
(0.484475 0.206422 0)
(0.502313 0.240274 0)
(0.528823 0.279089 0)
(0.551127 0.352576 0)
(0.575308 0.444395 0)
(0.611286 0.481459 0)
(0.64822 0.429224 0)
(0.672602 0.308889 0)
(0.678705 0.138299 0)
(0.679791 -0.0822745 0)
(0.690398 -0.321975 0)
(0.705331 -0.512793 0)
(0.713262 -0.610349 0)
(0.71065 -0.622727 0)
(0.699814 -0.584271 0)
(0.68662 -0.525077 0)
(0.672137 -0.462948 0)
(0.65989 -0.403392 0)
(0.650434 -0.348738 0)
(0.6391 -0.299947 0)
(0.63403 -0.251709 0)
(0.631143 -0.206759 0)
(0.619706 -0.169155 0)
(0.616445 -0.126848 0)
(0.628304 -0.0767561 0)
(0.62885 -0.0368034 0)
(0.606922 -0.0128333 0)
(0.583384 0.0100327 0)
(0.573179 0.0398544 0)
(0.567455 0.0691775 0)
(0.55525 0.0937132 0)
(0.539647 0.121424 0)
(0.528219 0.162689 0)
(0.522914 0.216773 0)
(0.518116 0.270791 0)
(0.512446 0.30861 0)
(0.500838 0.323211 0)
(0.485137 0.311985 0)
(0.46087 0.27025 0)
(0.439862 0.193026 0)
(0.407602 0.0901552 0)
(0.385801 -0.0264915 0)
(0.34279 -0.135078 0)
(0.330325 -0.232343 0)
(0.277657 -0.288176 0)
(0.285666 -0.328133 0)
(0.236671 -0.295248 0)
(0.249466 -0.277606 0)
(0.189707 -0.200611 0)
(0.147123 -0.169189 0)
(0.0735452 -0.0997056 0)
(-0.00375254 0.00899539 0)
(-0.0094308 0.00965149 0)
(-0.012894 0.0084451 0)
(-0.017923 0.00532804 0)
(-0.0226393 0.00271045 0)
(-0.027267 0.000763683 0)
(-0.0289953 0.000701974 0)
(-0.0260454 0.00279021 0)
(-0.017933 0.00612779 0)
(-0.00656505 0.00942889 0)
(0.00646106 0.0122198 0)
(0.0203385 0.0148193 0)
(0.034887 0.0176291 0)
(0.0500898 0.0209514 0)
(0.0659316 0.0249431 0)
(0.0822912 0.0296399 0)
(0.0989315 0.0349927 0)
(0.115518 0.0408955 0)
(0.131664 0.047204 0)
(0.146977 0.0537477 0)
(0.161101 0.0603357 0)
(0.173747 0.066759 0)
(0.184709 0.0727885 0)
(0.193875 0.0781736 0)
(0.20123 0.0826426 0)
(0.206866 0.0859075 0)
(0.210991 0.0876789 0)
(0.213938 0.0876902 0)
(0.216163 0.0857371 0)
(0.218235 0.0817244 0)
(0.220796 0.0757165 0)
(0.224503 0.0679746 0)
(0.229944 0.0589668 0)
(0.237563 0.049338 0)
(0.247594 0.0398516 0)
(0.260031 0.0313 0)
(0.274646 0.0244162 0)
(0.291038 0.0198029 0)
(0.308703 0.0178999 0)
(0.327107 0.0189809 0)
(0.345746 0.0231743 0)
(0.364193 0.0305054 0)
(0.382123 0.0409396 0)
(0.399326 0.0544167 0)
(0.415741 0.0708876 0)
(0.431367 0.0904381 0)
(0.446166 0.113076 0)
(0.461201 0.138481 0)
(0.476445 0.168603 0)
(0.489377 0.20414 0)
(0.50872 0.237049 0)
(0.5357 0.27556 0)
(0.55898 0.348871 0)
(0.585522 0.439503 0)
(0.623998 0.475882 0)
(0.663611 0.424602 0)
(0.689856 0.306523 0)
(0.696568 0.137946 0)
(0.698506 -0.0827334 0)
(0.71024 -0.323635 0)
(0.725037 -0.514502 0)
(0.731091 -0.610809 0)
(0.725857 -0.621715 0)
(0.712432 -0.582401 0)
(0.69708 -0.522931 0)
(0.681221 -0.460878 0)
(0.667517 -0.401727 0)
(0.65751 -0.347171 0)
(0.645729 -0.298673 0)
(0.639315 -0.251104 0)
(0.636933 -0.205747 0)
(0.626097 -0.167999 0)
(0.620542 -0.127362 0)
(0.631565 -0.077754 0)
(0.6354 -0.0354849 0)
(0.616627 -0.00964361 0)
(0.592961 0.0125345 0)
(0.58139 0.0410899 0)
(0.57553 0.0705083 0)
(0.564107 0.0957362 0)
(0.549271 0.12336 0)
(0.53865 0.163809 0)
(0.534757 0.217292 0)
(0.532119 0.271323 0)
(0.529097 0.309617 0)
(0.520213 0.324961 0)
(0.507391 0.314539 0)
(0.485964 0.273409 0)
(0.467203 0.196816 0)
(0.436222 0.0943965 0)
(0.414722 -0.0217986 0)
(0.371227 -0.130638 0)
(0.357526 -0.227764 0)
(0.302187 -0.284438 0)
(0.308692 -0.325368 0)
(0.253266 -0.292135 0)
(0.268467 -0.274535 0)
(0.203329 -0.192409 0)
(0.161681 -0.160571 0)
(0.0808699 -0.0830266 0)
(-0.00394665 0.00996032 0)
(-0.00918111 0.0102376 0)
(-0.0116749 0.00901977 0)
(-0.0159756 0.00597817 0)
(-0.0201433 0.00337451 0)
(-0.0247025 0.00124659 0)
(-0.02701 0.000684997 0)
(-0.0251765 0.00207438 0)
(-0.0182186 0.00478416 0)
(-0.00758823 0.00769432 0)
(0.00514418 0.0102867 0)
(0.0190291 0.0127588 0)
(0.0337518 0.0154666 0)
(0.0491859 0.0186953 0)
(0.0652407 0.0226072 0)
(0.0817539 0.0272513 0)
(0.0984798 0.0325923 0)
(0.115097 0.0385339 0)
(0.131238 0.044936 0)
(0.14653 0.0516262 0)
(0.160624 0.058407 0)
(0.173234 0.0650589 0)
(0.184146 0.0713406 0)
(0.193238 0.0769878 0)
(0.200486 0.081714 0)
(0.205975 0.085215 0)
(0.209911 0.0871838 0)
(0.21263 0.0873356 0)
(0.2146 0.085448 0)
(0.21641 0.081412 0)
(0.218729 0.0752847 0)
(0.222246 0.0673309 0)
(0.227579 0.058034 0)
(0.235194 0.0480653 0)
(0.245337 0.0382215 0)
(0.258002 0.0293299 0)
(0.272948 0.0221532 0)
(0.289755 0.0173142 0)
(0.307896 0.0152626 0)
(0.326812 0.016272 0)
(0.345979 0.0204623 0)
(0.364956 0.0278458 0)
(0.383404 0.0383715 0)
(0.401114 0.0519589 0)
(0.418033 0.0685456 0)
(0.434128 0.0882144 0)
(0.449421 0.110887 0)
(0.465121 0.136274 0)
(0.480646 0.166546 0)
(0.494253 0.201737 0)
(0.514952 0.233724 0)
(0.542357 0.271967 0)
(0.566513 0.344986 0)
(0.595255 0.434338 0)
(0.636146 0.47 0)
(0.678387 0.419703 0)
(0.706394 0.304 0)
(0.713705 0.137482 0)
(0.716668 -0.0833384 0)
(0.72971 -0.325354 0)
(0.744428 -0.516051 0)
(0.748609 -0.610938 0)
(0.740743 -0.620339 0)
(0.724788 -0.58021 0)
(0.707298 -0.520558 0)
(0.690122 -0.458632 0)
(0.675034 -0.399936 0)
(0.664386 -0.345555 0)
(0.652318 -0.297288 0)
(0.644575 -0.250434 0)
(0.642428 -0.20483 0)
(0.632466 -0.166755 0)
(0.624919 -0.127634 0)
(0.634603 -0.0788854 0)
(0.641266 -0.0346382 0)
(0.625876 -0.0067296 0)
(0.602504 0.0151009 0)
(0.589627 0.0424184 0)
(0.583507 0.0717773 0)
(0.572842 0.0976227 0)
(0.558798 0.125164 0)
(0.548938 0.164764 0)
(0.546368 0.217554 0)
(0.545828 0.271507 0)
(0.545414 0.310227 0)
(0.539244 0.326285 0)
(0.529303 0.316654 0)
(0.510716 0.276161 0)
(0.494186 0.200306 0)
(0.46454 0.0984598 0)
(0.443367 -0.0171471 0)
(0.399573 -0.126132 0)
(0.3846 -0.222975 0)
(0.326915 -0.280437 0)
(0.332047 -0.322088 0)
(0.26996 -0.288736 0)
(0.288099 -0.271362 0)
(0.217168 -0.183912 0)
(0.177764 -0.151697 0)
(0.0890155 -0.0648505 0)
(-0.00411676 0.0109073 0)
(-0.00879651 0.0107047 0)
(-0.0101516 0.00945621 0)
(-0.0135688 0.00651733 0)
(-0.017001 0.00397227 0)
(-0.0212618 0.00174525 0)
(-0.0239276 0.000779208 0)
(-0.0231047 0.00153056 0)
(-0.0174004 0.00360503 0)
(-0.00774849 0.00607266 0)
(0.00442471 0.00841247 0)
(0.0180876 0.0107216 0)
(0.0328127 0.0133081 0)
(0.0483691 0.0164375 0)
(0.0645844 0.0202728 0)
(0.0812409 0.0248721 0)
(0.098065 0.0302096 0)
(0.114731 0.0361962 0)
(0.130883 0.0426951 0)
(0.14616 0.0495326 0)
(0.160224 0.0565054 0)
(0.172791 0.0633851 0)
(0.183643 0.0699188 0)
(0.192652 0.0758292 0)
(0.199783 0.0808148 0)
(0.205115 0.084555 0)
(0.208852 0.0867249 0)
(0.211333 0.0870201 0)
(0.213037 0.0851999 0)
(0.214575 0.0811399 0)
(0.216642 0.0748896 0)
(0.21996 0.0667166 0)
(0.225178 0.0571206 0)
(0.232784 0.0467999 0)
(0.243036 0.0365862 0)
(0.255926 0.0273426 0)
(0.271202 0.0198629 0)
(0.288423 0.0147904 0)
(0.307039 0.012585 0)
(0.326469 0.0135198 0)
(0.346167 0.0177059 0)
(0.365675 0.025142 0)
(0.384643 0.0357596 0)
(0.402861 0.0494572 0)
(0.420283 0.0661618 0)
(0.436831 0.0859474 0)
(0.452638 0.108641 0)
(0.468969 0.134028 0)
(0.484713 0.164442 0)
(0.499101 0.199221 0)
(0.521006 0.230314 0)
(0.548785 0.268322 0)
(0.573738 0.340945 0)
(0.604483 0.428925 0)
(0.647702 0.463831 0)
(0.692532 0.414544 0)
(0.722203 0.301332 0)
(0.730106 0.136898 0)
(0.734281 -0.084112 0)
(0.748809 -0.327146 0)
(0.763491 -0.517446 0)
(0.765798 -0.610745 0)
(0.755292 -0.61861 0)
(0.736869 -0.577713 0)
(0.717274 -0.517969 0)
(0.698827 -0.456224 0)
(0.682443 -0.39802 0)
(0.671067 -0.343894 0)
(0.65884 -0.295811 0)
(0.649837 -0.249686 0)
(0.647651 -0.204002 0)
(0.638749 -0.165466 0)
(0.629574 -0.127659 0)
(0.637516 -0.080079 0)
(0.646487 -0.0342311 0)
(0.63462 -0.00412959 0)
(0.611971 0.0176938 0)
(0.597893 0.0438411 0)
(0.591397 0.0729967 0)
(0.58145 0.0993759 0)
(0.568216 0.126839 0)
(0.559075 0.165567 0)
(0.557735 0.217578 0)
(0.55922 0.271358 0)
(0.561364 0.310453 0)
(0.557888 0.327195 0)
(0.550817 0.318342 0)
(0.535059 0.278518 0)
(0.520742 0.203499 0)
(0.492491 0.102342 0)
(0.471665 -0.0125505 0)
(0.427762 -0.121573 0)
(0.411463 -0.217999 0)
(0.351788 -0.276211 0)
(0.355572 -0.3183 0)
(0.286728 -0.285081 0)
(0.308387 -0.268103 0)
(0.231095 -0.175183 0)
(0.195597 -0.14265 0)
(0.0981077 -0.0450634 0)
(-0.0042277 0.011823 0)
(-0.00820966 0.0110347 0)
(-0.00825261 0.00973448 0)
(-0.0106364 0.00692456 0)
(-0.0131606 0.00447581 0)
(-0.0168945 0.00222596 0)
(-0.0196686 0.000955136 0)
(-0.0196798 0.00114945 0)
(-0.0152425 0.00260598 0)
(-0.00676493 0.0045955 0)
(0.00458232 0.00663372 0)
(0.0177626 0.00873918 0)
(0.0322699 0.0111772 0)
(0.0477851 0.0141931 0)
(0.0640572 0.0179476 0)
(0.080805 0.0225043 0)
(0.0977118 0.0278434 0)
(0.114431 0.0338803 0)
(0.130602 0.0404796 0)
(0.14587 0.047466 0)
(0.159905 0.054631 0)
(0.172424 0.0617382 0)
(0.18321 0.0685241 0)
(0.192125 0.0746986 0)
(0.199131 0.0799458 0)
(0.204298 0.0839283 0)
(0.207826 0.0863026 0)
(0.210059 0.0867443 0)
(0.211489 0.0849932 0)
(0.212745 0.0809086 0)
(0.214553 0.0745314 0)
(0.217666 0.0661322 0)
(0.222763 0.056227 0)
(0.230357 0.0455424 0)
(0.240714 0.0349463 0)
(0.253827 0.0253391 0)
(0.269428 0.0175466 0)
(0.287058 0.012233 0)
(0.306145 0.00986848 0)
(0.326085 0.0107256 0)
(0.346313 0.0149063 0)
(0.366351 0.0223951 0)
(0.385839 0.0331052 0)
(0.404569 0.0469131 0)
(0.422485 0.0637388 0)
(0.439477 0.0836378 0)
(0.45582 0.106341 0)
(0.472729 0.13175 0)
(0.488663 0.162288 0)
(0.50391 0.196596 0)
(0.526884 0.226837 0)
(0.554976 0.264636 0)
(0.580662 0.336773 0)
(0.613207 0.423292 0)
(0.658661 0.457391 0)
(0.706045 0.409141 0)
(0.737272 0.298532 0)
(0.745768 0.136182 0)
(0.751354 -0.0850776 0)
(0.767542 -0.329027 0)
(0.782215 -0.518694 0)
(0.782642 -0.610235 0)
(0.769494 -0.61654 0)
(0.748663 -0.574924 0)
(0.72701 -0.515173 0)
(0.707326 -0.453669 0)
(0.689748 -0.395983 0)
(0.677565 -0.342193 0)
(0.665266 -0.294258 0)
(0.655119 -0.248848 0)
(0.652628 -0.203252 0)
(0.644888 -0.164172 0)
(0.634489 -0.127447 0)
(0.640392 -0.0812698 0)
(0.651116 -0.0342228 0)
(0.642822 -0.0018735 0)
(0.621311 0.0202731 0)
(0.606187 0.0453549 0)
(0.599213 0.0741788 0)
(0.589929 0.101001 0)
(0.577516 0.128389 0)
(0.569054 0.166231 0)
(0.568849 0.217381 0)
(0.572276 0.270894 0)
(0.576918 0.310311 0)
(0.576109 0.327704 0)
(0.571884 0.319614 0)
(0.558935 0.28049 0)
(0.546808 0.206399 0)
(0.520016 0.106041 0)
(0.499552 -0.00802241 0)
(0.455731 -0.116973 0)
(0.438034 -0.212862 0)
(0.376761 -0.271792 0)
(0.379099 -0.314011 0)
(0.303587 -0.281215 0)
(0.329352 -0.264764 0)
(0.244927 -0.166301 0)
(0.215445 -0.133532 0)
(0.108278 -0.0236469 0)
(-0.0042138 0.0126852 0)
(-0.00730237 0.0112072 0)
(-0.00585806 0.00983529 0)
(-0.00706746 0.00718177 0)
(-0.00853599 0.00485999 0)
(-0.0115317 0.00265535 0)
(-0.0141551 0.00117827 0)
(-0.0147699 0.000910665 0)
(-0.0115226 0.00179286 0)
(-0.00434422 0.00328971 0)
(0.00593184 0.00498455 0)
(0.0183533 0.00684665 0)
(0.0323829 0.00910434 0)
(0.0476399 0.0119847 0)
(0.0638079 0.015646 0)
(0.0805433 0.0201554 0)
(0.0974768 0.0254965 0)
(0.114225 0.0315863 0)
(0.130409 0.0382887 0)
(0.145668 0.0454256 0)
(0.159673 0.0527837 0)
(0.172142 0.0601186 0)
(0.182854 0.0671571 0)
(0.19167 0.0735968 0)
(0.198541 0.0791076 0)
(0.203535 0.0833353 0)
(0.206847 0.0859173 0)
(0.208825 0.0865086 0)
(0.209972 0.0848281 0)
(0.21094 0.0807182 0)
(0.212484 0.0742102 0)
(0.21539 0.0655774 0)
(0.220367 0.0553531 0)
(0.227948 0.044293 0)
(0.238408 0.0333026 0)
(0.251737 0.0233208 0)
(0.267653 0.0152061 0)
(0.285681 0.00964394 0)
(0.305229 0.00711509 0)
(0.325671 0.0078913 0)
(0.346423 0.0120653 0)
(0.366988 0.0196068 0)
(0.386994 0.0304094 0)
(0.406236 0.0443285 0)
(0.424637 0.0612789 0)
(0.442068 0.0812857 0)
(0.458969 0.103991 0)
(0.476389 0.129448 0)
(0.492515 0.160083 0)
(0.508667 0.19387 0)
(0.532591 0.223308 0)
(0.560922 0.260919 0)
(0.587288 0.332491 0)
(0.621444 0.417465 0)
(0.669048 0.450694 0)
(0.718936 0.403513 0)
(0.751597 0.29561 0)
(0.760689 0.135327 0)
(0.767899 -0.0862563 0)
(0.785916 -0.331007 0)
(0.800592 -0.519799 0)
(0.799123 -0.609414 0)
(0.783336 -0.614142 0)
(0.760159 -0.571858 0)
(0.736507 -0.512184 0)
(0.715613 -0.450978 0)
(0.696946 -0.393832 0)
(0.683892 -0.340451 0)
(0.671573 -0.292646 0)
(0.66043 -0.247913 0)
(0.657394 -0.202565 0)
(0.650835 -0.162906 0)
(0.639634 -0.127015 0)
(0.643309 -0.0824006 0)
(0.655214 -0.0345654 0)
(0.650453 1.73431e-05 0)
(0.630477 0.0227978 0)
(0.614505 0.0469522 0)
(0.606966 0.0753353 0)
(0.598277 0.102504 0)
(0.586689 0.12982 0)
(0.57887 0.166769 0)
(0.579705 0.216981 0)
(0.584981 0.270131 0)
(0.592052 0.309814 0)
(0.593872 0.327825 0)
(0.592459 0.320485 0)
(0.582289 0.28209 0)
(0.572324 0.20901 0)
(0.54706 0.109554 0)
(0.526973 -0.00357537 0)
(0.48342 -0.112344 0)
(0.464246 -0.207588 0)
(0.401791 -0.267204 0)
(0.402451 -0.309236 0)
(0.320617 -0.277195 0)
(0.350986 -0.261331 0)
(0.258397 -0.157361 0)
(0.237622 -0.124475 0)
(0.119673 0.000196821 0)
(-0.00395576 0.0134558 0)
(-0.00587661 0.0111994 0)
(-0.00277567 0.0097399 0)
(-0.00268467 0.00727462 0)
(-0.00298632 0.00510424 0)
(-0.00506614 0.00300311 0)
(-0.00729543 0.00141227 0)
(-0.0082535 0.000785215 0)
(-0.00604213 0.00115936 0)
(-0.000200619 0.00217474 0)
(0.00880905 0.00349548 0)
(0.0202011 0.00507978 0)
(0.0334666 0.00712413 0)
(0.0482011 0.00984188 0)
(0.0640463 0.0133901 0)
(0.0806073 0.0178398 0)
(0.0974611 0.0231768 0)
(0.114177 0.0293177 0)
(0.130343 0.0361235 0)
(0.145578 0.0434119 0)
(0.159544 0.0509634 0)
(0.171956 0.0585264 0)
(0.182589 0.065818 0)
(0.191298 0.0725242 0)
(0.198029 0.0783006 0)
(0.202842 0.0827764 0)
(0.205932 0.0855693 0)
(0.207649 0.0863129 0)
(0.208511 0.0847045 0)
(0.20919 0.0805682 0)
(0.210472 0.0739252 0)
(0.213175 0.0650516 0)
(0.218037 0.0544983 0)
(0.225608 0.0430518 0)
(0.23617 0.0316562 0)
(0.249705 0.0212897 0)
(0.26592 0.0128442 0)
(0.284326 0.00702637 0)
(0.304315 0.00432778 0)
(0.325243 0.00501951 0)
(0.346507 0.00918496 0)
(0.367591 0.0167788 0)
(0.388113 0.0276737 0)
(0.407862 0.0417055 0)
(0.426735 0.0587841 0)
(0.444609 0.0788911 0)
(0.462081 0.101596 0)
(0.479939 0.127125 0)
(0.496286 0.157826 0)
(0.513357 0.191051 0)
(0.538131 0.219742 0)
(0.566619 0.257183 0)
(0.59361 0.328116 0)
(0.629221 0.411465 0)
(0.678899 0.443758 0)
(0.731224 0.397677 0)
(0.765174 0.292579 0)
(0.774876 0.134322 0)
(0.783934 -0.0876706 0)
(0.80394 -0.333098 0)
(0.818612 -0.520763 0)
(0.815229 -0.60829 0)
(0.79681 -0.611427 0)
(0.771346 -0.568529 0)
(0.745767 -0.509009 0)
(0.723682 -0.448165 0)
(0.704033 -0.391571 0)
(0.690062 -0.338667 0)
(0.67774 -0.290989 0)
(0.665771 -0.24688 0)
(0.661986 -0.201922 0)
(0.656554 -0.161696 0)
(0.644964 -0.126389 0)
(0.646334 -0.0834234 0)
(0.658852 -0.035206 0)
(0.657497 0.00153041 0)
(0.639417 0.0252275 0)
(0.622834 0.0486216 0)
(0.614668 0.0764773 0)
(0.606495 0.103892 0)
(0.595727 0.131135 0)
(0.588519 0.167191 0)
(0.590297 0.216396 0)
(0.597323 0.26909 0)
(0.606743 0.308979 0)
(0.611149 0.327572 0)
(0.612502 0.320969 0)
(0.605075 0.283329 0)
(0.597241 0.211334 0)
(0.573574 0.112878 0)
(0.553874 0.000778635 0)
(0.510771 -0.107695 0)
(0.490036 -0.202203 0)
(0.426836 -0.262463 0)
(0.425461 -0.303997 0)
(0.337962 -0.273087 0)
(0.373204 -0.257764 0)
(0.271125 -0.14848 0)
(0.262578 -0.11564 0)
(0.132572 0.0266228 0)
(-0.00324065 0.0140711 0)
(-0.00361386 0.010985 0)
(0.00128928 0.00943201 0)
(0.00278229 0.00719248 0)
(0.00370801 0.00519531 0)
(0.00267065 0.00324485 0)
(0.00103785 0.00162278 0)
(-4.4831e-06 0.000739478 0)
(0.00137797 0.000688809 0)
(0.00592901 0.0012564 0)
(0.0135489 0.00219333 0)
(0.023674 0.00347347 0)
(0.0358823 0.00527357 0)
(0.0497949 0.0077995 0)
(0.0650457 0.0112092 0)
(0.0812096 0.0155795 0)
(0.0978186 0.020899 0)
(0.114392 0.0270831 0)
(0.130472 0.0339887 0)
(0.145644 0.0414269 0)
(0.15955 0.0491715 0)
(0.171891 0.0569625 0)
(0.182435 0.0645076 0)
(0.191029 0.0714813 0)
(0.197613 0.0775252 0)
(0.20224 0.0822516 0)
(0.205105 0.0852583 0)
(0.206561 0.0861566 0)
(0.20714 0.0846212 0)
(0.207536 0.080457 0)
(0.208567 0.0736745 0)
(0.211082 0.0645527 0)
(0.215844 0.0536612 0)
(0.223415 0.0418183 0)
(0.234078 0.0300079 0)
(0.247804 0.0192482 0)
(0.264292 0.0104647 0)
(0.283042 0.00438467 0)
(0.303439 0.00151084 0)
(0.324825 0.00211398 0)
(0.346579 0.00626844 0)
(0.368169 0.0139133 0)
(0.389199 0.0249002 0)
(0.409448 0.0390467 0)
(0.428779 0.0562559 0)
(0.447107 0.0764544 0)
(0.46515 0.0991633 0)
(0.483378 0.124785 0)
(0.499986 0.155515 0)
(0.517971 0.188148 0)
(0.543501 0.216151 0)
(0.572072 0.253438 0)
(0.599623 0.323665 0)
(0.63656 0.405313 0)
(0.688253 0.436599 0)
(0.742922 0.391655 0)
(0.778002 0.289451 0)
(0.788338 0.13315 0)
(0.799484 -0.089342 0)
(0.821623 -0.335306 0)
(0.836271 -0.521589 0)
(0.830944 -0.606869 0)
(0.809909 -0.608408 0)
(0.782216 -0.564954 0)
(0.754789 -0.505662 0)
(0.731533 -0.445242 0)
(0.711002 -0.389209 0)
(0.696091 -0.336841 0)
(0.68375 -0.289302 0)
(0.671135 -0.24575 0)
(0.666444 -0.201303 0)
(0.662019 -0.160561 0)
(0.65043 -0.125598 0)
(0.649521 -0.0843 0)
(0.662104 -0.0360886 0)
(0.663948 0.00266204 0)
(0.648082 0.0275233 0)
(0.631158 0.0503479 0)
(0.622329 0.0776143 0)
(0.614585 0.105174 0)
(0.604625 0.13234 0)
(0.597998 0.16751 0)
(0.600625 0.215645 0)
(0.609291 0.267789 0)
(0.620972 0.307824 0)
(0.627914 0.326961 0)
(0.631978 0.321081 0)
(0.627251 0.284222 0)
(0.621513 0.213377 0)
(0.599509 0.116014 0)
(0.580212 0.00502853 0)
(0.537725 -0.103034 0)
(0.515356 -0.196732 0)
(0.451845 -0.257576 0)
(0.447975 -0.298334 0)
(0.355824 -0.268953 0)
(0.395783 -0.253985 0)
(0.282624 -0.139812 0)
(0.290703 -0.107225 0)
(0.14719 0.0553477 0)
(-0.00169151 0.0144309 0)
(-2.40344e-05 0.0105291 0)
(0.0067699 0.00890562 0)
(0.00972241 0.00692948 0)
(0.0118729 0.00512899 0)
(0.0119334 0.00336456 0)
(0.0110331 0.00178226 0)
(0.0101303 0.000739979 0)
(0.010909 0.000356355 0)
(0.0142831 0.000528971 0)
(0.0204657 0.00109527 0)
(0.029141 0.00205896 0)
(0.0400197 0.00359046 0)
(0.052796 0.00589592 0)
(0.0671386 0.00913869 0)
(0.0826257 0.0134038 0)
(0.0987636 0.018685 0)
(0.115027 0.0248975 0)
(0.130907 0.0318933 0)
(0.145944 0.0394761 0)
(0.159745 0.0474108 0)
(0.171988 0.0554285 0)
(0.182426 0.0632268 0)
(0.190895 0.0704685 0)
(0.197324 0.0767814 0)
(0.201762 0.0817606 0)
(0.204402 0.0849835 0)
(0.205602 0.0860384 0)
(0.205907 0.0845762 0)
(0.206038 0.080382 0)
(0.206841 0.0734549 0)
(0.209197 0.0640774 0)
(0.213887 0.052839 0)
(0.221478 0.0405914 0)
(0.232242 0.0283591 0)
(0.24614 0.0172002 0)
(0.262859 0.00807312 0)
(0.281901 0.00172519 0)
(0.302653 -0.00132956 0)
(0.324451 -0.000820028 0)
(0.346663 0.00331985 0)
(0.368735 0.0110136 0)
(0.390259 0.0220916 0)
(0.410995 0.0363549 0)
(0.430773 0.0536953 0)
(0.449569 0.0739764 0)
(0.468167 0.0966975 0)
(0.486706 0.122429 0)
(0.503622 0.153149 0)
(0.522502 0.185171 0)
(0.548698 0.212547 0)
(0.577286 0.249694 0)
(0.605322 0.319153 0)
(0.64348 0.399021 0)
(0.69714 0.429233 0)
(0.75404 0.38547 0)
(0.790078 0.286239 0)
(0.801092 0.131798 0)
(0.814576 -0.0912889 0)
(0.838976 -0.337635 0)
(0.853561 -0.522273 0)
(0.846257 -0.605155 0)
(0.822625 -0.605097 0)
(0.792764 -0.561149 0)
(0.763576 -0.502152 0)
(0.739165 -0.442219 0)
(0.717847 -0.386754 0)
(0.701992 -0.334971 0)
(0.689592 -0.287595 0)
(0.676511 -0.24453 0)
(0.670805 -0.20069 0)
(0.667217 -0.159516 0)
(0.655974 -0.124679 0)
(0.652906 -0.0850024 0)
(0.665049 -0.0371555 0)
(0.669811 0.00341725 0)
(0.656427 0.0296489 0)
(0.639454 0.0521122 0)
(0.629957 0.0787541 0)
(0.622551 0.106359 0)
(0.613378 0.133439 0)
(0.607305 0.167735 0)
(0.610687 0.214745 0)
(0.620879 0.266248 0)
(0.634727 0.306364 0)
(0.644145 0.326008 0)
(0.650856 0.320836 0)
(0.648783 0.284781 0)
(0.645099 0.215142 0)
(0.624821 0.118957 0)
(0.605947 0.00916385 0)
(0.564224 -0.0983692 0)
(0.540165 -0.191199 0)
(0.476756 -0.252549 0)
(0.469871 -0.292296 0)
(0.374439 -0.264847 0)
(0.41831 -0.249856 0)
(0.292417 -0.131569 0)
(0.322405 -0.0994548 0)
(0.163618 0.0869361 0)
(0.00134901 0.0143734 0)
(0.00560808 0.0097932 0)
(0.0142827 0.00816581 0)
(0.0186659 0.00649024 0)
(0.0219612 0.00491043 0)
(0.0230853 0.00335755 0)
(0.0229662 0.00187271 0)
(0.0223554 0.000757725 0)
(0.0227348 0.000134083 0)
(0.0250821 -1.98011e-05 0)
(0.0298464 0.000208042 0)
(0.0369521 0.000859486 0)
(0.0462705 0.00210985 0)
(0.0576067 0.00417132 0)
(0.0707058 0.00721806 0)
(0.0851899 0.0113481 0)
(0.100571 0.0165638 0)
(0.116296 0.0227825 0)
(0.131808 0.0298523 0)
(0.146595 0.0375688 0)
(0.160216 0.0456871 0)
(0.172314 0.0539277 0)
(0.182617 0.0619773 0)
(0.190942 0.0694868 0)
(0.197208 0.0760693 0)
(0.201455 0.0813027 0)
(0.203874 0.0847435 0)
(0.20483 0.0859558 0)
(0.204884 0.0845662 0)
(0.204781 0.0803387 0)
(0.2054 0.0732613 0)
(0.207645 0.0636206 0)
(0.212308 0.0520278 0)
(0.219949 0.0393696 0)
(0.230819 0.0267116 0)
(0.244858 0.0151508 0)
(0.261749 0.00567754 0)
(0.281006 -0.00094289 0)
(0.302031 -0.00418453 0)
(0.324173 -0.00377497 0)
(0.346788 0.000344954 0)
(0.369308 0.00808372 0)
(0.391303 0.0192511 0)
(0.412507 0.0336329 0)
(0.432722 0.0511031 0)
(0.451999 0.0714591 0)
(0.471123 0.0942051 0)
(0.489927 0.120059 0)
(0.507196 0.15073 0)
(0.526946 0.182128 0)
(0.553715 0.208941 0)
(0.582268 0.245963 0)
(0.610703 0.314592 0)
(0.64999 0.392604 0)
(0.705577 0.421676 0)
(0.764584 0.379148 0)
(0.801403 0.282956 0)
(0.813159 0.130253 0)
(0.829239 -0.0935282 0)
(0.856013 -0.34008 0)
(0.870478 -0.522803 0)
(0.861155 -0.603149 0)
(0.834954 -0.601507 0)
(0.802984 -0.557133 0)
(0.772127 -0.498495 0)
(0.746581 -0.439108 0)
(0.724559 -0.384217 0)
(0.707779 -0.333055 0)
(0.69526 -0.285879 0)
(0.681882 -0.243227 0)
(0.675102 -0.200062 0)
(0.672147 -0.158567 0)
(0.661542 -0.123665 0)
(0.656513 -0.0855126 0)
(0.667764 -0.0383498 0)
(0.675103 0.00380913 0)
(0.664407 0.0315719 0)
(0.647695 0.0538929 0)
(0.637557 0.0799023 0)
(0.630397 0.107458 0)
(0.621982 0.134438 0)
(0.616439 0.167876 0)
(0.620487 0.213713 0)
(0.632084 0.264487 0)
(0.647994 0.304619 0)
(0.659823 0.324728 0)
(0.66911 0.320251 0)
(0.669637 0.28502 0)
(0.667963 0.216634 0)
(0.649468 0.121708 0)
(0.631046 0.0131735 0)
(0.590212 -0.0937114 0)
(0.564434 -0.185628 0)
(0.501494 -0.247382 0)
(0.491073 -0.28595 0)
(0.394019 -0.2608 0)
(0.440153 -0.24517 0)
(0.300392 -0.124002 0)
(0.357783 -0.0926554 0)
(0.182971 0.121775 0)
(0.00698947 0.0135881 0)
(0.0142742 0.00874811 0)
(0.0246459 0.00722845 0)
(0.0302985 0.00589366 0)
(0.0345589 0.00455633 0)
(0.0366085 0.00323225 0)
(0.0372151 0.00188807 0)
(0.0369522 0.000772947 0)
(0.0370769 -2.37071e-06 0)
(0.0385446 -0.000409315 0)
(0.0419518 -0.000471617 0)
(0.0474274 -0.000110222 0)
(0.0550072 0.000860143 0)
(0.0646311 0.0026639 0)
(0.0761545 0.00548946 0)
(0.0892826 0.00945301 0)
(0.103573 0.0145707 0)
(0.118473 0.0207664 0)
(0.133392 0.0278866 0)
(0.147763 0.0357196 0)
(0.16109 0.0440098 0)
(0.172969 0.052466 0)
(0.183089 0.0607627 0)
(0.191243 0.0685376 0)
(0.197332 0.0753891 0)
(0.201388 0.0808769 0)
(0.203596 0.0845358 0)
(0.20433 0.0859051 0)
(0.204169 0.0845856 0)
(0.203884 0.0803202 0)
(0.204382 0.0730861 0)
(0.206588 0.0631753 0)
(0.211294 0.0512221 0)
(0.219031 0.0381504 0)
(0.230014 0.0250678 0)
(0.244155 0.0131076 0)
(0.261135 0.00328926 0)
(0.280495 -0.00360655 0)
(0.301678 -0.00704143 0)
(0.32406 -0.00674014 0)
(0.347 -0.00264815 0)
(0.369913 0.00512954 0)
(0.392344 0.0163834 0)
(0.41399 0.0308838 0)
(0.434634 0.0484802 0)
(0.454399 0.0689052 0)
(0.47401 0.0916919 0)
(0.493048 0.117674 0)
(0.51071 0.148257 0)
(0.531299 0.179029 0)
(0.558551 0.205343 0)
(0.587024 0.242253 0)
(0.615771 0.309997 0)
(0.656102 0.386074 0)
(0.713583 0.413946 0)
(0.774563 0.37271 0)
(0.811979 0.279608 0)
(0.824565 0.128497 0)
(0.843509 -0.0960806 0)
(0.872748 -0.342659 0)
(0.887014 -0.523192 0)
(0.875626 -0.600856 0)
(0.84689 -0.597641 0)
(0.812875 -0.552911 0)
(0.780444 -0.494695 0)
(0.753785 -0.435913 0)
(0.731132 -0.381604 0)
(0.713463 -0.331089 0)
(0.700753 -0.284159 0)
(0.687227 -0.241853 0)
(0.679366 -0.199404 0)
(0.676814 -0.157716 0)
(0.667078 -0.122593 0)
(0.660352 -0.0858223 0)
(0.670326 -0.0396159 0)
(0.679849 0.00385825 0)
(0.671986 0.0332642 0)
(0.655853 0.0556661 0)
(0.645132 0.081062 0)
(0.63813 0.108479 0)
(0.630434 0.135343 0)
(0.625401 0.167943 0)
(0.630026 0.212568 0)
(0.642906 0.262527 0)
(0.660768 0.302608 0)
(0.674936 0.323142 0)
(0.686722 0.319342 0)
(0.689795 0.284954 0)
(0.690079 0.217859 0)
(0.673415 0.124264 0)
(0.655484 0.0170499 0)
(0.615633 -0.0890723 0)
(0.58814 -0.180039 0)
(0.52597 -0.242074 0)
(0.511555 -0.279379 0)
(0.414686 -0.2568 0)
(0.46053 -0.239706 0)
(0.307444 -0.117353 0)
(0.395981 -0.0873247 0)
(0.202066 0.159621 0)
(0.0169857 0.0114285 0)
(0.0272612 0.00740023 0)
(0.038862 0.00613486 0)
(0.0454464 0.00517496 0)
(0.0503714 0.00409769 0)
(0.0530949 0.00301136 0)
(0.0542586 0.00183706 0)
(0.0542876 0.000778667 0)
(0.0542128 -7.1453e-05 0)
(0.0549057 -0.000656878 0)
(0.0570268 -0.000951333 0)
(0.0608539 -0.000844343 0)
(0.0665689 -0.000137708 0)
(0.0742527 0.00140649 0)
(0.0838919 0.00399369 0)
(0.0953083 0.00776183 0)
(0.108143 0.0127465 0)
(0.121884 0.018884 0)
(0.135928 0.0260238 0)
(0.149665 0.0339487 0)
(0.16254 0.0423928 0)
(0.17409 0.0510523 0)
(0.183958 0.0595881 0)
(0.1919 0.0676237 0)
(0.197794 0.0747413 0)
(0.201655 0.0804818 0)
(0.203669 0.0843572 0)
(0.204218 0.0858807 0)
(0.203896 0.0846268 0)
(0.203504 0.0803163 0)
(0.203974 0.072916 0)
(0.206245 0.0627264 0)
(0.211088 0.05041 0)
(0.218987 0.036929 0)
(0.230097 0.0234297 0)
(0.244289 0.01108 0)
(0.261245 0.000923299 0)
(0.280556 -0.00624786 0)
(0.301735 -0.00988289 0)
(0.32421 -0.00970075 0)
(0.347361 -0.00564817 0)
(0.370589 0.00215912 0)
(0.393404 0.0134942 0)
(0.415458 0.0281113 0)
(0.436521 0.0458282 0)
(0.456771 0.0663191 0)
(0.47682 0.0891634 0)
(0.496075 0.115276 0)
(0.514165 0.145732 0)
(0.535557 0.175885 0)
(0.563202 0.201763 0)
(0.591552 0.238574 0)
(0.620527 0.305379 0)
(0.661822 0.379439 0)
(0.721171 0.406057 0)
(0.783969 0.366185 0)
(0.821824 0.276213 0)
(0.835332 0.126523 0)
(0.857417 -0.0989628 0)
(0.889219 -0.345364 0)
(0.903174 -0.523438 0)
(0.889635 -0.5983 0)
(0.858394 -0.593529 0)
(0.822403 -0.548508 0)
(0.788506 -0.490768 0)
(0.760771 -0.432645 0)
(0.737549 -0.378926 0)
(0.71905 -0.329076 0)
(0.706073 -0.282439 0)
(0.692525 -0.24042 0)
(0.683621 -0.198703 0)
(0.681236 -0.156955 0)
(0.672529 -0.121497 0)
(0.664419 -0.085933 0)
(0.672808 -0.0409023 0)
(0.684085 0.00359225 0)
(0.679133 0.0347027 0)
(0.663893 0.0574061 0)
(0.652681 0.082234 0)
(0.645756 0.109433 0)
(0.638735 0.136159 0)
(0.63419 0.167943 0)
(0.63931 0.211326 0)
(0.653342 0.260388 0)
(0.673039 0.300345 0)
(0.689466 0.321262 0)
(0.703669 0.318125 0)
(0.70922 0.284599 0)
(0.711403 0.218822 0)
(0.696625 0.126618 0)
(0.679246 0.0207827 0)
(0.640432 -0.0844469 0)
(0.611263 -0.174451 0)
(0.55008 -0.236611 0)
(0.53134 -0.272699 0)
(0.436401 -0.252759 0)
(0.478701 -0.233407 0)
(0.316147 -0.111806 0)
(0.433483 -0.084224 0)
(0.232445 0.201695 0)
(0.0337039 0.00730077 0)
(0.0460624 0.00579256 0)
(0.0580429 0.00496218 0)
(0.0650207 0.00438859 0)
(0.0701772 0.00358061 0)
(0.0732089 0.0027315 0)
(0.0746502 0.00174306 0)
(0.0748017 0.000781897 0)
(0.0744789 -7.931e-05 0)
(0.0744308 -0.000772984 0)
(0.0753117 -0.00123869 0)
(0.0774882 -0.00134156 0)
(0.0812537 -0.000870106 0)
(0.0868172 0.000425453 0)
(0.0943022 0.00276746 0)
(0.10367 0.00631775 0)
(0.114679 0.0111356 0)
(0.126893 0.0171762 0)
(0.139734 0.0242979 0)
(0.152569 0.0322824 0)
(0.164787 0.0408553 0)
(0.175862 0.0496995 0)
(0.18538 0.0584616 0)
(0.193051 0.0667492 0)
(0.19872 0.0741269 0)
(0.202387 0.0801155 0)
(0.204231 0.0842027 0)
(0.204642 0.085875 0)
(0.204241 0.0846789 0)
(0.203851 0.0803133 0)
(0.204427 0.0727362 0)
(0.206901 0.06226 0)
(0.212004 0.0495786 0)
(0.220148 0.0356956 0)
(0.231403 0.0217974 0)
(0.245581 0.00907922 0)
(0.262369 -0.00140313 0)
(0.28143 -0.00884498 0)
(0.302385 -0.0126871 0)
(0.324752 -0.0126382 0)
(0.347955 -0.00864096 0)
(0.371385 -0.000817754 0)
(0.394511 0.0105899 0)
(0.416929 0.0253184 0)
(0.438394 0.0431487 0)
(0.459113 0.0637047 0)
(0.479553 0.0866234 0)
(0.499016 0.112862 0)
(0.517566 0.143156 0)
(0.539722 0.172704 0)
(0.567673 0.198206 0)
(0.595856 0.23493 0)
(0.624987 0.300748 0)
(0.66719 0.372712 0)
(0.728383 0.398031 0)
(0.792829 0.359591 0)
(0.830943 0.272754 0)
(0.845405 0.12426 0)
(0.870985 -0.102216 0)
(0.905399 -0.348192 0)
(0.918948 -0.523528 0)
(0.903224 -0.595488 0)
(0.869522 -0.589189 0)
(0.831613 -0.543947 0)
(0.796339 -0.48673 0)
(0.767559 -0.429315 0)
(0.743813 -0.376195 0)
(0.724548 -0.327015 0)
(0.711228 -0.280723 0)
(0.697754 -0.238941 0)
(0.687882 -0.197948 0)
(0.685435 -0.156277 0)
(0.67785 -0.120404 0)
(0.668697 -0.0858543 0)
(0.675276 -0.0421641 0)
(0.687856 0.00304335 0)
(0.685824 0.0358714 0)
(0.671784 0.0590869 0)
(0.660204 0.0834159 0)
(0.653286 0.110329 0)
(0.646887 0.136892 0)
(0.642812 0.167884 0)
(0.64835 0.210001 0)
(0.663407 0.258093 0)
(0.684817 0.297859 0)
(0.70342 0.319115 0)
(0.71995 0.316619 0)
(0.727939 0.283965 0)
(0.731981 0.219533 0)
(0.719166 0.128797 0)
(0.702355 0.0244174 0)
(0.664554 -0.0797901 0)
(0.633794 -0.168884 0)
(0.573732 -0.230963 0)
(0.550512 -0.266051 0)
(0.458946 -0.248503 0)
(0.494259 -0.22657 0)
(0.330339 -0.107418 0)
(0.464718 -0.0806626 0)
(0.238249 0.238913 0)
(0.244352 0.0413875 0)
(-0.00436388 0.00405102 0)
(0.0309724 -0.0023346 0)
(0.0171909 -0.000216999 0)
(0.0286912 -0.000203901 0)
(0.0285684 -0.00021315 0)
(0.0334605 3.11525e-05 0)
(0.036264 -3.8669e-05 0)
(0.0484322 -0.000635774 0)
(0.0763531 -0.0017682 0)
(0.115827 -0.00197924 0)
(0.149554 -0.00116917 0)
(0.172451 -0.00170103 0)
(0.178549 -0.00306525 0)
(0.131644 0.00146008 0)
(0.00341546 0.00883544 0)
(-0.159961 0.0136455 0)
(-0.281621 0.0113511 0)
(-0.328958 0.00558235 0)
(-0.300609 -0.000812604 0)
(-0.21636 -0.00505078 0)
(-0.111063 -0.00572474 0)
(-0.0186514 -0.00416986 0)
(0.0437087 -0.00250956 0)
(0.0771466 -0.00106808 0)
(0.0906334 -0.000301079 0)
(0.093349 2.82023e-06 0)
(0.0915159 0.000117382 0)
(0.0883762 0.00012644 0)
(0.0853436 9.67792e-05 0)
(0.0830328 4.62631e-05 0)
(0.0817004 -2.07333e-05 0)
(0.0813716 -9.62993e-05 0)
(0.081824 -0.000170964 0)
(0.0825896 -0.000240741 0)
(0.0829415 -0.000287507 0)
(0.0818894 -0.000265973 0)
(0.0782091 -0.000162105 0)
(0.0706815 4.00493e-05 0)
(0.0585665 0.000322796 0)
(0.0421111 0.000628857 0)
(0.0224882 0.000911239 0)
(0.00158936 0.00104179 0)
(-0.0183491 0.00109632 0)
(-0.0353528 0.00101247 0)
(-0.047958 0.000820045 0)
(-0.0552213 0.000565744 0)
(-0.0568627 0.000284943 0)
(-0.0533137 4.4413e-06 0)
(-0.0455514 -0.00022542 0)
(-0.0348976 -0.000377931 0)
(-0.0227668 -0.000457293 0)
(-0.010405 -0.000470554 0)
(0.00125384 -0.00044128 0)
(0.0116544 -0.000377838 0)
(0.0206347 -0.000305514 0)
(0.0284089 -0.000240921 0)
(0.0355722 -0.000211147 0)
(0.0430041 -0.000248192 0)
(0.0514629 -0.000353548 0)
(0.0607433 -0.000483169 0)
(0.0688322 -0.000551337 0)
(0.0718851 -0.000485088 0)
(0.065401 -6.89226e-05 0)
(0.0468813 0.000574213 0)
(0.0186695 0.00123137 0)
(-0.0118085 0.00141594 0)
(-0.0343978 0.00119281 0)
(-0.0408409 0.000509242 0)
(-0.030076 -0.00031152 0)
(-0.00868077 -0.000713141 0)
(0.0146048 -0.000789576 0)
(0.0336618 -0.000620849 0)
(0.0463941 -0.00040191 0)
(0.0535977 -0.000231526 0)
(0.0570516 -0.000128048 0)
(0.0582701 -8.1536e-05 0)
(0.0581305 -5.42745e-05 0)
(0.0569505 -2.82849e-05 0)
(0.0547513 4.43245e-06 0)
(0.051537 4.21808e-05 0)
(0.0474756 7.59255e-05 0)
(0.0429104 9.73474e-05 0)
(0.0382376 0.000104 0)
(0.0337464 0.000101551 0)
(0.029571 9.59735e-05 0)
(0.025704 9.16849e-05 0)
(0.0221291 8.72466e-05 0)
(0.0187585 8.39987e-05 0)
(0.0156055 8.1193e-05 0)
(0.01247 8.51498e-05 0)
(0.00938984 0.000102758 0)
(0.00615463 0.000125987 0)
(0.00335777 0.000142681 0)
(0.00198556 0.000115115 0)
(0.00267118 4.62308e-05 0)
(0.00789351 -9.45697e-05 0)
(0.0138998 -0.000142016 0)
(0.0243431 -0.00025961 0)
(0.0354071 -0.000215257 0)
(0.464504 0.0720726 0)
(0.142464 0.033556 0)
(0.0952927 -9.82999e-05 0)
(0.0490229 -2.66861e-06 0)
(0.064911 -0.00194177 0)
(0.0602999 -0.00145758 0)
(0.0710454 -0.00158436 0)
(0.079421 -0.00309786 0)
(0.105492 -0.00763624 0)
(0.155938 -0.0137835 0)
(0.225931 -0.0150247 0)
(0.289498 -0.00972132 0)
(0.319216 -0.00331336 0)
(0.264143 0.0099277 0)
(0.0654059 0.0390438 0)
(-0.220304 0.0569136 0)
(-0.435315 0.0498659 0)
(-0.52735 0.025717 0)
(-0.516516 -0.000183136 0)
(-0.425036 -0.0223907 0)
(-0.277951 -0.0349112 0)
(-0.113351 -0.0346886 0)
(0.0320126 -0.0263778 0)
(0.135433 -0.0161211 0)
(0.195357 -0.00756849 0)
(0.221548 -0.00239095 0)
(0.227421 6.64787e-05 0)
(0.223677 0.000993657 0)
(0.216615 0.00114455 0)
(0.209277 0.000977529 0)
(0.202949 0.000684007 0)
(0.197983 0.00035971 0)
(0.194097 8.9874e-05 0)
(0.190463 -4.06049e-05 0)
(0.185818 3.64651e-05 0)
(0.178544 0.000399231 0)
(0.166798 0.00113765 0)
(0.148784 0.00225718 0)
(0.123399 0.00364962 0)
(0.0909648 0.00504988 0)
(0.0537173 0.00612648 0)
(0.0150491 0.00660221 0)
(-0.0212095 0.00637223 0)
(-0.0514879 0.00557163 0)
(-0.0734456 0.00426503 0)
(-0.0858001 0.00265218 0)
(-0.0882599 0.000953228 0)
(-0.0814802 -0.000663841 0)
(-0.0669549 -0.00201339 0)
(-0.0467012 -0.00299269 0)
(-0.0230204 -0.00354124 0)
(0.00186626 -0.00369652 0)
(0.0261618 -0.00356347 0)
(0.0485684 -0.00323484 0)
(0.0684957 -0.00281649 0)
(0.0859826 -0.0024247 0)
(0.101651 -0.00215038 0)
(0.116541 -0.00207614 0)
(0.131654 -0.00221598 0)
(0.14698 -0.00239638 0)
(0.160129 -0.0022388 0)
(0.165506 -0.00128708 0)
(0.155603 0.000864291 0)
(0.124905 0.00395786 0)
(0.0754068 0.00685185 0)
(0.0189513 0.008117 0)
(-0.0276159 0.00671499 0)
(-0.0499206 0.0033477 0)
(-0.0417079 -0.00113068 0)
(-0.00775439 -0.00464188 0)
(0.0387955 -0.00597809 0)
(0.083841 -0.00550003 0)
(0.118539 -0.00397069 0)
(0.140389 -0.00238305 0)
(0.151439 -0.0011983 0)
(0.155157 -0.000462415 0)
(0.154358 -3.28116e-05 0)
(0.150636 0.00025505 0)
(0.144619 0.000507411 0)
(0.136518 0.000756859 0)
(0.126609 0.00097985 0)
(0.115463 0.00113139 0)
(0.103866 0.00118564 0)
(0.0925695 0.00115234 0)
(0.0820461 0.00107197 0)
(0.07248 0.000980409 0)
(0.0637983 0.000898869 0)
(0.0559532 0.000828015 0)
(0.0487084 0.000770556 0)
(0.0421577 0.000728967 0)
(0.0359017 0.000703096 0)
(0.0304877 0.00069637 0)
(0.025699 0.000622042 0)
(0.0234464 0.000415374 0)
(0.0250638 -5.66469e-05 0)
(0.0312341 -0.000700027 0)
(0.0460534 -0.00141609 0)
(0.0592408 -0.00174531 0)
(0.0827598 -0.00228036 0)
(0.102144 -0.00131468 0)
(0.589875 0.11538 0)
(0.327717 0.0727378 0)
(0.200968 0.0221608 0)
(0.105763 0.00581365 0)
(0.099293 -0.00191933 0)
(0.082899 -0.00236934 0)
(0.0910641 -0.00374881 0)
(0.0968072 -0.00707487 0)
(0.120967 -0.0161855 0)
(0.169293 -0.0287369 0)
(0.243338 -0.0323474 0)
(0.315994 -0.0200939 0)
(0.331582 0.00392283 0)
(0.204523 0.0469152 0)
(-0.0858611 0.0976362 0)
(-0.376666 0.107244 0)
(-0.526518 0.0750134 0)
(-0.561101 0.0284717 0)
(-0.517639 -0.0145126 0)
(-0.407659 -0.0502722 0)
(-0.249595 -0.0703612 0)
(-0.0752943 -0.0692668 0)
(0.0816795 -0.0544986 0)
(0.200059 -0.0345314 0)
(0.274808 -0.0173221 0)
(0.311531 -0.00605351 0)
(0.322266 -0.000148923 0)
(0.318798 0.00230974 0)
(0.309251 0.00292489 0)
(0.298089 0.00272628 0)
(0.287363 0.00221988 0)
(0.277651 0.00168739 0)
(0.268539 0.00134787 0)
(0.258876 0.001392 0)
(0.247042 0.00196186 0)
(0.231166 0.00316411 0)
(0.209418 0.00504177 0)
(0.180418 0.00749693 0)
(0.14399 0.0101642 0)
(0.101743 0.0124507 0)
(0.0571779 0.0137631 0)
(0.0144963 0.013626 0)
(-0.0223493 0.0122897 0)
(-0.0502224 0.00988329 0)
(-0.0674905 0.00675348 0)
(-0.0736023 0.00328573 0)
(-0.0689316 -0.000179416 0)
(-0.0546497 -0.00328068 0)
(-0.0326282 -0.00574034 0)
(-0.00519069 -0.00738641 0)
(0.0251537 -0.00824724 0)
(0.0560169 -0.00835296 0)
(0.0855407 -0.00791854 0)
(0.112427 -0.00713819 0)
(0.136134 -0.0062451 0)
(0.156812 -0.00544821 0)
(0.175219 -0.00490488 0)
(0.19242 -0.00470387 0)
(0.209083 -0.00474014 0)
(0.224202 -0.00453356 0)
(0.233626 -0.00326511 0)
(0.229861 -4.19203e-05 0)
(0.204965 0.0054289 0)
(0.156381 0.0116491 0)
(0.0924392 0.016028 0)
(0.0306035 0.0161279 0)
(-0.011548 0.0112806 0)
(-0.0232235 0.00337621 0)
(-0.002166 -0.00545275 0)
(0.0448961 -0.0116215 0)
(0.103838 -0.0137013 0)
(0.159422 -0.0120389 0)
(0.201501 -0.00842024 0)
(0.226935 -0.00481699 0)
(0.238192 -0.00213802 0)
(0.239696 -0.000463475 0)
(0.23515 0.000584616 0)
(0.226729 0.00128309 0)
(0.215406 0.0018684 0)
(0.201656 0.00240102 0)
(0.186033 0.00282757 0)
(0.169396 0.00306563 0)
(0.152775 0.0030826 0)
(0.137063 0.00291865 0)
(0.122761 0.00266626 0)
(0.110025 0.00240164 0)
(0.0986944 0.00216573 0)
(0.0887055 0.00196109 0)
(0.0797327 0.00178345 0)
(0.0720245 0.00163245 0)
(0.0651127 0.00147503 0)
(0.0600292 0.0013081 0)
(0.0564134 0.000939593 0)
(0.0567936 0.000298945 0)
(0.0621209 -0.000867176 0)
(0.0724343 -0.0022583 0)
(0.0931162 -0.00360674 0)
(0.108709 -0.00417614 0)
(0.138537 -0.00513985 0)
(0.158986 -0.00267656 0)
(0.658416 0.143192 0)
(0.493965 0.110379 0)
(0.343106 0.0568627 0)
(0.204731 0.0230817 0)
(0.15278 0.00442888 0)
(0.112802 -0.000458068 0)
(0.10769 -0.004313 0)
(0.103068 -0.00956007 0)
(0.116336 -0.0231909 0)
(0.151813 -0.0425447 0)
(0.215584 -0.0495058 0)
(0.280789 -0.0279466 0)
(0.272755 0.0214101 0)
(0.09779 0.0963709 0)
(-0.203449 0.157531 0)
(-0.428758 0.148761 0)
(-0.513061 0.0908758 0)
(-0.521968 0.0265228 0)
(-0.469738 -0.0312629 0)
(-0.359239 -0.0798252 0)
(-0.203357 -0.10753 0)
(-0.0299383 -0.105711 0)
(0.126199 -0.0845136 0)
(0.246358 -0.0555806 0)
(0.327241 -0.0296833 0)
(0.371808 -0.0115136 0)
(0.388308 -0.00112299 0)
(0.386981 0.00370372 0)
(0.376426 0.00530304 0)
(0.362249 0.00533434 0)
(0.347445 0.00473498 0)
(0.333121 0.00406961 0)
(0.31903 0.00375358 0)
(0.303989 0.00410102 0)
(0.286345 0.00530309 0)
(0.264334 0.00745829 0)
(0.236483 0.0105284 0)
(0.202008 0.0142388 0)
(0.161488 0.0179425 0)
(0.117197 0.0207383 0)
(0.0728971 0.0218227 0)
(0.0326019 0.0206952 0)
(-0.000352406 0.0177942 0)
(-0.0234827 0.0135277 0)
(-0.03565 0.00836434 0)
(-0.0366207 0.00290104 0)
(-0.0269027 -0.00237015 0)
(-0.00771226 -0.00693417 0)
(0.0190437 -0.0104974 0)
(0.0509023 -0.01279 0)
(0.0852547 -0.0138894 0)
(0.119571 -0.0138455 0)
(0.15185 -0.0129674 0)
(0.180704 -0.0115941 0)
(0.205506 -0.0100853 0)
(0.226344 -0.00875474 0)
(0.243963 -0.00782619 0)
(0.259506 -0.00736994 0)
(0.273676 -0.00710186 0)
(0.285119 -0.00614191 0)
(0.288765 -0.00315926 0)
(0.276386 0.00304894 0)
(0.241124 0.0120305 0)
(0.184227 0.0209979 0)
(0.118283 0.0258914 0)
(0.0612192 0.0238162 0)
(0.0268593 0.0148683 0)
(0.0223321 0.00214602 0)
(0.0488822 -0.011121 0)
(0.100989 -0.020267 0)
(0.165809 -0.0231117 0)
(0.228109 -0.0199545 0)
(0.275975 -0.0137311 0)
(0.304434 -0.00754037 0)
(0.315491 -0.00289999 0)
(0.314302 4.72539e-05 0)
(0.305606 0.0018598 0)
(0.292383 0.00305167 0)
(0.276098 0.00400592 0)
(0.257512 0.00481985 0)
(0.23739 0.00541369 0)
(0.216765 0.00567196 0)
(0.196771 0.00556517 0)
(0.178333 0.00517711 0)
(0.161901 0.00466286 0)
(0.147572 0.00414536 0)
(0.135096 0.00368301 0)
(0.124409 0.00327802 0)
(0.115127 0.00290837 0)
(0.107634 0.00257025 0)
(0.101377 0.00218667 0)
(0.0976178 0.00176069 0)
(0.0957516 0.000996443 0)
(0.0983288 -0.000189038 0)
(0.106155 -0.0020747 0)
(0.118242 -0.00427709 0)
(0.141666 -0.00618921 0)
(0.156998 -0.00695394 0)
(0.1888 -0.00828221 0)
(0.207164 -0.00404495 0)
(0.685785 0.153598 0)
(0.61669 0.137219 0)
(0.491026 0.0941379 0)
(0.340056 0.0519607 0)
(0.24187 0.0211994 0)
(0.16644 0.00745685 0)
(0.136208 -0.00089208 0)
(0.115411 -0.00879871 0)
(0.113627 -0.026862 0)
(0.132212 -0.0527063 0)
(0.177477 -0.062989 0)
(0.223578 -0.0304861 0)
(0.192327 0.046626 0)
(0.0012198 0.148682 0)
(-0.260253 0.209789 0)
(-0.409822 0.178455 0)
(-0.458615 0.10005 0)
(-0.456413 0.0222825 0)
(-0.402759 -0.0486041 0)
(-0.296451 -0.109347 0)
(-0.147816 -0.144831 0)
(0.0210416 -0.142528 0)
(0.175545 -0.114321 0)
(0.29146 -0.0767176 0)
(0.369096 -0.0429833 0)
(0.415101 -0.0182751 0)
(0.435458 -0.00301854 0)
(0.436983 0.00485659 0)
(0.426851 0.00802049 0)
(0.41095 0.00863966 0)
(0.393126 0.00812067 0)
(0.375216 0.00739289 0)
(0.357381 0.00713351 0)
(0.338605 0.00780697 0)
(0.317359 0.00964632 0)
(0.292087 0.0127112 0)
(0.261652 0.0168559 0)
(0.225647 0.0216193 0)
(0.184935 0.0260907 0)
(0.141809 0.0290924 0)
(0.0996988 0.0296674 0)
(0.0621306 0.0274007 0)
(0.0320103 0.022786 0)
(0.0115577 0.0165782 0)
(0.00192913 0.00932947 0)
(0.00351074 0.00181302 0)
(0.0160025 -0.00525846 0)
(0.0383285 -0.0113473 0)
(0.0686502 -0.0160498 0)
(0.104428 -0.0190338 0)
(0.142826 -0.0203002 0)
(0.180985 -0.0199829 0)
(0.216503 -0.0185015 0)
(0.247648 -0.0163391 0)
(0.273493 -0.0139908 0)
(0.293839 -0.0118936 0)
(0.309211 -0.0103696 0)
(0.320872 -0.00950138 0)
(0.330138 -0.00880635 0)
(0.336332 -0.00691962 0)
(0.334461 -0.0019596 0)
(0.31618 0.00739187 0)
(0.275958 0.0197257 0)
(0.217934 0.0308032 0)
(0.156007 0.0353845 0)
(0.105438 0.0306862 0)
(0.0762947 0.0178011 0)
(0.0742762 0.000384454 0)
(0.101412 -0.0173466 0)
(0.153672 -0.0297471 0)
(0.219984 -0.033581 0)
(0.286483 -0.0290237 0)
(0.34016 -0.0199269 0)
(0.373155 -0.0106232 0)
(0.385514 -0.0035077 0)
(0.382469 0.00109159 0)
(0.369971 0.00382609 0)
(0.352237 0.00556012 0)
(0.331499 0.00686584 0)
(0.308877 0.00790853 0)
(0.285291 0.00859472 0)
(0.261844 0.00878344 0)
(0.239676 0.00845675 0)
(0.219669 0.007752 0)
(0.20218 0.00689311 0)
(0.187228 0.00605209 0)
(0.174473 0.00530009 0)
(0.163851 0.00463649 0)
(0.154911 0.00401492 0)
(0.148097 0.00343089 0)
(0.142745 0.0027637 0)
(0.140116 0.00203095 0)
(0.139479 0.000846527 0)
(0.143067 -0.000910933 0)
(0.152122 -0.00347624 0)
(0.164381 -0.00648834 0)
(0.188841 -0.00889807 0)
(0.203105 -0.00977347 0)
(0.234789 -0.0113636 0)
(0.25019 -0.00527731 0)
(0.685498 0.151151 0)
(0.689219 0.14944 0)
(0.616097 0.124781 0)
(0.487551 0.0862138 0)
(0.366511 0.0486089 0)
(0.255606 0.0243809 0)
(0.190385 0.00875609 0)
(0.147007 -0.00336527 0)
(0.126668 -0.0261961 0)
(0.125371 -0.0580309 0)
(0.148267 -0.0712364 0)
(0.171269 -0.0282309 0)
(0.12153 0.0750206 0)
(-0.0598781 0.19693 0)
(-0.26217 0.250279 0)
(-0.350954 0.198113 0)
(-0.382755 0.105412 0)
(-0.371927 0.0164134 0)
(-0.318413 -0.0658819 0)
(-0.218061 -0.138055 0)
(-0.0794871 -0.181351 0)
(0.0770141 -0.179671 0)
(0.228182 -0.144579 0)
(0.342572 -0.097128 0)
(0.41319 -0.0555048 0)
(0.453242 -0.0251341 0)
(0.472583 -0.00548485 0)
(0.47575 0.00562978 0)
(0.466868 0.0108078 0)
(0.450649 0.0123944 0)
(0.431192 0.0121608 0)
(0.411008 0.0114343 0)
(0.390797 0.0112201 0)
(0.369843 0.0121755 0)
(0.346794 0.014584 0)
(0.320259 0.0184562 0)
(0.289255 0.0235362 0)
(0.253426 0.0291904 0)
(0.21348 0.0342744 0)
(0.171358 0.037375 0)
(0.130051 0.0374043 0)
(0.0928418 0.0339863 0)
(0.0626859 0.0277195 0)
(0.0419935 0.0194907 0)
(0.0322256 0.0101007 0)
(0.0340967 0.000463031 0)
(0.0475887 -0.0086194 0)
(0.0718095 -0.0164598 0)
(0.105033 -0.02249 0)
(0.144734 -0.0262684 0)
(0.187908 -0.0277386 0)
(0.231354 -0.027089 0)
(0.272107 -0.0248465 0)
(0.307796 -0.0216503 0)
(0.336927 -0.0181406 0)
(0.358756 -0.0148881 0)
(0.373166 -0.0123654 0)
(0.381052 -0.01078 0)
(0.384397 -0.00954576 0)
(0.384267 -0.00676952 0)
(0.377224 0.000130384 0)
(0.355512 0.0124307 0)
(0.314466 0.027749 0)
(0.25946 0.0403364 0)
(0.203412 0.0441938 0)
(0.158288 0.0369758 0)
(0.132153 0.0205036 0)
(0.130789 -0.00149137 0)
(0.156842 -0.0235977 0)
(0.206811 -0.0393756 0)
(0.270822 -0.0445447 0)
(0.337386 -0.0390319 0)
(0.394878 -0.0271901 0)
(0.433368 -0.0144159 0)
(0.449352 -0.00423064 0)
(0.446394 0.00250305 0)
(0.431147 0.00644284 0)
(0.409417 0.00878758 0)
(0.38466 0.0104031 0)
(0.358578 0.0115895 0)
(0.332247 0.0122694 0)
(0.306761 0.0122873 0)
(0.283179 0.0116437 0)
(0.262284 0.0105366 0)
(0.244305 0.0092615 0)
(0.229178 0.00803933 0)
(0.216468 0.00694896 0)
(0.206098 0.00598494 0)
(0.197541 0.00507442 0)
(0.191232 0.00421386 0)
(0.186423 0.00324543 0)
(0.18424 0.00219572 0)
(0.184061 0.000604599 0)
(0.187631 -0.00171273 0)
(0.197127 -0.00494424 0)
(0.20894 -0.00876533 0)
(0.233884 -0.0116591 0)
(0.247394 -0.0125484 0)
(0.2784 -0.0142889 0)
(0.291165 -0.00635769 0)
(0.673063 0.141804 0)
(0.717651 0.147945 0)
(0.700427 0.142687 0)
(0.619061 0.117223 0)
(0.50831 0.0818388 0)
(0.379793 0.0508596 0)
(0.279481 0.0267418 0)
(0.207611 0.00811702 0)
(0.162919 -0.0201395 0)
(0.137956 -0.0577 0)
(0.135669 -0.0737998 0)
(0.135858 -0.021942 0)
(0.0765057 0.103059 0)
(-0.0795964 0.236745 0)
(-0.221102 0.278787 0)
(-0.270496 0.210643 0)
(-0.28877 0.108025 0)
(-0.270289 0.00926577 0)
(-0.218205 -0.0827662 0)
(-0.125579 -0.165152 0)
(0.00301757 -0.21506 0)
(0.143128 -0.215291 0)
(0.280691 -0.175316 0)
(0.395075 -0.117655 0)
(0.463046 -0.0666582 0)
(0.494353 -0.030705 0)
(0.50704 -0.00761283 0)
(0.508566 0.00621743 0)
(0.50054 0.0134819 0)
(0.48505 0.0163244 0)
(0.465313 0.0165991 0)
(0.444097 0.015961 0)
(0.422621 0.0157805 0)
(0.400557 0.0169575 0)
(0.376759 0.0198535 0)
(0.349908 0.0244426 0)
(0.318963 0.0303783 0)
(0.28333 0.0368851 0)
(0.243305 0.0426127 0)
(0.20041 0.0459108 0)
(0.157455 0.0455078 0)
(0.117937 0.041006 0)
(0.0852851 0.0330848 0)
(0.0623328 0.0227558 0)
(0.0508601 0.0110274 0)
(0.051751 -0.000927163 0)
(0.0651222 -0.0123064 0)
(0.0901841 -0.0221683 0)
(0.125332 -0.0297909 0)
(0.168174 -0.0346097 0)
(0.215763 -0.0364814 0)
(0.264851 -0.0355979 0)
(0.312163 -0.0325542 0)
(0.354672 -0.0281438 0)
(0.390103 -0.0231688 0)
(0.417044 -0.0183128 0)
(0.434417 -0.0141917 0)
(0.441722 -0.0112766 0)
(0.440447 -0.00915733 0)
(0.433587 -0.00556249 0)
(0.421086 0.0029601 0)
(0.397294 0.0177556 0)
(0.358 0.035573 0)
(0.308026 0.0492526 0)
(0.258057 0.0523313 0)
(0.217543 0.0428675 0)
(0.193998 0.0230866 0)
(0.193401 -0.00322185 0)
(0.218312 -0.0296558 0)
(0.265234 -0.0487095 0)
(0.324771 -0.0553064 0)
(0.387093 -0.0493071 0)
(0.443774 -0.0352843 0)
(0.485986 -0.0191595 0)
(0.507052 -0.0054525 0)
(0.506724 0.00401307 0)
(0.490607 0.00958561 0)
(0.465786 0.0126978 0)
(0.437411 0.0145953 0)
(0.40819 0.0158228 0)
(0.379502 0.0163801 0)
(0.352397 0.0161197 0)
(0.327781 0.0150667 0)
(0.306286 0.0134825 0)
(0.287991 0.0117338 0)
(0.272742 0.0100884 0)
(0.260013 0.00862796 0)
(0.249703 0.00733995 0)
(0.241222 0.00612569 0)
(0.234949 0.00498028 0)
(0.230126 0.00371793 0)
(0.227672 0.00235511 0)
(0.227279 0.000376203 0)
(0.230147 -0.002514 0)
(0.239661 -0.00643331 0)
(0.251001 -0.011094 0)
(0.276526 -0.0145149 0)
(0.290158 -0.0153285 0)
(0.320827 -0.017101 0)
(0.331983 -0.00733163 0)
(0.662219 0.131024 0)
(0.717501 0.137327 0)
(0.740205 0.146166 0)
(0.713052 0.137703 0)
(0.640123 0.11311 0)
(0.522895 0.0831713 0)
(0.402804 0.0534896 0)
(0.302567 0.0273462 0)
(0.229849 -0.00663704 0)
(0.175287 -0.0505145 0)
(0.144528 -0.0704925 0)
(0.124645 -0.0122498 0)
(0.063559 0.128157 0)
(-0.061096 0.266502 0)
(-0.148572 0.297157 0)
(-0.174827 0.218313 0)
(-0.178652 0.107913 0)
(-0.154233 0.000721463 0)
(-0.10473 -0.0989818 0)
(-0.0214783 -0.190474 0)
(0.0945621 -0.246262 0)
(0.22113 -0.247913 0)
(0.33752 -0.204498 0)
(0.443828 -0.138799 0)
(0.514025 -0.0773583 0)
(0.540636 -0.0344392 0)
(0.543973 -0.0083225 0)
(0.539624 0.00722004 0)
(0.530486 0.0160819 0)
(0.515902 0.0202135 0)
(0.496913 0.0211888 0)
(0.475702 0.0207697 0)
(0.453767 0.0206513 0)
(0.431193 0.0220142 0)
(0.407065 0.0253442 0)
(0.380066 0.0306169 0)
(0.348921 0.0374313 0)
(0.312624 0.0449008 0)
(0.270995 0.0514652 0)
(0.225329 0.0551754 0)
(0.178685 0.0544823 0)
(0.135225 0.0489063 0)
(0.0990668 0.0392014 0)
(0.0733848 0.0265957 0)
(0.0600533 0.0123211 0)
(0.0598848 -0.00225052 0)
(0.0728081 -0.0161459 0)
(0.0980315 -0.028262 0)
(0.134019 -0.0377241 0)
(0.178551 -0.0438469 0)
(0.228878 -0.0464004 0)
(0.28199 -0.0455561 0)
(0.334851 -0.0419083 0)
(0.384321 -0.0363268 0)
(0.427456 -0.0297768 0)
(0.462231 -0.0230519 0)
(0.486983 -0.0167871 0)
(0.49935 -0.0116833 0)
(0.498162 -0.00786103 0)
(0.486422 -0.00320338 0)
(0.468292 0.00650326 0)
(0.442662 0.0231487 0)
(0.406322 0.042892 0)
(0.362233 0.0574053 0)
(0.318301 0.0597994 0)
(0.282411 0.0483614 0)
(0.262012 0.0254271 0)
(0.262734 -0.00496274 0)
(0.286562 -0.0355145 0)
(0.33005 -0.0576206 0)
(0.384491 -0.0654535 0)
(0.440586 -0.0590841 0)
(0.491997 -0.0434917 0)
(0.53357 -0.0246573 0)
(0.558701 -0.00747774 0)
(0.562968 0.0052176 0)
(0.548501 0.0130003 0)
(0.522163 0.0172017 0)
(0.490776 0.0194307 0)
(0.458591 0.0206057 0)
(0.427644 0.0209136 0)
(0.399022 0.0202622 0)
(0.373441 0.018712 0)
(0.351338 0.0165871 0)
(0.332628 0.0143211 0)
(0.317063 0.0122245 0)
(0.304043 0.0103768 0)
(0.293434 0.00875469 0)
(0.284617 0.00723605 0)
(0.277894 0.00580869 0)
(0.272563 0.00426915 0)
(0.269292 0.00259878 0)
(0.2682 0.00024586 0)
(0.269932 -0.00325804 0)
(0.27914 -0.00793501 0)
(0.29007 -0.0135113 0)
(0.316402 -0.0175627 0)
(0.331163 -0.0182381 0)
(0.362302 -0.0199261 0)
(0.373395 -0.00828325 0)
(0.660895 0.122391 0)
(0.708195 0.124011 0)
(0.745805 0.138349 0)
(0.761346 0.144334 0)
(0.737835 0.134879 0)
(0.658582 0.114145 0)
(0.545781 0.085652 0)
(0.429779 0.054954 0)
(0.330885 0.0156963 0)
(0.243092 -0.0345301 0)
(0.178028 -0.0606191 0)
(0.140062 -0.000142183 0)
(0.0816194 0.148899 0)
(-0.010411 0.287261 0)
(-0.0542772 0.307553 0)
(-0.0653739 0.221847 0)
(-0.0554912 0.105089 0)
(-0.0274943 -0.00871739 0)
(0.0187549 -0.113727 0)
(0.0934838 -0.212828 0)
(0.192809 -0.275383 0)
(0.304617 -0.27747 0)
(0.402015 -0.230134 0)
(0.489942 -0.159342 0)
(0.560111 -0.0887052 0)
(0.588767 -0.0370616 0)
(0.585291 -0.00700181 0)
(0.572205 0.00949188 0)
(0.558821 0.0189752 0)
(0.544059 0.0240097 0)
(0.526194 0.0257372 0)
(0.50575 0.0256906 0)
(0.483941 0.0257254 0)
(0.461156 0.0272935 0)
(0.436737 0.0310582 0)
(0.409334 0.0370566 0)
(0.377349 0.0448794 0)
(0.339304 0.053542 0)
(0.294663 0.0612261 0)
(0.244831 0.065569 0)
(0.193574 0.0646404 0)
(0.146001 0.0578498 0)
(0.106839 0.0461037 0)
(0.0793033 0.0309319 0)
(0.064988 0.0138969 0)
(0.0643391 -0.00350603 0)
(0.0770696 -0.0200658 0)
(0.102263 -0.0345752 0)
(0.138371 -0.0460258 0)
(0.18331 -0.0536217 0)
(0.234537 -0.0570572 0)
(0.289266 -0.0565122 0)
(0.344894 -0.0525873 0)
(0.398896 -0.0461325 0)
(0.448334 -0.0381879 0)
(0.490655 -0.0296892 0)
(0.524344 -0.02118 0)
(0.546557 -0.0132485 0)
(0.552503 -0.00657027 0)
(0.541411 6.39035e-05 0)
(0.519437 0.0108254 0)
(0.491876 0.02857 0)
(0.458643 0.0495678 0)
(0.420703 0.0646973 0)
(0.382991 0.0665243 0)
(0.352252 0.0533056 0)
(0.335654 0.0274255 0)
(0.338029 -0.00674982 0)
(0.360661 -0.0411185 0)
(0.400129 -0.0660334 0)
(0.448868 -0.0749007 0)
(0.498562 -0.0679992 0)
(0.542999 -0.0510777 0)
(0.579702 -0.0302873 0)
(0.60548 -0.0102533 0)
(0.614414 0.00575868 0)
(0.603975 0.0163077 0)
(0.578412 0.0221027 0)
(0.545164 0.0248678 0)
(0.510281 0.0259587 0)
(0.476996 0.0258972 0)
(0.446706 0.0247384 0)
(0.419986 0.022605 0)
(0.39706 0.0198827 0)
(0.377671 0.017065 0)
(0.361478 0.0144978 0)
(0.347827 0.0122532 0)
(0.33656 0.010292 0)
(0.327063 0.0084723 0)
(0.319548 0.00676641 0)
(0.313419 0.00496606 0)
(0.309066 0.00299194 0)
(0.307031 0.000275456 0)
(0.307414 -0.00389537 0)
(0.315982 -0.00942939 0)
(0.326339 -0.0160381 0)
(0.353321 -0.0208934 0)
(0.36987 -0.0214275 0)
(0.402275 -0.0229551 0)
(0.415292 -0.00933896 0)
(0.66958 0.116599 0)
(0.704643 0.113212 0)
(0.736673 0.125553 0)
(0.771569 0.138912 0)
(0.789847 0.143006 0)
(0.761273 0.136139 0)
(0.682763 0.116396 0)
(0.574616 0.087446 0)
(0.462731 0.0469406 0)
(0.345652 -0.00808212 0)
(0.240009 -0.0427768 0)
(0.179753 0.0138752 0)
(0.126701 0.164669 0)
(0.0668462 0.299431 0)
(0.0546172 0.311832 0)
(0.0565354 0.222014 0)
(0.0769587 0.0999307 0)
(0.105324 -0.0182435 0)
(0.146599 -0.126964 0)
(0.214963 -0.23216 0)
(0.298878 -0.301373 0)
(0.389966 -0.303737 0)
(0.471058 -0.251544 0)
(0.536721 -0.177314 0)
(0.598876 -0.100723 0)
(0.63311 -0.0399572 0)
(0.629265 -0.0039909 0)
(0.608115 0.0137102 0)
(0.587584 0.022812 0)
(0.570372 0.0279224 0)
(0.553052 0.0301706 0)
(0.533698 0.0305954 0)
(0.512435 0.0309265 0)
(0.489619 0.0327887 0)
(0.4648 0.0370555 0)
(0.436612 0.0438955 0)
(0.403128 0.0529384 0)
(0.362462 0.0630899 0)
(0.313944 0.07218 0)
(0.259472 0.0772926 0)
(0.203844 0.0760276 0)
(0.153135 0.0677389 0)
(0.112365 0.0536029 0)
(0.0843998 0.0355902 0)
(0.0702403 0.0155566 0)
(0.0698698 -0.00479296 0)
(0.0828065 -0.0240988 0)
(0.108026 -0.0410611 0)
(0.143924 -0.054557 0)
(0.188496 -0.0636976 0)
(0.239407 -0.0681013 0)
(0.294039 -0.0679679 0)
(0.349928 -0.0639826 0)
(0.405228 -0.056991 0)
(0.457844 -0.0479769 0)
(0.505015 -0.0380276 0)
(0.545295 -0.0277052 0)
(0.577509 -0.0170791 0)
(0.595809 -0.0067558 0)
(0.593311 0.00318316 0)
(0.572802 0.0156314 0)
(0.544499 0.0340319 0)
(0.514064 0.055574 0)
(0.482171 0.0710325 0)
(0.451019 0.0723757 0)
(0.426051 0.0575449 0)
(0.413676 0.0289892 0)
(0.417763 -0.0085965 0)
(0.439057 -0.0463754 0)
(0.474108 -0.0737633 0)
(0.516205 -0.083523 0)
(0.559011 -0.0760033 0)
(0.59674 -0.0577046 0)
(0.626856 -0.0353925 0)
(0.649511 -0.0133473 0)
(0.661024 0.00551988 0)
(0.655768 0.0190991 0)
(0.633548 0.027068 0)
(0.600346 0.0307772 0)
(0.563472 0.0318897 0)
(0.527807 0.0313862 0)
(0.495547 0.0296087 0)
(0.467336 0.0268037 0)
(0.44323 0.0234275 0)
(0.422808 0.0200253 0)
(0.405641 0.0169686 0)
(0.39105 0.0143157 0)
(0.378855 0.0120054 0)
(0.368486 0.00988138 0)
(0.360062 0.00789203 0)
(0.353112 0.005837 0)
(0.347748 0.00356206 0)
(0.344855 0.000481271 0)
(0.34399 -0.00438593 0)
(0.351717 -0.0108668 0)
(0.361156 -0.0186257 0)
(0.388018 -0.0245136 0)
(0.406166 -0.0249922 0)
(0.439928 -0.0264042 0)
(0.456992 -0.0106649 0)
(0.684007 0.112207 0)
(0.711702 0.106831 0)
(0.731087 0.113947 0)
(0.76307 0.127228 0)
(0.801622 0.13859 0)
(0.817252 0.144551 0)
(0.787311 0.138203 0)
(0.711748 0.117975 0)
(0.609687 0.083144 0)
(0.480076 0.0294972 0)
(0.335442 -0.0143599 0)
(0.24323 0.0299657 0)
(0.194302 0.175153 0)
(0.163941 0.303991 0)
(0.173266 0.311437 0)
(0.187785 0.219976 0)
(0.215082 0.0937914 0)
(0.240731 -0.0266876 0)
(0.275833 -0.138906 0)
(0.338294 -0.249727 0)
(0.409652 -0.323605 0)
(0.477002 -0.325791 0)
(0.539956 -0.268532 0)
(0.58497 -0.191207 0)
(0.631355 -0.112312 0)
(0.669196 -0.0441834 0)
(0.671612 -0.000508924 0)
(0.646957 0.0199185 0)
(0.61841 0.0282788 0)
(0.596074 0.0324365 0)
(0.577699 0.0346087 0)
(0.559124 0.0354294 0)
(0.538605 0.0361971 0)
(0.515901 0.0385038 0)
(0.490595 0.043407 0)
(0.461312 0.0512644 0)
(0.425875 0.0617863 0)
(0.38213 0.0737313 0)
(0.329537 0.0844566 0)
(0.270791 0.0903453 0)
(0.211859 0.0884942 0)
(0.159574 0.0782991 0)
(0.118841 0.0614196 0)
(0.0918079 0.0402911 0)
(0.0787236 0.017161 0)
(0.0792133 -0.00621126 0)
(0.0926442 -0.0282981 0)
(0.117942 -0.0477146 0)
(0.153484 -0.0632448 0)
(0.197274 -0.0739317 0)
(0.247125 -0.0793326 0)
(0.300704 -0.0796354 0)
(0.355565 -0.0756389 0)
(0.40994 -0.0683101 0)
(0.462771 -0.0585271 0)
(0.511885 -0.047381 0)
(0.555123 -0.035738 0)
(0.592985 -0.0232797 0)
(0.62298 -0.0096008 0)
(0.635032 0.0045714 0)
(0.623932 0.0200209 0)
(0.598894 0.039347 0)
(0.571584 0.06092 0)
(0.545442 0.0763384 0)
(0.521126 0.0771871 0)
(0.502419 0.0609516 0)
(0.494455 0.0300815 0)
(0.500162 -0.0104821 0)
(0.519896 -0.0512265 0)
(0.550298 -0.0806532 0)
(0.585187 -0.0910726 0)
(0.620012 -0.0829893 0)
(0.651041 -0.0633457 0)
(0.675001 -0.039631 0)
(0.692567 -0.0162199 0)
(0.703635 0.00469388 0)
(0.702916 0.0210907 0)
(0.68604 0.0316715 0)
(0.655391 0.0368911 0)
(0.617983 0.0383357 0)
(0.58026 0.037432 0)
(0.545759 0.0349578 0)
(0.515613 0.0313933 0)
(0.489879 0.0273 0)
(0.468023 0.0232729 0)
(0.44954 0.0196983 0)
(0.433751 0.016614 0)
(0.420472 0.0139297 0)
(0.409199 0.0114806 0)
(0.399972 0.00918586 0)
(0.392443 0.00686375 0)
(0.386459 0.00427496 0)
(0.383137 0.000842067 0)
(0.381507 -0.00472905 0)
(0.38853 -0.0121996 0)
(0.396887 -0.0211586 0)
(0.422523 -0.0282944 0)
(0.441178 -0.0288693 0)
(0.475015 -0.0304118 0)
(0.497622 -0.0124328 0)
(0.699555 0.107426 0)
(0.725576 0.103506 0)
(0.737148 0.106489 0)
(0.756185 0.115742 0)
(0.792429 0.127259 0)
(0.830911 0.140135 0)
(0.844679 0.146477 0)
(0.814867 0.13921 0)
(0.745959 0.116664 0)
(0.630668 0.0736949 0)
(0.464889 0.0257675 0)
(0.331888 0.0506424 0)
(0.279457 0.181016 0)
(0.273724 0.302078 0)
(0.298694 0.307304 0)
(0.324524 0.21622 0)
(0.356481 0.0871648 0)
(0.377379 -0.0341109 0)
(0.405664 -0.149102 0)
(0.462135 -0.265389 0)
(0.521285 -0.341822 0)
(0.564493 -0.342664 0)
(0.605556 -0.280798 0)
(0.632684 -0.200326 0)
(0.659642 -0.121921 0)
(0.695311 -0.0499098 0)
(0.707562 0.00190594 0)
(0.686132 0.0273373 0)
(0.651797 0.0357268 0)
(0.622561 0.0381777 0)
(0.600909 0.0393968 0)
(0.582058 0.0402625 0)
(0.562129 0.0415123 0)
(0.539631 0.0444361 0)
(0.513838 0.0501627 0)
(0.483333 0.0592552 0)
(0.445788 0.0715283 0)
(0.398959 0.0855399 0)
(0.342666 0.0980364 0)
(0.280588 0.104573 0)
(0.219826 0.101752 0)
(0.167659 0.0891909 0)
(0.128446 0.0692105 0)
(0.103349 0.0448245 0)
(0.0919274 0.0185178 0)
(0.0935803 -0.00784696 0)
(0.107615 -0.0326857 0)
(0.132983 -0.0545248 0)
(0.168114 -0.0720456 0)
(0.210963 -0.0842245 0)
(0.259311 -0.0906012 0)
(0.311103 -0.0913514 0)
(0.364245 -0.087322 0)
(0.416743 -0.07969 0)
(0.467845 -0.0693693 0)
(0.516737 -0.0572248 0)
(0.560782 -0.0444102 0)
(0.5997 -0.0309096 0)
(0.635521 -0.0151854 0)
(0.661828 0.00296731 0)
(0.666738 0.0225611 0)
(0.651596 0.0438484 0)
(0.629701 0.0654985 0)
(0.609307 0.0805632 0)
(0.591897 0.080831 0)
(0.579698 0.063406 0)
(0.576164 0.0306194 0)
(0.583409 -0.0123894 0)
(0.601388 -0.0555943 0)
(0.626738 -0.0865922 0)
(0.654103 -0.0973365 0)
(0.680194 -0.0887198 0)
(0.703734 -0.067978 0)
(0.722228 -0.0429712 0)
(0.734882 -0.0185038 0)
(0.74333 0.00366382 0)
(0.745161 0.0222375 0)
(0.734306 0.0355061 0)
(0.708722 0.0428013 0)
(0.673043 0.0450993 0)
(0.634302 0.0440273 0)
(0.597613 0.040868 0)
(0.565148 0.0364761 0)
(0.537307 0.0315946 0)
(0.513589 0.0268875 0)
(0.493453 0.0227489 0)
(0.476245 0.0191895 0)
(0.461796 0.0160821 0)
(0.449694 0.0132596 0)
(0.439927 0.0106103 0)
(0.432246 0.00798136 0)
(0.426259 0.00504797 0)
(0.423168 0.00125203 0)
(0.421504 -0.0049914 0)
(0.428274 -0.0134365 0)
(0.435825 -0.0235318 0)
(0.459443 -0.0320218 0)
(0.477301 -0.0327982 0)
(0.508664 -0.0349064 0)
(0.536644 -0.0147418 0)
(0.714164 0.101627 0)
(0.740298 0.100812 0)
(0.751744 0.102272 0)
(0.761291 0.107978 0)
(0.783989 0.115758 0)
(0.821815 0.128479 0)
(0.859204 0.142069 0)
(0.869978 0.146902 0)
(0.845238 0.139652 0)
(0.770594 0.115397 0)
(0.617264 0.0745569 0)
(0.449193 0.0793258 0)
(0.378612 0.184661 0)
(0.389404 0.294566 0)
(0.427171 0.299874 0)
(0.463035 0.210616 0)
(0.498876 0.0802852 0)
(0.513142 -0.0401002 0)
(0.534555 -0.157477 0)
(0.585486 -0.278923 0)
(0.631067 -0.355595 0)
(0.649906 -0.353388 0)
(0.665969 -0.287831 0)
(0.676855 -0.204584 0)
(0.68508 -0.12826 0)
(0.712268 -0.0564705 0)
(0.733719 0.0020464 0)
(0.721797 0.0345538 0)
(0.686651 0.044879 0)
(0.650789 0.045654 0)
(0.623837 0.0450468 0)
(0.603072 0.0453232 0)
(0.583121 0.0469117 0)
(0.560789 0.0505813 0)
(0.53459 0.0573388 0)
(0.502934 0.0679029 0)
(0.463425 0.0821863 0)
(0.413887 0.0984807 0)
(0.354666 0.112779 0)
(0.290506 0.119709 0)
(0.229506 0.115454 0)
(0.179014 0.100067 0)
(0.142466 0.0767193 0)
(0.11986 0.0489993 0)
(0.110269 0.0195768 0)
(0.113027 -0.00971824 0)
(0.127553 -0.0372544 0)
(0.152964 -0.061479 0)
(0.187744 -0.0809432 0)
(0.229767 -0.0945299 0)
(0.276609 -0.101786 0)
(0.326165 -0.102957 0)
(0.376865 -0.0988981 0)
(0.427001 -0.0909139 0)
(0.475432 -0.0801525 0)
(0.522352 -0.0672817 0)
(0.56623 -0.0533073 0)
(0.604628 -0.0389163 0)
(0.64033 -0.022452 0)
(0.674513 -0.00185728 0)
(0.696377 0.021873 0)
(0.697559 0.0463494 0)
(0.685737 0.0688726 0)
(0.672287 0.0836058 0)
(0.661838 0.0832256 0)
(0.656103 0.0648184 0)
(0.656852 0.0305827 0)
(0.665573 -0.0142984 0)
(0.681737 -0.0593806 0)
(0.701552 -0.0914263 0)
(0.720841 -0.10215 0)
(0.737941 -0.092965 0)
(0.753286 -0.0714656 0)
(0.766294 -0.0454857 0)
(0.775127 -0.0201119 0)
(0.780535 0.00279145 0)
(0.782831 0.0227265 0)
(0.777213 0.0383154 0)
(0.758417 0.0480297 0)
(0.727174 0.051814 0)
(0.689368 0.0510365 0)
(0.651227 0.047369 0)
(0.616371 0.0421482 0)
(0.586038 0.036415 0)
(0.560041 0.0309574 0)
(0.537911 0.0261864 0)
(0.519059 0.0220814 0)
(0.503359 0.0184716 0)
(0.490513 0.0151928 0)
(0.480498 0.012103 0)
(0.473148 0.00909533 0)
(0.467829 0.00576863 0)
(0.465682 0.00158934 0)
(0.464745 -0.00527879 0)
(0.471751 -0.0146525 0)
(0.479035 -0.0257289 0)
(0.500467 -0.0355415 0)
(0.516961 -0.0364411 0)
(0.54335 -0.0395575 0)
(0.574359 -0.0175293 0)
(0.728401 0.0953445 0)
(0.753103 0.0974047 0)
(0.767637 0.0988242 0)
(0.77598 0.103331 0)
(0.788078 0.108002 0)
(0.81261 0.11649 0)
(0.850845 0.130629 0)
(0.88329 0.142542 0)
(0.89463 0.147814 0)
(0.871878 0.145143 0)
(0.767769 0.124024 0)
(0.593837 0.117605 0)
(0.492094 0.19024 0)
(0.506075 0.282986 0)
(0.553923 0.28921 0)
(0.59965 0.202986 0)
(0.638416 0.0736054 0)
(0.644059 -0.0443879 0)
(0.66047 -0.164305 0)
(0.706827 -0.290101 0)
(0.736244 -0.364319 0)
(0.729945 -0.357111 0)
(0.719668 -0.289048 0)
(0.714989 -0.204231 0)
(0.707915 -0.130689 0)
(0.722396 -0.0626945 0)
(0.748971 -0.000490095 0)
(0.75027 0.0400024 0)
(0.720525 0.0547886 0)
(0.68074 0.0549832 0)
(0.647583 0.0520801 0)
(0.623123 0.0509827 0)
(0.602104 0.0525282 0)
(0.579675 0.0569522 0)
(0.553171 0.0649208 0)
(0.520599 0.0771841 0)
(0.479512 0.0937054 0)
(0.427909 0.112428 0)
(0.366764 0.128463 0)
(0.301891 0.135434 0)
(0.242187 0.12924 0)
(0.19466 0.110632 0)
(0.161413 0.0837747 0)
(0.141331 0.0527737 0)
(0.133203 0.0203466 0)
(0.136575 -0.0117772 0)
(0.151286 -0.0419838 0)
(0.176706 -0.0685917 0)
(0.211333 -0.0899778 0)
(0.252887 -0.104894 0)
(0.298679 -0.112875 0)
(0.346217 -0.114319 0)
(0.394017 -0.110204 0)
(0.441184 -0.101849 0)
(0.486562 -0.0906147 0)
(0.530225 -0.0772703 0)
(0.572566 -0.0623677 0)
(0.610799 -0.0468765 0)
(0.644449 -0.0300953 0)
(0.678993 -0.00890396 0)
(0.712132 0.017477 0)
(0.731858 0.0455491 0)
(0.735524 0.0701568 0)
(0.732063 0.0851671 0)
(0.729263 0.084289 0)
(0.72986 0.0651428 0)
(0.734638 0.0299299 0)
(0.744747 -0.0162428 0)
(0.758958 -0.0625143 0)
(0.772743 -0.0949628 0)
(0.783248 -0.10533 0)
(0.791214 -0.0955688 0)
(0.798334 -0.0736489 0)
(0.805547 -0.0471866 0)
(0.81135 -0.0211776 0)
(0.814612 0.00221252 0)
(0.816302 0.0228351 0)
(0.814303 0.0400657 0)
(0.802691 0.0521554 0)
(0.778309 0.0579755 0)
(0.744134 0.0581395 0)
(0.706234 0.0543671 0)
(0.669571 0.0484542 0)
(0.636675 0.0418542 0)
(0.608094 0.0355751 0)
(0.583655 0.0300845 0)
(0.562913 0.0253372 0)
(0.545822 0.0211143 0)
(0.532225 0.0172585 0)
(0.522138 0.0136031 0)
(0.515483 0.0101052 0)
(0.51139 0.00631414 0)
(0.51078 0.00172788 0)
(0.511201 -0.00569449 0)
(0.518784 -0.0159343 0)
(0.526231 -0.0278039 0)
(0.545593 -0.0388452 0)
(0.560999 -0.0396097 0)
(0.581624 -0.0439076 0)
(0.611926 -0.0205479 0)
(0.743554 0.0892944 0)
(0.765084 0.0934094 0)
(0.781136 0.0947567 0)
(0.792329 0.0992621 0)
(0.802561 0.103487 0)
(0.815918 0.108307 0)
(0.841986 0.118836 0)
(0.876188 0.132211 0)
(0.903368 0.143582 0)
(0.919727 0.157092 0)
(0.88472 0.162356 0)
(0.750778 0.161046 0)
(0.624242 0.202508 0)
(0.621635 0.269946 0)
(0.673432 0.275222 0)
(0.729271 0.193395 0)
(0.76793 0.068129 0)
(0.765244 -0.0469657 0)
(0.782238 -0.170392 0)
(0.824448 -0.298536 0)
(0.833638 -0.367015 0)
(0.801064 -0.353117 0)
(0.765189 -0.284045 0)
(0.74572 -0.199736 0)
(0.727888 -0.129216 0)
(0.728614 -0.0674293 0)
(0.754542 -0.00544546 0)
(0.769177 0.0424154 0)
(0.750403 0.0640578 0)
(0.711278 0.0657417 0)
(0.672732 0.0608282 0)
(0.643256 0.0576757 0)
(0.619889 0.0585926 0)
(0.596845 0.0636 0)
(0.570079 0.072877 0)
(0.536923 0.0870263 0)
(0.494805 0.105965 0)
(0.441944 0.127193 0)
(0.379986 0.14481 0)
(0.315776 0.151412 0)
(0.258743 0.142774 0)
(0.215048 0.120668 0)
(0.185128 0.0903137 0)
(0.166976 0.0562556 0)
(0.159492 0.0209781 0)
(0.16282 -0.0139241 0)
(0.177332 -0.0468509 0)
(0.20268 -0.0759134 0)
(0.237368 -0.0992521 0)
(0.278914 -0.11545 0)
(0.324308 -0.124001 0)
(0.370614 -0.125464 0)
(0.415857 -0.121108 0)
(0.459595 -0.112353 0)
(0.50157 -0.10059 0)
(0.541463 -0.086848 0)
(0.580519 -0.0714434 0)
(0.618093 -0.0549008 0)
(0.65093 -0.0374614 0)
(0.682315 -0.0166697 0)
(0.718203 0.0101734 0)
(0.75229 0.0407703 0)
(0.774238 0.0682185 0)
(0.784915 0.084595 0)
(0.791787 0.0838148 0)
(0.799011 0.0643823 0)
(0.807702 0.0286253 0)
(0.81912 -0.0182205 0)
(0.830876 -0.0648706 0)
(0.83792 -0.0969798 0)
(0.839119 -0.106674 0)
(0.837937 -0.0964442 0)
(0.837405 -0.0744421 0)
(0.838953 -0.0480435 0)
(0.841972 -0.0218462 0)
(0.844236 0.0018497 0)
(0.845514 0.022761 0)
(0.845658 0.0409067 0)
(0.840354 0.0549376 0)
(0.824217 0.0630507 0)
(0.7965 0.0648321 0)
(0.761447 0.0615772 0)
(0.724519 0.0553181 0)
(0.689623 0.0479523 0)
(0.658474 0.0408185 0)
(0.631539 0.0345196 0)
(0.608687 0.0290169 0)
(0.590008 0.0240469 0)
(0.575508 0.0194614 0)
(0.565298 0.0150796 0)
(0.55942 0.0109369 0)
(0.55682 0.00658553 0)
(0.558077 0.00155205 0)
(0.560307 -0.00632195 0)
(0.568702 -0.0173368 0)
(0.576542 -0.0297961 0)
(0.593828 -0.0419796 0)
(0.608314 -0.0423638 0)
(0.624449 -0.0476232 0)
(0.650718 -0.0234643 0)
(0.759954 0.0837289 0)
(0.778218 0.0893702 0)
(0.793595 0.0903723 0)
(0.806172 0.0943548 0)
(0.818942 0.0994696 0)
(0.830019 0.103588 0)
(0.844721 0.110513 0)
(0.869939 0.122098 0)
(0.896038 0.13433 0)
(0.924235 0.153461 0)
(0.945312 0.17995 0)
(0.887636 0.198086 0)
(0.775202 0.223122 0)
(0.742848 0.260807 0)
(0.782979 0.257995 0)
(0.844326 0.180143 0)
(0.879706 0.0625505 0)
(0.875904 -0.049772 0)
(0.900961 -0.176838 0)
(0.935656 -0.303192 0)
(0.919017 -0.362314 0)
(0.859783 -0.341007 0)
(0.801439 -0.272857 0)
(0.76895 -0.191759 0)
(0.744936 -0.124457 0)
(0.733792 -0.06976 0)
(0.753493 -0.0118686 0)
(0.778139 0.0411753 0)
(0.773675 0.0711942 0)
(0.740464 0.0769895 0)
(0.699104 0.0712664 0)
(0.664288 0.0657777 0)
(0.63738 0.0654028 0)
(0.613005 0.0706266 0)
(0.58591 0.0811756 0)
(0.552524 0.0973237 0)
(0.510012 0.118798 0)
(0.456782 0.142542 0)
(0.395151 0.161522 0)
(0.332918 0.167302 0)
(0.279657 0.155792 0)
(0.240089 0.130065 0)
(0.212896 0.0964606 0)
(0.195687 0.0596391 0)
(0.188012 0.0216499 0)
(0.190834 -0.0160676 0)
(0.204958 -0.0518386 0)
(0.230134 -0.0834915 0)
(0.264883 -0.108876 0)
(0.306645 -0.12636 0)
(0.352137 -0.135368 0)
(0.398023 -0.136588 0)
(0.441685 -0.131647 0)
(0.482271 -0.122309 0)
(0.520463 -0.109976 0)
(0.556522 -0.0957689 0)
(0.591305 -0.0801528 0)
(0.626328 -0.0630414 0)
(0.659161 -0.0446634 0)
(0.688398 -0.0241046 0)
(0.721306 0.00159464 0)
(0.761225 0.0325496 0)
(0.798687 0.0622952 0)
(0.826102 0.0809444 0)
(0.845607 0.081314 0)
(0.860734 0.0623954 0)
(0.873797 0.026728 0)
(0.886416 -0.02008 0)
(0.894777 -0.0662041 0)
(0.894252 -0.0972387 0)
(0.886164 -0.106031 0)
(0.876374 -0.0955745 0)
(0.86919 -0.0738968 0)
(0.865897 -0.048057 0)
(0.866287 -0.0221834 0)
(0.868203 0.00154309 0)
(0.86991 0.0225379 0)
(0.871524 0.041046 0)
(0.871021 0.0563651 0)
(0.863083 0.0666274 0)
(0.843922 0.0705123 0)
(0.814735 0.0685011 0)
(0.780074 0.0624694 0)
(0.744684 0.0546282 0)
(0.711606 0.0467083 0)
(0.682329 0.0395482 0)
(0.657305 0.0331826 0)
(0.636877 0.0273268 0)
(0.621231 0.0218465 0)
(0.610611 0.0165526 0)
(0.605228 0.0115788 0)
(0.603971 0.00654137 0)
(0.607036 0.00101544 0)
(0.611231 -0.00722537 0)
(0.62062 -0.0189012 0)
(0.62903 -0.031711 0)
(0.644285 -0.044905 0)
(0.657127 -0.0448552 0)
(0.670671 -0.050636 0)
(0.691398 -0.0260233 0)
(0.777021 0.0785171 0)
(0.792963 0.0853353 0)
(0.807451 0.0863551 0)
(0.819218 0.0891358 0)
(0.832755 0.0943822 0)
(0.846417 0.0996217 0)
(0.857645 0.105362 0)
(0.874079 0.114916 0)
(0.893534 0.126429 0)
(0.91424 0.143348 0)
(0.954497 0.176933 0)
(0.969819 0.215495 0)
(0.919536 0.243922 0)
(0.879836 0.261187 0)
(0.896456 0.243632 0)
(0.950084 0.165763 0)
(0.980671 0.0558517 0)
(0.985637 -0.0548163 0)
(1.01812 -0.183114 0)
(1.03508 -0.301737 0)
(0.987026 -0.348701 0)
(0.90335 -0.321019 0)
(0.82831 -0.256193 0)
(0.785869 -0.181181 0)
(0.759573 -0.117486 0)
(0.740483 -0.0692324 0)
(0.750014 -0.0182478 0)
(0.778815 0.0365368 0)
(0.788885 0.0750176 0)
(0.766164 0.0874678 0)
(0.7258 0.0829458 0)
(0.686588 0.0754782 0)
(0.655392 0.0732632 0)
(0.628906 0.0781809 0)
(0.60129 0.0897995 0)
(0.567997 0.107951 0)
(0.525752 0.132008 0)
(0.473063 0.158214 0)
(0.412886 0.178282 0)
(0.353816 0.182787 0)
(0.305031 0.168115 0)
(0.269277 0.138882 0)
(0.243842 0.102432 0)
(0.226664 0.0631134 0)
(0.218448 0.0224362 0)
(0.220885 -0.0181969 0)
(0.234804 -0.0569509 0)
(0.259785 -0.0913184 0)
(0.294304 -0.118858 0)
(0.335949 -0.137691 0)
(0.381477 -0.14712 0)
(0.427286 -0.147917 0)
(0.470244 -0.142029 0)
(0.508648 -0.131727 0)
(0.54314 -0.11868 0)
(0.575213 -0.103943 0)
(0.605711 -0.088135 0)
(0.636521 -0.0709671 0)
(0.668008 -0.051989 0)
(0.697074 -0.031143 0)
(0.726532 -0.00686227 0)
(0.764736 0.022475 0)
(0.809918 0.0527117 0)
(0.852093 0.0734999 0)
(0.885845 0.0760704 0)
(0.910723 0.0587594 0)
(0.929336 0.024074 0)
(0.94294 -0.0217305 0)
(0.947013 -0.066293 0)
(0.938763 -0.0956116 0)
(0.922408 -0.103429 0)
(0.905484 -0.0930819 0)
(0.893062 -0.0721931 0)
(0.886209 -0.0473174 0)
(0.884435 -0.0222331 0)
(0.886119 0.00115764 0)
(0.888901 0.0220826 0)
(0.892046 0.040638 0)
(0.894976 0.0566082 0)
(0.894001 0.0685354 0)
(0.884084 0.0746425 0)
(0.863307 0.0744969 0)
(0.834001 0.0694098 0)
(0.800617 0.0616054 0)
(0.767159 0.0531405 0)
(0.736319 0.045161 0)
(0.709446 0.0378673 0)
(0.687333 0.0310103 0)
(0.670385 0.0244867 0)
(0.658984 0.0181031 0)
(0.653527 0.0120991 0)
(0.653026 0.00622484 0)
(0.65739 0.000110033 0)
(0.663287 -0.00844196 0)
(0.673648 -0.0206678 0)
(0.682648 -0.0335814 0)
(0.696264 -0.0475027 0)
(0.70628 -0.0471093 0)
(0.718043 -0.0530415 0)
(0.733445 -0.0281377 0)
(0.794318 0.0735548 0)
(0.808637 0.0810014 0)
(0.823017 0.082616 0)
(0.83423 0.0845116 0)
(0.845987 0.0888217 0)
(0.860495 0.0947687 0)
(0.873279 0.101074 0)
(0.886314 0.10984 0)
(0.901524 0.121437 0)
(0.913636 0.135064 0)
(0.943463 0.163698 0)
(0.991741 0.209776 0)
(1.01425 0.249692 0)
(1.01122 0.264826 0)
(1.02307 0.237868 0)
(1.06441 0.157902 0)
(1.09026 0.0510084 0)
(1.10197 -0.0604766 0)
(1.12683 -0.185775 0)
(1.11304 -0.291022 0)
(1.03231 -0.325492 0)
(0.930924 -0.294492 0)
(0.847275 -0.235561 0)
(0.798878 -0.169029 0)
(0.772874 -0.109474 0)
(0.750395 -0.0660508 0)
(0.748446 -0.0231324 0)
(0.774553 0.0295417 0)
(0.796142 0.0749657 0)
(0.786653 0.0958875 0)
(0.751473 0.0950435 0)
(0.710008 0.0866894 0)
(0.674502 0.082409 0)
(0.645243 0.0864375 0)
(0.616822 0.098754 0)
(0.583879 0.11878 0)
(0.542541 0.145379 0)
(0.491286 0.173927 0)
(0.433645 0.194766 0)
(0.378726 0.197599 0)
(0.334643 0.179666 0)
(0.301974 0.14729 0)
(0.277364 0.108415 0)
(0.259884 0.0667338 0)
(0.251529 0.0234124 0)
(0.254223 -0.0203826 0)
(0.268416 -0.0622199 0)
(0.293294 -0.0993296 0)
(0.327208 -0.129059 0)
(0.367966 -0.149315 0)
(0.412738 -0.159221 0)
(0.45807 -0.159544 0)
(0.500529 -0.152472 0)
(0.537662 -0.140779 0)
(0.569218 -0.12668 0)
(0.597235 -0.11132 0)
(0.623585 -0.0952432 0)
(0.649798 -0.0782356 0)
(0.677857 -0.059307 0)
(0.706624 -0.0381861 0)
(0.734885 -0.0147864 0)
(0.768795 0.012235 0)
(0.813526 0.0409676 0)
(0.863592 0.0625589 0)
(0.909251 0.0675836 0)
(0.944544 0.0529406 0)
(0.96943 0.0204414 0)
(0.983729 -0.0231221 0)
(0.98384 -0.0651124 0)
(0.969394 -0.092259 0)
(0.947034 -0.0991711 0)
(0.925309 -0.0892901 0)
(0.909431 -0.0696006 0)
(0.900384 -0.0460252 0)
(0.897212 -0.0220444 0)
(0.898592 0.000658788 0)
(0.90247 0.0213021 0)
(0.907339 0.0397344 0)
(0.912848 0.0558984 0)
(0.917098 0.0688666 0)
(0.915595 0.0769173 0)
(0.90444 0.0789447 0)
(0.883247 0.075474 0)
(0.854948 0.0683763 0)
(0.823602 0.0598153 0)
(0.792836 0.0512166 0)
(0.76506 0.0430224 0)
(0.74177 0.035107 0)
(0.723689 0.0274416 0)
(0.711331 0.0198424 0)
(0.705215 0.0126368 0)
(0.704612 0.00577021 0)
(0.709396 -0.00106277 0)
(0.716282 -0.0099321 0)
(0.727228 -0.0226199 0)
(0.736341 -0.0354545 0)
(0.748688 -0.0496908 0)
(0.755217 -0.0489912 0)
(0.764577 -0.0548981 0)
(0.775451 -0.0298356 0)
(0.812063 0.0689037 0)
(0.824989 0.0762948 0)
(0.83931 0.0785996 0)
(0.851235 0.0804011 0)
(0.861618 0.0838469 0)
(0.874055 0.089494 0)
(0.887545 0.09631 0)
(0.900603 0.105073 0)
(0.914894 0.117396 0)
(0.926099 0.130395 0)
(0.941698 0.151454 0)
(0.983851 0.190889 0)
(1.04439 0.234246 0)
(1.09287 0.256066 0)
(1.13063 0.231865 0)
(1.1731 0.15392 0)
(1.19603 0.0479269 0)
(1.20494 -0.0639867 0)
(1.20791 -0.18106 0)
(1.15791 -0.269472 0)
(1.0529 -0.294175 0)
(0.944981 -0.264087 0)
(0.861522 -0.213058 0)
(0.81106 -0.156227 0)
(0.786153 -0.101382 0)
(0.764026 -0.0608462 0)
(0.752052 -0.0253591 0)
(0.769542 0.0218457 0)
(0.797109 0.0712722 0)
(0.801088 0.101229 0)
(0.774722 0.10651 0)
(0.733971 0.0990162 0)
(0.694983 0.0929343 0)
(0.662588 0.0955625 0)
(0.633048 0.108065 0)
(0.600629 0.129685 0)
(0.560785 0.158684 0)
(0.51182 0.189386 0)
(0.45772 0.210657 0)
(0.407667 0.211548 0)
(0.368087 0.190493 0)
(0.33767 0.155469 0)
(0.3134 0.114491 0)
(0.29605 0.0704969 0)
(0.288418 0.0242878 0)
(0.292121 -0.0227809 0)
(0.307011 -0.0676886 0)
(0.331876 -0.107451 0)
(0.364988 -0.13928 0)
(0.404214 -0.160946 0)
(0.447137 -0.17141 0)
(0.490919 -0.171341 0)
(0.532298 -0.163036 0)
(0.56838 -0.149664 0)
(0.597895 -0.134077 0)
(0.622296 -0.117854 0)
(0.644443 -0.101452 0)
(0.666319 -0.0846004 0)
(0.689951 -0.0661733 0)
(0.716552 -0.0453339 0)
(0.744637 -0.0224317 0)
(0.775764 0.00267375 0)
(0.816125 0.0288913 0)
(0.8662 0.0496515 0)
(0.917506 0.0562921 0)
(0.96078 0.0446765 0)
(0.991385 0.0156766 0)
(1.00684 -0.0243515 0)
(1.00458 -0.0629403 0)
(0.986545 -0.0876228 0)
(0.961063 -0.093784 0)
(0.93716 -0.0846578 0)
(0.919717 -0.0664553 0)
(0.909658 -0.0444094 0)
(0.905852 -0.0217029 0)
(0.906952 7.90288e-05 0)
(0.911474 0.0202024 0)
(0.917854 0.0383606 0)
(0.925414 0.0544412 0)
(0.933282 0.0678905 0)
(0.938364 0.0773464 0)
(0.936365 0.081447 0)
(0.924762 0.0799994 0)
(0.904317 0.0742647 0)
(0.878064 0.0662113 0)
(0.849822 0.0573842 0)
(0.822845 0.0484627 0)
(0.799463 0.039527 0)
(0.780893 0.0306977 0)
(0.767828 0.0218426 0)
(0.760806 0.0133497 0)
(0.759325 0.00537323 0)
(0.763515 -0.00231201 0)
(0.770347 -0.0115572 0)
(0.781106 -0.0246226 0)
(0.789319 -0.0372723 0)
(0.79999 -0.0514386 0)
(0.803139 -0.0503264 0)
(0.808959 -0.0561402 0)
(0.815754 -0.0311496 0)
(0.830689 0.0645986 0)
(0.842508 0.0714476 0)
(0.856169 0.0741236 0)
(0.868825 0.0761723 0)
(0.879496 0.0794728 0)
(0.889909 0.0847429 0)
(0.901748 0.0914343 0)
(0.914367 0.100034 0)
(0.92827 0.112558 0)
(0.942656 0.126439 0)
(0.955077 0.143705 0)
(0.980572 0.172009 0)
(1.03887 0.207114 0)
(1.11201 0.230376 0)
(1.18027 0.213251 0)
(1.23667 0.143764 0)
(1.26264 0.0442214 0)
(1.26684 -0.0626075 0)
(1.24353 -0.166673 0)
(1.16603 -0.239312 0)
(1.05388 -0.258659 0)
(0.951548 -0.23328 0)
(0.875015 -0.190711 0)
(0.825128 -0.143303 0)
(0.800477 -0.0936324 0)
(0.780672 -0.0544383 0)
(0.76207 -0.024425 0)
(0.767636 0.0152698 0)
(0.794562 0.0649449 0)
(0.809688 0.102988 0)
(0.794449 0.116277 0)
(0.757654 0.111795 0)
(0.716802 0.104742 0)
(0.681352 0.105675 0)
(0.650427 0.117771 0)
(0.618625 0.140554 0)
(0.580783 0.171692 0)
(0.53491 0.204291 0)
(0.485245 0.225673 0)
(0.440471 0.22452 0)
(0.404938 0.200719 0)
(0.376155 0.163538 0)
(0.352364 0.120641 0)
(0.335981 0.0742388 0)
(0.329897 0.0247647 0)
(0.334984 -0.0255188 0)
(0.350533 -0.0733781 0)
(0.375295 -0.11565 0)
(0.407628 -0.149416 0)
(0.445246 -0.172343 0)
(0.485702 -0.183337 0)
(0.52677 -0.182987 0)
(0.565959 -0.173558 0)
(0.60046 -0.158437 0)
(0.628301 -0.141034 0)
(0.649848 -0.12358 0)
(0.667951 -0.106723 0)
(0.685588 -0.0900066 0)
(0.704849 -0.072234 0)
(0.727781 -0.0522414 0)
(0.754577 -0.0300584 0)
(0.784585 -0.00633121 0)
(0.820993 0.0175321 0)
(0.866802 0.0365511 0)
(0.917286 0.0436656 0)
(0.963117 0.0346953 0)
(0.997259 0.00977212 0)
(1.01453 -0.0258283 0)
(1.01181 -0.0603192 0)
(0.992789 -0.0823516 0)
(0.967019 -0.0878983 0)
(0.943292 -0.0796928 0)
(0.925931 -0.0630895 0)
(0.915748 -0.042663 0)
(0.911804 -0.0212996 0)
(0.91274 -0.000527041 0)
(0.917402 0.0188869 0)
(0.924635 0.0365991 0)
(0.933638 0.052408 0)
(0.943854 0.0659314 0)
(0.953442 0.076203 0)
(0.958823 0.0819527 0)
(0.95655 0.082547 0)
(0.945442 0.0786044 0)
(0.926856 0.0716588 0)
(0.903886 0.0631354 0)
(0.879996 0.0538328 0)
(0.858156 0.0440527 0)
(0.840186 0.0341358 0)
(0.827074 0.0240774 0)
(0.819376 0.0143278 0)
(0.816657 0.00522056 0)
(0.819447 -0.00340107 0)
(0.825107 -0.0130956 0)
(0.834609 -0.026439 0)
(0.840745 -0.0388077 0)
(0.848461 -0.0526648 0)
(0.848547 -0.0509965 0)
(0.85015 -0.0566398 0)
(0.852891 -0.0320627 0)
(0.850431 0.060513 0)
(0.861605 0.0666454 0)
(0.874304 0.0694484 0)
(0.886713 0.0716459 0)
(0.897912 0.0751325 0)
(0.907841 0.080539 0)
(0.917901 0.0871123 0)
(0.928774 0.0952846 0)
(0.941034 0.107083 0)
(0.956803 0.121005 0)
(0.972761 0.137462 0)
(0.991971 0.158402 0)
(1.03357 0.181609 0)
(1.09999 0.198415 0)
(1.17665 0.184337 0)
(1.2409 0.125846 0)
(1.27326 0.0383836 0)
(1.27234 -0.0579247 0)
(1.23105 -0.14662 0)
(1.1488 -0.206235 0)
(1.04706 -0.223899 0)
(0.957669 -0.20488 0)
(0.890489 -0.169698 0)
(0.842244 -0.130254 0)
(0.816237 -0.0861073 0)
(0.798877 -0.0475933 0)
(0.777653 -0.0205585 0)
(0.7713 0.0112971 0)
(0.791648 0.0575167 0)
(0.813612 0.101283 0)
(0.810073 0.123457 0)
(0.780181 0.124187 0)
(0.739676 0.117523 0)
(0.70177 0.116809 0)
(0.669322 0.127913 0)
(0.638156 0.15129 0)
(0.602731 0.184179 0)
(0.560683 0.218343 0)
(0.516199 0.239573 0)
(0.476854 0.236478 0)
(0.444881 0.210437 0)
(0.417518 0.171511 0)
(0.394819 0.126731 0)
(0.380184 0.0775719 0)
(0.37597 0.0248495 0)
(0.382186 -0.0285759 0)
(0.397866 -0.0792489 0)
(0.422168 -0.123932 0)
(0.453768 -0.159516 0)
(0.490157 -0.183487 0)
(0.528354 -0.194791 0)
(0.566178 -0.194129 0)
(0.602085 -0.183723 0)
(0.634051 -0.166965 0)
(0.659929 -0.147625 0)
(0.679138 -0.128603 0)
(0.693729 -0.111036 0)
(0.707163 -0.0944224 0)
(0.72224 -0.0773625 0)
(0.741121 -0.0585139 0)
(0.765096 -0.0375374 0)
(0.793769 -0.0150953 0)
(0.827754 0.00695069 0)
(0.869027 0.0242337 0)
(0.915287 0.0312118 0)
(0.959264 0.0243226 0)
(0.993475 0.00320397 0)
(1.01131 -0.0277062 0)
(1.00937 -0.0577715 0)
(0.991948 -0.0771251 0)
(0.968253 -0.082114 0)
(0.946342 -0.0748392 0)
(0.930113 -0.0597713 0)
(0.920332 -0.0409191 0)
(0.916422 -0.0208907 0)
(0.917255 -0.00115249 0)
(0.921762 0.0174751 0)
(0.929133 0.0345992 0)
(0.938774 0.0499775 0)
(0.950263 0.0632977 0)
(0.962516 0.0738886 0)
(0.972977 0.0807304 0)
(0.978331 0.0830461 0)
(0.976303 0.0809705 0)
(0.966635 0.0755323 0)
(0.951102 0.0678391 0)
(0.932607 0.0586248 0)
(0.914217 0.0483311 0)
(0.898203 0.0375327 0)
(0.885916 0.0264244 0)
(0.878061 0.0155489 0)
(0.874189 0.00540358 0)
(0.875185 -0.00413397 0)
(0.878814 -0.0143041 0)
(0.885904 -0.02781 0)
(0.889073 -0.0397544 0)
(0.892422 -0.0531972 0)
(0.889545 -0.0509463 0)
(0.887047 -0.0563139 0)
(0.885742 -0.0325294 0)
(0.871428 0.0564768 0)
(0.882219 0.0618965 0)
(0.894054 0.0648036 0)
(0.905555 0.067125 0)
(0.916304 0.0707052 0)
(0.926125 0.0764246 0)
(0.935509 0.0832686 0)
(0.944806 0.0912404 0)
(0.954954 0.101968 0)
(0.969049 0.114625 0)
(0.986784 0.13003 0)
(1.00797 0.147479 0)
(1.03994 0.162652 0)
(1.08988 0.1709 0)
(1.15506 0.156359 0)
(1.21416 0.10674 0)
(1.24547 0.0323371 0)
(1.24082 -0.0501757 0)
(1.19966 -0.12437 0)
(1.12887 -0.174693 0)
(1.04371 -0.192727 0)
(0.966937 -0.17963 0)
(0.907856 -0.150117 0)
(0.861628 -0.116805 0)
(0.833118 -0.0783789 0)
(0.817096 -0.0408496 0)
(0.79666 -0.0145579 0)
(0.78118 0.0107189 0)
(0.791171 0.0506835 0)
(0.814677 0.0968297 0)
(0.821591 0.127502 0)
(0.800778 0.135296 0)
(0.763136 0.130772 0)
(0.723898 0.128881 0)
(0.689998 0.138518 0)
(0.659429 0.161815 0)
(0.626727 0.195928 0)
(0.589147 0.23126 0)
(0.550421 0.252162 0)
(0.516478 0.247409 0)
(0.487734 0.219685 0)
(0.462013 0.179308 0)
(0.441091 0.132486 0)
(0.428664 0.0803372 0)
(0.426153 0.0245031 0)
(0.432848 -0.0318339 0)
(0.447981 -0.0851781 0)
(0.471286 -0.132266 0)
(0.501933 -0.169675 0)
(0.537367 -0.194532 0)
(0.573917 -0.205813 0)
(0.608785 -0.204576 0)
(0.640888 -0.193208 0)
(0.669385 -0.174988 0)
(0.692639 -0.153779 0)
(0.709536 -0.133008 0)
(0.721167 -0.114442 0)
(0.730711 -0.0978073 0)
(0.74165 -0.0815124 0)
(0.756557 -0.0639605 0)
(0.776987 -0.0445047 0)
(0.8032 -0.0235814 0)
(0.835109 -0.00310348 0)
(0.872933 0.0128376 0)
(0.914596 0.0196261 0)
(0.954818 0.0144065 0)
(0.986971 -0.00329322 0)
(1.00427 -0.0296538 0)
(1.00359 -0.055501 0)
(0.988824 -0.0723256 0)
(0.968084 -0.0767716 0)
(0.94849 -0.0703163 0)
(0.933685 -0.0566291 0)
(0.924495 -0.0392244 0)
(0.920618 -0.0204771 0)
(0.921299 -0.00177363 0)
(0.925566 0.0160613 0)
(0.932661 0.0325297 0)
(0.942206 0.0473549 0)
(0.954002 0.0602724 0)
(0.967436 0.0708157 0)
(0.980807 0.0782251 0)
(0.991429 0.081771 0)
(0.9968 0.0813192 0)
(0.995629 0.0774778 0)
(0.988351 0.0709662 0)
(0.976806 0.0623005 0)
(0.963524 0.0519262 0)
(0.950818 0.0405841 0)
(0.940255 0.0286907 0)
(0.932803 0.0169213 0)
(0.928079 0.00589947 0)
(0.927239 -0.00443195 0)
(0.928444 -0.014999 0)
(0.932237 -0.028535 0)
(0.93207 -0.0398811 0)
(0.930391 -0.0528625 0)
(0.924536 -0.0501711 0)
(0.918673 -0.0551859 0)
(0.913632 -0.032525 0)
(0.893836 0.0524283 0)
(0.904116 0.0572221 0)
(0.915039 0.0602676 0)
(0.92545 0.062869 0)
(0.934987 0.0665166 0)
(0.943964 0.0723456 0)
(0.952906 0.0795365 0)
(0.961464 0.0876445 0)
(0.970314 0.0976081 0)
(0.981948 0.108654 0)
(0.997902 0.121803 0)
(1.02009 0.136478 0)
(1.04983 0.147421 0)
(1.0894 0.150205 0)
(1.1396 0.134737 0)
(1.18727 0.0919794 0)
(1.21354 0.0291459 0)
(1.20859 -0.0406849 0)
(1.17352 -0.103786 0)
(1.11548 -0.147826 0)
(1.04456 -0.1658 0)
(0.977704 -0.157006 0)
(0.925057 -0.131747 0)
(0.881524 -0.102887 0)
(0.850514 -0.07002 0)
(0.834217 -0.0344429 0)
(0.81655 -0.00751415 0)
(0.796235 0.0134713 0)
(0.794993 0.0458962 0)
(0.814968 0.0907936 0)
(0.829535 0.128296 0)
(0.818876 0.144292 0)
(0.786595 0.143817 0)
(0.747624 0.141669 0)
(0.712619 0.149583 0)
(0.682578 0.172075 0)
(0.652785 0.206747 0)
(0.620188 0.242784 0)
(0.587624 0.263278 0)
(0.559 0.25728 0)
(0.533436 0.228411 0)
(0.509824 0.186729 0)
(0.491237 0.137675 0)
(0.481108 0.0826352 0)
(0.479905 0.0238469 0)
(0.48661 -0.0351255 0)
(0.500756 -0.0909908 0)
(0.522548 -0.14051 0)
(0.551661 -0.179855 0)
(0.58582 -0.205588 0)
(0.620974 -0.216569 0)
(0.653462 -0.214351 0)
(0.681918 -0.201817 0)
(0.706421 -0.182234 0)
(0.726369 -0.159322 0)
(0.740657 -0.136791 0)
(0.74961 -0.11702 0)
(0.755753 -0.10017 0)
(0.762734 -0.0846315 0)
(0.7737 -0.0684869 0)
(0.790436 -0.0507373 0)
(0.813472 -0.0315632 0)
(0.842737 -0.0126852 0)
(0.877531 0.0021831 0)
(0.915322 0.00892479 0)
(0.951688 0.00519652 0)
(0.981027 -0.00948613 0)
(0.997347 -0.0316478 0)
(0.997831 -0.0536333 0)
(0.985708 -0.0681175 0)
(0.967863 -0.0719656 0)
(0.950508 -0.0661548 0)
(0.937081 -0.0536718 0)
(0.928536 -0.037571 0)
(0.92472 -0.0200369 0)
(0.925184 -0.00235892 0)
(0.929191 0.014671 0)
(0.935943 0.0304848 0)
(0.945031 0.0447138 0)
(0.956429 0.0571046 0)
(0.96992 0.0673474 0)
(0.984459 0.07491 0)
(0.998068 0.0791884 0)
(1.00852 0.0799477 0)
(1.01414 0.0775183 0)
(1.01444 0.0722845 0)
(1.01013 0.0644885 0)
(1.00281 0.0544569 0)
(0.99438 0.0429859 0)
(0.986334 0.0306682 0)
(0.979813 0.0183159 0)
(0.974638 0.0066958 0)
(0.972142 -0.0042484 0)
(0.970989 -0.0150683 0)
(0.971173 -0.0285074 0)
(0.967838 -0.0391168 0)
(0.961533 -0.051604 0)
(0.952862 -0.0487229 0)
(0.944663 -0.0533763 0)
(0.936482 -0.0320728 0)
(0.917563 0.0484438 0)
(0.926939 0.052777 0)
(0.93659 0.0559767 0)
(0.945666 0.0589864 0)
(0.953731 0.062835 0)
(0.961243 0.0686113 0)
(0.969154 0.0759036 0)
(0.977152 0.0841405 0)
(0.985525 0.0936729 0)
(0.995694 0.103518 0)
(1.009 0.114171 0)
(1.02881 0.125559 0)
(1.05649 0.133391 0)
(1.09101 0.133294 0)
(1.13122 0.117872 0)
(1.16875 0.0808522 0)
(1.1896 0.0270178 0)
(1.18499 -0.0326335 0)
(1.15564 -0.086694 0)
(1.10754 -0.124942 0)
(1.04768 -0.141787 0)
(0.988554 -0.136112 0)
(0.940854 -0.114411 0)
(0.900544 -0.0886969 0)
(0.867913 -0.060732 0)
(0.849809 -0.0282468 0)
(0.835158 -0.000428384 0)
(0.814284 0.0187744 0)
(0.803657 0.044029 0)
(0.816415 0.0845421 0)
(0.834846 0.126176 0)
(0.834151 0.150524 0)
(0.809402 0.155882 0)
(0.772665 0.154796 0)
(0.737241 0.161051 0)
(0.707678 0.182038 0)
(0.680838 0.216476 0)
(0.653574 0.25269 0)
(0.627416 0.272767 0)
(0.60409 0.266021 0)
(0.581916 0.236458 0)
(0.560966 0.193534 0)
(0.545087 0.14226 0)
(0.537147 0.0844532 0)
(0.536987 0.0230531 0)
(0.543585 -0.0383275 0)
(0.556653 -0.0965269 0)
(0.576585 -0.148431 0)
(0.603423 -0.189808 0)
(0.635403 -0.216521 0)
(0.668642 -0.227105 0)
(0.69892 -0.223556 0)
(0.724157 -0.209516 0)
(0.744667 -0.188514 0)
(0.760878 -0.164058 0)
(0.772197 -0.139871 0)
(0.778521 -0.118808 0)
(0.781682 -0.101566 0)
(0.785084 -0.0866979 0)
(0.792203 -0.0720229 0)
(0.805222 -0.0561175 0)
(0.824837 -0.0388478 0)
(0.850956 -0.0216699 0)
(0.882541 -0.00784873 0)
(0.916844 -0.00105393 0)
(0.949724 -0.00346728 0)
(0.976301 -0.0153595 0)
(0.99152 -0.0337319 0)
(0.992902 -0.0522121 0)
(0.983052 -0.0644884 0)
(0.967776 -0.0676593 0)
(0.952469 -0.0623235 0)
(0.940322 -0.0508881 0)
(0.932428 -0.0359722 0)
(0.928752 -0.0195712 0)
(0.928994 -0.00290075 0)
(0.932697 0.0133097 0)
(0.939149 0.0284815 0)
(0.94778 0.0421408 0)
(0.958497 0.0539751 0)
(0.971344 0.0637708 0)
(0.985819 0.0711956 0)
(1.00059 0.0757943 0)
(1.01388 0.0773297 0)
(1.02408 0.0759843 0)
(1.03025 0.0719044 0)
(1.03227 0.0650985 0)
(1.03073 0.0557252 0)
(1.02689 0.0445306 0)
(1.02185 0.0321901 0)
(1.01675 0.0196215 0)
(1.01164 0.00771408 0)
(1.00787 -0.00362621 0)
(1.0048 -0.014509 0)
(1.00172 -0.0277311 0)
(0.995794 -0.0375492 0)
(0.986046 -0.0495107 0)
(0.974993 -0.0467131 0)
(0.965464 -0.0510526 0)
(0.954827 -0.0312293 0)
(0.941912 0.0447229 0)
(0.949876 0.0488032 0)
(0.957795 0.0521881 0)
(0.965137 0.0556219 0)
(0.971565 0.0597703 0)
(0.977437 0.0654735 0)
(0.98385 0.0726124 0)
(0.990943 0.0807097 0)
(0.998935 0.0898144 0)
(1.00855 0.098848 0)
(1.02027 0.107556 0)
(1.03683 0.115815 0)
(1.06054 0.120603 0)
(1.09035 0.118302 0)
(1.12372 0.103409 0)
(1.15396 0.071232 0)
(1.17066 0.0251545 0)
(1.16656 -0.0255941 0)
(1.14155 -0.0717737 0)
(1.10067 -0.104901 0)
(1.04951 -0.12024 0)
(0.997089 -0.116766 0)
(0.953727 -0.0981611 0)
(0.917315 -0.0746486 0)
(0.884826 -0.0504997 0)
(0.864213 -0.021911 0)
(0.851455 0.00607195 0)
(0.833003 0.0254665 0)
(0.816518 0.0452243 0)
(0.820436 0.0793545 0)
(0.838704 0.121874 0)
(0.846543 0.153616 0)
(0.83088 0.166151 0)
(0.798563 0.167727 0)
(0.763794 0.172788 0)
(0.734746 0.19169 0)
(0.710757 0.225002 0)
(0.688966 0.260796 0)
(0.66932 0.280479 0)
(0.65138 0.273483 0)
(0.633001 0.243607 0)
(0.615275 0.199572 0)
(0.6023 0.146153 0)
(0.596437 0.085855 0)
(0.597257 0.0220741 0)
(0.603813 -0.041411 0)
(0.615828 -0.101682 0)
(0.633685 -0.155799 0)
(0.657631 -0.199182 0)
(0.686378 -0.226972 0)
(0.716603 -0.237219 0)
(0.744159 -0.23219 0)
(0.766368 -0.216348 0)
(0.783197 -0.193762 0)
(0.795629 -0.167843 0)
(0.803761 -0.142145 0)
(0.807433 -0.119806 0)
(0.807906 -0.102053 0)
(0.808161 -0.0877388 0)
(0.811711 -0.074529 0)
(0.821073 -0.0605661 0)
(0.837193 -0.0453221 0)
(0.85994 -0.0299226 0)
(0.888125 -0.0171967 0)
(0.91898 -0.0103995 0)
(0.948597 -0.011602 0)
(0.972618 -0.0208981 0)
(0.986715 -0.0358644 0)
(0.988757 -0.0511556 0)
(0.980825 -0.0613516 0)
(0.967797 -0.0638022 0)
(0.954353 -0.0588059 0)
(0.94341 -0.0482796 0)
(0.936149 -0.0344436 0)
(0.932676 -0.0190938 0)
(0.932756 -0.00338887 0)
(0.936111 0.0119894 0)
(0.94224 0.0265067 0)
(0.950515 0.0396343 0)
(0.960616 0.0509582 0)
(0.972586 0.0602718 0)
(0.986291 0.067389 0)
(1.00096 0.0720127 0)
(1.01532 0.0739526 0)
(1.02804 0.0733362 0)
(1.03806 0.0701789 0)
(1.04477 0.0643185 0)
(1.04804 0.0557507 0)
(1.04839 0.0451299 0)
(1.04647 0.033142 0)
(1.04313 0.0207196 0)
(1.03865 0.00883 0)
(1.0342 -0.00267272 0)
(1.0299 -0.0134252 0)
(1.02442 -0.026316 0)
(1.01668 -0.0353739 0)
(1.00494 -0.0467712 0)
(0.992112 -0.0442802 0)
(0.98203 -0.0483795 0)
(0.969545 -0.0300525 0)
(0.965419 0.0415554 0)
(0.971483 0.045564 0)
(0.977311 0.0491655 0)
(0.982628 0.0529652 0)
(0.987289 0.0573958 0)
(0.991565 0.0630215 0)
(0.99643 0.0698428 0)
(1.00237 0.0775156 0)
(1.00972 0.08599 0)
(1.01898 0.0942729 0)
(1.03006 0.101601 0)
(1.04437 0.107486 0)
(1.06392 0.10964 0)
(1.08841 0.105398 0)
(1.11546 0.0909543 0)
(1.13964 0.0628552 0)
(1.15289 0.0236834 0)
(1.14914 -0.0193324 0)
(1.1276 -0.0587535 0)
(1.09255 -0.0873628 0)
(1.04897 -0.100926 0)
(1.00306 -0.0988431 0)
(0.963823 -0.0830447 0)
(0.931523 -0.0612527 0)
(0.900968 -0.0396538 0)
(0.878156 -0.0150743 0)
(0.865561 0.0118659 0)
(0.850674 0.0324301 0)
(0.832196 0.0489843 0)
(0.827755 0.0761717 0)
(0.842354 0.116391 0)
(0.856243 0.153526 0)
(0.850366 0.173855 0)
(0.824671 0.179774 0)
(0.792053 0.184542 0)
(0.763749 0.201021 0)
(0.74237 0.232278 0)
(0.725934 0.266965 0)
(0.71278 0.286258 0)
(0.700407 0.279441 0)
(0.686366 0.249641 0)
(0.672354 0.204677 0)
(0.662425 0.149309 0)
(0.658578 0.0867465 0)
(0.660349 0.0208681 0)
(0.666833 -0.0443682 0)
(0.677654 -0.106386 0)
(0.693242 -0.162445 0)
(0.713933 -0.207667 0)
(0.738645 -0.23651 0)
(0.764655 -0.246517 0)
(0.788475 -0.240064 0)
(0.807387 -0.22231 0)
(0.820838 -0.197995 0)
(0.829775 -0.170623 0)
(0.834772 -0.143544 0)
(0.835841 -0.120001 0)
(0.833874 -0.101683 0)
(0.831397 -0.0878123 0)
(0.831769 -0.0760149 0)
(0.837685 -0.0640401 0)
(0.850345 -0.0509061 0)
(0.869661 -0.0373395 0)
(0.89437 -0.0257526 0)
(0.921787 -0.0190536 0)
(0.948258 -0.0191043 0)
(0.969842 -0.0260933 0)
(0.9828 -0.0380144 0)
(0.985293 -0.0504075 0)
(0.97897 -0.0586605 0)
(0.967902 -0.0603702 0)
(0.956147 -0.0555973 0)
(0.946345 -0.0458485 0)
(0.939698 -0.0329913 0)
(0.936455 -0.0186207 0)
(0.93645 -0.00382906 0)
(0.939471 0.0107261 0)
(0.945209 0.0245641 0)
(0.95314 0.0371665 0)
(0.962782 0.0480407 0)
(0.973979 0.0569194 0)
(0.986702 0.0636777 0)
(1.00059 0.0681508 0)
(1.01482 0.0702268 0)
(1.02842 0.0700278 0)
(1.04047 0.0675244 0)
(1.05019 0.0624812 0)
(1.05686 0.0547557 0)
(1.06051 0.044861 0)
(1.06137 0.0334762 0)
(1.05993 0.0214776 0)
(1.05657 0.00990757 0)
(1.0521 -0.00152348 0)
(1.04734 -0.0119861 0)
(1.04054 -0.0244441 0)
(1.03182 -0.0328198 0)
(1.01935 -0.0436084 0)
(1.00541 -0.0415526 0)
(0.99526 -0.0454793 0)
(0.98144 -0.0285924 0)
(0.986006 0.0392267 0)
(0.989899 0.0432791 0)
(0.993521 0.0470841 0)
(0.996804 0.0511349 0)
(0.999781 0.0557363 0)
(1.00268 0.0612325 0)
(1.00624 0.067629 0)
(1.01105 0.0746711 0)
(1.01761 0.0822958 0)
(1.02637 0.0897034 0)
(1.03709 0.095933 0)
(1.05015 0.100158 0)
(1.06661 0.100455 0)
(1.08636 0.0948311 0)
(1.10757 0.0808403 0)
(1.12617 0.056169 0)
(1.13604 0.0227677 0)
(1.13219 -0.0137066 0)
(1.11352 -0.0472608 0)
(1.08344 -0.071905 0)
(1.04644 -0.0837404 0)
(1.00681 -0.0824711 0)
(0.971631 -0.0691668 0)
(0.943262 -0.0489287 0)
(0.916041 -0.0287117 0)
(0.892264 -0.0075166 0)
(0.878373 0.0172374 0)
(0.866542 0.0388944 0)
(0.84917 0.0544267 0)
(0.83844 0.0754581 0)
(0.846974 0.110846 0)
(0.86371 0.150586 0)
(0.867259 0.178364 0)
(0.850143 0.190118 0)
(0.821577 0.195911 0)
(0.794577 0.210001 0)
(0.775488 0.238332 0)
(0.763999 0.271137 0)
(0.75715 0.289935 0)
(0.750582 0.283653 0)
(0.741454 0.2543 0)
(0.731596 0.208674 0)
(0.724831 0.151675 0)
(0.722968 0.0870944 0)
(0.725582 0.0195124 0)
(0.731679 -0.0471241 0)
(0.740961 -0.110549 0)
(0.754084 -0.16826 0)
(0.771366 -0.215057 0)
(0.791572 -0.244762 0)
(0.812364 -0.254537 0)
(0.831266 -0.24683 0)
(0.846211 -0.227293 0)
(0.856376 -0.201253 0)
(0.862258 -0.172436 0)
(0.86446 -0.144066 0)
(0.863149 -0.119406 0)
(0.859028 -0.100508 0)
(0.854234 -0.0869936 0)
(0.851874 -0.0765307 0)
(0.854686 -0.0665353 0)
(0.864057 -0.0555497 0)
(0.879994 -0.04387 0)
(0.901254 -0.033479 0)
(0.925288 -0.026933 0)
(0.948706 -0.0259858 0)
(0.967935 -0.0309335 0)
(0.979726 -0.0401375 0)
(0.982479 -0.0499155 0)
(0.977484 -0.056365 0)
(0.968118 -0.057325 0)
(0.957876 -0.0526809 0)
(0.949144 -0.0435928 0)
(0.943098 -0.0316198 0)
(0.94009 -0.0181621 0)
(0.94005 -0.00423277 0)
(0.942793 0.00952798 0)
(0.948108 0.0226747 0)
(0.955629 0.0347317 0)
(0.964869 0.0451836 0)
(0.975481 0.0536941 0)
(0.987335 0.060126 0)
(1.00024 0.0643874 0)
(1.01372 0.0664411 0)
(1.02713 0.0664341 0)
(1.0398 0.0643412 0)
(1.05099 0.05993 0)
(1.05979 0.0529921 0)
(1.06575 0.0438961 0)
(1.06879 0.0332573 0)
(1.06905 0.0218653 0)
(1.06702 0.0108005 0)
(1.06307 -0.000369473 0)
(1.05848 -0.0104138 0)
(1.05135 -0.0223406 0)
(1.04239 -0.030105 0)
(1.0301 -0.0402294 0)
(1.01566 -0.0386324 0)
(1.00567 -0.0424351 0)
(0.990979 -0.0268964 0)
(1.0015 0.0378941 0)
(1.00335 0.0420224 0)
(1.00503 0.0459598 0)
(1.00662 0.0501015 0)
(1.00827 0.0547012 0)
(1.01019 0.0599719 0)
(1.01289 0.0658767 0)
(1.01687 0.0721803 0)
(1.02264 0.0788114 0)
(1.03075 0.0851927 0)
(1.04103 0.0903943 0)
(1.05329 0.0934325 0)
(1.06773 0.0926001 0)
(1.08395 0.0862872 0)
(1.10046 0.0729645 0)
(1.11428 0.0511948 0)
(1.12092 0.022495 0)
(1.11659 -0.00849062 0)
(1.10018 -0.0369922 0)
(1.07418 -0.05826 0)
(1.04265 -0.0685953 0)
(1.00877 -0.067717 0)
(0.977602 -0.0565193 0)
(0.952736 -0.0378905 0)
(0.929595 -0.0182595 0)
(0.906624 0.000685963 0)
(0.89091 0.0226353 0)
(0.880688 0.0445478 0)
(0.866177 0.0605709 0)
(0.852047 0.0771751 0)
(0.853578 0.106307 0)
(0.869693 0.145502 0)
(0.881121 0.179305 0)
(0.873957 0.197875 0)
(0.851643 0.206292 0)
(0.826995 0.218523 0)
(0.809926 0.243263 0)
(0.802684 0.273341 0)
(0.801728 0.291376 0)
(0.801143 0.285856 0)
(0.797448 0.257289 0)
(0.792147 0.211399 0)
(0.788688 0.153156 0)
(0.788775 0.086998 0)
(0.791943 0.0181223 0)
(0.797174 -0.0495314 0)
(0.804527 -0.114047 0)
(0.815049 -0.173159 0)
(0.828879 -0.221215 0)
(0.84427 -0.251425 0)
(0.85904 -0.260817 0)
(0.871889 -0.252052 0)
(0.881989 -0.231077 0)
(0.888715 -0.203546 0)
(0.891973 -0.173381 0)
(0.891928 -0.143794 0)
(0.888669 -0.118082 0)
(0.882788 -0.0986093 0)
(0.876125 -0.0853763 0)
(0.871523 -0.0761581 0)
(0.871659 -0.0680905 0)
(0.878035 -0.0592556 0)
(0.890764 -0.0494881 0)
(0.90869 -0.0403253 0)
(0.929444 -0.0340184 0)
(0.949908 -0.0322441 0)
(0.966857 -0.0353993 0)
(0.977455 -0.042194 0)
(0.980295 -0.0496242 0)
(0.976371 -0.0544116 0)
(0.968467 -0.0546305 0)
(0.95957 -0.0500411 0)
(0.951824 -0.0415134 0)
(0.946364 -0.0303348 0)
(0.943598 -0.0177242 0)
(0.943543 -0.00461123 0)
(0.946062 0.00839029 0)
(0.950978 0.0208553 0)
(0.958034 0.0323485 0)
(0.966828 0.042372 0)
(0.976947 0.0505525 0)
(0.988125 0.0567137 0)
(1.00016 0.060781 0)
(1.01271 0.0627562 0)
(1.0254 0.0628102 0)
(1.03779 0.0609541 0)
(1.0493 0.056998 0)
(1.05904 0.050721 0)
(1.06638 0.0423916 0)
(1.071 0.0325589 0)
(1.07268 0.0218769 0)
(1.07196 0.0114458 0)
(1.06877 0.000683097 0)
(1.0647 -0.0088745 0)
(1.05791 -0.020194 0)
(1.04923 -0.0273949 0)
(1.03764 -0.0367925 0)
(1.02319 -0.0355937 0)
(1.01347 -0.0393083 0)
(0.998342 -0.0250162 0)
(1.01058 0.0374885 0)
(1.01097 0.0416415 0)
(1.01136 0.0456009 0)
(1.01188 0.0496681 0)
(1.01276 0.0540816 0)
(1.01421 0.059009 0)
(1.01655 0.0643859 0)
(1.02009 0.0699473 0)
(1.02527 0.0755645 0)
(1.03264 0.0808329 0)
(1.04224 0.0849954 0)
(1.05374 0.087096 0)
(1.06679 0.0856294 0)
(1.0806 0.0792202 0)
(1.09372 0.066831 0)
(1.10387 0.0476424 0)
(1.10784 0.0229359 0)
(1.1029 -0.00346477 0)
(1.08818 -0.0277359 0)
(1.06543 -0.0461361 0)
(1.0382 -0.0552212 0)
(1.00926 -0.0545162 0)
(0.981951 -0.0450517 0)
(0.96012 -0.0281864 0)
(0.941124 -0.00883243 0)
(0.920714 0.00912899 0)
(0.903801 0.0284056 0)
(0.893671 0.0494779 0)
(0.882375 0.0665759 0)
(0.867768 0.0808452 0)
(0.862913 0.103616 0)
(0.875261 0.139316 0)
(0.891828 0.17669 0)
(0.894989 0.202193 0)
(0.881177 0.214872 0)
(0.860531 0.22633 0)
(0.845494 0.247214 0)
(0.841587 0.273727 0)
(0.845805 0.290519 0)
(0.851168 0.285783 0)
(0.853278 0.258325 0)
(0.852885 0.212642 0)
(0.8529 0.153659 0)
(0.854876 0.0864604 0)
(0.85824 0.0168024 0)
(0.862154 -0.0514203 0)
(0.867331 -0.116758 0)
(0.875239 -0.177064 0)
(0.885577 -0.226004 0)
(0.895807 -0.256201 0)
(0.903821 -0.264902 0)
(0.90962 -0.255254 0)
(0.913998 -0.233361 0)
(0.916978 -0.204829 0)
(0.917944 -0.173581 0)
(0.916281 -0.142881 0)
(0.911677 -0.116162 0)
(0.904556 -0.0961046 0)
(0.89654 -0.0830838 0)
(0.890228 -0.075009 0)
(0.888187 -0.068788 0)
(0.891959 -0.0620624 0)
(0.901758 -0.0541898 0)
(0.916549 -0.0462816 0)
(0.934174 -0.040308 0)
(0.951804 -0.0378685 0)
(0.966553 -0.0394659 0)
(0.975938 -0.0441415 0)
(0.978713 -0.0494809 0)
(0.975629 -0.0527517 0)
(0.968963 -0.0522523 0)
(0.961252 -0.0476591 0)
(0.954405 -0.0396057 0)
(0.949503 -0.0291386 0)
(0.946986 -0.0173125 0)
(0.946931 -0.00497237 0)
(0.949256 0.00730348 0)
(0.953817 0.0191084 0)
(0.960408 0.0300366 0)
(0.968704 0.0396186 0)
(0.97832 0.0474743 0)
(0.988925 0.0533991 0)
(1.00025 0.0573125 0)
(1.01197 0.0592199 0)
(1.02381 0.0592918 0)
(1.0355 0.0575749 0)
(1.04662 0.0539451 0)
(1.05644 0.0482054 0)
(1.06427 0.0405463 0)
(1.06976 0.0314926 0)
(1.07246 0.0215444 0)
(1.07289 0.0118175 0)
(1.07059 0.00157868 0)
(1.0672 -0.00745462 0)
(1.06107 -0.0181192 0)
(1.05296 -0.0247827 0)
(1.04229 -0.033399 0)
(1.02821 -0.0324921 0)
(1.01878 -0.036146 0)
(1.00363 -0.0230079 0)
(1.01384 0.0376761 0)
(1.01354 0.0417605 0)
(1.01342 0.0456365 0)
(1.01356 0.0495134 0)
(1.01421 0.053611 0)
(1.01559 0.0580984 0)
(1.01794 0.0629289 0)
(1.02141 0.0678132 0)
(1.02624 0.0725212 0)
(1.0329 0.0767219 0)
(1.0416 0.0798491 0)
(1.05213 0.0811093 0)
(1.06396 0.0792637 0)
(1.07604 0.073129 0)
(1.08689 0.0619127 0)
(1.09457 0.0451671 0)
(1.09666 0.0239664 0)
(1.09124 0.00152112 0)
(1.07785 -0.0192011 0)
(1.05768 -0.0351796 0)
(1.03369 -0.0432815 0)
(1.00867 -0.0427381 0)
(0.98488 -0.034703 0)
(0.965646 -0.0197304 0)
(0.950307 -0.00079174 0)
(0.93368 0.0171974 0)
(0.917057 0.034605 0)
(0.906146 0.0539986 0)
(0.897352 0.0718881 0)
(0.884555 0.085676 0)
(0.875282 0.10321 0)
(0.881735 0.13329 0)
(0.899783 0.171053 0)
(0.912205 0.202432 0)
(0.908727 0.220649 0)
(0.894328 0.232918 0)
(0.88193 0.250287 0)
(0.880446 0.272571 0)
(0.888759 0.28743 0)
(0.899649 0.283253 0)
(0.90765 0.25714 0)
(0.912394 0.212196 0)
(0.916053 0.153079 0)
(0.919865 0.0854785 0)
(0.923132 0.0155398 0)
(0.925476 -0.0526722 0)
(0.928496 -0.118609 0)
(0.933924 -0.17991 0)
(0.940637 -0.229244 0)
(0.945181 -0.258747 0)
(0.945691 -0.266332 0)
(0.943651 -0.255973 0)
(0.941641 -0.233825 0)
(0.940585 -0.205018 0)
(0.939491 -0.173152 0)
(0.936801 -0.141523 0)
(0.931523 -0.113834 0)
(0.923775 -0.0931632 0)
(0.914985 -0.0802739 0)
(0.907544 -0.0732285 0)
(0.903875 -0.068744 0)
(0.90551 -0.064042 0)
(0.912742 -0.0580149 0)
(0.924669 -0.0513685 0)
(0.939367 -0.0458031 0)
(0.954316 -0.0428461 0)
(0.966953 -0.0431109 0)
(0.975116 -0.0459426 0)
(0.977697 -0.0494361 0)
(0.975246 -0.0513361 0)
(0.969616 -0.0501531 0)
(0.962941 -0.0455134 0)
(0.956904 -0.0378612 0)
(0.952523 -0.0280336 0)
(0.950257 -0.0169319 0)
(0.950217 -0.00531872 0)
(0.952367 0.00626335 0)
(0.956605 0.0174299 0)
(0.962759 0.0278034 0)
(0.970549 0.0369408 0)
(0.97963 0.0444661 0)
(0.989673 0.0501627 0)
(1.00038 0.0539461 0)
(1.01142 0.0558134 0)
(1.02249 0.0559148 0)
(1.03338 0.0543108 0)
(1.04381 0.0509322 0)
(1.05321 0.0456372 0)
(1.06093 0.0385652 0)
(1.06667 0.0302138 0)
(1.06988 0.020959 0)
(1.07107 0.0119365 0)
(1.06956 0.00228633 0)
(1.06683 -0.00620821 0)
(1.06146 -0.0161899 0)
(1.05405 -0.0223248 0)
(1.0444 -0.030121 0)
(1.03098 -0.0293786 0)
(1.02187 -0.0329917 0)
(1.00704 -0.0209287 0)
(1.01356 0.0380619 0)
(1.01318 0.0419918 0)
(1.01309 0.0457145 0)
(1.01333 0.0493531 0)
(1.01408 0.0530876 0)
(1.01559 0.0570909 0)
(1.01807 0.0613656 0)
(1.02163 0.0656439 0)
(1.02632 0.0696091 0)
(1.0324 0.0729136 0)
(1.0401 0.0751008 0)
(1.0494 0.0755784 0)
(1.05987 0.0734251 0)
(1.07048 0.0677085 0)
(1.07975 0.057778 0)
(1.08591 0.043379 0)
(1.087 0.0253627 0)
(1.08153 0.00630286 0)
(1.06927 -0.0112922 0)
(1.05122 -0.0250861 0)
(1.02975 -0.0323877 0)
(1.00765 -0.0321206 0)
(0.986805 -0.0253435 0)
(0.969713 -0.0123318 0)
(0.957181 0.00574867 0)
(0.94472 0.0242503 0)
(0.930157 0.040934 0)
(0.918596 0.0584296 0)
(0.911102 0.0763001 0)
(0.901295 0.0907456 0)
(0.890366 0.104983 0)
(0.89045 0.128661 0)
(0.906093 0.163503 0)
(0.92501 0.19842 0)
(0.932578 0.222571 0)
(0.926949 0.237451 0)
(0.918693 0.252405 0)
(0.91914 0.270224 0)
(0.930224 0.282364 0)
(0.945684 0.278261 0)
(0.959218 0.253575 0)
(0.969104 0.209858 0)
(0.976487 0.15133 0)
(0.98202 0.0841277 0)
(0.985091 0.0147084 0)
(0.986008 -0.053196 0)
(0.987205 -0.119611 0)
(0.990374 -0.181626 0)
(0.993131 -0.230669 0)
(0.991223 -0.258643 0)
(0.983487 -0.264654 0)
(0.973147 -0.253819 0)
(0.964498 -0.232207 0)
(0.959331 -0.204032 0)
(0.956366 -0.172187 0)
(0.953115 -0.139917 0)
(0.947766 -0.111318 0)
(0.940011 -0.0899923 0)
(0.931057 -0.0771393 0)
(0.923094 -0.0709937 0)
(0.918383 -0.0681062 0)
(0.918401 -0.065304 0)
(0.923486 -0.0610368 0)
(0.932879 -0.0556254 0)
(0.944901 -0.0505171 0)
(0.957347 -0.0471748 0)
(0.967979 -0.0463174 0)
(0.974924 -0.0475626 0)
(0.977205 -0.0494423 0)
(0.975209 -0.0501177 0)
(0.970429 -0.0482977 0)
(0.964651 -0.0435837 0)
(0.959339 -0.0362708 0)
(0.955437 -0.0270189 0)
(0.953413 -0.0165861 0)
(0.953404 -0.00565461 0)
(0.955398 0.00526764 0)
(0.95933 0.0158175 0)
(0.965074 0.0256484 0)
(0.972379 0.0343465 0)
(0.980923 0.0415418 0)
(0.990389 0.0470095 0)
(1.0005 0.0506664 0)
(1.01091 0.0525085 0)
(1.02133 0.0526611 0)
(1.03151 0.0511819 0)
(1.0412 0.0480353 0)
(1.05 0.0431337 0)
(1.05728 0.0365792 0)
(1.06287 0.0288611 0)
(1.06617 0.0202439 0)
(1.06776 0.0118755 0)
(1.06682 0.00282283 0)
(1.06461 -0.00513263 0)
(1.05989 -0.0144195 0)
(1.05316 -0.0200407 0)
(1.04452 -0.0270107 0)
(1.03199 -0.0263017 0)
(1.02325 -0.0298817 0)
(1.00897 -0.0188292 0)
(1.01215 0.0384071 0)
(1.01194 0.0421193 0)
(1.0121 0.0456477 0)
(1.01262 0.0490436 0)
(1.0136 0.0524307 0)
(1.01525 0.0559613 0)
(1.01782 0.0596828 0)
(1.02141 0.063395 0)
(1.02602 0.066761 0)
(1.03167 0.0693879 0)
(1.03846 0.0708357 0)
(1.04645 0.0706448 0)
(1.05539 0.068204 0)
(1.06447 0.0628721 0)
(1.0724 0.0541649 0)
(1.07759 0.0419285 0)
(1.0783 0.0268343 0)
(1.07326 0.0107717 0)
(1.06233 -0.00398375 0)
(1.04623 -0.0157274 0)
(1.02685 -0.0222696 0)
(1.0069 -0.0223546 0)
(0.988289 -0.0167705 0)
(0.972832 -0.0057284 0)
(0.962134 0.0109407 0)
(0.953378 0.0298284 0)
(0.942275 0.0468264 0)
(0.931139 0.0629074 0)
(0.923943 0.0799234 0)
(0.917072 0.0952453 0)
(0.907186 0.108264 0)
(0.90232 0.126284 0)
(0.912533 0.155613 0)
(0.933699 0.19072 0)
(0.951129 0.21983 0)
(0.95633 0.238783 0)
(0.954619 0.253103 0)
(0.957476 0.26697 0)
(0.970158 0.275796 0)
(0.988741 0.271055 0)
(1.00687 0.247628 0)
(1.02152 0.205503 0)
(1.03251 0.148327 0)
(1.0397 0.0824009 0)
(1.04263 0.0142981 0)
(1.04259 -0.0531247 0)
(1.04268 -0.119891 0)
(1.04376 -0.182112 0)
(1.0419 -0.229893 0)
(1.03255 -0.255394 0)
(1.01599 -0.259474 0)
(0.997383 -0.248561 0)
(0.982439 -0.228396 0)
(0.973457 -0.201849 0)
(0.968837 -0.170762 0)
(0.965305 -0.138224 0)
(0.960299 -0.108821 0)
(0.953048 -0.0868094 0)
(0.944495 -0.0738954 0)
(0.936609 -0.068508 0)
(0.931453 -0.0670515 0)
(0.930396 -0.0659879 0)
(0.933793 -0.0633534 0)
(0.941017 -0.0591119 0)
(0.950646 -0.0544806 0)
(0.960795 -0.0508637 0)
(0.969543 -0.0490753 0)
(0.975292 -0.0489715 0)
(0.97719 -0.0494568 0)
(0.975497 -0.0490523 0)
(0.971402 -0.0466507 0)
(0.966391 -0.0418481 0)
(0.961724 -0.0348239 0)
(0.958258 -0.0260906 0)
(0.956459 -0.0162767 0)
(0.956489 -0.00598414 0)
(0.95835 0.00431346 0)
(0.961996 0.0142703 0)
(0.967343 0.0235705 0)
(0.974185 0.0318357 0)
(0.982214 0.0387076 0)
(0.991112 0.0439509 0)
(1.00061 0.0474798 0)
(1.01042 0.0492959 0)
(1.02022 0.0495092 0)
(1.02978 0.0481712 0)
(1.03882 0.0452614 0)
(1.04701 0.0407367 0)
(1.05377 0.034667 0)
(1.059 0.0275287 0)
(1.06216 0.0194894 0)
(1.06387 0.0117117 0)
(1.06328 0.00325381 0)
(1.06142 -0.00416853 0)
(1.0572 -0.0127724 0)
(1.05103 -0.0179189 0)
(1.04334 -0.0241009 0)
(1.03184 -0.023306 0)
(1.02351 -0.0268374 0)
(1.00988 -0.0167425 0)
(1.01102 0.0386475 0)
(1.01099 0.0420942 0)
(1.01139 0.0453966 0)
(1.01217 0.0485574 0)
(1.01336 0.0516404 0)
(1.01511 0.0547506 0)
(1.01763 0.0579477 0)
(1.02112 0.0611111 0)
(1.02556 0.063955 0)
(1.03085 0.0660809 0)
(1.03694 0.0670259 0)
(1.04377 0.0663699 0)
(1.05117 0.0637153 0)
(1.05863 0.0586854 0)
(1.0652 0.0510137 0)
(1.06953 0.0406389 0)
(1.07015 0.0281195 0)
(1.0659 0.0148734 0)
(1.05647 0.00266912 0)
(1.0424 -0.00712284 0)
(1.02511 -0.0128228 0)
(1.00697 -0.0132195 0)
(0.989962 -0.00873769 0)
(0.975615 0.000414299 0)
(0.965818 0.0151636 0)
(0.959679 0.033795 0)
(0.952577 0.0516322 0)
(0.943418 0.0672486 0)
(0.936311 0.083037 0)
(0.931442 0.09871 0)
(0.924321 0.111997 0)
(0.917345 0.12628 0)
(0.921145 0.149055 0)
(0.939831 0.180765 0)
(0.963572 0.212291 0)
(0.980038 0.235703 0)
(0.987616 0.251413 0)
(0.994737 0.262738 0)
(1.0087 0.26823 0)
(1.02885 0.262152 0)
(1.0501 0.239554 0)
(1.0686 0.199197 0)
(1.0827 0.144044 0)
(1.09143 0.0801804 0)
(1.09466 0.0138647 0)
(1.09457 -0.0527937 0)
(1.0943 -0.119601 0)
(1.09305 -0.18114 0)
(1.08546 -0.226381 0)
(1.06763 -0.248481 0)
(1.04209 -0.250553 0)
(1.01597 -0.240222 0)
(0.995757 -0.222505 0)
(0.983674 -0.198555 0)
(0.977672 -0.168937 0)
(0.973933 -0.136533 0)
(0.969405 -0.106485 0)
(0.962953 -0.083803 0)
(0.955245 -0.0707554 0)
(0.947974 -0.0659864 0)
(0.942941 -0.0657756 0)
(0.941345 -0.0662536 0)
(0.943515 -0.0650814 0)
(0.948952 -0.0619045 0)
(0.956485 -0.057738 0)
(0.964554 -0.0539319 0)
(0.971555 -0.0513812 0)
(0.976148 -0.0501453 0)
(0.977603 -0.0494417 0)
(0.976085 -0.0480989 0)
(0.972531 -0.0451784 0)
(0.968166 -0.0402846 0)
(0.964066 -0.033509 0)
(0.960996 -0.0252438 0)
(0.959403 -0.016004 0)
(0.959472 -0.00631004 0)
(0.961218 0.00339873 0)
(0.964604 0.0127896 0)
(0.96957 0.0215726 0)
(0.975959 0.0294094 0)
(0.983493 0.0359633 0)
(0.99185 0.0409914 0)
(1.00076 0.0443971 0)
(1.00995 0.0461844 0)
(1.01914 0.0464552 0)
(1.02812 0.045262 0)
(1.03657 0.042594 0)
(1.04422 0.0384427 0)
(1.05049 0.0328448 0)
(1.05536 0.0262545 0)
(1.05828 0.0187538 0)
(1.05995 0.0115092 0)
(1.05956 0.00361847 0)
(1.0579 -0.00328315 0)
(1.05403 -0.0112183 0)
(1.04827 -0.0159356 0)
(1.0414 -0.0214092 0)
(1.03103 -0.0204333 0)
(1.02319 -0.023869 0)
(1.0102 -0.0146829 0)
(1.0105 0.0388197 0)
(1.01057 0.0419641 0)
(1.01112 0.0450094 0)
(1.01207 0.0479327 0)
(1.01341 0.0507507 0)
(1.0152 0.0535089 0)
(1.01762 0.056242 0)
(1.02087 0.0588826 0)
(1.02499 0.0612305 0)
(1.02992 0.062945 0)
(1.03546 0.0635714 0)
(1.04139 0.0626845 0)
(1.04751 0.0599721 0)
(1.05344 0.055235 0)
(1.05857 0.0483917 0)
(1.06195 0.0395362 0)
(1.06241 0.0291727 0)
(1.05895 0.0183787 0)
(1.05116 0.00848578 0)
(1.03928 0.000616695 0)
(1.02426 -0.00406694 0)
(1.00796 -0.00455785 0)
(0.992289 -0.0009819 0)
(0.978642 0.00643188 0)
(0.968982 0.0189113 0)
(0.9641 0.036374 0)
(0.960534 0.0548637 0)
(0.954673 0.070955 0)
(0.948422 0.0858344 0)
(0.944543 0.101122 0)
(0.940449 0.115141 0)
(0.934384 0.127904 0)
(0.933342 0.144963 0)
(0.946146 0.170682 0)
(0.97079 0.200955 0)
(0.996086 0.227438 0)
(1.01462 0.245945 0)
(1.02896 0.256853 0)
(1.04553 0.259944 0)
(1.06655 0.252211 0)
(1.08938 0.229856 0)
(1.11031 0.191243 0)
(1.12668 0.138577 0)
(1.13691 0.0773494 0)
(1.1411 0.0131839 0)
(1.14185 -0.0525312 0)
(1.14137 -0.118733 0)
(1.13674 -0.178227 0)
(1.1219 -0.219452 0)
(1.0949 -0.237511 0)
(1.0611 -0.237961 0)
(1.02908 -0.22917 0)
(1.00523 -0.214908 0)
(0.991072 -0.194348 0)
(0.983973 -0.166751 0)
(0.979897 -0.134836 0)
(0.97569 -0.104353 0)
(0.970075 -0.0810946 0)
(0.963476 -0.0679014 0)
(0.95725 -0.0636375 0)
(0.952839 -0.0644795 0)
(0.951195 -0.0662698 0)
(0.952575 -0.0663474 0)
(0.956588 -0.0640903 0)
(0.962319 -0.0603434 0)
(0.968529 -0.0564068 0)
(0.973926 -0.0532385 0)
(0.977418 -0.0510658 0)
(0.978391 -0.0493641 0)
(0.976944 -0.0472207 0)
(0.973809 -0.0438486 0)
(0.969982 -0.0388715 0)
(0.966373 -0.0323153 0)
(0.963658 -0.0244724 0)
(0.962254 -0.0157647 0)
(0.962356 -0.00663743 0)
(0.963999 0.0025149 0)
(0.96715 0.0113707 0)
(0.971758 0.0196568 0)
(0.977703 0.0270718 0)
(0.98475 0.0333096 0)
(0.992591 0.03813 0)
(1.00094 0.0414224 0)
(1.00953 0.0431843 0)
(1.01811 0.0435082 0)
(1.0265 0.042454 0)
(1.0344 0.0400217 0)
(1.04156 0.0362338 0)
(1.04743 0.0310964 0)
(1.05198 0.0250382 0)
(1.0547 0.0180539 0)
(1.05626 0.0112985 0)
(1.05595 0.00394819 0)
(1.05441 -0.00244168 0)
(1.0508 -0.00972038 0)
(1.04532 -0.0140526 0)
(1.03908 -0.018934 0)
(1.02988 -0.0177237 0)
(1.02265 -0.0209868 0)
(1.01027 -0.0126551 0)
(1.01036 0.0389526 0)
(1.01048 0.0417748 0)
(1.01109 0.0445376 0)
(1.01213 0.0472106 0)
(1.01355 0.0497837 0)
(1.01537 0.0522524 0)
(1.01769 0.054605 0)
(1.02065 0.0567842 0)
(1.02436 0.0586598 0)
(1.02882 0.0599865 0)
(1.03385 0.0603822 0)
(1.03912 0.0594391 0)
(1.04429 0.0568571 0)
(1.04901 0.052495 0)
(1.05285 0.0463826 0)
(1.05519 0.0387419 0)
(1.05525 0.0300884 0)
(1.05232 0.021309 0)
(1.046 0.0134365 0)
(1.03631 0.00732311 0)
(1.02375 0.00377613 0)
(1.0096 0.00352904 0)
(0.995379 0.00653306 0)
(0.982344 0.0125262 0)
(0.972381 0.0226771 0)
(0.967471 0.0380969 0)
(0.966151 0.0564143 0)
(0.964036 0.0734079 0)
(0.959969 0.0881846 0)
(0.956812 0.102745 0)
(0.954928 0.117098 0)
(0.951599 0.129858 0)
(0.948951 0.143336 0)
(0.955452 0.162517 0)
(0.975819 0.188084 0)
(1.00453 0.214505 0)
(1.03253 0.235461 0)
(1.0564 0.247819 0)
(1.07853 0.250427 0)
(1.10169 0.241705 0)
(1.1256 0.219356 0)
(1.14778 0.182248 0)
(1.16552 0.132136 0)
(1.17709 0.0738231 0)
(1.18257 0.0119512 0)
(1.18423 -0.0524158 0)
(1.1825 -0.116851 0)
(1.17249 -0.172538 0)
(1.14897 -0.20845 0)
(1.11322 -0.222457 0)
(1.07307 -0.222219 0)
(1.03754 -0.21613 0)
(1.01205 -0.206184 0)
(0.996871 -0.189494 0)
(0.988869 -0.164203 0)
(0.984152 -0.133031 0)
(0.979895 -0.102362 0)
(0.974946 -0.0787222 0)
(0.969552 -0.0654652 0)
(0.96467 -0.0616448 0)
(0.961285 -0.0633522 0)
(0.960005 -0.0661995 0)
(0.960968 -0.0672765 0)
(0.963879 -0.0657577 0)
(0.968075 -0.062354 0)
(0.972636 -0.0583194 0)
(0.976573 -0.0546555 0)
(0.979027 -0.0517204 0)
(0.979501 -0.0491967 0)
(0.978044 -0.0463853 0)
(0.975222 -0.0426316 0)
(0.971837 -0.037587 0)
(0.968651 -0.0312295 0)
(0.96625 -0.0237719 0)
(0.965016 -0.0155557 0)
(0.965145 -0.00696023 0)
(0.96669 0.00166336 0)
(0.969627 0.0100104 0)
(0.973905 0.0178223 0)
(0.979423 0.024827 0)
(0.985988 0.0307508 0)
(0.993323 0.0353664 0)
(1.00113 0.0385538 0)
(1.00916 0.0402986 0)
(1.01716 0.0406771 0)
(1.02497 0.0397556 0)
(1.03232 0.0375455 0)
(1.039 0.0341 0)
(1.04451 0.0294036 0)
(1.04883 0.0238583 0)
(1.0514 0.0173833 0)
(1.05284 0.011093 0)
(1.05257 0.00426942 0)
(1.05107 -0.00162285 0)
(1.04768 -0.00826009 0)
(1.04245 -0.0122343 0)
(1.03666 -0.0166554 0)
(1.02855 -0.0152152 0)
(1.02209 -0.0182085 0)
(1.01029 -0.0106603 0)
(1.01036 0.0390539 0)
(1.01052 0.0415556 0)
(1.01114 0.044025 0)
(1.01219 0.0464327 0)
(1.01364 0.0487604 0)
(1.01547 0.0509776 0)
(1.0177 0.0530314 0)
(1.02042 0.0548423 0)
(1.02372 0.0563057 0)
(1.02763 0.05726 0)
(1.03208 0.057437 0)
(1.03677 0.0565056 0)
(1.04128 0.0541822 0)
(1.04518 0.0503168 0)
(1.04805 0.0449519 0)
(1.04948 0.0383541 0)
(1.049 0.0310505 0)
(1.04624 0.0238287 0)
(1.04098 0.0175588 0)
(1.03318 0.0129374 0)
(1.02306 0.0105239 0)
(1.01131 0.0107859 0)
(0.998941 0.0136454 0)
(0.986857 0.0187353 0)
(0.976614 0.0268449 0)
(0.970775 0.0396597 0)
(0.970013 0.0566436 0)
(0.97095 0.0741806 0)
(0.970145 0.0896089 0)
(0.968436 0.103757 0)
(0.967904 0.117847 0)
(0.967447 0.130982 0)
(0.966175 0.143045 0)
(0.968875 0.157175 0)
(0.982634 0.176389 0)
(1.00857 0.19916 0)
(1.04084 0.220167 0)
(1.07307 0.234189 0)
(1.10295 0.238019 0)
(1.13105 0.229826 0)
(1.1575 0.208289 0)
(1.18103 0.172848 0)
(1.19984 0.125229 0)
(1.21241 0.0697552 0)
(1.2187 0.0100674 0)
(1.22007 -0.0519573 0)
(1.2147 -0.112946 0)
(1.19708 -0.163071 0)
(1.16481 -0.193181 0)
(1.12245 -0.203922 0)
(1.079 -0.204353 0)
(1.04277 -0.202085 0)
(1.01749 -0.196966 0)
(1.00209 -0.184216 0)
(0.99317 -0.161224 0)
(0.987413 -0.130937 0)
(0.982671 -0.100372 0)
(0.978139 -0.0766603 0)
(0.973953 -0.0635314 0)
(0.970613 -0.0601574 0)
(0.968543 -0.0625562 0)
(0.967931 -0.0661844 0)
(0.968758 -0.0679784 0)
(0.970819 -0.0669855 0)
(0.973703 -0.0638227 0)
(0.976802 -0.0597013 0)
(0.979417 -0.0556442 0)
(0.980907 -0.0521024 0)
(0.980878 -0.0489179 0)
(0.979352 -0.0455642 0)
(0.976758 -0.041501 0)
(0.973732 -0.0364106 0)
(0.970904 -0.0302387 0)
(0.968777 -0.0231367 0)
(0.967695 -0.0153759 0)
(0.967847 -0.00727738 0)
(0.969296 0.000844198 0)
(0.97203 0.008707 0)
(0.976002 0.0160684 0)
(0.981118 0.0226787 0)
(0.987213 0.0282936 0)
(0.994047 0.0327044 0)
(1.00134 0.0357897 0)
(1.00884 0.037524 0)
(1.01629 0.0379627 0)
(1.02355 0.0371725 0)
(1.03036 0.0351722 0)
(1.03658 0.0320425 0)
(1.04174 0.027758 0)
(1.04583 0.0226983 0)
(1.04831 0.016731 0)
(1.04964 0.010898 0)
(1.04939 0.00458876 0)
(1.04793 -0.000822856 0)
(1.04476 -0.00683929 0)
(1.0398 -0.0104567 0)
(1.0343 -0.0145357 0)
(1.02711 -0.0129301 0)
(1.02153 -0.0155691 0)
(1.01038 -0.00870275 0)
(1.01039 0.0391112 0)
(1.01059 0.0413132 0)
(1.01121 0.0434979 0)
(1.01223 0.0456352 0)
(1.01364 0.0477083 0)
(1.01543 0.0496846 0)
(1.0176 0.0514947 0)
(1.02014 0.0530336 0)
(1.02308 0.0541841 0)
(1.02647 0.0548218 0)
(1.03029 0.0547798 0)
(1.03435 0.0538436 0)
(1.0383 0.0517978 0)
(1.04166 0.0484949 0)
(1.04396 0.0439364 0)
(1.04479 0.0383427 0)
(1.04387 0.0321856 0)
(1.04105 0.026167 0)
(1.03636 0.0210773 0)
(1.02992 0.017568 0)
(1.02188 0.0160961 0)
(1.01254 0.0169657 0)
(1.0024 0.0200515 0)
(0.991876 0.0248304 0)
(0.981902 0.0315226 0)
(0.974909 0.0417103 0)
(0.97318 0.0563081 0)
(0.975522 0.0733221 0)
(0.978041 0.0895312 0)
(0.978957 0.103956 0)
(0.97979 0.117646 0)
(0.981407 0.130784 0)
(0.982772 0.142596 0)
(0.985078 0.153969 0)
(0.993633 0.167559 0)
(1.01321 0.184536 0)
(1.04317 0.2024 0)
(1.07861 0.216252 0)
(1.11468 0.221413 0)
(1.14874 0.214922 0)
(1.17957 0.195343 0)
(1.20596 0.162367 0)
(1.22633 0.117824 0)
(1.23959 0.0653193 0)
(1.24604 0.0083243 0)
(1.24507 -0.0500392 0)
(1.23335 -0.10576 0)
(1.20777 -0.149469 0)
(1.1693 -0.174357 0)
(1.12403 -0.183238 0)
(1.08085 -0.185744 0)
(1.0465 -0.188035 0)
(1.0227 -0.187738 0)
(1.00733 -0.178581 0)
(0.997237 -0.157657 0)
(0.990026 -0.128344 0)
(0.984458 -0.0982357 0)
(0.98018 -0.0748721 0)
(0.97722 -0.0621636 0)
(0.975556 -0.0592934 0)
(0.974974 -0.0622169 0)
(0.975201 -0.0663309 0)
(0.976055 -0.0685338 0)
(0.977431 -0.0678329 0)
(0.979169 -0.0647926 0)
(0.980965 -0.0605815 0)
(0.982387 -0.0562184 0)
(0.982988 -0.0522096 0)
(0.98247 -0.0485119 0)
(0.980834 -0.0447342 0)
(0.978398 -0.0404332 0)
(0.97566 -0.035323 0)
(0.973133 -0.0293308 0)
(0.971242 -0.0225585 0)
(0.970293 -0.015221 0)
(0.970462 -0.00759217 0)
(0.971818 5.24088e-05 0)
(0.974359 0.00745614 0)
(0.978043 0.0143904 0)
(0.982781 0.0206254 0)
(0.988428 0.0259415 0)
(0.994772 0.0301493 0)
(1.00156 0.0331319 0)
(1.00855 0.0348572 0)
(1.01549 0.0353599 0)
(1.02224 0.034703 0)
(1.02854 0.0329047 0)
(1.03431 0.0300677 0)
(1.03912 0.0261626 0)
(1.04299 0.0215573 0)
(1.04537 0.0160898 0)
(1.04662 0.0107103 0)
(1.04638 0.00490619 0)
(1.04497 -4.06009e-05 0)
(1.04201 -0.00547044 0)
(1.03741 -0.00871511 0)
(1.03214 -0.0125262 0)
(1.02563 -0.0108623 0)
(1.02094 -0.0131068 0)
(1.01053 -0.00680121 0)
(1.01041 0.0391119 0)
(1.01067 0.0410446 0)
(1.01129 0.04297 0)
(1.01226 0.0448494 0)
(1.01359 0.0466659 0)
(1.01529 0.0483966 0)
(1.01736 0.0499828 0)
(1.01976 0.0513157 0)
(1.02244 0.0522588 0)
(1.0254 0.0526807 0)
(1.02861 0.0524629 0)
(1.03201 0.0514921 0)
(1.03536 0.0496597 0)
(1.03827 0.0468761 0)
(1.04026 0.043125 0)
(1.04087 0.0385425 0)
(1.03979 0.033474 0)
(1.03695 0.0284837 0)
(1.03254 0.0242709 0)
(1.02689 0.021489 0)
(1.0203 0.0206244 0)
(1.01301 0.0219684 0)
(1.00517 0.0254193 0)
(0.996751 0.030369 0)
(0.987932 0.0364511 0)
(0.980359 0.0445892 0)
(0.976894 0.0563139 0)
(0.978672 0.0714754 0)
(0.983263 0.0877011 0)
(0.987404 0.102798 0)
(0.990501 0.116527 0)
(0.993781 0.129381 0)
(0.997479 0.141065 0)
(1.00147 0.151341 0)
(1.00808 0.161369 0)
(1.02179 0.172819 0)
(1.04544 0.18554 0)
(1.07779 0.196569 0)
(1.11479 0.201501 0)
(1.15216 0.196532 0)
(1.18669 0.17943 0)
(1.21596 0.149747 0)
(1.23812 0.109049 0)
(1.25237 0.0604601 0)
(1.25803 0.00776286 0)
(1.25286 -0.0456814 0)
(1.23522 -0.0951712 0)
(1.20517 -0.132811 0)
(1.1649 -0.153694 0)
(1.12082 -0.162188 0)
(1.08103 -0.167766 0)
(1.05031 -0.174736 0)
(1.02848 -0.1787 0)
(1.0129 -0.172462 0)
(1.00118 -0.153272 0)
(0.992166 -0.125062 0)
(0.985618 -0.095861 0)
(0.981602 -0.0733655 0)
(0.979955 -0.0614344 0)
(0.980048 -0.0591442 0)
(0.980995 -0.0624122 0)
(0.982076 -0.0666939 0)
(0.982984 -0.068981 0)
(0.98374 -0.0683313 0)
(0.984442 -0.0652924 0)
(0.985065 -0.0609843 0)
(0.985413 -0.0563936 0)
(0.985206 -0.0520441 0)
(0.984226 -0.0479681 0)
(0.982456 -0.0438769 0)
(0.980125 -0.0394077 0)
(0.977616 -0.0343072 0)
(0.975339 -0.0284923 0)
(0.97365 -0.0220302 0)
(0.972814 -0.01509 0)
(0.972994 -0.00790118 0)
(0.974259 -0.000706743 0)
(0.976615 0.00626135 0)
(0.980025 0.0127891 0)
(0.984408 0.0186666 0)
(0.989629 0.0236961 0)
(0.995502 0.0277056 0)
(1.0018 0.0305845 0)
(1.00829 0.0322982 0)
(1.01475 0.0328638 0)
(1.02102 0.0323404 0)
(1.02686 0.03074 0)
(1.03221 0.028179 0)
(1.03667 0.0246279 0)
(1.04029 0.0204422 0)
(1.04257 0.0154599 0)
(1.04374 0.0105294 0)
(1.04352 0.00521588 0)
(1.04218 0.000718507 0)
(1.03944 -0.004173 0)
(1.03526 -0.00702825 0)
(1.03025 -0.0105888 0)
(1.0242 -0.00897755 0)
(1.02028 -0.0108443 0)
(1.01072 -0.00498338 0)
(1.01041 0.0390481 0)
(1.01073 0.0407406 0)
(1.01136 0.0424377 0)
(1.01229 0.0440878 0)
(1.01353 0.0456646 0)
(1.01509 0.0471515 0)
(1.01701 0.0485123 0)
(1.01925 0.0496626 0)
(1.02174 0.0504692 0)
(1.02439 0.0507839 0)
(1.02713 0.0504844 0)
(1.02991 0.0495006 0)
(1.03262 0.0478129 0)
(1.03503 0.0454279 0)
(1.03676 0.0423757 0)
(1.03735 0.0387479 0)
(1.03643 0.0347536 0)
(1.03384 0.0307668 0)
(1.02972 0.0273228 0)
(1.02453 0.0250254 0)
(1.01876 0.0244258 0)
(1.01285 0.0259294 0)
(1.00694 0.0295947 0)
(1.00077 0.0348973 0)
(0.993928 0.0410668 0)
(0.986919 0.0481285 0)
(0.982056 0.057311 0)
(0.981901 0.0696918 0)
(0.986455 0.084558 0)
(0.993015 0.0998508 0)
(0.999163 0.114062 0)
(1.00468 0.126897 0)
(1.01028 0.138334 0)
(1.01624 0.148106 0)
(1.0233 0.156369 0)
(1.03399 0.164057 0)
(1.05151 0.171821 0)
(1.07727 0.178555 0)
(1.10977 0.181244 0)
(1.14547 0.176388 0)
(1.18014 0.161447 0)
(1.21016 0.135316 0)
(1.23322 0.0987995 0)
(1.24753 0.0552321 0)
(1.25128 0.00839485 0)
(1.24345 -0.0391064 0)
(1.22426 -0.08262 0)
(1.19428 -0.115103 0)
(1.15605 -0.133176 0)
(1.11617 -0.142353 0)
(1.08173 -0.151413 0)
(1.05538 -0.162565 0)
(1.03537 -0.169776 0)
(1.01904 -0.16559 0)
(1.00522 -0.147819 0)
(0.994201 -0.120962 0)
(0.986714 -0.0932453 0)
(0.983113 -0.0722121 0)
(0.982882 -0.0614253 0)
(0.984703 -0.0597587 0)
(0.987038 -0.0631514 0)
(0.988802 -0.0672606 0)
(0.989644 -0.0693071 0)
(0.989753 -0.0684805 0)
(0.989478 -0.0653359 0)
(0.989036 -0.0609303 0)
(0.988426 -0.0561873 0)
(0.987498 -0.0516136 0)
(0.986094 -0.0472822 0)
(0.984183 -0.0429791 0)
(0.98192 -0.038408 0)
(0.979591 -0.033348 0)
(0.977521 -0.0277125 0)
(0.976002 -0.021544 0)
(0.97526 -0.0149769 0)
(0.975444 -0.00820253 0)
(0.976621 -0.0014318 0)
(0.9788 0.00512164 0)
(0.981948 0.0112635 0)
(0.985992 0.0168012 0)
(0.99081 0.0215569 0)
(0.996237 0.0253748 0)
(1.00206 0.0281507 0)
(1.00808 0.029849 0)
(1.01407 0.0304728 0)
(1.0199 0.030079 0)
(1.02531 0.0286724 0)
(1.03027 0.0263753 0)
(1.0344 0.0231609 0)
(1.03775 0.019364 0)
(1.0399 0.0148468 0)
(1.041 0.0103542 0)
(1.04081 0.00551139 0)
(1.03956 0.00144216 0)
(1.03701 -0.00296018 0)
(1.03328 -0.00542592 0)
(1.02863 -0.00870804 0)
(1.0229 -0.00722349 0)
(1.01957 -0.00878219 0)
(1.01091 -0.00327214 0)
(1.01037 0.0389223 0)
(1.01074 0.0403955 0)
(1.0114 0.04189 0)
(1.01231 0.0433438 0)
(1.01347 0.0447154 0)
(1.0149 0.0459817 0)
(1.01664 0.0471217 0)
(1.01867 0.0480866 0)
(1.02095 0.0487767 0)
(1.02337 0.0490514 0)
(1.02578 0.0487717 0)
(1.0281 0.0478552 0)
(1.03024 0.0463088 0)
(1.0321 0.0442132 0)
(1.03348 0.0416828 0)
(1.03404 0.0388411 0)
(1.03343 0.0358289 0)
(1.03134 0.032848 0)
(1.02778 0.0302156 0)
(1.02306 0.0283771 0)
(1.01778 0.0278637 0)
(1.01256 0.0292068 0)
(1.00785 0.0327245 0)
(1.00355 0.0381813 0)
(0.99899 0.0447417 0)
(0.993705 0.0516797 0)
(0.988718 0.0593229 0)
(0.986584 0.0689146 0)
(0.989269 0.0811977 0)
(0.996161 0.0953823 0)
(1.00481 0.109759 0)
(1.01329 0.122981 0)
(1.02123 0.13446 0)
(1.02904 0.143939 0)
(1.03731 0.151322 0)
(1.0473 0.156926 0)
(1.0611 0.161259 0)
(1.08069 0.164025 0)
(1.10649 0.163576 0)
(1.13658 0.157585 0)
(1.16733 0.143788 0)
(1.19522 0.120579 0)
(1.21731 0.0884456 0)
(1.23054 0.0505841 0)
(1.23317 0.00985024 0)
(1.22548 -0.0320085 0)
(1.20788 -0.0702014 0)
(1.18056 -0.0981979 0)
(1.14655 -0.114262 0)
(1.11261 -0.124789 0)
(1.08441 -0.137238 0)
(1.06243 -0.151586 0)
(1.04373 -0.160731 0)
(1.02614 -0.157667 0)
(1.00996 -0.141104 0)
(0.996952 -0.116006 0)
(0.988722 -0.0904612 0)
(0.985704 -0.0715052 0)
(0.986863 -0.0621746 0)
(0.990152 -0.0610979 0)
(0.993481 -0.0643446 0)
(0.99555 -0.0679341 0)
(0.996072 -0.0694428 0)
(0.995436 -0.0682509 0)
(0.994212 -0.0649262 0)
(0.992807 -0.0604399 0)
(0.991359 -0.0556219 0)
(0.989806 -0.0509317 0)
(0.988029 -0.0464558 0)
(0.985984 -0.0420328 0)
(0.983764 -0.0374212 0)
(0.981577 -0.0324317 0)
(0.979677 -0.0269807 0)
(0.978299 -0.0210929 0)
(0.977634 -0.0148777 0)
(0.977814 -0.00849318 0)
(0.978903 -0.00212663 0)
(0.980913 0.00403615 0)
(0.983812 0.0098128 0)
(0.987536 0.0150279 0)
(0.991971 0.0195225 0)
(0.996973 0.0231562 0)
(1.00235 0.0258311 0)
(1.00791 0.0275112 0)
(1.01345 0.0281879 0)
(1.01885 0.0279169 0)
(1.02387 0.0266974 0)
(1.02846 0.0246535 0)
(1.03229 0.0217624 0)
(1.03538 0.0183311 0)
(1.03739 0.0142552 0)
(1.03841 0.0101847 0)
(1.03824 0.00579072 0)
(1.0371 0.00212736 0)
(1.03474 -0.00183292 0)
(1.03142 -0.00393453 0)
(1.02722 -0.00689585 0)
(1.02181 -0.00555603 0)
(1.01884 -0.0068953 0)
(1.01106 -0.00168156 0)
(1.0103 0.0387401 0)
(1.01071 0.0400098 0)
(1.01139 0.0413176 0)
(1.01229 0.0426001 0)
(1.0134 0.0438041 0)
(1.01472 0.0448919 0)
(1.01628 0.0458406 0)
(1.01808 0.0466249 0)
(1.02012 0.0471892 0)
(1.0223 0.0474325 0)
(1.02448 0.0472255 0)
(1.02651 0.0464623 0)
(1.02825 0.0451212 0)
(1.02964 0.0432897 0)
(1.0306 0.0411375 0)
(1.03099 0.0388582 0)
(1.03058 0.0366164 0)
(1.02907 0.0345384 0)
(1.0263 0.0327602 0)
(1.02234 0.0315043 0)
(1.01759 0.0311443 0)
(1.01275 0.032208 0)
(1.00852 0.0352274 0)
(1.00525 0.0403737 0)
(1.00257 0.0471142 0)
(0.99956 0.0544225 0)
(0.995951 0.061675 0)
(0.993117 0.0693914 0)
(0.9935 0.078801 0)
(0.998589 0.090526 0)
(1.00765 0.103827 0)
(1.01852 0.117139 0)
(1.0294 0.129046 0)
(1.03962 0.1387 0)
(1.0495 0.145754 0)
(1.05985 0.150305 0)
(1.07198 0.152633 0)
(1.08752 0.152613 0)
(1.10749 0.149485 0)
(1.13107 0.142026 0)
(1.15605 0.128502 0)
(1.17978 0.107374 0)
(1.19897 0.079213 0)
(1.21027 0.046601 0)
(1.21263 0.0112001 0)
(1.2067 -0.0256336 0)
(1.19199 -0.0589107 0)
(1.16831 -0.0829029 0)
(1.13946 -0.0977057 0)
(1.11207 -0.110032 0)
(1.09001 -0.125387 0)
(1.07176 -0.141621 0)
(1.05376 -0.151291 0)
(1.03467 -0.148502 0)
(1.01627 -0.133082 0)
(1.00161 -0.110267 0)
(0.992925 -0.0876101 0)
(0.990519 -0.0712755 0)
(0.992739 -0.0635928 0)
(0.996895 -0.0629732 0)
(1.00054 -0.0657703 0)
(1.00236 -0.0685267 0)
(1.00222 -0.0692694 0)
(1.00071 -0.0675939 0)
(0.998564 -0.0640645 0)
(0.996307 -0.0595387 0)
(0.99415 -0.0547268 0)
(0.992078 -0.0500194 0)
(0.989991 -0.0454969 0)
(0.987828 -0.041035 0)
(0.985639 -0.0364383 0)
(0.983566 -0.0315471 0)
(0.981804 -0.0262862 0)
(0.980541 -0.0206714 0)
(0.979938 -0.0147875 0)
(0.980107 -0.00877257 0)
(0.981108 -0.00278644 0)
(0.982955 0.00300724 0)
(0.985617 0.00843871 0)
(0.989036 0.0133484 0)
(0.993109 0.0175938 0)
(0.997708 0.0210498 0)
(1.00265 0.0236255 0)
(1.00779 0.0252847 0)
(1.0129 0.02601 0)
(1.0179 0.0258542 0)
(1.02254 0.024814 0)
(1.02678 0.0230113 0)
(1.03031 0.0204301 0)
(1.03317 0.0173463 0)
(1.03504 0.0136867 0)
(1.036 0.010021 0)
(1.03583 0.00605285 0)
(1.03481 0.00277868 0)
(1.03264 -0.000780601 0)
(1.02965 -0.00256417 0)
(1.02594 -0.00518497 0)
(1.02091 -0.00395723 0)
(1.01818 -0.00514829 0)
(1.0112 -0.000209382 0)
(1.0102 0.0385097 0)
(1.01064 0.0395944 0)
(1.01132 0.0407259 0)
(1.0122 0.0418496 0)
(1.01328 0.0429111 0)
(1.01453 0.043862 0)
(1.01594 0.0446673 0)
(1.01754 0.0453035 0)
(1.01931 0.0457437 0)
(1.02123 0.0459348 0)
(1.02318 0.0457894 0)
(1.025 0.0452088 0)
(1.02653 0.0441379 0)
(1.02763 0.0426186 0)
(1.02827 0.0408053 0)
(1.02841 0.0389255 0)
(1.02799 0.037204 0)
(1.02688 0.0357948 0)
(1.02488 0.0347699 0)
(1.02188 0.034184 0)
(1.01799 0.0341878 0)
(1.01366 0.0351337 0)
(1.00962 0.0375677 0)
(1.00661 0.0419771 0)
(1.00484 0.0483312 0)
(1.00373 0.0558306 0)
(1.00232 0.0633614 0)
(1.00053 0.0704612 0)
(0.999825 0.0778201 0)
(1.00243 0.0866493 0)
(1.00962 0.097497 0)
(1.02067 0.109671 0)
(1.03361 0.121632 0)
(1.04668 0.13181 0)
(1.05904 0.139214 0)
(1.07074 0.143578 0)
(1.0826 0.144945 0)
(1.09599 0.143247 0)
(1.1119 0.138314 0)
(1.13015 0.129647 0)
(1.14973 0.116014 0)
(1.16877 0.0963567 0)
(1.18422 0.0714952 0)
(1.19351 0.0431176 0)
(1.19619 0.0119251 0)
(1.19218 -0.0204728 0)
(1.17999 -0.0490975 0)
(1.1598 -0.0696303 0)
(1.13624 -0.0839071 0)
(1.11522 -0.0982163 0)
(1.09849 -0.115673 0)
(1.083 -0.132383 0)
(1.06523 -0.141303 0)
(1.04488 -0.138149 0)
(1.02492 -0.12394 0)
(1.00928 -0.103931 0)
(1.00046 -0.0847573 0)
(0.998435 -0.0714005 0)
(1.00101 -0.0653858 0)
(1.00509 -0.0650068 0)
(1.00816 -0.0670739 0)
(1.00907 -0.0687796 0)
(1.00792 -0.0686435 0)
(1.00544 -0.0664613 0)
(1.00245 -0.0627622 0)
(0.999475 -0.0582642 0)
(0.996752 -0.0535414 0)
(0.994275 -0.0489049 0)
(0.991946 -0.0444195 0)
(0.989693 -0.0399873 0)
(0.987528 -0.0354528 0)
(0.985549 -0.0306855 0)
(0.983898 -0.0256215 0)
(0.982729 -0.0202709 0)
(0.982172 -0.0147026 0)
(0.982323 -0.00903578 0)
(0.983238 -0.00340519 0)
(0.984927 0.00203521 0)
(0.987363 0.00713827 0)
(0.990494 0.0117594 0)
(0.994224 0.0157689 0)
(0.998442 0.0190546 0)
(1.00298 0.0215331 0)
(1.00771 0.023169 0)
(1.01242 0.0239392 0)
(1.01702 0.0238915 0)
(1.02131 0.0230222 0)
(1.02521 0.0214481 0)
(1.02848 0.0191616 0)
(1.03112 0.0164092 0)
(1.03284 0.013141 0)
(1.03375 0.00986137 0)
(1.0336 0.00629669 0)
(1.03268 0.00339078 0)
(1.0307 0.000203375 0)
(1.02799 -0.00130682 0)
(1.02473 -0.0035955 0)
(1.02017 -0.00243485 0)
(1.01761 -0.00351044 0)
(1.01134 0.00115663 0)
(1.01007 0.0382303 0)
(1.01055 0.0391553 0)
(1.01122 0.0401256 0)
(1.01207 0.0410987 0)
(1.01311 0.0420285 0)
(1.01429 0.0428671 0)
(1.01561 0.0435716 0)
(1.01705 0.0441093 0)
(1.0186 0.0444579 0)
(1.02024 0.0445932 0)
(1.02193 0.0444743 0)
(1.02354 0.0440414 0)
(1.02493 0.0432414 0)
(1.02592 0.0420743 0)
(1.02642 0.0406342 0)
(1.0264 0.0391129 0)
(1.02589 0.0377514 0)
(1.02492 0.0367583 0)
(1.02343 0.0362467 0)
(1.0213 0.0362358 0)
(1.01845 0.036727 0)
(1.015 0.0378402 0)
(1.0114 0.0399309 0)
(1.0084 0.0435288 0)
(1.0067 0.0489864 0)
(1.00641 0.0560309 0)
(1.00684 0.0637076 0)
(1.00709 0.070983 0)
(1.00717 0.077589 0)
(1.00853 0.084301 0)
(1.01312 0.0922862 0)
(1.02196 0.102027 0)
(1.03451 0.112757 0)
(1.04916 0.122885 0)
(1.06409 0.13091 0)
(1.07816 0.135896 0)
(1.09135 0.137317 0)
(1.1045 0.134998 0)
(1.11831 0.129148 0)
(1.13305 0.119714 0)
(1.14852 0.105937 0)
(1.16347 0.0874368 0)
(1.17559 0.0651302 0)
(1.18332 0.0399064 0)
(1.18628 0.0121172 0)
(1.18338 -0.0162176 0)
(1.17286 -0.040523 0)
(1.15591 -0.0583652 0)
(1.13751 -0.0728644 0)
(1.12206 -0.0890786 0)
(1.10922 -0.107624 0)
(1.09521 -0.123513 0)
(1.07728 -0.130762 0)
(1.05627 -0.126925 0)
(1.03588 -0.114095 0)
(1.0202 -0.0972716 0)
(1.01153 -0.0818815 0)
(1.00944 -0.0715587 0)
(1.0114 -0.0670442 0)
(1.0143 -0.0666625 0)
(1.01589 -0.0678221 0)
(1.01535 -0.0684182 0)
(1.01296 -0.0674392 0)
(1.00952 -0.0648319 0)
(1.00579 -0.0610541 0)
(1.00227 -0.0566694 0)
(0.999138 -0.0521146 0)
(0.996371 -0.0476229 0)
(0.993871 -0.0432414 0)
(0.991557 -0.0388946 0)
(0.989418 -0.0344617 0)
(0.987516 -0.02984 0)
(0.985957 -0.0249783 0)
(0.984862 -0.0198846 0)
(0.984338 -0.0146194 0)
(0.984466 -0.00927966 0)
(0.985293 -0.00398776 0)
(0.986829 0.00112073 0)
(0.989049 0.0059137 0)
(0.991909 0.0102619 0)
(0.995316 0.0140476 0)
(0.999173 0.0171702 0)
(1.00333 0.0195535 0)
(1.00766 0.0211633 0)
(1.012 0.0219745 0)
(1.01623 0.0220282 0)
(1.02017 0.0213218 0)
(1.02376 0.0199641 0)
(1.02677 0.0179558 0)
(1.0292 0.0155184 0)
(1.03079 0.0126164 0)
(1.03166 0.00970305 0)
(1.03153 0.0065211 0)
(1.03071 0.00395919 0)
(1.02893 0.00112216 0)
(1.02647 -0.000148053 0)
(1.02359 -0.00213496 0)
(1.01952 -0.00100593 0)
(1.01715 -0.00197091 0)
(1.01149 0.00242369 0)
(1.00992 0.0378958 0)
(1.01043 0.0386901 0)
(1.0111 0.0395227 0)
(1.01193 0.0403598 0)
(1.0129 0.0411656 0)
(1.01401 0.0419012 0)
(1.01525 0.0425264 0)
(1.01657 0.0430043 0)
(1.01796 0.0433068 0)
(1.01939 0.0434147 0)
(1.02082 0.043312 0)
(1.0222 0.0429784 0)
(1.02343 0.0423917 0)
(1.02435 0.0415479 0)
(1.02485 0.0404946 0)
(1.02484 0.0393559 0)
(1.02434 0.0383234 0)
(1.02343 0.0376089 0)
(1.02218 0.0373798 0)
(1.0206 0.0377114 0)
(1.01863 0.0385938 0)
(1.01622 0.0400171 0)
(1.01346 0.0421053 0)
(1.01081 0.0451867 0)
(1.00899 0.0496698 0)
(1.00864 0.0557076 0)
(1.00976 0.0628695 0)
(1.01165 0.0702043 0)
(1.01356 0.0768484 0)
(1.01557 0.0827467 0)
(1.01882 0.0887394 0)
(1.02493 0.0957922 0)
(1.03493 0.104091 0)
(1.0485 0.112854 0)
(1.0641 0.12077 0)
(1.08006 0.126394 0)
(1.09549 0.128502 0)
(1.11015 0.126583 0)
(1.12408 0.120838 0)
(1.1376 0.111337 0)
(1.15091 0.0977414 0)
(1.16324 0.0802872 0)
(1.17318 0.0598758 0)
(1.17991 0.0369692 0)
(1.18271 0.0120882 0)
(1.17996 -0.0123887 0)
(1.17061 -0.0329622 0)
(1.15679 -0.0491107 0)
(1.14295 -0.0643724 0)
(1.1314 -0.0819651 0)
(1.12033 -0.100418 0)
(1.10632 -0.114507 0)
(1.08801 -0.11973 0)
(1.06721 -0.115334 0)
(1.0477 -0.104139 0)
(1.03303 -0.0906234 0)
(1.0248 -0.0789024 0)
(1.02215 -0.0713134 0)
(1.02259 -0.0679731 0)
(1.02344 -0.0673918 0)
(1.02296 -0.0676317 0)
(1.0207 -0.0672452 0)
(1.01708 -0.0656037 0)
(1.01283 -0.0627378 0)
(1.00857 -0.0590068 0)
(1.00469 -0.0548236 0)
(1.0013 -0.0505025 0)
(0.998357 -0.0462109 0)
(0.995753 -0.041983 0)
(0.993407 -0.0377636 0)
(0.991296 -0.0334632 0)
(0.98946 -0.0290045 0)
(0.987976 -0.0243498 0)
(0.986939 -0.0195081 0)
(0.986436 -0.0145308 0)
(0.986535 -0.00950326 0)
(0.987275 -0.00453282 0)
(0.988663 0.000263148 0)
(0.990679 0.00476367 0)
(0.99328 0.0088542 0)
(0.996384 0.0124282 0)
(0.999901 0.0153953 0)
(1.0037 0.017686 0)
(1.00766 0.0192677 0)
(1.01163 0.0201153 0)
(1.01552 0.0202635 0)
(1.01913 0.0197116 0)
(1.02243 0.0185588 0)
(1.02519 0.0168119 0)
(1.02743 0.0146726 0)
(1.02889 0.0121126 0)
(1.02972 0.00954375 0)
(1.02962 0.00672421 0)
(1.02889 0.00448163 0)
(1.02731 0.00197722 0)
(1.02509 0.000920647 0)
(1.02253 -0.000801487 0)
(1.01892 0.000318651 0)
(1.01675 -0.000533151 0)
(1.01168 0.00359651 0)
(1.00974 0.0375022 0)
(1.01029 0.038191 0)
(1.01097 0.038912 0)
(1.01177 0.0396355 0)
(1.01269 0.0403325 0)
(1.01373 0.0409732 0)
(1.01487 0.0415263 0)
(1.01609 0.0419603 0)
(1.01736 0.0422463 0)
(1.01863 0.0423624 0)
(1.01988 0.0422965 0)
(1.02105 0.0420455 0)
(1.0221 0.0416146 0)
(1.02293 0.0410195 0)
(1.02344 0.0402998 0)
(1.02354 0.0395334 0)
(1.02318 0.0388453 0)
(1.02241 0.0383966 0)
(1.02134 0.0383511 0)
(1.02006 0.0388303 0)
(1.01864 0.0398878 0)
(1.01705 0.0415259 0)
(1.01525 0.0437535 0)
(1.01338 0.0466672 0)
(1.01185 0.0504956 0)
(1.0113 0.0554865 0)
(1.01223 0.0616097 0)
(1.01461 0.0683417 0)
(1.01788 0.0748828 0)
(1.02137 0.0807191 0)
(1.02508 0.0859798 0)
(1.02994 0.0912519 0)
(1.03734 0.0970959 0)
(1.048 0.103624 0)
(1.06161 0.110205 0)
(1.07721 0.115464 0)
(1.09368 0.117915 0)
(1.1099 0.116762 0)
(1.12513 0.111856 0)
(1.13936 0.103026 0)
(1.15263 0.0901881 0)
(1.1643 0.073963 0)
(1.17352 0.0552156 0)
(1.17982 0.0343622 0)
(1.18226 0.012274 0)
(1.17942 -0.00865069 0)
(1.17128 -0.0263592 0)
(1.16033 -0.0416761 0)
(1.14971 -0.0576664 0)
(1.13988 -0.0756666 0)
(1.12858 -0.0929695 0)
(1.11362 -0.104877 0)
(1.09514 -0.108399 0)
(1.07556 -0.103999 0)
(1.0581 -0.0947285 0)
(1.04521 -0.0843426 0)
(1.03759 -0.0757592 0)
(1.03409 -0.0703039 0)
(1.03258 -0.0677329 0)
(1.03108 -0.066854 0)
(1.02851 -0.0663306 0)
(1.02472 -0.0652364 0)
(1.02014 -0.0632016 0)
(1.01536 -0.0602772 0)
(1.01082 -0.0567173 0)
(1.00678 -0.0528061 0)
(1.00327 -0.048762 0)
(1.00024 -0.0447051 0)
(0.997584 -0.0406636 0)
(0.995231 -0.0366014 0)
(0.993153 -0.0324565 0)
(0.991374 -0.0281746 0)
(0.989951 -0.0237304 0)
(0.98896 -0.0191349 0)
(0.988468 -0.0144342 0)
(0.988532 -0.00970458 0)
(0.989185 -0.00503699 0)
(0.990431 -0.000539598 0)
(0.992251 0.00368799 0)
(0.994609 0.00753538 0)
(0.997426 0.0109088 0)
(1.00062 0.0137278 0)
(1.00408 0.015929 0)
(1.0077 0.0174812 0)
(1.01133 0.0183609 0)
(1.01488 0.0185967 0)
(1.01819 0.0181901 0)
(1.02121 0.0172308 0)
(1.02374 0.0157291 0)
(1.0258 0.0138704 0)
(1.02714 0.0116293 0)
(1.02792 0.00938259 0)
(1.02785 0.00690431 0)
(1.02722 0.00495797 0)
(1.02581 0.00276599 0)
(1.02383 0.00190337 0)
(1.02155 0.00041845 0)
(1.01837 0.00153637 0)
(1.01642 0.000799958 0)
(1.0119 0.00467801 0)
(1.00954 0.0370514 0)
(1.01013 0.0376538 0)
(1.01081 0.0382847 0)
(1.0116 0.0389175 0)
(1.01248 0.0395269 0)
(1.01345 0.0400881 0)
(1.0145 0.0405775 0)
(1.01562 0.0409723 0)
(1.01678 0.0412503 0)
(1.01794 0.041392 0)
(1.01905 0.0413842 0)
(1.02009 0.0412249 0)
(1.02099 0.040927 0)
(1.02172 0.0405203 0)
(1.02221 0.0400525 0)
(1.0224 0.0395894 0)
(1.02223 0.039218 0)
(1.0217 0.039045 0)
(1.02087 0.0391864 0)
(1.01985 0.039753 0)
(1.01875 0.0408387 0)
(1.01766 0.042506 0)
(1.01659 0.044772 0)
(1.01557 0.0476361 0)
(1.01472 0.0511497 0)
(1.01439 0.0554251 0)
(1.01509 0.0605016 0)
(1.01722 0.0661865 0)
(1.02071 0.072066 0)
(1.02508 0.0776885 0)
(1.02984 0.0827671 0)
(1.03508 0.0873248 0)
(1.0414 0.0917164 0)
(1.04959 0.096325 0)
(1.06024 0.100995 0)
(1.07343 0.104822 0)
(1.08852 0.106676 0)
(1.10435 0.105774 0)
(1.11998 0.101566 0)
(1.13504 0.0935798 0)
(1.14903 0.0818652 0)
(1.16107 0.0671913 0)
(1.17047 0.050329 0)
(1.17679 0.0317501 0)
(1.17917 0.0125466 0)
(1.17676 -0.00529814 0)
(1.1702 -0.020906 0)
(1.16169 -0.0356844 0)
(1.15289 -0.0517753 0)
(1.14325 -0.0691117 0)
(1.13098 -0.0846433 0)
(1.11532 -0.0946021 0)
(1.09749 -0.0972153 0)
(1.07996 -0.0935323 0)
(1.0651 -0.0863612 0)
(1.05421 -0.0786598 0)
(1.04718 -0.0724348 0)
(1.04281 -0.0684058 0)
(1.03954 -0.0662417 0)
(1.03612 -0.0650828 0)
(1.03201 -0.0640551 0)
(1.02723 -0.0625754 0)
(1.02216 -0.060413 0)
(1.0172 -0.0575992 0)
(1.01263 -0.0542967 0)
(1.00858 -0.0506943 0)
(1.00507 -0.0469445 0)
(1.00202 -0.0431372 0)
(0.999361 -0.0393 0)
(0.997022 -0.0354145 0)
(0.994981 -0.0314416 0)
(0.993252 -0.0273465 0)
(0.991879 -0.0231147 0)
(0.990921 -0.0187608 0)
(0.990431 -0.0143273 0)
(0.990457 -0.00987874 0)
(0.991022 -0.00549887 0)
(0.992133 -0.00128116 0)
(0.99377 0.00268715 0)
(0.995895 0.00630507 0)
(0.998443 0.00948888 0)
(1.00134 0.0121667 0)
(1.00448 0.0142813 0)
(1.00777 0.0158031 0)
(1.01107 0.0167104 0)
(1.01431 0.0170269 0)
(1.01733 0.0167559 0)
(1.02009 0.0159782 0)
(1.02241 0.0147064 0)
(1.0243 0.0131102 0)
(1.02554 0.0111662 0)
(1.02627 0.00921952 0)
(1.02623 0.00706029 0)
(1.02569 0.00538809 0)
(1.02445 0.00348731 0)
(1.0227 0.00280337 0)
(1.02067 0.00153311 0)
(1.01787 0.0026484 0)
(1.01613 0.00202374 0)
(1.01213 0.00566677 0)
(1.00933 0.0365492 0)
(1.00995 0.0370808 0)
(1.01064 0.0376379 0)
(1.01141 0.038198 0)
(1.01226 0.0387389 0)
(1.01318 0.0392391 0)
(1.01416 0.0396792 0)
(1.01519 0.0400424 0)
(1.01625 0.040314 0)
(1.0173 0.0404813 0)
(1.01832 0.0405348 0)
(1.01926 0.0404719 0)
(1.02008 0.0403033 0)
(1.02074 0.0400581 0)
(1.0212 0.0397845 0)
(1.02144 0.0395467 0)
(1.02142 0.0394205 0)
(1.02114 0.0394844 0)
(1.02061 0.0398135 0)
(1.0199 0.0404821 0)
(1.0191 0.0415728 0)
(1.01834 0.0431677 0)
(1.01771 0.0453216 0)
(1.01729 0.0480511 0)
(1.01711 0.0513497 0)
(1.01732 0.0551919 0)
(1.01821 0.0595178 0)
(1.02011 0.0642263 0)
(1.02324 0.0691698 0)
(1.02754 0.0741218 0)
(1.03274 0.0787964 0)
(1.03859 0.0830109 0)
(1.04501 0.0868288 0)
(1.0523 0.0903933 0)
(1.06105 0.0935652 0)
(1.0717 0.0958367 0)
(1.08412 0.0965845 0)
(1.09772 0.0951875 0)
(1.11201 0.0909555 0)
(1.1264 0.0834128 0)
(1.13996 0.0727817 0)
(1.15167 0.0597804 0)
(1.16091 0.0449558 0)
(1.16723 0.0287787 0)
(1.16989 0.0123592 0)
(1.16843 -0.00286344 0)
(1.16362 -0.0167431 0)
(1.15701 -0.0307408 0)
(1.1493 -0.046122 0)
(1.1397 -0.0620479 0)
(1.12719 -0.0757045 0)
(1.11199 -0.0842809 0)
(1.09579 -0.0867754 0)
(1.08069 -0.0843037 0)
(1.06825 -0.0791513 0)
(1.05896 -0.0735532 0)
(1.05233 -0.068935 0)
(1.04733 -0.0657634 0)
(1.04294 -0.0637954 0)
(1.03844 -0.0624597 0)
(1.0336 -0.061184 0)
(1.0285 -0.0595772 0)
(1.0234 -0.0574683 0)
(1.01855 -0.0548582 0)
(1.01412 -0.0518436 0)
(1.01018 -0.0485506 0)
(1.00673 -0.0450891 0)
(1.00372 -0.0415309 0)
(1.00108 -0.0379054 0)
(0.998772 -0.0342083 0)
(0.99677 -0.0304185 0)
(0.995087 -0.0265169 0)
(0.993755 -0.0224991 0)
(0.992821 -0.0183817 0)
(0.992328 -0.0142042 0)
(0.992311 -0.010024 0)
(0.992791 -0.00591558 0)
(0.993772 -0.00195778 0)
(0.995233 0.00176223 0)
(0.99714 0.00516217 0)
(0.999434 0.00816628 0)
(1.00205 0.0107096 0)
(1.00489 0.0127407 0)
(1.00787 0.0142314 0)
(1.01087 0.0151624 0)
(1.01382 0.0155528 0)
(1.01657 0.0154075 0)
(1.01908 0.0147995 0)
(1.02119 0.0137419 0)
(1.02293 0.0123904 0)
(1.02407 0.0107228 0)
(1.02476 0.00905436 0)
(1.02475 0.0071917 0)
(1.0243 0.00577286 0)
(1.02321 0.00414211 0)
(1.02168 0.00362163 0)
(1.01988 0.00254744 0)
(1.01743 0.00365928 0)
(1.01588 0.00313918 0)
(1.01238 0.00656316 0)
(1.00912 0.0359999 0)
(1.00976 0.036475 0)
(1.01046 0.0369721 0)
(1.01122 0.0374731 0)
(1.01205 0.0379598 0)
(1.01292 0.0384142 0)
(1.01384 0.0388198 0)
(1.0148 0.0391629 0)
(1.01577 0.0394331 0)
(1.01674 0.0396235 0)
(1.01767 0.0397303 0)
(1.01854 0.0397542 0)
(1.01931 0.0397049 0)
(1.01994 0.0396058 0)
(1.02041 0.0394971 0)
(1.02069 0.039435 0)
(1.02078 0.039487 0)
(1.02069 0.039721 0)
(1.02043 0.0401953 0)
(1.02005 0.0409618 0)
(1.01959 0.042075 0)
(1.01915 0.0435954 0)
(1.01884 0.0455835 0)
(1.01878 0.0480843 0)
(1.01905 0.0511014 0)
(1.01976 0.0545699 0)
(1.02104 0.05837 0)
(1.02304 0.0623813 0)
(1.02592 0.0665054 0)
(1.02982 0.0706274 0)
(1.03475 0.0746018 0)
(1.04056 0.0783181 0)
(1.04706 0.0817256 0)
(1.05427 0.0847223 0)
(1.0624 0.0870524 0)
(1.07163 0.0883522 0)
(1.08195 0.0882037 0)
(1.09327 0.0860747 0)
(1.10539 0.0814169 0)
(1.1177 0.074048 0)
(1.12929 0.0643236 0)
(1.13941 0.0527464 0)
(1.14766 0.0396535 0)
(1.15351 0.0256024 0)
(1.15617 0.0116802 0)
(1.15542 -0.00126536 0)
(1.152 -0.0135687 0)
(1.1469 -0.0265075 0)
(1.14027 -0.0406867 0)
(1.13138 -0.0549612 0)
(1.11979 -0.0669739 0)
(1.10615 -0.0746767 0)
(1.09207 -0.0774676 0)
(1.07919 -0.0762709 0)
(1.06853 -0.0728203 0)
(1.06024 -0.0687932 0)
(1.05383 -0.0652774 0)
(1.04855 -0.0626701 0)
(1.04372 -0.0608558 0)
(1.03892 -0.05947 0)
(1.03401 -0.0581233 0)
(1.02905 -0.0565306 0)
(1.0242 -0.0545502 0)
(1.01962 -0.0521619 0)
(1.01541 -0.0494209 0)
(1.01163 -0.0464132 0)
(1.00829 -0.0432207 0)
(1.00534 -0.0399027 0)
(1.00274 -0.0364895 0)
(1.00047 -0.0329868 0)
(0.998514 -0.0293874 0)
(0.996873 -0.025684 0)
(0.995576 -0.0218795 0)
(0.994659 -0.0179935 0)
(0.994156 -0.014062 0)
(0.994096 -0.0101384 0)
(0.994492 -0.00628626 0)
(0.995348 -0.00257805 0)
(0.996642 0.000910274 0)
(0.998344 0.00410523 0)
(1.0004 0.00693963 0)
(1.00275 0.00935511 0)
(1.00531 0.0113056 0)
(1.008 0.0127646 0)
(1.01072 0.0137152 0)
(1.01339 0.0141728 0)
(1.01588 0.0141435 0)
(1.01817 0.0136927 0)
(1.02009 0.0128342 0)
(1.02168 0.0117095 0)
(1.02273 0.0102981 0)
(1.02338 0.00888702 0)
(1.0234 0.00729883 0)
(1.02303 0.00611335 0)
(1.02208 0.00473154 0)
(1.02076 0.00435993 0)
(1.01917 0.0034662 0)
(1.01704 0.00457283 0)
(1.01567 0.00414871 0)
(1.01263 0.00736828 0)
(1.00892 0.0354055 0)
(1.00958 0.035838 0)
(1.01028 0.0362883 0)
(1.01104 0.0367425 0)
(1.01183 0.0371863 0)
(1.01267 0.0376056 0)
(1.01355 0.0379873 0)
(1.01445 0.03832 0)
(1.01535 0.0385956 0)
(1.01625 0.0388098 0)
(1.01712 0.0389626 0)
(1.01794 0.0390588 0)
(1.01867 0.0391096 0)
(1.01929 0.0391355 0)
(1.01979 0.0391681 0)
(1.02013 0.0392518 0)
(1.02033 0.0394407 0)
(1.02039 0.0397919 0)
(1.02035 0.0403579 0)
(1.02024 0.0411843 0)
(1.02009 0.0423097 0)
(1.01998 0.0437718 0)
(1.01998 0.0456119 0)
(1.0202 0.0478692 0)
(1.02076 0.0505527 0)
(1.02179 0.0536123 0)
(1.02336 0.056944 0)
(1.02556 0.0604229 0)
(1.02844 0.0639286 0)
(1.0321 0.0673548 0)
(1.03661 0.0706267 0)
(1.04195 0.0737062 0)
(1.0481 0.0765376 0)
(1.05507 0.0789687 0)
(1.06286 0.0807372 0)
(1.07142 0.0814969 0)
(1.08068 0.0808175 0)
(1.09058 0.0782187 0)
(1.10085 0.0733773 0)
(1.11095 0.0663279 0)
(1.12029 0.057367 0)
(1.12854 0.0468148 0)
(1.13534 0.0350629 0)
(1.14005 0.0228436 0)
(1.14205 0.0110478 0)
(1.14146 -3.97361e-05 0)
(1.13896 -0.0110616 0)
(1.13509 -0.0229496 0)
(1.12964 -0.0358235 0)
(1.12197 -0.048499 0)
(1.1119 -0.0591036 0)
(1.10015 -0.0661535 0)
(1.08805 -0.0692557 0)
(1.07688 -0.0691081 0)
(1.06741 -0.0669946 0)
(1.05973 -0.0641812 0)
(1.05352 -0.0615294 0)
(1.04824 -0.0594038 0)
(1.0434 -0.057783 0)
(1.0387 -0.0564415 0)
(1.03402 -0.0551115 0)
(1.02936 -0.0535826 0)
(1.02484 -0.051739 0)
(1.02055 -0.0495521 0)
(1.01659 -0.0470525 0)
(1.01298 -0.0442988 0)
(1.00975 -0.0413529 0)
(1.00688 -0.0382632 0)
(1.00435 -0.0350596 0)
(1.00212 -0.031754 0)
(1.00021 -0.0283488 0)
(0.998606 -0.0248455 0)
(0.997339 -0.0212532 0)
(0.996433 -0.0175928 0)
(0.995917 -0.0138989 0)
(0.995811 -0.0102193 0)
(0.996125 -0.00661116 0)
(0.996861 -0.00313925 0)
(0.997998 0.000130929 0)
(0.999508 0.00313317 0)
(1.00134 0.00580702 0)
(1.00345 0.00810071 0)
(1.00574 0.00997337 0)
(1.00817 0.0114004 0)
(1.01061 0.0123667 0)
(1.01302 0.0128849 0)
(1.01528 0.012962 0)
(1.01736 0.0126562 0)
(1.0191 0.0119815 0)
(1.02055 0.0110663 0)
(1.02152 0.00989153 0)
(1.02213 0.00871738 0)
(1.02218 0.00738208 0)
(1.02189 0.00641064 0)
(1.02106 0.00525739 0)
(1.01993 0.00502092 0)
(1.01854 0.0042929 0)
(1.0167 0.00539223 0)
(1.0155 0.00505572 0)
(1.01288 0.00808419 0)
(1.00873 0.0347687 0)
(1.00941 0.0351701 0)
(1.01011 0.0355856 0)
(1.01086 0.0360043 0)
(1.01164 0.0364154 0)
(1.01245 0.0368083 0)
(1.01328 0.0371731 0)
(1.01414 0.0375012 0)
(1.01499 0.0377862 0)
(1.01584 0.0380253 0)
(1.01666 0.0382201 0)
(1.01743 0.0383772 0)
(1.01814 0.038509 0)
(1.01877 0.0386348 0)
(1.0193 0.0387812 0)
(1.01971 0.0389826 0)
(1.02002 0.0392796 0)
(1.02022 0.0397166 0)
(1.02036 0.0403381 0)
(1.02047 0.0411853 0)
(1.02059 0.0422924 0)
(1.02076 0.0436871 0)
(1.02105 0.0453936 0)
(1.02155 0.0474299 0)
(1.02235 0.0497933 0)
(1.02357 0.0524471 0)
(1.0253 0.0553177 0)
(1.02761 0.0583042 0)
(1.03053 0.0612918 0)
(1.03409 0.0641752 0)
(1.03831 0.0668818 0)
(1.04321 0.0693682 0)
(1.04886 0.0715777 0)
(1.05529 0.0733924 0)
(1.0625 0.0746027 0)
(1.07044 0.0748889 0)
(1.07898 0.0738426 0)
(1.08792 0.0710811 0)
(1.09688 0.0664031 0)
(1.10543 0.0598388 0)
(1.11324 0.0515768 0)
(1.12003 0.0419327 0)
(1.12537 0.03146 0)
(1.12875 0.0208912 0)
(1.12997 0.0107676 0)
(1.12941 0.000990631 0)
(1.12762 -0.00910745 0)
(1.12473 -0.0200512 0)
(1.12029 -0.0316474 0)
(1.11376 -0.0428242 0)
(1.10511 -0.0521586 0)
(1.09499 -0.0585977 0)
(1.08448 -0.0618858 0)
(1.07461 -0.0625368 0)
(1.06601 -0.0614858 0)
(1.05884 -0.0596749 0)
(1.05286 -0.0577762 0)
(1.0477 -0.0561122 0)
(1.04299 -0.0547202 0)
(1.03847 -0.0534746 0)
(1.03404 -0.0522009 0)
(1.02968 -0.0507509 0)
(1.02545 -0.0490358 0)
(1.02143 -0.0470266 0)
(1.01768 -0.0447388 0)
(1.01424 -0.0422122 0)
(1.01114 -0.0394926 0)
(1.00835 -0.0366198 0)
(1.00588 -0.0336212 0)
(1.00371 -0.0305129 0)
(1.00184 -0.0273034 0)
(1.00028 -0.0240006 0)
(0.999039 -0.0206178 0)
(0.998142 -0.0171774 0)
(0.997609 -0.0137121 0)
(0.997457 -0.0102658 0)
(0.997693 -0.00688873 0)
(0.998314 -0.00363923 0)
(0.999303 -0.000575281 0)
(1.00063 0.00224475 0)
(1.00226 0.00476677 0)
(1.00413 0.00694463 0)
(1.00619 0.00874213 0)
(1.00836 0.0101366 0)
(1.01055 0.0111149 0)
(1.01272 0.0116872 0)
(1.01476 0.0118609 0)
(1.01664 0.0116881 0)
(1.01822 0.0111822 0)
(1.01954 0.0104593 0)
(1.02043 0.00950225 0)
(1.021 0.00854538 0)
(1.02107 0.00744203 0)
(1.02085 0.00666614 0)
(1.02014 0.00572188 0)
(1.01919 0.00560745 0)
(1.01798 0.00503087 0)
(1.01642 0.0061207 0)
(1.01536 0.00586408 0)
(1.01314 0.00871346 0)
(1.00856 0.0340924 0)
(1.00925 0.0344721 0)
(1.00996 0.0348628 0)
(1.0107 0.0352558 0)
(1.01146 0.0356433 0)
(1.01224 0.0360174 0)
(1.01305 0.0363708 0)
(1.01387 0.0366975 0)
(1.01469 0.036993 0)
(1.0155 0.0372561 0)
(1.01628 0.0374887 0)
(1.01703 0.0376979 0)
(1.01773 0.0378955 0)
(1.01836 0.0380991 0)
(1.01893 0.0383319 0)
(1.01941 0.0386214 0)
(1.01982 0.038999 0)
(1.02016 0.039498 0)
(1.02046 0.040153 0)
(1.02075 0.0409975 0)
(1.02108 0.0420615 0)
(1.02148 0.0433686 0)
(1.02202 0.0449346 0)
(1.02275 0.0467633 0)
(1.02377 0.048841 0)
(1.02515 0.0511317 0)
(1.02697 0.053577 0)
(1.0293 0.0560987 0)
(1.03219 0.0586074 0)
(1.03564 0.0610154 0)
(1.03966 0.0632467 0)
(1.04426 0.0652366 0)
(1.04947 0.0669139 0)
(1.05533 0.0681744 0)
(1.06186 0.0688437 0)
(1.06904 0.0686598 0)
(1.07674 0.0673046 0)
(1.08472 0.0644961 0)
(1.09263 0.0600671 0)
(1.10014 0.0540053 0)
(1.1069 0.0464759 0)
(1.11257 0.0378532 0)
(1.11675 0.0286965 0)
(1.11922 0.0195518 0)
(1.1201 0.0106371 0)
(1.11979 0.00172493 0)
(1.11859 -0.00763244 0)
(1.11633 -0.0176591 0)
(1.11255 -0.0280022 0)
(1.10686 -0.0377767 0)
(1.09933 -0.0459536 0)
(1.09053 -0.051812 0)
(1.08134 -0.0551899 0)
(1.07259 -0.0564513 0)
(1.06479 -0.0562553 0)
(1.05809 -0.0552821 0)
(1.05237 -0.0540427 0)
(1.04735 -0.052813 0)
(1.04276 -0.0516665 0)
(1.03839 -0.0505505 0)
(1.03416 -0.0493628 0)
(1.03003 -0.0480063 0)
(1.02605 -0.0464173 0)
(1.02226 -0.0445708 0)
(1.0187 -0.0424741 0)
(1.01543 -0.040154 0)
(1.01244 -0.0376444 0)
(1.00975 -0.0349778 0)
(1.00735 -0.0321792 0)
(1.00524 -0.0292664 0)
(1.00342 -0.026252 0)
(1.00189 -0.0231485 0)
(1.00068 -0.0199717 0)
(0.999784 -0.0167451 0)
(0.999233 -0.0134998 0)
(0.999035 -0.0102755 0)
(0.999194 -0.00711806 0)
(0.999707 -0.00407898 0)
(1.00056 -0.00121 0)
(1.00172 0.00143771 0)
(1.00315 0.0038162 0)
(1.00481 0.00588392 0)
(1.00664 0.00760893 0)
(1.00857 0.00897048 0)
(1.01054 0.0099571 0)
(1.01248 0.0105772 0)
(1.01431 0.0108382 0)
(1.016 0.0107862 0)
(1.01743 0.0104347 0)
(1.01863 0.00988747 0)
(1.01945 0.00912958 0)
(1.02 0.00837099 0)
(1.02008 0.00747949 0)
(1.01993 0.00688146 0)
(1.01933 0.00612738 0)
(1.01854 0.0061225 0)
(1.01749 0.00568362 0)
(1.01618 0.00676171 0)
(1.01526 0.00657786 0)
(1.0134 0.00925899 0)
(1.00841 0.03338 0)
(1.00911 0.0337456 0)
(1.00982 0.0341193 0)
(1.01055 0.0344947 0)
(1.0113 0.034866 0)
(1.01207 0.0352275 0)
(1.01285 0.035574 0)
(1.01364 0.0359014 0)
(1.01443 0.0362073 0)
(1.01521 0.0364914 0)
(1.01598 0.0367565 0)
(1.01671 0.0370089 0)
(1.01741 0.0372593 0)
(1.01806 0.037523 0)
(1.01866 0.0378192 0)
(1.01921 0.0381709 0)
(1.01971 0.0386028 0)
(1.02017 0.0391408 0)
(1.02061 0.0398107 0)
(1.02107 0.0406379 0)
(1.02157 0.0416455 0)
(1.02216 0.0428519 0)
(1.02289 0.0442681 0)
(1.02381 0.0458926 0)
(1.025 0.0477078 0)
(1.02651 0.0496779 0)
(1.0284 0.0517497 0)
(1.03072 0.0538579 0)
(1.03353 0.0559316 0)
(1.03683 0.0579003 0)
(1.04064 0.059696 0)
(1.04496 0.06125 0)
(1.04981 0.0624832 0)
(1.05518 0.0632884 0)
(1.0611 0.0635094 0)
(1.06752 0.0629378 0)
(1.07433 0.0613391 0)
(1.08134 0.0585024 0)
(1.08828 0.0542971 0)
(1.09483 0.0487284 0)
(1.10063 0.0419771 0)
(1.10536 0.0344079 0)
(1.10876 0.02645 0)
(1.11081 0.0184177 0)
(1.11173 0.0103774 0)
(1.11176 0.00215579 0)
(1.11095 -0.00649285 0)
(1.10904 -0.0155678 0)
(1.10567 -0.0246937 0)
(1.10062 -0.0331997 0)
(1.09403 -0.0403694 0)
(1.08641 -0.045715 0)
(1.07843 -0.0491255 0)
(1.07071 -0.0508419 0)
(1.06368 -0.051312 0)
(1.05746 -0.0510152 0)
(1.052 -0.0503332 0)
(1.04713 -0.049498 0)
(1.04265 -0.0486021 0)
(1.03841 -0.0476419 0)
(1.03434 -0.0465678 0)
(1.03041 -0.0453223 0)
(1.02663 -0.0438632 0)
(1.02304 -0.0421723 0)
(1.01966 -0.0402531 0)
(1.01653 -0.0381242 0)
(1.01367 -0.0358117 0)
(1.01107 -0.0333419 0)
(1.00875 -0.0307376 0)
(1.0067 -0.0280172 0)
(1.00493 -0.0251959 0)
(1.00344 -0.0222886 0)
(1.00225 -0.0193136 0)
(1.00136 -0.0162944 0)
(1.00079 -0.0132604 0)
(1.00054 -0.0102483 0)
(1.00063 -0.00729915 0)
(1.00104 -0.00445843 0)
(1.00176 -0.00177303 0)
(1.00277 0.000711824 0)
(1.00402 0.002954 0)
(1.00548 0.00491654 0)
(1.00709 0.00657127 0)
(1.00881 0.0078993 0)
(1.01056 0.00889068 0)
(1.0123 0.00955225 0)
(1.01394 0.00989131 0)
(1.01546 0.00994863 0)
(1.01675 0.00973727 0)
(1.01783 0.00934955 0)
(1.01858 0.00877291 0)
(1.0191 0.00819438 0)
(1.01921 0.0074954 0)
(1.01911 0.00705834 0)
(1.01861 0.00647649 0)
(1.01797 0.00656921 0)
(1.01706 0.00625486 0)
(1.01598 0.00731897 0)
(1.01518 0.00720126 0)
(1.01365 0.00972393 0)
(1.00829 0.0326349 0)
(1.00899 0.0329923 0)
(1.0097 0.0333551 0)
(1.01043 0.033719 0)
(1.01117 0.0340797 0)
(1.01192 0.0344333 0)
(1.01268 0.0347763 0)
(1.01345 0.0351061 0)
(1.01422 0.0354215 0)
(1.01499 0.0357232 0)
(1.01574 0.0360144 0)
(1.01647 0.0363009 0)
(1.01717 0.0365921 0)
(1.01784 0.0369005 0)
(1.01848 0.037242 0)
(1.01908 0.0376349 0)
(1.01966 0.0380991 0)
(1.02023 0.038655 0)
(1.0208 0.0393221 0)
(1.02139 0.0401189 0)
(1.02204 0.0410616 0)
(1.02278 0.0421626 0)
(1.02366 0.043428 0)
(1.02473 0.044854 0)
(1.02604 0.0464232 0)
(1.02764 0.0481029 0)
(1.02957 0.0498455 0)
(1.03188 0.0515935 0)
(1.0346 0.0532856 0)
(1.03774 0.054861 0)
(1.04132 0.0562599 0)
(1.04535 0.0574194 0)
(1.04984 0.0582631 0)
(1.05477 0.0586881 0)
(1.06013 0.0585568 0)
(1.06588 0.0577 0)
(1.0719 0.0559377 0)
(1.07803 0.0531153 0)
(1.08404 0.0491514 0)
(1.08965 0.0440826 0)
(1.09455 0.0380884 0)
(1.09851 0.031448 0)
(1.10142 0.0244457 0)
(1.10331 0.017267 0)
(1.10433 0.00993573 0)
(1.10455 0.00236897 0)
(1.10391 -0.0055226 0)
(1.10219 -0.0136346 0)
(1.09915 -0.0216418 0)
(1.09469 -0.0290559 0)
(1.08899 -0.0353825 0)
(1.08244 -0.040286 0)
(1.07556 -0.0436786 0)
(1.0688 -0.0457076 0)
(1.06249 -0.0466684 0)
(1.05675 -0.0468937 0)
(1.05159 -0.0466672 0)
(1.04689 -0.0461802 0)
(1.04255 -0.0455301 0)
(1.03845 -0.044743 0)
(1.03453 -0.0438042 0)
(1.03077 -0.0426851 0)
(1.02718 -0.0413618 0)
(1.02376 -0.0398231 0)
(1.02055 -0.0380722 0)
(1.01756 -0.0361234 0)
(1.01482 -0.0339972 0)
(1.01232 -0.0317158 0)
(1.01008 -0.0292999 0)
(1.00809 -0.0267678 0)
(1.00637 -0.024136 0)
(1.00492 -0.0214213 0)
(1.00375 -0.0186429 0)
(1.00286 -0.0158241 0)
(1.00227 -0.0129932 0)
(1.00199 -0.0101831 0)
(1.002 -0.00743168 0)
(1.00232 -0.00477965 0)
(1.00292 -0.00226778 0)
(1.00378 6.33517e-05 0)
(1.00486 0.00217685 0)
(1.00614 0.00403943 0)
(1.00756 0.00562628 0)
(1.00907 0.00692029 0)
(1.01062 0.00791295 0)
(1.01217 0.00860977 0)
(1.01363 0.00901793 0)
(1.01499 0.00917315 0)
(1.01615 0.00908812 0)
(1.01714 0.0088444 0)
(1.01782 0.00843172 0)
(1.01831 0.0080158 0)
(1.01843 0.00749084 0)
(1.01839 0.00719863 0)
(1.01797 0.00677195 0)
(1.01747 0.0069509 0)
(1.0167 0.0067485 0)
(1.01583 0.00779646 0)
(1.01513 0.00773857 0)
(1.0139 0.0101117 0)
(1.0082 0.0318602 0)
(1.0089 0.0322138 0)
(1.00961 0.0325705 0)
(1.01034 0.0329274 0)
(1.01107 0.0332817 0)
(1.01181 0.0336308 0)
(1.01255 0.0339724 0)
(1.01331 0.0343051 0)
(1.01406 0.0346287 0)
(1.01481 0.0349444 0)
(1.01556 0.0352556 0)
(1.01629 0.0355676 0)
(1.017 0.0358882 0)
(1.01769 0.0362278 0)
(1.01837 0.036599 0)
(1.01903 0.0370164 0)
(1.01968 0.0374956 0)
(1.02033 0.0380522 0)
(1.021 0.0387012 0)
(1.0217 0.0394557 0)
(1.02248 0.0403266 0)
(1.02335 0.0413209 0)
(1.02435 0.0424403 0)
(1.02552 0.0436787 0)
(1.02692 0.0450197 0)
(1.02857 0.0464344 0)
(1.03052 0.0478821 0)
(1.03279 0.0493129 0)
(1.03541 0.0506721 0)
(1.03839 0.0519047 0)
(1.04175 0.0529557 0)
(1.04549 0.0537673 0)
(1.04961 0.0542695 0)
(1.05411 0.0543723 0)
(1.05896 0.0539598 0)
(1.06409 0.0528964 0)
(1.06941 0.0510452 0)
(1.07476 0.0482972 0)
(1.07994 0.0446091 0)
(1.08473 0.0400302 0)
(1.08889 0.034704 0)
(1.09228 0.0288257 0)
(1.09484 0.0225844 0)
(1.09661 0.0161045 0)
(1.09762 0.00941493 0)
(1.09787 0.00249499 0)
(1.09729 -0.00462181 0)
(1.0957 -0.0118251 0)
(1.09297 -0.0188529 0)
(1.08909 -0.0253516 0)
(1.0842 -0.0309761 0)
(1.07861 -0.0354877 0)
(1.07268 -0.0388103 0)
(1.06678 -0.0410266 0)
(1.06113 -0.0423274 0)
(1.05587 -0.0429417 0)
(1.05103 -0.0430783 0)
(1.04656 -0.0428915 0)
(1.04238 -0.0424736 0)
(1.03844 -0.0418656 0)
(1.03469 -0.0410745 0)
(1.0311 -0.0400921 0)
(1.02767 -0.0389084 0)
(1.02442 -0.0375196 0)
(1.02137 -0.0359301 0)
(1.01852 -0.0341524 0)
(1.01589 -0.0322035 0)
(1.01349 -0.0301027 0)
(1.01133 -0.027869 0)
(1.00941 -0.0255202 0)
(1.00774 -0.0230736 0)
(1.00633 -0.0205467 0)
(1.00518 -0.0179592 0)
(1.00429 -0.0153338 0)
(1.00369 -0.0126973 0)
(1.00336 -0.0100803 0)
(1.00332 -0.00751659 0)
(1.00354 -0.00504251 0)
(1.00403 -0.00269429 0)
(1.00475 -0.000508559 0)
(1.00568 0.00148258 0)
(1.00679 0.00324952 0)
(1.00802 0.00477044 0)
(1.00936 0.00602985 0)
(1.01072 0.00702047 0)
(1.01209 0.00774661 0)
(1.01339 0.00821527 0)
(1.0146 0.00845745 0)
(1.01564 0.00848549 0)
(1.01653 0.00837089 0)
(1.01716 0.00810556 0)
(1.01762 0.00783558 0)
(1.01775 0.00746702 0)
(1.01776 0.0073043 0)
(1.01742 0.00701665 0)
(1.01703 0.00727104 0)
(1.01639 0.00716864 0)
(1.0157 0.00819832 0)
(1.01511 0.00819417 0)
(1.01415 0.010426 0)
(1.00814 0.031059 0)
(1.00884 0.031412 0)
(1.00955 0.0317659 0)
(1.01027 0.0321191 0)
(1.01099 0.0324698 0)
(1.01172 0.0328164 0)
(1.01246 0.0331578 0)
(1.0132 0.0334933 0)
(1.01395 0.0338233 0)
(1.01469 0.0341495 0)
(1.01543 0.0344748 0)
(1.01616 0.0348042 0)
(1.01689 0.0351442 0)
(1.0176 0.0355031 0)
(1.01831 0.035891 0)
(1.01902 0.036319 0)
(1.01973 0.0367992 0)
(1.02045 0.0373433 0)
(1.0212 0.0379623 0)
(1.022 0.0386653 0)
(1.02287 0.0394591 0)
(1.02384 0.0403467 0)
(1.02493 0.0413266 0)
(1.02619 0.0423909 0)
(1.02763 0.0435234 0)
(1.02931 0.0446987 0)
(1.03124 0.0458823 0)
(1.03346 0.0470314 0)
(1.03598 0.0480983 0)
(1.0388 0.0490332 0)
(1.04194 0.0497847 0)
(1.0454 0.0502987 0)
(1.04918 0.0505124 0)
(1.05326 0.0503489 0)
(1.05761 0.0497151 0)
(1.06218 0.0485066 0)
(1.06686 0.0466228 0)
(1.07153 0.0439903 0)
(1.076 0.0405867 0)
(1.08011 0.0364557 0)
(1.0837 0.0316995 0)
(1.08665 0.0264554 0)
(1.08893 0.0208563 0)
(1.09054 0.0149898 0)
(1.09146 0.0089098 0)
(1.09167 0.00264538 0)
(1.0911 -0.00374576 0)
(1.08965 -0.0101398 0)
(1.08723 -0.0163316 0)
(1.08386 -0.0220663 0)
(1.07968 -0.0270979 0)
(1.07491 -0.0312517 0)
(1.06981 -0.0344605 0)
(1.06465 -0.0367658 0)
(1.05961 -0.0382879 0)
(1.05482 -0.0391828 0)
(1.05032 -0.039602 0)
(1.0461 -0.039667 0)
(1.04213 -0.03946 0)
(1.03837 -0.0390266 0)
(1.03479 -0.0383865 0)
(1.03137 -0.0375449 0)
(1.02811 -0.0365022 0)
(1.02502 -0.0352606 0)
(1.02211 -0.0338268 0)
(1.0194 -0.0322125 0)
(1.01689 -0.030433 0)
(1.01459 -0.0285055 0)
(1.01251 -0.0264477 0)
(1.01066 -0.0242768 0)
(1.00904 -0.0220101 0)
(1.00767 -0.0196655 0)
(1.00654 -0.0172624 0)
(1.00566 -0.0148232 0)
(1.00503 -0.0123728 0)
(1.00467 -0.00993964 0)
(1.00456 -0.00755389 0)
(1.00471 -0.00524801 0)
(1.00509 -0.00305475 0)
(1.00568 -0.0010063 0)
(1.00647 0.000868787 0)
(1.00742 0.00254439 0)
(1.0085 0.00400122 0)
(1.00966 0.00522533 0)
(1.01086 0.0062105 0)
(1.01206 0.00696008 0)
(1.01321 0.00748079 0)
(1.01429 0.00779935 0)
(1.01521 0.00792764 0)
(1.01602 0.00792792 0)
(1.01659 0.00779407 0)
(1.01702 0.00765418 0)
(1.01717 0.00742526 0)
(1.01722 0.00737747 0)
(1.01695 0.00721357 0)
(1.01667 0.00753323 0)
(1.01613 0.00751951 0)
(1.01561 0.00852888 0)
(1.01511 0.0085726 0)
(1.01439 0.0106707 0)
(1.00812 0.0302343 0)
(1.00882 0.0305886 0)
(1.00952 0.0309421 0)
(1.01023 0.0312936 0)
(1.01095 0.0316425 0)
(1.01167 0.0319879 0)
(1.0124 0.0323293 0)
(1.01313 0.0326668 0)
(1.01387 0.0330011 0)
(1.01461 0.0333339 0)
(1.01535 0.033668 0)
(1.01608 0.0340077 0)
(1.01682 0.0343582 0)
(1.01756 0.0347264 0)
(1.0183 0.0351199 0)
(1.01904 0.0355472 0)
(1.0198 0.0360172 0)
(1.02059 0.0365386 0)
(1.02141 0.0371189 0)
(1.02228 0.0377641 0)
(1.02322 0.0384779 0)
(1.02426 0.0392605 0)
(1.02542 0.0401081 0)
(1.02672 0.0410116 0)
(1.0282 0.0419553 0)
(1.02988 0.0429167 0)
(1.03178 0.0438658 0)
(1.03392 0.0447662 0)
(1.03632 0.0455766 0)
(1.03899 0.0462528 0)
(1.04192 0.0467478 0)
(1.04511 0.0470118 0)
(1.04856 0.0469889 0)
(1.05225 0.0466146 0)
(1.05615 0.0458154 0)
(1.0602 0.0445133 0)
(1.0643 0.042637 0)
(1.06836 0.0401378 0)
(1.07224 0.0370033 0)
(1.0758 0.0332663 0)
(1.07891 0.0289998 0)
(1.08151 0.0242988 0)
(1.08353 0.019259 0)
(1.08496 0.0139603 0)
(1.08578 0.00846217 0)
(1.08593 0.00281597 0)
(1.08538 -0.0029043 0)
(1.08406 -0.00858539 0)
(1.08193 -0.0140658 0)
(1.07903 -0.0191567 0)
(1.07545 -0.0236791 0)
(1.07136 -0.0275021 0)
(1.06696 -0.0305668 0)
(1.06245 -0.032889 0)
(1.05796 -0.0345424 0)
(1.05362 -0.0356314 0)
(1.04947 -0.0362645 0)
(1.04553 -0.0365353 0)
(1.04179 -0.0365132 0)
(1.03822 -0.0362431 0)
(1.03483 -0.0357506 0)
(1.03158 -0.0350488 0)
(1.02849 -0.0341455 0)
(1.02555 -0.0330475 0)
(1.02279 -0.0317637 0)
(1.0202 -0.0303059 0)
(1.01781 -0.0286885 0)
(1.01561 -0.0269272 0)
(1.01362 -0.0250387 0)
(1.01183 -0.0230396 0)
(1.01027 -0.0209469 0)
(1.00893 -0.0187784 0)
(1.00782 -0.0165532 0)
(1.00695 -0.0142927 0)
(1.00631 -0.0120201 0)
(1.00591 -0.00976139 0)
(1.00575 -0.00754418 0)
(1.00582 -0.00539785 0)
(1.0061 -0.00335146 0)
(1.00658 -0.00143299 0)
(1.00724 0.000331907 0)
(1.00805 0.00192001 0)
(1.00897 0.00331444 0)
(1.00998 0.00450263 0)
(1.01102 0.00547927 0)
(1.01207 0.00624676 0)
(1.01308 0.00681154 0)
(1.01404 0.00719642 0)
(1.01486 0.00741276 0)
(1.01558 0.00751439 0)
(1.0161 0.00749694 0)
(1.01652 0.00747213 0)
(1.01667 0.00736699 0)
(1.01675 0.00742034 0)
(1.01655 0.0073658 0)
(1.01636 0.00774119 0)
(1.01592 0.00780549 0)
(1.01555 0.00879259 0)
(1.01513 0.00887852 0)
(1.01463 0.0108499 0)
(1.00813 0.0293891 0)
(1.00882 0.0297458 0)
(1.00952 0.0300998 0)
(1.01023 0.030451 0)
(1.01094 0.0307989 0)
(1.01165 0.0311434 0)
(1.01237 0.0314845 0)
(1.0131 0.0318227 0)
(1.01383 0.0321589 0)
(1.01456 0.0324947 0)
(1.0153 0.0328327 0)
(1.01605 0.0331764 0)
(1.0168 0.0335301 0)
(1.01755 0.0338991 0)
(1.01831 0.0342891 0)
(1.01909 0.0347065 0)
(1.01989 0.0351577 0)
(1.02072 0.0356486 0)
(1.02159 0.0361842 0)
(1.02252 0.0367679 0)
(1.02352 0.037401 0)
(1.02461 0.0380818 0)
(1.02581 0.038805 0)
(1.02714 0.0395609 0)
(1.02862 0.0403347 0)
(1.03028 0.041106 0)
(1.03214 0.0418486 0)
(1.0342 0.0425315 0)
(1.03648 0.0431188 0)
(1.03898 0.0435719 0)
(1.0417 0.043849 0)
(1.04464 0.0439054 0)
(1.04779 0.0436928 0)
(1.05112 0.0431575 0)
(1.05459 0.0422421 0)
(1.05817 0.0408891 0)
(1.06177 0.0390484 0)
(1.06531 0.0366869 0)
(1.06868 0.0337984 0)
(1.07177 0.0304067 0)
(1.07448 0.0265635 0)
(1.07676 0.0223377 0)
(1.07855 0.0178033 0)
(1.07981 0.0130285 0)
(1.08051 0.00807272 0)
(1.08062 0.00300013 0)
(1.08011 -0.00211419 0)
(1.07893 -0.00717035 0)
(1.07707 -0.0120396 0)
(1.07456 -0.0165797 0)
(1.07149 -0.0206576 0)
(1.06798 -0.024173 0)
(1.06417 -0.0270746 0)
(1.06021 -0.0293628 0)
(1.05622 -0.0310805 0)
(1.0523 -0.0322959 0)
(1.0485 -0.0330854 0)
(1.04485 -0.0335193 0)
(1.04135 -0.0336543 0)
(1.038 -0.0335314 0)
(1.03479 -0.0331777 0)
(1.03172 -0.0326107 0)
(1.02879 -0.0318424 0)
(1.02601 -0.0308829 0)
(1.02339 -0.0297431 0)
(1.02093 -0.028435 0)
(1.01865 -0.0269725 0)
(1.01655 -0.0253704 0)
(1.01464 -0.0236444 0)
(1.01293 -0.0218106 0)
(1.01142 -0.0198855 0)
(1.01012 -0.0178866 0)
(1.00904 -0.0158321 0)
(1.00817 -0.0137424 0)
(1.00752 -0.0116393 0)
(1.00709 -0.00954662 0)
(1.00688 -0.00748947 0)
(1.00687 -0.00549415 0)
(1.00707 -0.00358605 0)
(1.00745 -0.00179108 0)
(1.00799 -0.00013098 0)
(1.00866 0.00137354 0)
(1.00945 0.00270719 0)
(1.01031 0.0038587 0)
(1.01121 0.00482365 0)
(1.01213 0.00560366 0)
(1.01301 0.00620479 0)
(1.01385 0.00664634 0)
(1.01458 0.00693911 0)
(1.01523 0.00712924 0)
(1.0157 0.00721391 0)
(1.01609 0.00729002 0)
(1.01625 0.00729369 0)
(1.01636 0.00743521 0)
(1.01622 0.00747652 0)
(1.01611 0.00789873 0)
(1.01575 0.00803101 0)
(1.01552 0.00899403 0)
(1.01516 0.00911675 0)
(1.01486 0.0109682 0)
(1.00818 0.0285263 0)
(1.00886 0.0288856 0)
(1.00956 0.0292407 0)
(1.01025 0.0295916 0)
(1.01095 0.0299387 0)
(1.01166 0.0302821 0)
(1.01237 0.0306221 0)
(1.01309 0.0309593 0)
(1.01382 0.0312949 0)
(1.01455 0.0316303 0)
(1.01529 0.0319678 0)
(1.01604 0.0323101 0)
(1.0168 0.0326607 0)
(1.01757 0.0330234 0)
(1.01835 0.0334027 0)
(1.01916 0.033803 0)
(1.01999 0.0342287 0)
(1.02085 0.0346837 0)
(1.02176 0.0351707 0)
(1.02272 0.0356913 0)
(1.02376 0.0362449 0)
(1.02488 0.0368285 0)
(1.0261 0.0374359 0)
(1.02744 0.0380574 0)
(1.02892 0.038679 0)
(1.03054 0.0392824 0)
(1.03234 0.0398447 0)
(1.0343 0.040339 0)
(1.03646 0.0407346 0)
(1.03879 0.0409977 0)
(1.04132 0.041092 0)
(1.04401 0.0409789 0)
(1.04687 0.0406171 0)
(1.04987 0.0399629 0)
(1.05297 0.0389715 0)
(1.05613 0.0376004 0)
(1.05929 0.0358141 0)
(1.06238 0.0335904 0)
(1.06531 0.0309261 0)
(1.06799 0.0278396 0)
(1.07037 0.0243681 0)
(1.07236 0.0205642 0)
(1.07392 0.0164851 0)
(1.07503 0.01219 0)
(1.07563 0.00773675 0)
(1.07571 0.00318923 0)
(1.07524 -0.00138176 0)
(1.0742 -0.00588872 0)
(1.07258 -0.0102285 0)
(1.07042 -0.014292 0)
(1.06778 -0.0179777 0)
(1.06475 -0.0212072 0)
(1.06144 -0.0239359 0)
(1.05797 -0.0261553 0)
(1.05443 -0.0278879 0)
(1.05091 -0.0291771 0)
(1.04744 -0.0300752 0)
(1.04408 -0.0306343 0)
(1.04082 -0.0308992 0)
(1.03769 -0.0309053 0)
(1.03467 -0.0306787 0)
(1.03178 -0.0302382 0)
(1.02902 -0.0295983 0)
(1.0264 -0.0287711 0)
(1.02392 -0.0277685 0)
(1.02159 -0.026603 0)
(1.01942 -0.0252881 0)
(1.01742 -0.0238379 0)
(1.01559 -0.0222675 0)
(1.01395 -0.0205921 0)
(1.0125 -0.0188279 0)
(1.01124 -0.0169913 0)
(1.01018 -0.0151002 0)
(1.00931 -0.0131736 0)
(1.00866 -0.0112318 0)
(1.0082 -0.00929681 0)
(1.00794 -0.00739112 0)
(1.00788 -0.00553829 0)
(1.00799 -0.00376116 0)
(1.00828 -0.0020829 0)
(1.00871 -0.00052262 0)
(1.00926 0.000901371 0)
(1.00992 0.00217553 0)
(1.01066 0.00328965 0)
(1.01143 0.00423997 0)
(1.01222 0.0050274 0)
(1.01299 0.00565761 0)
(1.01372 0.00614671 0)
(1.01437 0.00650491 0)
(1.01495 0.00677144 0)
(1.01538 0.00694479 0)
(1.01574 0.00710849 0)
(1.0159 0.00720691 0)
(1.01604 0.00742446 0)
(1.01595 0.00754897 0)
(1.01591 0.00800974 0)
(1.01563 0.00820059 0)
(1.01551 0.00913785 0)
(1.01522 0.00929219 0)
(1.01508 0.0110299 0)
(1.00826 0.027649 0)
(1.00894 0.0280103 0)
(1.00962 0.028366 0)
(1.0103 0.0287165 0)
(1.011 0.0290623 0)
(1.01169 0.0294037 0)
(1.0124 0.0297413 0)
(1.01311 0.0300759 0)
(1.01383 0.0304084 0)
(1.01457 0.0307402 0)
(1.01531 0.0310732 0)
(1.01606 0.0314096 0)
(1.01682 0.0317518 0)
(1.0176 0.0321029 0)
(1.0184 0.0324658 0)
(1.01922 0.0328436 0)
(1.02008 0.0332391 0)
(1.02096 0.0336545 0)
(1.0219 0.0340909 0)
(1.02289 0.0345484 0)
(1.02394 0.0350252 0)
(1.02508 0.0355172 0)
(1.0263 0.036018 0)
(1.02763 0.036518 0)
(1.02909 0.0370043 0)
(1.03067 0.0374604 0)
(1.03239 0.0378663 0)
(1.03426 0.0381988 0)
(1.03628 0.0384313 0)
(1.03846 0.038535 0)
(1.04079 0.0384788 0)
(1.04325 0.0382298 0)
(1.04584 0.0377536 0)
(1.04854 0.0370148 0)
(1.0513 0.0359789 0)
(1.0541 0.0346142 0)
(1.05688 0.0328952 0)
(1.05957 0.0308072 0)
(1.06212 0.0283491 0)
(1.06446 0.0255352 0)
(1.06653 0.022394 0)
(1.06827 0.0189659 0)
(1.06963 0.015297 0)
(1.07059 0.011439 0)
(1.07112 0.00744582 0)
(1.07118 0.00337279 0)
(1.07075 -0.000712886 0)
(1.06984 -0.00473528 0)
(1.06844 -0.00861244 0)
(1.06657 -0.0122586 0)
(1.06429 -0.0155947 0)
(1.06167 -0.0185582 0)
(1.0588 -0.0211103 0)
(1.05575 -0.0232375 0)
(1.05261 -0.0249494 0)
(1.04945 -0.0262719 0)
(1.04631 -0.0272402 0)
(1.04322 -0.0278916 0)
(1.04021 -0.0282605 0)
(1.0373 -0.0283765 0)
(1.03448 -0.028263 0)
(1.03178 -0.0279387 0)
(1.02918 -0.0274187 0)
(1.02671 -0.0267161 0)
(1.02437 -0.0258433 0)
(1.02217 -0.024813 0)
(1.02011 -0.0236382 0)
(1.01821 -0.0223326 0)
(1.01647 -0.0209104 0)
(1.0149 -0.0193863 0)
(1.0135 -0.0177756 0)
(1.01228 -0.0160942 0)
(1.01124 -0.0143589 0)
(1.01039 -0.0125875 0)
(1.00973 -0.0107989 0)
(1.00925 -0.00901316 0)
(1.00895 -0.00725068 0)
(1.00883 -0.00553267 0)
(1.00887 -0.00387976 0)
(1.00907 -0.00231172 0)
(1.0094 -0.000846498 0)
(1.00985 0.00049981 0)
(1.0104 0.00171569 0)
(1.01101 0.00279173 0)
(1.01167 0.00372461 0)
(1.01235 0.00451464 0)
(1.01301 0.00516705 0)
(1.01365 0.00569513 0)
(1.01421 0.0061084 0)
(1.01473 0.00643998 0)
(1.01512 0.00668941 0)
(1.01546 0.00692825 0)
(1.01563 0.00710828 0)
(1.01579 0.00739055 0)
(1.01573 0.00758646 0)
(1.01576 0.00807814 0)
(1.01554 0.00831876 0)
(1.01553 0.00922877 0)
(1.01528 0.00940986 0)
(1.01529 0.0110399 0)
(1.00837 0.02676 0)
(1.00904 0.0271224 0)
(1.00971 0.0274779 0)
(1.01039 0.0278271 0)
(1.01107 0.0281706 0)
(1.01176 0.0285089 0)
(1.01245 0.0288426 0)
(1.01316 0.0291726 0)
(1.01388 0.0294997 0)
(1.0146 0.0298251 0)
(1.01534 0.0301503 0)
(1.01609 0.0304768 0)
(1.01686 0.0308066 0)
(1.01765 0.0311416 0)
(1.01846 0.0314839 0)
(1.01929 0.0318354 0)
(1.02015 0.0321976 0)
(1.02106 0.0325713 0)
(1.022 0.0329566 0)
(1.023 0.0333525 0)
(1.02407 0.0337561 0)
(1.0252 0.0341631 0)
(1.02642 0.0345667 0)
(1.02773 0.0349579 0)
(1.02914 0.0353247 0)
(1.03067 0.0356526 0)
(1.03231 0.0359241 0)
(1.03408 0.0361191 0)
(1.03598 0.0362149 0)
(1.038 0.036187 0)
(1.04014 0.0360091 0)
(1.04239 0.0356536 0)
(1.04473 0.0350924 0)
(1.04715 0.0342972 0)
(1.04961 0.0332412 0)
(1.05209 0.0319008 0)
(1.05453 0.0302578 0)
(1.05689 0.0283024 0)
(1.05911 0.026035 0)
(1.06115 0.023467 0)
(1.06295 0.0206215 0)
(1.06446 0.0175297 0)
(1.06565 0.0142306 0)
(1.06649 0.0107679 0)
(1.06694 0.0071878 0)
(1.06698 0.00354271 0)
(1.06661 -0.000108485 0)
(1.06581 -0.00370235 0)
(1.0646 -0.00717222 0)
(1.06298 -0.0104496 0)
(1.06102 -0.0134716 0)
(1.05875 -0.0161876 0)
(1.05624 -0.0185636 0)
(1.05357 -0.0205839 0)
(1.05079 -0.0222496 0)
(1.04795 -0.0235748 0)
(1.04511 -0.024582 0)
(1.0423 -0.0252974 0)
(1.03954 -0.0257468 0)
(1.03684 -0.025954 0)
(1.03422 -0.0259391 0)
(1.0317 -0.0257194 0)
(1.02927 -0.0253097 0)
(1.02695 -0.024723 0)
(1.02475 -0.0239719 0)
(1.02267 -0.0230687 0)
(1.02072 -0.0220262 0)
(1.01892 -0.0208575 0)
(1.01727 -0.0195759 0)
(1.01576 -0.0181956 0)
(1.01442 -0.0167309 0)
(1.01325 -0.0151971 0)
(1.01224 -0.0136097 0)
(1.0114 -0.0119857 0)
(1.01073 -0.0103422 0)
(1.01023 -0.0086977 0)
(1.0099 -0.00707064 0)
(1.00973 -0.0054801 0)
(1.00971 -0.00394431 0)
(1.00983 -0.00248121 0)
(1.01007 -0.00110659 0)
(1.01043 0.000165231 0)
(1.01087 0.00132405 0)
(1.01138 0.00236128 0)
(1.01193 0.00327404 0)
(1.0125 0.0040621 0)
(1.01307 0.00473022 0)
(1.01362 0.00528921 0)
(1.01412 0.00574788 0)
(1.01458 0.00613389 0)
(1.01493 0.00644763 0)
(1.01525 0.00675003 0)
(1.01541 0.00699944 0)
(1.01559 0.00733595 0)
(1.01557 0.00759231 0)
(1.01565 0.00810786 0)
(1.01549 0.00839008 0)
(1.01556 0.00927154 0)
(1.01536 0.00947482 0)
(1.0155 0.0110028 0)
(1.00852 0.0258623 0)
(1.00917 0.0262243 0)
(1.00983 0.0265784 0)
(1.01049 0.026925 0)
(1.01116 0.027265 0)
(1.01184 0.0275988 0)
(1.01253 0.0279271 0)
(1.01323 0.0282506 0)
(1.01394 0.0285701 0)
(1.01466 0.0288865 0)
(1.01539 0.029201 0)
(1.01614 0.0295146 0)
(1.01691 0.0298286 0)
(1.0177 0.0301444 0)
(1.01851 0.0304632 0)
(1.01935 0.0307858 0)
(1.02022 0.0311128 0)
(1.02112 0.0314442 0)
(1.02207 0.0317792 0)
(1.02307 0.0321159 0)
(1.02413 0.0324511 0)
(1.02525 0.0327799 0)
(1.02645 0.0330959 0)
(1.02773 0.0333904 0)
(1.0291 0.0336529 0)
(1.03056 0.0338702 0)
(1.03212 0.0340273 0)
(1.03379 0.0341068 0)
(1.03556 0.0340896 0)
(1.03743 0.0339548 0)
(1.03939 0.0336806 0)
(1.04144 0.0332442 0)
(1.04356 0.0326227 0)
(1.04572 0.0317937 0)
(1.04792 0.0307367 0)
(1.05011 0.0294338 0)
(1.05225 0.0278723 0)
(1.05432 0.0260456 0)
(1.05626 0.0239551 0)
(1.05804 0.0216108 0)
(1.0596 0.0190311 0)
(1.06092 0.0162415 0)
(1.06196 0.0132751 0)
(1.06268 0.0101673 0)
(1.06307 0.00695996 0)
(1.0631 0.00369941 0)
(1.06278 0.000436081 0)
(1.06209 -0.00277891 0)
(1.06104 -0.00588848 0)
(1.05964 -0.00883773 0)
(1.05794 -0.0115762 0)
(1.05597 -0.0140621 0)
(1.05379 -0.0162658 0)
(1.05144 -0.0181705 0)
(1.04897 -0.0197722 0)
(1.04644 -0.0210772 0)
(1.04388 -0.0220989 0)
(1.04133 -0.0228549 0)
(1.0388 -0.023364 0)
(1.03632 -0.0236446 0)
(1.0339 -0.0237136 0)
(1.03155 -0.0235863 0)
(1.02929 -0.0232763 0)
(1.02712 -0.0227961 0)
(1.02505 -0.0221579 0)
(1.0231 -0.0213736 0)
(1.02126 -0.0204552 0)
(1.01956 -0.0194153 0)
(1.01799 -0.0182666 0)
(1.01656 -0.0170222 0)
(1.01527 -0.0156959 0)
(1.01414 -0.0143018 0)
(1.01316 -0.0128547 0)
(1.01233 -0.01137 0)
(1.01166 -0.00986374 0)
(1.01115 -0.00835255 0)
(1.01079 -0.00685326 0)
(1.01058 -0.00538304 0)
(1.0105 -0.0039582 0)
(1.01055 -0.00259474 0)
(1.01072 -0.00130651 0)
(1.01098 -0.00010643 0)
(1.01133 0.000996422 0)
(1.01175 0.00199424 0)
(1.0122 0.00288445 0)
(1.01269 0.00366633 0)
(1.01317 0.00434417 0)
(1.01364 0.00492657 0)
(1.01407 0.00542164 0)
(1.01448 0.00585223 0)
(1.01479 0.00621938 0)
(1.01509 0.0065746 0)
(1.01526 0.00688208 0)
(1.01544 0.00726316 0)
(1.01546 0.00756983 0)
(1.01558 0.00810284 0)
(1.01547 0.00841912 0)
(1.0156 0.00927092 0)
(1.01545 0.00949215 0)
(1.01569 0.0109237 0)
(1.00869 0.0249588 0)
(1.00933 0.0253188 0)
(1.00997 0.0256699 0)
(1.01062 0.0260125 0)
(1.01128 0.0263475 0)
(1.01195 0.0266752 0)
(1.01262 0.0269965 0)
(1.01331 0.0273117 0)
(1.01401 0.0276216 0)
(1.01473 0.0279269 0)
(1.01545 0.0282282 0)
(1.0162 0.0285265 0)
(1.01696 0.0288224 0)
(1.01775 0.0291167 0)
(1.01856 0.0294099 0)
(1.01939 0.0297022 0)
(1.02026 0.0299936 0)
(1.02116 0.0302832 0)
(1.02211 0.0305696 0)
(1.0231 0.0308504 0)
(1.02414 0.0311222 0)
(1.02524 0.0313801 0)
(1.02641 0.0316178 0)
(1.02765 0.0318275 0)
(1.02896 0.0319996 0)
(1.03035 0.0321226 0)
(1.03183 0.0321834 0)
(1.03339 0.0321673 0)
(1.03504 0.0320581 0)
(1.03676 0.0318383 0)
(1.03856 0.03149 0)
(1.04042 0.0309944 0)
(1.04233 0.0303331 0)
(1.04428 0.0294887 0)
(1.04623 0.0284452 0)
(1.04817 0.0271895 0)
(1.05006 0.0257125 0)
(1.05187 0.0240101 0)
(1.05357 0.0220845 0)
(1.05511 0.0199442 0)
(1.05648 0.0176046 0)
(1.05762 0.0150873 0)
(1.05852 0.0124187 0)
(1.05915 0.00963075 0)
(1.05949 0.00675883 0)
(1.05952 0.00384329 0)
(1.05924 0.000924218 0)
(1.05864 -0.00195429 0)
(1.05773 -0.00474397 0)
(1.05652 -0.00740014 0)
(1.05505 -0.00988186 0)
(1.05334 -0.0121543 0)
(1.05143 -0.0141914 0)
(1.04937 -0.0159765 0)
(1.04719 -0.0175025 0)
(1.04493 -0.0187704 0)
(1.04263 -0.0197873 0)
(1.04032 -0.0205645 0)
(1.03801 -0.021115 0)
(1.03574 -0.021453 0)
(1.03351 -0.0215918 0)
(1.03134 -0.0215446 0)
(1.02923 -0.0213235 0)
(1.02721 -0.02094 0)
(1.02528 -0.0204055 0)
(1.02345 -0.0197313 0)
(1.02173 -0.0189287 0)
(1.02012 -0.0180093 0)
(1.01863 -0.0169853 0)
(1.01727 -0.0158689 0)
(1.01605 -0.014673 0)
(1.01496 -0.0134107 0)
(1.01401 -0.0120959 0)
(1.0132 -0.0107426 0)
(1.01253 -0.00936563 0)
(1.01201 -0.00798015 0)
(1.01162 -0.00660141 0)
(1.01137 -0.00524471 0)
(1.01125 -0.00392463 0)
(1.01124 -0.00265556 0)
(1.01134 -0.00144981 0)
(1.01152 -0.000318917 0)
(1.01179 0.000729011 0)
(1.01212 0.00168682 0)
(1.01249 0.00255218 0)
(1.01289 0.00332395 0)
(1.0133 0.00400594 0)
(1.0137 0.00460482 0)
(1.01407 0.00512797 0)
(1.01443 0.00559405 0)
(1.01471 0.00600456 0)
(1.01499 0.00640273 0)
(1.01515 0.00675786 0)
(1.01535 0.00717465 0)
(1.01538 0.00752235 0)
(1.01554 0.00806698 0)
(1.01547 0.00841039 0)
(1.01567 0.00923166 0)
(1.01555 0.00946692 0)
(1.01587 0.0108072 0)
(1.00889 0.0240525 0)
(1.00951 0.0244087 0)
(1.01014 0.024755 0)
(1.01077 0.025092 0)
(1.01142 0.0254204 0)
(1.01207 0.0257406 0)
(1.01273 0.026053 0)
(1.01341 0.0263583 0)
(1.0141 0.0266569 0)
(1.0148 0.0269491 0)
(1.01552 0.0272356 0)
(1.01626 0.0275167 0)
(1.01701 0.0277928 0)
(1.01779 0.0280642 0)
(1.01859 0.0283308 0)
(1.01942 0.0285924 0)
(1.02028 0.0288483 0)
(1.02117 0.0290973 0)
(1.0221 0.0293377 0)
(1.02307 0.0295666 0)
(1.02409 0.0297805 0)
(1.02517 0.0299748 0)
(1.0263 0.0301435 0)
(1.02749 0.0302795 0)
(1.02874 0.0303742 0)
(1.03006 0.0304176 0)
(1.03145 0.0303986 0)
(1.03291 0.0303045 0)
(1.03444 0.0301218 0)
(1.03602 0.0298362 0)
(1.03767 0.0294327 0)
(1.03936 0.0288963 0)
(1.04108 0.0282123 0)
(1.04282 0.027367 0)
(1.04456 0.0263483 0)
(1.04627 0.0251465 0)
(1.04794 0.0237553 0)
(1.04953 0.0221724 0)
(1.05102 0.0204004 0)
(1.05237 0.0184469 0)
(1.05355 0.016325 0)
(1.05455 0.0140526 0)
(1.05533 0.0116524 0)
(1.05588 0.00915123 0)
(1.05617 0.00657886 0)
(1.0562 0.00396884 0)
(1.05595 0.00135693 0)
(1.05544 -0.00122116 0)
(1.05465 -0.00372529 0)
(1.05361 -0.00611816 0)
(1.05233 -0.00836638 0)
(1.05085 -0.0104407 0)
(1.04918 -0.012318 0)
(1.04736 -0.0139826 0)
(1.04544 -0.0154254 0)
(1.04343 -0.0166443 0)
(1.04137 -0.0176418 0)
(1.03928 -0.0184244 0)
(1.03719 -0.019001 0)
(1.03511 -0.0193818 0)
(1.03307 -0.0195772 0)
(1.03106 -0.0195981 0)
(1.02912 -0.019455 0)
(1.02724 -0.0191582 0)
(1.02545 -0.018718 0)
(1.02374 -0.0181449 0)
(1.02212 -0.0174493 0)
(1.02061 -0.0166422 0)
(1.0192 -0.0157346 0)
(1.01791 -0.0147381 0)
(1.01675 -0.0136645 0)
(1.0157 -0.0125261 0)
(1.01479 -0.0113355 0)
(1.014 -0.0101058 0)
(1.01334 -0.00885053 0)
(1.01281 -0.00758334 0)
(1.0124 -0.00631794 0)
(1.01212 -0.00506813 0)
(1.01195 -0.00384703 0)
(1.01189 -0.00266745 0)
(1.01193 -0.00154039 0)
(1.01205 -0.00047623 0)
(1.01224 0.000517798 0)
(1.0125 0.00143512 0)
(1.01279 0.00227358 0)
(1.01312 0.00303167 0)
(1.01345 0.0037127 0)
(1.0138 0.00432169 0)
(1.01411 0.00486529 0)
(1.01443 0.00535849 0)
(1.01468 0.00580314 0)
(1.01493 0.00623522 0)
(1.01509 0.00662847 0)
(1.01529 0.00707289 0)
(1.01535 0.00745313 0)
(1.01553 0.00800414 0)
(1.0155 0.00836835 0)
(1.01574 0.00915845 0)
(1.01566 0.00940414 0)
(1.01604 0.0106583 0)
(1.00912 0.0231462 0)
(1.00972 0.0234966 0)
(1.01032 0.0238364 0)
(1.01094 0.0241662 0)
(1.01157 0.0244864 0)
(1.01221 0.0247974 0)
(1.01286 0.0250997 0)
(1.01352 0.0253935 0)
(1.0142 0.0256791 0)
(1.01489 0.0259569 0)
(1.01559 0.0262271 0)
(1.01632 0.0264898 0)
(1.01706 0.026745 0)
(1.01783 0.0269927 0)
(1.01861 0.0272324 0)
(1.01943 0.0274636 0)
(1.02027 0.0276852 0)
(1.02115 0.0278957 0)
(1.02206 0.028093 0)
(1.02301 0.0282743 0)
(1.024 0.0284361 0)
(1.02504 0.028574 0)
(1.02612 0.0286825 0)
(1.02726 0.0287551 0)
(1.02845 0.0287844 0)
(1.0297 0.0287617 0)
(1.031 0.0286774 0)
(1.03236 0.028521 0)
(1.03377 0.0282812 0)
(1.03523 0.0279461 0)
(1.03673 0.0275036 0)
(1.03826 0.0269417 0)
(1.03981 0.0262488 0)
(1.04137 0.0254142 0)
(1.04292 0.0244288 0)
(1.04444 0.0232856 0)
(1.04591 0.0219802 0)
(1.0473 0.0205117 0)
(1.0486 0.0188829 0)
(1.04978 0.0171006 0)
(1.05082 0.0151762 0)
(1.05169 0.0131247 0)
(1.05237 0.0109653 0)
(1.05284 0.00872033 0)
(1.0531 0.00641569 0)
(1.05312 0.00407855 0)
(1.05291 0.00174072 0)
(1.05247 -0.000569295 0)
(1.05179 -0.00281702 0)
(1.05089 -0.00497314 0)
(1.04978 -0.00700914 0)
(1.04849 -0.00890011 0)
(1.04703 -0.0106258 0)
(1.04544 -0.0121713 0)
(1.04373 -0.0135271 0)
(1.04195 -0.0146887 0)
(1.04011 -0.0156558 0)
(1.03823 -0.0164314 0)
(1.03633 -0.0170212 0)
(1.03445 -0.017432 0)
(1.03258 -0.017672 0)
(1.03074 -0.0177498 0)
(1.02895 -0.0176741 0)
(1.02721 -0.017454 0)
(1.02555 -0.0170988 0)
(1.02395 -0.0166177 0)
(1.02244 -0.0160204 0)
(1.02102 -0.0153169 0)
(1.0197 -0.0145174 0)
(1.01849 -0.0136325 0)
(1.01738 -0.012673 0)
(1.01638 -0.0116504 0)
(1.01549 -0.0105762 0)
(1.01473 -0.00946239 0)
(1.01408 -0.00832107 0)
(1.01355 -0.00716476 0)
(1.01313 -0.00600581 0)
(1.01282 -0.00485666 0)
(1.01261 -0.00372906 0)
(1.01251 -0.00263437 0)
(1.01249 -0.00158241 0)
(1.01255 -0.000582578 0)
(1.01268 0.000358599 0)
(1.01287 0.00123507 0)
(1.0131 0.00204482 0)
(1.01336 0.002786 0)
(1.01363 0.00346146 0)
(1.01392 0.00407478 0)
(1.01419 0.00463188 0)
(1.01446 0.00514464 0)
(1.01469 0.00561504 0)
(1.01492 0.00607283 0)
(1.01507 0.00649553 0)
(1.01528 0.00696029 0)
(1.01535 0.00736539 0)
(1.01555 0.00791809 0)
(1.01555 0.00829738 0)
(1.01582 0.00905587 0)
(1.01577 0.00930873 0)
(1.0162 0.0104818 0)
(1.00936 0.0222428 0)
(1.00994 0.0225856 0)
(1.01053 0.0229172 0)
(1.01112 0.023238 0)
(1.01173 0.0235485 0)
(1.01236 0.0238489 0)
(1.01299 0.0241395 0)
(1.01364 0.0244205 0)
(1.0143 0.0246921 0)
(1.01497 0.0249543 0)
(1.01566 0.0252072 0)
(1.01637 0.0254507 0)
(1.0171 0.0256845 0)
(1.01785 0.0259083 0)
(1.01862 0.0261215 0)
(1.01942 0.0263232 0)
(1.02024 0.026512 0)
(1.02109 0.0266864 0)
(1.02198 0.0268441 0)
(1.0229 0.0269825 0)
(1.02385 0.0270979 0)
(1.02485 0.0271864 0)
(1.02589 0.027243 0)
(1.02697 0.027262 0)
(1.0281 0.0272368 0)
(1.02927 0.02716 0)
(1.03049 0.0270234 0)
(1.03175 0.0268184 0)
(1.03305 0.0265354 0)
(1.03439 0.0261649 0)
(1.03575 0.0256971 0)
(1.03714 0.0251224 0)
(1.03853 0.0244318 0)
(1.03993 0.0236169 0)
(1.04131 0.0226711 0)
(1.04266 0.0215892 0)
(1.04395 0.0203686 0)
(1.04518 0.019009 0)
(1.04632 0.0175136 0)
(1.04735 0.0158886 0)
(1.04826 0.0141435 0)
(1.04902 0.0122914 0)
(1.04961 0.0103482 0)
(1.05002 0.00833328 0)
(1.05025 0.00626747 0)
(1.05027 0.00417499 0)
(1.05009 0.00208054 0)
(1.04971 1.19912e-05 0)
(1.04912 -0.00200787 0)
(1.04834 -0.003951 0)
(1.04738 -0.00579377 0)
(1.04626 -0.00751523 0)
(1.04498 -0.00909767 0)
(1.04359 -0.0105273 0)
(1.04208 -0.0117945 0)
(1.0405 -0.0128936 0)
(1.03885 -0.0138222 0)
(1.03717 -0.0145811 0)
(1.03546 -0.0151733 0)
(1.03375 -0.0156033 0)
(1.03205 -0.015877 0)
(1.03037 -0.0160011 0)
(1.02872 -0.0159828 0)
(1.02713 -0.0158298 0)
(1.02558 -0.0155501 0)
(1.0241 -0.015152 0)
(1.0227 -0.0146443 0)
(1.02137 -0.0140358 0)
(1.02013 -0.013336 0)
(1.01899 -0.0125544 0)
(1.01793 -0.0117011 0)
(1.01698 -0.0107863 0)
(1.01614 -0.00982057 0)
(1.01539 -0.00881483 0)
(1.01476 -0.00778006 0)
(1.01423 -0.00672756 0)
(1.0138 -0.00566845 0)
(1.01347 -0.00461388 0)
(1.01324 -0.00357433 0)
(1.01309 -0.00256 0)
(1.01303 -0.0015797 0)
(1.01304 -0.000641893 0)
(1.01312 0.000247524 0)
(1.01324 0.00108293 0)
(1.01341 0.00186238 0)
(1.01362 0.00258378 0)
(1.01384 0.0032495 0)
(1.01407 0.00386191 0)
(1.0143 0.00442624 0)
(1.01453 0.00495167 0)
(1.01473 0.00544025 0)
(1.01495 0.00591633 0)
(1.01509 0.00636068 0)
(1.01529 0.00683923 0)
(1.01538 0.00726224 0)
(1.01559 0.00781251 0)
(1.01562 0.00820173 0)
(1.01591 0.00892841 0)
(1.01588 0.00918549 0)
(1.01635 0.0102822 0)
(1.00961 0.0213452 0)
(1.01017 0.0216785 0)
(1.01074 0.0220001 0)
(1.01132 0.0223105 0)
(1.01191 0.0226099 0)
(1.01251 0.0228983 0)
(1.01313 0.0231761 0)
(1.01375 0.0234432 0)
(1.0144 0.0236997 0)
(1.01506 0.0239455 0)
(1.01573 0.0241805 0)
(1.01642 0.0244044 0)
(1.01713 0.0246168 0)
(1.01786 0.0248171 0)
(1.01861 0.0250046 0)
(1.01938 0.025178 0)
(1.02018 0.0253362 0)
(1.02101 0.0254773 0)
(1.02186 0.0255991 0)
(1.02275 0.025699 0)
(1.02367 0.0257738 0)
(1.02462 0.0258197 0)
(1.02561 0.0258322 0)
(1.02663 0.0258064 0)
(1.02769 0.0257365 0)
(1.02879 0.0256163 0)
(1.02992 0.0254389 0)
(1.03109 0.025197 0)
(1.03229 0.024883 0)
(1.03351 0.0244891 0)
(1.03475 0.0240073 0)
(1.03601 0.0234301 0)
(1.03726 0.0227505 0)
(1.03851 0.0219623 0)
(1.03974 0.0210605 0)
(1.04094 0.0200415 0)
(1.04208 0.0189037 0)
(1.04317 0.0176477 0)
(1.04417 0.0162765 0)
(1.04507 0.0147958 0)
(1.04586 0.0132138 0)
(1.04652 0.0115416 0)
(1.04704 0.00979305 0)
(1.0474 0.00798371 0)
(1.0476 0.00613198 0)
(1.04763 0.00425751 0)
(1.04747 0.00238157 0)
(1.04714 0.000527044 0)
(1.04664 -0.00128775 0)
(1.04597 -0.00303837 0)
(1.04513 -0.00470513 0)
(1.04415 -0.0062702 0)
(1.04304 -0.00771807 0)
(1.04181 -0.0090362 0)
(1.04049 -0.0102152 0)
(1.03909 -0.0112487 0)
(1.03762 -0.0121333 0)
(1.03611 -0.0128681 0)
(1.03458 -0.013454 0)
(1.03303 -0.0138939 0)
(1.03149 -0.0141918 0)
(1.02996 -0.0143527 0)
(1.02845 -0.0143824 0)
(1.02698 -0.0142873 0)
(1.02556 -0.0140741 0)
(1.0242 -0.0137503 0)
(1.02289 -0.0133234 0)
(1.02166 -0.0128015 0)
(1.0205 -0.012193 0)
(1.01942 -0.0115066 0)
(1.01843 -0.0107512 0)
(1.01752 -0.00993625 0)
(1.01671 -0.00907124 0)
(1.016 -0.00816602 0)
(1.01538 -0.00723057 0)
(1.01485 -0.00627498 0)
(1.01441 -0.00530923 0)
(1.01407 -0.00434331 0)
(1.01381 -0.00338657 0)
(1.01364 -0.00244826 0)
(1.01354 -0.0015363 0)
(1.01351 -0.000658277 0)
(1.01353 0.000180469 0)
(1.01361 0.000974699 0)
(1.01373 0.00172251 0)
(1.01388 0.00242161 0)
(1.01405 0.00307391 0)
(1.01424 0.00368078 0)
(1.01443 0.00424672 0)
(1.01463 0.0047787 0)
(1.01481 0.00527866 0)
(1.015 0.00576641 0)
(1.01514 0.00622542 0)
(1.01534 0.00671193 0)
(1.01543 0.00714668 0)
(1.01565 0.00769091 0)
(1.0157 0.0080855 0)
(1.01601 0.00878038 0)
(1.016 0.00903907 0)
(1.01649 0.0100642 0)
(1.00988 0.0204559 0)
(1.01041 0.0207781 0)
(1.01096 0.0210884 0)
(1.01152 0.0213868 0)
(1.01209 0.0216737 0)
(1.01267 0.0219491 0)
(1.01327 0.022213 0)
(1.01388 0.0224654 0)
(1.0145 0.0227061 0)
(1.01514 0.022935 0)
(1.01579 0.0231518 0)
(1.01646 0.0233561 0)
(1.01715 0.0235474 0)
(1.01785 0.0237249 0)
(1.01858 0.0238877 0)
(1.01933 0.0240348 0)
(1.0201 0.0241646 0)
(1.0209 0.0242754 0)
(1.02172 0.024365 0)
(1.02257 0.0244311 0)
(1.02344 0.0244706 0)
(1.02435 0.0244802 0)
(1.02528 0.0244559 0)
(1.02625 0.0243933 0)
(1.02724 0.0242876 0)
(1.02827 0.0241334 0)
(1.02932 0.0239252 0)
(1.0304 0.0236567 0)
(1.0315 0.0233219 0)
(1.03261 0.0229143 0)
(1.03374 0.0224279 0)
(1.03488 0.0218566 0)
(1.03601 0.0211951 0)
(1.03713 0.0204387 0)
(1.03822 0.0195838 0)
(1.03928 0.0186281 0)
(1.0403 0.0175707 0)
(1.04125 0.0164127 0)
(1.04213 0.015157 0)
(1.04293 0.0138087 0)
(1.04362 0.0123751 0)
(1.0442 0.0108657 0)
(1.04465 0.00929186 0)
(1.04497 0.00766706 0)
(1.04515 0.00600669 0)
(1.04517 0.0043272 0)
(1.04504 0.00264616 0)
(1.04476 0.000981253 0)
(1.04432 -0.000647713 0)
(1.04374 -0.00222364 0)
(1.04302 -0.00372997 0)
(1.04217 -0.00515103 0)
(1.0412 -0.00647314 0)
(1.04012 -0.00768493 0)
(1.03895 -0.0087775 0)
(1.03771 -0.00974437 0)
(1.03641 -0.0105814 0)
(1.03507 -0.0112864 0)
(1.03369 -0.0118593 0)
(1.0323 -0.0123014 0)
(1.0309 -0.0126152 0)
(1.02951 -0.0128043 0)
(1.02814 -0.0128734 0)
(1.0268 -0.0128274 0)
(1.02549 -0.0126723 0)
(1.02423 -0.0124141 0)
(1.02302 -0.0120597 0)
(1.02188 -0.011616 0)
(1.0208 -0.0110906 0)
(1.01979 -0.0104912 0)
(1.01885 -0.00982583 0)
(1.018 -0.0091029 0)
(1.01723 -0.00833099 0)
(1.01654 -0.00751892 0)
(1.01593 -0.00667564 0)
(1.01542 -0.0058102 0)
(1.01498 -0.00493154 0)
(1.01463 -0.00404857 0)
(1.01435 -0.00316976 0)
(1.01415 -0.00230339 0)
(1.01402 -0.0014565 0)
(1.01395 -0.000635947 0)
(1.01394 0.000153371 0)
(1.01397 0.000906539 0)
(1.01404 0.00162167 0)
(1.01415 0.00229635 0)
(1.01428 0.00293203 0)
(1.01443 0.00352924 0)
(1.01459 0.00409184 0)
(1.01476 0.00462491 0)
(1.01491 0.00513025 0)
(1.01508 0.00562379 0)
(1.01521 0.00609126 0)
(1.0154 0.00658059 0)
(1.0155 0.00702161 0)
(1.01573 0.00755669 0)
(1.01579 0.00795262 0)
(1.01611 0.00861591 0)
(1.01611 0.0088739 0)
(1.01662 0.00983191 0)
(1.01015 0.0195778 0)
(1.01066 0.0198874 0)
(1.01119 0.0201848 0)
(1.01173 0.0204701 0)
(1.01227 0.0207435 0)
(1.01283 0.0210048 0)
(1.01341 0.021254 0)
(1.014 0.021491 0)
(1.0146 0.0217155 0)
(1.01521 0.0219273 0)
(1.01584 0.0221259 0)
(1.01649 0.0223109 0)
(1.01715 0.0224816 0)
(1.01784 0.0226373 0)
(1.01854 0.022777 0)
(1.01926 0.0228995 0)
(1.02 0.0230034 0)
(1.02076 0.023087 0)
(1.02154 0.0231483 0)
(1.02235 0.023185 0)
(1.02318 0.0231944 0)
(1.02404 0.0231735 0)
(1.02492 0.0231189 0)
(1.02583 0.0230268 0)
(1.02676 0.0228931 0)
(1.02771 0.0227133 0)
(1.02868 0.0224827 0)
(1.02968 0.0221964 0)
(1.03068 0.0218493 0)
(1.0317 0.0214364 0)
(1.03273 0.0209529 0)
(1.03375 0.0203941 0)
(1.03477 0.019756 0)
(1.03577 0.0190351 0)
(1.03675 0.0182289 0)
(1.0377 0.017336 0)
(1.03859 0.0163561 0)
(1.03944 0.0152904 0)
(1.04021 0.014142 0)
(1.04091 0.0129154 0)
(1.04152 0.0116168 0)
(1.04203 0.0102545 0)
(1.04243 0.00883806 0)
(1.04271 0.00737902 0)
(1.04286 0.00589004 0)
(1.04289 0.00438487 0)
(1.04278 0.0028781 0)
(1.04254 0.00138549 0)
(1.04217 -7.74486e-05 0)
(1.04167 -0.00149684 0)
(1.04104 -0.00285743 0)
(1.0403 -0.0041461 0)
(1.03945 -0.00535102 0)
(1.03851 -0.00646203 0)
(1.03748 -0.00747087 0)
(1.03639 -0.00837117 0)
(1.03523 -0.00915841 0)
(1.03404 -0.00982987 0)
(1.03281 -0.0103844 0)
(1.03155 -0.0108223 0)
(1.03029 -0.0111449 0)
(1.02904 -0.0113548 0)
(1.02779 -0.0114553 0)
(1.02657 -0.0114506 0)
(1.02537 -0.0113453 0)
(1.02421 -0.0111448 0)
(1.0231 -0.0108547 0)
(1.02204 -0.0104812 0)
(1.02103 -0.0100308 0)
(1.02009 -0.0095105 0)
(1.01922 -0.00892734 0)
(1.01841 -0.00828879 0)
(1.01768 -0.00760252 0)
(1.01702 -0.00687638 0)
(1.01644 -0.00611835 0)
(1.01593 -0.00533653 0)
(1.0155 -0.00453893 0)
(1.01514 -0.00373353 0)
(1.01485 -0.00292785 0)
(1.01463 -0.00212927 0)
(1.01447 -0.00134417 0)
(1.01437 -0.000578802 0)
(1.01432 0.000162336 0)
(1.01432 0.000874675 0)
(1.01436 0.00155634 0)
(1.01443 0.0022048 0)
(1.01452 0.00282111 0)
(1.01464 0.00340511 0)
(1.01476 0.00396004 0)
(1.0149 0.00448943 0)
(1.01503 0.00499485 0)
(1.01519 0.00548904 0)
(1.01531 0.00595953 0)
(1.01549 0.00644721 0)
(1.01559 0.00688973 0)
(1.01582 0.00741304 0)
(1.01589 0.00780681 0)
(1.01622 0.00843892 0)
(1.01623 0.00869422 0)
(1.01674 0.00958952 0)
(1.01043 0.0187132 0)
(1.01092 0.0190089 0)
(1.01142 0.0192923 0)
(1.01193 0.0195635 0)
(1.01246 0.0198224 0)
(1.013 0.0200689 0)
(1.01355 0.0203028 0)
(1.01411 0.020524 0)
(1.01469 0.020732 0)
(1.01528 0.0209266 0)
(1.01589 0.0211073 0)
(1.01651 0.0212735 0)
(1.01715 0.0214246 0)
(1.0178 0.0215597 0)
(1.01847 0.0216779 0)
(1.01916 0.0217779 0)
(1.01987 0.0218585 0)
(1.02059 0.0219179 0)
(1.02134 0.0219545 0)
(1.02211 0.021966 0)
(1.0229 0.0219501 0)
(1.0237 0.0219042 0)
(1.02453 0.0218252 0)
(1.02538 0.02171 0)
(1.02624 0.0215551 0)
(1.02713 0.0213568 0)
(1.02803 0.0211112 0)
(1.02894 0.0208144 0)
(1.02986 0.0204622 0)
(1.03079 0.0200507 0)
(1.03172 0.0195761 0)
(1.03265 0.019035 0)
(1.03356 0.0184242 0)
(1.03446 0.0177413 0)
(1.03533 0.0169846 0)
(1.03617 0.0161532 0)
(1.03697 0.0152475 0)
(1.03772 0.0142688 0)
(1.0384 0.01322 0)
(1.03902 0.012105 0)
(1.03955 0.0109294 0)
(1.04 0.00970018 0)
(1.04035 0.00842561 0)
(1.0406 0.00711527 0)
(1.04074 0.00577971 0)
(1.04077 0.00443066 0)
(1.04068 0.00308059 0)
(1.04048 0.0017423 0)
(1.04016 0.000428591 0)
(1.03972 -0.000849004 0)
(1.03918 -0.00207693 0)
(1.03854 -0.00324407 0)
(1.0378 -0.00434028 0)
(1.03697 -0.00535648 0)
(1.03607 -0.00628507 0)
(1.03511 -0.00711999 0)
(1.03409 -0.00785667 0)
(1.03302 -0.00849197 0)
(1.03193 -0.00902416 0)
(1.03081 -0.00945273 0)
(1.02967 -0.00977825 0)
(1.02854 -0.0100023 0)
(1.02741 -0.0101273 0)
(1.0263 -0.0101565 0)
(1.02521 -0.0100936 0)
(1.02415 -0.00994292 0)
(1.02313 -0.00970943 0)
(1.02215 -0.00939837 0)
(1.02122 -0.0090154 0)
(1.02034 -0.00856651 0)
(1.01952 -0.00805798 0)
(1.01876 -0.00749638 0)
(1.01807 -0.00688849 0)
(1.01744 -0.00624129 0)
(1.01688 -0.00556185 0)
(1.01639 -0.00485736 0)
(1.01596 -0.00413496 0)
(1.0156 -0.00340178 0)
(1.01531 -0.00266452 0)
(1.01507 -0.00192977 0)
(1.0149 -0.00120334 0)
(1.01477 -0.000490906 0)
(1.01469 0.000203415 0)
(1.01466 0.000875364 0)
(1.01466 0.00152306 0)
(1.0147 0.00214389 0)
(1.01476 0.00273853 0)
(1.01485 0.00330631 0)
(1.01494 0.00384984 0)
(1.01506 0.00437144 0)
(1.01517 0.00487236 0)
(1.01531 0.00536274 0)
(1.01543 0.00583153 0)
(1.0156 0.00631371 0)
(1.0157 0.0067536 0)
(1.01592 0.00726296 0)
(1.016 0.00765157 0)
(1.01632 0.00825307 0)
(1.01634 0.00850397 0)
(1.01685 0.00934082 0)
(1.0107 0.0178645 0)
(1.01117 0.0181453 0)
(1.01165 0.0184137 0)
(1.01214 0.0186699 0)
(1.01264 0.0189137 0)
(1.01316 0.0191448 0)
(1.01368 0.0193631 0)
(1.01422 0.0195682 0)
(1.01477 0.0197597 0)
(1.01534 0.0199374 0)
(1.01592 0.0201006 0)
(1.01652 0.0202488 0)
(1.01713 0.0203812 0)
(1.01775 0.0204971 0)
(1.01839 0.0205954 0)
(1.01905 0.0206751 0)
(1.01972 0.0207348 0)
(1.02041 0.0207732 0)
(1.02112 0.0207884 0)
(1.02184 0.0207787 0)
(1.02258 0.020742 0)
(1.02334 0.0206758 0)
(1.02411 0.0205778 0)
(1.0249 0.0204452 0)
(1.02571 0.0202751 0)
(1.02653 0.0200644 0)
(1.02736 0.01981 0)
(1.02819 0.0195087 0)
(1.02904 0.0191572 0)
(1.02988 0.0187525 0)
(1.03073 0.0182916 0)
(1.03156 0.017772 0)
(1.03239 0.0171913 0)
(1.03319 0.0165479 0)
(1.03397 0.0158406 0)
(1.03472 0.0150692 0)
(1.03543 0.0142342 0)
(1.03609 0.0133371 0)
(1.0367 0.0123804 0)
(1.03724 0.0113679 0)
(1.03771 0.0103043 0)
(1.03811 0.00919568 0)
(1.03842 0.00804895 0)
(1.03864 0.00687223 0)
(1.03877 0.00567454 0)
(1.0388 0.00446558 0)
(1.03873 0.00325569 0)
(1.03855 0.00205547 0)
(1.03828 0.000875468 0)
(1.03791 -0.000273193 0)
(1.03744 -0.00138019 0)
(1.03688 -0.00243582 0)
(1.03624 -0.00343137 0)
(1.03552 -0.00435872 0)
(1.03473 -0.00521093 0)
(1.03388 -0.00598236 0)
(1.03298 -0.00666852 0)
(1.03204 -0.00726613 0)
(1.03106 -0.00777308 0)
(1.03006 -0.00818831 0)
(1.02905 -0.0085118 0)
(1.02802 -0.00874437 0)
(1.02701 -0.00888769 0)
(1.026 -0.00894412 0)
(1.02501 -0.00891665 0)
(1.02404 -0.00880883 0)
(1.0231 -0.00862469 0)
(1.0222 -0.00836871 0)
(1.02134 -0.00804573 0)
(1.02053 -0.00766093 0)
(1.01977 -0.00721978 0)
(1.01906 -0.00672801 0)
(1.01841 -0.00619154 0)
(1.01781 -0.00561652 0)
(1.01728 -0.00500922 0)
(1.0168 -0.004376 0)
(1.01638 -0.00372313 0)
(1.01603 -0.00305699 0)
(1.01573 -0.0023836 0)
(1.01548 -0.00170888 0)
(1.01529 -0.00103802 0)
(1.01514 -0.000376196 0)
(1.01505 0.000272812 0)
(1.01499 0.000904999 0)
(1.01496 0.00151848 0)
(1.01497 0.0021106 0)
(1.015 0.00268173 0)
(1.01506 0.00323075 0)
(1.01514 0.00375975 0)
(1.01523 0.00427004 0)
(1.01533 0.00476256 0)
(1.01545 0.00524532 0)
(1.01555 0.00570839 0)
(1.01571 0.00618181 0)
(1.01581 0.00661556 0)
(1.01603 0.00710922 0)
(1.01611 0.00749014 0)
(1.01643 0.00806176 0)
(1.01646 0.00830683 0)
(1.01695 0.00908932 0)
(1.01098 0.017034 0)
(1.01142 0.0172989 0)
(1.01188 0.0175517 0)
(1.01234 0.0177923 0)
(1.01282 0.0180204 0)
(1.01331 0.0182358 0)
(1.01381 0.0184382 0)
(1.01432 0.0186272 0)
(1.01485 0.0188025 0)
(1.01539 0.0189635 0)
(1.01594 0.0191099 0)
(1.01651 0.0192408 0)
(1.01709 0.0193558 0)
(1.01769 0.0194538 0)
(1.01829 0.0195341 0)
(1.01892 0.0195956 0)
(1.01955 0.019637 0)
(1.02021 0.0196571 0)
(1.02087 0.0196543 0)
(1.02155 0.019627 0)
(1.02225 0.0195734 0)
(1.02296 0.0194914 0)
(1.02368 0.019379 0)
(1.02441 0.0192339 0)
(1.02516 0.0190536 0)
(1.02592 0.0188358 0)
(1.02668 0.0185777 0)
(1.02745 0.0182769 0)
(1.02822 0.0179309 0)
(1.02898 0.0175372 0)
(1.02975 0.0170937 0)
(1.0305 0.0165983 0)
(1.03125 0.0160496 0)
(1.03197 0.0154463 0)
(1.03267 0.0147879 0)
(1.03333 0.0140743 0)
(1.03397 0.0133063 0)
(1.03455 0.0124855 0)
(1.03509 0.0116142 0)
(1.03557 0.0106956 0)
(1.03599 0.00973413 0)
(1.03634 0.00873469 0)
(1.03662 0.00770338 0)
(1.03682 0.00664694 0)
(1.03693 0.00557301 0)
(1.03697 0.00448965 0)
(1.03691 0.00340546 0)
(1.03676 0.00232947 0)
(1.03653 0.00127089 0)
(1.03621 0.000238636 0)
(1.03581 -0.000758878 0)
(1.03532 -0.00171274 0)
(1.03477 -0.00261534 0)
(1.03414 -0.00345977 0)
(1.03345 -0.00423979 0)
(1.0327 -0.00495014 0)
(1.03191 -0.00558659 0)
(1.03108 -0.00614585 0)
(1.03021 -0.0066256 0)
(1.02932 -0.00702444 0)
(1.02841 -0.00734187 0)
(1.0275 -0.00757817 0)
(1.02658 -0.00773437 0)
(1.02567 -0.00781218 0)
(1.02477 -0.00781389 0)
(1.02389 -0.00774232 0)
(1.02304 -0.00760078 0)
(1.02221 -0.00739299 0)
(1.02142 -0.00712303 0)
(1.02067 -0.00679532 0)
(1.01997 -0.00641458 0)
(1.0193 -0.00598575 0)
(1.01869 -0.00551402 0)
(1.01813 -0.00500474 0)
(1.01762 -0.00446336 0)
(1.01716 -0.00389553 0)
(1.01676 -0.00330683 0)
(1.01641 -0.00270285 0)
(1.01611 -0.00208894 0)
(1.01586 -0.00147046 0)
(1.01565 -0.000852026 0)
(1.01549 -0.000238458 0)
(1.01538 0.000366793 0)
(1.0153 0.000960001 0)
(1.01525 0.00153928 0)
(1.01524 0.00210198 0)
(1.01525 0.00264816 0)
(1.01528 0.00317642 0)
(1.01534 0.00368829 0)
(1.01541 0.00418437 0)
(1.01549 0.00466522 0)
(1.0156 0.00513717 0)
(1.01569 0.00559113 0)
(1.01584 0.00605309 0)
(1.01594 0.00647776 0)
(1.01614 0.00695435 0)
(1.01623 0.0073255 0)
(1.01653 0.00786811 0)
(1.01657 0.00810619 0)
(1.01704 0.00883823 0)
(1.01125 0.0162235 0)
(1.01166 0.0164721 0)
(1.0121 0.0167087 0)
(1.01254 0.0169333 0)
(1.01299 0.0171455 0)
(1.01345 0.017345 0)
(1.01393 0.0175314 0)
(1.01442 0.0177046 0)
(1.01492 0.0178638 0)
(1.01543 0.0180088 0)
(1.01596 0.018139 0)
(1.01649 0.0182538 0)
(1.01704 0.0183524 0)
(1.01761 0.0184342 0)
(1.01818 0.0184981 0)
(1.01877 0.0185434 0)
(1.01937 0.0185689 0)
(1.01998 0.0185734 0)
(1.02061 0.0185556 0)
(1.02125 0.018514 0)
(1.0219 0.018447 0)
(1.02256 0.0183531 0)
(1.02323 0.0182304 0)
(1.02391 0.0180769 0)
(1.0246 0.0178908 0)
(1.0253 0.0176701 0)
(1.026 0.0174126 0)
(1.0267 0.0171164 0)
(1.0274 0.0167795 0)
(1.0281 0.0164001 0)
(1.02879 0.0159766 0)
(1.02948 0.0155074 0)
(1.03014 0.0149917 0)
(1.03079 0.0144285 0)
(1.03142 0.0138178 0)
(1.03202 0.0131596 0)
(1.03258 0.012455 0)
(1.0331 0.0117054 0)
(1.03358 0.010913 0)
(1.03401 0.0100807 0)
(1.03438 0.00921211 0)
(1.03469 0.00831173 0)
(1.03494 0.0073846 0)
(1.03512 0.00643648 0)
(1.03523 0.00547368 0)
(1.03526 0.0045031 0)
(1.03522 0.00353201 0)
(1.03509 0.00256782 0)
(1.0349 0.00161854 0)
(1.03462 0.000691589 0)
(1.03428 -0.000206176 0)
(1.03386 -0.00106707 0)
(1.03338 -0.00188413 0)
(1.03283 -0.00265147 0)
(1.03223 -0.00336362 0)
(1.03158 -0.00401572 0)
(1.03088 -0.00460381 0)
(1.03014 -0.00512471 0)
(1.02938 -0.00557604 0)
(1.02859 -0.0059562 0)
(1.02778 -0.00626435 0)
(1.02696 -0.00650037 0)
(1.02614 -0.0066648 0)
(1.02532 -0.00675879 0)
(1.02451 -0.00678404 0)
(1.02371 -0.00674275 0)
(1.02294 -0.00663757 0)
(1.02218 -0.00647155 0)
(1.02146 -0.0062481 0)
(1.02077 -0.00597093 0)
(1.02011 -0.00564403 0)
(1.0195 -0.00527165 0)
(1.01893 -0.00485824 0)
(1.0184 -0.00440848 0)
(1.01792 -0.00392713 0)
(1.01748 -0.0034191 0)
(1.01709 -0.00288931 0)
(1.01675 -0.00234271 0)
(1.01645 -0.00178407 0)
(1.0162 -0.00121816 0)
(1.01599 -0.000649304 0)
(1.01582 -8.15421e-05 0)
(1.01569 0.00048175 0)
(1.01559 0.00103699 0)
(1.01553 0.00158235 0)
(1.0155 0.00211524 0)
(1.01549 0.00263543 0)
(1.0155 0.00314134 0)
(1.01554 0.00363402 0)
(1.0156 0.00411352 0)
(1.01566 0.00458001 0)
(1.01575 0.00503854 0)
(1.01584 0.00548059 0)
(1.01597 0.0059289 0)
(1.01606 0.00634209 0)
(1.01626 0.00680062 0)
(1.01634 0.00716033 0)
(1.01664 0.0076749 0)
(1.01667 0.00790506 0)
(1.01713 0.00859042 0)
(1.0115 0.0154349 0)
(1.0119 0.0156668 0)
(1.01231 0.015887 0)
(1.01272 0.0160953 0)
(1.01315 0.0162914 0)
(1.01359 0.0164751 0)
(1.01404 0.0166458 0)
(1.0145 0.0168033 0)
(1.01498 0.0169471 0)
(1.01546 0.0170766 0)
(1.01596 0.0171915 0)
(1.01647 0.0172911 0)
(1.01699 0.0173746 0)
(1.01752 0.0174415 0)
(1.01806 0.017491 0)
(1.01861 0.017522 0)
(1.01918 0.0175338 0)
(1.01975 0.0175251 0)
(1.02034 0.017495 0)
(1.02093 0.017442 0)
(1.02154 0.017365 0)
(1.02215 0.0172624 0)
(1.02278 0.0171328 0)
(1.02341 0.0169746 0)
(1.02404 0.0167863 0)
(1.02468 0.0165662 0)
(1.02532 0.0163127 0)
(1.02596 0.0160243 0)
(1.0266 0.0156994 0)
(1.02724 0.0153367 0)
(1.02787 0.014935 0)
(1.02848 0.0144933 0)
(1.02909 0.0140108 0)
(1.02967 0.0134873 0)
(1.03023 0.0129227 0)
(1.03076 0.0123174 0)
(1.03127 0.0116724 0)
(1.03173 0.0109891 0)
(1.03216 0.0102695 0)
(1.03254 0.00951622 0)
(1.03287 0.0087324 0)
(1.03315 0.00792184 0)
(1.03338 0.00708885 0)
(1.03354 0.00623833 0)
(1.03364 0.0053756 0)
(1.03367 0.00450649 0)
(1.03364 0.00363702 0)
(1.03354 0.00277357 0)
(1.03337 0.00192249 0)
(1.03314 0.00109039 0)
(1.03284 0.000283578 0)
(1.03249 -0.000492175 0)
(1.03207 -0.00123066 0)
(1.03159 -0.00192652 0)
(1.03107 -0.00257505 0)
(1.0305 -0.00317191 0)
(1.02989 -0.00371339 0)
(1.02924 -0.00419646 0)
(1.02857 -0.00461879 0)
(1.02787 -0.00497866 0)
(1.02715 -0.00527504 0)
(1.02642 -0.0055075 0)
(1.02569 -0.00567619 0)
(1.02495 -0.00578182 0)
(1.02422 -0.0058256 0)
(1.0235 -0.0058092 0)
(1.0228 -0.00573469 0)
(1.02211 -0.00560452 0)
(1.02145 -0.00542148 0)
(1.02082 -0.00518867 0)
(1.02022 -0.00490944 0)
(1.01965 -0.00458739 0)
(1.01912 -0.00422632 0)
(1.01862 -0.00383021 0)
(1.01817 -0.00340323 0)
(1.01775 -0.00294963 0)
(1.01738 -0.00247377 0)
(1.01705 -0.00197997 0)
(1.01676 -0.00147244 0)
(1.01651 -0.000955501 0)
(1.01629 -0.000433069 0)
(1.01612 9.12303e-05 0)
(1.01598 0.00061424 0)
(1.01587 0.00113263 0)
(1.01579 0.00164458 0)
(1.01574 0.00214757 0)
(1.01572 0.00264113 0)
(1.01572 0.00312356 0)
(1.01574 0.00359548 0)
(1.01578 0.00405655 0)
(1.01583 0.00450655 0)
(1.01591 0.00494957 0)
(1.01599 0.00537749 0)
(1.01611 0.00581043 0)
(1.0162 0.00621024 0)
(1.01638 0.00665002 0)
(1.01646 0.006997 0)
(1.01674 0.00748462 0)
(1.01677 0.00770616 0)
(1.0172 0.0083484 0)
(1.01175 0.0146698 0)
(1.01212 0.0148847 0)
(1.01251 0.0150884 0)
(1.0129 0.0152805 0)
(1.0133 0.0154606 0)
(1.01372 0.0156286 0)
(1.01414 0.0157839 0)
(1.01458 0.0159262 0)
(1.01502 0.0160551 0)
(1.01548 0.0161699 0)
(1.01595 0.0162704 0)
(1.01643 0.0163558 0)
(1.01691 0.0164256 0)
(1.01741 0.0164791 0)
(1.01792 0.0165156 0)
(1.01844 0.0165343 0)
(1.01897 0.0165343 0)
(1.01951 0.0165148 0)
(1.02005 0.0164747 0)
(1.02061 0.016413 0)
(1.02117 0.0163286 0)
(1.02174 0.0162202 0)
(1.02232 0.0160867 0)
(1.0229 0.0159268 0)
(1.02348 0.0157392 0)
(1.02407 0.0155226 0)
(1.02466 0.0152758 0)
(1.02524 0.0149976 0)
(1.02582 0.0146868 0)
(1.0264 0.0143425 0)
(1.02697 0.0139638 0)
(1.02753 0.0135501 0)
(1.02807 0.0131009 0)
(1.02859 0.012616 0)
(1.0291 0.0120957 0)
(1.02958 0.0115406 0)
(1.03003 0.0109515 0)
(1.03044 0.0103298 0)
(1.03082 0.00967735 0)
(1.03117 0.00899643 0)
(1.03146 0.00828981 0)
(1.03171 0.00756072 0)
(1.03192 0.00681288 0)
(1.03206 0.0060504 0)
(1.03216 0.00527782 0)
(1.03219 0.00449994 0)
(1.03217 0.00372193 0)
(1.03209 0.00294911 0)
(1.03195 0.00218685 0)
(1.03176 0.00144072 0)
(1.0315 0.000716188 0)
(1.0312 1.82107e-05 0)
(1.03084 -0.000648252 0)
(1.03043 -0.00127814 0)
(1.02997 -0.00186733 0)
(1.02948 -0.00241206 0)
(1.02894 -0.00290893 0)
(1.02838 -0.00335511 0)
(1.02778 -0.00374833 0)
(1.02716 -0.00408688 0)
(1.02653 -0.00436958 0)
(1.02588 -0.0045958 0)
(1.02523 -0.00476541 0)
(1.02457 -0.00487876 0)
(1.02392 -0.00493665 0)
(1.02327 -0.0049403 0)
(1.02263 -0.0048913 0)
(1.02201 -0.00479159 0)
(1.02141 -0.0046434 0)
(1.02083 -0.00444926 0)
(1.02028 -0.00421194 0)
(1.01976 -0.00393445 0)
(1.01926 -0.00362 0)
(1.0188 -0.00327203 0)
(1.01838 -0.00289406 0)
(1.01798 -0.0024898 0)
(1.01763 -0.00206301 0)
(1.01731 -0.00161761 0)
(1.01703 -0.00115733 0)
(1.01678 -0.000685919 0)
(1.01657 -0.000206737 0)
(1.01639 0.000276503 0)
(1.01625 0.000761015 0)
(1.01613 0.00124383 0)
(1.01604 0.0017231 0)
(1.01598 0.00219638 0)
(1.01594 0.002663 0)
(1.01593 0.0031212 0)
(1.01594 0.00357123 0)
(1.01597 0.00401249 0)
(1.016 0.00444438 0)
(1.01607 0.00487031 0)
(1.01614 0.00528237 0)
(1.01625 0.00569864 0)
(1.01633 0.00608362 0)
(1.0165 0.00650426 0)
(1.01657 0.00683756 0)
(1.01683 0.00729939 0)
(1.01687 0.00751181 0)
(1.01727 0.00811433 0)
(1.01199 0.0139294 0)
(1.01234 0.0141275 0)
(1.0127 0.0143147 0)
(1.01306 0.0144907 0)
(1.01344 0.0146552 0)
(1.01383 0.0148078 0)
(1.01423 0.0149481 0)
(1.01464 0.0150758 0)
(1.01506 0.0151903 0)
(1.01549 0.0152913 0)
(1.01593 0.0153782 0)
(1.01637 0.0154506 0)
(1.01683 0.0155078 0)
(1.0173 0.0155493 0)
(1.01777 0.0155744 0)
(1.01826 0.0155824 0)
(1.01875 0.0155726 0)
(1.01925 0.0155443 0)
(1.01976 0.0154964 0)
(1.02028 0.0154282 0)
(1.0208 0.0153387 0)
(1.02132 0.015227 0)
(1.02186 0.015092 0)
(1.02239 0.0149328 0)
(1.02293 0.0147483 0)
(1.02346 0.0145375 0)
(1.024 0.0142995 0)
(1.02454 0.0140333 0)
(1.02507 0.0137382 0)
(1.02559 0.0134133 0)
(1.0261 0.0130583 0)
(1.02661 0.0126725 0)
(1.0271 0.0122559 0)
(1.02757 0.0118085 0)
(1.02802 0.0113306 0)
(1.02845 0.0108227 0)
(1.02886 0.0102859 0)
(1.02923 0.00972133 0)
(1.02957 0.00913071 0)
(1.02988 0.00851605 0)
(1.03015 0.00787977 0)
(1.03037 0.00722463 0)
(1.03055 0.0065538 0)
(1.03069 0.00587078 0)
(1.03078 0.00517939 0)
(1.03082 0.0044837 0)
(1.03081 0.00378804 0)
(1.03074 0.00309689 0)
(1.03063 0.00241485 0)
(1.03047 0.00174652 0)
(1.03025 0.00109654 0)
(1.02999 0.000469445 0)
(1.02968 -0.000130731 0)
(1.02933 -0.0006999 0)
(1.02893 -0.00123403 0)
(1.0285 -0.00172981 0)
(1.02804 -0.00218427 0)
(1.02754 -0.00259481 0)
(1.02702 -0.00295925 0)
(1.02648 -0.00327591 0)
(1.02592 -0.00354356 0)
(1.02535 -0.00376143 0)
(1.02476 -0.00392919 0)
(1.02418 -0.00404692 0)
(1.02359 -0.00411509 0)
(1.02301 -0.00413454 0)
(1.02244 -0.00410643 0)
(1.02188 -0.00403226 0)
(1.02134 -0.0039138 0)
(1.02081 -0.00375307 0)
(1.02031 -0.00355234 0)
(1.01982 -0.0033141 0)
(1.01937 -0.00304102 0)
(1.01894 -0.00273597 0)
(1.01854 -0.002402 0)
(1.01818 -0.00204235 0)
(1.01784 -0.00166017 0)
(1.01754 -0.0012589 0)
(1.01727 -0.000841976 0)
(1.01703 -0.000412652 0)
(1.01682 2.59972e-05 0)
(1.01664 0.000470669 0)
(1.01649 0.00091876 0)
(1.01637 0.00136749 0)
(1.01628 0.00181504 0)
(1.01621 0.00225908 0)
(1.01616 0.00269878 0)
(1.01614 0.0031324 0)
(1.01613 0.00355981 0)
(1.01615 0.00398033 0)
(1.01617 0.00439295 0)
(1.01623 0.00480064 0)
(1.01629 0.00519558 0)
(1.01639 0.0055943 0)
(1.01646 0.00596341 0)
(1.01662 0.00636478 0)
(1.01669 0.00668376 0)
(1.01693 0.007121 0)
(1.01696 0.007324 0)
(1.01734 0.00788999 0)
(1.01221 0.0132148 0)
(1.01253 0.0133962 0)
(1.01287 0.0135673 0)
(1.01322 0.0137275 0)
(1.01357 0.0138767 0)
(1.01393 0.0140144 0)
(1.01431 0.0141403 0)
(1.01469 0.0142539 0)
(1.01508 0.0143549 0)
(1.01548 0.0144428 0)
(1.01589 0.0145172 0)
(1.01631 0.0145775 0)
(1.01674 0.0146234 0)
(1.01718 0.0146542 0)
(1.01762 0.0146693 0)
(1.01807 0.0146683 0)
(1.01853 0.0146503 0)
(1.01899 0.0146148 0)
(1.01946 0.0145611 0)
(1.01994 0.0144883 0)
(1.02042 0.0143958 0)
(1.02091 0.0142827 0)
(1.0214 0.0141483 0)
(1.02189 0.0139917 0)
(1.02238 0.0138121 0)
(1.02287 0.0136088 0)
(1.02336 0.0133811 0)
(1.02385 0.0131283 0)
(1.02433 0.0128497 0)
(1.02481 0.012545 0)
(1.02527 0.0122137 0)
(1.02573 0.0118556 0)
(1.02617 0.0114708 0)
(1.0266 0.0110593 0)
(1.027 0.0106215 0)
(1.02739 0.0101581 0)
(1.02775 0.00966996 0)
(1.02809 0.00915828 0)
(1.0284 0.00862453 0)
(1.02867 0.0080705 0)
(1.02891 0.00749826 0)
(1.02912 0.00691023 0)
(1.02929 0.00630909 0)
(1.02941 0.00569782 0)
(1.0295 0.00507963 0)
(1.02954 0.00445799 0)
(1.02954 0.00383652 0)
(1.02949 0.00321901 0)
(1.0294 0.00260934 0)
(1.02926 0.0020114 0)
(1.02908 0.00142913 0)
(1.02886 0.000866352 0)
(1.02859 0.000326802 0)
(1.02829 -0.000186255 0)
(1.02795 -0.000669377 0)
(1.02758 -0.00111943 0)
(1.02717 -0.00153377 0)
(1.02674 -0.00191008 0)
(1.02629 -0.00224633 0)
(1.02581 -0.00254092 0)
(1.02532 -0.0027926 0)
(1.02481 -0.00300051 0)
(1.0243 -0.00316417 0)
(1.02378 -0.00328345 0)
(1.02326 -0.00335857 0)
(1.02274 -0.00339006 0)
(1.02223 -0.00337875 0)
(1.02173 -0.00332573 0)
(1.02123 -0.00323237 0)
(1.02076 -0.00310026 0)
(1.0203 -0.00293123 0)
(1.01986 -0.00272725 0)
(1.01944 -0.00249063 0)
(1.01905 -0.00222372 0)
(1.01868 -0.00192907 0)
(1.01833 -0.0016094 0)
(1.01802 -0.00126764 0)
(1.01773 -0.000906636 0)
(1.01747 -0.000529279 0)
(1.01724 -0.000138669 0)
(1.01704 0.00026238 0)
(1.01686 0.000670934 0)
(1.01671 0.00108461 0)
(1.01659 0.00150081 0)
(1.01649 0.00191776 0)
(1.01642 0.00233326 0)
(1.01636 0.00274636 0)
(1.01633 0.00315534 0)
(1.01631 0.00355981 0)
(1.01632 0.00395903 0)
(1.01634 0.00435164 0)
(1.01639 0.00474034 0)
(1.01643 0.00511732 0)
(1.01652 0.00549794 0)
(1.01659 0.00585049 0)
(1.01673 0.00623269 0)
(1.0168 0.006537 0)
(1.01701 0.0069509 0)
(1.01705 0.00714433 0)
(1.01739 0.00767679 0)
(1.01241 0.0125268 0)
(1.01272 0.012692 0)
(1.01303 0.0128472 0)
(1.01335 0.0129922 0)
(1.01368 0.0131266 0)
(1.01402 0.0132499 0)
(1.01437 0.013362 0)
(1.01473 0.0134623 0)
(1.0151 0.0135505 0)
(1.01547 0.0136262 0)
(1.01585 0.013689 0)
(1.01624 0.0137384 0)
(1.01664 0.013774 0)
(1.01705 0.0137953 0)
(1.01746 0.0138018 0)
(1.01788 0.0137931 0)
(1.0183 0.0137684 0)
(1.01873 0.0137274 0)
(1.01917 0.0136693 0)
(1.01961 0.0135937 0)
(1.02005 0.0134997 0)
(1.0205 0.0133869 0)
(1.02095 0.0132546 0)
(1.0214 0.0131022 0)
(1.02185 0.012929 0)
(1.0223 0.0127345 0)
(1.02275 0.0125182 0)
(1.02319 0.0122795 0)
(1.02363 0.0120181 0)
(1.02406 0.0117336 0)
(1.02448 0.0114258 0)
(1.02489 0.0110948 0)
(1.02529 0.0107405 0)
(1.02568 0.0103632 0)
(1.02604 0.00996336 0)
(1.02639 0.00954157 0)
(1.02672 0.00909871 0)
(1.02702 0.00863586 0)
(1.0273 0.00815433 0)
(1.02755 0.0076557 0)
(1.02777 0.00714178 0)
(1.02795 0.00661464 0)
(1.02811 0.00607657 0)
(1.02822 0.0055301 0)
(1.02831 0.00497795 0)
(1.02835 0.00442304 0)
(1.02835 0.00386843 0)
(1.02832 0.00331732 0)
(1.02825 0.00277297 0)
(1.02813 0.00223871 0)
(1.02798 0.00171784 0)
(1.02779 0.00121359 0)
(1.02757 0.000729205 0)
(1.02731 0.000267778 0)
(1.02702 -0.000168 0)
(1.0267 -0.000575442 0)
(1.02635 -0.000952047 0)
(1.02598 -0.00129571 0)
(1.02558 -0.00160461 0)
(1.02517 -0.00187723 0)
(1.02474 -0.00211234 0)
(1.02429 -0.00230908 0)
(1.02384 -0.00246683 0)
(1.02338 -0.00258533 0)
(1.02292 -0.00266459 0)
(1.02246 -0.00270489 0)
(1.022 -0.00270676 0)
(1.02155 -0.002671 0)
(1.0211 -0.0025986 0)
(1.02067 -0.00249077 0)
(1.02026 -0.00234896 0)
(1.01986 -0.00217477 0)
(1.01948 -0.00196999 0)
(1.01912 -0.00173664 0)
(1.01878 -0.00147694 0)
(1.01846 -0.00119309 0)
(1.01816 -0.000887554 0)
(1.01789 -0.000562909 0)
(1.01765 -0.000221799 0)
(1.01743 0.000133235 0)
(1.01723 0.000499501 0)
(1.01706 0.000874415 0)
(1.01691 0.00125574 0)
(1.01679 0.00164108 0)
(1.01669 0.00202872 0)
(1.01661 0.00241659 0)
(1.01655 0.00280364 0)
(1.01651 0.00318826 0)
(1.01649 0.00356977 0)
(1.01649 0.0039475 0)
(1.0165 0.00431973 0)
(1.01654 0.00468906 0)
(1.01658 0.0050476 0)
(1.01665 0.00540988 0)
(1.01671 0.00574552 0)
(1.01684 0.00610885 0)
(1.0169 0.00639836 0)
(1.0171 0.00679021 0)
(1.01713 0.00697405 0)
(1.01745 0.00747579 0)
(1.0126 0.0118659 0)
(1.01288 0.0120154 0)
(1.01318 0.0121554 0)
(1.01348 0.0122857 0)
(1.01378 0.0124058 0)
(1.0141 0.0125155 0)
(1.01443 0.0126144 0)
(1.01476 0.0127021 0)
(1.0151 0.0127784 0)
(1.01545 0.0128427 0)
(1.0158 0.0128948 0)
(1.01616 0.0129343 0)
(1.01653 0.0129607 0)
(1.01691 0.0129737 0)
(1.01729 0.0129728 0)
(1.01768 0.0129576 0)
(1.01807 0.0129276 0)
(1.01847 0.0128823 0)
(1.01887 0.0128213 0)
(1.01927 0.0127441 0)
(1.01968 0.0126501 0)
(1.02009 0.0125389 0)
(1.02051 0.01241 0)
(1.02092 0.0122629 0)
(1.02133 0.0120971 0)
(1.02174 0.0119123 0)
(1.02215 0.011708 0)
(1.02255 0.0114839 0)
(1.02295 0.0112397 0)
(1.02334 0.0109753 0)
(1.02372 0.0106907 0)
(1.0241 0.0103857 0)
(1.02446 0.0100606 0)
(1.0248 0.00971574 0)
(1.02514 0.00935151 0)
(1.02545 0.00896853 0)
(1.02574 0.00856762 0)
(1.02602 0.00814976 0)
(1.02627 0.00771613 0)
(1.02649 0.00726809 0)
(1.02669 0.00680724 0)
(1.02687 0.00633533 0)
(1.02701 0.00585434 0)
(1.02712 0.00536641 0)
(1.0272 0.00487383 0)
(1.02724 0.00437909 0)
(1.02725 0.00388476 0)
(1.02723 0.00339353 0)
(1.02717 0.00290817 0)
(1.02708 0.00243148 0)
(1.02696 0.00196628 0)
(1.0268 0.00151538 0)
(1.02661 0.00108146 0)
(1.02639 0.000667192 0)
(1.02615 0.000275049 0)
(1.02587 -9.27141e-05 0)
(1.02557 -0.000433939 0)
(1.02525 -0.000746685 0)
(1.0249 -0.00102928 0)
(1.02454 -0.00128031 0)
(1.02417 -0.00149862 0)
(1.02378 -0.00168331 0)
(1.02338 -0.00183374 0)
(1.02298 -0.00194953 0)
(1.02257 -0.00203053 0)
(1.02216 -0.00207682 0)
(1.02175 -0.00208872 0)
(1.02135 -0.00206673 0)
(1.02096 -0.00201157 0)
(1.02057 -0.00192417 0)
(1.02019 -0.00180555 0)
(1.01983 -0.00165705 0)
(1.01948 -0.00148006 0)
(1.01915 -0.00127619 0)
(1.01884 -0.00104726 0)
(1.01855 -0.000795289 0)
(1.01828 -0.000522283 0)
(1.01803 -0.00023046 0)
(1.0178 7.79746e-05 0)
(1.01759 0.000400462 0)
(1.0174 0.000734727 0)
(1.01724 0.00107844 0)
(1.01709 0.00142952 0)
(1.01697 0.00178576 0)
(1.01687 0.00214551 0)
(1.01679 0.00250685 0)
(1.01672 0.00286865 0)
(1.01668 0.00322942 0)
(1.01665 0.00358826 0)
(1.01665 0.0039446 0)
(1.01665 0.00429642 0)
(1.01668 0.00464631 0)
(1.01671 0.00498625 0)
(1.01678 0.00533024 0)
(1.01683 0.00564888 0)
(1.01695 0.00599381 0)
(1.017 0.0062686 0)
(1.01718 0.00663967 0)
(1.01721 0.00681405 0)
(1.01749 0.00728767 0)
(1.01277 0.0112325 0)
(1.01303 0.0113669 0)
(1.01331 0.0114923 0)
(1.01358 0.0116085 0)
(1.01387 0.0117151 0)
(1.01416 0.0118118 0)
(1.01447 0.0118983 0)
(1.01477 0.0119743 0)
(1.01509 0.0120394 0)
(1.01541 0.0120933 0)
(1.01574 0.0121356 0)
(1.01608 0.0121661 0)
(1.01642 0.0121843 0)
(1.01677 0.01219 0)
(1.01712 0.0121827 0)
(1.01748 0.0121622 0)
(1.01784 0.0121279 0)
(1.0182 0.0120795 0)
(1.01857 0.0120167 0)
(1.01895 0.011939 0)
(1.01932 0.0118461 0)
(1.0197 0.0117376 0)
(1.02007 0.011613 0)
(1.02045 0.011472 0)
(1.02083 0.0113144 0)
(1.0212 0.0111397 0)
(1.02157 0.0109478 0)
(1.02194 0.0107384 0)
(1.0223 0.0105114 0)
(1.02266 0.0102667 0)
(1.023 0.0100043 0)
(1.02334 0.00972434 0)
(1.02367 0.00942701 0)
(1.02398 0.00911266 0)
(1.02428 0.00878173 0)
(1.02457 0.00843483 0)
(1.02483 0.00807269 0)
(1.02508 0.0076962 0)
(1.02531 0.00730642 0)
(1.02551 0.00690454 0)
(1.02569 0.00649194 0)
(1.02585 0.00607012 0)
(1.02598 0.00564078 0)
(1.02609 0.00520572 0)
(1.02616 0.00476691 0)
(1.02621 0.00432641 0)
(1.02623 0.00388642 0)
(1.02622 0.00344921 0)
(1.02618 0.00301711 0)
(1.0261 0.00259251 0)
(1.026 0.00217778 0)
(1.02587 0.00177531 0)
(1.02572 0.00138742 0)
(1.02553 0.00101636 0)
(1.02532 0.00066431 0)
(1.02509 0.000333308 0)
(1.02483 2.51763e-05 0)
(1.02455 -0.000258373 0)
(1.02426 -0.000515805 0)
(1.02394 -0.000745809 0)
(1.02362 -0.000947307 0)
(1.02328 -0.00111942 0)
(1.02293 -0.00126147 0)
(1.02258 -0.00137301 0)
(1.02222 -0.00145378 0)
(1.02186 -0.00150371 0)
(1.0215 -0.00152291 0)
(1.02114 -0.00151167 0)
(1.02079 -0.00147047 0)
(1.02044 -0.00139994 0)
(1.02011 -0.00130085 0)
(1.01978 -0.00117417 0)
(1.01947 -0.00102111 0)
(1.01917 -0.000842936 0)
(1.01888 -0.000641079 0)
(1.01861 -0.000417253 0)
(1.01836 -0.000173172 0)
(1.01813 8.92026e-05 0)
(1.01792 0.000367957 0)
(1.01772 0.000660802 0)
(1.01754 0.000965745 0)
(1.01739 0.00128065 0)
(1.01725 0.00160358 0)
(1.01713 0.00193253 0)
(1.01703 0.00226591 0)
(1.01695 0.00260196 0)
(1.01688 0.00293949 0)
(1.01684 0.00327714 0)
(1.01681 0.00361384 0)
(1.0168 0.00394918 0)
(1.01679 0.00428082 0)
(1.01682 0.00461148 0)
(1.01684 0.00493295 0)
(1.0169 0.00525889 0)
(1.01694 0.00556072 0)
(1.01705 0.00588783 0)
(1.01709 0.00614818 0)
(1.01726 0.00649975 0)
(1.01728 0.00666487 0)
(1.01754 0.00711278 0)
(1.01292 0.0106265 0)
(1.01317 0.0107466 0)
(1.01342 0.0108581 0)
(1.01368 0.010961 0)
(1.01394 0.0110548 0)
(1.01421 0.0111393 0)
(1.01449 0.0112142 0)
(1.01478 0.0112792 0)
(1.01507 0.011334 0)
(1.01537 0.0113783 0)
(1.01567 0.0114117 0)
(1.01598 0.0114341 0)
(1.0163 0.0114451 0)
(1.01662 0.0114444 0)
(1.01694 0.0114317 0)
(1.01727 0.0114067 0)
(1.01761 0.0113692 0)
(1.01794 0.0113187 0)
(1.01828 0.011255 0)
(1.01862 0.0111777 0)
(1.01897 0.0110867 0)
(1.01931 0.0109815 0)
(1.01966 0.010862 0)
(1.02 0.0107277 0)
(1.02034 0.0105786 0)
(1.02068 0.0104144 0)
(1.02102 0.010235 0)
(1.02136 0.0100402 0)
(1.02168 0.00982995 0)
(1.02201 0.00960427 0)
(1.02232 0.00936325 0)
(1.02263 0.00910704 0)
(1.02292 0.00883588 0)
(1.02321 0.00855012 0)
(1.02348 0.00825022 0)
(1.02374 0.00793672 0)
(1.02398 0.00761032 0)
(1.0242 0.00727181 0)
(1.02441 0.00692212 0)
(1.0246 0.0065623 0)
(1.02476 0.00619353 0)
(1.02491 0.00581711 0)
(1.02503 0.00543448 0)
(1.02513 0.00504718 0)
(1.02521 0.00465687 0)
(1.02525 0.0042653 0)
(1.02528 0.00387431 0)
(1.02528 0.00348581 0)
(1.02525 0.0031018 0)
(1.02519 0.00272427 0)
(1.02511 0.00235525 0)
(1.02501 0.00199676 0)
(1.02488 0.00165081 0)
(1.02472 0.00131932 0)
(1.02454 0.00100417 0)
(1.02435 0.000707107 0)
(1.02413 0.000429782 0)
(1.02389 0.000173697 0)
(1.02364 -5.97981e-05 0)
(1.02337 -0.000269518 0)
(1.02309 -0.000454425 0)
(1.02279 -0.000613667 0)
(1.02249 -0.000746577 0)
(1.02218 -0.000852669 0)
(1.02187 -0.000931582 0)
(1.02155 -0.000983163 0)
(1.02123 -0.00100734 0)
(1.02092 -0.00100423 0)
(1.02061 -0.000974089 0)
(1.0203 -0.000917369 0)
(1.02 -0.000834657 0)
(1.01971 -0.000726599 0)
(1.01942 -0.000594046 0)
(1.01915 -0.000438076 0)
(1.0189 -0.000259811 0)
(1.01865 -6.06304e-05 0)
(1.01842 0.000157904 0)
(1.01821 0.000394097 0)
(1.01801 0.000646054 0)
(1.01783 0.000912075 0)
(1.01766 0.00119028 0)
(1.01752 0.00147873 0)
(1.01738 0.00177563 0)
(1.01727 0.00207917 0)
(1.01717 0.00238779 0)
(1.01709 0.00269992 0)
(1.01703 0.00301431 0)
(1.01698 0.00332978 0)
(1.01695 0.0036451 0)
(1.01693 0.00396002 0)
(1.01693 0.00427197 0)
(1.01694 0.00458382 0)
(1.01696 0.00488719 0)
(1.01701 0.00519555 0)
(1.01705 0.00548092 0)
(1.01714 0.00579093 0)
(1.01718 0.00603725 0)
(1.01733 0.00637056 0)
(1.01735 0.00652674 0)
(1.01758 0.00695115 0)
(1.01306 0.0100479 0)
(1.01328 0.0101544 0)
(1.01352 0.0102529 0)
(1.01375 0.0103432 0)
(1.014 0.010425 0)
(1.01425 0.0104981 0)
(1.01451 0.0105622 0)
(1.01477 0.010617 0)
(1.01504 0.0106623 0)
(1.01532 0.0106978 0)
(1.0156 0.0107232 0)
(1.01588 0.0107383 0)
(1.01617 0.0107429 0)
(1.01647 0.0107367 0)
(1.01677 0.0107194 0)
(1.01707 0.0106909 0)
(1.01738 0.0106508 0)
(1.01768 0.010599 0)
(1.018 0.0105351 0)
(1.01831 0.0104591 0)
(1.01862 0.0103705 0)
(1.01894 0.0102693 0)
(1.01925 0.0101552 0)
(1.01957 0.010028 0)
(1.01988 0.00988767 0)
(1.02019 0.00973398 0)
(1.0205 0.00956688 0)
(1.0208 0.00938631 0)
(1.0211 0.00919228 0)
(1.02139 0.00898486 0)
(1.02168 0.00876415 0)
(1.02195 0.00853036 0)
(1.02222 0.00828374 0)
(1.02248 0.00802465 0)
(1.02273 0.00775352 0)
(1.02296 0.00747087 0)
(1.02318 0.00717732 0)
(1.02338 0.00687359 0)
(1.02357 0.00656049 0)
(1.02375 0.00623894 0)
(1.0239 0.00590995 0)
(1.02403 0.00557466 0)
(1.02415 0.00523426 0)
(1.02424 0.00489008 0)
(1.02431 0.00454352 0)
(1.02437 0.00419605 0)
(1.02439 0.00384923 0)
(1.0244 0.00350467 0)
(1.02438 0.00316405 0)
(1.02434 0.00282906 0)
(1.02428 0.00250143 0)
(1.0242 0.00218287 0)
(1.02409 0.00187509 0)
(1.02396 0.00157975 0)
(1.02381 0.00129845 0)
(1.02365 0.00103273 0)
(1.02346 0.000784022 0)
(1.02326 0.000553655 0)
(1.02305 0.000342822 0)
(1.02282 0.000152596 0)
(1.02257 -1.60679e-05 0)
(1.02232 -0.00016237 0)
(1.02206 -0.000285656 0)
(1.02179 -0.0003854 0)
(1.02152 -0.000461183 0)
(1.02124 -0.000512748 0)
(1.02096 -0.000539963 0)
(1.02069 -0.000542807 0)
(1.02041 -0.000521355 0)
(1.02014 -0.000475792 0)
(1.01987 -0.000406444 0)
(1.01961 -0.000313847 0)
(1.01936 -0.00019862 0)
(1.01912 -6.15825e-05 0)
(1.01889 9.62683e-05 0)
(1.01867 0.000273826 0)
(1.01846 0.000469685 0)
(1.01826 0.000682444 0)
(1.01808 0.000910594 0)
(1.01791 0.00115249 0)
(1.01776 0.00140645 0)
(1.01762 0.00167074 0)
(1.0175 0.00194371 0)
(1.01739 0.00222369 0)
(1.0173 0.00250923 0)
(1.01722 0.00279888 0)
(1.01716 0.0030914 0)
(1.01711 0.00338576 0)
(1.01708 0.00368061 0)
(1.01706 0.0039759 0)
(1.01705 0.00426884 0)
(1.01706 0.0045625 0)
(1.01708 0.00484832 0)
(1.01712 0.00513971 0)
(1.01715 0.00540916 0)
(1.01723 0.00570286 0)
(1.01727 0.00593567 0)
(1.01739 0.00625195 0)
(1.01742 0.00639955 0)
(1.01762 0.00680249 0)
(1.01317 0.00949621 0)
(1.01338 0.00958993 0)
(1.0136 0.00967618 0)
(1.01382 0.00975477 0)
(1.01404 0.00982544 0)
(1.01428 0.00988794 0)
(1.01451 0.00994204 0)
(1.01476 0.00998748 0)
(1.01501 0.0100241 0)
(1.01526 0.0100515 0)
(1.01552 0.0100697 0)
(1.01578 0.0100784 0)
(1.01605 0.0100773 0)
(1.01632 0.0100664 0)
(1.01659 0.0100453 0)
(1.01687 0.0100139 0)
(1.01715 0.009972 0)
(1.01743 0.00991945 0)
(1.01772 0.00985605 0)
(1.018 0.00978163 0)
(1.01829 0.00969604 0)
(1.01858 0.00959912 0)
(1.01886 0.00949074 0)
(1.01915 0.0093708 0)
(1.01944 0.0092392 0)
(1.01972 0.00909588 0)
(1.02 0.0089408 0)
(1.02027 0.00877399 0)
(1.02054 0.00859549 0)
(1.02081 0.00840539 0)
(1.02107 0.00820386 0)
(1.02132 0.0079911 0)
(1.02156 0.00776738 0)
(1.0218 0.00753305 0)
(1.02202 0.00728851 0)
(1.02223 0.00703425 0)
(1.02243 0.00677082 0)
(1.02262 0.00649887 0)
(1.02279 0.00621911 0)
(1.02295 0.00593233 0)
(1.02309 0.00563942 0)
(1.02322 0.00534133 0)
(1.02333 0.0050391 0)
(1.02342 0.00473383 0)
(1.02349 0.00442672 0)
(1.02354 0.00411899 0)
(1.02357 0.00381198 0)
(1.02359 0.00350703 0)
(1.02358 0.00320556 0)
(1.02355 0.002909 0)
(1.02351 0.00261881 0)
(1.02344 0.00233646 0)
(1.02335 0.00206339 0)
(1.02325 0.00180102 0)
(1.02313 0.00155075 0)
(1.02299 0.00131389 0)
(1.02284 0.0010917 0)
(1.02267 0.000885338 0)
(1.02248 0.00069587 0)
(1.02229 0.000524274 0)
(1.02208 0.000371387 0)
(1.02187 0.000237948 0)
(1.02164 0.000124611 0)
(1.02141 3.19256e-05 0)
(1.02117 -3.96885e-05 0)
(1.02093 -8.98744e-05 0)
(1.02069 -0.000118418 0)
(1.02045 -0.000125184 0)
(1.02021 -0.000110115 0)
(1.01997 -7.32217e-05 0)
(1.01974 -1.4699e-05 0)
(1.01951 6.5071e-05 0)
(1.01928 0.000165628 0)
(1.01907 0.00028639 0)
(1.01886 0.000426508 0)
(1.01866 0.000585064 0)
(1.01847 0.000761036 0)
(1.01829 0.000953178 0)
(1.01813 0.00116012 0)
(1.01798 0.0013804 0)
(1.01784 0.00161249 0)
(1.01771 0.00185484 0)
(1.01759 0.00210592 0)
(1.01749 0.00236423 0)
(1.01741 0.00262838 0)
(1.01733 0.00289707 0)
(1.01727 0.00316907 0)
(1.01723 0.00344351 0)
(1.01719 0.00371895 0)
(1.01717 0.00399555 0)
(1.01716 0.00427032 0)
(1.01717 0.00454657 0)
(1.01718 0.00481555 0)
(1.01722 0.0050907 0)
(1.01724 0.00534489 0)
(1.01731 0.00562314 0)
(1.01734 0.00584307 0)
(1.01746 0.00614349 0)
(1.01748 0.00628292 0)
(1.01766 0.00666624 0)
(1.01327 0.00897084 0)
(1.01347 0.00905268 0)
(1.01366 0.00912756 0)
(1.01387 0.00919526 0)
(1.01408 0.00925559 0)
(1.01429 0.0093083 0)
(1.01451 0.0093532 0)
(1.01473 0.00939007 0)
(1.01496 0.00941872 0)
(1.01519 0.00943898 0)
(1.01543 0.00945065 0)
(1.01567 0.00945357 0)
(1.01592 0.00944759 0)
(1.01617 0.00943254 0)
(1.01642 0.00940827 0)
(1.01667 0.00937465 0)
(1.01693 0.00933152 0)
(1.01719 0.00927878 0)
(1.01745 0.00921628 0)
(1.01771 0.00914391 0)
(1.01797 0.00906157 0)
(1.01823 0.00896917 0)
(1.01849 0.00886663 0)
(1.01875 0.00875389 0)
(1.01901 0.0086309 0)
(1.01927 0.00849766 0)
(1.01952 0.00835419 0)
(1.01977 0.00820052 0)
(1.02002 0.00803675 0)
(1.02026 0.007863 0)
(1.0205 0.00767945 0)
(1.02073 0.0074863 0)
(1.02095 0.00728385 0)
(1.02116 0.0070724 0)
(1.02136 0.00685234 0)
(1.02156 0.00662413 0)
(1.02174 0.00638825 0)
(1.02191 0.00614528 0)
(1.02207 0.00589583 0)
(1.02222 0.00564061 0)
(1.02235 0.00538037 0)
(1.02247 0.00511592 0)
(1.02257 0.00484814 0)
(1.02265 0.00457796 0)
(1.02272 0.00430639 0)
(1.02278 0.00403448 0)
(1.02281 0.00376332 0)
(1.02283 0.00349406 0)
(1.02283 0.0032279 0)
(1.02282 0.00296603 0)
(1.02278 0.0027097 0)
(1.02273 0.00246015 0)
(1.02267 0.00221861 0)
(1.02259 0.0019863 0)
(1.02249 0.00176441 0)
(1.02237 0.00155407 0)
(1.02225 0.00135639 0)
(1.0221 0.00117236 0)
(1.02195 0.00100294 0)
(1.02179 0.000848987 0)
(1.02161 0.000711273 0)
(1.02143 0.000590502 0)
(1.02124 0.000487286 0)
(1.02104 0.000402149 0)
(1.02084 0.000335541 0)
(1.02063 0.000287836 0)
(1.02042 0.000259353 0)
(1.02021 0.000250332 0)
(1.02 0.00026091 0)
(1.01979 0.000291088 0)
(1.01959 0.000340798 0)
(1.01938 0.000409921 0)
(1.01919 0.000498161 0)
(1.019 0.000605066 0)
(1.01881 0.000730073 0)
(1.01863 0.000872406 0)
(1.01847 0.00103114 0)
(1.01831 0.0012052 0)
(1.01816 0.0013934 0)
(1.01802 0.00159443 0)
(1.01789 0.00180692 0)
(1.01778 0.00202946 0)
(1.01767 0.00226065 0)
(1.01758 0.00249913 0)
(1.0175 0.00274358 0)
(1.01743 0.00299287 0)
(1.01737 0.00324576 0)
(1.01733 0.00350156 0)
(1.01729 0.00375874 0)
(1.01727 0.00401768 0)
(1.01726 0.00427525 0)
(1.01727 0.00453496 0)
(1.01727 0.00478795 0)
(1.0173 0.00504768 0)
(1.01733 0.00528738 0)
(1.01739 0.00555106 0)
(1.01742 0.00575879 0)
(1.01752 0.00604449 0)
(1.01754 0.00617621 0)
(1.0177 0.00654159 0)
(1.01336 0.00847101 0)
(1.01353 0.00854187 0)
(1.01372 0.00860622 0)
(1.0139 0.0086639 0)
(1.0141 0.0087147 0)
(1.01429 0.00875844 0)
(1.01449 0.00879493 0)
(1.0147 0.00882399 0)
(1.01491 0.00884547 0)
(1.01512 0.00885922 0)
(1.01534 0.00886509 0)
(1.01556 0.00886294 0)
(1.01579 0.00885267 0)
(1.01601 0.00883414 0)
(1.01624 0.00880725 0)
(1.01648 0.00877191 0)
(1.01671 0.00872801 0)
(1.01695 0.00867547 0)
(1.01718 0.00861421 0)
(1.01742 0.00854416 0)
(1.01766 0.00846526 0)
(1.0179 0.00837747 0)
(1.01814 0.00828074 0)
(1.01838 0.00817507 0)
(1.01861 0.00806045 0)
(1.01885 0.00793691 0)
(1.01908 0.00780449 0)
(1.0193 0.00766328 0)
(1.01953 0.00751338 0)
(1.01975 0.00735494 0)
(1.01996 0.00718814 0)
(1.02017 0.0070132 0)
(1.02037 0.00683039 0)
(1.02056 0.00664002 0)
(1.02075 0.00644243 0)
(1.02093 0.00623804 0)
(1.02109 0.00602729 0)
(1.02125 0.00581069 0)
(1.0214 0.00558877 0)
(1.02153 0.00536213 0)
(1.02166 0.00513143 0)
(1.02177 0.00489735 0)
(1.02186 0.00466064 0)
(1.02194 0.00442208 0)
(1.02201 0.00418252 0)
(1.02207 0.00394284 0)
(1.02211 0.00370397 0)
(1.02213 0.00346685 0)
(1.02214 0.0032325 0)
(1.02213 0.00300194 0)
(1.02211 0.0027762 0)
(1.02208 0.00255634 0)
(1.02203 0.00234342 0)
(1.02196 0.00213846 0)
(1.02189 0.00194249 0)
(1.02179 0.00175648 0)
(1.02169 0.00158139 0)
(1.02157 0.00141808 0)
(1.02145 0.00126741 0)
(1.02131 0.00113012 0)
(1.02116 0.00100692 0)
(1.02101 0.000898448 0)
(1.02085 0.000805276 0)
(1.02068 0.000727916 0)
(1.02051 0.000666829 0)
(1.02033 0.000622423 0)
(1.02015 0.000595051 0)
(1.01997 0.000584997 0)
(1.01979 0.000592481 0)
(1.01961 0.000617657 0)
(1.01943 0.000660603 0)
(1.01925 0.00072128 0)
(1.01908 0.000799508 0)
(1.01891 0.000894973 0)
(1.01875 0.00100722 0)
(1.01859 0.00113563 0)
(1.01844 0.00127944 0)
(1.0183 0.00143773 0)
(1.01817 0.00160945 0)
(1.01805 0.00179343 0)
(1.01793 0.00198843 0)
(1.01783 0.0021932 0)
(1.01773 0.00240641 0)
(1.01765 0.00262687 0)
(1.01757 0.00285331 0)
(1.01751 0.00308475 0)
(1.01746 0.00331997 0)
(1.01742 0.00355844 0)
(1.01738 0.0037986 0)
(1.01736 0.00404101 0)
(1.01735 0.00428241 0)
(1.01735 0.00452656 0)
(1.01736 0.00476447 0)
(1.01739 0.00500969 0)
(1.01741 0.00523572 0)
(1.01746 0.00548575 0)
(1.01749 0.00568201 0)
(1.01758 0.00595404 0)
(1.01759 0.00607854 0)
(1.01773 0.00642747 0)
(1.01342 0.00799578 0)
(1.01359 0.00805654 0)
(1.01376 0.00811124 0)
(1.01393 0.00815973 0)
(1.0141 0.00820183 0)
(1.01429 0.00823738 0)
(1.01447 0.00826623 0)
(1.01466 0.00828823 0)
(1.01485 0.00830325 0)
(1.01505 0.00831117 0)
(1.01525 0.00831189 0)
(1.01545 0.00830529 0)
(1.01566 0.0082913 0)
(1.01586 0.00826983 0)
(1.01607 0.00824081 0)
(1.01629 0.00820418 0)
(1.0165 0.00815988 0)
(1.01672 0.00810786 0)
(1.01693 0.00804808 0)
(1.01715 0.00798052 0)
(1.01737 0.00790514 0)
(1.01758 0.00782194 0)
(1.0178 0.00773092 0)
(1.01802 0.0076321 0)
(1.01823 0.0075255 0)
(1.01845 0.00741119 0)
(1.01866 0.00728923 0)
(1.01886 0.00715973 0)
(1.01907 0.0070228 0)
(1.01927 0.00687862 0)
(1.01946 0.00672735 0)
(1.01965 0.00656922 0)
(1.01983 0.00640449 0)
(1.02001 0.00623345 0)
(1.02018 0.00605641 0)
(1.02034 0.00587375 0)
(1.0205 0.00568587 0)
(1.02064 0.00549319 0)
(1.02078 0.00529621 0)
(1.0209 0.00509543 0)
(1.02101 0.00489139 0)
(1.02112 0.00468471 0)
(1.02121 0.00447598 0)
(1.02129 0.00426589 0)
(1.02136 0.00405514 0)
(1.02141 0.00384445 0)
(1.02145 0.00363461 0)
(1.02148 0.00342643 0)
(1.0215 0.00322073 0)
(1.0215 0.00301838 0)
(1.02149 0.00282026 0)
(1.02147 0.00262725 0)
(1.02143 0.00244026 0)
(1.02138 0.00226016 0)
(1.02132 0.00208783 0)
(1.02125 0.0019241 0)
(1.02117 0.00176978 0)
(1.02107 0.00162566 0)
(1.02097 0.00149244 0)
(1.02086 0.00137082 0)
(1.02074 0.00126141 0)
(1.02061 0.00116479 0)
(1.02047 0.0010815 0)
(1.02033 0.00101204 0)
(1.02019 0.000956868 0)
(1.02004 0.000916398 0)
(1.01988 0.000891017 0)
(1.01973 0.000881067 0)
(1.01957 0.000886839 0)
(1.01942 0.000908562 0)
(1.01926 0.000946383 0)
(1.01911 0.00100035 0)
(1.01896 0.00107041 0)
(1.01882 0.00115637 0)
(1.01868 0.00125789 0)
(1.01854 0.00137448 0)
(1.01841 0.00150548 0)
(1.01828 0.00165011 0)
(1.01817 0.00180743 0)
(1.01806 0.00197641 0)
(1.01795 0.00215592 0)
(1.01786 0.00234482 0)
(1.01778 0.0025419 0)
(1.0177 0.00274607 0)
(1.01763 0.00295615 0)
(1.01758 0.00317129 0)
(1.01753 0.00339029 0)
(1.01749 0.00361278 0)
(1.01746 0.00383717 0)
(1.01744 0.00406421 0)
(1.01743 0.00429055 0)
(1.01743 0.00452016 0)
(1.01744 0.00474397 0)
(1.01746 0.0049756 0)
(1.01748 0.00518885 0)
(1.01753 0.00542613 0)
(1.01755 0.00561167 0)
(1.01763 0.00587105 0)
(1.01764 0.0059888 0)
(1.01777 0.00632264 0)
(1.01348 0.00754407 0)
(1.01363 0.0075956 0)
(1.01378 0.0076415 0)
(1.01394 0.00768162 0)
(1.0141 0.00771582 0)
(1.01427 0.00774396 0)
(1.01444 0.00776591 0)
(1.01461 0.00778155 0)
(1.01479 0.00779079 0)
(1.01497 0.00779353 0)
(1.01515 0.00778969 0)
(1.01534 0.0077792 0)
(1.01552 0.00776202 0)
(1.01571 0.00773808 0)
(1.01591 0.00770735 0)
(1.0161 0.0076698 0)
(1.0163 0.0076254 0)
(1.01649 0.00757414 0)
(1.01669 0.00751601 0)
(1.01689 0.00745102 0)
(1.01709 0.00737917 0)
(1.01729 0.00730047 0)
(1.01748 0.00721497 0)
(1.01768 0.00712271 0)
(1.01788 0.00702374 0)
(1.01807 0.00691813 0)
(1.01826 0.00680598 0)
(1.01845 0.00668741 0)
(1.01863 0.00656255 0)
(1.01882 0.00643155 0)
(1.01899 0.00629462 0)
(1.01917 0.00615195 0)
(1.01933 0.00600379 0)
(1.0195 0.00585041 0)
(1.01965 0.00569211 0)
(1.0198 0.00552921 0)
(1.01994 0.00536207 0)
(1.02007 0.00519108 0)
(1.0202 0.00501664 0)
(1.02032 0.00483919 0)
(1.02042 0.00465921 0)
(1.02052 0.00447719 0)
(1.02061 0.00429365 0)
(1.02068 0.00410915 0)
(1.02075 0.00392428 0)
(1.02081 0.00373965 0)
(1.02085 0.00355591 0)
(1.02088 0.00337373 0)
(1.02091 0.00319381 0)
(1.02092 0.00301687 0)
(1.02092 0.00284366 0)
(1.0209 0.00267491 0)
(1.02088 0.0025114 0)
(1.02084 0.00235386 0)
(1.0208 0.00220304 0)
(1.02074 0.00205967 0)
(1.02068 0.00192443 0)
(1.02061 0.001798 0)
(1.02052 0.00168101 0)
(1.02043 0.00157404 0)
(1.02033 0.00147766 0)
(1.02023 0.0013924 0)
(1.02011 0.00131875 0)
(1.02 0.00125719 0)
(1.01988 0.00120816 0)
(1.01975 0.00117209 0)
(1.01962 0.00114939 0)
(1.01949 0.00114043 0)
(1.01936 0.00114555 0)
(1.01923 0.00116505 0)
(1.0191 0.00119913 0)
(1.01897 0.00124794 0)
(1.01884 0.00131149 0)
(1.01871 0.0013897 0)
(1.01859 0.00148231 0)
(1.01847 0.00158894 0)
(1.01836 0.00170903 0)
(1.01825 0.00184191 0)
(1.01815 0.00198674 0)
(1.01805 0.0021426 0)
(1.01796 0.00230846 0)
(1.01788 0.00248329 0)
(1.01781 0.00266597 0)
(1.01774 0.00285552 0)
(1.01768 0.00305083 0)
(1.01763 0.00325117 0)
(1.01759 0.00345539 0)
(1.01755 0.00366324 0)
(1.01753 0.00387313 0)
(1.01751 0.00408598 0)
(1.0175 0.00429839 0)
(1.0175 0.00451452 0)
(1.01751 0.00472523 0)
(1.01753 0.00494422 0)
(1.01755 0.00514558 0)
(1.01759 0.00537101 0)
(1.01761 0.00554659 0)
(1.01768 0.00579425 0)
(1.01769 0.00590574 0)
(1.01781 0.00622569 0)
(1.01351 0.00711466 0)
(1.01365 0.00715783 0)
(1.0138 0.00719575 0)
(1.01394 0.0072283 0)
(1.01409 0.00725537 0)
(1.01425 0.00727684 0)
(1.0144 0.0072926 0)
(1.01456 0.00730256 0)
(1.01472 0.00730665 0)
(1.01489 0.00730481 0)
(1.01505 0.00729697 0)
(1.01522 0.00728312 0)
(1.0154 0.0072632 0)
(1.01557 0.00723721 0)
(1.01574 0.00720513 0)
(1.01592 0.00716696 0)
(1.0161 0.00712271 0)
(1.01628 0.00707239 0)
(1.01646 0.00701601 0)
(1.01664 0.00695362 0)
(1.01682 0.00688523 0)
(1.017 0.0068109 0)
(1.01718 0.00673069 0)
(1.01736 0.00664464 0)
(1.01754 0.00655285 0)
(1.01772 0.0064554 0)
(1.01789 0.0063524 0)
(1.01806 0.00624397 0)
(1.01823 0.00613026 0)
(1.0184 0.00601142 0)
(1.01856 0.00588764 0)
(1.01872 0.00575912 0)
(1.01887 0.00562609 0)
(1.01902 0.0054888 0)
(1.01916 0.00534753 0)
(1.0193 0.00520255 0)
(1.01943 0.00505419 0)
(1.01955 0.00490279 0)
(1.01967 0.00474869 0)
(1.01978 0.00459227 0)
(1.01988 0.00443393 0)
(1.01997 0.00427409 0)
(1.02005 0.00411318 0)
(1.02013 0.00395166 0)
(1.02019 0.00379003 0)
(1.02025 0.00362879 0)
(1.02029 0.00346848 0)
(1.02033 0.00330965 0)
(1.02036 0.0031529 0)
(1.02037 0.00299882 0)
(1.02038 0.00284804 0)
(1.02038 0.00270119 0)
(1.02037 0.0025589 0)
(1.02034 0.00242181 0)
(1.02031 0.00229055 0)
(1.02027 0.00216574 0)
(1.02022 0.00204798 0)
(1.02017 0.00193783 0)
(1.0201 0.00183584 0)
(1.02003 0.00174255 0)
(1.01995 0.00165843 0)
(1.01986 0.00158397 0)
(1.01977 0.00151963 0)
(1.01968 0.00146585 0)
(1.01958 0.00142307 0)
(1.01947 0.00139171 0)
(1.01937 0.0013722 0)
(1.01926 0.00136493 0)
(1.01915 0.00137028 0)
(1.01904 0.00138859 0)
(1.01893 0.00142012 0)
(1.01882 0.00146507 0)
(1.01871 0.00152355 0)
(1.0186 0.00159551 0)
(1.0185 0.00168081 0)
(1.0184 0.00177913 0)
(1.0183 0.00189001 0)
(1.01821 0.00201285 0)
(1.01812 0.00214692 0)
(1.01804 0.00229138 0)
(1.01796 0.00244529 0)
(1.01789 0.00260772 0)
(1.01783 0.00277762 0)
(1.01777 0.00295413 0)
(1.01772 0.0031362 0)
(1.01767 0.00332319 0)
(1.01764 0.00351401 0)
(1.01761 0.00370854 0)
(1.01759 0.00390518 0)
(1.01757 0.00410504 0)
(1.01756 0.00430464 0)
(1.01757 0.00450833 0)
(1.01757 0.00470695 0)
(1.01759 0.00491424 0)
(1.01761 0.00510461 0)
(1.01765 0.00531905 0)
(1.01767 0.00548543 0)
(1.01773 0.00572223 0)
(1.01774 0.00582795 0)
(1.01785 0.00613506 0)
(1.01354 0.00670626 0)
(1.01367 0.00674189 0)
(1.0138 0.00677263 0)
(1.01394 0.00679839 0)
(1.01407 0.00681906 0)
(1.01421 0.00683456 0)
(1.01436 0.0068448 0)
(1.0145 0.00684972 0)
(1.01465 0.00684926 0)
(1.0148 0.00684339 0)
(1.01496 0.00683208 0)
(1.01511 0.00681532 0)
(1.01527 0.00679309 0)
(1.01543 0.00676542 0)
(1.01559 0.0067323 0)
(1.01575 0.00669378 0)
(1.01591 0.00664986 0)
(1.01608 0.0066006 0)
(1.01624 0.00654603 0)
(1.01641 0.00648622 0)
(1.01657 0.0064212 0)
(1.01673 0.00635105 0)
(1.0169 0.00627584 0)
(1.01706 0.00619566 0)
(1.01722 0.00611058 0)
(1.01739 0.00602072 0)
(1.01754 0.00592619 0)
(1.0177 0.00582713 0)
(1.01786 0.00572367 0)
(1.01801 0.00561597 0)
(1.01815 0.00550422 0)
(1.0183 0.00538861 0)
(1.01844 0.00526935 0)
(1.01858 0.00514667 0)
(1.01871 0.00502082 0)
(1.01883 0.00489206 0)
(1.01895 0.00476066 0)
(1.01907 0.00462691 0)
(1.01918 0.00449112 0)
(1.01928 0.00435362 0)
(1.01937 0.00421472 0)
(1.01946 0.00407478 0)
(1.01954 0.00393417 0)
(1.01961 0.00379327 0)
(1.01968 0.00365247 0)
(1.01973 0.00351219 0)
(1.01978 0.00337289 0)
(1.01982 0.00323502 0)
(1.01985 0.00309906 0)
(1.01987 0.00296553 0)
(1.01989 0.00283493 0)
(1.01989 0.00270779 0)
(1.01989 0.00258466 0)
(1.01988 0.00246608 0)
(1.01986 0.00235256 0)
(1.01983 0.00224465 0)
(1.0198 0.00214285 0)
(1.01975 0.00204764 0)
(1.01971 0.00195951 0)
(1.01965 0.00187891 0)
(1.01959 0.00180628 0)
(1.01952 0.00174203 0)
(1.01945 0.00168661 0)
(1.01937 0.00164041 0)
(1.01929 0.00160387 0)
(1.01921 0.00157741 0)
(1.01912 0.00156145 0)
(1.01903 0.00155641 0)
(1.01894 0.00156268 0)
(1.01885 0.00158064 0)
(1.01876 0.0016106 0)
(1.01867 0.00165281 0)
(1.01858 0.00170741 0)
(1.01849 0.00177445 0)
(1.0184 0.00185382 0)
(1.01832 0.00194528 0)
(1.01824 0.00204845 0)
(1.01816 0.00216279 0)
(1.01808 0.00228765 0)
(1.01801 0.00242228 0)
(1.01795 0.0025658 0)
(1.01789 0.00271736 0)
(1.01783 0.00287601 0)
(1.01778 0.00304094 0)
(1.01774 0.0032112 0)
(1.01771 0.00338623 0)
(1.01767 0.00356498 0)
(1.01765 0.00374747 0)
(1.01763 0.00393209 0)
(1.01762 0.00412009 0)
(1.01762 0.00430799 0)
(1.01762 0.00450027 0)
(1.01763 0.0046878 0)
(1.01765 0.00488432 0)
(1.01766 0.00506456 0)
(1.0177 0.00526885 0)
(1.01772 0.00542675 0)
(1.01778 0.0056535 0)
(1.01779 0.0057539 0)
(1.01789 0.0060491 0)
(1.01356 0.00631748 0)
(1.01368 0.00634636 0)
(1.0138 0.00637068 0)
(1.01392 0.00639037 0)
(1.01405 0.00640535 0)
(1.01418 0.00641555 0)
(1.01431 0.00642091 0)
(1.01444 0.00642138 0)
(1.01458 0.00641693 0)
(1.01472 0.00640756 0)
(1.01486 0.00639324 0)
(1.015 0.006374 0)
(1.01514 0.00634985 0)
(1.01529 0.00632082 0)
(1.01544 0.00628694 0)
(1.01558 0.00624827 0)
(1.01573 0.00620484 0)
(1.01588 0.00615673 0)
(1.01603 0.00610399 0)
(1.01618 0.00604669 0)
(1.01633 0.00598491 0)
(1.01648 0.00591874 0)
(1.01663 0.00584824 0)
(1.01678 0.00577353 0)
(1.01693 0.0056947 0)
(1.01708 0.00561187 0)
(1.01722 0.00552515 0)
(1.01737 0.00543468 0)
(1.01751 0.00534061 0)
(1.01765 0.0052431 0)
(1.01778 0.00514231 0)
(1.01791 0.00503842 0)
(1.01804 0.00493165 0)
(1.01817 0.00482219 0)
(1.01829 0.00471028 0)
(1.01841 0.00459614 0)
(1.01852 0.00448001 0)
(1.01862 0.00436215 0)
(1.01873 0.00424281 0)
(1.01882 0.00412228 0)
(1.01891 0.00400082 0)
(1.01899 0.00387872 0)
(1.01907 0.00375629 0)
(1.01914 0.00363383 0)
(1.0192 0.00351168 0)
(1.01926 0.00339018 0)
(1.01931 0.00326969 0)
(1.01935 0.00315058 0)
(1.01939 0.00303327 0)
(1.01941 0.00291816 0)
(1.01943 0.00280569 0)
(1.01944 0.0026963 0)
(1.01945 0.00259044 0)
(1.01945 0.00248856 0)
(1.01944 0.00239112 0)
(1.01942 0.00229855 0)
(1.0194 0.0022113 0)
(1.01937 0.00212977 0)
(1.01934 0.00205438 0)
(1.0193 0.00198553 0)
(1.01925 0.00192359 0)
(1.0192 0.00186896 0)
(1.01914 0.00182201 0)
(1.01908 0.00178314 0)
(1.01902 0.00175275 0)
(1.01895 0.00173125 0)
(1.01888 0.00171908 0)
(1.01881 0.00171665 0)
(1.01874 0.00172439 0)
(1.01867 0.00174268 0)
(1.01859 0.00177187 0)
(1.01852 0.00181225 0)
(1.01844 0.00186402 0)
(1.01837 0.00192724 0)
(1.0183 0.00200188 0)
(1.01823 0.00208775 0)
(1.01816 0.00218452 0)
(1.0181 0.00229173 0)
(1.01804 0.00240877 0)
(1.01798 0.00253496 0)
(1.01793 0.0026695 0)
(1.01788 0.0028116 0)
(1.01783 0.00296038 0)
(1.01779 0.00311511 0)
(1.01776 0.00327489 0)
(1.01773 0.00343926 0)
(1.0177 0.00360722 0)
(1.01769 0.00377886 0)
(1.01767 0.00395263 0)
(1.01767 0.00412988 0)
(1.01767 0.00430715 0)
(1.01767 0.00448902 0)
(1.01768 0.00466642 0)
(1.0177 0.00485304 0)
(1.01772 0.00502401 0)
(1.01775 0.00521892 0)
(1.01777 0.00536903 0)
(1.01783 0.00558645 0)
(1.01784 0.00568197 0)
(1.01793 0.00596608 0)
(1.01356 0.00594688 0)
(1.01367 0.00596976 0)
(1.01379 0.00598838 0)
(1.0139 0.0060027 0)
(1.01402 0.00601265 0)
(1.01414 0.00601818 0)
(1.01426 0.00601924 0)
(1.01438 0.00601582 0)
(1.01451 0.00600791 0)
(1.01463 0.0059955 0)
(1.01476 0.00597862 0)
(1.01489 0.00595729 0)
(1.01502 0.00593155 0)
(1.01516 0.00590146 0)
(1.01529 0.00586705 0)
(1.01543 0.00582841 0)
(1.01556 0.0057856 0)
(1.0157 0.00573869 0)
(1.01584 0.00568777 0)
(1.01597 0.00563292 0)
(1.01611 0.00557423 0)
(1.01625 0.00551179 0)
(1.01639 0.00544571 0)
(1.01652 0.00537609 0)
(1.01666 0.00530304 0)
(1.01679 0.00522668 0)
(1.01693 0.00514713 0)
(1.01706 0.00506453 0)
(1.01719 0.00497903 0)
(1.01731 0.00489077 0)
(1.01744 0.00479993 0)
(1.01756 0.00470667 0)
(1.01768 0.00461118 0)
(1.01779 0.00451366 0)
(1.01791 0.0044143 0)
(1.01801 0.00431331 0)
(1.01812 0.00421091 0)
(1.01822 0.0041073 0)
(1.01831 0.00400272 0)
(1.0184 0.00389738 0)
(1.01849 0.00379152 0)
(1.01857 0.00368539 0)
(1.01864 0.00357921 0)
(1.01871 0.00347324 0)
(1.01877 0.00336776 0)
(1.01883 0.00326303 0)
(1.01888 0.00315935 0)
(1.01892 0.00305703 0)
(1.01896 0.0029564 0)
(1.01899 0.0028578 0)
(1.01901 0.00276159 0)
(1.01903 0.00266813 0)
(1.01904 0.00257781 0)
(1.01905 0.002491 0)
(1.01905 0.00240807 0)
(1.01904 0.00232941 0)
(1.01903 0.00225539 0)
(1.01902 0.00218635 0)
(1.01899 0.00212264 0)
(1.01896 0.00206461 0)
(1.01893 0.0020126 0)
(1.0189 0.00196695 0)
(1.01885 0.00192801 0)
(1.01881 0.00189614 0)
(1.01876 0.00187174 0)
(1.01871 0.00185519 0)
(1.01866 0.00184693 0)
(1.0186 0.00184739 0)
(1.01855 0.00185699 0)
(1.01849 0.00187614 0)
(1.01843 0.00190522 0)
(1.01837 0.00194453 0)
(1.01831 0.00199431 0)
(1.01825 0.00205467 0)
(1.0182 0.0021256 0)
(1.01814 0.00220697 0)
(1.01809 0.00229849 0)
(1.01804 0.00239975 0)
(1.01799 0.0025102 0)
(1.01794 0.00262921 0)
(1.0179 0.00275603 0)
(1.01786 0.00288995 0)
(1.01782 0.00303012 0)
(1.01779 0.00317591 0)
(1.01777 0.00332645 0)
(1.01774 0.00348136 0)
(1.01773 0.00363969 0)
(1.01771 0.00380163 0)
(1.01771 0.00396565 0)
(1.0177 0.0041332 0)
(1.01771 0.00430085 0)
(1.01772 0.00447324 0)
(1.01773 0.00464142 0)
(1.01775 0.00481897 0)
(1.01777 0.00498148 0)
(1.0178 0.00516773 0)
(1.01782 0.00531071 0)
(1.01788 0.00551945 0)
(1.01789 0.0056105 0)
(1.01798 0.00588422 0)
(1.01356 0.00559298 0)
(1.01366 0.00561056 0)
(1.01377 0.00562416 0)
(1.01387 0.00563376 0)
(1.01398 0.0056393 0)
(1.01409 0.00564074 0)
(1.0142 0.00563807 0)
(1.01432 0.00563128 0)
(1.01443 0.00562038 0)
(1.01455 0.00560539 0)
(1.01467 0.00558634 0)
(1.01479 0.00556327 0)
(1.01491 0.00553626 0)
(1.01503 0.00550535 0)
(1.01515 0.00547063 0)
(1.01528 0.00543217 0)
(1.0154 0.00539006 0)
(1.01553 0.0053444 0)
(1.01565 0.00529527 0)
(1.01578 0.00524277 0)
(1.01591 0.00518701 0)
(1.01603 0.00512809 0)
(1.01616 0.00506612 0)
(1.01628 0.00500121 0)
(1.01641 0.00493349 0)
(1.01653 0.00486306 0)
(1.01665 0.00479007 0)
(1.01677 0.00471465 0)
(1.01689 0.00463693 0)
(1.01701 0.00455707 0)
(1.01712 0.00447523 0)
(1.01723 0.00439157 0)
(1.01734 0.00430626 0)
(1.01745 0.00421948 0)
(1.01755 0.0041314 0)
(1.01765 0.00404221 0)
(1.01775 0.00395211 0)
(1.01784 0.00386126 0)
(1.01793 0.00376987 0)
(1.01802 0.00367812 0)
(1.0181 0.0035862 0)
(1.01818 0.00349431 0)
(1.01825 0.00340263 0)
(1.01831 0.00331138 0)
(1.01837 0.00322077 0)
(1.01843 0.003131 0)
(1.01848 0.00304233 0)
(1.01853 0.002955 0)
(1.01857 0.00286928 0)
(1.0186 0.00278544 0)
(1.01863 0.00270378 0)
(1.01865 0.00262461 0)
(1.01867 0.00254823 0)
(1.01869 0.00247497 0)
(1.01869 0.00240513 0)
(1.0187 0.00233905 0)
(1.01869 0.00227701 0)
(1.01869 0.00221933 0)
(1.01867 0.0021663 0)
(1.01866 0.00211822 0)
(1.01864 0.00207537 0)
(1.01861 0.00203808 0)
(1.01858 0.00200665 0)
(1.01855 0.00198143 0)
(1.01852 0.00196278 0)
(1.01848 0.00195109 0)
(1.01844 0.00194678 0)
(1.0184 0.00195029 0)
(1.01836 0.00196203 0)
(1.01832 0.00198245 0)
(1.01827 0.00201191 0)
(1.01823 0.00205077 0)
(1.01818 0.00209926 0)
(1.01814 0.00215755 0)
(1.01809 0.00222564 0)
(1.01805 0.00230344 0)
(1.01801 0.0023907 0)
(1.01797 0.00248705 0)
(1.01793 0.00259198 0)
(1.0179 0.00270491 0)
(1.01786 0.00282514 0)
(1.01784 0.002952 0)
(1.01781 0.00308471 0)
(1.01779 0.00322268 0)
(1.01777 0.0033651 0)
(1.01775 0.00351167 0)
(1.01774 0.00366146 0)
(1.01774 0.00381474 0)
(1.01773 0.00397003 0)
(1.01774 0.00412885 0)
(1.01774 0.00428782 0)
(1.01776 0.00445163 0)
(1.01777 0.00461145 0)
(1.01779 0.00478071 0)
(1.01781 0.00493548 0)
(1.01785 0.00511375 0)
(1.01787 0.0052502 0)
(1.01793 0.00545083 0)
(1.01794 0.00553779 0)
(1.01803 0.00580172 0)
(1.01356 0.00525427 0)
(1.01365 0.00526721 0)
(1.01375 0.00527643 0)
(1.01384 0.00528191 0)
(1.01394 0.00528361 0)
(1.01405 0.00528152 0)
(1.01415 0.00527563 0)
(1.01425 0.00526595 0)
(1.01436 0.0052525 0)
(1.01447 0.00523533 0)
(1.01458 0.00521448 0)
(1.01469 0.00519 0)
(1.0148 0.00516199 0)
(1.01491 0.00513051 0)
(1.01502 0.00509565 0)
(1.01514 0.00505751 0)
(1.01525 0.00501618 0)
(1.01537 0.00497177 0)
(1.01548 0.0049244 0)
(1.0156 0.00487415 0)
(1.01571 0.00482116 0)
(1.01583 0.00476553 0)
(1.01594 0.00470738 0)
(1.01606 0.00464682 0)
(1.01617 0.00458399 0)
(1.01629 0.004519 0)
(1.0164 0.00445199 0)
(1.01651 0.00438308 0)
(1.01662 0.00431243 0)
(1.01673 0.00424016 0)
(1.01683 0.00416645 0)
(1.01694 0.00409143 0)
(1.01704 0.00401527 0)
(1.01714 0.00393812 0)
(1.01723 0.00386016 0)
(1.01733 0.00378155 0)
(1.01742 0.00370244 0)
(1.01751 0.003623 0)
(1.01759 0.00354338 0)
(1.01767 0.00346375 0)
(1.01775 0.00338425 0)
(1.01782 0.00330505 0)
(1.01789 0.00322629 0)
(1.01795 0.00314814 0)
(1.01801 0.00307076 0)
(1.01807 0.00299432 0)
(1.01812 0.00291902 0)
(1.01817 0.00284504 0)
(1.01821 0.00277261 0)
(1.01825 0.00270194 0)
(1.01828 0.00263329 0)
(1.01831 0.00256689 0)
(1.01833 0.00250301 0)
(1.01835 0.00244191 0)
(1.01837 0.00238385 0)
(1.01838 0.0023291 0)
(1.01838 0.0022779 0)
(1.01838 0.00223053 0)
(1.01838 0.00218722 0)
(1.01837 0.00214823 0)
(1.01836 0.00211381 0)
(1.01835 0.00208425 0)
(1.01833 0.00205983 0)
(1.01831 0.00204086 0)
(1.01829 0.00202769 0)
(1.01827 0.00202071 0)
(1.01824 0.00202031 0)
(1.01821 0.00202694 0)
(1.01818 0.00204101 0)
(1.01815 0.00206298 0)
(1.01812 0.00209322 0)
(1.01809 0.0021321 0)
(1.01806 0.00217988 0)
(1.01802 0.00223672 0)
(1.01799 0.00230269 0)
(1.01796 0.0023777 0)
(1.01793 0.00246154 0)
(1.0179 0.00255386 0)
(1.01788 0.0026542 0)
(1.01785 0.00276201 0)
(1.01783 0.00287663 0)
(1.01781 0.00299744 0)
(1.01779 0.0031237 0)
(1.01778 0.00325487 0)
(1.01777 0.00339019 0)
(1.01776 0.0035294 0)
(1.01775 0.00367164 0)
(1.01776 0.00381722 0)
(1.01776 0.00396472 0)
(1.01777 0.00411571 0)
(1.01778 0.00426687 0)
(1.01779 0.0044229 0)
(1.01781 0.00457514 0)
(1.01784 0.00473682 0)
(1.01786 0.00488455 0)
(1.0179 0.00505544 0)
(1.01792 0.00518591 0)
(1.01798 0.00537895 0)
(1.01799 0.00546216 0)
(1.01808 0.0057168 0)
(1.01354 0.00492922 0)
(1.01363 0.00493813 0)
(1.01372 0.00494356 0)
(1.01381 0.00494548 0)
(1.0139 0.00494389 0)
(1.014 0.00493877 0)
(1.01409 0.00493014 0)
(1.01419 0.00491802 0)
(1.01429 0.00490244 0)
(1.01439 0.00488346 0)
(1.01449 0.00486114 0)
(1.01459 0.00483556 0)
(1.01469 0.00480679 0)
(1.0148 0.00477495 0)
(1.0149 0.00474011 0)
(1.01501 0.0047024 0)
(1.01511 0.00466192 0)
(1.01522 0.00461879 0)
(1.01533 0.00457312 0)
(1.01543 0.00452503 0)
(1.01554 0.00447465 0)
(1.01564 0.00442209 0)
(1.01575 0.00436747 0)
(1.01586 0.00431093 0)
(1.01596 0.00425258 0)
(1.01606 0.00419255 0)
(1.01617 0.00413097 0)
(1.01627 0.00406798 0)
(1.01637 0.00400371 0)
(1.01647 0.0039383 0)
(1.01657 0.0038719 0)
(1.01667 0.00380465 0)
(1.01676 0.0037367 0)
(1.01685 0.00366819 0)
(1.01694 0.00359927 0)
(1.01703 0.0035301 0)
(1.01712 0.0034608 0)
(1.0172 0.00339152 0)
(1.01728 0.0033224 0)
(1.01735 0.00325355 0)
(1.01743 0.0031851 0)
(1.0175 0.00311718 0)
(1.01756 0.0030499 0)
(1.01763 0.00298339 0)
(1.01769 0.00291777 0)
(1.01774 0.00285318 0)
(1.01779 0.00278975 0)
(1.01784 0.00272765 0)
(1.01789 0.00266704 0)
(1.01793 0.00260811 0)
(1.01796 0.00255104 0)
(1.01799 0.00249605 0)
(1.01802 0.00244333 0)
(1.01805 0.00239312 0)
(1.01807 0.00234562 0)
(1.01808 0.00230105 0)
(1.01809 0.00225963 0)
(1.0181 0.00222157 0)
(1.01811 0.00218708 0)
(1.01811 0.00215637 0)
(1.01811 0.00212967 0)
(1.01811 0.00210723 0)
(1.0181 0.00208929 0)
(1.01809 0.00207616 0)
(1.01808 0.00206817 0)
(1.01807 0.00206569 0)
(1.01805 0.0020691 0)
(1.01803 0.00207884 0)
(1.01802 0.00209535 0)
(1.018 0.00211905 0)
(1.01798 0.00215035 0)
(1.01796 0.00218961 0)
(1.01793 0.00223711 0)
(1.01791 0.00229304 0)
(1.01789 0.00235747 0)
(1.01787 0.00243034 0)
(1.01785 0.00251145 0)
(1.01784 0.0026005 0)
(1.01782 0.00269703 0)
(1.0178 0.00280055 0)
(1.01779 0.00291042 0)
(1.01778 0.00302605 0)
(1.01777 0.00314675 0)
(1.01777 0.00327201 0)
(1.01776 0.00340112 0)
(1.01776 0.00353387 0)
(1.01776 0.00366943 0)
(1.01777 0.00380818 0)
(1.01778 0.00394874 0)
(1.01779 0.0040927 0)
(1.01781 0.00423684 0)
(1.01783 0.00438583 0)
(1.01785 0.00453119 0)
(1.01788 0.00468593 0)
(1.01791 0.00482724 0)
(1.01795 0.00499128 0)
(1.01797 0.00511627 0)
(1.01803 0.00530216 0)
(1.01805 0.00538193 0)
(1.01814 0.00562771 0)
(1.01353 0.00461632 0)
(1.01361 0.00462177 0)
(1.01369 0.00462395 0)
(1.01378 0.00462284 0)
(1.01387 0.00461845 0)
(1.01395 0.00461078 0)
(1.01404 0.00459984 0)
(1.01413 0.00458569 0)
(1.01422 0.00456835 0)
(1.01432 0.00454791 0)
(1.01441 0.00452444 0)
(1.0145 0.00449802 0)
(1.0146 0.00446874 0)
(1.01469 0.00443672 0)
(1.01479 0.00440206 0)
(1.01489 0.00436488 0)
(1.01498 0.0043253 0)
(1.01508 0.00428345 0)
(1.01518 0.00423945 0)
(1.01528 0.00419342 0)
(1.01538 0.00414549 0)
(1.01547 0.0040958 0)
(1.01557 0.00404446 0)
(1.01567 0.0039916 0)
(1.01577 0.00393735 0)
(1.01586 0.00388184 0)
(1.01596 0.00382521 0)
(1.01605 0.00376757 0)
(1.01615 0.00370907 0)
(1.01624 0.00364983 0)
(1.01633 0.00359 0)
(1.01642 0.00352972 0)
(1.01651 0.00346911 0)
(1.0166 0.00340832 0)
(1.01668 0.00334748 0)
(1.01676 0.00328672 0)
(1.01684 0.00322617 0)
(1.01692 0.00316593 0)
(1.017 0.00310612 0)
(1.01707 0.00304685 0)
(1.01714 0.00298821 0)
(1.01721 0.00293029 0)
(1.01727 0.0028732 0)
(1.01733 0.002817 0)
(1.01739 0.00276181 0)
(1.01745 0.00270772 0)
(1.0175 0.00265483 0)
(1.01755 0.00260326 0)
(1.01759 0.00255315 0)
(1.01763 0.00250464 0)
(1.01767 0.00245787 0)
(1.01771 0.00241302 0)
(1.01774 0.00237026 0)
(1.01777 0.00232977 0)
(1.01779 0.00229171 0)
(1.01782 0.00225627 0)
(1.01783 0.00222363 0)
(1.01785 0.00219396 0)
(1.01786 0.00216743 0)
(1.01787 0.00214424 0)
(1.01788 0.00212456 0)
(1.01789 0.00210862 0)
(1.01789 0.00209666 0)
(1.01789 0.00208895 0)
(1.01789 0.0020858 0)
(1.01788 0.00208757 0)
(1.01788 0.00209464 0)
(1.01787 0.00210744 0)
(1.01786 0.00212639 0)
(1.01785 0.00215193 0)
(1.01784 0.00218447 0)
(1.01783 0.00222438 0)
(1.01782 0.00227194 0)
(1.01781 0.00232736 0)
(1.0178 0.00239071 0)
(1.01779 0.00246195 0)
(1.01778 0.00254091 0)
(1.01777 0.0026273 0)
(1.01776 0.0027207 0)
(1.01776 0.00282061 0)
(1.01775 0.00292645 0)
(1.01775 0.00303765 0)
(1.01775 0.00315355 0)
(1.01775 0.00327368 0)
(1.01776 0.00339737 0)
(1.01776 0.00352444 0)
(1.01777 0.00365411 0)
(1.01779 0.00378678 0)
(1.0178 0.00392114 0)
(1.01782 0.00405879 0)
(1.01784 0.00419662 0)
(1.01786 0.00433921 0)
(1.01789 0.00447834 0)
(1.01792 0.00462671 0)
(1.01795 0.00476215 0)
(1.018 0.0049198 0)
(1.01803 0.00503976 0)
(1.01809 0.00521887 0)
(1.01811 0.00529547 0)
(1.0182 0.00553274 0)
(1.01351 0.00431411 0)
(1.01359 0.00431662 0)
(1.01367 0.00431604 0)
(1.01375 0.00431238 0)
(1.01383 0.00430564 0)
(1.01391 0.00429583 0)
(1.01399 0.004283 0)
(1.01408 0.00426719 0)
(1.01416 0.00424845 0)
(1.01425 0.00422687 0)
(1.01433 0.00420252 0)
(1.01442 0.0041755 0)
(1.01451 0.00414592 0)
(1.0146 0.0041139 0)
(1.01469 0.00407955 0)
(1.01478 0.00404299 0)
(1.01487 0.00400437 0)
(1.01496 0.0039638 0)
(1.01505 0.00392142 0)
(1.01514 0.00387736 0)
(1.01523 0.00383175 0)
(1.01532 0.00378473 0)
(1.01541 0.00373642 0)
(1.0155 0.00368696 0)
(1.01559 0.00363647 0)
(1.01568 0.00358509 0)
(1.01577 0.00353293 0)
(1.01586 0.00348014 0)
(1.01595 0.00342684 0)
(1.01603 0.00337316 0)
(1.01612 0.00331923 0)
(1.0162 0.00326518 0)
(1.01628 0.00321114 0)
(1.01637 0.00315724 0)
(1.01644 0.0031036 0)
(1.01652 0.00305033 0)
(1.0166 0.00299754 0)
(1.01667 0.00294532 0)
(1.01674 0.00289378 0)
(1.01681 0.002843 0)
(1.01688 0.00279304 0)
(1.01695 0.00274398 0)
(1.01701 0.00269589 0)
(1.01707 0.00264883 0)
(1.01713 0.00260285 0)
(1.01718 0.00255805 0)
(1.01723 0.00251448 0)
(1.01728 0.00247223 0)
(1.01733 0.00243141 0)
(1.01737 0.00239213 0)
(1.01741 0.0023545 0)
(1.01745 0.00231866 0)
(1.01749 0.00228474 0)
(1.01752 0.00225289 0)
(1.01755 0.00222325 0)
(1.01758 0.00219596 0)
(1.0176 0.00217118 0)
(1.01762 0.00214903 0)
(1.01764 0.00212967 0)
(1.01766 0.00211325 0)
(1.01767 0.00209994 0)
(1.01768 0.00208993 0)
(1.01769 0.00208343 0)
(1.0177 0.0020807 0)
(1.01771 0.00208204 0)
(1.01771 0.00208778 0)
(1.01772 0.00209832 0)
(1.01772 0.00211404 0)
(1.01772 0.0021354 0)
(1.01772 0.00216282 0)
(1.01772 0.0021967 0)
(1.01772 0.00223743 0)
(1.01772 0.00228529 0)
(1.01771 0.00234048 0)
(1.01771 0.00240311 0)
(1.01771 0.00247314 0)
(1.01771 0.00255041 0)
(1.01771 0.00263464 0)
(1.01771 0.00272544 0)
(1.01772 0.00282233 0)
(1.01772 0.00292474 0)
(1.01773 0.00303214 0)
(1.01773 0.0031439 0)
(1.01774 0.00325956 0)
(1.01775 0.0033785 0)
(1.01777 0.00350056 0)
(1.01778 0.00362501 0)
(1.0178 0.00375227 0)
(1.01782 0.00388108 0)
(1.01785 0.00401305 0)
(1.01787 0.00414517 0)
(1.0179 0.00428195 0)
(1.01793 0.0044154 0)
(1.01797 0.00455789 0)
(1.018 0.00468793 0)
(1.01805 0.00483962 0)
(1.01808 0.00495492 0)
(1.01815 0.00512757 0)
(1.01817 0.00520124 0)
(1.01827 0.00543028 0)
(1.0135 0.00402113 0)
(1.01357 0.00402117 0)
(1.01364 0.00401829 0)
(1.01372 0.00401251 0)
(1.01379 0.00400383 0)
(1.01387 0.0039923 0)
(1.01395 0.00397794 0)
(1.01403 0.00396081 0)
(1.01411 0.00394098 0)
(1.01419 0.00391854 0)
(1.01427 0.00389357 0)
(1.01435 0.00386619 0)
(1.01443 0.00383651 0)
(1.01451 0.00380464 0)
(1.0146 0.00377072 0)
(1.01468 0.00373487 0)
(1.01476 0.00369724 0)
(1.01485 0.00365796 0)
(1.01493 0.00361717 0)
(1.01502 0.00357499 0)
(1.0151 0.00353158 0)
(1.01519 0.00348707 0)
(1.01527 0.00344158 0)
(1.01535 0.00339524 0)
(1.01544 0.0033482 0)
(1.01552 0.00330057 0)
(1.0156 0.00325249 0)
(1.01569 0.00320408 0)
(1.01577 0.00315547 0)
(1.01585 0.00310678 0)
(1.01593 0.00305814 0)
(1.01601 0.00300968 0)
(1.01608 0.00296151 0)
(1.01616 0.00291375 0)
(1.01624 0.0028665 0)
(1.01631 0.00281988 0)
(1.01638 0.00277398 0)
(1.01645 0.00272888 0)
(1.01652 0.00268465 0)
(1.01659 0.00264137 0)
(1.01665 0.00259909 0)
(1.01671 0.00255785 0)
(1.01678 0.00251771 0)
(1.01683 0.0024787 0)
(1.01689 0.00244086 0)
(1.01695 0.00240424 0)
(1.017 0.00236889 0)
(1.01705 0.00233487 0)
(1.0171 0.00230226 0)
(1.01714 0.00227112 0)
(1.01718 0.00224157 0)
(1.01722 0.00221369 0)
(1.01726 0.00218761 0)
(1.0173 0.00216342 0)
(1.01733 0.00214125 0)
(1.01736 0.00212122 0)
(1.01739 0.00210343 0)
(1.01742 0.002088 0)
(1.01744 0.00207506 0)
(1.01746 0.00206472 0)
(1.01748 0.00205714 0)
(1.0175 0.00205248 0)
(1.01752 0.00205094 0)
(1.01753 0.00205276 0)
(1.01755 0.00205822 0)
(1.01756 0.00206764 0)
(1.01757 0.0020814 0)
(1.01758 0.00209991 0)
(1.01759 0.00212357 0)
(1.0176 0.00215283 0)
(1.01761 0.0021881 0)
(1.01761 0.00222973 0)
(1.01762 0.00227804 0)
(1.01763 0.00233322 0)
(1.01763 0.00239539 0)
(1.01764 0.00246451 0)
(1.01765 0.00254044 0)
(1.01766 0.00262291 0)
(1.01767 0.00271153 0)
(1.01768 0.00280586 0)
(1.01769 0.00290534 0)
(1.0177 0.00300946 0)
(1.01772 0.0031176 0)
(1.01773 0.00322935 0)
(1.01775 0.0033441 0)
(1.01777 0.00346172 0)
(1.01779 0.00358152 0)
(1.01782 0.00370393 0)
(1.01784 0.00382776 0)
(1.01787 0.00395459 0)
(1.0179 0.00408153 0)
(1.01794 0.00421298 0)
(1.01797 0.00434123 0)
(1.01802 0.00447827 0)
(1.01805 0.00460332 0)
(1.01811 0.00474938 0)
(1.01814 0.00486035 0)
(1.01821 0.00502682 0)
(1.01823 0.00509775 0)
(1.01834 0.00531879 0)
(1.01348 0.00373597 0)
(1.01355 0.00373397 0)
(1.01362 0.0037292 0)
(1.01369 0.00372169 0)
(1.01376 0.00371147 0)
(1.01383 0.00369855 0)
(1.01391 0.003683 0)
(1.01398 0.00366487 0)
(1.01406 0.00364424 0)
(1.01413 0.00362121 0)
(1.01421 0.00359586 0)
(1.01428 0.00356832 0)
(1.01436 0.0035387 0)
(1.01444 0.00350714 0)
(1.01452 0.00347376 0)
(1.01459 0.00343871 0)
(1.01467 0.00340211 0)
(1.01475 0.00336413 0)
(1.01483 0.00332489 0)
(1.01491 0.00328453 0)
(1.01499 0.0032432 0)
(1.01507 0.00320104 0)
(1.01515 0.00315817 0)
(1.01522 0.00311473 0)
(1.0153 0.00307085 0)
(1.01538 0.00302666 0)
(1.01546 0.00298228 0)
(1.01553 0.00293783 0)
(1.01561 0.00289346 0)
(1.01569 0.00284926 0)
(1.01576 0.00280537 0)
(1.01584 0.0027619 0)
(1.01591 0.00271896 0)
(1.01598 0.00267666 0)
(1.01605 0.00263511 0)
(1.01612 0.00259439 0)
(1.01619 0.00255459 0)
(1.01626 0.00251577 0)
(1.01632 0.00247801 0)
(1.01639 0.00244135 0)
(1.01645 0.00240583 0)
(1.01651 0.00237149 0)
(1.01657 0.00233834 0)
(1.01663 0.00230642 0)
(1.01668 0.00227574 0)
(1.01674 0.00224632 0)
(1.01679 0.0022182 0)
(1.01684 0.00219142 0)
(1.01689 0.00216602 0)
(1.01694 0.00214206 0)
(1.01698 0.00211962 0)
(1.01702 0.00209876 0)
(1.01706 0.00207958 0)
(1.0171 0.00206216 0)
(1.01714 0.0020466 0)
(1.01717 0.00203298 0)
(1.01721 0.0020214 0)
(1.01724 0.00201195 0)
(1.01726 0.00200471 0)
(1.01729 0.00199981 0)
(1.01732 0.00199736 0)
(1.01734 0.0019975 0)
(1.01736 0.00200043 0)
(1.01739 0.00200637 0)
(1.01741 0.00201557 0)
(1.01743 0.00202836 0)
(1.01744 0.0020451 0)
(1.01746 0.00206617 0)
(1.01748 0.00209201 0)
(1.01749 0.00212303 0)
(1.01751 0.00215964 0)
(1.01752 0.00220222 0)
(1.01754 0.00225105 0)
(1.01755 0.00230635 0)
(1.01757 0.00236822 0)
(1.01758 0.00243665 0)
(1.0176 0.00251149 0)
(1.01761 0.00259249 0)
(1.01763 0.00267927 0)
(1.01765 0.0027714 0)
(1.01766 0.00286834 0)
(1.01768 0.00296958 0)
(1.01771 0.00307455 0)
(1.01773 0.00318283 0)
(1.01775 0.00329386 0)
(1.01778 0.00340751 0)
(1.01781 0.00352313 0)
(1.01784 0.00364117 0)
(1.01787 0.00376048 0)
(1.01791 0.00388262 0)
(1.01794 0.00400482 0)
(1.01798 0.00413135 0)
(1.01802 0.00425479 0)
(1.01807 0.00438674 0)
(1.01811 0.00450715 0)
(1.01817 0.00464787 0)
(1.0182 0.00475477 0)
(1.01828 0.00491526 0)
(1.0183 0.00498363 0)
(1.01842 0.00519684 0)
(1.01347 0.00345728 0)
(1.01354 0.00345362 0)
(1.0136 0.00344734 0)
(1.01367 0.00343847 0)
(1.01374 0.00342703 0)
(1.01381 0.00341307 0)
(1.01388 0.00339663 0)
(1.01394 0.00337778 0)
(1.01402 0.00335662 0)
(1.01409 0.00333323 0)
(1.01416 0.00330772 0)
(1.01423 0.00328021 0)
(1.0143 0.00325083 0)
(1.01437 0.00321971 0)
(1.01445 0.00318698 0)
(1.01452 0.00315279 0)
(1.01459 0.00311728 0)
(1.01467 0.00308059 0)
(1.01474 0.00304288 0)
(1.01482 0.00300429 0)
(1.01489 0.00296494 0)
(1.01496 0.002925 0)
(1.01504 0.00288458 0)
(1.01511 0.00284382 0)
(1.01519 0.00280285 0)
(1.01526 0.00276181 0)
(1.01533 0.0027208 0)
(1.0154 0.00267996 0)
(1.01548 0.0026394 0)
(1.01555 0.00259925 0)
(1.01562 0.00255962 0)
(1.01569 0.00252061 0)
(1.01576 0.00248234 0)
(1.01583 0.00244491 0)
(1.01589 0.00240841 0)
(1.01596 0.00237292 0)
(1.01603 0.00233851 0)
(1.01609 0.00230525 0)
(1.01615 0.00227319 0)
(1.01622 0.00224236 0)
(1.01628 0.00221279 0)
(1.01634 0.0021845 0)
(1.01639 0.0021575 0)
(1.01645 0.00213179 0)
(1.01651 0.00210738 0)
(1.01656 0.00208428 0)
(1.01661 0.0020625 0)
(1.01666 0.00204206 0)
(1.01671 0.00202298 0)
(1.01676 0.00200532 0)
(1.0168 0.00198911 0)
(1.01685 0.00197441 0)
(1.01689 0.0019613 0)
(1.01693 0.00194983 0)
(1.01697 0.00194008 0)
(1.01701 0.00193211 0)
(1.01704 0.001926 0)
(1.01708 0.00192182 0)
(1.01711 0.00191964 0)
(1.01714 0.00191955 0)
(1.01717 0.00192166 0)
(1.0172 0.00192609 0)
(1.01723 0.00193301 0)
(1.01726 0.00194263 0)
(1.01728 0.0019552 0)
(1.01731 0.00197102 0)
(1.01733 0.00199046 0)
(1.01736 0.00201389 0)
(1.01738 0.00204172 0)
(1.0174 0.00207438 0)
(1.01742 0.00211226 0)
(1.01744 0.00215574 0)
(1.01746 0.00220511 0)
(1.01749 0.00226057 0)
(1.01751 0.00232225 0)
(1.01753 0.00239012 0)
(1.01755 0.00246404 0)
(1.01757 0.00254378 0)
(1.0176 0.00262895 0)
(1.01762 0.00271914 0)
(1.01765 0.00281382 0)
(1.01767 0.00291251 0)
(1.0177 0.00301464 0)
(1.01773 0.00311981 0)
(1.01776 0.00322748 0)
(1.01779 0.00333754 0)
(1.01783 0.00344937 0)
(1.01786 0.0035634 0)
(1.0179 0.00367858 0)
(1.01794 0.00379639 0)
(1.01798 0.00391421 0)
(1.01803 0.00403616 0)
(1.01807 0.00415512 0)
(1.01813 0.00428227 0)
(1.01817 0.00439831 0)
(1.01823 0.00453393 0)
(1.01827 0.00463698 0)
(1.01836 0.00479167 0)
(1.01838 0.0048576 0)
(1.0185 0.00506311 0)
(1.01347 0.00318371 0)
(1.01353 0.00317875 0)
(1.01359 0.00317131 0)
(1.01366 0.0031614 0)
(1.01372 0.00314906 0)
(1.01379 0.00313433 0)
(1.01385 0.00311728 0)
(1.01392 0.00309799 0)
(1.01398 0.00307653 0)
(1.01405 0.00305301 0)
(1.01412 0.00302754 0)
(1.01419 0.00300024 0)
(1.01425 0.00297124 0)
(1.01432 0.00294068 0)
(1.01439 0.0029087 0)
(1.01446 0.00287545 0)
(1.01453 0.00284107 0)
(1.0146 0.0028057 0)
(1.01467 0.0027695 0)
(1.01474 0.00273262 0)
(1.01481 0.00269518 0)
(1.01488 0.00265734 0)
(1.01495 0.00261922 0)
(1.01502 0.00258096 0)
(1.01509 0.00254269 0)
(1.01516 0.00250454 0)
(1.01523 0.00246662 0)
(1.0153 0.00242905 0)
(1.01536 0.00239196 0)
(1.01543 0.00235545 0)
(1.0155 0.00231964 0)
(1.01557 0.00228464 0)
(1.01563 0.00225054 0)
(1.0157 0.00221743 0)
(1.01576 0.00218541 0)
(1.01582 0.00215455 0)
(1.01589 0.00212492 0)
(1.01595 0.00209655 0)
(1.01601 0.00206951 0)
(1.01607 0.0020438 0)
(1.01613 0.00201946 0)
(1.01619 0.00199648 0)
(1.01624 0.00197485 0)
(1.0163 0.00195459 0)
(1.01635 0.00193567 0)
(1.01641 0.00191808 0)
(1.01646 0.00190184 0)
(1.01651 0.00188693 0)
(1.01656 0.00187338 0)
(1.01661 0.0018612 0)
(1.01665 0.00185044 0)
(1.0167 0.00184112 0)
(1.01674 0.00183331 0)
(1.01679 0.00182704 0)
(1.01683 0.00182238 0)
(1.01687 0.00181936 0)
(1.01691 0.00181805 0)
(1.01695 0.00181849 0)
(1.01698 0.00182075 0)
(1.01702 0.0018249 0)
(1.01705 0.00183102 0)
(1.01709 0.00183923 0)
(1.01712 0.00184968 0)
(1.01715 0.00186256 0)
(1.01718 0.00187813 0)
(1.01721 0.00189666 0)
(1.01724 0.0019185 0)
(1.01727 0.00194404 0)
(1.0173 0.00197366 0)
(1.01732 0.00200779 0)
(1.01735 0.00204683 0)
(1.01738 0.00209113 0)
(1.01741 0.00214098 0)
(1.01743 0.00219661 0)
(1.01746 0.00225812 0)
(1.01749 0.00232549 0)
(1.01752 0.00239859 0)
(1.01755 0.00247718 0)
(1.01758 0.0025609 0)
(1.01761 0.00264933 0)
(1.01764 0.00274196 0)
(1.01767 0.00283832 0)
(1.0177 0.00293785 0)
(1.01774 0.00304018 0)
(1.01778 0.00314477 0)
(1.01781 0.00325151 0)
(1.01785 0.00335984 0)
(1.0179 0.00347018 0)
(1.01794 0.0035815 0)
(1.01798 0.00369528 0)
(1.01803 0.00380901 0)
(1.01808 0.00392664 0)
(1.01813 0.00404138 0)
(1.01819 0.00416395 0)
(1.01824 0.00427585 0)
(1.01831 0.00440653 0)
(1.01835 0.00450591 0)
(1.01844 0.00465492 0)
(1.01846 0.00471852 0)
(1.01859 0.00491642 0)
(1.01347 0.00291405 0)
(1.01353 0.00290811 0)
(1.01359 0.0028998 0)
(1.01365 0.00288914 0)
(1.01371 0.00287618 0)
(1.01378 0.00286097 0)
(1.01384 0.00284357 0)
(1.0139 0.00282405 0)
(1.01396 0.00280252 0)
(1.01403 0.00277907 0)
(1.01409 0.00275382 0)
(1.01416 0.00272689 0)
(1.01422 0.00269842 0)
(1.01429 0.00266855 0)
(1.01435 0.00263742 0)
(1.01442 0.00260517 0)
(1.01448 0.00257196 0)
(1.01455 0.00253793 0)
(1.01462 0.00250324 0)
(1.01468 0.00246802 0)
(1.01475 0.00243243 0)
(1.01481 0.00239659 0)
(1.01488 0.00236065 0)
(1.01495 0.00232473 0)
(1.01501 0.00228897 0)
(1.01508 0.00225348 0)
(1.01514 0.00221839 0)
(1.01521 0.00218381 0)
(1.01527 0.00214986 0)
(1.01534 0.00211665 0)
(1.0154 0.00208428 0)
(1.01546 0.00205286 0)
(1.01553 0.00202249 0)
(1.01559 0.00199324 0)
(1.01565 0.0019652 0)
(1.01571 0.00193843 0)
(1.01577 0.001913 0)
(1.01583 0.00188895 0)
(1.01589 0.00186632 0)
(1.01595 0.00184511 0)
(1.01601 0.00182533 0)
(1.01607 0.00180699 0)
(1.01612 0.00179006 0)
(1.01618 0.00177453 0)
(1.01623 0.00176039 0)
(1.01628 0.00174761 0)
(1.01633 0.00173617 0)
(1.01638 0.00172607 0)
(1.01643 0.00171732 0)
(1.01648 0.00170991 0)
(1.01653 0.00170388 0)
(1.01658 0.00169924 0)
(1.01662 0.00169602 0)
(1.01667 0.00169428 0)
(1.01671 0.00169403 0)
(1.01675 0.00169531 0)
(1.0168 0.00169817 0)
(1.01684 0.00170265 0)
(1.01688 0.00170877 0)
(1.01691 0.00171661 0)
(1.01695 0.00172624 0)
(1.01699 0.00173775 0)
(1.01703 0.00175129 0)
(1.01706 0.00176703 0)
(1.0171 0.00178522 0)
(1.01713 0.00180612 0)
(1.01716 0.00183007 0)
(1.0172 0.00185745 0)
(1.01723 0.00188864 0)
(1.01726 0.00192405 0)
(1.0173 0.00196408 0)
(1.01733 0.00200908 0)
(1.01736 0.00205934 0)
(1.0174 0.00211507 0)
(1.01743 0.00217637 0)
(1.01746 0.00224324 0)
(1.0175 0.00231554 0)
(1.01753 0.00239304 0)
(1.01757 0.00247539 0)
(1.0176 0.00256216 0)
(1.01764 0.00265287 0)
(1.01768 0.00274705 0)
(1.01772 0.00284415 0)
(1.01776 0.00294381 0)
(1.0178 0.00304551 0)
(1.01784 0.00314916 0)
(1.01789 0.0032542 0)
(1.01794 0.00336105 0)
(1.01798 0.00346875 0)
(1.01804 0.00357871 0)
(1.01809 0.00368856 0)
(1.01814 0.00380208 0)
(1.0182 0.00391279 0)
(1.01826 0.00403096 0)
(1.01831 0.00413887 0)
(1.01839 0.00426475 0)
(1.01843 0.00436058 0)
(1.01853 0.004504 0)
(1.01856 0.00456534 0)
(1.01869 0.00475569 0)
(1 4.75412e-05 0)
(1.00001 0.000156849 0)
(1.00004 0.000282116 0)
(1.00008 0.000423406 0)
(1.00013 0.000579005 0)
(1.0002 0.000745999 0)
(1.00027 0.000921124 0)
(1.00036 0.00110136 0)
(1.00045 0.00128387 0)
(1.00056 0.0014655 0)
(1.00067 0.00164261 0)
(1.00079 0.00181152 0)
(1.00092 0.00196924 0)
(1.00106 0.0021138 0)
(1.0012 0.00224376 0)
(1.00134 0.00235737 0)
(1.00149 0.00245208 0)
(1.00164 0.00252489 0)
(1.0018 0.00257321 0)
(1.00195 0.00259592 0)
(1.00211 0.00259399 0)
(1.00227 0.00257046 0)
(1.00243 0.00252982 0)
(1.00259 0.00247723 0)
(1.00275 0.00241768 0)
(1.00291 0.00235554 0)
(1.00307 0.00229429 0)
(1.00323 0.00223646 0)
(1.00338 0.00218375 0)
(1.00354 0.00213711 0)
(1.0037 0.00209689 0)
(1.00385 0.00206292 0)
(1.004 0.00203469 0)
(1.00415 0.00201142 0)
(1.0043 0.00199221 0)
(1.00445 0.00197614 0)
(1.0046 0.00196229 0)
(1.00474 0.00194981 0)
(1.00489 0.00193793 0)
(1.00503 0.00192596 0)
(1.00517 0.00191334 0)
(1.00531 0.00189969 0)
(1.00544 0.00188478 0)
(1.00558 0.00186863 0)
(1.00571 0.00185144 0)
(1.00584 0.00183369 0)
(1.00597 0.00181588 0)
(1.0061 0.00179881 0)
(1.00622 0.001783 0)
(1.00635 0.00176934 0)
(1 3.99267e-05 0)
(1.00001 0.000133866 0)
(1.00004 0.000243753 0)
(1.00008 0.000369715 0)
(1.00013 0.000510123 0)
(1.0002 0.000662165 0)
(1.00028 0.000822672 0)
(1.00036 0.000988706 0)
(1.00046 0.0011575 0)
(1.00057 0.00132598 0)
(1.00068 0.00149055 0)
(1.00081 0.00164761 0)
(1.00094 0.0017942 0)
(1.00107 0.00192838 0)
(1.00122 0.00204871 0)
(1.00136 0.00215345 0)
(1.00152 0.00224008 0)
(1.00167 0.00230559 0)
(1.00183 0.00234743 0)
(1.00199 0.00236444 0)
(1.00215 0.00235758 0)
(1.00231 0.0023298 0)
(1.00247 0.00228551 0)
(1.00263 0.00222974 0)
(1.00279 0.00216743 0)
(1.00295 0.00210284 0)
(1.00311 0.00203938 0)
(1.00327 0.00197955 0)
(1.00343 0.00192499 0)
(1.00358 0.00187664 0)
(1.00374 0.00183482 0)
(1.00389 0.00179937 0)
(1.00404 0.00176975 0)
(1.00419 0.0017452 0)
(1.00434 0.00172484 0)
(1.00449 0.00170773 0)
(1.00463 0.00169298 0)
(1.00478 0.00167974 0)
(1.00492 0.00166724 0)
(1.00506 0.00165481 0)
(1.0052 0.00164188 0)
(1.00533 0.00162808 0)
(1.00547 0.00161317 0)
(1.0056 0.00159719 0)
(1.00573 0.0015803 0)
(1.00586 0.00156301 0)
(1.00599 0.00154578 0)
(1.00611 0.00152942 0)
(1.00623 0.00151442 0)
(1.00635 0.00150168 0)
(1 3.24219e-05 0)
(1.00001 0.000111196 0)
(1.00004 0.000205888 0)
(1.00008 0.00031669 0)
(1.00014 0.000442063 0)
(1.0002 0.000579295 0)
(1.00028 0.000725321 0)
(1.00037 0.000877293 0)
(1.00047 0.00103252 0)
(1.00058 0.00118798 0)
(1.0007 0.00134017 0)
(1.00082 0.00148552 0)
(1.00096 0.00162117 0)
(1.0011 0.00174516 0)
(1.00124 0.00185608 0)
(1.00139 0.00195218 0)
(1.00155 0.00203097 0)
(1.0017 0.00208948 0)
(1.00186 0.00212514 0)
(1.00202 0.00213681 0)
(1.00219 0.00212539 0)
(1.00235 0.00209377 0)
(1.00251 0.00204624 0)
(1.00268 0.00198776 0)
(1.00284 0.00192312 0)
(1.003 0.00185653 0)
(1.00316 0.00179132 0)
(1.00332 0.00172991 0)
(1.00347 0.00167392 0)
(1.00363 0.00162426 0)
(1.00378 0.00158122 0)
(1.00394 0.00154464 0)
(1.00409 0.00151399 0)
(1.00424 0.0014885 0)
(1.00439 0.00146729 0)
(1.00453 0.00144945 0)
(1.00468 0.00143408 0)
(1.00482 0.00142034 0)
(1.00496 0.00140748 0)
(1.0051 0.00139482 0)
(1.00524 0.00138181 0)
(1.00537 0.00136806 0)
(1.0055 0.00135335 0)
(1.00563 0.00133769 0)
(1.00576 0.00132127 0)
(1.00589 0.00130455 0)
(1.00601 0.00128801 0)
(1.00614 0.00127244 0)
(1.00626 0.0012583 0)
(1.00638 0.0012465 0)
(1 2.49912e-05 0)
(1.00001 8.87391e-05 0)
(1.00004 0.000168364 0)
(1.00008 0.000264124 0)
(1.00014 0.000374574 0)
(1.00021 0.000497112 0)
(1.00029 0.000628775 0)
(1.00038 0.000766802 0)
(1.00048 0.000908575 0)
(1.00059 0.00105116 0)
(1.00071 0.00119111 0)
(1.00084 0.00132495 0)
(1.00098 0.00144983 0)
(1.00112 0.00156384 0)
(1.00127 0.00166556 0)
(1.00142 0.00175328 0)
(1.00158 0.0018245 0)
(1.00174 0.00187627 0)
(1.0019 0.00190606 0)
(1.00207 0.00191273 0)
(1.00223 0.00189712 0)
(1.0024 0.00186203 0)
(1.00256 0.00181167 0)
(1.00273 0.00175087 0)
(1.00289 0.00168432 0)
(1.00305 0.00161613 0)
(1.00321 0.00154955 0)
(1.00337 0.00148696 0)
(1.00353 0.00142991 0)
(1.00369 0.0013793 0)
(1.00384 0.00133539 0)
(1.00399 0.00129801 0)
(1.00414 0.00126663 0)
(1.00429 0.00124049 0)
(1.00444 0.00121872 0)
(1.00459 0.0012004 0)
(1.00473 0.00118465 0)
(1.00487 0.00117064 0)
(1.00501 0.00115762 0)
(1.00515 0.00114493 0)
(1.00528 0.00113202 0)
(1.00542 0.00111849 0)
(1.00555 0.00110412 0)
(1.00568 0.00108894 0)
(1.00581 0.0010731 0)
(1.00593 0.00105708 0)
(1.00605 0.0010413 0)
(1.00618 0.00102658 0)
(1.00629 0.00101336 0)
(1.00641 0.00100251 0)
(1 1.76037e-05 0)
(1.00001 6.6406e-05 0)
(1.00004 0.000131039 0)
(1.00009 0.00021183 0)
(1.00014 0.000307433 0)
(1.00021 0.000415358 0)
(1.0003 0.00053275 0)
(1.00039 0.00065694 0)
(1.00049 0.000785384 0)
(1.00061 0.000915219 0)
(1.00073 0.00104309 0)
(1.00086 0.00116557 0)
(1.001 0.00127987 0)
(1.00115 0.0013841 0)
(1.0013 0.00147686 0)
(1.00146 0.00155642 0)
(1.00162 0.00162032 0)
(1.00178 0.00166565 0)
(1.00195 0.00168988 0)
(1.00211 0.00169187 0)
(1.00228 0.0016724 0)
(1.00245 0.00163421 0)
(1.00262 0.0015814 0)
(1.00278 0.00151865 0)
(1.00295 0.00145058 0)
(1.00311 0.00138117 0)
(1.00327 0.00131359 0)
(1.00343 0.00125017 0)
(1.00359 0.00119241 0)
(1.00375 0.00114116 0)
(1.0039 0.00109669 0)
(1.00406 0.00105881 0)
(1.00421 0.00102697 0)
(1.00436 0.00100044 0)
(1.0045 0.000978333 0)
(1.00465 0.000959765 0)
(1.00479 0.000943856 0)
(1.00493 0.000929781 0)
(1.00507 0.000916797 0)
(1.00521 0.000904254 0)
(1.00534 0.000891601 0)
(1.00547 0.000878448 0)
(1.00561 0.000864562 0)
(1.00573 0.000849962 0)
(1.00586 0.000834805 0)
(1.00598 0.00081955 0)
(1.00611 0.000804625 0)
(1.00623 0.0007908 0)
(1.00634 0.00077852 0)
(1.00646 0.000768656 0)
(1 1.02299e-05 0)
(1.00002 4.41176e-05 0)
(1.00004 9.37827e-05 0)
(1.00009 0.000159635 0)
(1.00015 0.000240431 0)
(1.00022 0.000333797 0)
(1.0003 0.000436988 0)
(1.0004 0.000547427 0)
(1.00051 0.000662652 0)
(1.00063 0.000779874 0)
(1.00075 0.000895806 0)
(1.00089 0.0010071 0)
(1.00103 0.00111102 0)
(1.00118 0.0012057 0)
(1.00134 0.00128972 0)
(1.0015 0.00136138 0)
(1.00166 0.00141823 0)
(1.00183 0.00145739 0)
(1.00199 0.00147636 0)
(1.00216 0.00147397 0)
(1.00233 0.00145098 0)
(1.00251 0.00141003 0)
(1.00267 0.00135511 0)
(1.00284 0.00129078 0)
(1.00301 0.00122153 0)
(1.00318 0.00115124 0)
(1.00334 0.00108301 0)
(1.0035 0.00101908 0)
(1.00366 0.000960919 0)
(1.00382 0.000909342 0)
(1.00397 0.000864591 0)
(1.00413 0.000826466 0)
(1.00428 0.000794435 0)
(1.00443 0.000767748 0)
(1.00457 0.000745543 0)
(1.00472 0.00072693 0)
(1.00486 0.000711045 0)
(1.005 0.000697079 0)
(1.00514 0.000684288 0)
(1.00528 0.000672025 0)
(1.00541 0.000659755 0)
(1.00554 0.000647091 0)
(1.00567 0.000633802 0)
(1.0058 0.000619896 0)
(1.00592 0.000605513 0)
(1.00605 0.000591104 0)
(1.00617 0.000577086 0)
(1.00629 0.000564213 0)
(1.0064 0.000552909 0)
(1.00652 0.00054403 0)
(1 2.8942e-06 0)
(1.00002 2.1808e-05 0)
(1.00005 5.64683e-05 0)
(1.00009 0.000107375 0)
(1.00015 0.000173371 0)
(1.00023 0.000252207 0)
(1.00031 0.000341251 0)
(1.00041 0.000438015 0)
(1.00052 0.000540114 0)
(1.00065 0.000644845 0)
(1.00078 0.000749 0)
(1.00092 0.000849297 0)
(1.00106 0.000943037 0)
(1.00122 0.00102837 0)
(1.00137 0.00110389 0)
(1.00154 0.00116789 0)
(1.00171 0.00121795 0)
(1.00188 0.00125123 0)
(1.00205 0.00126523 0)
(1.00222 0.00125879 0)
(1.00239 0.00123261 0)
(1.00257 0.00118923 0)
(1.00274 0.00113252 0)
(1.00291 0.00106693 0)
(1.00308 0.00099683 0)
(1.00325 0.000925996 0)
(1.00341 0.000857415 0)
(1.00357 0.000793266 0)
(1.00374 0.000734991 0)
(1.00389 0.000683353 0)
(1.00405 0.000638582 0)
(1.0042 0.00060047 0)
(1.00435 0.000568472 0)
(1.0045 0.00054184 0)
(1.00465 0.000519728 0)
(1.0048 0.000501255 0)
(1.00494 0.000485562 0)
(1.00508 0.000471858 0)
(1.00522 0.000459409 0)
(1.00535 0.000447573 0)
(1.00549 0.000435813 0)
(1.00562 0.000423748 0)
(1.00575 0.000411139 0)
(1.00587 0.000397999 0)
(1.006 0.000384467 0)
(1.00612 0.000370972 0)
(1.00624 0.000357913 0)
(1.00636 0.00034603 0)
(1.00647 0.000335731 0)
(1.00659 0.000327856 0)
(1 -4.50893e-06 0)
(1.00002 -5.44065e-07 0)
(1.00005 1.90379e-05 0)
(1.0001 5.48867e-05 0)
(1.00016 0.000106058 0)
(1.00024 0.000170372 0)
(1.00033 0.000245298 0)
(1.00043 0.00032845 0)
(1.00054 0.000417527 0)
(1.00067 0.000509899 0)
(1.0008 0.000602435 0)
(1.00095 0.00069191 0)
(1.0011 0.000775671 0)
(1.00125 0.000851887 0)
(1.00142 0.000919147 0)
(1.00158 0.000975749 0)
(1.00176 0.0010193 0)
(1.00193 0.00104696 0)
(1.00211 0.00105628 0)
(1.00228 0.00104608 0)
(1.00246 0.00101701 0)
(1.00264 0.000971528 0)
(1.00281 0.000913366 0)
(1.00298 0.000846844 0)
(1.00316 0.000776195 0)
(1.00332 0.000705092 0)
(1.00349 0.000636451 0)
(1.00366 0.000572381 0)
(1.00382 0.000514258 0)
(1.00398 0.000462822 0)
(1.00413 0.000418259 0)
(1.00429 0.000380359 0)
(1.00444 0.000348606 0)
(1.00459 0.000322227 0)
(1.00474 0.000300388 0)
(1.00488 0.000282226 0)
(1.00502 0.000266895 0)
(1.00516 0.000253601 0)
(1.0053 0.000241632 0)
(1.00544 0.00023035 0)
(1.00557 0.000219216 0)
(1.0057 0.000207853 0)
(1.00583 0.000196021 0)
(1.00596 0.000183725 0)
(1.00608 0.000171099 0)
(1.0062 0.000158557 0)
(1.00632 0.000146495 0)
(1.00644 0.000135634 0)
(1.00656 0.000126361 0)
(1.00667 0.000119499 0)
(1 -1.20447e-05 0)
(1.00002 -2.31547e-05 0)
(1.00005 -1.86416e-05 0)
(1.0001 2.13402e-06 0)
(1.00016 3.83387e-05 0)
(1.00024 8.80626e-05 0)
(1.00034 0.000148896 0)
(1.00044 0.000218498 0)
(1.00056 0.000294635 0)
(1.00069 0.000374766 0)
(1.00083 0.00045584 0)
(1.00098 0.000534695 0)
(1.00113 0.000608701 0)
(1.0013 0.00067603 0)
(1.00146 0.000735273 0)
(1.00164 0.000784733 0)
(1.00181 0.00082204 0)
(1.00199 0.000844385 0)
(1.00217 0.000849326 0)
(1.00235 0.000835673 0)
(1.00253 0.000804013 0)
(1.00271 0.000756713 0)
(1.00289 0.000697395 0)
(1.00306 0.000630246 0)
(1.00324 0.000559352 0)
(1.00341 0.000488275 0)
(1.00358 0.000419856 0)
(1.00374 0.00035613 0)
(1.00391 0.000298388 0)
(1.00407 0.000247362 0)
(1.00422 0.000203241 0)
(1.00438 0.000165783 0)
(1.00453 0.000134448 0)
(1.00468 0.000108531 0)
(1.00483 8.7165e-05 0)
(1.00498 6.9484e-05 0)
(1.00512 5.46642e-05 0)
(1.00526 4.19228e-05 0)
(1.0054 3.05463e-05 0)
(1.00553 1.9908e-05 0)
(1.00567 9.48646e-06 0)
(1.0058 -1.09125e-06 0)
(1.00592 -1.2058e-05 0)
(1.00605 -2.3426e-05 0)
(1.00617 -3.50815e-05 0)
(1.0063 -4.66174e-05 0)
(1.00642 -5.76463e-05 0)
(1.00653 -6.74663e-05 0)
(1.00665 -7.57018e-05 0)
(1.00676 -8.15451e-05 0)
(1 -1.96477e-05 0)
(1.00002 -4.61362e-05 0)
(1.00005 -5.68625e-05 0)
(1.0001 -5.11662e-05 0)
(1.00017 -2.98646e-05 0)
(1.00025 5.23146e-06 0)
(1.00035 5.18757e-05 0)
(1.00046 0.000107923 0)
(1.00059 0.000171228 0)
(1.00072 0.000239276 0)
(1.00086 0.00030905 0)
(1.00102 0.000377452 0)
(1.00118 0.000441895 0)
(1.00134 0.000500562 0)
(1.00151 0.00055204 0)
(1.00169 0.000594638 0)
(1.00187 0.000625992 0)
(1.00205 0.000643312 0)
(1.00224 0.000644176 0)
(1.00242 0.000627377 0)
(1.00261 0.000593442 0)
(1.00279 0.000544634 0)
(1.00297 0.000484455 0)
(1.00315 0.000416955 0)
(1.00332 0.000346096 0)
(1.0035 0.000275327 0)
(1.00367 0.000207384 0)
(1.00384 0.000144231 0)
(1.004 8.71409e-05 0)
(1.00416 3.67744e-05 0)
(1.00432 -6.68752e-06 0)
(1.00448 -4.35001e-05 0)
(1.00463 -7.42219e-05 0)
(1.00478 -9.95447e-05 0)
(1.00493 -0.000120312 0)
(1.00508 -0.000137381 0)
(1.00522 -0.000151573 0)
(1.00536 -0.000163654 0)
(1.0055 -0.000174327 0)
(1.00563 -0.000184205 0)
(1.00577 -0.000193809 0)
(1.0059 -0.000203516 0)
(1.00603 -0.000213564 0)
(1.00615 -0.000223961 0)
(1.00628 -0.000234594 0)
(1.0064 -0.000245067 0)
(1.00652 -0.000255024 0)
(1.00663 -0.000263778 0)
(1.00675 -0.000270956 0)
(1.00686 -0.000275773 0)
(1 -2.73443e-05 0)
(1.00002 -6.94246e-05 0)
(1.00005 -9.57256e-05 0)
(1.00011 -0.000105368 0)
(1.00018 -9.90215e-05 0)
(1.00027 -7.85163e-05 0)
(1.00037 -4.59926e-05 0)
(1.00048 -3.46284e-06 0)
(1.00061 4.70299e-05 0)
(1.00075 0.000103068 0)
(1.0009 0.000161721 0)
(1.00106 0.000219905 0)
(1.00122 0.000275046 0)
(1.00139 0.000325332 0)
(1.00157 0.000369329 0)
(1.00175 0.000405349 0)
(1.00194 0.000431039 0)
(1.00212 0.000443634 0)
(1.00231 0.000440717 0)
(1.0025 0.000421064 0)
(1.00269 0.000385151 0)
(1.00287 0.00033513 0)
(1.00306 0.000274361 0)
(1.00324 0.000206777 0)
(1.00342 0.000136227 0)
(1.00359 6.6043e-05 0)
(1.00377 -1.16949e-06 0)
(1.00394 -6.35019e-05 0)
(1.0041 -0.000119716 0)
(1.00427 -0.000169205 0)
(1.00443 -0.000211837 0)
(1.00458 -0.000247852 0)
(1.00474 -0.000277777 0)
(1.00489 -0.000302363 0)
(1.00504 -0.000322407 0)
(1.00519 -0.000338741 0)
(1.00533 -0.000352183 0)
(1.00547 -0.00036349 0)
(1.00561 -0.000373356 0)
(1.00574 -0.000382389 0)
(1.00588 -0.000391105 0)
(1.00601 -0.000399876 0)
(1.00614 -0.000408937 0)
(1.00626 -0.0004183 0)
(1.00639 -0.000427861 0)
(1.00651 -0.000437242 0)
(1.00663 -0.000446094 0)
(1.00674 -0.000453748 0)
(1.00686 -0.00045985 0)
(1.00697 -0.000463631 0)
(1 -3.51789e-05 0)
(1.00002 -9.30841e-05 0)
(1.00006 -0.000135178 0)
(1.00011 -0.000160446 0)
(1.00019 -0.000169393 0)
(1.00028 -0.000163585 0)
(1.00038 -0.000145054 0)
(1.0005 -0.000115854 0)
(1.00064 -7.79666e-05 0)
(1.00078 -3.37528e-05 0)
(1.00094 1.39154e-05 0)
(1.0011 6.20261e-05 0)
(1.00127 0.000108046 0)
(1.00145 0.00015016 0)
(1.00163 0.000186931 0)
(1.00182 0.000216649 0)
(1.00201 0.000236964 0)
(1.0022 0.000245134 0)
(1.00239 0.000238738 0)
(1.00258 0.000216532 0)
(1.00277 0.000178931 0)
(1.00296 0.000127989 0)
(1.00315 6.69609e-05 0)
(1.00334 -3.97036e-07 0)
(1.00352 -7.0375e-05 0)
(1.0037 -0.000139746 0)
(1.00387 -0.000205991 0)
(1.00404 -0.000267286 0)
(1.00421 -0.000322464 0)
(1.00438 -0.000370921 0)
(1.00454 -0.000412538 0)
(1.0047 -0.000447571 0)
(1.00485 -0.00047656 0)
(1.00501 -0.000500231 0)
(1.00516 -0.000519387 0)
(1.0053 -0.000534852 0)
(1.00545 -0.000547425 0)
(1.00559 -0.000557854 0)
(1.00573 -0.00056682 0)
(1.00586 -0.000574925 0)
(1.006 -0.000582676 0)
(1.00613 -0.000590439 0)
(1.00626 -0.000598451 0)
(1.00638 -0.00060673 0)
(1.00651 -0.000615179 0)
(1.00663 -0.000623432 0)
(1.00674 -0.000631151 0)
(1.00686 -0.000637688 0)
(1.00697 -0.0006427 0)
(1.00709 -0.000645437 0)
(1 -4.31799e-05 0)
(1.00002 -0.000117204 0)
(1.00006 -0.000175336 0)
(1.00012 -0.000216416 0)
(1.0002 -0.00024078 0)
(1.00029 -0.000249854 0)
(1.0004 -0.000245538 0)
(1.00053 -0.000229741 0)
(1.00067 -0.000204397 0)
(1.00082 -0.000171851 0)
(1.00098 -0.000134957 0)
(1.00115 -9.6663e-05 0)
(1.00132 -5.94689e-05 0)
(1.00151 -2.51976e-05 0)
(1.0017 4.68471e-06 0)
(1.00189 2.84423e-05 0)
(1.00208 4.37224e-05 0)
(1.00228 4.77972e-05 0)
(1.00248 3.82512e-05 0)
(1.00267 1.38099e-05 0)
(1.00287 -2.5175e-05 0)
(1.00306 -7.67455e-05 0)
(1.00325 -0.000137781 0)
(1.00344 -0.000204671 0)
(1.00363 -0.000273846 0)
(1.00381 -0.000342204 0)
(1.00398 -0.000407284 0)
(1.00416 -0.00046734 0)
(1.00433 -0.00052126 0)
(1.0045 -0.00056848 0)
(1.00466 -0.000608902 0)
(1.00482 -0.000642795 0)
(1.00498 -0.000670698 0)
(1.00513 -0.000693324 0)
(1.00528 -0.000711471 0)
(1.00543 -0.00072595 0)
(1.00557 -0.00073755 0)
(1.00571 -0.000747004 0)
(1.00585 -0.000754985 0)
(1.00599 -0.000762082 0)
(1.00612 -0.000768796 0)
(1.00625 -0.000775492 0)
(1.00638 -0.000782403 0)
(1.00651 -0.000789553 0)
(1.00663 -0.000796851 0)
(1.00675 -0.000803944 0)
(1.00687 -0.000810505 0)
(1.00699 -0.000815905 0)
(1.0071 -0.000819814 0)
(1.00721 -0.0008215 0)
(1 -5.13655e-05 0)
(1.00002 -0.000141871 0)
(1.00006 -0.000216352 0)
(1.00013 -0.000273483 0)
(1.00021 -0.000313442 0)
(1.00031 -0.000337516 0)
(1.00042 -0.000347475 0)
(1.00055 -0.000345111 0)
(1.0007 -0.000332309 0)
(1.00086 -0.000311332 0)
(1.00102 -0.000284973 0)
(1.0012 -0.000256188 0)
(1.00138 -0.000227502 0)
(1.00157 -0.000200756 0)
(1.00177 -0.000177453 0)
(1.00196 -0.000159338 0)
(1.00216 -0.000148762 0)
(1.00236 -0.000148463 0)
(1.00257 -0.000160847 0)
(1.00277 -0.000187216 0)
(1.00297 -0.00022729 0)
(1.00317 -0.000279224 0)
(1.00336 -0.000340047 0)
(1.00355 -0.000406242 0)
(1.00374 -0.000474372 0)
(1.00392 -0.000541456 0)
(1.0041 -0.000605142 0)
(1.00428 -0.000663752 0)
(1.00445 -0.000716226 0)
(1.00462 -0.000762036 0)
(1.00479 -0.000801104 0)
(1.00495 -0.000833706 0)
(1.0051 -0.000860382 0)
(1.00526 -0.000881836 0)
(1.00541 -0.000898856 0)
(1.00556 -0.000912242 0)
(1.0057 -0.00092277 0)
(1.00585 -0.00093116 0)
(1.00599 -0.000938074 0)
(1.00612 -0.000944092 0)
(1.00626 -0.000949708 0)
(1.00639 -0.000955279 0)
(1.00652 -0.000961041 0)
(1.00664 -0.00096702 0)
(1.00677 -0.000973131 0)
(1.00689 -0.000979034 0)
(1.00701 -0.000984415 0)
(1.00712 -0.00098866 0)
(1.00724 -0.000991454 0)
(1.00735 -0.000992083 0)
(1 -5.97658e-05 0)
(1.00002 -0.000167154 0)
(1.00007 -0.000258345 0)
(1.00013 -0.000331844 0)
(1.00022 -0.000387631 0)
(1.00032 -0.000426814 0)
(1.00045 -0.000451033 0)
(1.00058 -0.000462013 0)
(1.00074 -0.000461585 0)
(1.0009 -0.000451989 0)
(1.00107 -0.000435997 0)
(1.00125 -0.000416544 0)
(1.00144 -0.000396146 0)
(1.00164 -0.000376664 0)
(1.00184 -0.000359631 0)
(1.00204 -0.000346832 0)
(1.00225 -0.000340644 0)
(1.00246 -0.000343801 0)
(1.00266 -0.000358716 0)
(1.00287 -0.000386717 0)
(1.00307 -0.000427594 0)
(1.00328 -0.000479605 0)
(1.00348 -0.000539903 0)
(1.00367 -0.000605127 0)
(1.00386 -0.000671973 0)
(1.00405 -0.000737569 0)
(1.00423 -0.000799658 0)
(1.00441 -0.000856633 0)
(1.00458 -0.000907484 0)
(1.00475 -0.000951719 0)
(1.00492 -0.000989279 0)
(1.00508 -0.00102045 0)
(1.00524 -0.00104577 0)
(1.0054 -0.00106593 0)
(1.00555 -0.00108171 0)
(1.0057 -0.0010939 0)
(1.00584 -0.00110327 0)
(1.00599 -0.00111051 0)
(1.00613 -0.00111628 0)
(1.00627 -0.00112116 0)
(1.0064 -0.00112562 0)
(1.00653 -0.00113001 0)
(1.00666 -0.00113458 0)
(1.00679 -0.00113935 0)
(1.00691 -0.00114425 0)
(1.00703 -0.00114893 0)
(1.00715 -0.00115311 0)
(1.00726 -0.00115619 0)
(1.00738 -0.00115786 0)
(1.00749 -0.00115743 0)
(1 -6.84059e-05 0)
(1.00002 -0.000193138 0)
(1.00007 -0.000301448 0)
(1.00014 -0.000391637 0)
(1.00023 -0.000463489 0)
(1.00034 -0.000517951 0)
(1.00047 -0.000556539 0)
(1.00062 -0.000580889 0)
(1.00077 -0.000592776 0)
(1.00094 -0.000594414 0)
(1.00113 -0.000588559 0)
(1.00132 -0.000578136 0)
(1.00151 -0.000565677 0)
(1.00171 -0.00055309 0)
(1.00192 -0.000541963 0)
(1.00213 -0.000534127 0)
(1.00234 -0.000531973 0)
(1.00256 -0.000538239 0)
(1.00277 -0.000555346 0)
(1.00298 -0.00058466 0)
(1.00319 -0.000626038 0)
(1.00339 -0.000677847 0)
(1.0036 -0.000737368 0)
(1.00379 -0.000801384 0)
(1.00399 -0.000866719 0)
(1.00418 -0.000930615 0)
(1.00436 -0.000990911 0)
(1.00454 -0.00104607 0)
(1.00472 -0.00109513 0)
(1.00489 -0.00113763 0)
(1.00506 -0.00117354 0)
(1.00522 -0.00120314 0)
(1.00538 -0.00122698 0)
(1.00554 -0.00124574 0)
(1.00569 -0.00126018 0)
(1.00584 -0.00127109 0)
(1.00599 -0.0012792 0)
(1.00614 -0.00128522 0)
(1.00628 -0.00128979 0)
(1.00641 -0.00129346 0)
(1.00655 -0.00129671 0)
(1.00668 -0.00129988 0)
(1.00681 -0.00130322 0)
(1.00694 -0.00130675 0)
(1.00706 -0.0013104 0)
(1.00718 -0.00131385 0)
(1.0073 -0.00131681 0)
(1.00742 -0.00131871 0)
(1.00753 -0.00131924 0)
(1.00764 -0.00131774 0)
(1 -7.73147e-05 0)
(1.00003 -0.0002199 0)
(1.00008 -0.000345782 0)
(1.00015 -0.00045304 0)
(1.00025 -0.00054125 0)
(1.00036 -0.000611173 0)
(1.0005 -0.000664188 0)
(1.00065 -0.000701856 0)
(1.00082 -0.000725918 0)
(1.00099 -0.000738584 0)
(1.00118 -0.000742604 0)
(1.00138 -0.000740912 0)
(1.00158 -0.000736074 0)
(1.00179 -0.000730049 0)
(1.00201 -0.000724484 0)
(1.00223 -0.000721254 0)
(1.00244 -0.000722777 0)
(1.00266 -0.000731805 0)
(1.00288 -0.000750774 0)
(1.0031 -0.000781083 0)
(1.00331 -0.000822665 0)
(1.00352 -0.000873993 0)
(1.00372 -0.00093248 0)
(1.00393 -0.000995047 0)
(1.00412 -0.00105865 0)
(1.00432 -0.00112064 0)
(1.0045 -0.00117896 0)
(1.00469 -0.00123212 0)
(1.00486 -0.00127923 0)
(1.00504 -0.00131986 0)
(1.00521 -0.00135398 0)
(1.00537 -0.00138189 0)
(1.00554 -0.00140413 0)
(1.00569 -0.00142138 0)
(1.00585 -0.00143439 0)
(1.006 -0.00144392 0)
(1.00615 -0.00145071 0)
(1.00629 -0.00145544 0)
(1.00643 -0.00145874 0)
(1.00657 -0.00146115 0)
(1.00671 -0.00146314 0)
(1.00684 -0.00146505 0)
(1.00697 -0.00146712 0)
(1.00709 -0.00146938 0)
(1.00722 -0.00147176 0)
(1.00734 -0.00147396 0)
(1.00746 -0.00147569 0)
(1.00757 -0.00147639 0)
(1.00769 -0.00147579 0)
(1.0078 -0.00147322 0)
(1 -8.652e-05 0)
(1.00003 -0.000247526 0)
(1.00008 -0.000391483 0)
(1.00016 -0.000516225 0)
(1.00026 -0.000621092 0)
(1.00039 -0.000706655 0)
(1.00053 -0.000774166 0)
(1.00069 -0.000825118 0)
(1.00086 -0.000861232 0)
(1.00105 -0.000884718 0)
(1.00125 -0.000898342 0)
(1.00145 -0.000905065 0)
(1.00166 -0.000907496 0)
(1.00188 -0.000907659 0)
(1.0021 -0.00090727 0)
(1.00233 -0.000908262 0)
(1.00255 -0.000913089 0)
(1.00277 -0.000924519 0)
(1.003 -0.000945006 0)
(1.00322 -0.00097599 0)
(1.00344 -0.00101748 0)
(1.00365 -0.00106805 0)
(1.00386 -0.00112525 0)
(1.00407 -0.00118613 0)
(1.00427 -0.00124779 0)
(1.00446 -0.00130769 0)
(1.00465 -0.00136384 0)
(1.00484 -0.00141485 0)
(1.00502 -0.00145986 0)
(1.00519 -0.00149846 0)
(1.00536 -0.00153067 0)
(1.00553 -0.00155678 0)
(1.00569 -0.00157732 0)
(1.00585 -0.00159296 0)
(1.00601 -0.00160445 0)
(1.00616 -0.00161253 0)
(1.00631 -0.00161792 0)
(1.00645 -0.0016213 0)
(1.0066 -0.00162327 0)
(1.00673 -0.00162437 0)
(1.00687 -0.00162506 0)
(1.007 -0.00162568 0)
(1.00713 -0.00162645 0)
(1.00726 -0.00162741 0)
(1.00738 -0.0016285 0)
(1.0075 -0.00162942 0)
(1.00762 -0.00162991 0)
(1.00774 -0.00162942 0)
(1.00785 -0.00162767 0)
(1.00796 -0.00162403 0)
(1 -9.60524e-05 0)
(1.00003 -0.000276101 0)
(1.00009 -0.000438686 0)
(1.00017 -0.00058136 0)
(1.00028 -0.000703213 0)
(1.00041 -0.000804618 0)
(1.00056 -0.000886696 0)
(1.00073 -0.000950882 0)
(1.00091 -0.000998891 0)
(1.00111 -0.00103296 0)
(1.00131 -0.00105588 0)
(1.00153 -0.00107067 0)
(1.00175 -0.00108 0)
(1.00197 -0.00108595 0)
(1.0022 -0.00109034 0)
(1.00243 -0.00109516 0)
(1.00266 -0.00110291 0)
(1.00289 -0.00111638 0)
(1.00312 -0.00113804 0)
(1.00335 -0.00116937 0)
(1.00357 -0.00121047 0)
(1.00379 -0.00126001 0)
(1.004 -0.00131567 0)
(1.00421 -0.00137465 0)
(1.00442 -0.00143415 0)
(1.00461 -0.00149176 0)
(1.00481 -0.00154558 0)
(1.00499 -0.00159428 0)
(1.00518 -0.00163704 0)
(1.00535 -0.00167351 0)
(1.00553 -0.00170368 0)
(1.0057 -0.00172787 0)
(1.00586 -0.00174661 0)
(1.00602 -0.00176056 0)
(1.00618 -0.00177045 0)
(1.00633 -0.001777 0)
(1.00648 -0.00178093 0)
(1.00662 -0.0017829 0)
(1.00677 -0.00178349 0)
(1.00691 -0.00178324 0)
(1.00704 -0.00178259 0)
(1.00718 -0.00178188 0)
(1.00731 -0.00178133 0)
(1.00743 -0.00178097 0)
(1.00756 -0.00178076 0)
(1.00768 -0.0017804 0)
(1.0078 -0.00177963 0)
(1.00791 -0.00177794 0)
(1.00803 -0.00177504 0)
(1.00814 -0.00177033 0)
(1 -0.000105943 0)
(1.00003 -0.000305717 0)
(1.00009 -0.000487533 0)
(1.00018 -0.00064863 0)
(1.0003 -0.000787821 0)
(1.00044 -0.000905272 0)
(1.0006 -0.00100198 0)
(1.00077 -0.00107933 0)
(1.00097 -0.00113906 0)
(1.00117 -0.00118344 0)
(1.00139 -0.00121534 0)
(1.00161 -0.00123782 0)
(1.00184 -0.00125364 0)
(1.00207 -0.00126497 0)
(1.00231 -0.00127373 0)
(1.00255 -0.00128197 0)
(1.00278 -0.00129224 0)
(1.00302 -0.00130736 0)
(1.00325 -0.00132984 0)
(1.00349 -0.0013612 0)
(1.00371 -0.00140161 0)
(1.00394 -0.00144985 0)
(1.00415 -0.00150373 0)
(1.00437 -0.00156058 0)
(1.00457 -0.00161774 0)
(1.00477 -0.00167288 0)
(1.00497 -0.00172421 0)
(1.00516 -0.00177045 0)
(1.00534 -0.00181083 0)
(1.00552 -0.00184502 0)
(1.0057 -0.00187305 0)
(1.00587 -0.00189523 0)
(1.00603 -0.00191208 0)
(1.00619 -0.00192426 0)
(1.00635 -0.00193247 0)
(1.00651 -0.00193743 0)
(1.00666 -0.00193985 0)
(1.0068 -0.00194035 0)
(1.00695 -0.00193952 0)
(1.00708 -0.00193788 0)
(1.00722 -0.00193586 0)
(1.00735 -0.00193379 0)
(1.00748 -0.00193189 0)
(1.00761 -0.0019302 0)
(1.00774 -0.00192867 0)
(1.00786 -0.00192702 0)
(1.00798 -0.001925 0)
(1.00809 -0.00192209 0)
(1.00821 -0.00191805 0)
(1.00832 -0.00191227 0)
(1 -0.000116226 0)
(1.00003 -0.000336471 0)
(1.0001 -0.000538175 0)
(1.00019 -0.000718221 0)
(1.00032 -0.000875125 0)
(1.00046 -0.00100883 0)
(1.00063 -0.00112022 0)
(1.00082 -0.00121065 0)
(1.00102 -0.00128189 0)
(1.00124 -0.0013363 0)
(1.00146 -0.00137681 0)
(1.0017 -0.00140658 0)
(1.00194 -0.00142846 0)
(1.00218 -0.00144474 0)
(1.00242 -0.00145742 0)
(1.00267 -0.00146865 0)
(1.00291 -0.00148104 0)
(1.00315 -0.00149744 0)
(1.00339 -0.00152038 0)
(1.00363 -0.00155145 0)
(1.00386 -0.00159086 0)
(1.00409 -0.00163754 0)
(1.00431 -0.00168941 0)
(1.00453 -0.00174391 0)
(1.00474 -0.00179853 0)
(1.00494 -0.00185104 0)
(1.00514 -0.00189971 0)
(1.00533 -0.00194335 0)
(1.00552 -0.00198124 0)
(1.0057 -0.00201305 0)
(1.00588 -0.00203884 0)
(1.00605 -0.00205891 0)
(1.00621 -0.00207379 0)
(1.00638 -0.00208411 0)
(1.00654 -0.00209058 0)
(1.00669 -0.0020939 0)
(1.00684 -0.00209475 0)
(1.00699 -0.00209374 0)
(1.00713 -0.00209145 0)
(1.00727 -0.00208838 0)
(1.00741 -0.00208497 0)
(1.00754 -0.00208152 0)
(1.00767 -0.00207826 0)
(1.0078 -0.00207522 0)
(1.00792 -0.00207236 0)
(1.00805 -0.00206941 0)
(1.00816 -0.00206612 0)
(1.00828 -0.00206202 0)
(1.00839 -0.00205683 0)
(1.00851 -0.00204998 0)
(1 -0.000126936 0)
(1.00004 -0.000368464 0)
(1.00011 -0.000590767 0)
(1.00021 -0.000790331 0)
(1.00034 -0.00096534 0)
(1.0005 -0.00111552 0)
(1.00068 -0.00124162 0)
(1.00087 -0.00134502 0)
(1.00109 -0.00142754 0)
(1.00131 -0.00149163 0)
(1.00155 -0.00154036 0)
(1.00179 -0.00157699 0)
(1.00204 -0.00160448 0)
(1.00229 -0.00162524 0)
(1.00254 -0.00164139 0)
(1.00279 -0.00165518 0)
(1.00305 -0.00166927 0)
(1.0033 -0.00168656 0)
(1.00354 -0.00170961 0)
(1.00378 -0.00174005 0)
(1.00402 -0.00177819 0)
(1.00425 -0.00182304 0)
(1.00448 -0.00187265 0)
(1.0047 -0.00192462 0)
(1.00491 -0.00197651 0)
(1.00512 -0.00202621 0)
(1.00532 -0.0020721 0)
(1.00551 -0.00211302 0)
(1.0057 -0.00214828 0)
(1.00588 -0.00217761 0)
(1.00606 -0.00220106 0)
(1.00623 -0.00221895 0)
(1.0064 -0.00223178 0)
(1.00657 -0.00224019 0)
(1.00673 -0.00224486 0)
(1.00688 -0.00224648 0)
(1.00703 -0.00224571 0)
(1.00718 -0.00224315 0)
(1.00732 -0.00223937 0)
(1.00746 -0.00223485 0)
(1.0076 -0.00223002 0)
(1.00774 -0.00222517 0)
(1.00787 -0.00222053 0)
(1.00799 -0.00221614 0)
(1.00812 -0.00221194 0)
(1.00824 -0.00220769 0)
(1.00836 -0.00220314 0)
(1.00848 -0.00219783 0)
(1.00859 -0.0021915 0)
(1.0087 -0.00218359 0)
(1 -0.000138111 0)
(1.00004 -0.000401804 0)
(1.00011 -0.000645476 0)
(1.00022 -0.000865164 0)
(1.00036 -0.00105869 0)
(1.00053 -0.00122555 0)
(1.00072 -0.00136639 0)
(1.00093 -0.00148261 0)
(1.00116 -0.00157613 0)
(1.00139 -0.00164955 0)
(1.00164 -0.00170607 0)
(1.00189 -0.00174909 0)
(1.00215 -0.00178171 0)
(1.00241 -0.00180647 0)
(1.00267 -0.00182562 0)
(1.00293 -0.00184151 0)
(1.00319 -0.00185688 0)
(1.00345 -0.00187466 0)
(1.0037 -0.00189746 0)
(1.00394 -0.00192695 0)
(1.00419 -0.00196352 0)
(1.00442 -0.00200629 0)
(1.00465 -0.00205343 0)
(1.00488 -0.00210265 0)
(1.00509 -0.00215164 0)
(1.0053 -0.0021984 0)
(1.0055 -0.00224136 0)
(1.0057 -0.00227943 0)
(1.00589 -0.00231197 0)
(1.00608 -0.00233873 0)
(1.00626 -0.00235976 0)
(1.00643 -0.00237539 0)
(1.0066 -0.00238611 0)
(1.00676 -0.00239254 0)
(1.00692 -0.00239536 0)
(1.00708 -0.00239524 0)
(1.00723 -0.00239281 0)
(1.00738 -0.00238867 0)
(1.00752 -0.00238337 0)
(1.00767 -0.00237737 0)
(1.0078 -0.0023711 0)
(1.00794 -0.00236485 0)
(1.00807 -0.00235882 0)
(1.0082 -0.00235306 0)
(1.00832 -0.00234752 0)
(1.00844 -0.00234197 0)
(1.00856 -0.00233616 0)
(1.00868 -0.00232964 0)
(1.00879 -0.00232218 0)
(1.0089 -0.00231321 0)
(1 -0.000149791 0)
(1.00004 -0.000436606 0)
(1.00012 -0.000702477 0)
(1.00024 -0.000942936 0)
(1.00039 -0.00115541 0)
(1.00057 -0.00133915 0)
(1.00077 -0.00149473 0)
(1.00099 -0.00162359 0)
(1.00123 -0.0017278 0)
(1.00148 -0.00181014 0)
(1.00174 -0.00187398 0)
(1.002 -0.00192289 0)
(1.00227 -0.00196012 0)
(1.00254 -0.00198838 0)
(1.00281 -0.00201005 0)
(1.00308 -0.00202758 0)
(1.00334 -0.00204379 0)
(1.0036 -0.00206166 0)
(1.00386 -0.00208385 0)
(1.00411 -0.00211208 0)
(1.00436 -0.0021468 0)
(1.0046 -0.00218724 0)
(1.00483 -0.00223169 0)
(1.00506 -0.00227797 0)
(1.00528 -0.00232391 0)
(1.00549 -0.00236757 0)
(1.0057 -0.00240748 0)
(1.0059 -0.0024426 0)
(1.00609 -0.00247232 0)
(1.00628 -0.00249642 0)
(1.00646 -0.00251496 0)
(1.00663 -0.00252825 0)
(1.0068 -0.00253681 0)
(1.00697 -0.00254122 0)
(1.00713 -0.00254214 0)
(1.00729 -0.00254023 0)
(1.00744 -0.00253612 0)
(1.00759 -0.00253037 0)
(1.00773 -0.00252352 0)
(1.00787 -0.00251603 0)
(1.00801 -0.00250831 0)
(1.00815 -0.00250063 0)
(1.00828 -0.00249321 0)
(1.00841 -0.00248608 0)
(1.00853 -0.00247921 0)
(1.00865 -0.00247235 0)
(1.00877 -0.00246529 0)
(1.00889 -0.00245758 0)
(1.009 -0.00244898 0)
(1.00911 -0.00243897 0)
(1 -0.000162019 0)
(1.00005 -0.000472992 0)
(1.00013 -0.000761955 0)
(1.00026 -0.00102387 0)
(1.00042 -0.00125574 0)
(1.00061 -0.00145655 0)
(1.00083 -0.00162682 0)
(1.00106 -0.0017681 0)
(1.00131 -0.00188264 0)
(1.00157 -0.00197345 0)
(1.00184 -0.0020441 0)
(1.00212 -0.00209837 0)
(1.0024 -0.00213969 0)
(1.00267 -0.00217093 0)
(1.00295 -0.0021946 0)
(1.00323 -0.0022133 0)
(1.0035 -0.00222991 0)
(1.00377 -0.00224749 0)
(1.00403 -0.00226871 0)
(1.00429 -0.00229535 0)
(1.00454 -0.00232795 0)
(1.00479 -0.00236582 0)
(1.00503 -0.00240737 0)
(1.00526 -0.00245054 0)
(1.00548 -0.00249326 0)
(1.00569 -0.0025337 0)
(1.0059 -0.00257044 0)
(1.0061 -0.00260251 0)
(1.0063 -0.00262933 0)
(1.00648 -0.00265069 0)
(1.00667 -0.00266667 0)
(1.00684 -0.00267758 0)
(1.00701 -0.00268391 0)
(1.00718 -0.00268626 0)
(1.00734 -0.00268525 0)
(1.0075 -0.00268152 0)
(1.00765 -0.00267569 0)
(1.0078 -0.00266831 0)
(1.00795 -0.0026599 0)
(1.00809 -0.00265091 0)
(1.00823 -0.00264172 0)
(1.00836 -0.00263262 0)
(1.00849 -0.0026238 0)
(1.00862 -0.0026153 0)
(1.00875 -0.00260709 0)
(1.00887 -0.00259894 0)
(1.00899 -0.00259063 0)
(1.0091 -0.00258173 0)
(1.00922 -0.00257201 0)
(1.00933 -0.00256096 0)
(1 -0.000174841 0)
(1.00005 -0.000511094 0)
(1.00014 -0.000824109 0)
(1.00028 -0.00110821 0)
(1.00045 -0.00135991 0)
(1.00065 -0.00157797 0)
(1.00088 -0.00176287 0)
(1.00113 -0.00191629 0)
(1.0014 -0.00204075 0)
(1.00167 -0.00213952 0)
(1.00196 -0.00221645 0)
(1.00224 -0.00227552 0)
(1.00253 -0.00232036 0)
(1.00282 -0.00235402 0)
(1.00311 -0.00237919 0)
(1.00339 -0.00239857 0)
(1.00367 -0.00241515 0)
(1.00395 -0.00243203 0)
(1.00422 -0.00245193 0)
(1.00448 -0.00247668 0)
(1.00474 -0.00250689 0)
(1.00498 -0.00254196 0)
(1.00522 -0.00258041 0)
(1.00546 -0.00262031 0)
(1.00568 -0.00265967 0)
(1.0059 -0.00269676 0)
(1.00611 -0.00273024 0)
(1.00631 -0.00275916 0)
(1.00651 -0.002783 0)
(1.0067 -0.00280156 0)
(1.00688 -0.00281492 0)
(1.00706 -0.0028234 0)
(1.00723 -0.00282747 0)
(1.0074 -0.00282771 0)
(1.00756 -0.00282474 0)
(1.00772 -0.00281917 0)
(1.00787 -0.0028116 0)
(1.00802 -0.00280258 0)
(1.00817 -0.00279259 0)
(1.00831 -0.00278208 0)
(1.00845 -0.00277142 0)
(1.00859 -0.00276089 0)
(1.00872 -0.00275067 0)
(1.00885 -0.00274081 0)
(1.00897 -0.00273127 0)
(1.00909 -0.00272183 0)
(1.00921 -0.00271228 0)
(1.00933 -0.00270221 0)
(1.00944 -0.00269138 0)
(1.00955 -0.0026793 0)
(1 -0.000188305 0)
(1.00005 -0.000551051 0)
(1.00015 -0.000889148 0)
(1.0003 -0.0011962 0)
(1.00048 -0.0014682 0)
(1.0007 -0.00170365 0)
(1.00095 -0.00190306 0)
(1.00121 -0.0020683 0)
(1.00149 -0.00220221 0)
(1.00178 -0.0023084 0)
(1.00208 -0.00239101 0)
(1.00237 -0.00245428 0)
(1.00267 -0.00250206 0)
(1.00297 -0.00253759 0)
(1.00327 -0.00256372 0)
(1.00356 -0.0025833 0)
(1.00385 -0.00259941 0)
(1.00413 -0.00261519 0)
(1.00441 -0.00263342 0)
(1.00467 -0.00265598 0)
(1.00494 -0.00268354 0)
(1.00519 -0.00271559 0)
(1.00543 -0.00275076 0)
(1.00567 -0.00278722 0)
(1.0059 -0.00282309 0)
(1.00612 -0.00285673 0)
(1.00633 -0.00288684 0)
(1.00653 -0.00291255 0)
(1.00673 -0.00293334 0)
(1.00692 -0.00294904 0)
(1.00711 -0.00295974 0)
(1.00729 -0.00296574 0)
(1.00746 -0.00296752 0)
(1.00763 -0.00296562 0)
(1.00779 -0.00296066 0)
(1.00795 -0.00295323 0)
(1.0081 -0.00294391 0)
(1.00825 -0.00293323 0)
(1.0084 -0.00292166 0)
(1.00854 -0.00290962 0)
(1.00868 -0.00289749 0)
(1.00882 -0.00288553 0)
(1.00895 -0.00287392 0)
(1.00908 -0.0028627 0)
(1.0092 -0.00285184 0)
(1.00933 -0.00284112 0)
(1.00944 -0.00283035 0)
(1.00956 -0.0028191 0)
(1.00967 -0.00280718 0)
(1.00979 -0.00279409 0)
(1 -0.000202467 0)
(1.00006 -0.000593013 0)
(1.00017 -0.000957296 0)
(1.00032 -0.0012881 0)
(1.00052 -0.00158085 0)
(1.00076 -0.00183382 0)
(1.00102 -0.00204755 0)
(1.0013 -0.00222423 0)
(1.00159 -0.00236706 0)
(1.0019 -0.00248007 0)
(1.00221 -0.00256774 0)
(1.00252 -0.00263458 0)
(1.00283 -0.00268469 0)
(1.00314 -0.00272151 0)
(1.00344 -0.00274807 0)
(1.00374 -0.00276736 0)
(1.00404 -0.00278255 0)
(1.00432 -0.00279685 0)
(1.00461 -0.00281308 0)
(1.00488 -0.00283315 0)
(1.00514 -0.00285781 0)
(1.0054 -0.00288663 0)
(1.00565 -0.00291834 0)
(1.00589 -0.00295123 0)
(1.00612 -0.00298349 0)
(1.00634 -0.00301357 0)
(1.00656 -0.00304024 0)
(1.00676 -0.00306266 0)
(1.00696 -0.00308035 0)
(1.00715 -0.00309314 0)
(1.00734 -0.00310114 0)
(1.00752 -0.00310463 0)
(1.00769 -0.00310408 0)
(1.00786 -0.00310003 0)
(1.00803 -0.00309307 0)
(1.00819 -0.00308376 0)
(1.00834 -0.00307268 0)
(1.00849 -0.00306032 0)
(1.00864 -0.00304717 0)
(1.00878 -0.00303361 0)
(1.00892 -0.00302001 0)
(1.00906 -0.00300663 0)
(1.00919 -0.00299363 0)
(1.00932 -0.00298106 0)
(1.00944 -0.00296889 0)
(1.00956 -0.00295691 0)
(1.00968 -0.00294491 0)
(1.0098 -0.00293252 0)
(1.00991 -0.00291951 0)
(1.01002 -0.00290542 0)
(1 -0.000217383 0)
(1.00006 -0.000637144 0)
(1.00018 -0.00102879 0)
(1.00035 -0.00138418 0)
(1.00056 -0.00169815 0)
(1.00082 -0.0019687 0)
(1.00109 -0.00219653 0)
(1.00139 -0.00238418 0)
(1.0017 -0.00253535 0)
(1.00202 -0.00265453 0)
(1.00234 -0.00274658 0)
(1.00267 -0.00281635 0)
(1.00299 -0.00286816 0)
(1.00331 -0.00290567 0)
(1.00362 -0.00293212 0)
(1.00393 -0.00295062 0)
(1.00423 -0.00296446 0)
(1.00453 -0.0029769 0)
(1.00481 -0.0029908 0)
(1.00509 -0.0030081 0)
(1.00536 -0.00302962 0)
(1.00562 -0.00305502 0)
(1.00587 -0.00308311 0)
(1.00612 -0.00311228 0)
(1.00635 -0.00314083 0)
(1.00657 -0.00316727 0)
(1.00679 -0.00319042 0)
(1.007 -0.00320949 0)
(1.0072 -0.00322403 0)
(1.00739 -0.00323388 0)
(1.00758 -0.00323914 0)
(1.00776 -0.00324011 0)
(1.00794 -0.00323721 0)
(1.00811 -0.00323099 0)
(1.00827 -0.003222 0)
(1.00843 -0.00321081 0)
(1.00859 -0.00319796 0)
(1.00874 -0.00318394 0)
(1.00888 -0.00316919 0)
(1.00903 -0.00315412 0)
(1.00917 -0.00313906 0)
(1.0093 -0.00312425 0)
(1.00943 -0.00310988 0)
(1.00956 -0.00309598 0)
(1.00969 -0.0030825 0)
(1.00981 -0.00306927 0)
(1.00993 -0.00305607 0)
(1.01005 -0.00304254 0)
(1.01016 -0.00302847 0)
(1.01027 -0.00301339 0)
(1 -0.000233115 0)
(1.00007 -0.000683617 0)
(1.00019 -0.00110389 0)
(1.00038 -0.00148475 0)
(1.00061 -0.00182036 0)
(1.00088 -0.00210852 0)
(1.00118 -0.00235013 0)
(1.00149 -0.00254822 0)
(1.00182 -0.00270708 0)
(1.00215 -0.00283172 0)
(1.00249 -0.00292747 0)
(1.00283 -0.00299947 0)
(1.00316 -0.00305233 0)
(1.00349 -0.00308995 0)
(1.00381 -0.00311572 0)
(1.00413 -0.00313295 0)
(1.00444 -0.00314501 0)
(1.00474 -0.00315522 0)
(1.00503 -0.00316646 0)
(1.00532 -0.00318073 0)
(1.00559 -0.00319888 0)
(1.00585 -0.00322067 0)
(1.00611 -0.003245 0)
(1.00635 -0.00327034 0)
(1.00659 -0.00329508 0)
(1.00682 -0.00331779 0)
(1.00704 -0.00333737 0)
(1.00724 -0.00335305 0)
(1.00745 -0.0033644 0)
(1.00764 -0.00337128 0)
(1.00783 -0.00337378 0)
(1.00801 -0.00337219 0)
(1.00819 -0.00336694 0)
(1.00836 -0.00335854 0)
(1.00852 -0.00334752 0)
(1.00868 -0.00333445 0)
(1.00884 -0.00331983 0)
(1.00899 -0.00330413 0)
(1.00914 -0.00328781 0)
(1.00928 -0.00327122 0)
(1.00942 -0.0032547 0)
(1.00956 -0.00323849 0)
(1.00969 -0.00322275 0)
(1.00982 -0.00320753 0)
(1.00994 -0.00319277 0)
(1.01007 -0.0031783 0)
(1.01019 -0.00316392 0)
(1.0103 -0.00314927 0)
(1.01042 -0.00313414 0)
(1.01053 -0.0031181 0)
(1 -0.000249732 0)
(1.00007 -0.00073262 0)
(1.00021 -0.00118286 0)
(1.00041 -0.0015901 0)
(1.00066 -0.00194777 0)
(1.00095 -0.0022535 0)
(1.00127 -0.00250851 0)
(1.0016 -0.00271643 0)
(1.00195 -0.00288225 0)
(1.0023 -0.0030116 0)
(1.00265 -0.00311029 0)
(1.003 -0.00318383 0)
(1.00334 -0.00323708 0)
(1.00368 -0.00327418 0)
(1.00402 -0.00329873 0)
(1.00434 -0.0033142 0)
(1.00466 -0.00332406 0)
(1.00496 -0.00333167 0)
(1.00526 -0.00333996 0)
(1.00555 -0.00335094 0)
(1.00583 -0.00336552 0)
(1.0061 -0.00338353 0)
(1.00635 -0.00340395 0)
(1.0066 -0.00342535 0)
(1.00684 -0.0034462 0)
(1.00707 -0.00346513 0)
(1.00729 -0.00348108 0)
(1.0075 -0.00349333 0)
(1.0077 -0.00350146 0)
(1.0079 -0.00350535 0)
(1.00809 -0.00350508 0)
(1.00827 -0.00350093 0)
(1.00845 -0.00349331 0)
(1.00862 -0.00348272 0)
(1.00878 -0.00346968 0)
(1.00894 -0.00345472 0)
(1.0091 -0.00343833 0)
(1.00925 -0.00342098 0)
(1.0094 -0.00340307 0)
(1.00954 -0.00338499 0)
(1.00968 -0.00336702 0)
(1.00982 -0.00334942 0)
(1.00995 -0.00333233 0)
(1.01008 -0.0033158 0)
(1.01021 -0.00329978 0)
(1.01033 -0.00328408 0)
(1.01045 -0.00326854 0)
(1.01056 -0.00325279 0)
(1.01068 -0.00323662 0)
(1.01079 -0.00321963 0)
(1 -0.000267306 0)
(1.00008 -0.000784356 0)
(1.00023 -0.00126599 0)
(1.00044 -0.00170055 0)
(1.00071 -0.00208067 0)
(1.00102 -0.00240386 0)
(1.00136 -0.00267178 0)
(1.00172 -0.00288882 0)
(1.00208 -0.0030608 0)
(1.00245 -0.00319407 0)
(1.00282 -0.00329495 0)
(1.00318 -0.00336929 0)
(1.00354 -0.00342225 0)
(1.00389 -0.00345821 0)
(1.00423 -0.003481 0)
(1.00456 -0.00349423 0)
(1.00488 -0.00350147 0)
(1.0052 -0.00350614 0)
(1.0055 -0.00351118 0)
(1.00579 -0.00351863 0)
(1.00607 -0.00352945 0)
(1.00635 -0.00354352 0)
(1.00661 -0.00355992 0)
(1.00686 -0.00357729 0)
(1.0071 -0.00359417 0)
(1.00733 -0.00360926 0)
(1.00755 -0.00362155 0)
(1.00776 -0.00363034 0)
(1.00797 -0.00363524 0)
(1.00816 -0.00363611 0)
(1.00835 -0.00363306 0)
(1.00854 -0.00362635 0)
(1.00872 -0.00361636 0)
(1.00889 -0.00360359 0)
(1.00905 -0.00358853 0)
(1.00921 -0.00357169 0)
(1.00937 -0.00355354 0)
(1.00952 -0.00353454 0)
(1.00967 -0.00351507 0)
(1.00981 -0.00349549 0)
(1.00995 -0.0034761 0)
(1.01009 -0.00345712 0)
(1.01022 -0.0034387 0)
(1.01035 -0.00342087 0)
(1.01048 -0.0034036 0)
(1.0106 -0.00338671 0)
(1.01072 -0.00337002 0)
(1.01083 -0.00335318 0)
(1.01095 -0.003336 0)
(1.01106 -0.00331807 0)
(1 -0.000285917 0)
(1.00009 -0.000839047 0)
(1.00025 -0.00135361 0)
(1.00048 -0.00181644 0)
(1.00077 -0.00221936 0)
(1.00111 -0.00255981 0)
(1.00147 -0.00284004 0)
(1.00184 -0.0030654 0)
(1.00223 -0.00324269 0)
(1.00261 -0.00337904 0)
(1.00299 -0.00348129 0)
(1.00337 -0.00355569 0)
(1.00374 -0.00360768 0)
(1.0041 -0.00364188 0)
(1.00445 -0.00366235 0)
(1.00479 -0.00367287 0)
(1.00512 -0.00367711 0)
(1.00544 -0.00367851 0)
(1.00575 -0.00368002 0)
(1.00605 -0.00368372 0)
(1.00633 -0.00369059 0)
(1.00661 -0.00370058 0)
(1.00687 -0.00371285 0)
(1.00712 -0.00372611 0)
(1.00737 -0.00373897 0)
(1.0076 -0.00375018 0)
(1.00782 -0.00375877 0)
(1.00803 -0.00376409 0)
(1.00824 -0.00376574 0)
(1.00844 -0.0037636 0)
(1.00863 -0.00375777 0)
(1.00881 -0.00374849 0)
(1.00899 -0.00373615 0)
(1.00916 -0.0037212 0)
(1.00933 -0.00370412 0)
(1.00949 -0.00368541 0)
(1.00965 -0.00366552 0)
(1.0098 -0.00364488 0)
(1.00995 -0.00362386 0)
(1.01009 -0.00360281 0)
(1.01023 -0.003582 0)
(1.01037 -0.00356166 0)
(1.0105 -0.00354193 0)
(1.01063 -0.00352283 0)
(1.01076 -0.00350433 0)
(1.01088 -0.00348626 0)
(1.011 -0.00346844 0)
(1.01111 -0.00345054 0)
(1.01123 -0.00343237 0)
(1.01134 -0.00341352 0)
(1 -0.000305652 0)
(1.00009 -0.000896931 0)
(1.00027 -0.00144604 0)
(1.00052 -0.00193813 0)
(1.00084 -0.00236413 0)
(1.0012 -0.00272152 0)
(1.00158 -0.00301337 0)
(1.00198 -0.00324616 0)
(1.00238 -0.00342783 0)
(1.00279 -0.00356636 0)
(1.00318 -0.00366917 0)
(1.00357 -0.00374287 0)
(1.00395 -0.00379318 0)
(1.00433 -0.003825 0)
(1.00469 -0.00384262 0)
(1.00503 -0.00384998 0)
(1.00537 -0.00385083 0)
(1.00569 -0.00384865 0)
(1.00601 -0.00384638 0)
(1.00631 -0.00384611 0)
(1.0066 -0.00384887 0)
(1.00688 -0.00385467 0)
(1.00714 -0.00386271 0)
(1.0074 -0.00387179 0)
(1.00764 -0.00388058 0)
(1.00788 -0.00388788 0)
(1.0081 -0.00389276 0)
(1.00832 -0.00389459 0)
(1.00852 -0.00389299 0)
(1.00872 -0.00388784 0)
(1.00891 -0.00387923 0)
(1.0091 -0.0038674 0)
(1.00928 -0.00385271 0)
(1.00945 -0.0038356 0)
(1.00962 -0.00381652 0)
(1.00978 -0.00379596 0)
(1.00994 -0.00377434 0)
(1.01009 -0.00375207 0)
(1.01024 -0.00372952 0)
(1.01038 -0.00370701 0)
(1.01052 -0.00368481 0)
(1.01066 -0.00366313 0)
(1.01079 -0.0036421 0)
(1.01092 -0.00362175 0)
(1.01104 -0.00360205 0)
(1.01117 -0.00358282 0)
(1.01128 -0.0035639 0)
(1.0114 -0.00354495 0)
(1.01151 -0.0035258 0)
(1.01162 -0.00350606 0)
(1 -0.000326607 0)
(1.0001 -0.000958266 0)
(1.0003 -0.00154364 0)
(1.00057 -0.00206598 0)
(1.00091 -0.00251528 0)
(1.0013 -0.00288919 0)
(1.00171 -0.00319181 0)
(1.00213 -0.00343104 0)
(1.00255 -0.00361609 0)
(1.00297 -0.00375589 0)
(1.00338 -0.00385843 0)
(1.00379 -0.00393065 0)
(1.00418 -0.00397858 0)
(1.00456 -0.0040074 0)
(1.00493 -0.00402164 0)
(1.00529 -0.00402541 0)
(1.00563 -0.00402251 0)
(1.00596 -0.00401644 0)
(1.00628 -0.00401015 0)
(1.00658 -0.00400573 0)
(1.00688 -0.00400423 0)
(1.00716 -0.00400572 0)
(1.00743 -0.00400946 0)
(1.00768 -0.00401431 0)
(1.00793 -0.00401899 0)
(1.00817 -0.00402236 0)
(1.00839 -0.00402352 0)
(1.00861 -0.00402186 0)
(1.00882 -0.00401702 0)
(1.00902 -0.00400887 0)
(1.00921 -0.0039975 0)
(1.00939 -0.00398313 0)
(1.00957 -0.0039661 0)
(1.00974 -0.00394684 0)
(1.00991 -0.00392579 0)
(1.01007 -0.00390338 0)
(1.01023 -0.00388005 0)
(1.01038 -0.00385618 0)
(1.01053 -0.00383212 0)
(1.01068 -0.00380817 0)
(1.01082 -0.0037846 0)
(1.01095 -0.0037616 0)
(1.01108 -0.0037393 0)
(1.01121 -0.00371772 0)
(1.01134 -0.00369684 0)
(1.01146 -0.00367647 0)
(1.01158 -0.00365646 0)
(1.0117 -0.0036365 0)
(1.01181 -0.00361639 0)
(1.01192 -0.00359577 0)
(1.00001 -0.000348884 0)
(1.00011 -0.00102334 0)
(1.00032 -0.00164679 0)
(1.00062 -0.00220038 0)
(1.00099 -0.00267311 0)
(1.0014 -0.00306297 0)
(1.00184 -0.00337539 0)
(1.00229 -0.00361995 0)
(1.00273 -0.00380734 0)
(1.00317 -0.00394747 0)
(1.0036 -0.00404888 0)
(1.00401 -0.00411884 0)
(1.00442 -0.00416368 0)
(1.00481 -0.00418888 0)
(1.00519 -0.00419923 0)
(1.00555 -0.00419898 0)
(1.0059 -0.00419201 0)
(1.00624 -0.00418178 0)
(1.00656 -0.00417124 0)
(1.00687 -0.00416249 0)
(1.00716 -0.00415661 0)
(1.00745 -0.00415369 0)
(1.00772 -0.00415307 0)
(1.00798 -0.00415364 0)
(1.00823 -0.00415419 0)
(1.00846 -0.00415362 0)
(1.00869 -0.00415107 0)
(1.00891 -0.00414593 0)
(1.00912 -0.00413785 0)
(1.00932 -0.00412672 0)
(1.00951 -0.00411261 0)
(1.0097 -0.00409571 0)
(1.00988 -0.00407638 0)
(1.01005 -0.00405499 0)
(1.01022 -0.00403197 0)
(1.01038 -0.00400776 0)
(1.01054 -0.00398274 0)
(1.01069 -0.00395728 0)
(1.01084 -0.00393173 0)
(1.01098 -0.00390637 0)
(1.01112 -0.00388145 0)
(1.01126 -0.00385715 0)
(1.01139 -0.0038336 0)
(1.01152 -0.00381082 0)
(1.01164 -0.00378877 0)
(1.01177 -0.0037673 0)
(1.01189 -0.00374623 0)
(1.012 -0.00372527 0)
(1.01212 -0.00370422 0)
(1.01223 -0.00368275 0)
(1.00001 -0.000372599 0)
(1.00012 -0.00109245 0)
(1.00035 -0.00175592 0)
(1.00068 -0.00234174 0)
(1.00108 -0.00283791 0)
(1.00152 -0.00324299 0)
(1.00199 -0.00356408 0)
(1.00246 -0.00381278 0)
(1.00292 -0.00400142 0)
(1.00338 -0.00414092 0)
(1.00382 -0.00424033 0)
(1.00425 -0.00430724 0)
(1.00467 -0.00434827 0)
(1.00507 -0.00436925 0)
(1.00546 -0.00437522 0)
(1.00583 -0.00437057 0)
(1.00618 -0.00435919 0)
(1.00652 -0.00434456 0)
(1.00685 -0.00432957 0)
(1.00716 -0.00431633 0)
(1.00746 -0.00430595 0)
(1.00775 -0.00429855 0)
(1.00802 -0.00429351 0)
(1.00828 -0.00428979 0)
(1.00853 -0.0042862 0)
(1.00877 -0.00428169 0)
(1.009 -0.00427542 0)
(1.00922 -0.00426682 0)
(1.00943 -0.00425553 0)
(1.00963 -0.00424144 0)
(1.00982 -0.0042246 0)
(1.01001 -0.00420521 0)
(1.01019 -0.00418359 0)
(1.01036 -0.0041601 0)
(1.01053 -0.00413515 0)
(1.01069 -0.00410914 0)
(1.01085 -0.00408245 0)
(1.011 -0.00405544 0)
(1.01115 -0.00402842 0)
(1.0113 -0.00400167 0)
(1.01144 -0.00397542 0)
(1.01157 -0.00394986 0)
(1.01171 -0.00392508 0)
(1.01183 -0.00390112 0)
(1.01196 -0.00387794 0)
(1.01208 -0.00385537 0)
(1.0122 -0.00383327 0)
(1.01232 -0.00381133 0)
(1.01243 -0.00378937 0)
(1.01254 -0.00376706 0)
(1.00001 -0.000397876 0)
(1.00014 -0.00116593 0)
(1.00039 -0.00187145 0)
(1.00074 -0.00249048 0)
(1.00117 -0.00300996 0)
(1.00165 -0.00342934 0)
(1.00214 -0.00375783 0)
(1.00264 -0.00400938 0)
(1.00313 -0.00419815 0)
(1.0036 -0.00433605 0)
(1.00406 -0.00443258 0)
(1.00451 -0.00449563 0)
(1.00494 -0.00453215 0)
(1.00535 -0.00454832 0)
(1.00574 -0.00454944 0)
(1.00612 -0.00454002 0)
(1.00648 -0.00452396 0)
(1.00682 -0.00450467 0)
(1.00716 -0.00448504 0)
(1.00747 -0.00446718 0)
(1.00777 -0.00445221 0)
(1.00806 -0.00444027 0)
(1.00834 -0.00443078 0)
(1.0086 -0.00442274 0)
(1.00885 -0.004415 0)
(1.00909 -0.00440657 0)
(1.00932 -0.00439661 0)
(1.00954 -0.00438456 0)
(1.00975 -0.00437009 0)
(1.00995 -0.00435306 0)
(1.01015 -0.00433353 0)
(1.01033 -0.00431168 0)
(1.01051 -0.00428779 0)
(1.01069 -0.00426223 0)
(1.01086 -0.00423537 0)
(1.01102 -0.0042076 0)
(1.01118 -0.00417927 0)
(1.01133 -0.00415073 0)
(1.01148 -0.00412227 0)
(1.01162 -0.00409416 0)
(1.01176 -0.00406661 0)
(1.0119 -0.0040398 0)
(1.01203 -0.00401383 0)
(1.01216 -0.00398871 0)
(1.01228 -0.00396441 0)
(1.01241 -0.00394079 0)
(1.01253 -0.00391767 0)
(1.01264 -0.00389477 0)
(1.01275 -0.00387192 0)
(1.01286 -0.0038488 0)
(1.00001 -0.000424852 0)
(1.00015 -0.00124415 0)
(1.00042 -0.00199388 0)
(1.00081 -0.00264703 0)
(1.00127 -0.00318955 0)
(1.00179 -0.00362211 0)
(1.00231 -0.00395654 0)
(1.00284 -0.00420958 0)
(1.00335 -0.00439731 0)
(1.00384 -0.00453264 0)
(1.00432 -0.00462542 0)
(1.00477 -0.0046838 0)
(1.00521 -0.0047151 0)
(1.00564 -0.00472588 0)
(1.00604 -0.00472173 0)
(1.00642 -0.0047072 0)
(1.00679 -0.00468618 0)
(1.00714 -0.00466202 0)
(1.00747 -0.0046376 0)
(1.00779 -0.004615 0)
(1.0081 -0.00459535 0)
(1.00839 -0.00457882 0)
(1.00866 -0.00456486 0)
(1.00893 -0.00455249 0)
(1.00918 -0.00454063 0)
(1.00942 -0.00452828 0)
(1.00965 -0.00451465 0)
(1.00987 -0.0044992 0)
(1.01008 -0.00448157 0)
(1.01029 -0.00446165 0)
(1.01048 -0.00443945 0)
(1.01067 -0.00441517 0)
(1.01085 -0.00438905 0)
(1.01102 -0.00436145 0)
(1.01119 -0.00433271 0)
(1.01135 -0.0043032 0)
(1.01151 -0.00427327 0)
(1.01166 -0.00424323 0)
(1.01181 -0.00421335 0)
(1.01196 -0.0041839 0)
(1.0121 -0.00415508 0)
(1.01223 -0.00412705 0)
(1.01237 -0.0040999 0)
(1.01249 -0.00407366 0)
(1.01262 -0.00404828 0)
(1.01274 -0.00402361 0)
(1.01286 -0.0039995 0)
(1.01298 -0.00397568 0)
(1.01309 -0.00395196 0)
(1.0132 -0.00392803 0)
(1.00001 -0.000453678 0)
(1.00016 -0.00132751 0)
(1.00046 -0.0021237 0)
(1.00088 -0.00281183 0)
(1.00139 -0.00337691 0)
(1.00194 -0.0038213 0)
(1.0025 -0.00416008 0)
(1.00305 -0.00441315 0)
(1.00358 -0.00459871 0)
(1.00409 -0.0047305 0)
(1.00458 -0.00481863 0)
(1.00506 -0.00487151 0)
(1.00551 -0.00489689 0)
(1.00594 -0.00490176 0)
(1.00635 -0.00489192 0)
(1.00674 -0.00487199 0)
(1.00711 -0.00484575 0)
(1.00746 -0.00481653 0)
(1.0078 -0.00478716 0)
(1.00812 -0.00475972 0)
(1.00843 -0.00473534 0)
(1.00872 -0.0047142 0)
(1.009 -0.00469576 0)
(1.00927 -0.00467907 0)
(1.00952 -0.00466309 0)
(1.00976 -0.00464686 0)
(1.00999 -0.0046296 0)
(1.01022 -0.00461076 0)
(1.01043 -0.00459002 0)
(1.01063 -0.00456723 0)
(1.01082 -0.00454242 0)
(1.01101 -0.00451573 0)
(1.01119 -0.00448743 0)
(1.01137 -0.00445782 0)
(1.01154 -0.00442723 0)
(1.0117 -0.00439603 0)
(1.01186 -0.00436451 0)
(1.01201 -0.00433299 0)
(1.01216 -0.00430174 0)
(1.0123 -0.00427098 0)
(1.01244 -0.00424091 0)
(1.01258 -0.00421169 0)
(1.01271 -0.0041834 0)
(1.01284 -0.00415605 0)
(1.01296 -0.00412961 0)
(1.01309 -0.00410393 0)
(1.01321 -0.00407885 0)
(1.01332 -0.00405412 0)
(1.01343 -0.00402956 0)
(1.01354 -0.00400485 0)
(1.00001 -0.000484522 0)
(1.00018 -0.00141644 0)
(1.00051 -0.00226146 0)
(1.00097 -0.00298535 0)
(1.00151 -0.00357228 0)
(1.0021 -0.00402691 0)
(1.00269 -0.00436825 0)
(1.00327 -0.00461988 0)
(1.00383 -0.00480211 0)
(1.00436 -0.00492939 0)
(1.00487 -0.00501198 0)
(1.00535 -0.00505854 0)
(1.00581 -0.00507731 0)
(1.00625 -0.00507576 0)
(1.00667 -0.00505988 0)
(1.00706 -0.00503425 0)
(1.00744 -0.00500258 0)
(1.0078 -0.00496812 0)
(1.00814 -0.00493368 0)
(1.00847 -0.00490132 0)
(1.00878 -0.00487217 0)
(1.00907 -0.0048464 0)
(1.00935 -0.00482347 0)
(1.00962 -0.00480248 0)
(1.00987 -0.00478241 0)
(1.01012 -0.00476233 0)
(1.01035 -0.00474147 0)
(1.01057 -0.00471931 0)
(1.01078 -0.00469549 0)
(1.01098 -0.00466988 0)
(1.01118 -0.00464249 0)
(1.01137 -0.00461345 0)
(1.01155 -0.00458299 0)
(1.01172 -0.0045514 0)
(1.01189 -0.00451901 0)
(1.01205 -0.00448613 0)
(1.01221 -0.00445307 0)
(1.01237 -0.00442011 0)
(1.01251 -0.0043875 0)
(1.01266 -0.00435546 0)
(1.0128 -0.00432418 0)
(1.01293 -0.00429379 0)
(1.01307 -0.00426438 0)
(1.0132 -0.00423596 0)
(1.01332 -0.00420848 0)
(1.01344 -0.00418181 0)
(1.01356 -0.0041558 0)
(1.01368 -0.00413018 0)
(1.01379 -0.00410479 0)
(1.0139 -0.00407933 0)
(1.00001 -0.000517566 0)
(1.0002 -0.00151141 0)
(1.00056 -0.00240775 0)
(1.00106 -0.00316806 0)
(1.00165 -0.00377586 0)
(1.00228 -0.00423884 0)
(1.00291 -0.00458084 0)
(1.00351 -0.0048295 0)
(1.00409 -0.00500728 0)
(1.00464 -0.00512911 0)
(1.00516 -0.00520523 0)
(1.00566 -0.00524462 0)
(1.00614 -0.00525615 0)
(1.00658 -0.00524771 0)
(1.00701 -0.00522546 0)
(1.00741 -0.00519388 0)
(1.00779 -0.00515657 0)
(1.00815 -0.00511671 0)
(1.0085 -0.0050771 0)
(1.00882 -0.00503978 0)
(1.00913 -0.00500582 0)
(1.00943 -0.00497541 0)
(1.00971 -0.00494801 0)
(1.00998 -0.00492275 0)
(1.01024 -0.00489863 0)
(1.01048 -0.00487474 0)
(1.01071 -0.00485033 0)
(1.01094 -0.00482488 0)
(1.01115 -0.00479804 0)
(1.01135 -0.00476965 0)
(1.01155 -0.00473972 0)
(1.01174 -0.00470836 0)
(1.01192 -0.00467579 0)
(1.01209 -0.00464227 0)
(1.01226 -0.00460811 0)
(1.01242 -0.00457359 0)
(1.01258 -0.00453902 0)
(1.01273 -0.00450465 0)
(1.01288 -0.00447071 0)
(1.01303 -0.00443742 0)
(1.01317 -0.00440495 0)
(1.0133 -0.00437343 0)
(1.01344 -0.00434293 0)
(1.01356 -0.00431346 0)
(1.01369 -0.00428498 0)
(1.01381 -0.00425734 0)
(1.01393 -0.00423041 0)
(1.01405 -0.00420394 0)
(1.01416 -0.00417774 0)
(1.01427 -0.00415155 0)
(1.00001 -0.000553015 0)
(1.00022 -0.00161295 0)
(1.00061 -0.00256319 0)
(1.00116 -0.00336041 0)
(1.0018 -0.00398778 0)
(1.00247 -0.00445697 0)
(1.00314 -0.00479755 0)
(1.00377 -0.00504175 0)
(1.00437 -0.005214 0)
(1.00494 -0.00532941 0)
(1.00548 -0.00539812 0)
(1.00599 -0.00542953 0)
(1.00647 -0.00543317 0)
(1.00693 -0.00541744 0)
(1.00736 -0.00538853 0)
(1.00776 -0.00535078 0)
(1.00815 -0.00530764 0)
(1.00852 -0.00526226 0)
(1.00886 -0.00521739 0)
(1.00919 -0.00517506 0)
(1.00951 -0.00513629 0)
(1.0098 -0.00510125 0)
(1.01009 -0.0050694 0)
(1.01036 -0.0050399 0)
(1.01061 -0.00501177 0)
(1.01086 -0.00498412 0)
(1.01109 -0.00495622 0)
(1.01131 -0.00492753 0)
(1.01153 -0.00489771 0)
(1.01173 -0.0048666 0)
(1.01193 -0.00483418 0)
(1.01212 -0.00480055 0)
(1.0123 -0.00476591 0)
(1.01247 -0.00473049 0)
(1.01264 -0.00469459 0)
(1.0128 -0.00465848 0)
(1.01296 -0.00462243 0)
(1.01311 -0.00458668 0)
(1.01326 -0.00455145 0)
(1.01341 -0.00451694 0)
(1.01355 -0.00448331 0)
(1.01368 -0.00445068 0)
(1.01382 -0.00441912 0)
(1.01394 -0.00438863 0)
(1.01407 -0.00435916 0)
(1.01419 -0.00433059 0)
(1.01431 -0.00430277 0)
(1.01443 -0.00427546 0)
(1.01454 -0.00424848 0)
(1.01465 -0.00422157 0)
(1.00001 -0.000591094 0)
(1.00024 -0.00172163 0)
(1.00067 -0.00272845 0)
(1.00127 -0.00356289 0)
(1.00196 -0.00420817 0)
(1.00268 -0.00468109 0)
(1.00338 -0.00501809 0)
(1.00404 -0.00525635 0)
(1.00466 -0.00542204 0)
(1.00525 -0.00553008 0)
(1.00581 -0.00559041 0)
(1.00633 -0.00561299 0)
(1.00683 -0.00560819 0)
(1.00729 -0.00558481 0)
(1.00772 -0.00554899 0)
(1.00814 -0.00550485 0)
(1.00852 -0.00545572 0)
(1.00889 -0.0054047 0)
(1.00924 -0.00535452 0)
(1.00958 -0.00530716 0)
(1.00989 -0.00526359 0)
(1.01019 -0.00522393 0)
(1.01048 -0.00518767 0)
(1.01075 -0.00515397 0)
(1.011 -0.00512188 0)
(1.01125 -0.00509053 0)
(1.01148 -0.00505918 0)
(1.01171 -0.00502731 0)
(1.01192 -0.00499457 0)
(1.01212 -0.00496079 0)
(1.01232 -0.00492593 0)
(1.01251 -0.00489008 0)
(1.01269 -0.0048534 0)
(1.01286 -0.00481614 0)
(1.01303 -0.00477854 0)
(1.0132 -0.00474087 0)
(1.01335 -0.00470337 0)
(1.01351 -0.00466627 0)
(1.01366 -0.00462979 0)
(1.0138 -0.00459409 0)
(1.01394 -0.00455933 0)
(1.01408 -0.00452562 0)
(1.01421 -0.00449303 0)
(1.01434 -0.00446154 0)
(1.01446 -0.00443112 0)
(1.01459 -0.00440164 0)
(1.0147 -0.00437295 0)
(1.01482 -0.00434482 0)
(1.01493 -0.00431708 0)
(1.01504 -0.00428948 0)
(1.00001 -0.000632053 0)
(1.00026 -0.00183807 0)
(1.00074 -0.00290424 0)
(1.00139 -0.00377595 0)
(1.00214 -0.00443706 0)
(1.00291 -0.00491094 0)
(1.00365 -0.00524211 0)
(1.00434 -0.00547302 0)
(1.00498 -0.00563118 0)
(1.00558 -0.00573086 0)
(1.00615 -0.00578181 0)
(1.00669 -0.00579476 0)
(1.00719 -0.005781 0)
(1.00767 -0.00574967 0)
(1.00811 -0.00570672 0)
(1.00852 -0.00565601 0)
(1.00892 -0.00560074 0)
(1.00929 -0.005544 0)
(1.00964 -0.00548848 0)
(1.00998 -0.00543607 0)
(1.01029 -0.00538771 0)
(1.01059 -0.00534347 0)
(1.01088 -0.00530284 0)
(1.01115 -0.005265 0)
(1.01141 -0.00522901 0)
(1.01165 -0.00519401 0)
(1.01189 -0.00515928 0)
(1.01211 -0.00512429 0)
(1.01233 -0.00508869 0)
(1.01253 -0.00505228 0)
(1.01273 -0.00501503 0)
(1.01291 -0.00497701 0)
(1.0131 -0.00493835 0)
(1.01327 -0.00489928 0)
(1.01344 -0.00486002 0)
(1.0136 -0.00482082 0)
(1.01376 -0.00478192 0)
(1.01391 -0.00474351 0)
(1.01406 -0.0047058 0)
(1.01421 -0.00466894 0)
(1.01435 -0.00463309 0)
(1.01448 -0.00459833 0)
(1.01462 -0.00456472 0)
(1.01474 -0.00453227 0)
(1.01487 -0.00450093 0)
(1.01499 -0.00447056 0)
(1.01511 -0.00444102 0)
(1.01523 -0.0044121 0)
(1.01534 -0.00438362 0)
(1.01545 -0.00435534 0)
(1.00001 -0.000676167 0)
(1.00029 -0.00196295 0)
(1.00081 -0.00309131 0)
(1.00153 -0.00400004 0)
(1.00234 -0.00467442 0)
(1.00316 -0.00514616 0)
(1.00393 -0.00546923 0)
(1.00465 -0.00569151 0)
(1.00531 -0.0058412 0)
(1.00593 -0.00593151 0)
(1.00652 -0.00597204 0)
(1.00707 -0.0059746 0)
(1.00758 -0.00595144 0)
(1.00806 -0.0059119 0)
(1.0085 -0.00586163 0)
(1.00893 -0.00580419 0)
(1.00932 -0.00574266 0)
(1.0097 -0.00568013 0)
(1.01005 -0.00561925 0)
(1.01039 -0.00556182 0)
(1.01071 -0.00550869 0)
(1.01101 -0.00545991 0)
(1.0113 -0.00541496 0)
(1.01157 -0.00537303 0)
(1.01183 -0.0053332 0)
(1.01207 -0.00529462 0)
(1.01231 -0.00525658 0)
(1.01253 -0.00521853 0)
(1.01275 -0.00518012 0)
(1.01295 -0.00514115 0)
(1.01315 -0.00510157 0)
(1.01333 -0.00506141 0)
(1.01352 -0.00502082 0)
(1.01369 -0.00497998 0)
(1.01386 -0.00493911 0)
(1.01402 -0.00489843 0)
(1.01418 -0.00485814 0)
(1.01434 -0.00481846 0)
(1.01448 -0.00477955 0)
(1.01463 -0.00474157 0)
(1.01477 -0.00470465 0)
(1.0149 -0.00466887 0)
(1.01504 -0.00463429 0)
(1.01517 -0.0046009 0)
(1.01529 -0.00456865 0)
(1.01541 -0.00453742 0)
(1.01553 -0.00450706 0)
(1.01565 -0.00447737 0)
(1.01576 -0.00444817 0)
(1.01587 -0.00441923 0)
(1.00002 -0.000723747 0)
(1.00032 -0.00209704 0)
(1.0009 -0.00329048 0)
(1.00168 -0.00423556 0)
(1.00255 -0.00492013 0)
(1.00342 -0.00538635 0)
(1.00424 -0.00569907 0)
(1.00498 -0.00591158 0)
(1.00566 -0.0060519 0)
(1.0063 -0.00613174 0)
(1.0069 -0.00616081 0)
(1.00746 -0.00615226 0)
(1.00799 -0.00611934 0)
(1.00847 -0.00607141 0)
(1.00892 -0.00601365 0)
(1.00934 -0.00594931 0)
(1.00974 -0.00588142 0)
(1.01012 -0.00581307 0)
(1.01048 -0.00574683 0)
(1.01082 -0.00568441 0)
(1.01114 -0.00562656 0)
(1.01144 -0.00557328 0)
(1.01173 -0.00552406 0)
(1.012 -0.00547811 0)
(1.01226 -0.00543452 0)
(1.01251 -0.00539243 0)
(1.01274 -0.00535113 0)
(1.01297 -0.00531008 0)
(1.01318 -0.00526893 0)
(1.01338 -0.00522746 0)
(1.01358 -0.00518559 0)
(1.01377 -0.00514336 0)
(1.01395 -0.00510088 0)
(1.01413 -0.00505832 0)
(1.0143 -0.00501587 0)
(1.01446 -0.00497374 0)
(1.01462 -0.00493212 0)
(1.01477 -0.0048912 0)
(1.01492 -0.00485113 0)
(1.01506 -0.00481205 0)
(1.0152 -0.00477409 0)
(1.01534 -0.00473732 0)
(1.01547 -0.00470178 0)
(1.0156 -0.00466748 0)
(1.01573 -0.00463436 0)
(1.01585 -0.00460229 0)
(1.01597 -0.00457114 0)
(1.01608 -0.0045407 0)
(1.0162 -0.0045108 0)
(1.01631 -0.00448122 0)
(1.00002 -0.000775133 0)
(1.00036 -0.00224115 0)
(1.00099 -0.00350259 0)
(1.00184 -0.00448289 0)
(1.00279 -0.00517396 0)
(1.00371 -0.00563103 0)
(1.00456 -0.00593126 0)
(1.00533 -0.006133 0)
(1.00603 -0.00626306 0)
(1.00669 -0.00633128 0)
(1.00731 -0.00634782 0)
(1.00788 -0.00632752 0)
(1.00841 -0.00628457 0)
(1.0089 -0.0062281 0)
(1.00935 -0.00616269 0)
(1.00978 -0.00609131 0)
(1.01018 -0.00601699 0)
(1.01056 -0.00594281 0)
(1.01092 -0.00587125 0)
(1.01126 -0.00580387 0)
(1.01158 -0.00574133 0)
(1.01189 -0.00568361 0)
(1.01218 -0.0056302 0)
(1.01245 -0.0055803 0)
(1.01271 -0.00553301 0)
(1.01296 -0.00548748 0)
(1.01319 -0.005443 0)
(1.01342 -0.00539903 0)
(1.01363 -0.00535519 0)
(1.01384 -0.00531127 0)
(1.01403 -0.00526718 0)
(1.01422 -0.00522293 0)
(1.0144 -0.00517861 0)
(1.01458 -0.00513437 0)
(1.01475 -0.00509039 0)
(1.01491 -0.00504685 0)
(1.01507 -0.00500393 0)
(1.01522 -0.00496179 0)
(1.01537 -0.00492059 0)
(1.01552 -0.00488045 0)
(1.01566 -0.00484148 0)
(1.01579 -0.00480375 0)
(1.01593 -0.00476729 0)
(1.01605 -0.0047321 0)
(1.01618 -0.00469813 0)
(1.0163 -0.00466524 0)
(1.01642 -0.00463332 0)
(1.01654 -0.00460216 0)
(1.01665 -0.00457158 0)
(1.01676 -0.00454138 0)
(1.00002 -0.000830708 0)
(1.00039 -0.0023962 0)
(1.00109 -0.00372853 0)
(1.00202 -0.00474233 0)
(1.00304 -0.0054356 0)
(1.00402 -0.00587964 0)
(1.00491 -0.00616544 0)
(1.0057 -0.00635559 0)
(1.00642 -0.00647447 0)
(1.0071 -0.00652981 0)
(1.00773 -0.00653277 0)
(1.00831 -0.00650019 0)
(1.00885 -0.00644703 0)
(1.00934 -0.00638188 0)
(1.0098 -0.00630868 0)
(1.01024 -0.00623015 0)
(1.01064 -0.00614936 0)
(1.01102 -0.00606936 0)
(1.01138 -0.00599251 0)
(1.01172 -0.00592022 0)
(1.01205 -0.00585306 0)
(1.01235 -0.00579096 0)
(1.01264 -0.00573343 0)
(1.01292 -0.00567965 0)
(1.01318 -0.00562875 0)
(1.01342 -0.00557985 0)
(1.01366 -0.00553226 0)
(1.01388 -0.00548543 0)
(1.0141 -0.00543897 0)
(1.0143 -0.00539267 0)
(1.0145 -0.00534641 0)
(1.01469 -0.00530018 0)
(1.01487 -0.00525407 0)
(1.01505 -0.0052082 0)
(1.01522 -0.00516272 0)
(1.01538 -0.00511781 0)
(1.01554 -0.00507363 0)
(1.01569 -0.00503032 0)
(1.01584 -0.00498802 0)
(1.01599 -0.00494685 0)
(1.01613 -0.0049069 0)
(1.01626 -0.00486823 0)
(1.01639 -0.00483088 0)
(1.01652 -0.00479483 0)
(1.01665 -0.00476003 0)
(1.01677 -0.00472636 0)
(1.01689 -0.00469368 0)
(1.01701 -0.00466181 0)
(1.01712 -0.00463058 0)
(1.01723 -0.00459978 0)
(1.00002 -0.000890896 0)
(1.00044 -0.00256319 0)
(1.00121 -0.00396921 0)
(1.00223 -0.0050141 0)
(1.00332 -0.00570459 0)
(1.00436 -0.00613161 0)
(1.00528 -0.00640129 0)
(1.00609 -0.00657919 0)
(1.00684 -0.00668587 0)
(1.00753 -0.00672698 0)
(1.00818 -0.00671536 0)
(1.00877 -0.0066701 0)
(1.00931 -0.00660663 0)
(1.00981 -0.0065327 0)
(1.01027 -0.00645157 0)
(1.01071 -0.0063658 0)
(1.01112 -0.00627852 0)
(1.0115 -0.00619274 0)
(1.01186 -0.00611066 0)
(1.0122 -0.00603351 0)
(1.01253 -0.00596178 0)
(1.01283 -0.00589539 0)
(1.01312 -0.0058338 0)
(1.0134 -0.00577624 0)
(1.01366 -0.00572179 0)
(1.01391 -0.00566961 0)
(1.01414 -0.00561898 0)
(1.01437 -0.00556935 0)
(1.01458 -0.00552035 0)
(1.01479 -0.00547172 0)
(1.01499 -0.00542335 0)
(1.01518 -0.0053752 0)
(1.01536 -0.00532734 0)
(1.01553 -0.00527988 0)
(1.0157 -0.00523296 0)
(1.01587 -0.00518672 0)
(1.01602 -0.0051413 0)
(1.01618 -0.00509686 0)
(1.01633 -0.00505349 0)
(1.01647 -0.00501132 0)
(1.01661 -0.00497041 0)
(1.01675 -0.00493084 0)
(1.01688 -0.00489262 0)
(1.01701 -0.00485573 0)
(1.01714 -0.00482013 0)
(1.01726 -0.00478569 0)
(1.01738 -0.00475229 0)
(1.01749 -0.00471974 0)
(1.01761 -0.00468787 0)
(1.01772 -0.00465648 0)
(1.00002 -0.000956171 0)
(1.00048 -0.00274323 0)
(1.00134 -0.0042256 0)
(1.00245 -0.00529831 0)
(1.00363 -0.00598034 0)
(1.00472 -0.00638633 0)
(1.00568 -0.00663854 0)
(1.00651 -0.00680368 0)
(1.00727 -0.00689701 0)
(1.00799 -0.00692244 0)
(1.00864 -0.00689532 0)
(1.00924 -0.00683711 0)
(1.00979 -0.00676328 0)
(1.0103 -0.00668049 0)
(1.01076 -0.00659129 0)
(1.0112 -0.00649821 0)
(1.01161 -0.00640446 0)
(1.012 -0.00631297 0)
(1.01236 -0.00622571 0)
(1.0127 -0.00614377 0)
(1.01303 -0.00606755 0)
(1.01334 -0.00599693 0)
(1.01363 -0.00593139 0)
(1.0139 -0.00587012 0)
(1.01416 -0.00581221 0)
(1.01441 -0.00575682 0)
(1.01465 -0.00570322 0)
(1.01487 -0.00565088 0)
(1.01509 -0.00559939 0)
(1.01529 -0.0055485 0)
(1.01549 -0.00549807 0)
(1.01568 -0.00544806 0)
(1.01586 -0.0053985 0)
(1.01604 -0.0053495 0)
(1.01621 -0.00530116 0)
(1.01637 -0.00525363 0)
(1.01653 -0.00520702 0)
(1.01668 -0.00516147 0)
(1.01683 -0.00511707 0)
(1.01698 -0.00507392 0)
(1.01712 -0.00503209 0)
(1.01726 -0.00499164 0)
(1.01739 -0.00495258 0)
(1.01752 -0.00491488 0)
(1.01764 -0.0048785 0)
(1.01777 -0.00484332 0)
(1.01788 -0.00480921 0)
(1.018 -0.004776 0)
(1.01811 -0.00474351 0)
(1.01822 -0.00471155 0)
(1.00003 -0.00102706 0)
(1.00054 -0.00293755 0)
(1.00148 -0.00449867 0)
(1.0027 -0.00559493 0)
(1.00396 -0.00626215 0)
(1.00511 -0.00664318 0)
(1.00609 -0.00687701 0)
(1.00695 -0.00702892 0)
(1.00773 -0.00710756 0)
(1.00846 -0.00711581 0)
(1.00913 -0.00707241 0)
(1.00974 -0.00700113 0)
(1.0103 -0.00691695 0)
(1.0108 -0.0068252 0)
(1.01127 -0.00672781 0)
(1.01172 -0.00662738 0)
(1.01213 -0.00652722 0)
(1.01252 -0.00643008 0)
(1.01288 -0.00633772 0)
(1.01322 -0.00625106 0)
(1.01355 -0.00617042 0)
(1.01386 -0.00609567 0)
(1.01415 -0.00602625 0)
(1.01442 -0.00596136 0)
(1.01468 -0.00590008 0)
(1.01493 -0.00584155 0)
(1.01517 -0.00578508 0)
(1.0154 -0.00573008 0)
(1.01561 -0.00567617 0)
(1.01582 -0.00562308 0)
(1.01601 -0.00557065 0)
(1.0162 -0.00551882 0)
(1.01639 -0.00546762 0)
(1.01656 -0.00541711 0)
(1.01673 -0.00536741 0)
(1.0169 -0.00531862 0)
(1.01706 -0.00527085 0)
(1.01721 -0.00522423 0)
(1.01736 -0.00517882 0)
(1.0175 -0.00513473 0)
(1.01765 -0.00509201 0)
(1.01778 -0.00505071 0)
(1.01792 -0.00501083 0)
(1.01804 -0.00497235 0)
(1.01817 -0.00493522 0)
(1.01829 -0.00489932 0)
(1.01841 -0.00486452 0)
(1.01853 -0.00483066 0)
(1.01864 -0.00479757 0)
(1.01875 -0.00476506 0)
(1.00003 -0.00110416 0)
(1.0006 -0.00314749 0)
(1.00164 -0.0047894 0)
(1.00297 -0.00590382 0)
(1.00433 -0.00654919 0)
(1.00553 -0.00690162 0)
(1.00654 -0.00711656 0)
(1.00742 -0.00725477 0)
(1.00822 -0.00731718 0)
(1.00897 -0.00730671 0)
(1.00965 -0.00724642 0)
(1.01026 -0.00716208 0)
(1.01082 -0.00706759 0)
(1.01133 -0.00696676 0)
(1.01181 -0.00686108 0)
(1.01225 -0.00675331 0)
(1.01267 -0.00664681 0)
(1.01305 -0.00654412 0)
(1.01342 -0.00644674 0)
(1.01376 -0.00635543 0)
(1.01409 -0.00627046 0)
(1.0144 -0.00619166 0)
(1.01469 -0.00611847 0)
(1.01497 -0.00605004 0)
(1.01523 -0.00598546 0)
(1.01548 -0.00592389 0)
(1.01571 -0.0058646 0)
(1.01594 -0.00580704 0)
(1.01616 -0.00575077 0)
(1.01636 -0.00569554 0)
(1.01656 -0.00564116 0)
(1.01675 -0.00558757 0)
(1.01693 -0.00553476 0)
(1.01711 -0.0054828 0)
(1.01728 -0.00543177 0)
(1.01744 -0.00538176 0)
(1.0176 -0.00533287 0)
(1.01776 -0.00528521 0)
(1.01791 -0.00523883 0)
(1.01805 -0.00519383 0)
(1.01819 -0.00515024 0)
(1.01833 -0.00510811 0)
(1.01846 -0.00506744 0)
(1.01859 -0.0050282 0)
(1.01872 -0.00499034 0)
(1.01884 -0.00495374 0)
(1.01896 -0.00491828 0)
(1.01908 -0.00488379 0)
(1.01919 -0.00485011 0)
(1.0193 -0.00481708 0)
(1.00003 -0.00118814 0)
(1.00067 -0.00337456 0)
(1.00182 -0.00509877 0)
(1.00327 -0.00622461 0)
(1.00472 -0.0068405 0)
(1.00597 -0.00716114 0)
(1.00701 -0.00735717 0)
(1.00791 -0.00748108 0)
(1.00873 -0.00752544 0)
(1.0095 -0.00749477 0)
(1.01019 -0.00741719 0)
(1.01081 -0.00731992 0)
(1.01137 -0.00721515 0)
(1.01189 -0.00710513 0)
(1.01236 -0.00699108 0)
(1.01281 -0.00687603 0)
(1.01323 -0.00676328 0)
(1.01362 -0.00665513 0)
(1.01398 -0.00655281 0)
(1.01433 -0.00645694 0)
(1.01465 -0.00636773 0)
(1.01496 -0.00628499 0)
(1.01526 -0.0062081 0)
(1.01553 -0.00613623 0)
(1.0158 -0.00606845 0)
(1.01604 -0.00600391 0)
(1.01628 -0.00594189 0)
(1.01651 -0.00588182 0)
(1.01672 -0.00582327 0)
(1.01693 -0.00576595 0)
(1.01713 -0.00570968 0)
(1.01732 -0.00565438 0)
(1.0175 -0.00560002 0)
(1.01768 -0.00554664 0)
(1.01785 -0.00549432 0)
(1.01801 -0.00544313 0)
(1.01817 -0.00539316 0)
(1.01833 -0.00534448 0)
(1.01848 -0.00529716 0)
(1.01862 -0.00525127 0)
(1.01877 -0.00520685 0)
(1.0189 -0.00516391 0)
(1.01904 -0.00512248 0)
(1.01917 -0.0050825 0)
(1.01929 -0.00504393 0)
(1.01942 -0.00500666 0)
(1.01954 -0.00497055 0)
(1.01965 -0.00493546 0)
(1.01977 -0.00490121 0)
(1.01988 -0.00486766 0)
(1.00004 -0.00127975 0)
(1.00074 -0.00362039 0)
(1.00202 -0.00542767 0)
(1.0036 -0.00655674 0)
(1.00515 -0.00713504 0)
(1.00645 -0.00742137 0)
(1.00751 -0.00759886 0)
(1.00843 -0.00770763 0)
(1.00927 -0.00773189 0)
(1.01005 -0.00767965 0)
(1.01075 -0.00758461 0)
(1.01138 -0.00747464 0)
(1.01195 -0.00735961 0)
(1.01246 -0.00724027 0)
(1.01294 -0.00711782 0)
(1.01339 -0.00699555 0)
(1.01381 -0.00687668 0)
(1.0142 -0.00676317 0)
(1.01457 -0.006656 0)
(1.01492 -0.00655565 0)
(1.01524 -0.00646231 0)
(1.01555 -0.00637571 0)
(1.01584 -0.00629523 0)
(1.01612 -0.00622001 0)
(1.01639 -0.00614911 0)
(1.01664 -0.00608169 0)
(1.01687 -0.00601701 0)
(1.0171 -0.0059545 0)
(1.01732 -0.00589373 0)
(1.01752 -0.00583439 0)
(1.01772 -0.00577629 0)
(1.01791 -0.00571932 0)
(1.0181 -0.00566346 0)
(1.01827 -0.00560871 0)
(1.01844 -0.00555514 0)
(1.01861 -0.0055028 0)
(1.01877 -0.00545177 0)
(1.01892 -0.00540211 0)
(1.01908 -0.00535389 0)
(1.01922 -0.00530714 0)
(1.01936 -0.0052619 0)
(1.0195 -0.00521819 0)
(1.01963 -0.00517601 0)
(1.01976 -0.00513533 0)
(1.01989 -0.00509607 0)
(1.02002 -0.00505814 0)
(1.02014 -0.00502141 0)
(1.02025 -0.00498573 0)
(1.02037 -0.00495093 0)
(1.02048 -0.00491687 0)
(1.00004 -0.00137982 0)
(1.00083 -0.00388682 0)
(1.00225 -0.00577689 0)
(1.00397 -0.00689941 0)
(1.00561 -0.00743172 0)
(1.00696 -0.00768207 0)
(1.00804 -0.00784169 0)
(1.00898 -0.00793415 0)
(1.00984 -0.00793603 0)
(1.01064 -0.00786105 0)
(1.01135 -0.00774863 0)
(1.01198 -0.00762624 0)
(1.01255 -0.00750092 0)
(1.01307 -0.00737213 0)
(1.01355 -0.00724129 0)
(1.014 -0.00711192 0)
(1.01442 -0.00698707 0)
(1.01481 -0.0068683 0)
(1.01518 -0.00675636 0)
(1.01553 -0.00665165 0)
(1.01586 -0.00655426 0)
(1.01617 -0.00646391 0)
(1.01646 -0.00637994 0)
(1.01674 -0.00630146 0)
(1.017 -0.00622753 0)
(1.01725 -0.00615731 0)
(1.01749 -0.00609005 0)
(1.01772 -0.00602517 0)
(1.01794 -0.00596225 0)
(1.01814 -0.00590095 0)
(1.01834 -0.00584106 0)
(1.01853 -0.00578248 0)
(1.01872 -0.00572515 0)
(1.01889 -0.00566908 0)
(1.01907 -0.00561429 0)
(1.01923 -0.00556084 0)
(1.01939 -0.00550879 0)
(1.01955 -0.00545819 0)
(1.0197 -0.00540907 0)
(1.01984 -0.00536149 0)
(1.01999 -0.00531547 0)
(1.02013 -0.00527101 0)
(1.02026 -0.00522811 0)
(1.02039 -0.00518674 0)
(1.02052 -0.00514682 0)
(1.02064 -0.00510825 0)
(1.02076 -0.00507092 0)
(1.02088 -0.00503466 0)
(1.02099 -0.00499934 0)
(1.02111 -0.00496479 0)
(1.00005 -0.00148933 0)
(1.00093 -0.00417582 0)
(1.0025 -0.0061471 0)
(1.00438 -0.00725157 0)
(1.00611 -0.00772945 0)
(1.0075 -0.00794313 0)
(1.0086 -0.00808575 0)
(1.00955 -0.00816027 0)
(1.01044 -0.00813736 0)
(1.01125 -0.00803873 0)
(1.01197 -0.00790924 0)
(1.01261 -0.00777471 0)
(1.01318 -0.00763905 0)
(1.0137 -0.00750071 0)
(1.01419 -0.00736152 0)
(1.01464 -0.00722521 0)
(1.01506 -0.0070945 0)
(1.01545 -0.00697058 0)
(1.01582 -0.00685398 0)
(1.01617 -0.00674499 0)
(1.0165 -0.00664367 0)
(1.01681 -0.00654968 0)
(1.0171 -0.00646231 0)
(1.01738 -0.00638066 0)
(1.01765 -0.00630379 0)
(1.0179 -0.00623084 0)
(1.01814 -0.00616108 0)
(1.01836 -0.00609391 0)
(1.01858 -0.00602889 0)
(1.01879 -0.00596569 0)
(1.01899 -0.00590408 0)
(1.01918 -0.00584393 0)
(1.01937 -0.00578518 0)
(1.01954 -0.00572782 0)
(1.01972 -0.00567185 0)
(1.01988 -0.00561733 0)
(1.02004 -0.00556429 0)
(1.0202 -0.00551277 0)
(1.02035 -0.0054628 0)
(1.0205 -0.00541441 0)
(1.02064 -0.00536763 0)
(1.02078 -0.00532245 0)
(1.02091 -0.00527885 0)
(1.02105 -0.00523681 0)
(1.02117 -0.00519624 0)
(1.0213 -0.00515706 0)
(1.02142 -0.00511914 0)
(1.02154 -0.00508233 0)
(1.02165 -0.00504649 0)
(1.02176 -0.00501146 0)
(1.00005 -0.00160937 0)
(1.00104 -0.00448954 0)
(1.00278 -0.00653873 0)
(1.00482 -0.00761195 0)
(1.00665 -0.00802724 0)
(1.00808 -0.00820464 0)
(1.00919 -0.0083311 0)
(1.01017 -0.00838551 0)
(1.01107 -0.00833536 0)
(1.0119 -0.00821253 0)
(1.01262 -0.00806646 0)
(1.01326 -0.00792008 0)
(1.01384 -0.00777395 0)
(1.01436 -0.00762599 0)
(1.01485 -0.00747855 0)
(1.0153 -0.00733547 0)
(1.01573 -0.00719905 0)
(1.01612 -0.00707009 0)
(1.01649 -0.00694892 0)
(1.01684 -0.00683577 0)
(1.01717 -0.00673063 0)
(1.01748 -0.0066331 0)
(1.01778 -0.00654243 0)
(1.01805 -0.00645771 0)
(1.01832 -0.00637798 0)
(1.01857 -0.00630238 0)
(1.01881 -0.00623019 0)
(1.01904 -0.0061608 0)
(1.01926 -0.00609374 0)
(1.01947 -0.0060287 0)
(1.01967 -0.00596541 0)
(1.01986 -0.00590375 0)
(1.02005 -0.00584362 0)
(1.02022 -0.00578501 0)
(1.0204 -0.00572791 0)
(1.02056 -0.00567234 0)
(1.02073 -0.00561834 0)
(1.02088 -0.00556593 0)
(1.02103 -0.00551513 0)
(1.02118 -0.00546597 0)
(1.02133 -0.00541845 0)
(1.02146 -0.00537256 0)
(1.0216 -0.00532829 0)
(1.02173 -0.0052856 0)
(1.02186 -0.00524441 0)
(1.02199 -0.00520464 0)
(1.02211 -0.00516614 0)
(1.02223 -0.0051288 0)
(1.02234 -0.00509245 0)
(1.02245 -0.00505697 0)
(1.00006 -0.00174121 0)
(1.00116 -0.00483026 0)
(1.0031 -0.00695199 0)
(1.00531 -0.00797901 0)
(1.00724 -0.00832425 0)
(1.00869 -0.0084668 0)
(1.00981 -0.00857772 0)
(1.01081 -0.0086093 0)
(1.01174 -0.00852956 0)
(1.01258 -0.00838235 0)
(1.01331 -0.00822036 0)
(1.01395 -0.00806232 0)
(1.01453 -0.0079056 0)
(1.01506 -0.00774798 0)
(1.01555 -0.00759245 0)
(1.016 -0.00744279 0)
(1.01642 -0.00730079 0)
(1.01682 -0.0071669 0)
(1.01719 -0.00704127 0)
(1.01754 -0.00692407 0)
(1.01787 -0.00681522 0)
(1.01818 -0.00671425 0)
(1.01848 -0.00662038 0)
(1.01876 -0.00653267 0)
(1.01903 -0.00645017 0)
(1.01928 -0.00637202 0)
(1.01952 -0.00629746 0)
(1.01975 -0.00622591 0)
(1.01997 -0.00615689 0)
(1.02018 -0.00609005 0)
(1.02038 -0.00602515 0)
(1.02057 -0.00596201 0)
(1.02076 -0.00590055 0)
(1.02094 -0.00584073 0)
(1.02111 -0.00578252 0)
(1.02128 -0.00572594 0)
(1.02144 -0.00567101 0)
(1.0216 -0.00561774 0)
(1.02175 -0.00556614 0)
(1.0219 -0.00551623 0)
(1.02204 -0.00546799 0)
(1.02218 -0.00542143 0)
(1.02232 -0.00537651 0)
(1.02245 -0.00533319 0)
(1.02258 -0.0052914 0)
(1.02271 -0.00525104 0)
(1.02283 -0.005212 0)
(1.02295 -0.00517414 0)
(1.02307 -0.0051373 0)
(1.02318 -0.00510137 0)
(1.00007 -0.00188631 0)
(1.00131 -0.00520041 0)
(1.00345 -0.00738677 0)
(1.00585 -0.00835106 0)
(1.00786 -0.00861982 0)
(1.00933 -0.00872998 0)
(1.01047 -0.00882549 0)
(1.0115 -0.00883099 0)
(1.01245 -0.00871955 0)
(1.0133 -0.0085482 0)
(1.01403 -0.00837102 0)
(1.01467 -0.00820143 0)
(1.01525 -0.00803396 0)
(1.01578 -0.00786671 0)
(1.01628 -0.00770329 0)
(1.01673 -0.00754724 0)
(1.01716 -0.0073998 0)
(1.01755 -0.00726108 0)
(1.01792 -0.00713111 0)
(1.01828 -0.00700998 0)
(1.01861 -0.00689753 0)
(1.01892 -0.00679323 0)
(1.01922 -0.00669625 0)
(1.0195 -0.00660565 0)
(1.01977 -0.00652046 0)
(1.02002 -0.00643983 0)
(1.02026 -0.00636299 0)
(1.02049 -0.00628935 0)
(1.02071 -0.00621842 0)
(1.02092 -0.00614984 0)
(1.02112 -0.00608336 0)
(1.02132 -0.0060188 0)
(1.02151 -0.00595605 0)
(1.02169 -0.00589505 0)
(1.02186 -0.00583577 0)
(1.02203 -0.00577822 0)
(1.02219 -0.00572239 0)
(1.02235 -0.00566828 0)
(1.0225 -0.00561591 0)
(1.02265 -0.00556526 0)
(1.0228 -0.00551634 0)
(1.02294 -0.00546912 0)
(1.02308 -0.00542357 0)
(1.02321 -0.00537964 0)
(1.02334 -0.00533727 0)
(1.02347 -0.00529635 0)
(1.02359 -0.00525677 0)
(1.02371 -0.00521841 0)
(1.02383 -0.0051811 0)
(1.02394 -0.00514472 0)
(1.00007 -0.00204636 0)
(1.00147 -0.00560248 0)
(1.00385 -0.00784261 0)
(1.00643 -0.00872619 0)
(1.00853 -0.00891361 0)
(1.01002 -0.00899463 0)
(1.01117 -0.00907416 0)
(1.01222 -0.00904987 0)
(1.01319 -0.008905 0)
(1.01405 -0.00871013 0)
(1.01479 -0.0085185 0)
(1.01543 -0.00833739 0)
(1.01601 -0.00815902 0)
(1.01655 -0.00798223 0)
(1.01704 -0.00781116 0)
(1.0175 -0.00764891 0)
(1.01792 -0.00749616 0)
(1.01832 -0.00735272 0)
(1.01869 -0.00721853 0)
(1.01905 -0.00709359 0)
(1.01938 -0.00697766 0)
(1.01969 -0.00687013 0)
(1.01999 -0.00677014 0)
(1.02027 -0.00667673 0)
(1.02054 -0.00658894 0)
(1.0208 -0.0065059 0)
(1.02104 -0.00642685 0)
(1.02127 -0.00635118 0)
(1.02149 -0.0062784 0)
(1.02171 -0.00620814 0)
(1.02191 -0.00614014 0)
(1.0221 -0.0060742 0)
(1.02229 -0.00601019 0)
(1.02247 -0.00594805 0)
(1.02265 -0.00588774 0)
(1.02282 -0.00582924 0)
(1.02298 -0.00577254 0)
(1.02314 -0.00571763 0)
(1.0233 -0.0056645 0)
(1.02345 -0.00561315 0)
(1.02359 -0.00556356 0)
(1.02374 -0.0055157 0)
(1.02387 -0.00546954 0)
(1.02401 -0.00542503 0)
(1.02414 -0.00538209 0)
(1.02427 -0.00534063 0)
(1.02439 -0.00530053 0)
(1.02451 -0.00526168 0)
(1.02463 -0.00522391 0)
(1.02475 -0.00518711 0)
(1.00008 -0.00222331 0)
(1.00165 -0.00603896 0)
(1.00429 -0.00831866 0)
(1.00708 -0.00910241 0)
(1.00925 -0.00920556 0)
(1.01074 -0.00926125 0)
(1.01191 -0.00932332 0)
(1.01298 -0.00926519 0)
(1.01398 -0.00908567 0)
(1.01484 -0.00886828 0)
(1.01558 -0.00866288 0)
(1.01623 -0.00847016 0)
(1.01681 -0.00828078 0)
(1.01735 -0.00809462 0)
(1.01784 -0.00791615 0)
(1.0183 -0.00774789 0)
(1.01873 -0.00758996 0)
(1.01913 -0.00744193 0)
(1.0195 -0.00730364 0)
(1.01986 -0.00717501 0)
(1.02019 -0.0070557 0)
(1.02051 -0.00694503 0)
(1.02081 -0.00684213 0)
(1.02109 -0.00674601 0)
(1.02136 -0.0066557 0)
(1.02162 -0.00657033 0)
(1.02186 -0.00648914 0)
(1.02209 -0.0064115 0)
(1.02232 -0.00633693 0)
(1.02253 -0.00626504 0)
(1.02273 -0.00619556 0)
(1.02293 -0.00612828 0)
(1.02312 -0.00606306 0)
(1.0233 -0.00599982 0)
(1.02348 -0.00593851 0)
(1.02365 -0.00587908 0)
(1.02382 -0.00582154 0)
(1.02398 -0.00576585 0)
(1.02413 -0.00571199 0)
(1.02428 -0.00565996 0)
(1.02443 -0.00560972 0)
(1.02457 -0.00556124 0)
(1.02471 -0.00551449 0)
(1.02485 -0.00546942 0)
(1.02498 -0.00542593 0)
(1.02511 -0.00538395 0)
(1.02524 -0.00534335 0)
(1.02536 -0.00530402 0)
(1.02548 -0.0052658 0)
(1.02559 -0.00522859 0)
(1.00009 -0.00241946 0)
(1.00186 -0.0065123 0)
(1.00479 -0.00881365 0)
(1.00777 -0.00947766 0)
(1.01001 -0.00949596 0)
(1.01151 -0.00953028 0)
(1.01269 -0.00957236 0)
(1.01379 -0.00947625 0)
(1.01481 -0.00926146 0)
(1.01568 -0.0090228 0)
(1.01641 -0.0088042 0)
(1.01706 -0.00859972 0)
(1.01765 -0.00839928 0)
(1.01819 -0.00820397 0)
(1.01869 -0.00801836 0)
(1.01915 -0.00784427 0)
(1.01958 -0.00768128 0)
(1.01998 -0.00752878 0)
(1.02035 -0.00738652 0)
(1.02071 -0.00725432 0)
(1.02104 -0.00713174 0)
(1.02136 -0.00701805 0)
(1.02166 -0.00691233 0)
(1.02195 -0.00681358 0)
(1.02222 -0.00672083 0)
(1.02248 -0.0066332 0)
(1.02272 -0.00654993 0)
(1.02296 -0.0064704 0)
(1.02318 -0.00639409 0)
(1.0234 -0.00632062 0)
(1.0236 -0.00624971 0)
(1.0238 -0.00618113 0)
(1.02399 -0.00611473 0)
(1.02418 -0.00605043 0)
(1.02435 -0.00598814 0)
(1.02453 -0.00592783 0)
(1.02469 -0.00586946 0)
(1.02486 -0.00581302 0)
(1.02501 -0.00575846 0)
(1.02517 -0.00570576 0)
(1.02531 -0.0056549 0)
(1.02546 -0.00560583 0)
(1.0256 -0.00555851 0)
(1.02574 -0.00551288 0)
(1.02587 -0.00546886 0)
(1.026 -0.00542637 0)
(1.02613 -0.00538529 0)
(1.02625 -0.00534549 0)
(1.02637 -0.00530684 0)
(1.02649 -0.00526923 0)
(1.00011 -0.00263743 0)
(1.0021 -0.00702484 0)
(1.00534 -0.00932594 0)
(1.00853 -0.00984996 0)
(1.01082 -0.00978539 0)
(1.01232 -0.00980211 0)
(1.01352 -0.00982053 0)
(1.01465 -0.00968239 0)
(1.01568 -0.00943237 0)
(1.01656 -0.00917387 0)
(1.01729 -0.00894248 0)
(1.01794 -0.00872603 0)
(1.01854 -0.00851455 0)
(1.01908 -0.00831038 0)
(1.01958 -0.0081179 0)
(1.02004 -0.00793814 0)
(1.02047 -0.00777023 0)
(1.02087 -0.00761339 0)
(1.02125 -0.00746728 0)
(1.02161 -0.00733163 0)
(1.02194 -0.00720589 0)
(1.02226 -0.00708927 0)
(1.02257 -0.00698082 0)
(1.02285 -0.00687953 0)
(1.02313 -0.00678443 0)
(1.02339 -0.00669462 0)
(1.02363 -0.00660934 0)
(1.02387 -0.00652796 0)
(1.0241 -0.00644997 0)
(1.02431 -0.00637497 0)
(1.02452 -0.00630267 0)
(1.02472 -0.00623283 0)
(1.02491 -0.0061653 0)
(1.0251 -0.00609995 0)
(1.02528 -0.00603672 0)
(1.02545 -0.00597555 0)
(1.02562 -0.00591639 0)
(1.02579 -0.00585921 0)
(1.02594 -0.00580397 0)
(1.0261 -0.00575064 0)
(1.02625 -0.00569917 0)
(1.02639 -0.00564952 0)
(1.02654 -0.00560165 0)
(1.02668 -0.00555549 0)
(1.02681 -0.00551096 0)
(1.02694 -0.00546798 0)
(1.02707 -0.00542642 0)
(1.0272 -0.00538618 0)
(1.02732 -0.0053471 0)
(1.02744 -0.0053091 0)
(1.00012 -0.00288021 0)
(1.00238 -0.00757879 0)
(1.00596 -0.00985348 0)
(1.00936 -0.0102177 0)
(1.01169 -0.0100747 0)
(1.01318 -0.0100769 0)
(1.0144 -0.0100669 0)
(1.01556 -0.00988309 0)
(1.01661 -0.00959852 0)
(1.01748 -0.00932168 0)
(1.01822 -0.00907773 0)
(1.01887 -0.0088491 0)
(1.01947 -0.00862668 0)
(1.02001 -0.00841397 0)
(1.02051 -0.00821487 0)
(1.02098 -0.00802961 0)
(1.02141 -0.00785691 0)
(1.02181 -0.00769585 0)
(1.02219 -0.00754604 0)
(1.02255 -0.00740705 0)
(1.02289 -0.00727826 0)
(1.02321 -0.00715881 0)
(1.02352 -0.00704772 0)
(1.02381 -0.00694397 0)
(1.02408 -0.00684658 0)
(1.02434 -0.00675466 0)
(1.02459 -0.00666743 0)
(1.02483 -0.00658427 0)
(1.02506 -0.00650465 0)
(1.02528 -0.00642817 0)
(1.02549 -0.00635452 0)
(1.02569 -0.00628347 0)
(1.02589 -0.00621483 0)
(1.02607 -0.00614848 0)
(1.02626 -0.00608434 0)
(1.02643 -0.00602233 0)
(1.0266 -0.00596241 0)
(1.02677 -0.00590452 0)
(1.02693 -0.00584862 0)
(1.02708 -0.00579466 0)
(1.02724 -0.0057426 0)
(1.02738 -0.0056924 0)
(1.02753 -0.00564399 0)
(1.02767 -0.00559732 0)
(1.0278 -0.00555229 0)
(1.02794 -0.00550883 0)
(1.02807 -0.00546681 0)
(1.02819 -0.00542614 0)
(1.02832 -0.00538665 0)
(1.02844 -0.00534827 0)
(1.00014 -0.00315122 0)
(1.00269 -0.00817605 0)
(1.00664 -0.0103939 0)
(1.01025 -0.0105798 0)
(1.01261 -0.0103648 0)
(1.01409 -0.0103547 0)
(1.01534 -0.0103105 0)
(1.01652 -0.0100779 0)
(1.01758 -0.00976014 0)
(1.01846 -0.00946638 0)
(1.0192 -0.00920994 0)
(1.01985 -0.00896892 0)
(1.02045 -0.00873577 0)
(1.021 -0.00851486 0)
(1.0215 -0.0083094 0)
(1.02197 -0.00811878 0)
(1.0224 -0.00794141 0)
(1.02281 -0.00777628 0)
(1.02319 -0.00762288 0)
(1.02355 -0.00748068 0)
(1.02389 -0.00734894 0)
(1.02422 -0.00722675 0)
(1.02452 -0.00711311 0)
(1.02481 -0.00700699 0)
(1.02509 -0.00690739 0)
(1.02536 -0.00681343 0)
(1.02561 -0.00672432 0)
(1.02585 -0.00663943 0)
(1.02608 -0.00655823 0)
(1.0263 -0.00648032 0)
(1.02651 -0.00640536 0)
(1.02672 -0.00633312 0)
(1.02691 -0.00626341 0)
(1.0271 -0.00619609 0)
(1.02729 -0.00613106 0)
(1.02747 -0.00606825 0)
(1.02764 -0.00600758 0)
(1.02781 -0.005949 0)
(1.02797 -0.00589246 0)
(1.02813 -0.0058379 0)
(1.02828 -0.00578528 0)
(1.02843 -0.00573454 0)
(1.02858 -0.00568561 0)
(1.02872 -0.00563844 0)
(1.02886 -0.00559293 0)
(1.02899 -0.005549 0)
(1.02913 -0.00550654 0)
(1.02925 -0.00546544 0)
(1.02938 -0.00542556 0)
(1.0295 -0.00538681 0)
(1.00016 -0.00345428 0)
(1.00305 -0.00881803 0)
(1.00741 -0.0109443 0)
(1.01121 -0.0109354 0)
(1.01358 -0.0106569 0)
(1.01506 -0.010635 0)
(1.01633 -0.0105502 0)
(1.01754 -0.0102667 0)
(1.01861 -0.0099175 0)
(1.01948 -0.00960811 0)
(1.02022 -0.00933907 0)
(1.02088 -0.00908554 0)
(1.02149 -0.00884193 0)
(1.02204 -0.00861318 0)
(1.02254 -0.00840157 0)
(1.02301 -0.00820575 0)
(1.02345 -0.00802385 0)
(1.02385 -0.00785479 0)
(1.02424 -0.00769793 0)
(1.0246 -0.00755262 0)
(1.02495 -0.00741803 0)
(1.02527 -0.0072932 0)
(1.02558 -0.0071771 0)
(1.02588 -0.00706868 0)
(1.02616 -0.00696695 0)
(1.02643 -0.00687101 0)
(1.02668 -0.00678008 0)
(1.02692 -0.00669352 0)
(1.02716 -0.00661079 0)
(1.02738 -0.00653148 0)
(1.0276 -0.00645526 0)
(1.0278 -0.00638188 0)
(1.028 -0.00631113 0)
(1.0282 -0.00624287 0)
(1.02838 -0.00617698 0)
(1.02856 -0.00611338 0)
(1.02874 -0.00605199 0)
(1.02891 -0.00599274 0)
(1.02907 -0.00593558 0)
(1.02923 -0.00588044 0)
(1.02939 -0.00582727 0)
(1.02954 -0.005776 0)
(1.02969 -0.00572658 0)
(1.02983 -0.00567892 0)
(1.02997 -0.00563295 0)
(1.03011 -0.00558857 0)
(1.03025 -0.00554568 0)
(1.03038 -0.00550417 0)
(1.0305 -0.0054639 0)
(1.03063 -0.00542479 0)
(1.00018 -0.00379367 0)
(1.00345 -0.00950557 0)
(1.00825 -0.0115019 0)
(1.01224 -0.0112846 0)
(1.01461 -0.0109518 0)
(1.01608 -0.0109173 0)
(1.01738 -0.010785 0)
(1.01862 -0.0104492 0)
(1.01969 -0.0100709 0)
(1.02057 -0.00974695 0)
(1.02131 -0.0094651 0)
(1.02197 -0.00919902 0)
(1.02258 -0.0089453 0)
(1.02313 -0.00870906 0)
(1.02364 -0.00849152 0)
(1.02411 -0.00829064 0)
(1.02455 -0.00810435 0)
(1.02496 -0.00793149 0)
(1.02535 -0.0077713 0)
(1.02572 -0.00762299 0)
(1.02606 -0.00748565 0)
(1.02639 -0.00735827 0)
(1.02671 -0.00723979 0)
(1.027 -0.00712916 0)
(1.02729 -0.00702536 0)
(1.02756 -0.00692751 0)
(1.02782 -0.00683481 0)
(1.02806 -0.00674663 0)
(1.0283 -0.00666242 0)
(1.02853 -0.00658176 0)
(1.02874 -0.00650432 0)
(1.02895 -0.00642982 0)
(1.02916 -0.00635806 0)
(1.02935 -0.00628888 0)
(1.02954 -0.00622216 0)
(1.02972 -0.0061578 0)
(1.0299 -0.00609571 0)
(1.03007 -0.00603582 0)
(1.03024 -0.00597806 0)
(1.03041 -0.00592235 0)
(1.03056 -0.00586865 0)
(1.03072 -0.00581687 0)
(1.03087 -0.00576696 0)
(1.03102 -0.00571884 0)
(1.03116 -0.00567241 0)
(1.0313 -0.0056276 0)
(1.03144 -0.00558429 0)
(1.03157 -0.00554239 0)
(1.0317 -0.00550173 0)
(1.03182 -0.00546227 0)
(1.00021 -0.00417404 0)
(1.00392 -0.010239 0)
(1.00918 -0.0120633 0)
(1.01334 -0.0116275 0)
(1.0157 -0.0112505 0)
(1.01716 -0.0112007 0)
(1.01849 -0.011014 0)
(1.01976 -0.0106255 0)
(1.02084 -0.0102207 0)
(1.02171 -0.00988297 0)
(1.02246 -0.00958801 0)
(1.02312 -0.00930943 0)
(1.02373 -0.00904602 0)
(1.02429 -0.00880263 0)
(1.0248 -0.00857935 0)
(1.02527 -0.00837354 0)
(1.02572 -0.00818301 0)
(1.02613 -0.00800649 0)
(1.02652 -0.00784309 0)
(1.02689 -0.00769189 0)
(1.02724 -0.0075519 0)
(1.02758 -0.00742205 0)
(1.02789 -0.00730128 0)
(1.0282 -0.0071885 0)
(1.02848 -0.00708272 0)
(1.02876 -0.00698301 0)
(1.02902 -0.00688861 0)
(1.02927 -0.00679885 0)
(1.02951 -0.0067132 0)
(1.02974 -0.00663124 0)
(1.02996 -0.00655261 0)
(1.03017 -0.00647703 0)
(1.03038 -0.00640429 0)
(1.03058 -0.00633423 0)
(1.03077 -0.0062667 0)
(1.03095 -0.00620159 0)
(1.03114 -0.00613882 0)
(1.03131 -0.00607831 0)
(1.03148 -0.00601996 0)
(1.03165 -0.00596371 0)
(1.03181 -0.00590949 0)
(1.03197 -0.00585722 0)
(1.03212 -0.00580684 0)
(1.03227 -0.00575826 0)
(1.03242 -0.0057114 0)
(1.03256 -0.00566617 0)
(1.0327 -0.00562245 0)
(1.03283 -0.00558016 0)
(1.03296 -0.00553914 0)
(1.03309 -0.00549933 0)
(1.00024 -0.00460041 0)
(1.00444 -0.0110179 0)
(1.01019 -0.0126254 0)
(1.01452 -0.0119653 0)
(1.01685 -0.0115539 0)
(1.0183 -0.0114841 0)
(1.01967 -0.0112362 0)
(1.02097 -0.010796 0)
(1.02205 -0.0103672 0)
(1.02292 -0.0100162 0)
(1.02367 -0.00970781 0)
(1.02434 -0.00941691 0)
(1.02495 -0.00914424 0)
(1.02551 -0.00889401 0)
(1.02603 -0.00866517 0)
(1.0265 -0.00845458 0)
(1.02695 -0.00825996 0)
(1.02737 -0.00807992 0)
(1.02776 -0.00791342 0)
(1.02814 -0.00775943 0)
(1.02849 -0.00761687 0)
(1.02883 -0.00748465 0)
(1.02915 -0.00736166 0)
(1.02946 -0.00724682 0)
(1.02975 -0.0071391 0)
(1.03002 -0.00703761 0)
(1.03029 -0.00694155 0)
(1.03054 -0.00685027 0)
(1.03079 -0.00676323 0)
(1.03102 -0.00668 0)
(1.03125 -0.00660021 0)
(1.03146 -0.00652359 0)
(1.03167 -0.0064499 0)
(1.03187 -0.00637897 0)
(1.03207 -0.00631065 0)
(1.03226 -0.00624483 0)
(1.03244 -0.00618141 0)
(1.03262 -0.00612028 0)
(1.0328 -0.00606136 0)
(1.03297 -0.00600458 0)
(1.03313 -0.00594986 0)
(1.03329 -0.00589712 0)
(1.03345 -0.00584628 0)
(1.0336 -0.00579726 0)
(1.03375 -0.00574998 0)
(1.03389 -0.00570433 0)
(1.03404 -0.00566022 0)
(1.03417 -0.00561755 0)
(1.03431 -0.00557617 0)
(1.03444 -0.00553603 0)
(1.00028 -0.0050781 0)
(1.00504 -0.0118413 0)
(1.01131 -0.0131849 0)
(1.01578 -0.0122994 0)
(1.01806 -0.0118624 0)
(1.01952 -0.0117662 0)
(1.02093 -0.0114511 0)
(1.02224 -0.0109608 0)
(1.02332 -0.0105106 0)
(1.02419 -0.0101466 0)
(1.02494 -0.00982452 0)
(1.02562 -0.00952157 0)
(1.02624 -0.0092401 0)
(1.0268 -0.00898334 0)
(1.02732 -0.00874909 0)
(1.0278 -0.00853388 0)
(1.02825 -0.0083353 0)
(1.02868 -0.00815187 0)
(1.02908 -0.00798239 0)
(1.02945 -0.00782571 0)
(1.02981 -0.00768069 0)
(1.03016 -0.00754617 0)
(1.03048 -0.00742104 0)
(1.03079 -0.0073042 0)
(1.03109 -0.00719462 0)
(1.03137 -0.00709139 0)
(1.03164 -0.00699373 0)
(1.0319 -0.00690098 0)
(1.03214 -0.00681259 0)
(1.03238 -0.00672812 0)
(1.03261 -0.00664721 0)
(1.03283 -0.00656957 0)
(1.03304 -0.00649496 0)
(1.03325 -0.00642319 0)
(1.03345 -0.00635411 0)
(1.03364 -0.0062876 0)
(1.03383 -0.00622353 0)
(1.03401 -0.00616181 0)
(1.03419 -0.00610234 0)
(1.03436 -0.00604505 0)
(1.03453 -0.00598984 0)
(1.0347 -0.00593663 0)
(1.03486 -0.00588535 0)
(1.03501 -0.00583591 0)
(1.03516 -0.00578821 0)
(1.03531 -0.00574217 0)
(1.03546 -0.00569767 0)
(1.0356 -0.00565463 0)
(1.03574 -0.00561291 0)
(1.03587 -0.00557244 0)
(1.00033 -0.00561265 0)
(1.00571 -0.0127078 0)
(1.01252 -0.0137382 0)
(1.01711 -0.0126321 0)
(1.01935 -0.0121765 0)
(1.02081 -0.0120455 0)
(1.02225 -0.0116582 0)
(1.02359 -0.0111205 0)
(1.02467 -0.0106513 0)
(1.02554 -0.0102741 0)
(1.02629 -0.00993819 0)
(1.02697 -0.00962358 0)
(1.0276 -0.00933377 0)
(1.02816 -0.00907072 0)
(1.02869 -0.00883124 0)
(1.02917 -0.00861155 0)
(1.02963 -0.00840916 0)
(1.03006 -0.00822247 0)
(1.03046 -0.00805011 0)
(1.03085 -0.00789084 0)
(1.03121 -0.00774343 0)
(1.03156 -0.00760671 0)
(1.03189 -0.00747951 0)
(1.0322 -0.00736074 0)
(1.0325 -0.00724935 0)
(1.03279 -0.00714445 0)
(1.03306 -0.00704523 0)
(1.03333 -0.00695105 0)
(1.03358 -0.00686135 0)
(1.03382 -0.00677569 0)
(1.03405 -0.00669369 0)
(1.03428 -0.00661506 0)
(1.0345 -0.00653955 0)
(1.03471 -0.00646697 0)
(1.03491 -0.00639715 0)
(1.03511 -0.00632995 0)
(1.0353 -0.00626526 0)
(1.03549 -0.00620296 0)
(1.03567 -0.00614297 0)
(1.03585 -0.00608517 0)
(1.03602 -0.00602949 0)
(1.03619 -0.00597583 0)
(1.03635 -0.00592412 0)
(1.03651 -0.00587426 0)
(1.03667 -0.00582616 0)
(1.03682 -0.00577974 0)
(1.03697 -0.00573487 0)
(1.03711 -0.00569147 0)
(1.03725 -0.0056494 0)
(1.03739 -0.00560861 0)
(1.00038 -0.00620972 0)
(1.00646 -0.0136152 0)
(1.01384 -0.0142823 0)
(1.01853 -0.0129657 0)
(1.0207 -0.0124963 0)
(1.02217 -0.0123204 0)
(1.02366 -0.0118572 0)
(1.02501 -0.0112754 0)
(1.02609 -0.0107892 0)
(1.02696 -0.0103988 0)
(1.02771 -0.0100489 0)
(1.0284 -0.00972309 0)
(1.02903 -0.00942537 0)
(1.0296 -0.00915627 0)
(1.03013 -0.00891172 0)
(1.03062 -0.0086877 0)
(1.03108 -0.00848166 0)
(1.03152 -0.00829181 0)
(1.03193 -0.00811669 0)
(1.03232 -0.00795491 0)
(1.03269 -0.00780521 0)
(1.03304 -0.00766636 0)
(1.03337 -0.00753717 0)
(1.03369 -0.00741652 0)
(1.034 -0.00730339 0)
(1.03429 -0.00719686 0)
(1.03457 -0.00709614 0)
(1.03484 -0.00700057 0)
(1.0351 -0.0069096 0)
(1.03534 -0.00682278 0)
(1.03558 -0.00673972 0)
(1.03581 -0.00666013 0)
(1.03604 -0.00658375 0)
(1.03625 -0.00651037 0)
(1.03646 -0.00643983 0)
(1.03666 -0.00637197 0)
(1.03686 -0.00630667 0)
(1.03705 -0.00624382 0)
(1.03724 -0.0061833 0)
(1.03742 -0.00612502 0)
(1.03759 -0.00606887 0)
(1.03777 -0.00601478 0)
(1.03793 -0.00596265 0)
(1.0381 -0.00591239 0)
(1.03826 -0.0058639 0)
(1.03841 -0.0058171 0)
(1.03857 -0.00577187 0)
(1.03871 -0.00572812 0)
(1.03886 -0.00568572 0)
(1.039 -0.00564462 0)
(1.00044 -0.00687501 0)
(1.00731 -0.014561 0)
(1.01527 -0.0148147 0)
(1.02003 -0.0133025 0)
(1.02213 -0.0128213 0)
(1.02362 -0.0125896 0)
(1.02515 -0.0120483 0)
(1.02651 -0.0114262 0)
(1.02758 -0.0109246 0)
(1.02845 -0.0105206 0)
(1.02922 -0.0101568 0)
(1.02991 -0.00982026 0)
(1.03054 -0.00951504 0)
(1.03112 -0.00924012 0)
(1.03165 -0.00899065 0)
(1.03215 -0.00876246 0)
(1.03262 -0.00855288 0)
(1.03306 -0.00836001 0)
(1.03347 -0.00818222 0)
(1.03387 -0.00801803 0)
(1.03425 -0.00786612 0)
(1.0346 -0.0077252 0)
(1.03495 -0.00759409 0)
(1.03527 -0.00747164 0)
(1.03558 -0.00735682 0)
(1.03588 -0.00724872 0)
(1.03617 -0.00714654 0)
(1.03644 -0.00704962 0)
(1.0367 -0.00695742 0)
(1.03696 -0.00686946 0)
(1.0372 -0.00678537 0)
(1.03744 -0.00670485 0)
(1.03766 -0.00662761 0)
(1.03788 -0.00655347 0)
(1.0381 -0.00648222 0)
(1.03831 -0.00641372 0)
(1.03851 -0.00634783 0)
(1.0387 -0.00628443 0)
(1.03889 -0.0062234 0)
(1.03908 -0.00616465 0)
(1.03926 -0.00610806 0)
(1.03944 -0.00605354 0)
(1.03961 -0.006001 0)
(1.03978 -0.00595035 0)
(1.03994 -0.00590148 0)
(1.0401 -0.00585431 0)
(1.04026 -0.00580873 0)
(1.04041 -0.00576464 0)
(1.04056 -0.00572192 0)
(1.04071 -0.0056805 0)
(1.00051 -0.00761418 0)
(1.00825 -0.0155421 0)
(1.0168 -0.0153344 0)
(1.0216 -0.0136443 0)
(1.02364 -0.0131507 0)
(1.02515 -0.0128517 0)
(1.02671 -0.0122315 0)
(1.02808 -0.0115733 0)
(1.02915 -0.0110574 0)
(1.03003 -0.0106395 0)
(1.0308 -0.0102619 0)
(1.0315 -0.00991526 0)
(1.03214 -0.00960292 0)
(1.03272 -0.00932237 0)
(1.03326 -0.00906813 0)
(1.03376 -0.00883592 0)
(1.03424 -0.00862296 0)
(1.03468 -0.00842717 0)
(1.03511 -0.0082468 0)
(1.03551 -0.00808029 0)
(1.03589 -0.00792624 0)
(1.03626 -0.00778334 0)
(1.03661 -0.00765036 0)
(1.03694 -0.00752617 0)
(1.03726 -0.00740971 0)
(1.03756 -0.00730008 0)
(1.03785 -0.00719649 0)
(1.03813 -0.00709827 0)
(1.0384 -0.00700486 0)
(1.03866 -0.0069158 0)
(1.03891 -0.00683072 0)
(1.03915 -0.00674928 0)
(1.03938 -0.00667122 0)
(1.03961 -0.00659632 0)
(1.03983 -0.00652438 0)
(1.04004 -0.00645526 0)
(1.04025 -0.00638879 0)
(1.04045 -0.00632486 0)
(1.04065 -0.00626334 0)
(1.04084 -0.00620412 0)
(1.04102 -0.0061471 0)
(1.04121 -0.00609216 0)
(1.04138 -0.00603923 0)
(1.04155 -0.00598819 0)
(1.04172 -0.00593896 0)
(1.04189 -0.00589143 0)
(1.04205 -0.0058455 0)
(1.04221 -0.00580108 0)
(1.04236 -0.00575803 0)
(1.04251 -0.00571631 0)
(1.0006 -0.00843269 0)
(1.0093 -0.0165548 0)
(1.01845 -0.0158415 0)
(1.02327 -0.0139923 0)
(1.02523 -0.013483 0)
(1.02677 -0.0131054 0)
(1.02837 -0.0124072 0)
(1.02974 -0.011717 0)
(1.03081 -0.0111878 0)
(1.03168 -0.0107555 0)
(1.03246 -0.0103645 0)
(1.03317 -0.0100082 0)
(1.03381 -0.00968912 0)
(1.0344 -0.00940313 0)
(1.03495 -0.00914429 0)
(1.03546 -0.00890821 0)
(1.03594 -0.00869198 0)
(1.0364 -0.00849338 0)
(1.03683 -0.00831053 0)
(1.03724 -0.00814178 0)
(1.03763 -0.00798567 0)
(1.038 -0.00784085 0)
(1.03836 -0.00770607 0)
(1.0387 -0.00758019 0)
(1.03902 -0.00746215 0)
(1.03933 -0.00735104 0)
(1.03963 -0.00724607 0)
(1.03992 -0.00714658 0)
(1.04019 -0.007052 0)
(1.04046 -0.00696188 0)
(1.04071 -0.00687581 0)
(1.04096 -0.00679349 0)
(1.0412 -0.00671462 0)
(1.04143 -0.00663898 0)
(1.04166 -0.00656638 0)
(1.04188 -0.00649664 0)
(1.04209 -0.00642961 0)
(1.0423 -0.00636516 0)
(1.0425 -0.00630316 0)
(1.04269 -0.00624348 0)
(1.04289 -0.00618603 0)
(1.04307 -0.00613069 0)
(1.04325 -0.00607736 0)
(1.04343 -0.00602595 0)
(1.04361 -0.00597635 0)
(1.04377 -0.00592847 0)
(1.04394 -0.00588219 0)
(1.0441 -0.00583744 0)
(1.04426 -0.00579407 0)
(1.04441 -0.00575204 0)
(1.00069 -0.00933568 0)
(1.01046 -0.0175956 0)
(1.02021 -0.0163367 0)
(1.02501 -0.0143475 0)
(1.0269 -0.0138168 0)
(1.02847 -0.0133497 0)
(1.03011 -0.0125758 0)
(1.03148 -0.0118578 0)
(1.03254 -0.0113156 0)
(1.03343 -0.0108686 0)
(1.03421 -0.0104646 0)
(1.03493 -0.0100994 0)
(1.03558 -0.00977377 0)
(1.03618 -0.00948251 0)
(1.03673 -0.00921922 0)
(1.03725 -0.00897941 0)
(1.03774 -0.00876004 0)
(1.0382 -0.00855874 0)
(1.03864 -0.00837349 0)
(1.03906 -0.00820258 0)
(1.03946 -0.00804448 0)
(1.03984 -0.0078978 0)
(1.0402 -0.00776129 0)
(1.04055 -0.00763377 0)
(1.04088 -0.00751419 0)
(1.0412 -0.00740165 0)
(1.0415 -0.00729534 0)
(1.0418 -0.00719461 0)
(1.04208 -0.0070989 0)
(1.04235 -0.00700773 0)
(1.04262 -0.00692072 0)
(1.04287 -0.00683752 0)
(1.04312 -0.00675787 0)
(1.04336 -0.00668151 0)
(1.04359 -0.00660825 0)
(1.04381 -0.00653791 0)
(1.04403 -0.00647033 0)
(1.04424 -0.00640536 0)
(1.04445 -0.00634288 0)
(1.04465 -0.00628275 0)
(1.04485 -0.00622487 0)
(1.04504 -0.00616912 0)
(1.04523 -0.0061154 0)
(1.04541 -0.00606361 0)
(1.04559 -0.00601363 0)
(1.04576 -0.00596539 0)
(1.04593 -0.00591876 0)
(1.04609 -0.00587365 0)
(1.04626 -0.00582995 0)
(1.04641 -0.00578759 0)
(1.0008 -0.0103279 0)
(1.01174 -0.0186604 0)
(1.02208 -0.0168212 0)
(1.02684 -0.0147106 0)
(1.02867 -0.0141503 0)
(1.03027 -0.0135841 0)
(1.03193 -0.0127378 0)
(1.03331 -0.0119959 0)
(1.03437 -0.0114408 0)
(1.03526 -0.010979 0)
(1.03605 -0.0105625 0)
(1.03677 -0.0101887 0)
(1.03743 -0.00985696 0)
(1.03804 -0.00956061 0)
(1.0386 -0.00929303 0)
(1.03913 -0.00904963 0)
(1.03963 -0.00882724 0)
(1.0401 -0.00862333 0)
(1.04055 -0.00843577 0)
(1.04097 -0.00826277 0)
(1.04138 -0.00810274 0)
(1.04177 -0.00795428 0)
(1.04214 -0.00781608 0)
(1.0425 -0.00768697 0)
(1.04284 -0.00756591 0)
(1.04316 -0.00745197 0)
(1.04348 -0.00734436 0)
(1.04378 -0.00724243 0)
(1.04407 -0.00714561 0)
(1.04435 -0.00705342 0)
(1.04462 -0.00696547 0)
(1.04488 -0.00688142 0)
(1.04513 -0.00680098 0)
(1.04538 -0.00672392 0)
(1.04561 -0.00665 0)
(1.04585 -0.00657906 0)
(1.04607 -0.00651091 0)
(1.04629 -0.00644542 0)
(1.0465 -0.00638245 0)
(1.0467 -0.00632185 0)
(1.04691 -0.00626352 0)
(1.0471 -0.00620734 0)
(1.04729 -0.0061532 0)
(1.04748 -0.00610099 0)
(1.04766 -0.00605061 0)
(1.04783 -0.00600195 0)
(1.048 -0.00595493 0)
(1.04817 -0.00590942 0)
(1.04833 -0.00586533 0)
(1.04849 -0.00582258 0)
(1.00093 -0.0114138 0)
(1.01314 -0.0197452 0)
(1.02406 -0.0172968 0)
(1.02876 -0.0150818 0)
(1.03052 -0.0144816 0)
(1.03216 -0.0138079 0)
(1.03385 -0.012894 0)
(1.03522 -0.0121315 0)
(1.03628 -0.0115635 0)
(1.03717 -0.0110867 0)
(1.03798 -0.0106583 0)
(1.03871 -0.0102765 0)
(1.03938 -0.0099388 0)
(1.04 -0.00963752 0)
(1.04057 -0.00936581 0)
(1.04111 -0.00911896 0)
(1.04161 -0.00889366 0)
(1.04209 -0.00868722 0)
(1.04255 -0.00849744 0)
(1.04298 -0.00832242 0)
(1.0434 -0.00816053 0)
(1.0438 -0.00801034 0)
(1.04418 -0.00787051 0)
(1.04454 -0.00773986 0)
(1.04489 -0.00761734 0)
(1.04523 -0.00750204 0)
(1.04555 -0.00739317 0)
(1.04586 -0.00729005 0)
(1.04616 -0.00719213 0)
(1.04644 -0.00709893 0)
(1.04672 -0.00701005 0)
(1.04699 -0.00692514 0)
(1.04725 -0.00684391 0)
(1.0475 -0.00676611 0)
(1.04774 -0.00669151 0)
(1.04797 -0.00661993 0)
(1.0482 -0.00655119 0)
(1.04842 -0.00648512 0)
(1.04863 -0.00642159 0)
(1.04884 -0.00636047 0)
(1.04904 -0.00630162 0)
(1.04924 -0.00624492 0)
(1.04943 -0.00619027 0)
(1.04961 -0.00613755 0)
(1.04979 -0.00608665 0)
(1.04996 -0.00603748 0)
(1.05013 -0.00598993 0)
(1.05029 -0.0059439 0)
(1.05044 -0.00589929 0)
(1.05059 -0.00585601 0)
(1.00107 -0.012597 0)
(1.01467 -0.020846 0)
(1.02616 -0.0177658 0)
(1.03076 -0.0154612 0)
(1.03246 -0.0148086 0)
(1.03414 -0.014021 0)
(1.03585 -0.0130448 0)
(1.03722 -0.0122647 0)
(1.03828 -0.0116834 0)
(1.03918 -0.0111919 0)
(1.04 -0.0107522 0)
(1.04074 -0.0103628 0)
(1.04142 -0.0100194 0)
(1.04204 -0.00971335 0)
(1.04263 -0.00943764 0)
(1.04317 -0.00918748 0)
(1.04369 -0.00895937 0)
(1.04418 -0.0087505 0)
(1.04465 -0.00855856 0)
(1.04509 -0.00838159 0)
(1.04552 -0.00821791 0)
(1.04592 -0.00806603 0)
(1.04631 -0.00792461 0)
(1.04669 -0.00779245 0)
(1.04704 -0.00766851 0)
(1.04739 -0.00755186 0)
(1.04772 -0.00744172 0)
(1.04803 -0.00733741 0)
(1.04834 -0.00723838 0)
(1.04863 -0.00714413 0)
(1.04891 -0.00705427 0)
(1.04918 -0.00696844 0)
(1.04944 -0.00688634 0)
(1.04969 -0.00680772 0)
(1.04993 -0.00673233 0)
(1.05017 -0.00665999 0)
(1.05039 -0.00659051 0)
(1.05061 -0.00652373 0)
(1.05082 -0.00645949 0)
(1.05102 -0.00639765 0)
(1.05121 -0.00633809 0)
(1.05139 -0.00628068 0)
(1.05157 -0.0062253 0)
(1.05174 -0.00617184 0)
(1.0519 -0.00612019 0)
(1.05206 -0.00607026 0)
(1.0522 -0.00602193 0)
(1.05234 -0.00597511 0)
(1.05248 -0.0059297 0)
(1.0526 -0.0058856 0)
(1.00124 -0.0138809 0)
(1.01633 -0.0219586 0)
(1.02837 -0.018231 0)
(1.03284 -0.0158486 0)
(1.03449 -0.0151295 0)
(1.03622 -0.0142234 0)
(1.03794 -0.0131909 0)
(1.03931 -0.0123956 0)
(1.04037 -0.0118008 0)
(1.04129 -0.0112946 0)
(1.04211 -0.0108443 0)
(1.04286 -0.0104478 0)
(1.04355 -0.0100988 0)
(1.04419 -0.00978816 0)
(1.04478 -0.00950863 0)
(1.04534 -0.00925527 0)
(1.04586 -0.00902444 0)
(1.04636 -0.00881323 0)
(1.04684 -0.0086192 0)
(1.0473 -0.00844033 0)
(1.04773 -0.00827489 0)
(1.04815 -0.00812135 0)
(1.04855 -0.00797835 0)
(1.04893 -0.00784468 0)
(1.04929 -0.00771928 0)
(1.04964 -0.00760124 0)
(1.04997 -0.00748975 0)
(1.05029 -0.00738416 0)
(1.05059 -0.00728388 0)
(1.05088 -0.00718844 0)
(1.05116 -0.00709743 0)
(1.05143 -0.00701048 0)
(1.05168 -0.00692729 0)
(1.05192 -0.00684759 0)
(1.05215 -0.00677114 0)
(1.05236 -0.00669774 0)
(1.05257 -0.0066272 0)
(1.05276 -0.00655935 0)
(1.05295 -0.00649403 0)
(1.05312 -0.00643111 0)
(1.05328 -0.00637043 0)
(1.05343 -0.00631188 0)
(1.05357 -0.00625534 0)
(1.0537 -0.00620069 0)
(1.05382 -0.00614784 0)
(1.05393 -0.00609666 0)
(1.05403 -0.00604708 0)
(1.05412 -0.00599898 0)
(1.0542 -0.00595227 0)
(1.05427 -0.00590687 0)
(1.00142 -0.015268 0)
(1.01812 -0.0230789 0)
(1.03069 -0.0186954 0)
(1.03502 -0.0162433 0)
(1.03662 -0.0154422 0)
(1.03839 -0.0144155 0)
(1.04013 -0.0133329 0)
(1.04149 -0.0125242 0)
(1.04255 -0.0119155 0)
(1.04348 -0.0113951 0)
(1.04431 -0.0109347 0)
(1.04507 -0.0105314 0)
(1.04577 -0.0101771 0)
(1.04642 -0.00986206 0)
(1.04703 -0.00957883 0)
(1.0476 -0.00932239 0)
(1.04813 -0.00908894 0)
(1.04865 -0.00887542 0)
(1.04913 -0.00867933 0)
(1.0496 -0.00849857 0)
(1.05004 -0.00833135 0)
(1.05046 -0.00817609 0)
(1.05086 -0.00803141 0)
(1.05124 -0.00789609 0)
(1.05161 -0.00776906 0)
(1.05195 -0.0076494 0)
(1.05227 -0.0075363 0)
(1.05258 -0.00742911 0)
(1.05287 -0.00732724 0)
(1.05314 -0.00723021 0)
(1.05339 -0.00713759 0)
(1.05363 -0.00704904 0)
(1.05384 -0.00696423 0)
(1.05404 -0.00688289 0)
(1.05423 -0.00680478 0)
(1.05439 -0.0067297 0)
(1.05455 -0.00665744 0)
(1.05468 -0.00658785 0)
(1.0548 -0.00652075 0)
(1.0549 -0.00645601 0)
(1.05499 -0.00639348 0)
(1.05506 -0.00633305 0)
(1.05512 -0.00627459 0)
(1.05516 -0.00621799 0)
(1.05518 -0.00616316 0)
(1.0552 -0.00610998 0)
(1.0552 -0.00605836 0)
(1.05518 -0.00600821 0)
(1.05515 -0.00595946 0)
(1.05511 -0.00591199 0)
(1.00162 -0.0167605 0)
(1.02005 -0.0242029 0)
(1.03311 -0.0191624 0)
(1.03728 -0.0166445 0)
(1.03885 -0.0157448 0)
(1.04065 -0.0145977 0)
(1.0424 -0.0134712 0)
(1.04375 -0.0126505 0)
(1.04483 -0.0120276 0)
(1.04576 -0.0114934 0)
(1.04661 -0.0110236 0)
(1.04738 -0.0106138 0)
(1.04809 -0.0102545 0)
(1.04875 -0.00993511 0)
(1.04937 -0.0096483 0)
(1.04995 -0.00938885 0)
(1.0505 -0.00915279 0)
(1.05102 -0.00893694 0)
(1.05151 -0.0087387 0)
(1.05197 -0.00855588 0)
(1.05241 -0.00838664 0)
(1.05283 -0.00822936 0)
(1.05322 -0.00808263 0)
(1.05358 -0.0079452 0)
(1.05392 -0.00781601 0)
(1.05423 -0.00769411 0)
(1.05451 -0.00757872 0)
(1.05477 -0.00746917 0)
(1.055 -0.00736488 0)
(1.05521 -0.00726536 0)
(1.05539 -0.00717021 0)
(1.05554 -0.00707906 0)
(1.05567 -0.0069916 0)
(1.05577 -0.00690756 0)
(1.05585 -0.0068267 0)
(1.0559 -0.00674881 0)
(1.05593 -0.00667371 0)
(1.05593 -0.00660123 0)
(1.05591 -0.0065312 0)
(1.05587 -0.00646349 0)
(1.05581 -0.00639797 0)
(1.05573 -0.00633452 0)
(1.05562 -0.00627302 0)
(1.05549 -0.00621337 0)
(1.05535 -0.00615545 0)
(1.05518 -0.00609921 0)
(1.055 -0.00604451 0)
(1.0548 -0.0059913 0)
(1.05458 -0.00593948 0)
(1.05435 -0.005889 0)
(1.00185 -0.0183597 0)
(1.02211 -0.0253266 0)
(1.03564 -0.0196358 0)
(1.03963 -0.0170509 0)
(1.04117 -0.0160358 0)
(1.04301 -0.0147706 0)
(1.04476 -0.0136064 0)
(1.04611 -0.0127744 0)
(1.04719 -0.0121371 0)
(1.04813 -0.0115897 0)
(1.04899 -0.0111111 0)
(1.04978 -0.0106952 0)
(1.0505 -0.0103309 0)
(1.05117 -0.0100073 0)
(1.0518 -0.00971693 0)
(1.05239 -0.00945436 0)
(1.05293 -0.00921548 0)
(1.05345 -0.00899696 0)
(1.05392 -0.00879609 0)
(1.05437 -0.00861062 0)
(1.05477 -0.00843862 0)
(1.05514 -0.00827844 0)
(1.05548 -0.00812865 0)
(1.05577 -0.00798798 0)
(1.05602 -0.00785537 0)
(1.05624 -0.00772989 0)
(1.05641 -0.00761076 0)
(1.05655 -0.00749733 0)
(1.05664 -0.00738904 0)
(1.05669 -0.00728542 0)
(1.0567 -0.00718606 0)
(1.05668 -0.00709063 0)
(1.05661 -0.00699882 0)
(1.05651 -0.00691038 0)
(1.05638 -0.00682507 0)
(1.0562 -0.00674271 0)
(1.056 -0.00666312 0)
(1.05576 -0.00658612 0)
(1.05549 -0.00651159 0)
(1.05519 -0.00643938 0)
(1.05486 -0.00636936 0)
(1.0545 -0.00630145 0)
(1.05412 -0.00623551 0)
(1.05371 -0.00617146 0)
(1.05327 -0.00610919 0)
(1.05282 -0.00604864 0)
(1.05234 -0.00598968 0)
(1.05185 -0.00593231 0)
(1.05133 -0.00587637 0)
(1.0508 -0.00582188 0)
(1.0021 -0.0200664 0)
(1.02431 -0.0264458 0)
(1.03827 -0.0201196 0)
(1.04207 -0.0174611 0)
(1.04358 -0.0163138 0)
(1.04545 -0.0149346 0)
(1.0472 -0.0137386 0)
(1.04855 -0.012896 0)
(1.04964 -0.0122442 0)
(1.0506 -0.0116842 0)
(1.05147 -0.0111974 0)
(1.05227 -0.0107755 0)
(1.053 -0.0104061 0)
(1.05367 -0.0100782 0)
(1.05429 -0.00978384 0)
(1.05486 -0.00951751 0)
(1.05537 -0.00927492 0)
(1.05583 -0.0090526 0)
(1.05624 -0.00884774 0)
(1.0566 -0.00865801 0)
(1.05689 -0.00848146 0)
(1.05713 -0.0083164 0)
(1.0573 -0.00816139 0)
(1.05742 -0.00801521 0)
(1.05747 -0.00787681 0)
(1.05746 -0.0077453 0)
(1.05739 -0.00761994 0)
(1.05725 -0.00750012 0)
(1.05706 -0.00738531 0)
(1.0568 -0.00727509 0)
(1.05649 -0.00716908 0)
(1.05613 -0.00706696 0)
(1.05571 -0.00696848 0)
(1.05524 -0.00687338 0)
(1.05472 -0.00678148 0)
(1.05416 -0.00669257 0)
(1.05356 -0.00660651 0)
(1.05292 -0.00652314 0)
(1.05223 -0.00644233 0)
(1.05152 -0.00636395 0)
(1.05077 -0.00628789 0)
(1.04999 -0.00621406 0)
(1.04918 -0.00614232 0)
(1.04834 -0.00607264 0)
(1.04748 -0.00600484 0)
(1.0466 -0.00593894 0)
(1.0457 -0.00587474 0)
(1.04478 -0.00581232 0)
(1.04385 -0.00575145 0)
(1.0429 -0.00569224 0)
(1.00238 -0.0218808 0)
(1.02664 -0.0275565 0)
(1.04101 -0.0206178 0)
(1.04459 -0.0178734 0)
(1.04608 -0.0165777 0)
(1.04798 -0.0150906 0)
(1.04973 -0.0138683 0)
(1.05108 -0.0130152 0)
(1.05218 -0.012349 0)
(1.05316 -0.0117771 0)
(1.05404 -0.0112822 0)
(1.05483 -0.010854 0)
(1.05555 -0.010479 0)
(1.05618 -0.0101455 0)
(1.05673 -0.0098456 0)
(1.0572 -0.00957351 0)
(1.05759 -0.0093248 0)
(1.05789 -0.00909591 0)
(1.05809 -0.00888398 0)
(1.05821 -0.00868668 0)
(1.05823 -0.00850205 0)
(1.05815 -0.00832846 0)
(1.05797 -0.00816452 0)
(1.0577 -0.00800908 0)
(1.05734 -0.00786117 0)
(1.05688 -0.00771998 0)
(1.05633 -0.00758484 0)
(1.0557 -0.00745522 0)
(1.05499 -0.00733064 0)
(1.0542 -0.00721073 0)
(1.05334 -0.00709516 0)
(1.0524 -0.00698366 0)
(1.05141 -0.00687598 0)
(1.05036 -0.00677191 0)
(1.04925 -0.00667126 0)
(1.04809 -0.00657387 0)
(1.04689 -0.00647958 0)
(1.04565 -0.00638826 0)
(1.04437 -0.00629976 0)
(1.04306 -0.00621397 0)
(1.04171 -0.00613077 0)
(1.04034 -0.00605007 0)
(1.03895 -0.00597173 0)
(1.03753 -0.00589571 0)
(1.0361 -0.00582183 0)
(1.03466 -0.00575013 0)
(1.0332 -0.00568035 0)
(1.03173 -0.00561264 0)
(1.03025 -0.00554668 0)
(1.02877 -0.00548269 0)
(1.00268 -0.0238028 0)
(1.02911 -0.0286544 0)
(1.04383 -0.0211342 0)
(1.0472 -0.0182862 0)
(1.04867 -0.0168269 0)
(1.0506 -0.0152394 0)
(1.05236 -0.0139958 0)
(1.05371 -0.0131324 0)
(1.05482 -0.0124517 0)
(1.05579 -0.0118678 0)
(1.05664 -0.0113638 0)
(1.05737 -0.0109275 0)
(1.05797 -0.0105441 0)
(1.05844 -0.0102016 0)
(1.05877 -0.00989212 0)
(1.05896 -0.00960963 0)
(1.059 -0.00934973 0)
(1.05889 -0.00910891 0)
(1.05863 -0.00888438 0)
(1.05822 -0.0086739 0)
(1.05766 -0.00847564 0)
(1.05695 -0.00828811 0)
(1.05611 -0.00811004 0)
(1.05513 -0.00794041 0)
(1.05402 -0.00777838 0)
(1.0528 -0.00762324 0)
(1.05146 -0.00747441 0)
(1.05003 -0.00733144 0)
(1.04849 -0.00719391 0)
(1.04688 -0.00706149 0)
(1.04518 -0.0069339 0)
(1.04342 -0.00681086 0)
(1.04159 -0.00669216 0)
(1.03971 -0.00657759 0)
(1.03778 -0.00646695 0)
(1.03581 -0.00636008 0)
(1.0338 -0.0062568 0)
(1.03177 -0.00615698 0)
(1.02971 -0.00606044 0)
(1.02763 -0.00596707 0)
(1.02553 -0.00587672 0)
(1.02342 -0.0057893 0)
(1.0213 -0.00570463 0)
(1.01918 -0.00562268 0)
(1.01706 -0.00554321 0)
(1.01494 -0.0054663 0)
(1.01282 -0.00539163 0)
(1.01071 -0.00531938 0)
(1.00861 -0.00524914 0)
(1.00652 -0.00518123 0)
(1.00301 -0.0258314 0)
(1.03171 -0.0297378 0)
(1.04674 -0.0216711 0)
(1.04989 -0.0186975 0)
(1.05136 -0.0170615 0)
(1.05333 -0.0153822 0)
(1.05509 -0.0141218 0)
(1.05643 -0.013247 0)
(1.05751 -0.0125503 0)
(1.05838 -0.0119518 0)
(1.05906 -0.0114346 0)
(1.05953 -0.0109845 0)
(1.05977 -0.0105859 0)
(1.05977 -0.010227 0)
(1.05953 -0.00989967 0)
(1.05905 -0.00959839 0)
(1.05833 -0.00931887 0)
(1.05738 -0.00905787 0)
(1.0562 -0.00881286 0)
(1.0548 -0.00858184 0)
(1.05321 -0.00836318 0)
(1.05143 -0.00815557 0)
(1.04948 -0.00795792 0)
(1.04737 -0.00776936 0)
(1.04511 -0.00758913 0)
(1.04273 -0.00741662 0)
(1.04024 -0.00725132 0)
(1.03766 -0.00709278 0)
(1.03498 -0.00694063 0)
(1.03224 -0.00679451 0)
(1.02943 -0.00665414 0)
(1.02658 -0.00651922 0)
(1.02369 -0.00638949 0)
(1.02076 -0.00626472 0)
(1.01782 -0.00614466 0)
(1.01485 -0.00602911 0)
(1.01188 -0.00591786 0)
(1.00891 -0.00581071 0)
(1.00594 -0.00570747 0)
(1.00298 -0.00560798 0)
(1.00003 -0.00551205 0)
(0.997094 -0.00541955 0)
(0.994179 -0.00533026 0)
(0.991285 -0.00524414 0)
(0.988417 -0.00516092 0)
(0.985575 -0.00508064 0)
(0.982762 -0.00500293 0)
(0.97998 -0.00492802 0)
(0.977229 -0.00485538 0)
(0.974512 -0.00478542 0)
(1.00337 -0.0279647 0)
(1.03443 -0.0308073 0)
(1.04974 -0.0222287 0)
(1.05269 -0.0191056 0)
(1.05418 -0.0172826 0)
(1.05618 -0.0155206 0)
(1.05791 -0.014245 0)
(1.05914 -0.0133544 0)
(1.05998 -0.0126348 0)
(1.06047 -0.012013 0)
(1.06059 -0.0114718 0)
(1.06032 -0.0109957 0)
(1.05966 -0.010569 0)
(1.0586 -0.0101806 0)
(1.05717 -0.00982305 0)
(1.05537 -0.00949124 0)
(1.05324 -0.00918146 0)
(1.0508 -0.00889085 0)
(1.04808 -0.00861722 0)
(1.04511 -0.00835882 0)
(1.04192 -0.00811421 0)
(1.03854 -0.00788219 0)
(1.03499 -0.00766178 0)
(1.0313 -0.0074521 0)
(1.02749 -0.00725242 0)
(1.02359 -0.00706211 0)
(1.01962 -0.00688059 0)
(1.01559 -0.00670737 0)
(1.01151 -0.00654197 0)
(1.00742 -0.00638397 0)
(1.00331 -0.00623299 0)
(0.999196 -0.00608863 0)
(0.995094 -0.00595056 0)
(0.991008 -0.00581845 0)
(0.986947 -0.00569197 0)
(0.982918 -0.00557083 0)
(0.978925 -0.00545475 0)
(0.974973 -0.00534348 0)
(0.971066 -0.00523675 0)
(0.967208 -0.00513434 0)
(0.963401 -0.00503601 0)
(0.959648 -0.00494159 0)
(0.955951 -0.00485081 0)
(0.95231 -0.00476359 0)
(0.948727 -0.00467961 0)
(0.945203 -0.0045989 0)
(0.941739 -0.00452105 0)
(0.938334 -0.00444627 0)
(0.934989 -0.00437398 0)
(0.931704 -0.0043046 0)
(1.00374 -0.0302003 0)
(1.03727 -0.0318647 0)
(1.05284 -0.0228075 0)
(1.05565 -0.0195108 0)
(1.05718 -0.0174919 0)
(1.05912 -0.015652 0)
(1.06058 -0.0143545 0)
(1.06129 -0.0134333 0)
(1.06132 -0.0126736 0)
(1.0607 -0.0120091 0)
(1.05944 -0.0114236 0)
(1.05754 -0.0109015 0)
(1.05504 -0.0104284 0)
(1.05198 -0.00999431 0)
(1.04844 -0.00959269 0)
(1.04445 -0.00921915 0)
(1.0401 -0.00887042 0)
(1.03542 -0.00854391 0)
(1.03048 -0.00823753 0)
(1.02533 -0.00794954 0)
(1.02001 -0.00767842 0)
(1.01456 -0.00742287 0)
(1.00902 -0.00718171 0)
(1.00342 -0.00695391 0)
(0.997788 -0.00673854 0)
(0.992142 -0.00653477 0)
(0.986507 -0.00634183 0)
(0.980899 -0.00615902 0)
(0.975333 -0.00598571 0)
(0.969822 -0.00582128 0)
(0.964374 -0.00566519 0)
(0.958999 -0.00551691 0)
(0.953703 -0.00537596 0)
(0.948492 -0.00524187 0)
(0.943369 -0.00511423 0)
(0.938338 -0.00499265 0)
(0.933401 -0.00487675 0)
(0.928559 -0.00476619 0)
(0.923814 -0.00466064 0)
(0.919166 -0.00455983 0)
(0.914614 -0.00446345 0)
(0.910159 -0.00437128 0)
(0.905799 -0.00428303 0)
(0.901535 -0.00419857 0)
(0.897363 -0.00411754 0)
(0.893285 -0.00403995 0)
(0.889297 -0.00396536 0)
(0.885399 -0.00389394 0)
(0.881587 -0.00382513 0)
(0.877864 -0.00375927 0)
(1.00412 -0.0325347 0)
(1.04027 -0.032914 0)
(1.05618 -0.0234111 0)
(1.05889 -0.0199133 0)
(1.06028 -0.0176827 0)
(1.06167 -0.0157542 0)
(1.06205 -0.0144094 0)
(1.06118 -0.0134251 0)
(1.05915 -0.0125924 0)
(1.05607 -0.0118544 0)
(1.05203 -0.0111974 0)
(1.04715 -0.0106071 0)
(1.04154 -0.0100705 0)
(1.03533 -0.00957857 0)
(1.02864 -0.00912549 0)
(1.02158 -0.00870685 0)
(1.01424 -0.00831917 0)
(1.0067 -0.0079595 0)
(0.999041 -0.00762527 0)
(0.991314 -0.00731422 0)
(0.98357 -0.00702433 0)
(0.975849 -0.0067538 0)
(0.968184 -0.006501 0)
(0.960603 -0.00626448 0)
(0.953126 -0.00604292 0)
(0.945771 -0.00583515 0)
(0.938549 -0.00564009 0)
(0.931472 -0.00545677 0)
(0.924546 -0.00528431 0)
(0.917775 -0.00512188 0)
(0.911163 -0.00496876 0)
(0.904712 -0.00482424 0)
(0.898421 -0.00468772 0)
(0.892289 -0.00455861 0)
(0.886316 -0.00443639 0)
(0.880499 -0.00432057 0)
(0.874836 -0.00421071 0)
(0.869322 -0.0041064 0)
(0.863957 -0.00400727 0)
(0.858735 -0.00391299 0)
(0.853653 -0.00382321 0)
(0.848708 -0.00373769 0)
(0.843895 -0.0036561 0)
(0.839212 -0.00357828 0)
(0.834654 -0.00350388 0)
(0.830219 -0.00343287 0)
(0.825901 -0.00336481 0)
(0.821698 -0.00329983 0)
(0.817605 -0.00323741 0)
(0.813622 -0.00317779 0)
(1.00451 -0.0349653 0)
(1.0436 -0.0339676 0)
(1.05994 -0.024046 0)
(1.06224 -0.0202981 0)
(1.06255 -0.0178122 0)
(1.0619 -0.0157523 0)
(1.05935 -0.0143065 0)
(1.05483 -0.0132075 0)
(1.04865 -0.0122596 0)
(1.04114 -0.0114166 0)
(1.03256 -0.0106674 0)
(1.02317 -0.00999786 0)
(1.0132 -0.00939504 0)
(1.00284 -0.00884927 0)
(0.992256 -0.00835349 0)
(0.981573 -0.00790198 0)
(0.970895 -0.00748987 0)
(0.9603 -0.00711291 0)
(0.949847 -0.00676735 0)
(0.939583 -0.00644991 0)
(0.929539 -0.00615768 0)
(0.919738 -0.00588811 0)
(0.910196 -0.00563894 0)
(0.900922 -0.00540818 0)
(0.891921 -0.0051941 0)
(0.883194 -0.00499512 0)
(0.87474 -0.00480989 0)
(0.866555 -0.00463717 0)
(0.858635 -0.00447586 0)
(0.850973 -0.00432499 0)
(0.843561 -0.00418365 0)
(0.836394 -0.00405106 0)
(0.829462 -0.0039265 0)
(0.822757 -0.00380932 0)
(0.816272 -0.00369894 0)
(0.809999 -0.00359482 0)
(0.80393 -0.00349648 0)
(0.798056 -0.0034035 0)
(0.79237 -0.00331547 0)
(0.786866 -0.00323205 0)
(0.781535 -0.00315289 0)
(0.776371 -0.00307774 0)
(0.771368 -0.00300625 0)
(0.76652 -0.00293828 0)
(0.761819 -0.00287348 0)
(0.757261 -0.00281179 0)
(0.75284 -0.00275282 0)
(0.748551 -0.00269664 0)
(0.744387 -0.00264283 0)
(0.740348 -0.00259148 0)
(1.00506 -0.0375013 0)
(1.04763 -0.0350477 0)
(1.06396 -0.024697 0)
(1.0642 -0.0205878 0)
(1.06073 -0.017748 0)
(1.05485 -0.015474 0)
(1.04612 -0.0138549 0)
(1.03497 -0.0125909 0)
(1.02212 -0.0115016 0)
(1.00816 -0.0105475 0)
(0.993546 -0.00971455 0)
(0.978637 -0.00898478 0)
(0.963693 -0.00834119 0)
(0.948906 -0.00777052 0)
(0.934408 -0.00726236 0)
(0.92029 -0.00680818 0)
(0.906611 -0.00640076 0)
(0.893403 -0.00603398 0)
(0.880683 -0.00570264 0)
(0.868455 -0.00540229 0)
(0.856716 -0.00512916 0)
(0.845454 -0.00488001 0)
(0.834657 -0.00465206 0)
(0.824307 -0.00444295 0)
(0.814388 -0.00425061 0)
(0.80488 -0.00407328 0)
(0.795765 -0.0039094 0)
(0.787024 -0.00375762 0)
(0.77864 -0.00361676 0)
(0.770593 -0.00348577 0)
(0.762868 -0.00336372 0)
(0.755448 -0.00324979 0)
(0.748317 -0.00314326 0)
(0.741462 -0.00304347 0)
(0.734867 -0.00294984 0)
(0.72852 -0.00286186 0)
(0.722409 -0.00277906 0)
(0.716521 -0.00270102 0)
(0.710846 -0.00262737 0)
(0.705374 -0.00255779 0)
(0.700094 -0.00249194 0)
(0.694997 -0.00242958 0)
(0.690076 -0.00237042 0)
(0.685321 -0.0023143 0)
(0.680725 -0.00226091 0)
(0.676282 -0.00221019 0)
(0.671983 -0.00216183 0)
(0.667823 -0.00211581 0)
(0.663794 -0.00207185 0)
(0.659895 -0.00202989 0)
(1.00635 -0.0401786 0)
(1.05241 -0.0361462 0)
(1.06606 -0.0252448 0)
(1.05955 -0.0205573 0)
(1.04694 -0.0172108 0)
(1.03092 -0.0146349 0)
(1.01207 -0.0128012 0)
(0.991438 -0.0113729 0)
(0.970098 -0.0101736 0)
(0.948773 -0.00915714 0)
(0.927903 -0.00829712 0)
(0.907747 -0.00756511 0)
(0.88845 -0.00693646 0)
(0.870079 -0.00639224 0)
(0.852652 -0.00591788 0)
(0.836154 -0.00550184 0)
(0.820553 -0.00513483 0)
(0.805808 -0.00480927 0)
(0.791869 -0.004519 0)
(0.778688 -0.00425895 0)
(0.766217 -0.00402492 0)
(0.754408 -0.00381343 0)
(0.743218 -0.00362159 0)
(0.732603 -0.00344695 0)
(0.722526 -0.00328744 0)
(0.712949 -0.00314131 0)
(0.703839 -0.00300705 0)
(0.695166 -0.00288337 0)
(0.6869 -0.00276914 0)
(0.679016 -0.00266339 0)
(0.671487 -0.00256527 0)
(0.664293 -0.00247403 0)
(0.657412 -0.00238902 0)
(0.650826 -0.00230964 0)
(0.644516 -0.0022354 0)
(0.638466 -0.00216583 0)
(0.632661 -0.00210053 0)
(0.627087 -0.00203915 0)
(0.621731 -0.00198135 0)
(0.616582 -0.00192686 0)
(0.611627 -0.00187541 0)
(0.606857 -0.00182678 0)
(0.602262 -0.00178073 0)
(0.597833 -0.00173712 0)
(0.593562 -0.00169571 0)
(0.58944 -0.00165642 0)
(0.58546 -0.00161904 0)
(0.581617 -0.00158347 0)
(0.5779 -0.00154961 0)
(0.57431 -0.00151721 0)
(1.00941 -0.0430466 0)
(1.05564 -0.0370931 0)
(1.05868 -0.0253219 0)
(1.03634 -0.0197535 0)
(1.00719 -0.0157857 0)
(0.976222 -0.0129194 0)
(0.94475 -0.0109461 0)
(0.913951 -0.00946132 0)
(0.884676 -0.00826915 0)
(0.857305 -0.00730121 0)
(0.831911 -0.00651177 0)
(0.808428 -0.00586021 0)
(0.786735 -0.00531497 0)
(0.766686 -0.00485315 0)
(0.748135 -0.00445801 0)
(0.730941 -0.00411686 0)
(0.714974 -0.00381995 0)
(0.700115 -0.00355964 0)
(0.68626 -0.00332989 0)
(0.673315 -0.00312588 0)
(0.661194 -0.00294374 0)
(0.649824 -0.00278029 0)
(0.63914 -0.00263296 0)
(0.629081 -0.00249958 0)
(0.619595 -0.00237839 0)
(0.610636 -0.00226788 0)
(0.602161 -0.00216676 0)
(0.594133 -0.00207398 0)
(0.586517 -0.00198858 0)
(0.579283 -0.00190978 0)
(0.572403 -0.00183688 0)
(0.565852 -0.00176928 0)
(0.559607 -0.00170644 0)
(0.553648 -0.00164792 0)
(0.547955 -0.00159329 0)
(0.542512 -0.00154221 0)
(0.537302 -0.00149435 0)
(0.532312 -0.00144945 0)
(0.527527 -0.00140723 0)
(0.522936 -0.0013675 0)
(0.518527 -0.00133003 0)
(0.51429 -0.00129468 0)
(0.510216 -0.00126124 0)
(0.506295 -0.00122961 0)
(0.50252 -0.00119961 0)
(0.498882 -0.00117118 0)
(0.495374 -0.00114417 0)
(0.491991 -0.00111847 0)
(0.488724 -0.00109408 0)
(0.485572 -0.00107064 0)
(1.01435 -0.0460971 0)
(1.04798 -0.0373382 0)
(1.02459 -0.0241815 0)
(0.974727 -0.0175503 0)
(0.923571 -0.0131002 0)
(0.876894 -0.0101951 0)
(0.834793 -0.00833388 0)
(0.797116 -0.00701037 0)
(0.763635 -0.00599923 0)
(0.733903 -0.00521178 0)
(0.707403 -0.0045903 0)
(0.683664 -0.00409022 0)
(0.662286 -0.00367998 0)
(0.642935 -0.00333804 0)
(0.625336 -0.00304928 0)
(0.609259 -0.00280269 0)
(0.594512 -0.00259005 0)
(0.580935 -0.00240509 0)
(0.568389 -0.00224295 0)
(0.556761 -0.00209984 0)
(0.54595 -0.00197273 0)
(0.535873 -0.0018592 0)
(0.526455 -0.00175729 0)
(0.517634 -0.00166538 0)
(0.509352 -0.00158214 0)
(0.501562 -0.00150647 0)
(0.49422 -0.00143743 0)
(0.487289 -0.00137423 0)
(0.480734 -0.0013162 0)
(0.474525 -0.00126276 0)
(0.468635 -0.00121342 0)
(0.46304 -0.00116774 0)
(0.457719 -0.00112536 0)
(0.452652 -0.00108595 0)
(0.44782 -0.00104921 0)
(0.443208 -0.00101491 0)
(0.438802 -0.000982807 0)
(0.434588 -0.000952721 0)
(0.430553 -0.000924471 0)
(0.426687 -0.000897908 0)
(0.422979 -0.000872886 0)
(0.419421 -0.000849294 0)
(0.416002 -0.000827001 0)
(0.412717 -0.000805933 0)
(0.409555 -0.000785972 0)
(0.406513 -0.000767059 0)
(0.403582 -0.000749117 0)
(0.400757 -0.000732026 0)
(0.398032 -0.000715867 0)
(0.395404 -0.000700234 0)
(1.01554 -0.0489528 0)
(1.0065 -0.0357217 0)
(0.935914 -0.0208153 0)
(0.852074 -0.0134934 0)
(0.782343 -0.00919202 0)
(0.727247 -0.00677664 0)
(0.682215 -0.00537989 0)
(0.644516 -0.0044384 0)
(0.612564 -0.00374378 0)
(0.585163 -0.00321817 0)
(0.561372 -0.00281238 0)
(0.540483 -0.00249096 0)
(0.521967 -0.00223033 0)
(0.505422 -0.00201507 0)
(0.490533 -0.00183463 0)
(0.477051 -0.00168151 0)
(0.464778 -0.00155016 0)
(0.45355 -0.00143642 0)
(0.443234 -0.00133711 0)
(0.433718 -0.00124975 0)
(0.42491 -0.00117239 0)
(0.416731 -0.00110349 0)
(0.409113 -0.00104178 0)
(0.401998 -0.00098625 0)
(0.395338 -0.000936058 0)
(0.389089 -0.000890507 0)
(0.383213 -0.000849015 0)
(0.377677 -0.00081109 0)
(0.372451 -0.000776313 0)
(0.367509 -0.000744329 0)
(0.36283 -0.00071483 0)
(0.358391 -0.000687552 0)
(0.354175 -0.000662266 0)
(0.350165 -0.00063877 0)
(0.346347 -0.000616891 0)
(0.342706 -0.000596475 0)
(0.339231 -0.000577388 0)
(0.33591 -0.00055951 0)
(0.332734 -0.000542734 0)
(0.329694 -0.00052697 0)
(0.32678 -0.00051213 0)
(0.323986 -0.000498145 0)
(0.321304 -0.000484939 0)
(0.318727 -0.000472462 0)
(0.31625 -0.000460651 0)
(0.313867 -0.000449457 0)
(0.311573 -0.000438858 0)
(0.309364 -0.000428737 0)
(0.307232 -0.000419218 0)
(0.305179 -0.000409907 0)
(0.991208 -0.0499549 0)
(0.890934 -0.0305611 0)
(0.762526 -0.0146082 0)
(0.656602 -0.00796793 0)
(0.585538 -0.00487631 0)
(0.536212 -0.00347088 0)
(0.498367 -0.00273446 0)
(0.467787 -0.00224012 0)
(0.442523 -0.00187648 0)
(0.421263 -0.00160507 0)
(0.403058 -0.00139791 0)
(0.38724 -0.00123492 0)
(0.373333 -0.00110332 0)
(0.360988 -0.000995006 0)
(0.349941 -0.000904488 0)
(0.339984 -0.000827874 0)
(0.330955 -0.000762305 0)
(0.322723 -0.000705639 0)
(0.315183 -0.000656247 0)
(0.308245 -0.000612867 0)
(0.301839 -0.000574508 0)
(0.295901 -0.000540382 0)
(0.290382 -0.000509854 0)
(0.285236 -0.000482411 0)
(0.280426 -0.000457629 0)
(0.275918 -0.000435156 0)
(0.271685 -0.000414702 0)
(0.267701 -0.000396019 0)
(0.263945 -0.000378899 0)
(0.260397 -0.000363163 0)
(0.257039 -0.000348658 0)
(0.253857 -0.000335252 0)
(0.250837 -0.000322832 0)
(0.247967 -0.000311296 0)
(0.245235 -0.000300559 0)
(0.242632 -0.000290545 0)
(0.24015 -0.000281186 0)
(0.237779 -0.000272423 0)
(0.235512 -0.000264204 0)
(0.233343 -0.000256483 0)
(0.231265 -0.000249217 0)
(0.229274 -0.000242371 0)
(0.227363 -0.000235909 0)
(0.225528 -0.000229805 0)
(0.223765 -0.000224031 0)
(0.222069 -0.000218553 0)
(0.220437 -0.000213381 0)
(0.218866 -0.000208421 0)
(0.217351 -0.000203791 0)
(0.215891 -0.000199188 0)
(0.884863 -0.0434929 0)
(0.650159 -0.0201482 0)
(0.494009 -0.00660373 0)
(0.403613 -0.00275368 0)
(0.354931 -0.00154674 0)
(0.323649 -0.00113034 0)
(0.299784 -0.000907855 0)
(0.280612 -0.000743249 0)
(0.264934 -0.000620581 0)
(0.251848 -0.000530155 0)
(0.240702 -0.000461536 0)
(0.231053 -0.00040755 0)
(0.222596 -0.000363938 0)
(0.215108 -0.000328041 0)
(0.208422 -0.000298055 0)
(0.202408 -0.000272687 0)
(0.196963 -0.000250985 0)
(0.192006 -0.000232238 0)
(0.187471 -0.000215905 0)
(0.183303 -0.000201566 0)
(0.179458 -0.000188892 0)
(0.175898 -0.00017762 0)
(0.172591 -0.000167541 0)
(0.169511 -0.000158482 0)
(0.166633 -0.000150305 0)
(0.163938 -0.000142891 0)
(0.161409 -0.000136145 0)
(0.15903 -0.000129984 0)
(0.156787 -0.000124341 0)
(0.15467 -0.000119154 0)
(0.152668 -0.000114375 0)
(0.150771 -0.000109959 0)
(0.148971 -0.000105868 0)
(0.147261 -0.00010207 0)
(0.145635 -9.85356e-05 0)
(0.144085 -9.52397e-05 0)
(0.142608 -9.21603e-05 0)
(0.141197 -8.92778e-05 0)
(0.139849 -8.65744e-05 0)
(0.138559 -8.40353e-05 0)
(0.137324 -8.16465e-05 0)
(0.13614 -7.93961e-05 0)
(0.135004 -7.72729e-05 0)
(0.133914 -7.52657e-05 0)
(0.132866 -7.33709e-05 0)
(0.131859 -7.15681e-05 0)
(0.13089 -6.98755e-05 0)
(0.129957 -6.82369e-05 0)
(0.129057 -6.67294e-05 0)
(0.128191 -6.51893e-05 0)
(0.553414 -0.0169781 0)
(0.251424 -0.00340033 0)
(0.165941 -0.000318882 0)
(0.132468 -4.89548e-05 0)
(0.117374 -4.40043e-05 0)
(0.107428 -5.21641e-05 0)
(0.0994709 -4.43586e-05 0)
(0.0930413 -3.52758e-05 0)
(0.0878115 -2.92328e-05 0)
(0.0834564 -2.50919e-05 0)
(0.0797478 -2.19286e-05 0)
(0.0765379 -1.9394e-05 0)
(0.0737256 -1.73278e-05 0)
(0.0712367 -1.56209e-05 0)
(0.0690151 -1.41922e-05 0)
(0.0670176 -1.29817e-05 0)
(0.0652099 -1.19451e-05 0)
(0.0635648 -1.1049e-05 0)
(0.0620602 -1.02679e-05 0)
(0.0606781 -9.58208e-06 0)
(0.0594033 -8.97581e-06 0)
(0.0582234 -8.43659e-06 0)
(0.0571277 -7.9544e-06 0)
(0.0561072 -7.52104e-06 0)
(0.0551542 -7.12976e-06 0)
(0.0542619 -6.77498e-06 0)
(0.0534247 -6.45217e-06 0)
(0.0526373 -6.15743e-06 0)
(0.0518954 -5.88744e-06 0)
(0.051195 -5.63934e-06 0)
(0.0505328 -5.41084e-06 0)
(0.0499055 -5.19978e-06 0)
(0.0493105 -5.0044e-06 0)
(0.0487452 -4.82309e-06 0)
(0.0482076 -4.65439e-06 0)
(0.0476955 -4.49725e-06 0)
(0.0472073 -4.35051e-06 0)
(0.0467412 -4.21327e-06 0)
(0.0462958 -4.08453e-06 0)
(0.0458697 -3.9637e-06 0)
(0.0454618 -3.85022e-06 0)
(0.0450708 -3.74306e-06 0)
(0.0446958 -3.64261e-06 0)
(0.0443359 -3.54648e-06 0)
(0.04399 -3.45811e-06 0)
(0.0436575 -3.37007e-06 0)
(0.0433375 -3.29405e-06 0)
(0.0430296 -3.21016e-06 0)
(0.0427327 -3.14692e-06 0)
(0.0424468 -3.06376e-06 0)
(1.00645 0.0017596 0)
(1.00654 0.00175298 0)
(1.00662 0.00174802 0)
(1.00671 0.00174485 0)
(1.0068 0.00174354 0)
(1.00688 0.00174414 0)
(1.00697 0.00174666 0)
(1.00705 0.00175105 0)
(1.00714 0.00175724 0)
(1.00722 0.00176512 0)
(1.00731 0.00177456 0)
(1.00739 0.00178542 0)
(1.00748 0.00179751 0)
(1.00756 0.00181067 0)
(1.00764 0.00182472 0)
(1.00772 0.00183948 0)
(1.00781 0.00185476 0)
(1.00789 0.00187041 0)
(1.00797 0.00188626 0)
(1.00805 0.00190217 0)
(1.00813 0.00191801 0)
(1.00821 0.00193365 0)
(1.00828 0.00194899 0)
(1.00836 0.00196394 0)
(1.00844 0.00197841 0)
(1.00852 0.00199233 0)
(1.00859 0.00200562 0)
(1.00867 0.00201822 0)
(1.00874 0.00203005 0)
(1.00882 0.00204103 0)
(1.00889 0.00205108 0)
(1.00896 0.00206011 0)
(1.00903 0.00206802 0)
(1.0091 0.00207471 0)
(1.00917 0.00208007 0)
(1.00924 0.00208401 0)
(1.00931 0.00208641 0)
(1.00938 0.00208721 0)
(1.00945 0.00208632 0)
(1.00951 0.00208371 0)
(1.00958 0.00207934 0)
(1.00964 0.00207322 0)
(1.00971 0.00206538 0)
(1.00977 0.00205589 0)
(1.00983 0.00204482 0)
(1.0099 0.0020323 0)
(1.00996 0.00201846 0)
(1.01002 0.00200346 0)
(1.01008 0.00198746 0)
(1.01014 0.00197066 0)
(1.0102 0.00195324 0)
(1.01026 0.0019354 0)
(1.01031 0.00191735 0)
(1.01037 0.00189931 0)
(1.01043 0.00188148 0)
(1.01049 0.00186407 0)
(1.01054 0.00184732 0)
(1.0106 0.00183144 0)
(1.01066 0.00181665 0)
(1.01071 0.00180317 0)
(1.01077 0.00179122 0)
(1.01083 0.00178102 0)
(1.01088 0.00177277 0)
(1.01094 0.00176666 0)
(1.011 0.00176289 0)
(1.01105 0.00176161 0)
(1.01111 0.00176298 0)
(1.01117 0.00176713 0)
(1.01123 0.00177416 0)
(1.01129 0.00178417 0)
(1.01134 0.00179721 0)
(1.0114 0.00181334 0)
(1.01146 0.00183255 0)
(1.01153 0.00185483 0)
(1.01159 0.00188013 0)
(1.01165 0.00190838 0)
(1.01171 0.00193945 0)
(1.01178 0.00197318 0)
(1.01184 0.00200937 0)
(1.01191 0.00204777 0)
(1.01198 0.00208811 0)
(1.01204 0.00213003 0)
(1.01211 0.00217316 0)
(1.01218 0.00221709 0)
(1.01225 0.00226137 0)
(1.01232 0.00230553 0)
(1.0124 0.00234906 0)
(1.01247 0.00239147 0)
(1.01254 0.00243226 0)
(1.01262 0.00247092 0)
(1.0127 0.00250699 0)
(1.01277 0.00254001 0)
(1.01285 0.0025696 0)
(1.01293 0.00259535 0)
(1.01301 0.002617 0)
(1.01309 0.00263422 0)
(1.01317 0.00264693 0)
(1.01325 0.0026548 0)
(1.01333 0.00265807 0)
(1.01342 0.00265626 0)
(1.00646 0.00149278 0)
(1.00654 0.00148694 0)
(1.00663 0.0014828 0)
(1.00671 0.00148048 0)
(1.0068 0.00148008 0)
(1.00688 0.00148163 0)
(1.00697 0.00148513 0)
(1.00705 0.00149055 0)
(1.00713 0.00149781 0)
(1.00722 0.0015068 0)
(1.0073 0.0015174 0)
(1.00738 0.00152944 0)
(1.00746 0.00154278 0)
(1.00755 0.00155722 0)
(1.00763 0.0015726 0)
(1.00771 0.00158873 0)
(1.00779 0.00160544 0)
(1.00787 0.00162256 0)
(1.00795 0.00163993 0)
(1.00803 0.00165741 0)
(1.00811 0.00167486 0)
(1.00818 0.00169217 0)
(1.00826 0.00170923 0)
(1.00834 0.00172594 0)
(1.00842 0.00174222 0)
(1.00849 0.00175798 0)
(1.00857 0.00177317 0)
(1.00864 0.00178769 0)
(1.00872 0.00180148 0)
(1.00879 0.00181445 0)
(1.00886 0.00182652 0)
(1.00894 0.00183759 0)
(1.00901 0.00184757 0)
(1.00908 0.00185634 0)
(1.00915 0.0018638 0)
(1.00922 0.00186984 0)
(1.00929 0.00187436 0)
(1.00936 0.00187726 0)
(1.00943 0.00187848 0)
(1.00949 0.00187795 0)
(1.00956 0.00187565 0)
(1.00963 0.00187158 0)
(1.00969 0.00186576 0)
(1.00976 0.00185823 0)
(1.00982 0.00184909 0)
(1.00989 0.00183844 0)
(1.00995 0.00182641 0)
(1.01001 0.00181314 0)
(1.01007 0.0017988 0)
(1.01014 0.00178356 0)
(1.0102 0.00176761 0)
(1.01026 0.00175113 0)
(1.01032 0.00173434 0)
(1.01038 0.00171743 0)
(1.01044 0.0017006 0)
(1.0105 0.00168407 0)
(1.01056 0.00166805 0)
(1.01062 0.00165275 0)
(1.01068 0.00163839 0)
(1.01073 0.00162519 0)
(1.01079 0.00161335 0)
(1.01085 0.0016031 0)
(1.01091 0.00159463 0)
(1.01097 0.00158814 0)
(1.01103 0.0015838 0)
(1.01109 0.0015818 0)
(1.01115 0.00158227 0)
(1.01121 0.00158536 0)
(1.01127 0.00159117 0)
(1.01133 0.00159979 0)
(1.01139 0.0016113 0)
(1.01145 0.00162574 0)
(1.01151 0.00164312 0)
(1.01157 0.00166344 0)
(1.01163 0.00168665 0)
(1.0117 0.00171269 0)
(1.01176 0.00174143 0)
(1.01183 0.00177275 0)
(1.01189 0.00180643 0)
(1.01196 0.00184226 0)
(1.01202 0.00187995 0)
(1.01209 0.00191919 0)
(1.01216 0.0019596 0)
(1.01223 0.0020008 0)
(1.0123 0.00204234 0)
(1.01237 0.00208378 0)
(1.01244 0.00212462 0)
(1.01252 0.0021644 0)
(1.01259 0.00220261 0)
(1.01266 0.00223878 0)
(1.01274 0.00227246 0)
(1.01282 0.00230321 0)
(1.01289 0.00233065 0)
(1.01297 0.00235439 0)
(1.01305 0.00237419 0)
(1.01312 0.00238972 0)
(1.0132 0.00240091 0)
(1.01328 0.00240745 0)
(1.01336 0.00240956 0)
(1.01344 0.00240681 0)
(1.00648 0.00123847 0)
(1.00656 0.00123338 0)
(1.00664 0.00123003 0)
(1.00673 0.00122853 0)
(1.00681 0.00122898 0)
(1.00689 0.0012314 0)
(1.00698 0.0012358 0)
(1.00706 0.00124215 0)
(1.00714 0.00125036 0)
(1.00722 0.00126032 0)
(1.00731 0.00127192 0)
(1.00739 0.00128499 0)
(1.00747 0.00129938 0)
(1.00755 0.00131491 0)
(1.00763 0.00133141 0)
(1.00771 0.00134869 0)
(1.00779 0.00136658 0)
(1.00787 0.00138491 0)
(1.00795 0.00140354 0)
(1.00802 0.00142231 0)
(1.0081 0.00144109 0)
(1.00818 0.00145977 0)
(1.00826 0.00147823 0)
(1.00833 0.00149637 0)
(1.00841 0.00151413 0)
(1.00849 0.0015314 0)
(1.00856 0.00154812 0)
(1.00864 0.00156422 0)
(1.00871 0.00157961 0)
(1.00879 0.00159421 0)
(1.00886 0.00160793 0)
(1.00893 0.00162068 0)
(1.009 0.00163235 0)
(1.00908 0.00164283 0)
(1.00915 0.00165201 0)
(1.00922 0.00165978 0)
(1.00929 0.00166604 0)
(1.00936 0.0016707 0)
(1.00943 0.00167366 0)
(1.0095 0.00167488 0)
(1.00956 0.00167432 0)
(1.00963 0.00167197 0)
(1.0097 0.00166785 0)
(1.00976 0.001662 0)
(1.00983 0.00165451 0)
(1.0099 0.00164547 0)
(1.00996 0.00163499 0)
(1.01002 0.00162323 0)
(1.01009 0.00161034 0)
(1.01015 0.00159648 0)
(1.01022 0.00158183 0)
(1.01028 0.00156658 0)
(1.01034 0.00155092 0)
(1.0104 0.00153504 0)
(1.01046 0.00151915 0)
(1.01052 0.00150345 0)
(1.01059 0.00148814 0)
(1.01065 0.00147343 0)
(1.01071 0.00145954 0)
(1.01077 0.00144667 0)
(1.01083 0.00143503 0)
(1.01089 0.00142484 0)
(1.01095 0.00141629 0)
(1.01101 0.00140958 0)
(1.01107 0.00140488 0)
(1.01113 0.00140237 0)
(1.01119 0.00140219 0)
(1.01125 0.00140448 0)
(1.01131 0.00140935 0)
(1.01137 0.0014169 0)
(1.01144 0.0014272 0)
(1.0115 0.00144029 0)
(1.01156 0.00145621 0)
(1.01162 0.00147495 0)
(1.01169 0.00149647 0)
(1.01175 0.00152071 0)
(1.01182 0.00154757 0)
(1.01188 0.0015769 0)
(1.01195 0.00160853 0)
(1.01201 0.00164224 0)
(1.01208 0.00167775 0)
(1.01215 0.00171477 0)
(1.01222 0.00175294 0)
(1.01229 0.00179188 0)
(1.01236 0.00183116 0)
(1.01243 0.00187035 0)
(1.0125 0.00190899 0)
(1.01257 0.0019466 0)
(1.01264 0.00198271 0)
(1.01272 0.00201686 0)
(1.01279 0.0020486 0)
(1.01287 0.00207753 0)
(1.01294 0.00210325 0)
(1.01302 0.00212542 0)
(1.01309 0.00214378 0)
(1.01317 0.00215802 0)
(1.01324 0.00216808 0)
(1.01332 0.00217366 0)
(1.0134 0.00217498 0)
(1.01348 0.00217161 0)
(1.00651 0.000995342 0)
(1.00659 0.000991001 0)
(1.00668 0.000988417 0)
(1.00676 0.000987705 0)
(1.00684 0.000988946 0)
(1.00692 0.000992181 0)
(1.007 0.000997407 0)
(1.00709 0.00100458 0)
(1.00717 0.00101364 0)
(1.00725 0.00102447 0)
(1.00733 0.00103693 0)
(1.00741 0.0010509 0)
(1.00749 0.00106619 0)
(1.00757 0.00108264 0)
(1.00765 0.00110008 0)
(1.00773 0.00111832 0)
(1.00781 0.0011372 0)
(1.00788 0.00115654 0)
(1.00796 0.00117621 0)
(1.00804 0.00119604 0)
(1.00812 0.00121591 0)
(1.0082 0.00123571 0)
(1.00827 0.00125531 0)
(1.00835 0.00127464 0)
(1.00842 0.0012936 0)
(1.0085 0.0013121 0)
(1.00858 0.00133008 0)
(1.00865 0.00134746 0)
(1.00872 0.00136416 0)
(1.0088 0.00138009 0)
(1.00887 0.00139516 0)
(1.00895 0.00140929 0)
(1.00902 0.00142235 0)
(1.00909 0.00143424 0)
(1.00916 0.00144485 0)
(1.00923 0.00145406 0)
(1.0093 0.00146177 0)
(1.00937 0.00146788 0)
(1.00944 0.00147232 0)
(1.00951 0.00147501 0)
(1.00958 0.00147592 0)
(1.00965 0.00147504 0)
(1.00972 0.00147238 0)
(1.00979 0.00146798 0)
(1.00985 0.00146192 0)
(1.00992 0.00145428 0)
(1.00999 0.00144517 0)
(1.01005 0.00143475 0)
(1.01012 0.00142314 0)
(1.01018 0.00141052 0)
(1.01025 0.00139706 0)
(1.01031 0.00138293 0)
(1.01038 0.00136832 0)
(1.01044 0.00135341 0)
(1.0105 0.00133841 0)
(1.01056 0.00132351 0)
(1.01063 0.00130891 0)
(1.01069 0.00129481 0)
(1.01075 0.00128142 0)
(1.01081 0.00126894 0)
(1.01087 0.00125758 0)
(1.01094 0.00124755 0)
(1.011 0.00123904 0)
(1.01106 0.00123225 0)
(1.01112 0.00122734 0)
(1.01118 0.00122449 0)
(1.01124 0.00122385 0)
(1.01131 0.00122555 0)
(1.01137 0.00122972 0)
(1.01143 0.00123644 0)
(1.01149 0.00124579 0)
(1.01156 0.00125783 0)
(1.01162 0.00127258 0)
(1.01168 0.00129004 0)
(1.01175 0.00131018 0)
(1.01181 0.00133296 0)
(1.01188 0.00135826 0)
(1.01194 0.00138596 0)
(1.01201 0.00141589 0)
(1.01208 0.00144783 0)
(1.01214 0.00148154 0)
(1.01221 0.00151671 0)
(1.01228 0.001553 0)
(1.01235 0.00159005 0)
(1.01242 0.00162745 0)
(1.01249 0.00166477 0)
(1.01256 0.00170157 0)
(1.01263 0.00173738 0)
(1.0127 0.00177176 0)
(1.01278 0.00180425 0)
(1.01285 0.00183442 0)
(1.01292 0.00186187 0)
(1.013 0.00188623 0)
(1.01307 0.00190715 0)
(1.01315 0.0019244 0)
(1.01322 0.00193767 0)
(1.0133 0.0019469 0)
(1.01337 0.0019518 0)
(1.01345 0.0019526 0)
(1.01352 0.00194887 0)
(1.00656 0.000762345 0)
(1.00664 0.000758737 0)
(1.00672 0.000756896 0)
(1.0068 0.000756933 0)
(1.00688 0.000758927 0)
(1.00697 0.000762916 0)
(1.00705 0.000768898 0)
(1.00713 0.000776833 0)
(1.00721 0.000786646 0)
(1.00729 0.000798232 0)
(1.00737 0.000811464 0)
(1.00745 0.000826195 0)
(1.00753 0.000842262 0)
(1.0076 0.000859497 0)
(1.00768 0.000877726 0)
(1.00776 0.000896774 0)
(1.00784 0.000916473 0)
(1.00792 0.000936659 0)
(1.008 0.000957178 0)
(1.00807 0.000977888 0)
(1.00815 0.000998658 0)
(1.00823 0.00101937 0)
(1.0083 0.00103992 0)
(1.00838 0.00106021 0)
(1.00845 0.00108015 0)
(1.00853 0.00109967 0)
(1.00861 0.00111868 0)
(1.00868 0.00113711 0)
(1.00875 0.00115488 0)
(1.00883 0.0011719 0)
(1.0089 0.00118809 0)
(1.00898 0.00120334 0)
(1.00905 0.00121755 0)
(1.00912 0.00123062 0)
(1.00919 0.00124241 0)
(1.00927 0.00125283 0)
(1.00934 0.00126177 0)
(1.00941 0.00126911 0)
(1.00948 0.0012748 0)
(1.00955 0.00127875 0)
(1.00962 0.00128093 0)
(1.00969 0.00128132 0)
(1.00976 0.00127993 0)
(1.00983 0.0012768 0)
(1.00989 0.00127199 0)
(1.00996 0.00126559 0)
(1.01003 0.00125772 0)
(1.0101 0.00124849 0)
(1.01016 0.00123805 0)
(1.01023 0.00122656 0)
(1.01029 0.00121419 0)
(1.01036 0.0012011 0)
(1.01042 0.00118747 0)
(1.01049 0.00117349 0)
(1.01055 0.00115935 0)
(1.01062 0.00114523 0)
(1.01068 0.00113134 0)
(1.01074 0.00111786 0)
(1.01081 0.001105 0)
(1.01087 0.00109297 0)
(1.01093 0.00108196 0)
(1.011 0.00107217 0)
(1.01106 0.0010638 0)
(1.01112 0.00105703 0)
(1.01118 0.00105204 0)
(1.01125 0.00104901 0)
(1.01131 0.00104807 0)
(1.01137 0.00104936 0)
(1.01143 0.001053 0)
(1.0115 0.0010591 0)
(1.01156 0.00106772 0)
(1.01162 0.00107892 0)
(1.01169 0.00109273 0)
(1.01175 0.00110916 0)
(1.01182 0.00112819 0)
(1.01188 0.00114975 0)
(1.01195 0.00117377 0)
(1.01201 0.00120011 0)
(1.01208 0.00122862 0)
(1.01215 0.00125909 0)
(1.01221 0.00129127 0)
(1.01228 0.00132488 0)
(1.01235 0.0013596 0)
(1.01242 0.00139506 0)
(1.01249 0.00143087 0)
(1.01256 0.00146662 0)
(1.01263 0.00150187 0)
(1.0127 0.00153618 0)
(1.01277 0.00156911 0)
(1.01284 0.00160022 0)
(1.01291 0.00162909 0)
(1.01299 0.00165534 0)
(1.01306 0.0016786 0)
(1.01313 0.00169854 0)
(1.01321 0.00171493 0)
(1.01328 0.00172747 0)
(1.01335 0.00173611 0)
(1.01343 0.00174056 0)
(1.0135 0.00174105 0)
(1.01358 0.00173717 0)
(1.00662 0.000538572 0)
(1.0067 0.000535685 0)
(1.00678 0.000534562 0)
(1.00686 0.000535314 0)
(1.00694 0.000538018 0)
(1.00702 0.000542712 0)
(1.0071 0.000549391 0)
(1.00718 0.000558016 0)
(1.00726 0.000568513 0)
(1.00734 0.000580779 0)
(1.00742 0.000594687 0)
(1.0075 0.000610091 0)
(1.00758 0.000626832 0)
(1.00765 0.000644741 0)
(1.00773 0.000663647 0)
(1.00781 0.000683379 0)
(1.00789 0.000703768 0)
(1.00796 0.000724655 0)
(1.00804 0.000745886 0)
(1.00812 0.00076732 0)
(1.0082 0.000788829 0)
(1.00827 0.000810296 0)
(1.00835 0.000831614 0)
(1.00842 0.00085269 0)
(1.0085 0.000873437 0)
(1.00858 0.000893775 0)
(1.00865 0.000913627 0)
(1.00873 0.000932917 0)
(1.0088 0.000951565 0)
(1.00887 0.000969487 0)
(1.00895 0.000986593 0)
(1.00902 0.00100278 0)
(1.0091 0.00101795 0)
(1.00917 0.00103199 0)
(1.00924 0.00104479 0)
(1.00931 0.00105623 0)
(1.00939 0.0010662 0)
(1.00946 0.0010746 0)
(1.00953 0.00108136 0)
(1.0096 0.0010864 0)
(1.00967 0.00108968 0)
(1.00974 0.00109118 0)
(1.00981 0.00109091 0)
(1.00988 0.0010889 0)
(1.00995 0.00108522 0)
(1.01002 0.00107994 0)
(1.01008 0.00107317 0)
(1.01015 0.00106504 0)
(1.01022 0.00105568 0)
(1.01029 0.00104524 0)
(1.01035 0.00103388 0)
(1.01042 0.00102177 0)
(1.01048 0.00100908 0)
(1.01055 0.000995994 0)
(1.01062 0.000982688 0)
(1.01068 0.000969349 0)
(1.01074 0.000956167 0)
(1.01081 0.000943333 0)
(1.01087 0.000931045 0)
(1.01094 0.000919497 0)
(1.011 0.000908888 0)
(1.01106 0.000899412 0)
(1.01113 0.000891261 0)
(1.01119 0.000884619 0)
(1.01125 0.000879661 0)
(1.01132 0.000876551 0)
(1.01138 0.00087544 0)
(1.01145 0.000876463 0)
(1.01151 0.000879738 0)
(1.01157 0.000885365 0)
(1.01164 0.000893422 0)
(1.0117 0.000903966 0)
(1.01176 0.000917033 0)
(1.01183 0.00093263 0)
(1.01189 0.000950738 0)
(1.01196 0.000971307 0)
(1.01202 0.000994255 0)
(1.01209 0.00101946 0)
(1.01216 0.00104678 0)
(1.01222 0.001076 0)
(1.01229 0.00110689 0)
(1.01236 0.00113917 0)
(1.01243 0.00117254 0)
(1.0125 0.00120664 0)
(1.01256 0.0012411 0)
(1.01263 0.0012755 0)
(1.0127 0.00130944 0)
(1.01277 0.00134247 0)
(1.01284 0.00137418 0)
(1.01292 0.00140413 0)
(1.01299 0.00143193 0)
(1.01306 0.00145719 0)
(1.01313 0.00147957 0)
(1.0132 0.00149873 0)
(1.01328 0.00151446 0)
(1.01335 0.00152646 0)
(1.01342 0.00153469 0)
(1.0135 0.00153888 0)
(1.01357 0.00153922 0)
(1.01364 0.00153534 0)
(1.00668 0.000323254 0)
(1.00677 0.00032108 0)
(1.00685 0.000320664 0)
(1.00693 0.000322113 0)
(1.00701 0.000325502 0)
(1.00709 0.000330864 0)
(1.00717 0.000338196 0)
(1.00724 0.00034746 0)
(1.00732 0.000358581 0)
(1.0074 0.000371457 0)
(1.00748 0.000385965 0)
(1.00756 0.000401958 0)
(1.00764 0.000419281 0)
(1.00772 0.000437767 0)
(1.00779 0.000457247 0)
(1.00787 0.000477552 0)
(1.00795 0.000498516 0)
(1.00803 0.00051998 0)
(1.0081 0.000541796 0)
(1.00818 0.000563824 0)
(1.00826 0.000585937 0)
(1.00833 0.000608019 0)
(1.00841 0.000629967 0)
(1.00848 0.000651686 0)
(1.00856 0.000673092 0)
(1.00863 0.000694105 0)
(1.00871 0.000714649 0)
(1.00878 0.000734648 0)
(1.00886 0.000754022 0)
(1.00893 0.00077269 0)
(1.00901 0.000790559 0)
(1.00908 0.000807533 0)
(1.00915 0.000823508 0)
(1.00923 0.000838373 0)
(1.0093 0.000852014 0)
(1.00937 0.000864319 0)
(1.00945 0.000875179 0)
(1.00952 0.000884496 0)
(1.00959 0.000892185 0)
(1.00966 0.000898177 0)
(1.00973 0.000902429 0)
(1.0098 0.000904917 0)
(1.00987 0.000905648 0)
(1.00994 0.000904651 0)
(1.01001 0.000901983 0)
(1.01008 0.000897723 0)
(1.01015 0.000891971 0)
(1.01022 0.000884846 0)
(1.01029 0.000876482 0)
(1.01036 0.000867023 0)
(1.01042 0.000856625 0)
(1.01049 0.000845448 0)
(1.01056 0.000833661 0)
(1.01062 0.000821436 0)
(1.01069 0.000808949 0)
(1.01075 0.000796381 0)
(1.01082 0.000783915 0)
(1.01089 0.00077174 0)
(1.01095 0.000760044 0)
(1.01101 0.00074902 0)
(1.01108 0.000738861 0)
(1.01114 0.000729758 0)
(1.01121 0.000721897 0)
(1.01127 0.000715461 0)
(1.01134 0.000710622 0)
(1.0114 0.000707542 0)
(1.01146 0.000706371 0)
(1.01153 0.000707244 0)
(1.01159 0.000710278 0)
(1.01166 0.000715572 0)
(1.01172 0.000723208 0)
(1.01178 0.000733245 0)
(1.01185 0.000745719 0)
(1.01191 0.00076064 0)
(1.01198 0.000777994 0)
(1.01204 0.000797735 0)
(1.01211 0.000819786 0)
(1.01218 0.000844032 0)
(1.01224 0.000870325 0)
(1.01231 0.000898477 0)
(1.01238 0.000928258 0)
(1.01244 0.000959403 0)
(1.01251 0.000991608 0)
(1.01258 0.00102453 0)
(1.01265 0.00105782 0)
(1.01272 0.00109106 0)
(1.01279 0.00112387 0)
(1.01286 0.00115581 0)
(1.01293 0.00118647 0)
(1.013 0.00121545 0)
(1.01307 0.00124235 0)
(1.01314 0.00126679 0)
(1.01321 0.00128845 0)
(1.01328 0.001307 0)
(1.01336 0.00132221 0)
(1.01343 0.00133384 0)
(1.0135 0.0013418 0)
(1.01357 0.00134585 0)
(1.01365 0.00134618 0)
(1.01372 0.00134243 0)
(1.00676 0.000115756 0)
(1.00685 0.000114293 0)
(1.00693 0.000114572 0)
(1.007 0.000116698 0)
(1.00708 0.000120742 0)
(1.00716 0.000126743 0)
(1.00724 0.000134693 0)
(1.00732 0.000144553 0)
(1.0074 0.00015625 0)
(1.00748 0.000169682 0)
(1.00756 0.000184725 0)
(1.00763 0.000201237 0)
(1.00771 0.000219064 0)
(1.00779 0.000238044 0)
(1.00787 0.00025801 0)
(1.00794 0.000278796 0)
(1.00802 0.00030024 0)
(1.0081 0.000322184 0)
(1.00817 0.000344481 0)
(1.00825 0.000366997 0)
(1.00833 0.000389606 0)
(1.0084 0.000412193 0)
(1.00848 0.000434657 0)
(1.00855 0.000456904 0)
(1.00863 0.000478852 0)
(1.00871 0.000500421 0)
(1.00878 0.000521535 0)
(1.00886 0.000542121 0)
(1.00893 0.000562099 0)
(1.00901 0.000581387 0)
(1.00908 0.000599895 0)
(1.00915 0.000617528 0)
(1.00923 0.000634181 0)
(1.0093 0.000649745 0)
(1.00937 0.000664109 0)
(1.00945 0.000677159 0)
(1.00952 0.000688789 0)
(1.00959 0.0006989 0)
(1.00966 0.000707406 0)
(1.00974 0.00071424 0)
(1.00981 0.000719355 0)
(1.00988 0.000722729 0)
(1.00995 0.000724362 0)
(1.01002 0.000724284 0)
(1.01009 0.000722547 0)
(1.01016 0.000719227 0)
(1.01023 0.000714419 0)
(1.0103 0.000708239 0)
(1.01037 0.000700814 0)
(1.01044 0.000692285 0)
(1.0105 0.000682801 0)
(1.01057 0.00067252 0)
(1.01064 0.000661604 0)
(1.01071 0.000650219 0)
(1.01077 0.000638538 0)
(1.01084 0.000626735 0)
(1.01091 0.000614989 0)
(1.01097 0.000603482 0)
(1.01104 0.0005924 0)
(1.0111 0.000581931 0)
(1.01117 0.000572261 0)
(1.01123 0.000563578 0)
(1.0113 0.000556066 0)
(1.01136 0.000549902 0)
(1.01143 0.000545257 0)
(1.01149 0.00054229 0)
(1.01155 0.00054115 0)
(1.01162 0.00054197 0)
(1.01168 0.000544866 0)
(1.01175 0.00054994 0)
(1.01181 0.000557271 0)
(1.01188 0.00056692 0)
(1.01194 0.000578925 0)
(1.01201 0.0005933 0)
(1.01207 0.000610033 0)
(1.01214 0.000629081 0)
(1.0122 0.000650371 0)
(1.01227 0.000673796 0)
(1.01234 0.000699212 0)
(1.0124 0.000726439 0)
(1.01247 0.000755256 0)
(1.01254 0.000785406 0)
(1.0126 0.000816595 0)
(1.01267 0.000848497 0)
(1.01274 0.000880755 0)
(1.01281 0.000912991 0)
(1.01288 0.000944809 0)
(1.01295 0.000975805 0)
(1.01302 0.00100557 0)
(1.01309 0.00103371 0)
(1.01316 0.00105985 0)
(1.01323 0.00108361 0)
(1.0133 0.00110468 0)
(1.01337 0.00112274 0)
(1.01344 0.00113757 0)
(1.01351 0.00114893 0)
(1.01359 0.00115674 0)
(1.01366 0.00116076 0)
(1.01373 0.00116118 0)
(1.0138 0.00115764 0)
(1.00685 -8.44335e-05 0)
(1.00693 -8.51976e-05 0)
(1.00701 -8.42391e-05 0)
(1.00709 -8.14562e-05 0)
(1.00717 -7.67784e-05 0)
(1.00725 -7.017e-05 0)
(1.00733 -6.16381e-05 0)
(1.00741 -5.12236e-05 0)
(1.00749 -3.89976e-05 0)
(1.00756 -2.50603e-05 0)
(1.00764 -9.53436e-06 0)
(1.00772 7.441e-06 0)
(1.0078 2.57141e-05 0)
(1.00787 4.51244e-05 0)
(1.00795 6.5509e-05 0)
(1.00803 8.67044e-05 0)
(1.00811 0.000108552 0)
(1.00818 0.000130898 0)
(1.00826 0.000153598 0)
(1.00833 0.000176519 0)
(1.00841 0.000199536 0)
(1.00849 0.000222539 0)
(1.00856 0.000245427 0)
(1.00864 0.000268109 0)
(1.00871 0.000290501 0)
(1.00879 0.000312528 0)
(1.00886 0.000334113 0)
(1.00894 0.000355184 0)
(1.00901 0.000375663 0)
(1.00909 0.000395469 0)
(1.00916 0.000414513 0)
(1.00924 0.000432701 0)
(1.00931 0.00044993 0)
(1.00938 0.000466092 0)
(1.00946 0.000481076 0)
(1.00953 0.000494772 0)
(1.0096 0.000507073 0)
(1.00968 0.000517881 0)
(1.00975 0.000527112 0)
(1.00982 0.000534697 0)
(1.00989 0.000540588 0)
(1.00997 0.000544762 0)
(1.01004 0.000547219 0)
(1.01011 0.000547984 0)
(1.01018 0.000547107 0)
(1.01025 0.00054466 0)
(1.01032 0.000540736 0)
(1.01039 0.000535444 0)
(1.01046 0.000528909 0)
(1.01053 0.000521266 0)
(1.0106 0.000512661 0)
(1.01066 0.000503244 0)
(1.01073 0.000493175 0)
(1.0108 0.000482614 0)
(1.01087 0.000471728 0)
(1.01093 0.000460686 0)
(1.011 0.000449664 0)
(1.01107 0.000438838 0)
(1.01113 0.000428388 0)
(1.0112 0.000418497 0)
(1.01126 0.000409349 0)
(1.01133 0.000401126 0)
(1.01139 0.000394008 0)
(1.01146 0.00038817 0)
(1.01152 0.000383777 0)
(1.01159 0.000380989 0)
(1.01165 0.00037995 0)
(1.01172 0.000380793 0)
(1.01178 0.000383635 0)
(1.01185 0.000388574 0)
(1.01191 0.000395692 0)
(1.01198 0.000405051 0)
(1.01204 0.000416689 0)
(1.01211 0.000430623 0)
(1.01217 0.000446842 0)
(1.01224 0.000465309 0)
(1.0123 0.000485953 0)
(1.01237 0.000508674 0)
(1.01244 0.000533332 0)
(1.0125 0.000559754 0)
(1.01257 0.000587728 0)
(1.01264 0.000617005 0)
(1.0127 0.000647301 0)
(1.01277 0.000678299 0)
(1.01284 0.000709655 0)
(1.01291 0.000741001 0)
(1.01298 0.000771953 0)
(1.01305 0.000802119 0)
(1.01312 0.000831106 0)
(1.01319 0.000858524 0)
(1.01326 0.000884005 0)
(1.01333 0.000907191 0)
(1.0134 0.000927773 0)
(1.01347 0.000945446 0)
(1.01354 0.000959997 0)
(1.01361 0.000971177 0)
(1.01368 0.000978921 0)
(1.01375 0.000982996 0)
(1.01382 0.000983582 0)
(1.01389 0.000980338 0)
(1.00695 -0.000277809 0)
(1.00703 -0.00027788 0)
(1.00711 -0.00027625 0)
(1.00719 -0.00027282 0)
(1.00727 -0.000267522 0)
(1.00735 -0.000260328 0)
(1.00743 -0.000251242 0)
(1.00751 -0.000240303 0)
(1.00758 -0.000227584 0)
(1.00766 -0.000213183 0)
(1.00774 -0.000197218 0)
(1.00782 -0.000179826 0)
(1.00789 -0.000161158 0)
(1.00797 -0.000141371 0)
(1.00805 -0.000120624 0)
(1.00812 -9.90789e-05 0)
(1.0082 -7.68904e-05 0)
(1.00828 -5.42079e-05 0)
(1.00835 -3.11734e-05 0)
(1.00843 -7.91905e-06 0)
(1.0085 1.54346e-05 0)
(1.00858 3.87784e-05 0)
(1.00866 6.20138e-05 0)
(1.00873 8.50512e-05 0)
(1.00881 0.00010781 0)
(1.00888 0.000130214 0)
(1.00896 0.000152189 0)
(1.00903 0.000173663 0)
(1.00911 0.000194561 0)
(1.00918 0.000214801 0)
(1.00926 0.000234297 0)
(1.00933 0.000252956 0)
(1.00941 0.000270678 0)
(1.00948 0.000287354 0)
(1.00955 0.000302878 0)
(1.00963 0.000317139 0)
(1.0097 0.000330032 0)
(1.00977 0.00034146 0)
(1.00985 0.000351339 0)
(1.00992 0.000359601 0)
(1.00999 0.000366199 0)
(1.01006 0.000371105 0)
(1.01013 0.000374321 0)
(1.01021 0.000375868 0)
(1.01028 0.000375794 0)
(1.01035 0.000374167 0)
(1.01042 0.000371076 0)
(1.01049 0.000366628 0)
(1.01056 0.000360942 0)
(1.01063 0.000354149 0)
(1.0107 0.00034639 0)
(1.01077 0.000337812 0)
(1.01083 0.000328568 0)
(1.0109 0.000318815 0)
(1.01097 0.000308714 0)
(1.01104 0.000298431 0)
(1.0111 0.000288133 0)
(1.01117 0.000277995 0)
(1.01124 0.000268191 0)
(1.0113 0.000258899 0)
(1.01137 0.000250297 0)
(1.01143 0.000242565 0)
(1.0115 0.000235879 0)
(1.01157 0.000230408 0)
(1.01163 0.000226317 0)
(1.0117 0.000223761 0)
(1.01176 0.000222883 0)
(1.01183 0.000223814 0)
(1.01189 0.000226669 0)
(1.01196 0.000231547 0)
(1.01202 0.000238529 0)
(1.01209 0.000247677 0)
(1.01215 0.000259032 0)
(1.01222 0.00027261 0)
(1.01228 0.000288405 0)
(1.01235 0.000306382 0)
(1.01241 0.000326474 0)
(1.01248 0.000348584 0)
(1.01254 0.000372581 0)
(1.01261 0.000398295 0)
(1.01268 0.000425524 0)
(1.01274 0.000454027 0)
(1.01281 0.000483528 0)
(1.01288 0.000513721 0)
(1.01295 0.000544272 0)
(1.01302 0.000574825 0)
(1.01308 0.000605008 0)
(1.01315 0.000634439 0)
(1.01322 0.000662737 0)
(1.01329 0.000689523 0)
(1.01336 0.000714438 0)
(1.01343 0.000737137 0)
(1.0135 0.000757317 0)
(1.01357 0.000774682 0)
(1.01364 0.000789023 0)
(1.01371 0.0008001 0)
(1.01378 0.000807847 0)
(1.01385 0.00081204 0)
(1.01392 0.00081285 0)
(1.01399 0.00080995 0)
(1.00706 -0.000464809 0)
(1.00714 -0.000464185 0)
(1.00722 -0.000461888 0)
(1.0073 -0.000457822 0)
(1.00738 -0.000451922 0)
(1.00746 -0.000444159 0)
(1.00753 -0.000434538 0)
(1.00761 -0.0004231 0)
(1.00769 -0.000409913 0)
(1.00777 -0.000395075 0)
(1.00784 -0.000378703 0)
(1.00792 -0.000360932 0)
(1.008 -0.000341907 0)
(1.00808 -0.000321784 0)
(1.00815 -0.000300719 0)
(1.00823 -0.000278867 0)
(1.0083 -0.000256384 0)
(1.00838 -0.000233416 0)
(1.00846 -0.000210101 0)
(1.00853 -0.000186569 0)
(1.00861 -0.000162936 0)
(1.00869 -0.00013931 0)
(1.00876 -0.000115788 0)
(1.00884 -9.24573e-05 0)
(1.00891 -6.93967e-05 0)
(1.00899 -4.66812e-05 0)
(1.00906 -2.43826e-05 0)
(1.00914 -2.5729e-06 0)
(1.00921 1.86743e-05 0)
(1.00929 3.92797e-05 0)
(1.00936 5.91587e-05 0)
(1.00944 7.82192e-05 0)
(1.00951 9.63625e-05 0)
(1.00958 0.000113485 0)
(1.00966 0.000129479 0)
(1.00973 0.000144237 0)
(1.00981 0.000157655 0)
(1.00988 0.000169638 0)
(1.00995 0.000180103 0)
(1.01003 0.00018898 0)
(1.0101 0.000196223 0)
(1.01017 0.000201805 0)
(1.01024 0.000205725 0)
(1.01031 0.000208002 0)
(1.01039 0.000208681 0)
(1.01046 0.000207829 0)
(1.01053 0.00020553 0)
(1.0106 0.000201887 0)
(1.01067 0.000197016 0)
(1.01074 0.000191043 0)
(1.01081 0.000184105 0)
(1.01088 0.000176344 0)
(1.01094 0.000167908 0)
(1.01101 0.00015895 0)
(1.01108 0.000149626 0)
(1.01115 0.000140096 0)
(1.01122 0.000130526 0)
(1.01128 0.000121081 0)
(1.01135 0.000111933 0)
(1.01142 0.000103255 0)
(1.01148 9.52216e-05 0)
(1.01155 8.8006e-05 0)
(1.01161 8.17801e-05 0)
(1.01168 7.67112e-05 0)
(1.01175 7.29602e-05 0)
(1.01181 7.0679e-05 0)
(1.01188 7.0009e-05 0)
(1.01194 7.10783e-05 0)
(1.01201 7.40012e-05 0)
(1.01207 7.8876e-05 0)
(1.01214 8.57838e-05 0)
(1.0122 9.47862e-05 0)
(1.01227 0.000105925 0)
(1.01233 0.000119219 0)
(1.0124 0.000134662 0)
(1.01246 0.000152223 0)
(1.01253 0.000171839 0)
(1.01259 0.000193417 0)
(1.01266 0.000216831 0)
(1.01273 0.000241919 0)
(1.01279 0.000268484 0)
(1.01286 0.000296293 0)
(1.01293 0.000325081 0)
(1.01299 0.00035455 0)
(1.01306 0.000384377 0)
(1.01313 0.000414217 0)
(1.0132 0.000443709 0)
(1.01327 0.000472482 0)
(1.01334 0.000500166 0)
(1.01341 0.000526394 0)
(1.01347 0.000550816 0)
(1.01354 0.000573097 0)
(1.01361 0.000592941 0)
(1.01368 0.000610061 0)
(1.01375 0.000624254 0)
(1.01382 0.000635284 0)
(1.01389 0.000643088 0)
(1.01396 0.000647447 0)
(1.01403 0.000648528 0)
(1.0141 0.000646012 0)
(1.00718 -0.000645757 0)
(1.00726 -0.000644441 0)
(1.00734 -0.000641484 0)
(1.00742 -0.000636792 0)
(1.0075 -0.000630301 0)
(1.00757 -0.000621984 0)
(1.00765 -0.000611847 0)
(1.00773 -0.000599928 0)
(1.00781 -0.000586297 0)
(1.00788 -0.000571049 0)
(1.00796 -0.000554299 0)
(1.00804 -0.000536178 0)
(1.00811 -0.000516831 0)
(1.00819 -0.000496407 0)
(1.00827 -0.000475061 0)
(1.00834 -0.000452945 0)
(1.00842 -0.000430211 0)
(1.0085 -0.000407 0)
(1.00857 -0.00038345 0)
(1.00865 -0.000359684 0)
(1.00872 -0.000335819 0)
(1.0088 -0.00031196 0)
(1.00887 -0.0002882 0)
(1.00895 -0.000264625 0)
(1.00903 -0.000241314 0)
(1.0091 -0.000218339 0)
(1.00918 -0.000195771 0)
(1.00925 -0.00017368 0)
(1.00933 -0.000152138 0)
(1.0094 -0.000131222 0)
(1.00948 -0.000111015 0)
(1.00955 -9.16085e-05 0)
(1.00963 -7.30975e-05 0)
(1.0097 -5.55846e-05 0)
(1.00977 -3.91754e-05 0)
(1.00985 -2.39752e-05 0)
(1.00992 -1.00856e-05 0)
(1.00999 2.39923e-06 0)
(1.01007 1.33966e-05 0)
(1.01014 2.28392e-05 0)
(1.01021 3.06794e-05 0)
(1.01029 3.68903e-05 0)
(1.01036 4.14681e-05 0)
(1.01043 4.4432e-05 0)
(1.0105 4.58244e-05 0)
(1.01057 4.57083e-05 0)
(1.01065 4.41656e-05 0)
(1.01072 4.12947e-05 0)
(1.01079 3.72079e-05 0)
(1.01086 3.20282e-05 0)
(1.01093 2.5887e-05 0)
(1.011 1.89222e-05 0)
(1.01106 1.12777e-05 0)
(1.01113 3.10128e-06 0)
(1.0112 -5.45508e-06 0)
(1.01127 -1.42358e-05 0)
(1.01134 -2.30818e-05 0)
(1.0114 -3.18302e-05 0)
(1.01147 -4.03154e-05 0)
(1.01154 -4.83687e-05 0)
(1.0116 -5.58203e-05 0)
(1.01167 -6.25009e-05 0)
(1.01174 -6.8243e-05 0)
(1.0118 -7.28829e-05 0)
(1.01187 -7.62632e-05 0)
(1.01193 -7.82349e-05 0)
(1.012 -7.86592e-05 0)
(1.01206 -7.74098e-05 0)
(1.01213 -7.43739e-05 0)
(1.01219 -6.94544e-05 0)
(1.01226 -6.25706e-05 0)
(1.01232 -5.36604e-05 0)
(1.01239 -4.2682e-05 0)
(1.01245 -2.9615e-05 0)
(1.01252 -1.44632e-05 0)
(1.01259 2.74355e-06 0)
(1.01265 2.19469e-05 0)
(1.01272 4.30577e-05 0)
(1.01278 6.59544e-05 0)
(1.01285 9.04812e-05 0)
(1.01292 0.000116448 0)
(1.01298 0.00014363 0)
(1.01305 0.000171771 0)
(1.01312 0.000200583 0)
(1.01318 0.000229753 0)
(1.01325 0.000258945 0)
(1.01332 0.00028781 0)
(1.01339 0.000315988 0)
(1.01346 0.00034312 0)
(1.01353 0.000368849 0)
(1.0136 0.000392836 0)
(1.01366 0.000414753 0)
(1.01373 0.000434314 0)
(1.0138 0.00045124 0)
(1.01387 0.000465332 0)
(1.01394 0.00047636 0)
(1.01401 0.000484263 0)
(1.01408 0.000488826 0)
(1.01415 0.000490212 0)
(1.01422 0.00048811 0)
(1.00731 -0.00082096 0)
(1.00739 -0.000818954 0)
(1.00746 -0.00081534 0)
(1.00754 -0.000810028 0)
(1.00762 -0.000802955 0)
(1.0077 -0.000794096 0)
(1.00778 -0.000783455 0)
(1.00785 -0.000771073 0)
(1.00793 -0.000757016 0)
(1.00801 -0.000741379 0)
(1.00808 -0.000724273 0)
(1.00816 -0.000705828 0)
(1.00824 -0.000686184 0)
(1.00831 -0.000665488 0)
(1.00839 -0.000643891 0)
(1.00847 -0.000621543 0)
(1.00854 -0.00059859 0)
(1.00862 -0.000575171 0)
(1.0087 -0.00055142 0)
(1.00877 -0.000527458 0)
(1.00885 -0.0005034 0)
(1.00892 -0.000479346 0)
(1.009 -0.000455389 0)
(1.00907 -0.000431614 0)
(1.00915 -0.000408095 0)
(1.00922 -0.000384905 0)
(1.0093 -0.000362113 0)
(1.00937 -0.000339785 0)
(1.00945 -0.000317994 0)
(1.00952 -0.000296813 0)
(1.0096 -0.000276326 0)
(1.00967 -0.000256619 0)
(1.00975 -0.000237788 0)
(1.00982 -0.000219932 0)
(1.0099 -0.000203154 0)
(1.00997 -0.000187557 0)
(1.01005 -0.000173241 0)
(1.01012 -0.000160299 0)
(1.01019 -0.000148813 0)
(1.01027 -0.000138849 0)
(1.01034 -0.000130453 0)
(1.01041 -0.000123654 0)
(1.01048 -0.000118457 0)
(1.01056 -0.000114843 0)
(1.01063 -0.000112772 0)
(1.0107 -0.000112186 0)
(1.01077 -0.000113003 0)
(1.01084 -0.00011513 0)
(1.01091 -0.000118458 0)
(1.01098 -0.000122869 0)
(1.01105 -0.000128235 0)
(1.01112 -0.000134421 0)
(1.01119 -0.000141289 0)
(1.01126 -0.000148696 0)
(1.01133 -0.000156493 0)
(1.0114 -0.000164531 0)
(1.01147 -0.000172656 0)
(1.01153 -0.000180707 0)
(1.0116 -0.000188526 0)
(1.01167 -0.000195947 0)
(1.01173 -0.000202806 0)
(1.0118 -0.000208938 0)
(1.01187 -0.000214178 0)
(1.01193 -0.000218368 0)
(1.012 -0.000221353 0)
(1.01206 -0.000222987 0)
(1.01213 -0.000223135 0)
(1.01219 -0.000221672 0)
(1.01226 -0.000218487 0)
(1.01233 -0.000213484 0)
(1.01239 -0.000206583 0)
(1.01246 -0.000197721 0)
(1.01252 -0.000186858 0)
(1.01259 -0.00017397 0)
(1.01265 -0.000159061 0)
(1.01272 -0.000142157 0)
(1.01278 -0.000123315 0)
(1.01285 -0.000102618 0)
(1.01291 -8.01849e-05 0)
(1.01298 -5.61641e-05 0)
(1.01305 -3.07395e-05 0)
(1.01311 -4.12799e-06 0)
(1.01318 2.34216e-05 0)
(1.01325 5.16314e-05 0)
(1.01331 8.01978e-05 0)
(1.01338 0.000108796 0)
(1.01345 0.000137087 0)
(1.01352 0.000164723 0)
(1.01359 0.000191354 0)
(1.01365 0.000216633 0)
(1.01372 0.000240232 0)
(1.01379 0.000261831 0)
(1.01386 0.000281152 0)
(1.01393 0.000297924 0)
(1.014 0.000311951 0)
(1.01407 0.000323012 0)
(1.01414 0.000331045 0)
(1.01421 0.000335841 0)
(1.01428 0.000337557 0)
(1.01434 0.000335891 0)
(1.00744 -0.000990681 0)
(1.00752 -0.000987986 0)
(1.0076 -0.000983719 0)
(1.00768 -0.000977793 0)
(1.00775 -0.000970146 0)
(1.00783 -0.000960754 0)
(1.00791 -0.000949623 0)
(1.00799 -0.000936792 0)
(1.00806 -0.000922326 0)
(1.00814 -0.000906317 0)
(1.00822 -0.000888876 0)
(1.00829 -0.000870127 0)
(1.00837 -0.000850209 0)
(1.00845 -0.000829266 0)
(1.00852 -0.000807443 0)
(1.0086 -0.000784888 0)
(1.00868 -0.000761743 0)
(1.00875 -0.000738144 0)
(1.00883 -0.000714222 0)
(1.0089 -0.000690095 0)
(1.00898 -0.000665875 0)
(1.00905 -0.000641659 0)
(1.00913 -0.00061754 0)
(1.00921 -0.000593597 0)
(1.00928 -0.000569907 0)
(1.00936 -0.000546537 0)
(1.00943 -0.000523554 0)
(1.00951 -0.000501027 0)
(1.00958 -0.000479023 0)
(1.00966 -0.000457617 0)
(1.00973 -0.000436886 0)
(1.00981 -0.000416918 0)
(1.00988 -0.000397805 0)
(1.00996 -0.000379643 0)
(1.01003 -0.000362535 0)
(1.0101 -0.00034658 0)
(1.01018 -0.000331876 0)
(1.01025 -0.000318515 0)
(1.01033 -0.000306577 0)
(1.0104 -0.000296126 0)
(1.01047 -0.00028721 0)
(1.01055 -0.000279857 0)
(1.01062 -0.000274073 0)
(1.01069 -0.000269841 0)
(1.01076 -0.000267123 0)
(1.01083 -0.000265863 0)
(1.01091 -0.000265983 0)
(1.01098 -0.000267392 0)
(1.01105 -0.000269985 0)
(1.01112 -0.000273649 0)
(1.01119 -0.000278258 0)
(1.01126 -0.000283683 0)
(1.01133 -0.00028979 0)
(1.0114 -0.000296439 0)
(1.01147 -0.000303488 0)
(1.01153 -0.000310791 0)
(1.0116 -0.000318197 0)
(1.01167 -0.000325553 0)
(1.01174 -0.000332703 0)
(1.01181 -0.000339488 0)
(1.01187 -0.000345746 0)
(1.01194 -0.000351318 0)
(1.012 -0.000356043 0)
(1.01207 -0.000359767 0)
(1.01214 -0.000362338 0)
(1.0122 -0.000363614 0)
(1.01227 -0.000363462 0)
(1.01233 -0.000361758 0)
(1.0124 -0.000358395 0)
(1.01246 -0.000353276 0)
(1.01253 -0.000346324 0)
(1.01259 -0.000337476 0)
(1.01266 -0.000326689 0)
(1.01272 -0.000313941 0)
(1.01279 -0.000299234 0)
(1.01285 -0.000282592 0)
(1.01292 -0.000264067 0)
(1.01299 -0.000243741 0)
(1.01305 -0.000221725 0)
(1.01312 -0.000198165 0)
(1.01318 -0.000173236 0)
(1.01325 -0.000147149 0)
(1.01332 -0.000120144 0)
(1.01338 -9.24901e-05 0)
(1.01345 -6.44808e-05 0)
(1.01352 -3.64307e-05 0)
(1.01359 -8.66858e-06 0)
(1.01365 1.84675e-05 0)
(1.01372 4.46383e-05 0)
(1.01379 6.9508e-05 0)
(1.01386 9.27564e-05 0)
(1.01393 0.000114074 0)
(1.014 0.000133189 0)
(1.01406 0.000149838 0)
(1.01413 0.000163831 0)
(1.0142 0.000174952 0)
(1.01427 0.000183139 0)
(1.01434 0.000188189 0)
(1.01441 0.000190253 0)
(1.01448 0.000189038 0)
(1.00758 -0.00115516 0)
(1.00766 -0.00115178 0)
(1.00774 -0.00114686 0)
(1.00782 -0.00114033 0)
(1.0079 -0.00113211 0)
(1.00797 -0.0011222 0)
(1.00805 -0.00111059 0)
(1.00813 -0.00109732 0)
(1.00821 -0.00108245 0)
(1.00828 -0.00106609 0)
(1.00836 -0.00104833 0)
(1.00844 -0.00102929 0)
(1.00851 -0.00100912 0)
(1.00859 -0.000987942 0)
(1.00866 -0.000965913 0)
(1.00874 -0.000943172 0)
(1.00882 -0.000919856 0)
(1.00889 -0.000896101 0)
(1.00897 -0.000872032 0)
(1.00904 -0.000847764 0)
(1.00912 -0.000823407 0)
(1.0092 -0.000799057 0)
(1.00927 -0.000774801 0)
(1.00935 -0.000750719 0)
(1.00942 -0.000726884 0)
(1.0095 -0.000703363 0)
(1.00957 -0.000680222 0)
(1.00965 -0.000657525 0)
(1.00972 -0.00063534 0)
(1.0098 -0.000613738 0)
(1.00987 -0.000592797 0)
(1.00995 -0.0005726 0)
(1.01002 -0.000553237 0)
(1.0101 -0.000534802 0)
(1.01017 -0.000517395 0)
(1.01025 -0.000501114 0)
(1.01032 -0.000486055 0)
(1.01039 -0.000472306 0)
(1.01047 -0.000459946 0)
(1.01054 -0.00044904 0)
(1.01061 -0.000439635 0)
(1.01069 -0.000431758 0)
(1.01076 -0.000425416 0)
(1.01083 -0.000420595 0)
(1.01091 -0.000417257 0)
(1.01098 -0.000415348 0)
(1.01105 -0.000414795 0)
(1.01112 -0.000415509 0)
(1.01119 -0.00041739 0)
(1.01126 -0.000420325 0)
(1.01133 -0.000424196 0)
(1.0114 -0.000428877 0)
(1.01147 -0.000434237 0)
(1.01154 -0.000440141 0)
(1.01161 -0.000446452 0)
(1.01168 -0.000453027 0)
(1.01175 -0.000459721 0)
(1.01182 -0.000466385 0)
(1.01188 -0.000472868 0)
(1.01195 -0.000479015 0)
(1.01202 -0.000484669 0)
(1.01208 -0.000489675 0)
(1.01215 -0.000493877 0)
(1.01222 -0.000497123 0)
(1.01228 -0.000499266 0)
(1.01235 -0.000500167 0)
(1.01241 -0.000499694 0)
(1.01248 -0.000497729 0)
(1.01254 -0.000494163 0)
(1.01261 -0.000488904 0)
(1.01267 -0.000481873 0)
(1.01274 -0.000473009 0)
(1.0128 -0.000462268 0)
(1.01287 -0.000449629 0)
(1.01293 -0.000435089 0)
(1.013 -0.000418673 0)
(1.01306 -0.00040043 0)
(1.01313 -0.000380437 0)
(1.0132 -0.000358802 0)
(1.01326 -0.000335663 0)
(1.01333 -0.000311193 0)
(1.01339 -0.000285591 0)
(1.01346 -0.000259092 0)
(1.01353 -0.000231955 0)
(1.01359 -0.000204464 0)
(1.01366 -0.000176924 0)
(1.01373 -0.000149654 0)
(1.0138 -0.000122981 0)
(1.01386 -9.72346e-05 0)
(1.01393 -7.27408e-05 0)
(1.014 -4.98106e-05 0)
(1.01407 -2.87445e-05 0)
(1.01414 -9.80635e-06 0)
(1.01421 6.74614e-06 0)
(1.01428 2.07294e-05 0)
(1.01434 3.19304e-05 0)
(1.01441 4.02903e-05 0)
(1.01448 4.56105e-05 0)
(1.01455 4.80357e-05 0)
(1.01462 4.72813e-05 0)
(1.00773 -0.00131461 0)
(1.00781 -0.00131054 0)
(1.00789 -0.00130498 0)
(1.00797 -0.00129784 0)
(1.00805 -0.00128906 0)
(1.00812 -0.00127863 0)
(1.0082 -0.00126655 0)
(1.00828 -0.00125285 0)
(1.00836 -0.0012376 0)
(1.00843 -0.00122089 0)
(1.00851 -0.00120282 0)
(1.00859 -0.00118351 0)
(1.00866 -0.00116309 0)
(1.00874 -0.00114171 0)
(1.00881 -0.00111949 0)
(1.00889 -0.00109658 0)
(1.00897 -0.00107311 0)
(1.00904 -0.00104922 0)
(1.00912 -0.00102502 0)
(1.00919 -0.00100063 0)
(1.00927 -0.000976161 0)
(1.00934 -0.000951697 0)
(1.00942 -0.000927327 0)
(1.00949 -0.000903129 0)
(1.00957 -0.000879173 0)
(1.00965 -0.000855526 0)
(1.00972 -0.00083225 0)
(1.0098 -0.000809408 0)
(1.00987 -0.000787068 0)
(1.00995 -0.000765296 0)
(1.01002 -0.00074417 0)
(1.0101 -0.00072377 0)
(1.01017 -0.000704184 0)
(1.01025 -0.000685503 0)
(1.01032 -0.000667825 0)
(1.01039 -0.000651245 0)
(1.01047 -0.000635857 0)
(1.01054 -0.000621748 0)
(1.01062 -0.000608994 0)
(1.01069 -0.00059766 0)
(1.01076 -0.000587791 0)
(1.01084 -0.000579416 0)
(1.01091 -0.000572542 0)
(1.01098 -0.000567155 0)
(1.01106 -0.000563221 0)
(1.01113 -0.000560687 0)
(1.0112 -0.000559483 0)
(1.01127 -0.000559524 0)
(1.01134 -0.000560711 0)
(1.01141 -0.000562938 0)
(1.01148 -0.000566088 0)
(1.01155 -0.00057004 0)
(1.01162 -0.000574667 0)
(1.01169 -0.00057984 0)
(1.01176 -0.000585423 0)
(1.01183 -0.00059128 0)
(1.0119 -0.000597269 0)
(1.01197 -0.000603247 0)
(1.01203 -0.000609065 0)
(1.0121 -0.000614575 0)
(1.01217 -0.000619623 0)
(1.01224 -0.000624059 0)
(1.0123 -0.000627732 0)
(1.01237 -0.000630492 0)
(1.01243 -0.000632196 0)
(1.0125 -0.00063271 0)
(1.01257 -0.000631903 0)
(1.01263 -0.00062966 0)
(1.0127 -0.000625874 0)
(1.01276 -0.000620454 0)
(1.01283 -0.000613322 0)
(1.01289 -0.000604418 0)
(1.01296 -0.000593698 0)
(1.01302 -0.00058114 0)
(1.01309 -0.000566741 0)
(1.01315 -0.000550522 0)
(1.01322 -0.000532529 0)
(1.01328 -0.000512839 0)
(1.01335 -0.000491552 0)
(1.01341 -0.000468803 0)
(1.01348 -0.000444757 0)
(1.01355 -0.000419608 0)
(1.01361 -0.000393581 0)
(1.01368 -0.000366928 0)
(1.01375 -0.000339924 0)
(1.01381 -0.000312862 0)
(1.01388 -0.000286053 0)
(1.01395 -0.000259814 0)
(1.01401 -0.000234463 0)
(1.01408 -0.000210318 0)
(1.01415 -0.000187679 0)
(1.01422 -0.000166841 0)
(1.01429 -0.000148058 0)
(1.01436 -0.000131582 0)
(1.01442 -0.000117591 0)
(1.01449 -0.000106294 0)
(1.01456 -9.77487e-05 0)
(1.01463 -9.21485e-05 0)
(1.0147 -8.93541e-05 0)
(1.01476 -8.96427e-05 0)
(1.00789 -0.00146923 0)
(1.00797 -0.00146447 0)
(1.00805 -0.00145826 0)
(1.00813 -0.00145052 0)
(1.00821 -0.00144119 0)
(1.00828 -0.00143025 0)
(1.00836 -0.0014177 0)
(1.00844 -0.00140358 0)
(1.00851 -0.00138795 0)
(1.00859 -0.00137091 0)
(1.00867 -0.00135254 0)
(1.00874 -0.00133297 0)
(1.00882 -0.00131232 0)
(1.00889 -0.00129074 0)
(1.00897 -0.00126834 0)
(1.00905 -0.00124528 0)
(1.00912 -0.00122167 0)
(1.0092 -0.00119766 0)
(1.00927 -0.00117335 0)
(1.00935 -0.00114886 0)
(1.00943 -0.00112428 0)
(1.0095 -0.00109972 0)
(1.00958 -0.00107526 0)
(1.00965 -0.00105096 0)
(1.00973 -0.0010269 0)
(1.0098 -0.00100315 0)
(1.00988 -0.000979759 0)
(1.00995 -0.000956794 0)
(1.01003 -0.000934319 0)
(1.0101 -0.0009124 0)
(1.01018 -0.00089111 0)
(1.01025 -0.00087053 0)
(1.01033 -0.000850743 0)
(1.0104 -0.000831839 0)
(1.01048 -0.000813913 0)
(1.01055 -0.000797057 0)
(1.01063 -0.000781364 0)
(1.0107 -0.000766917 0)
(1.01077 -0.000753794 0)
(1.01085 -0.000742054 0)
(1.01092 -0.000731746 0)
(1.011 -0.000722896 0)
(1.01107 -0.000715512 0)
(1.01114 -0.000709582 0)
(1.01121 -0.000705074 0)
(1.01129 -0.000701937 0)
(1.01136 -0.000700102 0)
(1.01143 -0.000699489 0)
(1.0115 -0.000700002 0)
(1.01157 -0.000701538 0)
(1.01164 -0.000703984 0)
(1.01171 -0.000707223 0)
(1.01178 -0.000711132 0)
(1.01185 -0.000715586 0)
(1.01192 -0.000720453 0)
(1.01199 -0.000725601 0)
(1.01206 -0.000730894 0)
(1.01213 -0.000736191 0)
(1.01219 -0.00074135 0)
(1.01226 -0.000746226 0)
(1.01233 -0.00075067 0)
(1.01239 -0.000754535 0)
(1.01246 -0.000757675 0)
(1.01253 -0.000759944 0)
(1.01259 -0.000761204 0)
(1.01266 -0.00076132 0)
(1.01272 -0.000760169 0)
(1.01279 -0.000757635 0)
(1.01286 -0.000753614 0)
(1.01292 -0.000748017 0)
(1.01299 -0.000740767 0)
(1.01305 -0.000731803 0)
(1.01312 -0.000721084 0)
(1.01318 -0.000708585 0)
(1.01325 -0.000694302 0)
(1.01331 -0.000678256 0)
(1.01338 -0.00066049 0)
(1.01344 -0.000641074 0)
(1.01351 -0.000620109 0)
(1.01357 -0.000597723 0)
(1.01364 -0.000574073 0)
(1.0137 -0.000549349 0)
(1.01377 -0.000523766 0)
(1.01384 -0.000497569 0)
(1.0139 -0.000471022 0)
(1.01397 -0.000444412 0)
(1.01404 -0.000418037 0)
(1.0141 -0.000392205 0)
(1.01417 -0.000367226 0)
(1.01424 -0.000343406 0)
(1.01431 -0.000321039 0)
(1.01438 -0.000300408 0)
(1.01444 -0.000281764 0)
(1.01451 -0.000265349 0)
(1.01458 -0.000251339 0)
(1.01465 -0.000239935 0)
(1.01472 -0.000231195 0)
(1.01478 -0.000225309 0)
(1.01485 -0.00022214 0)
(1.01492 -0.000221961 0)
(1.00806 -0.00161917 0)
(1.00814 -0.00161373 0)
(1.00821 -0.00160688 0)
(1.00829 -0.00159854 0)
(1.00837 -0.00158866 0)
(1.00845 -0.00157721 0)
(1.00853 -0.00156421 0)
(1.0086 -0.00154968 0)
(1.00868 -0.00153368 0)
(1.00876 -0.00151631 0)
(1.00883 -0.00149765 0)
(1.00891 -0.00147783 0)
(1.00898 -0.00145697 0)
(1.00906 -0.00143519 0)
(1.00914 -0.00141263 0)
(1.00921 -0.00138942 0)
(1.00929 -0.00136569 0)
(1.00936 -0.00134156 0)
(1.00944 -0.00131716 0)
(1.00951 -0.00129257 0)
(1.00959 -0.00126792 0)
(1.00967 -0.00124328 0)
(1.00974 -0.00121873 0)
(1.00982 -0.00119435 0)
(1.00989 -0.00117021 0)
(1.00997 -0.00114636 0)
(1.01004 -0.00112287 0)
(1.01012 -0.0010998 0)
(1.01019 -0.00107721 0)
(1.01027 -0.00105516 0)
(1.01034 -0.00103373 0)
(1.01042 -0.00101298 0)
(1.01049 -0.000993016 0)
(1.01057 -0.000973909 0)
(1.01064 -0.000955754 0)
(1.01072 -0.000938643 0)
(1.01079 -0.000922664 0)
(1.01086 -0.000907901 0)
(1.01094 -0.000894427 0)
(1.01101 -0.000882304 0)
(1.01109 -0.000871576 0)
(1.01116 -0.000862272 0)
(1.01123 -0.000854399 0)
(1.01131 -0.000847947 0)
(1.01138 -0.000842884 0)
(1.01145 -0.000839163 0)
(1.01152 -0.000836717 0)
(1.0116 -0.000835468 0)
(1.01167 -0.000835325 0)
(1.01174 -0.000836187 0)
(1.01181 -0.000837946 0)
(1.01188 -0.000840487 0)
(1.01195 -0.000843693 0)
(1.01202 -0.00084744 0)
(1.01209 -0.000851604 0)
(1.01216 -0.000856054 0)
(1.01222 -0.00086066 0)
(1.01229 -0.000865285 0)
(1.01236 -0.000869791 0)
(1.01243 -0.000874036 0)
(1.01249 -0.000877879 0)
(1.01256 -0.000881175 0)
(1.01263 -0.000883781 0)
(1.01269 -0.000885557 0)
(1.01276 -0.000886368 0)
(1.01283 -0.000886082 0)
(1.01289 -0.000884578 0)
(1.01296 -0.000881744 0)
(1.01302 -0.000877478 0)
(1.01309 -0.000871691 0)
(1.01315 -0.000864308 0)
(1.01322 -0.00085527 0)
(1.01328 -0.000844534 0)
(1.01335 -0.000832076 0)
(1.01341 -0.000817891 0)
(1.01348 -0.000801996 0)
(1.01354 -0.000784435 0)
(1.01361 -0.000765273 0)
(1.01367 -0.000744607 0)
(1.01374 -0.000722559 0)
(1.0138 -0.000699282 0)
(1.01387 -0.000674957 0)
(1.01393 -0.000649794 0)
(1.014 -0.000624028 0)
(1.01407 -0.000597916 0)
(1.01413 -0.000571733 0)
(1.0142 -0.00054577 0)
(1.01427 -0.000520324 0)
(1.01434 -0.000495695 0)
(1.0144 -0.00047218 0)
(1.01447 -0.000450066 0)
(1.01454 -0.000429626 0)
(1.01461 -0.000411104 0)
(1.01467 -0.000394736 0)
(1.01474 -0.000380694 0)
(1.01481 -0.000369174 0)
(1.01488 -0.000360233 0)
(1.01495 -0.000354056 0)
(1.01501 -0.000350512 0)
(1.01508 -0.000349866 0)
(1.00823 -0.00176461 0)
(1.00831 -0.00175849 0)
(1.00839 -0.001751 0)
(1.00847 -0.00174207 0)
(1.00854 -0.00173164 0)
(1.00862 -0.00171969 0)
(1.0087 -0.00170623 0)
(1.00877 -0.0016913 0)
(1.00885 -0.00167494 0)
(1.00893 -0.00165725 0)
(1.009 -0.00163831 0)
(1.00908 -0.00161825 0)
(1.00916 -0.00159717 0)
(1.00923 -0.00157521 0)
(1.00931 -0.0015525 0)
(1.00938 -0.00152916 0)
(1.00946 -0.00150531 0)
(1.00954 -0.00148109 0)
(1.00961 -0.00145659 0)
(1.00969 -0.00143193 0)
(1.00976 -0.0014072 0)
(1.00984 -0.00138249 0)
(1.00991 -0.00135787 0)
(1.00999 -0.00133342 0)
(1.01006 -0.00130921 0)
(1.01014 -0.00128528 0)
(1.01021 -0.00126171 0)
(1.01029 -0.00123855 0)
(1.01036 -0.00121585 0)
(1.01044 -0.00119369 0)
(1.01051 -0.00117213 0)
(1.01059 -0.00115124 0)
(1.01066 -0.0011311 0)
(1.01074 -0.00111181 0)
(1.01081 -0.00109344 0)
(1.01089 -0.00107609 0)
(1.01096 -0.00105985 0)
(1.01104 -0.00104479 0)
(1.01111 -0.00103098 0)
(1.01119 -0.00101849 0)
(1.01126 -0.00100736 0)
(1.01133 -0.000997623 0)
(1.01141 -0.00098928 0)
(1.01148 -0.000982324 0)
(1.01155 -0.000976726 0)
(1.01162 -0.000972439 0)
(1.0117 -0.0009694 0)
(1.01177 -0.000967534 0)
(1.01184 -0.000966752 0)
(1.01191 -0.000966957 0)
(1.01198 -0.000968044 0)
(1.01205 -0.000969903 0)
(1.01212 -0.000972419 0)
(1.01219 -0.000975475 0)
(1.01226 -0.000978947 0)
(1.01233 -0.000982711 0)
(1.0124 -0.00098664 0)
(1.01247 -0.000990601 0)
(1.01253 -0.000994461 0)
(1.0126 -0.000998084 0)
(1.01267 -0.00100133 0)
(1.01273 -0.00100406 0)
(1.0128 -0.00100613 0)
(1.01287 -0.00100742 0)
(1.01293 -0.00100778 0)
(1.013 -0.00100708 0)
(1.01306 -0.00100522 0)
(1.01313 -0.00100208 0)
(1.01319 -0.000997562 0)
(1.01326 -0.000991575 0)
(1.01332 -0.000984049 0)
(1.01339 -0.000974924 0)
(1.01345 -0.000964158 0)
(1.01352 -0.000951725 0)
(1.01358 -0.000937621 0)
(1.01365 -0.000921862 0)
(1.01371 -0.000904487 0)
(1.01378 -0.00088556 0)
(1.01384 -0.000865172 0)
(1.01391 -0.000843442 0)
(1.01397 -0.000820517 0)
(1.01404 -0.000796572 0)
(1.01411 -0.000771807 0)
(1.01417 -0.000746451 0)
(1.01424 -0.000720752 0)
(1.01431 -0.000694977 0)
(1.01437 -0.000669405 0)
(1.01444 -0.000644325 0)
(1.01451 -0.000620029 0)
(1.01457 -0.000596803 0)
(1.01464 -0.000574926 0)
(1.01471 -0.000554664 0)
(1.01478 -0.000536253 0)
(1.01485 -0.000519923 0)
(1.01491 -0.000505841 0)
(1.01498 -0.0004942 0)
(1.01505 -0.000485054 0)
(1.01512 -0.000478584 0)
(1.01518 -0.000474665 0)
(1.01525 -0.000473556 0)
(1.00841 -0.00190569 0)
(1.00849 -0.00189889 0)
(1.00857 -0.00189077 0)
(1.00865 -0.00188125 0)
(1.00872 -0.00187028 0)
(1.0088 -0.00185784 0)
(1.00888 -0.00184393 0)
(1.00896 -0.00182859 0)
(1.00903 -0.00181188 0)
(1.00911 -0.00179388 0)
(1.00918 -0.00177467 0)
(1.00926 -0.00175437 0)
(1.00934 -0.00173309 0)
(1.00941 -0.00171095 0)
(1.00949 -0.00168809 0)
(1.00956 -0.00166462 0)
(1.00964 -0.00164067 0)
(1.00971 -0.00161635 0)
(1.00979 -0.00159178 0)
(1.00987 -0.00156705 0)
(1.00994 -0.00154225 0)
(1.01002 -0.00151748 0)
(1.01009 -0.00149281 0)
(1.01017 -0.0014683 0)
(1.01024 -0.00144402 0)
(1.01032 -0.00142003 0)
(1.01039 -0.00139639 0)
(1.01047 -0.00137314 0)
(1.01054 -0.00135036 0)
(1.01062 -0.00132809 0)
(1.01069 -0.00130642 0)
(1.01077 -0.00128539 0)
(1.01084 -0.00126511 0)
(1.01092 -0.00124564 0)
(1.01099 -0.00122708 0)
(1.01107 -0.00120951 0)
(1.01114 -0.00119301 0)
(1.01122 -0.00117767 0)
(1.01129 -0.00116355 0)
(1.01136 -0.00115071 0)
(1.01144 -0.00113919 0)
(1.01151 -0.00112904 0)
(1.01159 -0.00112024 0)
(1.01166 -0.0011128 0)
(1.01173 -0.00110668 0)
(1.0118 -0.00110184 0)
(1.01188 -0.00109823 0)
(1.01195 -0.00109576 0)
(1.01202 -0.00109436 0)
(1.01209 -0.00109392 0)
(1.01216 -0.00109435 0)
(1.01223 -0.00109555 0)
(1.0123 -0.00109739 0)
(1.01237 -0.00109977 0)
(1.01244 -0.00110256 0)
(1.01251 -0.00110565 0)
(1.01258 -0.00110891 0)
(1.01265 -0.00111222 0)
(1.01271 -0.00111544 0)
(1.01278 -0.00111845 0)
(1.01285 -0.0011211 0)
(1.01291 -0.00112327 0)
(1.01298 -0.00112482 0)
(1.01305 -0.00112561 0)
(1.01311 -0.00112552 0)
(1.01318 -0.00112442 0)
(1.01324 -0.0011222 0)
(1.01331 -0.00111875 0)
(1.01337 -0.00111397 0)
(1.01344 -0.00110777 0)
(1.0135 -0.00110009 0)
(1.01357 -0.00109087 0)
(1.01363 -0.00108006 0)
(1.0137 -0.00106765 0)
(1.01376 -0.00105361 0)
(1.01383 -0.00103797 0)
(1.01389 -0.00102077 0)
(1.01396 -0.00100206 0)
(1.01402 -0.000981932 0)
(1.01409 -0.000960503 0)
(1.01415 -0.000937912 0)
(1.01422 -0.000914326 0)
(1.01429 -0.000889942 0)
(1.01435 -0.000864978 0)
(1.01442 -0.000839673 0)
(1.01448 -0.000814287 0)
(1.01455 -0.00078909 0)
(1.01462 -0.00076436 0)
(1.01468 -0.000740381 0)
(1.01475 -0.00071743 0)
(1.01482 -0.000695777 0)
(1.01489 -0.000675681 0)
(1.01495 -0.000657371 0)
(1.01502 -0.000641072 0)
(1.01509 -0.000626945 0)
(1.01516 -0.000615177 0)
(1.01522 -0.000605824 0)
(1.01529 -0.000599063 0)
(1.01536 -0.000594773 0)
(1.01543 -0.000593204 0)
(1.0086 -0.00204254 0)
(1.00868 -0.00203507 0)
(1.00876 -0.00202632 0)
(1.00883 -0.00201621 0)
(1.00891 -0.00200471 0)
(1.00899 -0.00199178 0)
(1.00907 -0.00197743 0)
(1.00914 -0.0019617 0)
(1.00922 -0.00194464 0)
(1.0093 -0.00192633 0)
(1.00937 -0.00190685 0)
(1.00945 -0.00188632 0)
(1.00952 -0.00186484 0)
(1.0096 -0.00184254 0)
(1.00968 -0.00181954 0)
(1.00975 -0.00179595 0)
(1.00983 -0.0017719 0)
(1.0099 -0.0017475 0)
(1.00998 -0.00172285 0)
(1.01005 -0.00169806 0)
(1.01013 -0.00167321 0)
(1.0102 -0.00164838 0)
(1.01028 -0.00162366 0)
(1.01035 -0.0015991 0)
(1.01043 -0.00157477 0)
(1.0105 -0.00155072 0)
(1.01058 -0.00152702 0)
(1.01066 -0.0015037 0)
(1.01073 -0.00148084 0)
(1.01081 -0.00145848 0)
(1.01088 -0.0014367 0)
(1.01096 -0.00141556 0)
(1.01103 -0.00139513 0)
(1.01111 -0.00137551 0)
(1.01118 -0.00135676 0)
(1.01125 -0.00133898 0)
(1.01133 -0.00132224 0)
(1.0114 -0.00130663 0)
(1.01148 -0.00129221 0)
(1.01155 -0.00127904 0)
(1.01163 -0.00126716 0)
(1.0117 -0.0012566 0)
(1.01177 -0.00124736 0)
(1.01185 -0.00123945 0)
(1.01192 -0.00123283 0)
(1.01199 -0.00122746 0)
(1.01206 -0.00122329 0)
(1.01213 -0.00122024 0)
(1.01221 -0.00121823 0)
(1.01228 -0.00121717 0)
(1.01235 -0.00121696 0)
(1.01242 -0.0012175 0)
(1.01249 -0.00121868 0)
(1.01256 -0.00122039 0)
(1.01263 -0.00122252 0)
(1.0127 -0.00122495 0)
(1.01276 -0.00122756 0)
(1.01283 -0.00123022 0)
(1.0129 -0.00123282 0)
(1.01297 -0.00123522 0)
(1.01304 -0.00123729 0)
(1.0131 -0.0012389 0)
(1.01317 -0.00123992 0)
(1.01323 -0.00124023 0)
(1.0133 -0.00123969 0)
(1.01337 -0.00123818 0)
(1.01343 -0.0012356 0)
(1.0135 -0.00123183 0)
(1.01356 -0.00122679 0)
(1.01363 -0.00122039 0)
(1.01369 -0.00121255 0)
(1.01376 -0.00120322 0)
(1.01382 -0.00119236 0)
(1.01389 -0.00117995 0)
(1.01395 -0.00116597 0)
(1.01401 -0.00115044 0)
(1.01408 -0.00113339 0)
(1.01414 -0.00111489 0)
(1.01421 -0.00109501 0)
(1.01427 -0.00107387 0)
(1.01434 -0.00105159 0)
(1.0144 -0.00102835 0)
(1.01447 -0.00100433 0)
(1.01454 -0.000979741 0)
(1.0146 -0.000954815 0)
(1.01467 -0.000929802 0)
(1.01474 -0.000904964 0)
(1.0148 -0.00088057 0)
(1.01487 -0.000856894 0)
(1.01494 -0.000834206 0)
(1.015 -0.000812767 0)
(1.01507 -0.000792827 0)
(1.01514 -0.000774611 0)
(1.01521 -0.000758336 0)
(1.01527 -0.000744159 0)
(1.01534 -0.000732264 0)
(1.01541 -0.000722704 0)
(1.01548 -0.000715653 0)
(1.01554 -0.000710995 0)
(1.01561 -0.000708974 0)
(1.00879 -0.0021753 0)
(1.00887 -0.00216716 0)
(1.00895 -0.00215778 0)
(1.00903 -0.0021471 0)
(1.00911 -0.00213506 0)
(1.00918 -0.00212165 0)
(1.00926 -0.00210687 0)
(1.00934 -0.00209075 0)
(1.00941 -0.00207334 0)
(1.00949 -0.00205473 0)
(1.00957 -0.00203499 0)
(1.00964 -0.00201424 0)
(1.00972 -0.00199257 0)
(1.00979 -0.00197011 0)
(1.00987 -0.00194697 0)
(1.00995 -0.00192327 0)
(1.01002 -0.00189912 0)
(1.0101 -0.00187464 0)
(1.01017 -0.00184993 0)
(1.01025 -0.00182508 0)
(1.01032 -0.00180018 0)
(1.0104 -0.00177531 0)
(1.01047 -0.00175054 0)
(1.01055 -0.00172594 0)
(1.01062 -0.00170157 0)
(1.0107 -0.00167747 0)
(1.01077 -0.00165371 0)
(1.01085 -0.00163034 0)
(1.01092 -0.0016074 0)
(1.011 -0.00158496 0)
(1.01107 -0.00156309 0)
(1.01115 -0.00154183 0)
(1.01122 -0.00152128 0)
(1.0113 -0.00150151 0)
(1.01137 -0.00148259 0)
(1.01145 -0.00146461 0)
(1.01152 -0.00144765 0)
(1.0116 -0.00143178 0)
(1.01167 -0.00141707 0)
(1.01175 -0.00140358 0)
(1.01182 -0.00139134 0)
(1.01189 -0.00138039 0)
(1.01197 -0.00137074 0)
(1.01204 -0.00136237 0)
(1.01211 -0.00135527 0)
(1.01218 -0.00134938 0)
(1.01226 -0.00134467 0)
(1.01233 -0.00134105 0)
(1.0124 -0.00133845 0)
(1.01247 -0.00133678 0)
(1.01254 -0.00133594 0)
(1.01261 -0.00133585 0)
(1.01268 -0.00133638 0)
(1.01275 -0.00133745 0)
(1.01282 -0.00133892 0)
(1.01289 -0.0013407 0)
(1.01296 -0.00134267 0)
(1.01303 -0.0013447 0)
(1.01309 -0.00134668 0)
(1.01316 -0.00134848 0)
(1.01323 -0.00134998 0)
(1.0133 -0.00135104 0)
(1.01336 -0.00135155 0)
(1.01343 -0.00135136 0)
(1.01349 -0.00135038 0)
(1.01356 -0.00134847 0)
(1.01363 -0.00134552 0)
(1.01369 -0.00134145 0)
(1.01376 -0.00133614 0)
(1.01382 -0.00132952 0)
(1.01388 -0.00132152 0)
(1.01395 -0.00131208 0)
(1.01401 -0.00130116 0)
(1.01408 -0.00128874 0)
(1.01414 -0.00127481 0)
(1.01421 -0.00125938 0)
(1.01427 -0.00124248 0)
(1.01434 -0.00122417 0)
(1.0144 -0.00120452 0)
(1.01447 -0.00118365 0)
(1.01453 -0.00116168 0)
(1.0146 -0.00113877 0)
(1.01466 -0.0011151 0)
(1.01473 -0.00109087 0)
(1.01479 -0.00106631 0)
(1.01486 -0.00104165 0)
(1.01493 -0.00101716 0)
(1.01499 -0.00099309 0)
(1.01506 -0.000969706 0)
(1.01513 -0.00094727 0)
(1.01519 -0.000926034 0)
(1.01526 -0.000906244 0)
(1.01533 -0.000888115 0)
(1.0154 -0.000871859 0)
(1.01546 -0.000857631 0)
(1.01553 -0.000845607 0)
(1.0156 -0.000835842 0)
(1.01567 -0.000828504 0)
(1.01573 -0.000823484 0)
(1.0158 -0.000821017 0)
(1.009 -0.00230408 0)
(1.00908 -0.00229528 0)
(1.00915 -0.00228528 0)
(1.00923 -0.00227402 0)
(1.00931 -0.00226146 0)
(1.00939 -0.00224757 0)
(1.00946 -0.00223236 0)
(1.00954 -0.00221586 0)
(1.00962 -0.00219812 0)
(1.00969 -0.00217921 0)
(1.00977 -0.00215922 0)
(1.00984 -0.00213824 0)
(1.00992 -0.00211639 0)
(1.01 -0.00209377 0)
(1.01007 -0.0020705 0)
(1.01015 -0.00204669 0)
(1.01022 -0.00202246 0)
(1.0103 -0.00199791 0)
(1.01037 -0.00197313 0)
(1.01045 -0.00194823 0)
(1.01052 -0.00192329 0)
(1.0106 -0.00189838 0)
(1.01067 -0.00187357 0)
(1.01075 -0.00184894 0)
(1.01082 -0.00182452 0)
(1.0109 -0.00180039 0)
(1.01097 -0.00177658 0)
(1.01105 -0.00175315 0)
(1.01113 -0.00173015 0)
(1.0112 -0.00170764 0)
(1.01128 -0.00168568 0)
(1.01135 -0.00166432 0)
(1.01142 -0.00164365 0)
(1.0115 -0.00162374 0)
(1.01157 -0.00160466 0)
(1.01165 -0.00158649 0)
(1.01172 -0.00156932 0)
(1.0118 -0.00155321 0)
(1.01187 -0.00153822 0)
(1.01195 -0.00152442 0)
(1.01202 -0.00151185 0)
(1.01209 -0.00150052 0)
(1.01217 -0.00149046 0)
(1.01224 -0.00148165 0)
(1.01231 -0.00147408 0)
(1.01239 -0.00146769 0)
(1.01246 -0.00146245 0)
(1.01253 -0.00145827 0)
(1.0126 -0.0014551 0)
(1.01267 -0.00145284 0)
(1.01274 -0.00145139 0)
(1.01281 -0.00145068 0)
(1.01288 -0.00145058 0)
(1.01295 -0.00145101 0)
(1.01302 -0.00145185 0)
(1.01309 -0.00145299 0)
(1.01316 -0.00145433 0)
(1.01323 -0.00145574 0)
(1.0133 -0.00145712 0)
(1.01336 -0.00145833 0)
(1.01343 -0.00145926 0)
(1.0135 -0.00145978 0)
(1.01356 -0.00145977 0)
(1.01363 -0.00145911 0)
(1.0137 -0.00145769 0)
(1.01376 -0.00145538 0)
(1.01383 -0.00145207 0)
(1.01389 -0.00144768 0)
(1.01396 -0.0014421 0)
(1.01402 -0.00143527 0)
(1.01408 -0.0014271 0)
(1.01415 -0.00141755 0)
(1.01421 -0.00140657 0)
(1.01428 -0.00139414 0)
(1.01434 -0.00138025 0)
(1.01441 -0.0013649 0)
(1.01447 -0.00134814 0)
(1.01454 -0.00133001 0)
(1.0146 -0.00131059 0)
(1.01467 -0.00128997 0)
(1.01473 -0.0012683 0)
(1.0148 -0.0012457 0)
(1.01486 -0.00122237 0)
(1.01493 -0.00119849 0)
(1.01499 -0.00117428 0)
(1.01506 -0.00114997 0)
(1.01513 -0.00112581 0)
(1.01519 -0.00110205 0)
(1.01526 -0.00107895 0)
(1.01533 -0.00105675 0)
(1.01539 -0.00103571 0)
(1.01546 -0.00101607 0)
(1.01553 -0.000998019 0)
(1.01559 -0.000981779 0)
(1.01566 -0.000967497 0)
(1.01573 -0.000955345 0)
(1.0158 -0.000945377 0)
(1.01586 -0.000937757 0)
(1.01593 -0.00093238 0)
(1.016 -0.000929477 0)
(1.00921 -0.002429 0)
(1.00929 -0.00241954 0)
(1.00936 -0.00240893 0)
(1.00944 -0.00239711 0)
(1.00952 -0.00238403 0)
(1.0096 -0.00236967 0)
(1.00967 -0.00235403 0)
(1.00975 -0.00233715 0)
(1.00983 -0.00231908 0)
(1.0099 -0.00229988 0)
(1.00998 -0.00227964 0)
(1.01005 -0.00225845 0)
(1.01013 -0.00223642 0)
(1.0102 -0.00221365 0)
(1.01028 -0.00219025 0)
(1.01036 -0.00216634 0)
(1.01043 -0.00214202 0)
(1.01051 -0.0021174 0)
(1.01058 -0.00209257 0)
(1.01066 -0.00206762 0)
(1.01073 -0.00204264 0)
(1.01081 -0.0020177 0)
(1.01088 -0.00199286 0)
(1.01096 -0.00196819 0)
(1.01103 -0.00194375 0)
(1.01111 -0.00191957 0)
(1.01118 -0.00189573 0)
(1.01126 -0.00187225 0)
(1.01133 -0.0018492 0)
(1.01141 -0.00182662 0)
(1.01148 -0.00180458 0)
(1.01156 -0.00178313 0)
(1.01163 -0.00176235 0)
(1.01171 -0.0017423 0)
(1.01178 -0.00172307 0)
(1.01186 -0.00170473 0)
(1.01193 -0.00168735 0)
(1.01201 -0.00167101 0)
(1.01208 -0.00165576 0)
(1.01215 -0.00164167 0)
(1.01223 -0.00162876 0)
(1.0123 -0.00161708 0)
(1.01238 -0.00160662 0)
(1.01245 -0.00159739 0)
(1.01252 -0.00158935 0)
(1.01259 -0.00158248 0)
(1.01267 -0.00157672 0)
(1.01274 -0.00157201 0)
(1.01281 -0.00156828 0)
(1.01288 -0.00156544 0)
(1.01295 -0.0015634 0)
(1.01302 -0.00156207 0)
(1.01309 -0.00156136 0)
(1.01316 -0.00156117 0)
(1.01323 -0.00156139 0)
(1.0133 -0.00156191 0)
(1.01337 -0.00156263 0)
(1.01344 -0.00156343 0)
(1.0135 -0.00156421 0)
(1.01357 -0.00156485 0)
(1.01364 -0.00156522 0)
(1.0137 -0.00156521 0)
(1.01377 -0.0015647 0)
(1.01384 -0.00156357 0)
(1.0139 -0.00156171 0)
(1.01397 -0.001559 0)
(1.01403 -0.00155534 0)
(1.0141 -0.00155063 0)
(1.01416 -0.00154479 0)
(1.01423 -0.00153774 0)
(1.01429 -0.0015294 0)
(1.01436 -0.00151973 0)
(1.01442 -0.00150869 0)
(1.01449 -0.00149624 0)
(1.01455 -0.00148238 0)
(1.01461 -0.00146712 0)
(1.01468 -0.00145048 0)
(1.01474 -0.00143252 0)
(1.01481 -0.00141332 0)
(1.01487 -0.00139295 0)
(1.01494 -0.00137155 0)
(1.015 -0.00134926 0)
(1.01507 -0.00132625 0)
(1.01513 -0.00130271 0)
(1.0152 -0.00127884 0)
(1.01527 -0.00125487 0)
(1.01533 -0.00123103 0)
(1.0154 -0.00120757 0)
(1.01546 -0.00118474 0)
(1.01553 -0.00116278 0)
(1.0156 -0.00114193 0)
(1.01566 -0.00112242 0)
(1.01573 -0.00110445 0)
(1.0158 -0.00108823 0)
(1.01587 -0.00107389 0)
(1.01593 -0.00106161 0)
(1.016 -0.00105144 0)
(1.01607 -0.00104354 0)
(1.01613 -0.00103782 0)
(1.0162 -0.00103449 0)
(1.00942 -0.00255017 0)
(1.0095 -0.00254006 0)
(1.00958 -0.00252884 0)
(1.00966 -0.00251646 0)
(1.00974 -0.00250287 0)
(1.00981 -0.00248804 0)
(1.00989 -0.00247199 0)
(1.00997 -0.00245475 0)
(1.01004 -0.00243635 0)
(1.01012 -0.00241686 0)
(1.01019 -0.00239638 0)
(1.01027 -0.00237498 0)
(1.01035 -0.00235277 0)
(1.01042 -0.00232985 0)
(1.0105 -0.00230633 0)
(1.01057 -0.00228232 0)
(1.01065 -0.00225793 0)
(1.01072 -0.00223324 0)
(1.0108 -0.00220836 0)
(1.01087 -0.00218337 0)
(1.01095 -0.00215835 0)
(1.01102 -0.00213338 0)
(1.0111 -0.00210851 0)
(1.01117 -0.00208382 0)
(1.01125 -0.00205934 0)
(1.01132 -0.00203514 0)
(1.0114 -0.00201126 0)
(1.01147 -0.00198774 0)
(1.01155 -0.00196464 0)
(1.01162 -0.001942 0)
(1.0117 -0.00191988 0)
(1.01177 -0.00189835 0)
(1.01185 -0.00187747 0)
(1.01192 -0.0018573 0)
(1.012 -0.00183793 0)
(1.01207 -0.00181942 0)
(1.01215 -0.00180184 0)
(1.01222 -0.00178528 0)
(1.0123 -0.00176978 0)
(1.01237 -0.0017554 0)
(1.01244 -0.00174218 0)
(1.01252 -0.00173015 0)
(1.01259 -0.00171931 0)
(1.01266 -0.00170966 0)
(1.01274 -0.00170118 0)
(1.01281 -0.00169384 0)
(1.01288 -0.00168758 0)
(1.01295 -0.00168235 0)
(1.01302 -0.00167807 0)
(1.0131 -0.00167466 0)
(1.01317 -0.00167205 0)
(1.01324 -0.00167013 0)
(1.01331 -0.00166882 0)
(1.01338 -0.00166802 0)
(1.01345 -0.00166763 0)
(1.01351 -0.00166754 0)
(1.01358 -0.00166766 0)
(1.01365 -0.00166787 0)
(1.01372 -0.00166807 0)
(1.01379 -0.00166813 0)
(1.01385 -0.00166796 0)
(1.01392 -0.00166743 0)
(1.01399 -0.00166642 0)
(1.01405 -0.00166483 0)
(1.01412 -0.00166253 0)
(1.01418 -0.00165943 0)
(1.01425 -0.00165542 0)
(1.01431 -0.00165041 0)
(1.01438 -0.0016443 0)
(1.01444 -0.00163703 0)
(1.01451 -0.00162853 0)
(1.01457 -0.00161874 0)
(1.01463 -0.00160762 0)
(1.0147 -0.00159515 0)
(1.01476 -0.00158132 0)
(1.01483 -0.00156613 0)
(1.01489 -0.00154962 0)
(1.01496 -0.00153182 0)
(1.01502 -0.00151282 0)
(1.01509 -0.00149269 0)
(1.01515 -0.00147156 0)
(1.01522 -0.00144957 0)
(1.01528 -0.00142687 0)
(1.01535 -0.00140365 0)
(1.01541 -0.00138011 0)
(1.01548 -0.00135646 0)
(1.01554 -0.00133294 0)
(1.01561 -0.00130977 0)
(1.01568 -0.00128721 0)
(1.01574 -0.00126547 0)
(1.01581 -0.00124481 0)
(1.01588 -0.00122543 0)
(1.01594 -0.00120753 0)
(1.01601 -0.00119132 0)
(1.01608 -0.00117693 0)
(1.01614 -0.00116453 0)
(1.01621 -0.00115416 0)
(1.01628 -0.00114599 0)
(1.01634 -0.00113992 0)
(1.01641 -0.00113617 0)
(1.00965 -0.00266769 0)
(1.00973 -0.00265694 0)
(1.0098 -0.00264513 0)
(1.00988 -0.00263219 0)
(1.00996 -0.0026181 0)
(1.01004 -0.00260282 0)
(1.01011 -0.00258636 0)
(1.01019 -0.00256874 0)
(1.01027 -0.00255002 0)
(1.01034 -0.00253026 0)
(1.01042 -0.00250953 0)
(1.01049 -0.00248793 0)
(1.01057 -0.00246555 0)
(1.01064 -0.00244249 0)
(1.01072 -0.00241886 0)
(1.0108 -0.00239475 0)
(1.01087 -0.00237028 0)
(1.01095 -0.00234553 0)
(1.01102 -0.0023206 0)
(1.0111 -0.00229557 0)
(1.01117 -0.00227052 0)
(1.01125 -0.00224552 0)
(1.01132 -0.00222064 0)
(1.0114 -0.00219592 0)
(1.01147 -0.00217142 0)
(1.01155 -0.00214719 0)
(1.01162 -0.00212328 0)
(1.0117 -0.00209972 0)
(1.01177 -0.00207657 0)
(1.01185 -0.00205388 0)
(1.01192 -0.0020317 0)
(1.012 -0.00201009 0)
(1.01207 -0.00198911 0)
(1.01215 -0.00196883 0)
(1.01222 -0.00194932 0)
(1.01229 -0.00193065 0)
(1.01237 -0.00191289 0)
(1.01244 -0.00189611 0)
(1.01252 -0.00188037 0)
(1.01259 -0.00186572 0)
(1.01267 -0.0018522 0)
(1.01274 -0.00183982 0)
(1.01281 -0.00182862 0)
(1.01289 -0.00181857 0)
(1.01296 -0.00180966 0)
(1.01303 -0.00180186 0)
(1.0131 -0.00179512 0)
(1.01318 -0.00178938 0)
(1.01325 -0.00178457 0)
(1.01332 -0.00178062 0)
(1.01339 -0.00177743 0)
(1.01346 -0.00177494 0)
(1.01353 -0.00177304 0)
(1.0136 -0.00177165 0)
(1.01367 -0.00177066 0)
(1.01374 -0.00176998 0)
(1.0138 -0.00176951 0)
(1.01387 -0.00176914 0)
(1.01394 -0.00176876 0)
(1.01401 -0.00176828 0)
(1.01407 -0.00176757 0)
(1.01414 -0.00176652 0)
(1.01421 -0.00176503 0)
(1.01427 -0.00176298 0)
(1.01434 -0.00176026 0)
(1.0144 -0.00175678 0)
(1.01447 -0.00175242 0)
(1.01453 -0.0017471 0)
(1.0146 -0.00174073 0)
(1.01466 -0.00173324 0)
(1.01473 -0.00172457 0)
(1.01479 -0.00171466 0)
(1.01486 -0.00170347 0)
(1.01492 -0.00169097 0)
(1.01498 -0.00167716 0)
(1.01505 -0.00166205 0)
(1.01511 -0.00164565 0)
(1.01518 -0.00162801 0)
(1.01524 -0.0016092 0)
(1.01531 -0.0015893 0)
(1.01537 -0.00156844 0)
(1.01544 -0.00154673 0)
(1.0155 -0.00152433 0)
(1.01557 -0.00150143 0)
(1.01563 -0.00147821 0)
(1.0157 -0.00145487 0)
(1.01576 -0.00143165 0)
(1.01583 -0.00140877 0)
(1.0159 -0.00138646 0)
(1.01596 -0.00136495 0)
(1.01603 -0.00134446 0)
(1.0161 -0.00132521 0)
(1.01616 -0.00130739 0)
(1.01623 -0.00129118 0)
(1.0163 -0.00127674 0)
(1.01636 -0.00126421 0)
(1.01643 -0.00125366 0)
(1.0165 -0.00124522 0)
(1.01656 -0.00123882 0)
(1.01663 -0.00123466 0)
(1.00988 -0.00278167 0)
(1.00996 -0.00277028 0)
(1.01004 -0.00275788 0)
(1.01011 -0.00274441 0)
(1.01019 -0.00272981 0)
(1.01027 -0.00271408 0)
(1.01034 -0.00269722 0)
(1.01042 -0.00267925 0)
(1.0105 -0.00266022 0)
(1.01057 -0.00264018 0)
(1.01065 -0.00261922 0)
(1.01072 -0.00259742 0)
(1.0108 -0.00257487 0)
(1.01088 -0.00255167 0)
(1.01095 -0.00252792 0)
(1.01103 -0.00250373 0)
(1.0111 -0.00247918 0)
(1.01118 -0.00245438 0)
(1.01125 -0.0024294 0)
(1.01133 -0.00240434 0)
(1.0114 -0.00237926 0)
(1.01148 -0.00235424 0)
(1.01155 -0.00232933 0)
(1.01163 -0.00230459 0)
(1.0117 -0.00228008 0)
(1.01178 -0.00225582 0)
(1.01185 -0.00223188 0)
(1.01193 -0.0022083 0)
(1.012 -0.00218511 0)
(1.01208 -0.00216237 0)
(1.01215 -0.00214013 0)
(1.01223 -0.00211844 0)
(1.0123 -0.00209737 0)
(1.01238 -0.00207699 0)
(1.01245 -0.00205735 0)
(1.01252 -0.00203853 0)
(1.0126 -0.00202059 0)
(1.01267 -0.00200361 0)
(1.01275 -0.00198764 0)
(1.01282 -0.00197272 0)
(1.0129 -0.0019589 0)
(1.01297 -0.00194621 0)
(1.01304 -0.00193464 0)
(1.01312 -0.00192421 0)
(1.01319 -0.00191488 0)
(1.01326 -0.00190664 0)
(1.01333 -0.00189943 0)
(1.0134 -0.00189319 0)
(1.01348 -0.00188786 0)
(1.01355 -0.00188338 0)
(1.01362 -0.00187965 0)
(1.01369 -0.00187659 0)
(1.01376 -0.00187412 0)
(1.01383 -0.00187215 0)
(1.0139 -0.00187058 0)
(1.01397 -0.00186932 0)
(1.01403 -0.00186827 0)
(1.0141 -0.00186733 0)
(1.01417 -0.0018664 0)
(1.01424 -0.00186537 0)
(1.0143 -0.00186413 0)
(1.01437 -0.00186259 0)
(1.01444 -0.00186062 0)
(1.0145 -0.00185812 0)
(1.01457 -0.00185498 0)
(1.01463 -0.00185112 0)
(1.0147 -0.00184642 0)
(1.01476 -0.00184079 0)
(1.01483 -0.00183417 0)
(1.01489 -0.00182646 0)
(1.01496 -0.00181762 0)
(1.01502 -0.00180759 0)
(1.01508 -0.00179632 0)
(1.01515 -0.0017838 0)
(1.01521 -0.00177001 0)
(1.01528 -0.00175496 0)
(1.01534 -0.00173867 0)
(1.0154 -0.00172118 0)
(1.01547 -0.00170256 0)
(1.01553 -0.00168289 0)
(1.0156 -0.00166227 0)
(1.01566 -0.00164084 0)
(1.01573 -0.00161874 0)
(1.01579 -0.00159614 0)
(1.01586 -0.00157323 0)
(1.01592 -0.0015502 0)
(1.01599 -0.00152728 0)
(1.01606 -0.00150467 0)
(1.01612 -0.00148261 0)
(1.01619 -0.00146131 0)
(1.01626 -0.001441 0)
(1.01632 -0.00142187 0)
(1.01639 -0.00140412 0)
(1.01646 -0.00138793 0)
(1.01652 -0.00137343 0)
(1.01659 -0.00136078 0)
(1.01666 -0.00135004 0)
(1.01672 -0.00134135 0)
(1.01679 -0.00133462 0)
(1.01685 -0.00133006 0)
(1.01012 -0.00289221 0)
(1.0102 -0.00288019 0)
(1.01028 -0.00286721 0)
(1.01035 -0.0028532 0)
(1.01043 -0.00283812 0)
(1.01051 -0.00282195 0)
(1.01058 -0.00280469 0)
(1.01066 -0.00278637 0)
(1.01074 -0.00276703 0)
(1.01081 -0.00274673 0)
(1.01089 -0.00272554 0)
(1.01096 -0.00270354 0)
(1.01104 -0.00268083 0)
(1.01111 -0.0026575 0)
(1.01119 -0.00263364 0)
(1.01126 -0.00260936 0)
(1.01134 -0.00258474 0)
(1.01141 -0.00255988 0)
(1.01149 -0.00253486 0)
(1.01156 -0.00250977 0)
(1.01164 -0.00248467 0)
(1.01171 -0.00245962 0)
(1.01179 -0.0024347 0)
(1.01186 -0.00240995 0)
(1.01194 -0.00238541 0)
(1.01201 -0.00236114 0)
(1.01209 -0.00233718 0)
(1.01216 -0.00231357 0)
(1.01224 -0.00229034 0)
(1.01231 -0.00226756 0)
(1.01239 -0.00224526 0)
(1.01246 -0.00222351 0)
(1.01254 -0.00220235 0)
(1.01261 -0.00218186 0)
(1.01269 -0.0021621 0)
(1.01276 -0.00214314 0)
(1.01284 -0.00212504 0)
(1.01291 -0.00210786 0)
(1.01298 -0.00209166 0)
(1.01306 -0.00207649 0)
(1.01313 -0.00206239 0)
(1.01321 -0.00204938 0)
(1.01328 -0.00203747 0)
(1.01335 -0.00202666 0)
(1.01342 -0.00201694 0)
(1.0135 -0.00200826 0)
(1.01357 -0.00200059 0)
(1.01364 -0.00199387 0)
(1.01371 -0.00198804 0)
(1.01378 -0.00198304 0)
(1.01385 -0.00197877 0)
(1.01392 -0.00197517 0)
(1.01399 -0.00197214 0)
(1.01406 -0.00196961 0)
(1.01413 -0.00196747 0)
(1.0142 -0.00196564 0)
(1.01427 -0.00196403 0)
(1.01434 -0.00196254 0)
(1.01441 -0.00196106 0)
(1.01447 -0.0019595 0)
(1.01454 -0.00195775 0)
(1.01461 -0.00195571 0)
(1.01467 -0.00195327 0)
(1.01474 -0.00195033 0)
(1.0148 -0.00194679 0)
(1.01487 -0.00194255 0)
(1.01493 -0.00193751 0)
(1.015 -0.00193159 0)
(1.01506 -0.00192471 0)
(1.01513 -0.00191679 0)
(1.01519 -0.00190778 0)
(1.01526 -0.00189763 0)
(1.01532 -0.00188629 0)
(1.01538 -0.00187373 0)
(1.01545 -0.00185996 0)
(1.01551 -0.00184497 0)
(1.01558 -0.00182878 0)
(1.01564 -0.00181144 0)
(1.0157 -0.001793 0)
(1.01577 -0.00177355 0)
(1.01583 -0.00175317 0)
(1.0159 -0.00173201 0)
(1.01596 -0.0017102 0)
(1.01603 -0.00168789 0)
(1.01609 -0.00166528 0)
(1.01616 -0.00164256 0)
(1.01622 -0.00161992 0)
(1.01629 -0.00159758 0)
(1.01636 -0.00157576 0)
(1.01642 -0.00155467 0)
(1.01649 -0.00153453 0)
(1.01656 -0.00151552 0)
(1.01662 -0.00149784 0)
(1.01669 -0.00148166 0)
(1.01676 -0.00146711 0)
(1.01682 -0.00145435 0)
(1.01689 -0.00144342 0)
(1.01696 -0.00143448 0)
(1.01702 -0.00142743 0)
(1.01709 -0.00142248 0)
(1.01037 -0.00299939 0)
(1.01044 -0.00298677 0)
(1.01052 -0.00297322 0)
(1.0106 -0.00295868 0)
(1.01068 -0.00294312 0)
(1.01075 -0.00292652 0)
(1.01083 -0.00290887 0)
(1.01091 -0.00289021 0)
(1.01098 -0.00287056 0)
(1.01106 -0.00285 0)
(1.01113 -0.00282858 0)
(1.01121 -0.0028064 0)
(1.01128 -0.00278353 0)
(1.01136 -0.00276006 0)
(1.01143 -0.0027361 0)
(1.01151 -0.00271173 0)
(1.01158 -0.00268705 0)
(1.01166 -0.00266214 0)
(1.01173 -0.00263709 0)
(1.01181 -0.00261196 0)
(1.01188 -0.00258684 0)
(1.01196 -0.00256178 0)
(1.01203 -0.00253684 0)
(1.01211 -0.00251207 0)
(1.01218 -0.00248753 0)
(1.01226 -0.00246324 0)
(1.01233 -0.00243926 0)
(1.01241 -0.00241562 0)
(1.01248 -0.00239237 0)
(1.01256 -0.00236954 0)
(1.01263 -0.0023472 0)
(1.01271 -0.00232538 0)
(1.01278 -0.00230415 0)
(1.01286 -0.00228356 0)
(1.01293 -0.00226369 0)
(1.01301 -0.00224459 0)
(1.01308 -0.00222632 0)
(1.01315 -0.00220896 0)
(1.01323 -0.00219255 0)
(1.0133 -0.00217713 0)
(1.01338 -0.00216276 0)
(1.01345 -0.00214944 0)
(1.01352 -0.0021372 0)
(1.0136 -0.00212603 0)
(1.01367 -0.00211591 0)
(1.01374 -0.00210681 0)
(1.01381 -0.0020987 0)
(1.01389 -0.00209152 0)
(1.01396 -0.0020852 0)
(1.01403 -0.00207969 0)
(1.0141 -0.0020749 0)
(1.01417 -0.00207076 0)
(1.01424 -0.0020672 0)
(1.01431 -0.00206411 0)
(1.01438 -0.00206142 0)
(1.01445 -0.00205904 0)
(1.01451 -0.00205688 0)
(1.01458 -0.00205484 0)
(1.01465 -0.00205283 0)
(1.01472 -0.00205075 0)
(1.01478 -0.0020485 0)
(1.01485 -0.00204598 0)
(1.01492 -0.00204308 0)
(1.01498 -0.00203971 0)
(1.01505 -0.00203577 0)
(1.01511 -0.00203116 0)
(1.01518 -0.00202579 0)
(1.01524 -0.00201958 0)
(1.01531 -0.00201245 0)
(1.01537 -0.00200432 0)
(1.01543 -0.00199514 0)
(1.0155 -0.00198487 0)
(1.01556 -0.00197345 0)
(1.01563 -0.00196087 0)
(1.01569 -0.00194711 0)
(1.01575 -0.00193217 0)
(1.01582 -0.00191609 0)
(1.01588 -0.00189888 0)
(1.01595 -0.00188062 0)
(1.01601 -0.00186137 0)
(1.01607 -0.00184124 0)
(1.01614 -0.00182033 0)
(1.0162 -0.0017988 0)
(1.01627 -0.00177678 0)
(1.01633 -0.00175447 0)
(1.0164 -0.00173203 0)
(1.01647 -0.00170967 0)
(1.01653 -0.0016876 0)
(1.0166 -0.00166602 0)
(1.01666 -0.00164513 0)
(1.01673 -0.00162515 0)
(1.0168 -0.00160626 0)
(1.01686 -0.00158865 0)
(1.01693 -0.00157248 0)
(1.017 -0.00155788 0)
(1.01706 -0.00154501 0)
(1.01713 -0.0015339 0)
(1.0172 -0.00152471 0)
(1.01726 -0.00151736 0)
(1.01733 -0.00151203 0)
(1.01062 -0.00310333 0)
(1.0107 -0.0030901 0)
(1.01078 -0.00307599 0)
(1.01085 -0.00306094 0)
(1.01093 -0.00304491 0)
(1.01101 -0.00302788 0)
(1.01108 -0.00300985 0)
(1.01116 -0.00299085 0)
(1.01124 -0.00297091 0)
(1.01131 -0.00295009 0)
(1.01139 -0.00292846 0)
(1.01146 -0.00290609 0)
(1.01154 -0.00288307 0)
(1.01161 -0.00285948 0)
(1.01169 -0.00283541 0)
(1.01176 -0.00281096 0)
(1.01184 -0.00278622 0)
(1.01191 -0.00276126 0)
(1.01199 -0.00273617 0)
(1.01206 -0.00271101 0)
(1.01214 -0.00268587 0)
(1.01221 -0.0026608 0)
(1.01229 -0.00263585 0)
(1.01236 -0.00261107 0)
(1.01244 -0.00258652 0)
(1.01251 -0.00256222 0)
(1.01259 -0.00253822 0)
(1.01266 -0.00251456 0)
(1.01274 -0.00249128 0)
(1.01281 -0.00246842 0)
(1.01289 -0.00244603 0)
(1.01296 -0.00242415 0)
(1.01303 -0.00240285 0)
(1.01311 -0.00238217 0)
(1.01318 -0.00236219 0)
(1.01326 -0.00234295 0)
(1.01333 -0.00232454 0)
(1.01341 -0.00230699 0)
(1.01348 -0.00229038 0)
(1.01355 -0.00227473 0)
(1.01363 -0.00226009 0)
(1.0137 -0.00224648 0)
(1.01378 -0.00223392 0)
(1.01385 -0.00222239 0)
(1.01392 -0.00221189 0)
(1.01399 -0.00220239 0)
(1.01407 -0.00219385 0)
(1.01414 -0.00218621 0)
(1.01421 -0.00217942 0)
(1.01428 -0.00217342 0)
(1.01435 -0.00216812 0)
(1.01442 -0.00216347 0)
(1.01449 -0.00215937 0)
(1.01456 -0.00215575 0)
(1.01463 -0.00215252 0)
(1.0147 -0.0021496 0)
(1.01477 -0.0021469 0)
(1.01483 -0.00214434 0)
(1.0149 -0.00214181 0)
(1.01497 -0.00213922 0)
(1.01503 -0.00213648 0)
(1.0151 -0.00213348 0)
(1.01517 -0.00213014 0)
(1.01523 -0.00212635 0)
(1.0153 -0.00212201 0)
(1.01536 -0.00211704 0)
(1.01543 -0.00211135 0)
(1.01549 -0.00210485 0)
(1.01556 -0.00209747 0)
(1.01562 -0.00208914 0)
(1.01568 -0.00207979 0)
(1.01575 -0.0020694 0)
(1.01581 -0.0020579 0)
(1.01588 -0.00204529 0)
(1.01594 -0.00203154 0)
(1.016 -0.00201666 0)
(1.01607 -0.00200067 0)
(1.01613 -0.0019836 0)
(1.0162 -0.0019655 0)
(1.01626 -0.00194646 0)
(1.01632 -0.00192656 0)
(1.01639 -0.00190591 0)
(1.01645 -0.00188464 0)
(1.01652 -0.00186291 0)
(1.01658 -0.00184088 0)
(1.01665 -0.00181872 0)
(1.01672 -0.00179664 0)
(1.01678 -0.00177482 0)
(1.01685 -0.00175347 0)
(1.01691 -0.00173279 0)
(1.01698 -0.00171296 0)
(1.01705 -0.0016942 0)
(1.01711 -0.00167665 0)
(1.01718 -0.00166049 0)
(1.01725 -0.00164585 0)
(1.01731 -0.00163286 0)
(1.01738 -0.00162159 0)
(1.01744 -0.00161216 0)
(1.01751 -0.0016045 0)
(1.01758 -0.00159881 0)
(1.01088 -0.0032041 0)
(1.01096 -0.00319028 0)
(1.01104 -0.00317562 0)
(1.01112 -0.00316006 0)
(1.01119 -0.00314357 0)
(1.01127 -0.00312613 0)
(1.01135 -0.00310773 0)
(1.01142 -0.0030884 0)
(1.0115 -0.00306817 0)
(1.01157 -0.00304711 0)
(1.01165 -0.00302526 0)
(1.01172 -0.00300271 0)
(1.0118 -0.00297953 0)
(1.01187 -0.00295582 0)
(1.01195 -0.00293166 0)
(1.01202 -0.00290713 0)
(1.0121 -0.00288233 0)
(1.01217 -0.00285732 0)
(1.01225 -0.0028322 0)
(1.01232 -0.00280702 0)
(1.0124 -0.00278186 0)
(1.01247 -0.00275678 0)
(1.01255 -0.00273182 0)
(1.01262 -0.00270704 0)
(1.0127 -0.00268247 0)
(1.01277 -0.00265817 0)
(1.01285 -0.00263415 0)
(1.01292 -0.00261048 0)
(1.013 -0.00258717 0)
(1.01307 -0.00256428 0)
(1.01315 -0.00254185 0)
(1.01322 -0.00251992 0)
(1.0133 -0.00249854 0)
(1.01337 -0.00247778 0)
(1.01344 -0.00245769 0)
(1.01352 -0.00243834 0)
(1.01359 -0.00241977 0)
(1.01367 -0.00240206 0)
(1.01374 -0.00238524 0)
(1.01381 -0.00236937 0)
(1.01389 -0.00235448 0)
(1.01396 -0.00234059 0)
(1.01404 -0.00232771 0)
(1.01411 -0.00231584 0)
(1.01418 -0.00230498 0)
(1.01425 -0.00229508 0)
(1.01433 -0.00228612 0)
(1.0144 -0.00227804 0)
(1.01447 -0.00227079 0)
(1.01454 -0.00226431 0)
(1.01461 -0.00225852 0)
(1.01468 -0.00225336 0)
(1.01475 -0.00224875 0)
(1.01482 -0.00224461 0)
(1.01489 -0.00224085 0)
(1.01496 -0.00223741 0)
(1.01503 -0.00223419 0)
(1.01509 -0.0022311 0)
(1.01516 -0.00222807 0)
(1.01523 -0.00222498 0)
(1.01529 -0.00222176 0)
(1.01536 -0.00221831 0)
(1.01543 -0.00221452 0)
(1.01549 -0.00221032 0)
(1.01556 -0.0022056 0)
(1.01562 -0.00220028 0)
(1.01569 -0.00219427 0)
(1.01575 -0.00218749 0)
(1.01582 -0.00217986 0)
(1.01588 -0.00217132 0)
(1.01594 -0.00216182 0)
(1.01601 -0.0021513 0)
(1.01607 -0.00213973 0)
(1.01613 -0.00212709 0)
(1.0162 -0.00211335 0)
(1.01626 -0.00209852 0)
(1.01633 -0.00208262 0)
(1.01639 -0.00206568 0)
(1.01645 -0.00204775 0)
(1.01652 -0.0020289 0)
(1.01658 -0.00200922 0)
(1.01665 -0.00198882 0)
(1.01671 -0.00196782 0)
(1.01678 -0.00194636 0)
(1.01684 -0.00192461 0)
(1.01691 -0.00190273 0)
(1.01697 -0.00188091 0)
(1.01704 -0.00185934 0)
(1.0171 -0.00183822 0)
(1.01717 -0.00181773 0)
(1.01724 -0.00179807 0)
(1.0173 -0.00177941 0)
(1.01737 -0.00176193 0)
(1.01744 -0.00174579 0)
(1.0175 -0.0017311 0)
(1.01757 -0.00171801 0)
(1.01763 -0.00170657 0)
(1.0177 -0.00169691 0)
(1.01777 -0.00168896 0)
(1.01783 -0.00168291 0)
(1.01115 -0.0033018 0)
(1.01123 -0.0032874 0)
(1.01131 -0.0032722 0)
(1.01139 -0.00325615 0)
(1.01146 -0.00323921 0)
(1.01154 -0.00322136 0)
(1.01162 -0.0032026 0)
(1.01169 -0.00318295 0)
(1.01177 -0.00316244 0)
(1.01184 -0.00314113 0)
(1.01192 -0.00311907 0)
(1.01199 -0.00309635 0)
(1.01207 -0.00307303 0)
(1.01214 -0.0030492 0)
(1.01222 -0.00302494 0)
(1.01229 -0.00300034 0)
(1.01237 -0.00297548 0)
(1.01244 -0.00295043 0)
(1.01252 -0.00292527 0)
(1.01259 -0.00290008 0)
(1.01267 -0.0028749 0)
(1.01274 -0.00284981 0)
(1.01282 -0.00282484 0)
(1.01289 -0.00280006 0)
(1.01297 -0.00277549 0)
(1.01304 -0.00275117 0)
(1.01312 -0.00272715 0)
(1.01319 -0.00270346 0)
(1.01326 -0.00268014 0)
(1.01334 -0.00265722 0)
(1.01341 -0.00263474 0)
(1.01349 -0.00261276 0)
(1.01356 -0.00259133 0)
(1.01364 -0.00257049 0)
(1.01371 -0.0025503 0)
(1.01379 -0.00253083 0)
(1.01386 -0.00251212 0)
(1.01393 -0.00249424 0)
(1.01401 -0.00247723 0)
(1.01408 -0.00246115 0)
(1.01416 -0.00244601 0)
(1.01423 -0.00243184 0)
(1.0143 -0.00241866 0)
(1.01438 -0.00240647 0)
(1.01445 -0.00239525 0)
(1.01452 -0.00238497 0)
(1.01459 -0.0023756 0)
(1.01466 -0.00236709 0)
(1.01474 -0.0023594 0)
(1.01481 -0.00235245 0)
(1.01488 -0.00234618 0)
(1.01495 -0.00234053 0)
(1.01502 -0.00233542 0)
(1.01509 -0.00233077 0)
(1.01516 -0.00232651 0)
(1.01522 -0.00232255 0)
(1.01529 -0.00231882 0)
(1.01536 -0.00231523 0)
(1.01543 -0.0023117 0)
(1.01549 -0.00230813 0)
(1.01556 -0.00230444 0)
(1.01563 -0.00230054 0)
(1.01569 -0.00229633 0)
(1.01576 -0.00229172 0)
(1.01582 -0.00228662 0)
(1.01589 -0.00228096 0)
(1.01595 -0.00227463 0)
(1.01602 -0.00226757 0)
(1.01608 -0.00225971 0)
(1.01615 -0.00225097 0)
(1.01621 -0.00224131 0)
(1.01627 -0.00223067 0)
(1.01634 -0.00221903 0)
(1.0164 -0.00220635 0)
(1.01646 -0.00219262 0)
(1.01653 -0.00217784 0)
(1.01659 -0.00216202 0)
(1.01666 -0.00214521 0)
(1.01672 -0.00212744 0)
(1.01678 -0.00210878 0)
(1.01685 -0.00208932 0)
(1.01691 -0.00206916 0)
(1.01698 -0.00204841 0)
(1.01704 -0.00202722 0)
(1.01711 -0.00200574 0)
(1.01717 -0.00198414 0)
(1.01724 -0.00196258 0)
(1.0173 -0.00194126 0)
(1.01737 -0.00192035 0)
(1.01744 -0.00190006 0)
(1.0175 -0.00188055 0)
(1.01757 -0.00186201 0)
(1.01763 -0.0018446 0)
(1.0177 -0.00182847 0)
(1.01777 -0.00181374 0)
(1.01783 -0.00180055 0)
(1.0179 -0.00178894 0)
(1.01797 -0.00177906 0)
(1.01803 -0.00177083 0)
(1.0181 -0.00176443 0)
(1.01143 -0.00339652 0)
(1.01151 -0.00338155 0)
(1.01159 -0.00336583 0)
(1.01166 -0.00334929 0)
(1.01174 -0.00333191 0)
(1.01182 -0.00331366 0)
(1.01189 -0.00329454 0)
(1.01197 -0.00327458 0)
(1.01205 -0.0032538 0)
(1.01212 -0.00323225 0)
(1.0122 -0.00321 0)
(1.01227 -0.0031871 0)
(1.01235 -0.00316364 0)
(1.01242 -0.0031397 0)
(1.0125 -0.00311535 0)
(1.01257 -0.00309068 0)
(1.01265 -0.00306576 0)
(1.01272 -0.00304067 0)
(1.0128 -0.00301549 0)
(1.01287 -0.00299027 0)
(1.01294 -0.00296508 0)
(1.01302 -0.00293998 0)
(1.01309 -0.00291501 0)
(1.01317 -0.00289022 0)
(1.01324 -0.00286565 0)
(1.01332 -0.00284133 0)
(1.01339 -0.00281731 0)
(1.01347 -0.0027936 0)
(1.01354 -0.00277026 0)
(1.01362 -0.00274731 0)
(1.01369 -0.00272481 0)
(1.01377 -0.00270278 0)
(1.01384 -0.00268128 0)
(1.01391 -0.00266037 0)
(1.01399 -0.00264009 0)
(1.01406 -0.0026205 0)
(1.01414 -0.00260167 0)
(1.01421 -0.00258363 0)
(1.01429 -0.00256644 0)
(1.01436 -0.00255014 0)
(1.01443 -0.00253477 0)
(1.01451 -0.00252034 0)
(1.01458 -0.00250687 0)
(1.01465 -0.00249435 0)
(1.01472 -0.00248278 0)
(1.0148 -0.00247214 0)
(1.01487 -0.00246237 0)
(1.01494 -0.00245345 0)
(1.01501 -0.00244532 0)
(1.01508 -0.00243792 0)
(1.01515 -0.00243119 0)
(1.01522 -0.00242506 0)
(1.01529 -0.00241946 0)
(1.01536 -0.00241432 0)
(1.01543 -0.00240956 0)
(1.0155 -0.0024051 0)
(1.01557 -0.00240088 0)
(1.01564 -0.0023968 0)
(1.0157 -0.00239278 0)
(1.01577 -0.00238874 0)
(1.01584 -0.00238459 0)
(1.0159 -0.00238025 0)
(1.01597 -0.00237562 0)
(1.01603 -0.00237062 0)
(1.0161 -0.00236516 0)
(1.01616 -0.00235915 0)
(1.01623 -0.00235252 0)
(1.01629 -0.00234519 0)
(1.01636 -0.00233709 0)
(1.01642 -0.00232816 0)
(1.01648 -0.00231834 0)
(1.01655 -0.00230759 0)
(1.01661 -0.00229587 0)
(1.01668 -0.00228315 0)
(1.01674 -0.00226943 0)
(1.0168 -0.0022547 0)
(1.01687 -0.00223897 0)
(1.01693 -0.00222228 0)
(1.01699 -0.00220466 0)
(1.01706 -0.00218619 0)
(1.01712 -0.00216694 0)
(1.01719 -0.00214701 0)
(1.01725 -0.00212652 0)
(1.01732 -0.00210559 0)
(1.01738 -0.00208437 0)
(1.01745 -0.00206303 0)
(1.01751 -0.00204173 0)
(1.01758 -0.00202065 0)
(1.01764 -0.00199996 0)
(1.01771 -0.00197985 0)
(1.01777 -0.0019605 0)
(1.01784 -0.00194207 0)
(1.01791 -0.00192472 0)
(1.01797 -0.00190861 0)
(1.01804 -0.00189384 0)
(1.01811 -0.00188055 0)
(1.01817 -0.00186879 0)
(1.01824 -0.00185869 0)
(1.0183 -0.00185019 0)
(1.01837 -0.00184345 0)
(1.01172 -0.00348835 0)
(1.0118 -0.00347282 0)
(1.01187 -0.00345658 0)
(1.01195 -0.00343957 0)
(1.01203 -0.00342176 0)
(1.0121 -0.00340312 0)
(1.01218 -0.00338366 0)
(1.01226 -0.00336339 0)
(1.01233 -0.00334234 0)
(1.01241 -0.00332056 0)
(1.01248 -0.00329811 0)
(1.01256 -0.00327505 0)
(1.01263 -0.00325146 0)
(1.01271 -0.0032274 0)
(1.01278 -0.00320297 0)
(1.01286 -0.00317823 0)
(1.01293 -0.00315326 0)
(1.01301 -0.00312813 0)
(1.01308 -0.00310292 0)
(1.01316 -0.00307769 0)
(1.01323 -0.00305249 0)
(1.0133 -0.00302739 0)
(1.01338 -0.00300242 0)
(1.01345 -0.00297762 0)
(1.01353 -0.00295305 0)
(1.0136 -0.00292873 0)
(1.01368 -0.0029047 0)
(1.01375 -0.00288099 0)
(1.01383 -0.00285763 0)
(1.0139 -0.00283466 0)
(1.01398 -0.00281212 0)
(1.01405 -0.00279005 0)
(1.01412 -0.0027685 0)
(1.0142 -0.00274752 0)
(1.01427 -0.00272715 0)
(1.01435 -0.00270746 0)
(1.01442 -0.00268849 0)
(1.0145 -0.00267031 0)
(1.01457 -0.00265294 0)
(1.01464 -0.00263644 0)
(1.01472 -0.00262084 0)
(1.01479 -0.00260616 0)
(1.01486 -0.0025924 0)
(1.01494 -0.00257958 0)
(1.01501 -0.00256768 0)
(1.01508 -0.00255667 0)
(1.01515 -0.00254653 0)
(1.01522 -0.0025372 0)
(1.0153 -0.00252865 0)
(1.01537 -0.00252081 0)
(1.01544 -0.00251363 0)
(1.01551 -0.00250703 0)
(1.01558 -0.00250096 0)
(1.01565 -0.00249534 0)
(1.01572 -0.00249009 0)
(1.01578 -0.00248515 0)
(1.01585 -0.00248044 0)
(1.01592 -0.00247588 0)
(1.01599 -0.0024714 0)
(1.01605 -0.0024669 0)
(1.01612 -0.0024623 0)
(1.01619 -0.00245753 0)
(1.01625 -0.0024525 0)
(1.01632 -0.00244711 0)
(1.01638 -0.00244129 0)
(1.01645 -0.00243495 0)
(1.01651 -0.00242802 0)
(1.01658 -0.00242043 0)
(1.01664 -0.0024121 0)
(1.0167 -0.00240297 0)
(1.01677 -0.002393 0)
(1.01683 -0.00238213 0)
(1.0169 -0.00237034 0)
(1.01696 -0.00235759 0)
(1.01702 -0.00234387 0)
(1.01709 -0.00232918 0)
(1.01715 -0.00231353 0)
(1.01721 -0.00229696 0)
(1.01728 -0.0022795 0)
(1.01734 -0.00226121 0)
(1.0174 -0.00224216 0)
(1.01747 -0.00222246 0)
(1.01753 -0.00220221 0)
(1.0176 -0.00218154 0)
(1.01766 -0.00216058 0)
(1.01773 -0.0021395 0)
(1.01779 -0.00211845 0)
(1.01786 -0.0020976 0)
(1.01792 -0.00207713 0)
(1.01799 -0.0020572 0)
(1.01806 -0.002038 0)
(1.01812 -0.00201968 0)
(1.01819 -0.0020024 0)
(1.01826 -0.0019863 0)
(1.01832 -0.0019715 0)
(1.01839 -0.00195812 0)
(1.01845 -0.00194621 0)
(1.01852 -0.0019359 0)
(1.01859 -0.00192713 0)
(1.01865 -0.00192007 0)
(1.01201 -0.00357737 0)
(1.01209 -0.0035613 0)
(1.01217 -0.00354455 0)
(1.01225 -0.00352708 0)
(1.01232 -0.00350885 0)
(1.0124 -0.00348983 0)
(1.01248 -0.00347003 0)
(1.01255 -0.00344946 0)
(1.01263 -0.00342815 0)
(1.0127 -0.00340615 0)
(1.01278 -0.00338351 0)
(1.01285 -0.00336029 0)
(1.01293 -0.00333657 0)
(1.013 -0.00331241 0)
(1.01308 -0.00328788 0)
(1.01315 -0.00326308 0)
(1.01323 -0.00323806 0)
(1.0133 -0.0032129 0)
(1.01338 -0.00318767 0)
(1.01345 -0.00316242 0)
(1.01352 -0.00313722 0)
(1.0136 -0.00311211 0)
(1.01367 -0.00308714 0)
(1.01375 -0.00306235 0)
(1.01382 -0.00303778 0)
(1.0139 -0.00301346 0)
(1.01397 -0.00298942 0)
(1.01405 -0.0029657 0)
(1.01412 -0.00294233 0)
(1.0142 -0.00291935 0)
(1.01427 -0.00289678 0)
(1.01434 -0.00287467 0)
(1.01442 -0.00285307 0)
(1.01449 -0.00283202 0)
(1.01457 -0.00281157 0)
(1.01464 -0.00279178 0)
(1.01472 -0.00277269 0)
(1.01479 -0.00275436 0)
(1.01486 -0.00273683 0)
(1.01494 -0.00272013 0)
(1.01501 -0.00270431 0)
(1.01508 -0.00268938 0)
(1.01516 -0.00267536 0)
(1.01523 -0.00266224 0)
(1.0153 -0.00265001 0)
(1.01537 -0.00263865 0)
(1.01545 -0.00262814 0)
(1.01552 -0.00261842 0)
(1.01559 -0.00260946 0)
(1.01566 -0.0026012 0)
(1.01573 -0.00259357 0)
(1.0158 -0.00258653 0)
(1.01587 -0.00257999 0)
(1.01594 -0.0025739 0)
(1.01601 -0.00256819 0)
(1.01608 -0.00256278 0)
(1.01615 -0.0025576 0)
(1.01621 -0.00255257 0)
(1.01628 -0.00254762 0)
(1.01635 -0.00254268 0)
(1.01641 -0.00253765 0)
(1.01648 -0.00253246 0)
(1.01655 -0.00252702 0)
(1.01661 -0.00252126 0)
(1.01668 -0.00251509 0)
(1.01674 -0.00250843 0)
(1.0168 -0.00250121 0)
(1.01687 -0.00249336 0)
(1.01693 -0.0024848 0)
(1.017 -0.00247549 0)
(1.01706 -0.00246536 0)
(1.01712 -0.00245438 0)
(1.01719 -0.00244251 0)
(1.01725 -0.00242973 0)
(1.01731 -0.00241601 0)
(1.01738 -0.00240136 0)
(1.01744 -0.0023858 0)
(1.0175 -0.00236934 0)
(1.01757 -0.00235202 0)
(1.01763 -0.00233391 0)
(1.0177 -0.00231507 0)
(1.01776 -0.00229559 0)
(1.01782 -0.00227557 0)
(1.01789 -0.00225515 0)
(1.01795 -0.00223445 0)
(1.01802 -0.00221362 0)
(1.01808 -0.00219281 0)
(1.01815 -0.00217219 0)
(1.01822 -0.00215193 0)
(1.01828 -0.00213219 0)
(1.01835 -0.00211313 0)
(1.01841 -0.00209493 0)
(1.01848 -0.00207771 0)
(1.01855 -0.00206163 0)
(1.01861 -0.00204679 0)
(1.01868 -0.00203333 0)
(1.01874 -0.00202127 0)
(1.01881 -0.00201076 0)
(1.01888 -0.00200173 0)
(1.01894 -0.00199435 0)
(1.01232 -0.00366366 0)
(1.0124 -0.00364706 0)
(1.01248 -0.00362982 0)
(1.01255 -0.0036119 0)
(1.01263 -0.00359326 0)
(1.01271 -0.00357387 0)
(1.01278 -0.00355374 0)
(1.01286 -0.00353288 0)
(1.01293 -0.00351132 0)
(1.01301 -0.0034891 0)
(1.01308 -0.00346628 0)
(1.01316 -0.0034429 0)
(1.01323 -0.00341905 0)
(1.01331 -0.00339479 0)
(1.01338 -0.00337019 0)
(1.01346 -0.00334532 0)
(1.01353 -0.00332026 0)
(1.01361 -0.00329506 0)
(1.01368 -0.00326981 0)
(1.01375 -0.00324455 0)
(1.01383 -0.00321934 0)
(1.0139 -0.00319423 0)
(1.01398 -0.00316926 0)
(1.01405 -0.00314447 0)
(1.01413 -0.00311991 0)
(1.0142 -0.00309559 0)
(1.01427 -0.00307156 0)
(1.01435 -0.00304783 0)
(1.01442 -0.00302445 0)
(1.0145 -0.00300145 0)
(1.01457 -0.00297886 0)
(1.01465 -0.00295672 0)
(1.01472 -0.00293507 0)
(1.0148 -0.00291395 0)
(1.01487 -0.00289343 0)
(1.01494 -0.00287354 0)
(1.01502 -0.00285434 0)
(1.01509 -0.00283587 0)
(1.01517 -0.00281817 0)
(1.01524 -0.00280129 0)
(1.01531 -0.00278526 0)
(1.01539 -0.00277009 0)
(1.01546 -0.0027558 0)
(1.01553 -0.00274239 0)
(1.0156 -0.00272985 0)
(1.01568 -0.00271816 0)
(1.01575 -0.00270729 0)
(1.01582 -0.0026972 0)
(1.01589 -0.00268784 0)
(1.01596 -0.00267916 0)
(1.01603 -0.00267111 0)
(1.0161 -0.00266362 0)
(1.01617 -0.00265664 0)
(1.01624 -0.0026501 0)
(1.01631 -0.00264392 0)
(1.01638 -0.00263805 0)
(1.01645 -0.00263241 0)
(1.01651 -0.00262693 0)
(1.01658 -0.00262154 0)
(1.01665 -0.00261616 0)
(1.01672 -0.00261071 0)
(1.01678 -0.00260511 0)
(1.01685 -0.00259928 0)
(1.01691 -0.00259315 0)
(1.01698 -0.00258664 0)
(1.01704 -0.00257967 0)
(1.01711 -0.00257216 0)
(1.01717 -0.00256405 0)
(1.01723 -0.00255527 0)
(1.0173 -0.00254577 0)
(1.01736 -0.0025355 0)
(1.01743 -0.00252441 0)
(1.01749 -0.00251247 0)
(1.01755 -0.00249965 0)
(1.01762 -0.00248593 0)
(1.01768 -0.00247133 0)
(1.01774 -0.00245584 0)
(1.01781 -0.00243949 0)
(1.01787 -0.00242232 0)
(1.01793 -0.00240437 0)
(1.018 -0.00238573 0)
(1.01806 -0.00236646 0)
(1.01813 -0.00234669 0)
(1.01819 -0.00232651 0)
(1.01826 -0.00230605 0)
(1.01832 -0.00228547 0)
(1.01839 -0.0022649 0)
(1.01845 -0.00224451 0)
(1.01852 -0.00222445 0)
(1.01858 -0.00220489 0)
(1.01865 -0.00218598 0)
(1.01871 -0.00216788 0)
(1.01878 -0.00215073 0)
(1.01885 -0.00213467 0)
(1.01891 -0.0021198 0)
(1.01898 -0.00210625 0)
(1.01905 -0.00209406 0)
(1.01911 -0.00208336 0)
(1.01918 -0.00207408 0)
(1.01924 -0.0020664 0)
(1.01263 -0.00374731 0)
(1.01271 -0.00373019 0)
(1.01279 -0.00371247 0)
(1.01287 -0.00369411 0)
(1.01294 -0.00367507 0)
(1.01302 -0.00365532 0)
(1.0131 -0.00363487 0)
(1.01317 -0.00361373 0)
(1.01325 -0.00359193 0)
(1.01332 -0.0035695 0)
(1.0134 -0.00354649 0)
(1.01347 -0.00352297 0)
(1.01355 -0.003499 0)
(1.01362 -0.00347463 0)
(1.0137 -0.00344995 0)
(1.01377 -0.00342503 0)
(1.01384 -0.00339992 0)
(1.01392 -0.0033747 0)
(1.01399 -0.00334943 0)
(1.01407 -0.00332416 0)
(1.01414 -0.00329894 0)
(1.01422 -0.00327383 0)
(1.01429 -0.00324887 0)
(1.01436 -0.00322409 0)
(1.01444 -0.00319953 0)
(1.01451 -0.00317521 0)
(1.01459 -0.00315118 0)
(1.01466 -0.00312746 0)
(1.01474 -0.00310407 0)
(1.01481 -0.00308106 0)
(1.01489 -0.00305844 0)
(1.01496 -0.00303627 0)
(1.01503 -0.00301457 0)
(1.01511 -0.0029934 0)
(1.01518 -0.00297281 0)
(1.01526 -0.00295283 0)
(1.01533 -0.00293351 0)
(1.0154 -0.00291491 0)
(1.01548 -0.00289706 0)
(1.01555 -0.00288 0)
(1.01563 -0.00286377 0)
(1.0157 -0.00284837 0)
(1.01577 -0.00283383 0)
(1.01584 -0.00282014 0)
(1.01592 -0.0028073 0)
(1.01599 -0.00279528 0)
(1.01606 -0.00278406 0)
(1.01613 -0.0027736 0)
(1.0162 -0.00276385 0)
(1.01627 -0.00275478 0)
(1.01634 -0.00274631 0)
(1.01641 -0.0027384 0)
(1.01648 -0.00273098 0)
(1.01655 -0.00272399 0)
(1.01662 -0.00271738 0)
(1.01669 -0.00271106 0)
(1.01676 -0.00270497 0)
(1.01683 -0.00269905 0)
(1.01689 -0.00269322 0)
(1.01696 -0.00268741 0)
(1.01703 -0.00268155 0)
(1.01709 -0.00267555 0)
(1.01716 -0.00266935 0)
(1.01722 -0.00266286 0)
(1.01729 -0.00265601 0)
(1.01735 -0.00264873 0)
(1.01742 -0.00264094 0)
(1.01748 -0.00263259 0)
(1.01755 -0.00262359 0)
(1.01761 -0.00261391 0)
(1.01767 -0.00260349 0)
(1.01774 -0.00259229 0)
(1.0178 -0.00258028 0)
(1.01786 -0.00256742 0)
(1.01793 -0.00255371 0)
(1.01799 -0.00253915 0)
(1.01805 -0.00252373 0)
(1.01812 -0.00250749 0)
(1.01818 -0.00249045 0)
(1.01824 -0.00247268 0)
(1.01831 -0.00245422 0)
(1.01837 -0.00243517 0)
(1.01844 -0.00241562 0)
(1.0185 -0.00239568 0)
(1.01857 -0.00237547 0)
(1.01863 -0.00235512 0)
(1.0187 -0.00233479 0)
(1.01876 -0.00231462 0)
(1.01883 -0.00229476 0)
(1.01889 -0.00227538 0)
(1.01896 -0.00225661 0)
(1.01902 -0.00223862 0)
(1.01909 -0.00222154 0)
(1.01916 -0.0022055 0)
(1.01922 -0.00219061 0)
(1.01929 -0.00217698 0)
(1.01936 -0.00216466 0)
(1.01942 -0.00215377 0)
(1.01949 -0.00214425 0)
(1.01955 -0.00213627 0)
(1.01296 -0.00382839 0)
(1.01304 -0.00381077 0)
(1.01311 -0.00379259 0)
(1.01319 -0.0037738 0)
(1.01327 -0.00375437 0)
(1.01334 -0.00373427 0)
(1.01342 -0.00371351 0)
(1.01349 -0.0036921 0)
(1.01357 -0.00367005 0)
(1.01364 -0.00364742 0)
(1.01372 -0.00362424 0)
(1.01379 -0.00360057 0)
(1.01387 -0.00357648 0)
(1.01394 -0.00355202 0)
(1.01402 -0.00352727 0)
(1.01409 -0.00350229 0)
(1.01417 -0.00347714 0)
(1.01424 -0.00345189 0)
(1.01432 -0.0034266 0)
(1.01439 -0.00340133 0)
(1.01446 -0.00337611 0)
(1.01454 -0.003351 0)
(1.01461 -0.00332604 0)
(1.01469 -0.00330127 0)
(1.01476 -0.00327672 0)
(1.01484 -0.00325241 0)
(1.01491 -0.00322838 0)
(1.01498 -0.00320466 0)
(1.01506 -0.00318127 0)
(1.01513 -0.00315824 0)
(1.01521 -0.00313561 0)
(1.01528 -0.0031134 0)
(1.01536 -0.00309167 0)
(1.01543 -0.00307045 0)
(1.0155 -0.00304978 0)
(1.01558 -0.00302971 0)
(1.01565 -0.0030103 0)
(1.01573 -0.00299157 0)
(1.0158 -0.00297357 0)
(1.01587 -0.00295634 0)
(1.01595 -0.00293991 0)
(1.01602 -0.00292429 0)
(1.01609 -0.00290951 0)
(1.01617 -0.00289555 0)
(1.01624 -0.00288241 0)
(1.01631 -0.00287008 0)
(1.01638 -0.00285852 0)
(1.01645 -0.00284771 0)
(1.01653 -0.00283759 0)
(1.0166 -0.00282812 0)
(1.01667 -0.00281925 0)
(1.01674 -0.00281093 0)
(1.01681 -0.00280309 0)
(1.01688 -0.00279567 0)
(1.01694 -0.00278862 0)
(1.01701 -0.00278187 0)
(1.01708 -0.00277535 0)
(1.01715 -0.00276899 0)
(1.01722 -0.00276274 0)
(1.01728 -0.00275652 0)
(1.01735 -0.00275025 0)
(1.01741 -0.00274387 0)
(1.01748 -0.0027373 0)
(1.01755 -0.00273046 0)
(1.01761 -0.00272328 0)
(1.01768 -0.0027157 0)
(1.01774 -0.00270764 0)
(1.0178 -0.00269904 0)
(1.01787 -0.00268983 0)
(1.01793 -0.00267997 0)
(1.01799 -0.00266941 0)
(1.01806 -0.0026581 0)
(1.01812 -0.00264601 0)
(1.01818 -0.00263312 0)
(1.01825 -0.00261942 0)
(1.01831 -0.00260489 0)
(1.01837 -0.00258954 0)
(1.01844 -0.00257341 0)
(1.0185 -0.00255651 0)
(1.01857 -0.00253889 0)
(1.01863 -0.00252062 0)
(1.01869 -0.00250178 0)
(1.01876 -0.00248245 0)
(1.01882 -0.00246274 0)
(1.01889 -0.00244277 0)
(1.01895 -0.00242266 0)
(1.01902 -0.00240256 0)
(1.01908 -0.0023826 0)
(1.01915 -0.00236294 0)
(1.01921 -0.00234373 0)
(1.01928 -0.00232511 0)
(1.01935 -0.00230723 0)
(1.01941 -0.00229021 0)
(1.01948 -0.0022742 0)
(1.01954 -0.00225928 0)
(1.01961 -0.00224558 0)
(1.01968 -0.00223313 0)
(1.01974 -0.00222206 0)
(1.01981 -0.00221231 0)
(1.01987 -0.00220404 0)
(1.01329 -0.003907 0)
(1.01337 -0.00388889 0)
(1.01345 -0.00387025 0)
(1.01352 -0.00385104 0)
(1.0136 -0.00383123 0)
(1.01368 -0.0038108 0)
(1.01375 -0.00378973 0)
(1.01383 -0.00376805 0)
(1.0139 -0.00374578 0)
(1.01398 -0.00372294 0)
(1.01405 -0.0036996 0)
(1.01413 -0.00367579 0)
(1.0142 -0.00365159 0)
(1.01428 -0.00362704 0)
(1.01435 -0.00360222 0)
(1.01443 -0.00357718 0)
(1.0145 -0.003552 0)
(1.01457 -0.00352672 0)
(1.01465 -0.00350142 0)
(1.01472 -0.00347613 0)
(1.0148 -0.00345092 0)
(1.01487 -0.00342581 0)
(1.01495 -0.00340086 0)
(1.01502 -0.0033761 0)
(1.01509 -0.00335155 0)
(1.01517 -0.00332726 0)
(1.01524 -0.00330323 0)
(1.01532 -0.00327951 0)
(1.01539 -0.00325612 0)
(1.01547 -0.00323308 0)
(1.01554 -0.00321043 0)
(1.01561 -0.00318821 0)
(1.01569 -0.00316644 0)
(1.01576 -0.00314516 0)
(1.01584 -0.00312443 0)
(1.01591 -0.00310428 0)
(1.01599 -0.00308477 0)
(1.01606 -0.00306592 0)
(1.01613 -0.00304778 0)
(1.01621 -0.00303038 0)
(1.01628 -0.00301376 0)
(1.01635 -0.00299794 0)
(1.01643 -0.00298291 0)
(1.0165 -0.00296869 0)
(1.01657 -0.00295528 0)
(1.01664 -0.00294264 0)
(1.01672 -0.00293075 0)
(1.01679 -0.00291959 0)
(1.01686 -0.00290911 0)
(1.01693 -0.00289927 0)
(1.017 -0.00289001 0)
(1.01707 -0.00288128 0)
(1.01714 -0.00287303 0)
(1.01721 -0.0028652 0)
(1.01728 -0.00285772 0)
(1.01735 -0.00285055 0)
(1.01741 -0.00284361 0)
(1.01748 -0.00283684 0)
(1.01755 -0.00283017 0)
(1.01761 -0.00282354 0)
(1.01768 -0.00281689 0)
(1.01775 -0.00281012 0)
(1.01781 -0.00280319 0)
(1.01788 -0.00279601 0)
(1.01794 -0.00278852 0)
(1.01801 -0.00278064 0)
(1.01807 -0.00277231 0)
(1.01814 -0.00276347 0)
(1.0182 -0.00275406 0)
(1.01826 -0.00274403 0)
(1.01833 -0.00273332 0)
(1.01839 -0.00272191 0)
(1.01845 -0.00270975 0)
(1.01852 -0.00269683 0)
(1.01858 -0.00268312 0)
(1.01864 -0.00266863 0)
(1.01871 -0.00265335 0)
(1.01877 -0.00263731 0)
(1.01883 -0.00262054 0)
(1.0189 -0.00260309 0)
(1.01896 -0.002585 0)
(1.01902 -0.00256636 0)
(1.01909 -0.00254724 0)
(1.01915 -0.00252776 0)
(1.01922 -0.00250802 0)
(1.01928 -0.00248815 0)
(1.01935 -0.00246827 0)
(1.01941 -0.00244853 0)
(1.01948 -0.00242906 0)
(1.01954 -0.00241002 0)
(1.01961 -0.00239154 0)
(1.01968 -0.00237377 0)
(1.01974 -0.00235682 0)
(1.01981 -0.00234083 0)
(1.01987 -0.00232589 0)
(1.01994 -0.00231212 0)
(1.02001 -0.00229955 0)
(1.02007 -0.00228831 0)
(1.02014 -0.00227834 0)
(1.0202 -0.00226979 0)
(1.01364 -0.00398321 0)
(1.01372 -0.00396461 0)
(1.01379 -0.00394553 0)
(1.01387 -0.00392592 0)
(1.01395 -0.00390574 0)
(1.01402 -0.00388497 0)
(1.0141 -0.00386362 0)
(1.01417 -0.00384168 0)
(1.01425 -0.00381918 0)
(1.01432 -0.00379615 0)
(1.0144 -0.00377265 0)
(1.01447 -0.00374871 0)
(1.01455 -0.00372439 0)
(1.01462 -0.00369976 0)
(1.0147 -0.00367487 0)
(1.01477 -0.00364978 0)
(1.01484 -0.00362456 0)
(1.01492 -0.00359927 0)
(1.01499 -0.00357395 0)
(1.01507 -0.00354866 0)
(1.01514 -0.00352344 0)
(1.01522 -0.00349835 0)
(1.01529 -0.0034734 0)
(1.01536 -0.00344865 0)
(1.01544 -0.00342412 0)
(1.01551 -0.00339983 0)
(1.01559 -0.00337581 0)
(1.01566 -0.0033521 0)
(1.01574 -0.0033287 0)
(1.01581 -0.00330566 0)
(1.01588 -0.003283 0)
(1.01596 -0.00326075 0)
(1.01603 -0.00323895 0)
(1.01611 -0.00321763 0)
(1.01618 -0.00319684 0)
(1.01625 -0.00317661 0)
(1.01633 -0.003157 0)
(1.0164 -0.00313803 0)
(1.01648 -0.00311976 0)
(1.01655 -0.00310221 0)
(1.01662 -0.00308541 0)
(1.0167 -0.00306937 0)
(1.01677 -0.00305412 0)
(1.01684 -0.00303965 0)
(1.01691 -0.00302596 0)
(1.01699 -0.00301303 0)
(1.01706 -0.00300083 0)
(1.01713 -0.00298933 0)
(1.0172 -0.0029785 0)
(1.01727 -0.00296829 0)
(1.01734 -0.00295865 0)
(1.01741 -0.00294954 0)
(1.01748 -0.00294089 0)
(1.01755 -0.00293265 0)
(1.01762 -0.00292476 0)
(1.01769 -0.00291718 0)
(1.01776 -0.00290983 0)
(1.01782 -0.00290265 0)
(1.01789 -0.00289558 0)
(1.01796 -0.00288856 0)
(1.01802 -0.00288152 0)
(1.01809 -0.00287439 0)
(1.01816 -0.0028671 0)
(1.01822 -0.00285959 0)
(1.01829 -0.00285179 0)
(1.01835 -0.00284362 0)
(1.01841 -0.00283503 0)
(1.01848 -0.00282596 0)
(1.01854 -0.00281635 0)
(1.01861 -0.00280614 0)
(1.01867 -0.0027953 0)
(1.01873 -0.00278378 0)
(1.0188 -0.00277155 0)
(1.01886 -0.00275859 0)
(1.01892 -0.00274489 0)
(1.01899 -0.00273043 0)
(1.01905 -0.00271522 0)
(1.01911 -0.00269928 0)
(1.01918 -0.00268263 0)
(1.01924 -0.00266533 0)
(1.0193 -0.00264742 0)
(1.01937 -0.00262898 0)
(1.01943 -0.00261007 0)
(1.0195 -0.00259081 0)
(1.01956 -0.0025713 0)
(1.01963 -0.00255165 0)
(1.01969 -0.00253199 0)
(1.01976 -0.00251246 0)
(1.01982 -0.00249319 0)
(1.01989 -0.00247432 0)
(1.01995 -0.00245598 0)
(1.02002 -0.00243831 0)
(1.02008 -0.00242143 0)
(1.02015 -0.00240547 0)
(1.02022 -0.00239052 0)
(1.02028 -0.00237668 0)
(1.02035 -0.002364 0)
(1.02042 -0.00235259 0)
(1.02048 -0.0023424 0)
(1.02055 -0.00233359 0)
(1.01399 -0.00405709 0)
(1.01407 -0.00403803 0)
(1.01415 -0.00401852 0)
(1.01423 -0.00399851 0)
(1.0143 -0.00397797 0)
(1.01438 -0.00395688 0)
(1.01445 -0.00393524 0)
(1.01453 -0.00391305 0)
(1.0146 -0.00389033 0)
(1.01468 -0.00386712 0)
(1.01475 -0.00384346 0)
(1.01483 -0.00381939 0)
(1.0149 -0.00379497 0)
(1.01498 -0.00377025 0)
(1.01505 -0.0037453 0)
(1.01513 -0.00372017 0)
(1.0152 -0.00369491 0)
(1.01527 -0.0036696 0)
(1.01535 -0.00364427 0)
(1.01542 -0.00361897 0)
(1.0155 -0.00359376 0)
(1.01557 -0.00356867 0)
(1.01564 -0.00354374 0)
(1.01572 -0.003519 0)
(1.01579 -0.00349448 0)
(1.01587 -0.0034702 0)
(1.01594 -0.0034462 0)
(1.01602 -0.00342249 0)
(1.01609 -0.0033991 0)
(1.01616 -0.00337605 0)
(1.01624 -0.00335338 0)
(1.01631 -0.00333111 0)
(1.01639 -0.00330927 0)
(1.01646 -0.00328791 0)
(1.01654 -0.00326706 0)
(1.01661 -0.00324677 0)
(1.01668 -0.00322706 0)
(1.01676 -0.00320799 0)
(1.01683 -0.00318959 0)
(1.0169 -0.00317188 0)
(1.01698 -0.00315491 0)
(1.01705 -0.00313868 0)
(1.01712 -0.00312321 0)
(1.0172 -0.0031085 0)
(1.01727 -0.00309454 0)
(1.01734 -0.00308132 0)
(1.01741 -0.00306882 0)
(1.01748 -0.003057 0)
(1.01756 -0.00304583 0)
(1.01763 -0.00303526 0)
(1.0177 -0.00302525 0)
(1.01777 -0.00301576 0)
(1.01784 -0.00300672 0)
(1.01791 -0.00299809 0)
(1.01797 -0.00298981 0)
(1.01804 -0.00298182 0)
(1.01811 -0.00297407 0)
(1.01818 -0.0029665 0)
(1.01825 -0.00295904 0)
(1.01831 -0.00295164 0)
(1.01838 -0.00294422 0)
(1.01844 -0.00293674 0)
(1.01851 -0.00292911 0)
(1.01858 -0.00292127 0)
(1.01864 -0.00291316 0)
(1.01871 -0.00290471 0)
(1.01877 -0.00289587 0)
(1.01883 -0.00288657 0)
(1.0189 -0.00287676 0)
(1.01896 -0.00286639 0)
(1.01902 -0.00285541 0)
(1.01909 -0.00284379 0)
(1.01915 -0.00283149 0)
(1.01921 -0.00281849 0)
(1.01928 -0.00280478 0)
(1.01934 -0.00279036 0)
(1.0194 -0.00277521 0)
(1.01947 -0.00275937 0)
(1.01953 -0.00274285 0)
(1.01959 -0.00272569 0)
(1.01966 -0.00270796 0)
(1.01972 -0.0026897 0)
(1.01979 -0.00267101 0)
(1.01985 -0.00265196 0)
(1.01991 -0.00263267 0)
(1.01998 -0.00261324 0)
(1.02004 -0.0025938 0)
(1.02011 -0.00257448 0)
(1.02018 -0.00255539 0)
(1.02024 -0.00253669 0)
(1.02031 -0.00251849 0)
(1.02037 -0.00250092 0)
(1.02044 -0.00248412 0)
(1.02051 -0.00246818 0)
(1.02057 -0.00245321 0)
(1.02064 -0.00243931 0)
(1.0207 -0.00242653 0)
(1.02077 -0.00241496 0)
(1.02084 -0.00240457 0)
(1.0209 -0.0023955 0)
(1.01436 -0.00412872 0)
(1.01444 -0.0041092 0)
(1.01452 -0.00408927 0)
(1.01459 -0.00406888 0)
(1.01467 -0.004048 0)
(1.01475 -0.0040266 0)
(1.01482 -0.00400468 0)
(1.0149 -0.00398224 0)
(1.01497 -0.00395932 0)
(1.01505 -0.00393593 0)
(1.01512 -0.00391211 0)
(1.0152 -0.00388792 0)
(1.01527 -0.0038634 0)
(1.01534 -0.0038386 0)
(1.01542 -0.00381358 0)
(1.01549 -0.00378841 0)
(1.01557 -0.00376312 0)
(1.01564 -0.00373779 0)
(1.01572 -0.00371245 0)
(1.01579 -0.00368716 0)
(1.01586 -0.00366195 0)
(1.01594 -0.00363687 0)
(1.01601 -0.00361195 0)
(1.01609 -0.00358722 0)
(1.01616 -0.00356271 0)
(1.01623 -0.00353845 0)
(1.01631 -0.00351446 0)
(1.01638 -0.00349076 0)
(1.01646 -0.00346737 0)
(1.01653 -0.00344432 0)
(1.01661 -0.00342164 0)
(1.01668 -0.00339935 0)
(1.01675 -0.00337749 0)
(1.01683 -0.00335609 0)
(1.0169 -0.00333519 0)
(1.01698 -0.00331482 0)
(1.01705 -0.00329504 0)
(1.01712 -0.00327586 0)
(1.0172 -0.00325733 0)
(1.01727 -0.00323948 0)
(1.01734 -0.00322234 0)
(1.01742 -0.00320592 0)
(1.01749 -0.00319024 0)
(1.01756 -0.0031753 0)
(1.01764 -0.00316108 0)
(1.01771 -0.00314759 0)
(1.01778 -0.00313479 0)
(1.01785 -0.00312266 0)
(1.01792 -0.00311115 0)
(1.01799 -0.00310025 0)
(1.01806 -0.00308988 0)
(1.01813 -0.00308002 0)
(1.0182 -0.00307061 0)
(1.01827 -0.00306159 0)
(1.01834 -0.00305293 0)
(1.01841 -0.00304455 0)
(1.01848 -0.00303641 0)
(1.01855 -0.00302845 0)
(1.01861 -0.00302062 0)
(1.01868 -0.00301284 0)
(1.01875 -0.00300506 0)
(1.01881 -0.00299722 0)
(1.01888 -0.00298926 0)
(1.01894 -0.00298111 0)
(1.01901 -0.0029727 0)
(1.01907 -0.00296398 0)
(1.01914 -0.00295489 0)
(1.0192 -0.00294536 0)
(1.01926 -0.00293536 0)
(1.01933 -0.00292482 0)
(1.01939 -0.00291371 0)
(1.01945 -0.00290199 0)
(1.01952 -0.00288962 0)
(1.01958 -0.00287659 0)
(1.01964 -0.00286288 0)
(1.01971 -0.00284848 0)
(1.01977 -0.0028334 0)
(1.01983 -0.00281764 0)
(1.0199 -0.00280124 0)
(1.01996 -0.00278423 0)
(1.02002 -0.00276666 0)
(1.02009 -0.0027486 0)
(1.02015 -0.0027301 0)
(1.02022 -0.00271127 0)
(1.02028 -0.00269219 0)
(1.02035 -0.00267299 0)
(1.02041 -0.00265376 0)
(1.02048 -0.00263463 0)
(1.02054 -0.00261573 0)
(1.02061 -0.00259719 0)
(1.02067 -0.00257913 0)
(1.02074 -0.00256168 0)
(1.02081 -0.00254494 0)
(1.02087 -0.00252904 0)
(1.02094 -0.00251406 0)
(1.021 -0.0025001 0)
(1.02107 -0.00248721 0)
(1.02114 -0.00247549 0)
(1.0212 -0.0024649 0)
(1.02127 -0.00245559 0)
(1.01474 -0.00419818 0)
(1.01482 -0.00417822 0)
(1.0149 -0.00415788 0)
(1.01497 -0.00413712 0)
(1.01505 -0.0041159 0)
(1.01513 -0.00409419 0)
(1.0152 -0.004072 0)
(1.01528 -0.00404934 0)
(1.01535 -0.00402621 0)
(1.01543 -0.00400264 0)
(1.0155 -0.00397868 0)
(1.01558 -0.00395437 0)
(1.01565 -0.00392975 0)
(1.01572 -0.00390487 0)
(1.0158 -0.0038798 0)
(1.01587 -0.00385458 0)
(1.01595 -0.00382927 0)
(1.01602 -0.00380392 0)
(1.01609 -0.00377857 0)
(1.01617 -0.00375328 0)
(1.01624 -0.00372808 0)
(1.01632 -0.00370301 0)
(1.01639 -0.0036781 0)
(1.01646 -0.00365339 0)
(1.01654 -0.00362889 0)
(1.01661 -0.00360465 0)
(1.01669 -0.00358067 0)
(1.01676 -0.00355697 0)
(1.01684 -0.00353359 0)
(1.01691 -0.00351054 0)
(1.01698 -0.00348786 0)
(1.01706 -0.00346555 0)
(1.01713 -0.00344367 0)
(1.01721 -0.00342223 0)
(1.01728 -0.00340128 0)
(1.01735 -0.00338085 0)
(1.01743 -0.00336099 0)
(1.0175 -0.00334171 0)
(1.01758 -0.00332306 0)
(1.01765 -0.00330508 0)
(1.01772 -0.00328778 0)
(1.0178 -0.00327118 0)
(1.01787 -0.00325529 0)
(1.01794 -0.00324012 0)
(1.01802 -0.00322566 0)
(1.01809 -0.0032119 0)
(1.01816 -0.00319881 0)
(1.01823 -0.00318638 0)
(1.0183 -0.00317456 0)
(1.01837 -0.00316331 0)
(1.01844 -0.00315261 0)
(1.01851 -0.00314239 0)
(1.01858 -0.00313261 0)
(1.01865 -0.00312322 0)
(1.01872 -0.00311418 0)
(1.01879 -0.00310543 0)
(1.01886 -0.00309691 0)
(1.01893 -0.00308858 0)
(1.01899 -0.00308037 0)
(1.01906 -0.00307223 0)
(1.01913 -0.0030641 0)
(1.01919 -0.00305592 0)
(1.01926 -0.00304763 0)
(1.01932 -0.00303917 0)
(1.01939 -0.00303047 0)
(1.01945 -0.00302149 0)
(1.01952 -0.00301215 0)
(1.01958 -0.00300241 0)
(1.01964 -0.00299221 0)
(1.01971 -0.00298151 0)
(1.01977 -0.00297027 0)
(1.01983 -0.00295844 0)
(1.0199 -0.00294601 0)
(1.01996 -0.00293294 0)
(1.02002 -0.00291923 0)
(1.02009 -0.00290486 0)
(1.02015 -0.00288983 0)
(1.02021 -0.00287417 0)
(1.02028 -0.00285788 0)
(1.02034 -0.00284102 0)
(1.0204 -0.00282361 0)
(1.02047 -0.00280572 0)
(1.02053 -0.00278743 0)
(1.0206 -0.0027688 0)
(1.02066 -0.00274994 0)
(1.02073 -0.00273094 0)
(1.02079 -0.00271192 0)
(1.02086 -0.00269299 0)
(1.02092 -0.00267428 0)
(1.02099 -0.0026559 0)
(1.02105 -0.00263797 0)
(1.02112 -0.00262063 0)
(1.02119 -0.00260396 0)
(1.02125 -0.00258809 0)
(1.02132 -0.0025731 0)
(1.02138 -0.0025591 0)
(1.02145 -0.00254611 0)
(1.02152 -0.00253425 0)
(1.02158 -0.00252347 0)
(1.02165 -0.00251392 0)
(1.01513 -0.00426553 0)
(1.01521 -0.00424515 0)
(1.01529 -0.00422442 0)
(1.01537 -0.00420329 0)
(1.01544 -0.00418174 0)
(1.01552 -0.00415974 0)
(1.01559 -0.00413729 0)
(1.01567 -0.0041144 0)
(1.01574 -0.00409107 0)
(1.01582 -0.00406734 0)
(1.01589 -0.00404323 0)
(1.01597 -0.0040188 0)
(1.01604 -0.00399409 0)
(1.01612 -0.00396914 0)
(1.01619 -0.00394401 0)
(1.01626 -0.00391876 0)
(1.01634 -0.00389342 0)
(1.01641 -0.00386805 0)
(1.01649 -0.0038427 0)
(1.01656 -0.00381741 0)
(1.01664 -0.00379221 0)
(1.01671 -0.00376716 0)
(1.01678 -0.00374226 0)
(1.01686 -0.00371757 0)
(1.01693 -0.00369309 0)
(1.01701 -0.00366886 0)
(1.01708 -0.00364489 0)
(1.01715 -0.00362121 0)
(1.01723 -0.00359784 0)
(1.0173 -0.00357479 0)
(1.01738 -0.0035521 0)
(1.01745 -0.00352979 0)
(1.01753 -0.00350788 0)
(1.0176 -0.00348641 0)
(1.01767 -0.00346542 0)
(1.01775 -0.00344493 0)
(1.01782 -0.00342498 0)
(1.0179 -0.00340561 0)
(1.01797 -0.00338685 0)
(1.01804 -0.00336874 0)
(1.01812 -0.00335128 0)
(1.01819 -0.00333451 0)
(1.01826 -0.00331842 0)
(1.01834 -0.00330303 0)
(1.01841 -0.00328834 0)
(1.01848 -0.00327432 0)
(1.01855 -0.00326096 0)
(1.01862 -0.00324823 0)
(1.01869 -0.0032361 0)
(1.01877 -0.00322453 0)
(1.01884 -0.00321349 0)
(1.01891 -0.00320292 0)
(1.01898 -0.00319279 0)
(1.01905 -0.00318305 0)
(1.01911 -0.00317364 0)
(1.01918 -0.00316452 0)
(1.01925 -0.00315564 0)
(1.01932 -0.00314694 0)
(1.01939 -0.00313837 0)
(1.01945 -0.00312988 0)
(1.01952 -0.00312141 0)
(1.01959 -0.00311289 0)
(1.01965 -0.00310428 0)
(1.01972 -0.00309552 0)
(1.01978 -0.00308654 0)
(1.01985 -0.00307729 0)
(1.01991 -0.00306772 0)
(1.01997 -0.00305776 0)
(1.02004 -0.00304738 0)
(1.0201 -0.00303652 0)
(1.02016 -0.00302515 0)
(1.02023 -0.00301323 0)
(1.02029 -0.00300072 0)
(1.02035 -0.00298762 0)
(1.02042 -0.0029739 0)
(1.02048 -0.00295956 0)
(1.02054 -0.00294459 0)
(1.02061 -0.00292901 0)
(1.02067 -0.00291284 0)
(1.02073 -0.0028961 0)
(1.0208 -0.00287886 0)
(1.02086 -0.00286115 0)
(1.02093 -0.00284304 0)
(1.02099 -0.00282462 0)
(1.02105 -0.00280596 0)
(1.02112 -0.00278717 0)
(1.02118 -0.00276836 0)
(1.02125 -0.00274962 0)
(1.02132 -0.00273109 0)
(1.02138 -0.00271287 0)
(1.02145 -0.00269508 0)
(1.02151 -0.00267784 0)
(1.02158 -0.00266125 0)
(1.02165 -0.00264541 0)
(1.02171 -0.00263042 0)
(1.02178 -0.00261637 0)
(1.02184 -0.00260329 0)
(1.02191 -0.00259129 0)
(1.02198 -0.00258033 0)
(1.02204 -0.00257055 0)
(1.01554 -0.00433086 0)
(1.01562 -0.00431006 0)
(1.0157 -0.00428894 0)
(1.01577 -0.00426747 0)
(1.01585 -0.0042456 0)
(1.01592 -0.00422331 0)
(1.016 -0.00420061 0)
(1.01608 -0.00417749 0)
(1.01615 -0.00415398 0)
(1.01623 -0.00413008 0)
(1.0163 -0.00410584 0)
(1.01637 -0.0040813 0)
(1.01645 -0.0040565 0)
(1.01652 -0.00403148 0)
(1.0166 -0.0040063 0)
(1.01667 -0.003981 0)
(1.01675 -0.00395564 0)
(1.01682 -0.00393026 0)
(1.01689 -0.00390491 0)
(1.01697 -0.00387962 0)
(1.01704 -0.00385443 0)
(1.01712 -0.00382939 0)
(1.01719 -0.00380451 0)
(1.01726 -0.00377983 0)
(1.01734 -0.00375537 0)
(1.01741 -0.00373116 0)
(1.01749 -0.00370721 0)
(1.01756 -0.00368354 0)
(1.01763 -0.00366017 0)
(1.01771 -0.00363713 0)
(1.01778 -0.00361444 0)
(1.01786 -0.00359211 0)
(1.01793 -0.00357019 0)
(1.01801 -0.00354869 0)
(1.01808 -0.00352765 0)
(1.01815 -0.00350711 0)
(1.01823 -0.00348709 0)
(1.0183 -0.00346763 0)
(1.01838 -0.00344877 0)
(1.01845 -0.00343052 0)
(1.01852 -0.00341292 0)
(1.0186 -0.00339598 0)
(1.01867 -0.00337971 0)
(1.01874 -0.00336411 0)
(1.01881 -0.00334918 0)
(1.01889 -0.00333491 0)
(1.01896 -0.00332129 0)
(1.01903 -0.00330827 0)
(1.0191 -0.00329585 0)
(1.01917 -0.00328397 0)
(1.01924 -0.0032726 0)
(1.01931 -0.0032617 0)
(1.01938 -0.00325122 0)
(1.01945 -0.00324113 0)
(1.01952 -0.00323137 0)
(1.01959 -0.00322189 0)
(1.01966 -0.00321265 0)
(1.01973 -0.0032036 0)
(1.01979 -0.00319468 0)
(1.01986 -0.00318584 0)
(1.01993 -0.00317704 0)
(1.01999 -0.0031682 0)
(1.02006 -0.00315928 0)
(1.02012 -0.00315022 0)
(1.02019 -0.00314097 0)
(1.02025 -0.00313146 0)
(1.02032 -0.00312165 0)
(1.02038 -0.00311149 0)
(1.02045 -0.00310092 0)
(1.02051 -0.00308991 0)
(1.02057 -0.00307841 0)
(1.02064 -0.00306639 0)
(1.0207 -0.00305382 0)
(1.02076 -0.00304068 0)
(1.02083 -0.00302695 0)
(1.02089 -0.00301263 0)
(1.02095 -0.00299772 0)
(1.02102 -0.00298222 0)
(1.02108 -0.00296615 0)
(1.02114 -0.00294955 0)
(1.02121 -0.00293246 0)
(1.02127 -0.00291492 0)
(1.02133 -0.002897 0)
(1.0214 -0.00287878 0)
(1.02146 -0.00286032 0)
(1.02153 -0.00284174 0)
(1.02159 -0.00282312 0)
(1.02166 -0.00280458 0)
(1.02172 -0.00278622 0)
(1.02179 -0.00276816 0)
(1.02186 -0.00275051 0)
(1.02192 -0.00273337 0)
(1.02199 -0.00271685 0)
(1.02205 -0.00270106 0)
(1.02212 -0.00268607 0)
(1.02219 -0.00267197 0)
(1.02225 -0.00265881 0)
(1.02232 -0.00264668 0)
(1.02238 -0.00263555 0)
(1.02245 -0.00262554 0)
(1.01596 -0.00439423 0)
(1.01604 -0.00437303 0)
(1.01612 -0.00435154 0)
(1.01619 -0.00432972 0)
(1.01627 -0.00430754 0)
(1.01635 -0.00428498 0)
(1.01642 -0.00426203 0)
(1.0165 -0.0042387 0)
(1.01657 -0.004215 0)
(1.01665 -0.00419095 0)
(1.01672 -0.00416658 0)
(1.0168 -0.00414193 0)
(1.01687 -0.00411704 0)
(1.01694 -0.00409195 0)
(1.01702 -0.00406672 0)
(1.01709 -0.00404139 0)
(1.01717 -0.00401601 0)
(1.01724 -0.00399062 0)
(1.01731 -0.00396526 0)
(1.01739 -0.00393997 0)
(1.01746 -0.0039148 0)
(1.01754 -0.00388977 0)
(1.01761 -0.00386491 0)
(1.01768 -0.00384024 0)
(1.01776 -0.0038158 0)
(1.01783 -0.00379161 0)
(1.01791 -0.00376767 0)
(1.01798 -0.00374402 0)
(1.01806 -0.00372067 0)
(1.01813 -0.00369763 0)
(1.0182 -0.00367494 0)
(1.01828 -0.0036526 0)
(1.01835 -0.00363066 0)
(1.01843 -0.00360914 0)
(1.0185 -0.00358806 0)
(1.01858 -0.00356747 0)
(1.01865 -0.00354738 0)
(1.01872 -0.00352784 0)
(1.0188 -0.00350887 0)
(1.01887 -0.00349051 0)
(1.01894 -0.00347276 0)
(1.01902 -0.00345566 0)
(1.01909 -0.00343921 0)
(1.01916 -0.00342341 0)
(1.01924 -0.00340826 0)
(1.01931 -0.00339375 0)
(1.01938 -0.00337987 0)
(1.01945 -0.00336658 0)
(1.01952 -0.00335386 0)
(1.0196 -0.00334168 0)
(1.01967 -0.00333 0)
(1.01974 -0.00331877 0)
(1.01981 -0.00330796 0)
(1.01988 -0.00329753 0)
(1.01994 -0.00328743 0)
(1.02001 -0.0032776 0)
(1.02008 -0.00326802 0)
(1.02015 -0.00325862 0)
(1.02022 -0.00324936 0)
(1.02028 -0.00324019 0)
(1.02035 -0.00323105 0)
(1.02042 -0.0032219 0)
(1.02048 -0.00321268 0)
(1.02055 -0.00320333 0)
(1.02061 -0.00319381 0)
(1.02068 -0.00318405 0)
(1.02074 -0.00317401 0)
(1.02081 -0.00316364 0)
(1.02087 -0.0031529 0)
(1.02093 -0.00314173 0)
(1.021 -0.0031301 0)
(1.02106 -0.00311799 0)
(1.02112 -0.00310535 0)
(1.02119 -0.00309217 0)
(1.02125 -0.00307844 0)
(1.02131 -0.00306414 0)
(1.02138 -0.00304928 0)
(1.02144 -0.00303386 0)
(1.0215 -0.0030179 0)
(1.02157 -0.00300143 0)
(1.02163 -0.00298448 0)
(1.02169 -0.00296711 0)
(1.02176 -0.00294937 0)
(1.02182 -0.00293134 0)
(1.02189 -0.00291308 0)
(1.02195 -0.0028947 0)
(1.02202 -0.00287628 0)
(1.02208 -0.00285793 0)
(1.02215 -0.00283974 0)
(1.02221 -0.00282184 0)
(1.02228 -0.00280431 0)
(1.02235 -0.00278728 0)
(1.02241 -0.00277084 0)
(1.02248 -0.00275509 0)
(1.02254 -0.0027401 0)
(1.02261 -0.00272596 0)
(1.02268 -0.00271272 0)
(1.02274 -0.00270047 0)
(1.02281 -0.00268917 0)
(1.02288 -0.00267896 0)
(1.0164 -0.00445572 0)
(1.01648 -0.00443412 0)
(1.01655 -0.00441227 0)
(1.01663 -0.00439012 0)
(1.01671 -0.00436764 0)
(1.01678 -0.00434481 0)
(1.01686 -0.00432163 0)
(1.01693 -0.00429809 0)
(1.01701 -0.0042742 0)
(1.01708 -0.00425 0)
(1.01716 -0.0042255 0)
(1.01723 -0.00420075 0)
(1.01731 -0.00417578 0)
(1.01738 -0.00415063 0)
(1.01745 -0.00412535 0)
(1.01753 -0.00409999 0)
(1.0176 -0.00407458 0)
(1.01768 -0.00404918 0)
(1.01775 -0.00402382 0)
(1.01783 -0.00399854 0)
(1.0179 -0.00397338 0)
(1.01797 -0.00394836 0)
(1.01805 -0.00392352 0)
(1.01812 -0.00389888 0)
(1.0182 -0.00387446 0)
(1.01827 -0.00385028 0)
(1.01834 -0.00382636 0)
(1.01842 -0.00380272 0)
(1.01849 -0.00377938 0)
(1.01857 -0.00375635 0)
(1.01864 -0.00373366 0)
(1.01872 -0.00371132 0)
(1.01879 -0.00368937 0)
(1.01886 -0.00366782 0)
(1.01894 -0.00364671 0)
(1.01901 -0.00362606 0)
(1.01909 -0.00360591 0)
(1.01916 -0.00358629 0)
(1.01923 -0.00356723 0)
(1.01931 -0.00354875 0)
(1.01938 -0.00353087 0)
(1.01946 -0.00351361 0)
(1.01953 -0.00349698 0)
(1.0196 -0.00348099 0)
(1.01967 -0.00346563 0)
(1.01975 -0.00345089 0)
(1.01982 -0.00343676 0)
(1.01989 -0.0034232 0)
(1.01996 -0.00341021 0)
(1.02003 -0.00339773 0)
(1.0201 -0.00338574 0)
(1.02017 -0.0033742 0)
(1.02024 -0.00336307 0)
(1.02031 -0.00335231 0)
(1.02038 -0.00334187 0)
(1.02045 -0.00333171 0)
(1.02052 -0.00332179 0)
(1.02059 -0.00331206 0)
(1.02066 -0.00330247 0)
(1.02072 -0.00329297 0)
(1.02079 -0.00328351 0)
(1.02086 -0.00327406 0)
(1.02092 -0.00326454 0)
(1.02099 -0.00325491 0)
(1.02105 -0.00324512 0)
(1.02112 -0.00323512 0)
(1.02118 -0.00322486 0)
(1.02124 -0.00321429 0)
(1.02131 -0.00320336 0)
(1.02137 -0.00319205 0)
(1.02144 -0.0031803 0)
(1.0215 -0.00316809 0)
(1.02156 -0.00315538 0)
(1.02163 -0.00314217 0)
(1.02169 -0.00312842 0)
(1.02175 -0.00311415 0)
(1.02182 -0.00309933 0)
(1.02188 -0.00308398 0)
(1.02194 -0.00306812 0)
(1.02201 -0.00305178 0)
(1.02207 -0.00303498 0)
(1.02213 -0.00301777 0)
(1.0222 -0.00300021 0)
(1.02226 -0.00298236 0)
(1.02233 -0.0029643 0)
(1.02239 -0.00294611 0)
(1.02246 -0.00292788 0)
(1.02252 -0.00290971 0)
(1.02259 -0.0028917 0)
(1.02265 -0.00287395 0)
(1.02272 -0.00285656 0)
(1.02279 -0.00283964 0)
(1.02285 -0.00282327 0)
(1.02292 -0.00280756 0)
(1.02299 -0.00279257 0)
(1.02305 -0.00277841 0)
(1.02312 -0.00276509 0)
(1.02318 -0.00275272 0)
(1.02325 -0.00274127 0)
(1.02332 -0.00273086 0)
(1.01685 -0.00451539 0)
(1.01693 -0.00449341 0)
(1.01701 -0.00447121 0)
(1.01708 -0.00444873 0)
(1.01716 -0.00442596 0)
(1.01723 -0.00440287 0)
(1.01731 -0.00437946 0)
(1.01739 -0.00435572 0)
(1.01746 -0.00433166 0)
(1.01754 -0.00430731 0)
(1.01761 -0.00428269 0)
(1.01768 -0.00425783 0)
(1.01776 -0.00423278 0)
(1.01783 -0.00420757 0)
(1.01791 -0.00418225 0)
(1.01798 -0.00415686 0)
(1.01806 -0.00413143 0)
(1.01813 -0.00410602 0)
(1.0182 -0.00408066 0)
(1.01828 -0.00405539 0)
(1.01835 -0.00403024 0)
(1.01843 -0.00400523 0)
(1.0185 -0.00398041 0)
(1.01857 -0.00395579 0)
(1.01865 -0.00393139 0)
(1.01872 -0.00390723 0)
(1.0188 -0.00388333 0)
(1.01887 -0.00385971 0)
(1.01895 -0.00383638 0)
(1.01902 -0.00381336 0)
(1.01909 -0.00379067 0)
(1.01917 -0.00376833 0)
(1.01924 -0.00374637 0)
(1.01932 -0.0037248 0)
(1.01939 -0.00370365 0)
(1.01947 -0.00368296 0)
(1.01954 -0.00366276 0)
(1.01961 -0.00364306 0)
(1.01969 -0.0036239 0)
(1.01976 -0.00360531 0)
(1.01984 -0.0035873 0)
(1.01991 -0.0035699 0)
(1.01998 -0.0035531 0)
(1.02006 -0.00353693 0)
(1.02013 -0.00352136 0)
(1.0202 -0.0035064 0)
(1.02027 -0.00349202 0)
(1.02035 -0.00347821 0)
(1.02042 -0.00346494 0)
(1.02049 -0.00345219 0)
(1.02056 -0.0034399 0)
(1.02063 -0.00342806 0)
(1.0207 -0.00341662 0)
(1.02077 -0.00340553 0)
(1.02084 -0.00339477 0)
(1.02091 -0.00338429 0)
(1.02098 -0.00337404 0)
(1.02104 -0.00336398 0)
(1.02111 -0.00335406 0)
(1.02118 -0.00334425 0)
(1.02125 -0.00333448 0)
(1.02131 -0.00332472 0)
(1.02138 -0.00331492 0)
(1.02144 -0.00330502 0)
(1.02151 -0.00329497 0)
(1.02157 -0.00328473 0)
(1.02164 -0.00327425 0)
(1.0217 -0.00326348 0)
(1.02177 -0.00325238 0)
(1.02183 -0.00324092 0)
(1.02189 -0.00322904 0)
(1.02196 -0.00321674 0)
(1.02202 -0.00320397 0)
(1.02208 -0.00319071 0)
(1.02215 -0.00317696 0)
(1.02221 -0.0031627 0)
(1.02227 -0.00314793 0)
(1.02234 -0.00313265 0)
(1.0224 -0.00311689 0)
(1.02246 -0.00310066 0)
(1.02253 -0.003084 0)
(1.02259 -0.00306695 0)
(1.02266 -0.00304956 0)
(1.02272 -0.00303189 0)
(1.02279 -0.00301402 0)
(1.02285 -0.00299602 0)
(1.02292 -0.00297798 0)
(1.02298 -0.00295999 0)
(1.02305 -0.00294215 0)
(1.02311 -0.00292455 0)
(1.02318 -0.0029073 0)
(1.02325 -0.00289048 0)
(1.02331 -0.00287419 0)
(1.02338 -0.00285852 0)
(1.02344 -0.00284355 0)
(1.02351 -0.00282935 0)
(1.02358 -0.00281597 0)
(1.02364 -0.00280349 0)
(1.02371 -0.00279189 0)
(1.02378 -0.00278129 0)
(1.01732 -0.00457331 0)
(1.0174 -0.00455096 0)
(1.01748 -0.00452841 0)
(1.01755 -0.00450563 0)
(1.01763 -0.00448258 0)
(1.0177 -0.00445924 0)
(1.01778 -0.0044356 0)
(1.01786 -0.00441166 0)
(1.01793 -0.00438743 0)
(1.01801 -0.00436294 0)
(1.01808 -0.0043382 0)
(1.01815 -0.00431325 0)
(1.01823 -0.00428812 0)
(1.0183 -0.00426285 0)
(1.01838 -0.00423749 0)
(1.01845 -0.00421206 0)
(1.01853 -0.00418662 0)
(1.0186 -0.0041612 0)
(1.01867 -0.00413584 0)
(1.01875 -0.00411058 0)
(1.01882 -0.00408544 0)
(1.0189 -0.00406045 0)
(1.01897 -0.00403565 0)
(1.01905 -0.00401105 0)
(1.01912 -0.00398667 0)
(1.01919 -0.00396253 0)
(1.01927 -0.00393865 0)
(1.01934 -0.00391505 0)
(1.01942 -0.00389173 0)
(1.01949 -0.00386873 0)
(1.01957 -0.00384604 0)
(1.01964 -0.0038237 0)
(1.01972 -0.00380173 0)
(1.01979 -0.00378014 0)
(1.01986 -0.00375896 0)
(1.01994 -0.00373823 0)
(1.02001 -0.00371797 0)
(1.02009 -0.0036982 0)
(1.02016 -0.00367896 0)
(1.02023 -0.00366026 0)
(1.02031 -0.00364213 0)
(1.02038 -0.00362458 0)
(1.02046 -0.00360763 0)
(1.02053 -0.00359127 0)
(1.0206 -0.00357551 0)
(1.02067 -0.00356033 0)
(1.02075 -0.00354572 0)
(1.02082 -0.00353167 0)
(1.02089 -0.00351814 0)
(1.02096 -0.0035051 0)
(1.02103 -0.00349253 0)
(1.0211 -0.00348039 0)
(1.02117 -0.00346865 0)
(1.02124 -0.00345726 0)
(1.02131 -0.00344618 0)
(1.02138 -0.00343538 0)
(1.02145 -0.00342481 0)
(1.02152 -0.00341443 0)
(1.02159 -0.0034042 0)
(1.02165 -0.00339408 0)
(1.02172 -0.00338401 0)
(1.02179 -0.00337396 0)
(1.02185 -0.00336387 0)
(1.02192 -0.0033537 0)
(1.02198 -0.00334341 0)
(1.02205 -0.00333293 0)
(1.02211 -0.00332224 0)
(1.02218 -0.00331127 0)
(1.02224 -0.00330001 0)
(1.02231 -0.00328839 0)
(1.02237 -0.0032764 0)
(1.02243 -0.003264 0)
(1.0225 -0.00325116 0)
(1.02256 -0.00323787 0)
(1.02262 -0.0032241 0)
(1.02269 -0.00320985 0)
(1.02275 -0.00319512 0)
(1.02281 -0.00317992 0)
(1.02288 -0.00316425 0)
(1.02294 -0.00314813 0)
(1.02301 -0.00313161 0)
(1.02307 -0.00311471 0)
(1.02313 -0.00309749 0)
(1.0232 -0.00308 0)
(1.02326 -0.00306231 0)
(1.02333 -0.0030445 0)
(1.02339 -0.00302664 0)
(1.02346 -0.00300883 0)
(1.02352 -0.00299116 0)
(1.02359 -0.00297371 0)
(1.02366 -0.00295658 0)
(1.02372 -0.00293987 0)
(1.02379 -0.00292366 0)
(1.02386 -0.00290804 0)
(1.02392 -0.00289308 0)
(1.02399 -0.00287886 0)
(1.02406 -0.00286542 0)
(1.02412 -0.00285284 0)
(1.02419 -0.00284109 0)
(1.02425 -0.00283031 0)
(1.01781 -0.00462955 0)
(1.01789 -0.00460684 0)
(1.01796 -0.00458396 0)
(1.01804 -0.00456087 0)
(1.01812 -0.00453755 0)
(1.01819 -0.00451396 0)
(1.01827 -0.0044901 0)
(1.01834 -0.00446598 0)
(1.01842 -0.00444159 0)
(1.01849 -0.00441696 0)
(1.01857 -0.0043921 0)
(1.01864 -0.00436706 0)
(1.01872 -0.00434185 0)
(1.01879 -0.00431653 0)
(1.01887 -0.00429112 0)
(1.01894 -0.00426567 0)
(1.01902 -0.00424022 0)
(1.01909 -0.00421479 0)
(1.01916 -0.00418943 0)
(1.01924 -0.00416417 0)
(1.01931 -0.00413905 0)
(1.01939 -0.00411408 0)
(1.01946 -0.00408929 0)
(1.01954 -0.00406471 0)
(1.01961 -0.00404036 0)
(1.01968 -0.00401624 0)
(1.01976 -0.00399238 0)
(1.01983 -0.0039688 0)
(1.01991 -0.0039455 0)
(1.01998 -0.0039225 0)
(1.02006 -0.00389983 0)
(1.02013 -0.00387749 0)
(1.02021 -0.0038555 0)
(1.02028 -0.0038339 0)
(1.02035 -0.0038127 0)
(1.02043 -0.00379193 0)
(1.0205 -0.00377161 0)
(1.02058 -0.00375178 0)
(1.02065 -0.00373245 0)
(1.02073 -0.00371366 0)
(1.0208 -0.00369541 0)
(1.02087 -0.00367773 0)
(1.02095 -0.00366062 0)
(1.02102 -0.00364409 0)
(1.02109 -0.00362813 0)
(1.02117 -0.00361275 0)
(1.02124 -0.00359792 0)
(1.02131 -0.00358362 0)
(1.02138 -0.00356984 0)
(1.02146 -0.00355654 0)
(1.02153 -0.00354369 0)
(1.0216 -0.00353127 0)
(1.02167 -0.00351923 0)
(1.02174 -0.00350754 0)
(1.02181 -0.00349615 0)
(1.02188 -0.00348504 0)
(1.02194 -0.00347417 0)
(1.02201 -0.00346348 0)
(1.02208 -0.00345295 0)
(1.02215 -0.00344252 0)
(1.02221 -0.00343216 0)
(1.02228 -0.00342183 0)
(1.02235 -0.00341146 0)
(1.02241 -0.00340103 0)
(1.02248 -0.00339049 0)
(1.02254 -0.00337978 0)
(1.02261 -0.00336888 0)
(1.02267 -0.00335773 0)
(1.02274 -0.00334629 0)
(1.0228 -0.00333453 0)
(1.02287 -0.00332242 0)
(1.02293 -0.00330992 0)
(1.02299 -0.00329702 0)
(1.02306 -0.00328368 0)
(1.02312 -0.0032699 0)
(1.02318 -0.00325567 0)
(1.02325 -0.00324098 0)
(1.02331 -0.00322584 0)
(1.02337 -0.00321025 0)
(1.02344 -0.00319425 0)
(1.0235 -0.00317785 0)
(1.02357 -0.0031611 0)
(1.02363 -0.00314404 0)
(1.0237 -0.00312672 0)
(1.02376 -0.00310921 0)
(1.02383 -0.00309158 0)
(1.02389 -0.00307391 0)
(1.02396 -0.00305627 0)
(1.02402 -0.00303876 0)
(1.02409 -0.00302146 0)
(1.02415 -0.00300447 0)
(1.02422 -0.00298786 0)
(1.02429 -0.00297173 0)
(1.02435 -0.00295616 0)
(1.02442 -0.00294122 0)
(1.02449 -0.00292698 0)
(1.02455 -0.00291348 0)
(1.02462 -0.0029008 0)
(1.02469 -0.00288893 0)
(1.02475 -0.00287797 0)
(1.01832 -0.00468417 0)
(1.01839 -0.00466111 0)
(1.01847 -0.00463791 0)
(1.01855 -0.00461453 0)
(1.01863 -0.00459094 0)
(1.0187 -0.00456711 0)
(1.01878 -0.00454304 0)
(1.01885 -0.00451873 0)
(1.01893 -0.00449419 0)
(1.019 -0.00446942 0)
(1.01908 -0.00444446 0)
(1.01915 -0.00441932 0)
(1.01923 -0.00439405 0)
(1.0193 -0.00436867 0)
(1.01938 -0.00434322 0)
(1.01945 -0.00431775 0)
(1.01952 -0.00429227 0)
(1.0196 -0.00426684 0)
(1.01967 -0.00424149 0)
(1.01975 -0.00421624 0)
(1.01982 -0.00419112 0)
(1.0199 -0.00416617 0)
(1.01997 -0.00414141 0)
(1.02005 -0.00411685 0)
(1.02012 -0.00409252 0)
(1.02019 -0.00406842 0)
(1.02027 -0.00404459 0)
(1.02034 -0.00402102 0)
(1.02042 -0.00399774 0)
(1.02049 -0.00397476 0)
(1.02057 -0.00395209 0)
(1.02064 -0.00392975 0)
(1.02072 -0.00390776 0)
(1.02079 -0.00388614 0)
(1.02087 -0.00386492 0)
(1.02094 -0.00384411 0)
(1.02102 -0.00382375 0)
(1.02109 -0.00380385 0)
(1.02116 -0.00378445 0)
(1.02124 -0.00376556 0)
(1.02131 -0.0037472 0)
(1.02139 -0.00372938 0)
(1.02146 -0.00371213 0)
(1.02153 -0.00369543 0)
(1.02161 -0.0036793 0)
(1.02168 -0.00366371 0)
(1.02175 -0.00364866 0)
(1.02183 -0.00363414 0)
(1.0219 -0.00362011 0)
(1.02197 -0.00360656 0)
(1.02204 -0.00359344 0)
(1.02211 -0.00358074 0)
(1.02218 -0.00356842 0)
(1.02225 -0.00355643 0)
(1.02232 -0.00354475 0)
(1.02239 -0.00353335 0)
(1.02246 -0.00352217 0)
(1.02253 -0.00351118 0)
(1.0226 -0.00350035 0)
(1.02266 -0.00348963 0)
(1.02273 -0.00347899 0)
(1.0228 -0.00346837 0)
(1.02286 -0.00345774 0)
(1.02293 -0.00344706 0)
(1.023 -0.00343627 0)
(1.02306 -0.00342534 0)
(1.02313 -0.00341423 0)
(1.02319 -0.00340289 0)
(1.02325 -0.00339129 0)
(1.02332 -0.00337939 0)
(1.02338 -0.00336716 0)
(1.02345 -0.00335457 0)
(1.02351 -0.00334159 0)
(1.02357 -0.00332821 0)
(1.02364 -0.00331442 0)
(1.0237 -0.00330019 0)
(1.02376 -0.00328554 0)
(1.02383 -0.00327046 0)
(1.02389 -0.00325496 0)
(1.02396 -0.00323906 0)
(1.02402 -0.00322279 0)
(1.02408 -0.00320618 0)
(1.02415 -0.00318927 0)
(1.02421 -0.00317213 0)
(1.02428 -0.00315479 0)
(1.02434 -0.00313734 0)
(1.02441 -0.00311984 0)
(1.02448 -0.00310238 0)
(1.02454 -0.00308502 0)
(1.02461 -0.00306787 0)
(1.02467 -0.00305101 0)
(1.02474 -0.00303451 0)
(1.02481 -0.00301846 0)
(1.02487 -0.00300294 0)
(1.02494 -0.00298802 0)
(1.02501 -0.00297376 0)
(1.02507 -0.00296021 0)
(1.02514 -0.00294745 0)
(1.02521 -0.00293545 0)
(1.02527 -0.00292433 0)
(1.01885 -0.00473725 0)
(1.01892 -0.00471385 0)
(1.019 -0.00469033 0)
(1.01908 -0.00466667 0)
(1.01915 -0.00464281 0)
(1.01923 -0.00461876 0)
(1.01931 -0.00459449 0)
(1.01938 -0.00457 0)
(1.01946 -0.0045453 0)
(1.01953 -0.0045204 0)
(1.01961 -0.00449533 0)
(1.01968 -0.00447011 0)
(1.01976 -0.00444476 0)
(1.01983 -0.00441933 0)
(1.01991 -0.00439385 0)
(1.01998 -0.00436835 0)
(1.02006 -0.00434286 0)
(1.02013 -0.00431742 0)
(1.0202 -0.00429207 0)
(1.02028 -0.00426683 0)
(1.02035 -0.00424173 0)
(1.02043 -0.0042168 0)
(1.0205 -0.00419206 0)
(1.02058 -0.00416752 0)
(1.02065 -0.00414321 0)
(1.02073 -0.00411914 0)
(1.0208 -0.00409532 0)
(1.02088 -0.00407178 0)
(1.02095 -0.00404851 0)
(1.02103 -0.00402554 0)
(1.0211 -0.00400288 0)
(1.02118 -0.00398055 0)
(1.02125 -0.00395856 0)
(1.02132 -0.00393693 0)
(1.0214 -0.00391568 0)
(1.02147 -0.00389484 0)
(1.02155 -0.00387443 0)
(1.02162 -0.00385448 0)
(1.0217 -0.003835 0)
(1.02177 -0.00381602 0)
(1.02185 -0.00379756 0)
(1.02192 -0.00377962 0)
(1.02199 -0.00376222 0)
(1.02207 -0.00374537 0)
(1.02214 -0.00372906 0)
(1.02222 -0.00371328 0)
(1.02229 -0.00369802 0)
(1.02236 -0.00368328 0)
(1.02243 -0.00366901 0)
(1.0225 -0.00365521 0)
(1.02258 -0.00364184 0)
(1.02265 -0.00362887 0)
(1.02272 -0.00361627 0)
(1.02279 -0.003604 0)
(1.02286 -0.00359204 0)
(1.02293 -0.00358034 0)
(1.023 -0.00356887 0)
(1.02307 -0.00355759 0)
(1.02313 -0.00354647 0)
(1.0232 -0.00353547 0)
(1.02327 -0.00352454 0)
(1.02334 -0.00351366 0)
(1.0234 -0.00350277 0)
(1.02347 -0.00349183 0)
(1.02353 -0.00348081 0)
(1.0236 -0.00346966 0)
(1.02366 -0.00345834 0)
(1.02373 -0.00344682 0)
(1.02379 -0.00343505 0)
(1.02386 -0.00342301 0)
(1.02392 -0.00341066 0)
(1.02399 -0.00339798 0)
(1.02405 -0.00338494 0)
(1.02411 -0.00337151 0)
(1.02418 -0.0033577 0)
(1.02424 -0.00334348 0)
(1.02431 -0.00332886 0)
(1.02437 -0.00331383 0)
(1.02443 -0.00329841 0)
(1.0245 -0.00328262 0)
(1.02456 -0.00326647 0)
(1.02463 -0.00324999 0)
(1.02469 -0.00323324 0)
(1.02476 -0.00321625 0)
(1.02482 -0.00319909 0)
(1.02489 -0.00318181 0)
(1.02495 -0.00316449 0)
(1.02502 -0.00314719 0)
(1.02508 -0.00313 0)
(1.02515 -0.00311299 0)
(1.02522 -0.00309625 0)
(1.02528 -0.00307986 0)
(1.02535 -0.00306389 0)
(1.02542 -0.00304843 0)
(1.02548 -0.00303353 0)
(1.02555 -0.00301927 0)
(1.02562 -0.00300567 0)
(1.02569 -0.00299283 0)
(1.02575 -0.00298071 0)
(1.02582 -0.00296943 0)
(1.0194 -0.00478883 0)
(1.01947 -0.00476511 0)
(1.01955 -0.00474129 0)
(1.01963 -0.00471734 0)
(1.01971 -0.00469324 0)
(1.01978 -0.00466896 0)
(1.01986 -0.00464449 0)
(1.01993 -0.00461983 0)
(1.02001 -0.00459498 0)
(1.02008 -0.00456996 0)
(1.02016 -0.00454478 0)
(1.02024 -0.00451947 0)
(1.02031 -0.00449406 0)
(1.02038 -0.00446858 0)
(1.02046 -0.00444306 0)
(1.02053 -0.00441753 0)
(1.02061 -0.00439203 0)
(1.02068 -0.00436659 0)
(1.02076 -0.00434125 0)
(1.02083 -0.00431602 0)
(1.02091 -0.00429093 0)
(1.02098 -0.00426602 0)
(1.02106 -0.00424129 0)
(1.02113 -0.00421678 0)
(1.02121 -0.00419249 0)
(1.02128 -0.00416844 0)
(1.02136 -0.00414465 0)
(1.02143 -0.00412113 0)
(1.02151 -0.00409788 0)
(1.02158 -0.00407493 0)
(1.02166 -0.00405228 0)
(1.02173 -0.00402995 0)
(1.02181 -0.00400795 0)
(1.02188 -0.00398632 0)
(1.02196 -0.00396505 0)
(1.02203 -0.00394418 0)
(1.02211 -0.00392373 0)
(1.02218 -0.00390372 0)
(1.02226 -0.00388418 0)
(1.02233 -0.00386511 0)
(1.0224 -0.00384654 0)
(1.02248 -0.00382849 0)
(1.02255 -0.00381096 0)
(1.02263 -0.00379395 0)
(1.0227 -0.00377747 0)
(1.02277 -0.00376151 0)
(1.02285 -0.00374605 0)
(1.02292 -0.00373109 0)
(1.02299 -0.0037166 0)
(1.02306 -0.00370256 0)
(1.02314 -0.00368894 0)
(1.02321 -0.00367571 0)
(1.02328 -0.00366284 0)
(1.02335 -0.0036503 0)
(1.02342 -0.00363806 0)
(1.02349 -0.00362608 0)
(1.02356 -0.00361432 0)
(1.02363 -0.00360276 0)
(1.0237 -0.00359136 0)
(1.02376 -0.00358008 0)
(1.02383 -0.00356888 0)
(1.0239 -0.00355773 0)
(1.02397 -0.00354659 0)
(1.02403 -0.00353541 0)
(1.0241 -0.00352415 0)
(1.02416 -0.00351279 0)
(1.02423 -0.00350127 0)
(1.02429 -0.00348957 0)
(1.02436 -0.00347764 0)
(1.02442 -0.00346546 0)
(1.02449 -0.003453 0)
(1.02455 -0.00344022 0)
(1.02462 -0.0034271 0)
(1.02468 -0.00341364 0)
(1.02474 -0.0033998 0)
(1.02481 -0.00338559 0)
(1.02487 -0.00337099 0)
(1.02494 -0.00335602 0)
(1.025 -0.00334068 0)
(1.02506 -0.00332497 0)
(1.02513 -0.00330894 0)
(1.02519 -0.0032926 0)
(1.02526 -0.00327599 0)
(1.02532 -0.00325916 0)
(1.02539 -0.00324216 0)
(1.02545 -0.00322505 0)
(1.02552 -0.0032079 0)
(1.02559 -0.00319076 0)
(1.02565 -0.00317373 0)
(1.02572 -0.00315687 0)
(1.02579 -0.00314025 0)
(1.02585 -0.00312397 0)
(1.02592 -0.00310809 0)
(1.02599 -0.00309268 0)
(1.02605 -0.00307781 0)
(1.02612 -0.00306354 0)
(1.02619 -0.00304991 0)
(1.02626 -0.00303699 0)
(1.02632 -0.00302476 0)
(1.02639 -0.00301334 0)
(1.01997 -0.00483901 0)
(1.02005 -0.00481496 0)
(1.02013 -0.00479085 0)
(1.0202 -0.00476663 0)
(1.02028 -0.00474228 0)
(1.02036 -0.00471778 0)
(1.02043 -0.00469312 0)
(1.02051 -0.00466829 0)
(1.02059 -0.00464329 0)
(1.02066 -0.00461815 0)
(1.02074 -0.00459287 0)
(1.02081 -0.00456748 0)
(1.02089 -0.00454201 0)
(1.02096 -0.00451648 0)
(1.02104 -0.00449092 0)
(1.02111 -0.00446537 0)
(1.02119 -0.00443986 0)
(1.02126 -0.00441442 0)
(1.02134 -0.00438907 0)
(1.02141 -0.00436385 0)
(1.02149 -0.00433878 0)
(1.02156 -0.00431389 0)
(1.02164 -0.00428918 0)
(1.02171 -0.00426469 0)
(1.02179 -0.00424043 0)
(1.02186 -0.0042164 0)
(1.02194 -0.00419263 0)
(1.02201 -0.00416913 0)
(1.02209 -0.0041459 0)
(1.02216 -0.00412297 0)
(1.02224 -0.00410033 0)
(1.02231 -0.004078 0)
(1.02239 -0.00405601 0)
(1.02246 -0.00403436 0)
(1.02254 -0.00401308 0)
(1.02261 -0.00399219 0)
(1.02269 -0.0039717 0)
(1.02276 -0.00395164 0)
(1.02284 -0.00393203 0)
(1.02291 -0.00391288 0)
(1.02299 -0.00389422 0)
(1.02306 -0.00387605 0)
(1.02314 -0.00385839 0)
(1.02321 -0.00384124 0)
(1.02329 -0.0038246 0)
(1.02336 -0.00380846 0)
(1.02343 -0.00379281 0)
(1.02351 -0.00377764 0)
(1.02358 -0.00376293 0)
(1.02365 -0.00374866 0)
(1.02372 -0.00373479 0)
(1.02379 -0.00372131 0)
(1.02387 -0.00370819 0)
(1.02394 -0.00369538 0)
(1.02401 -0.00368287 0)
(1.02408 -0.00367061 0)
(1.02415 -0.00365859 0)
(1.02422 -0.00364675 0)
(1.02428 -0.00363508 0)
(1.02435 -0.00362353 0)
(1.02442 -0.00361207 0)
(1.02449 -0.00360065 0)
(1.02455 -0.00358926 0)
(1.02462 -0.00357784 0)
(1.02469 -0.00356636 0)
(1.02475 -0.00355478 0)
(1.02482 -0.00354307 0)
(1.02488 -0.00353119 0)
(1.02495 -0.00351911 0)
(1.02501 -0.00350679 0)
(1.02508 -0.0034942 0)
(1.02514 -0.00348133 0)
(1.02521 -0.00346815 0)
(1.02527 -0.00345463 0)
(1.02534 -0.00344077 0)
(1.0254 -0.00342656 0)
(1.02546 -0.00341199 0)
(1.02553 -0.00339707 0)
(1.02559 -0.00338179 0)
(1.02566 -0.00336618 0)
(1.02572 -0.00335026 0)
(1.02579 -0.00333405 0)
(1.02585 -0.00331758 0)
(1.02592 -0.0033009 0)
(1.02598 -0.00328406 0)
(1.02605 -0.00326712 0)
(1.02611 -0.00325012 0)
(1.02618 -0.00323315 0)
(1.02625 -0.00321627 0)
(1.02631 -0.00319955 0)
(1.02638 -0.00318307 0)
(1.02645 -0.00316689 0)
(1.02651 -0.00315109 0)
(1.02658 -0.00313574 0)
(1.02665 -0.0031209 0)
(1.02672 -0.00310663 0)
(1.02678 -0.00309296 0)
(1.02685 -0.00307998 0)
(1.02692 -0.00306765 0)
(1.02699 -0.00305609 0)
(1.02057 -0.00488782 0)
(1.02065 -0.00486346 0)
(1.02073 -0.00483906 0)
(1.02081 -0.00481459 0)
(1.02088 -0.00479 0)
(1.02096 -0.00476529 0)
(1.02104 -0.00474044 0)
(1.02111 -0.00471544 0)
(1.02119 -0.00469031 0)
(1.02126 -0.00466504 0)
(1.02134 -0.00463966 0)
(1.02142 -0.00461419 0)
(1.02149 -0.00458866 0)
(1.02157 -0.00456308 0)
(1.02164 -0.00453749 0)
(1.02172 -0.00451192 0)
(1.02179 -0.00448639 0)
(1.02187 -0.00446095 0)
(1.02194 -0.00443561 0)
(1.02202 -0.0044104 0)
(1.02209 -0.00438534 0)
(1.02217 -0.00436047 0)
(1.02224 -0.00433578 0)
(1.02232 -0.00431132 0)
(1.02239 -0.00428708 0)
(1.02247 -0.00426308 0)
(1.02254 -0.00423933 0)
(1.02262 -0.00421585 0)
(1.02269 -0.00419264 0)
(1.02277 -0.00416972 0)
(1.02285 -0.00414709 0)
(1.02292 -0.00412478 0)
(1.023 -0.00410279 0)
(1.02307 -0.00408113 0)
(1.02315 -0.00405984 0)
(1.02322 -0.00403892 0)
(1.0233 -0.0040184 0)
(1.02337 -0.00399829 0)
(1.02345 -0.00397861 0)
(1.02352 -0.00395939 0)
(1.0236 -0.00394064 0)
(1.02367 -0.00392237 0)
(1.02375 -0.00390458 0)
(1.02382 -0.00388729 0)
(1.0239 -0.00387049 0)
(1.02397 -0.00385418 0)
(1.02404 -0.00383835 0)
(1.02412 -0.00382298 0)
(1.02419 -0.00380806 0)
(1.02426 -0.00379356 0)
(1.02434 -0.00377947 0)
(1.02441 -0.00376574 0)
(1.02448 -0.00375237 0)
(1.02455 -0.0037393 0)
(1.02462 -0.00372653 0)
(1.02469 -0.00371401 0)
(1.02476 -0.00370172 0)
(1.02483 -0.00368962 0)
(1.0249 -0.00367767 0)
(1.02497 -0.00366586 0)
(1.02504 -0.00365414 0)
(1.0251 -0.00364248 0)
(1.02517 -0.00363084 0)
(1.02524 -0.00361919 0)
(1.02531 -0.00360748 0)
(1.02537 -0.0035957 0)
(1.02544 -0.0035838 0)
(1.0255 -0.00357174 0)
(1.02557 -0.0035595 0)
(1.02563 -0.00354704 0)
(1.0257 -0.00353434 0)
(1.02576 -0.00352137 0)
(1.02583 -0.00350812 0)
(1.02589 -0.00349455 0)
(1.02596 -0.00348067 0)
(1.02602 -0.00346646 0)
(1.02609 -0.00345191 0)
(1.02615 -0.00343703 0)
(1.02622 -0.00342182 0)
(1.02628 -0.0034063 0)
(1.02634 -0.00339048 0)
(1.02641 -0.00337439 0)
(1.02647 -0.00335806 0)
(1.02654 -0.00334152 0)
(1.02661 -0.00332484 0)
(1.02667 -0.00330805 0)
(1.02674 -0.00329122 0)
(1.0268 -0.00327441 0)
(1.02687 -0.00325768 0)
(1.02694 -0.0032411 0)
(1.02701 -0.00322474 0)
(1.02707 -0.00320867 0)
(1.02714 -0.00319295 0)
(1.02721 -0.00317767 0)
(1.02728 -0.00316286 0)
(1.02734 -0.00314859 0)
(1.02741 -0.0031349 0)
(1.02748 -0.00312185 0)
(1.02755 -0.00310944 0)
(1.02761 -0.00309774 0)
(1.0212 -0.00493535 0)
(1.02128 -0.00491069 0)
(1.02136 -0.00488601 0)
(1.02144 -0.00486127 0)
(1.02151 -0.00483646 0)
(1.02159 -0.00481154 0)
(1.02167 -0.0047865 0)
(1.02174 -0.00476135 0)
(1.02182 -0.00473608 0)
(1.0219 -0.0047107 0)
(1.02197 -0.00468522 0)
(1.02205 -0.00465967 0)
(1.02212 -0.00463407 0)
(1.0222 -0.00460845 0)
(1.02227 -0.00458283 0)
(1.02235 -0.00455723 0)
(1.02242 -0.0045317 0)
(1.0225 -0.00450625 0)
(1.02258 -0.00448092 0)
(1.02265 -0.00445572 0)
(1.02273 -0.00443068 0)
(1.0228 -0.00440582 0)
(1.02288 -0.00438116 0)
(1.02295 -0.00435671 0)
(1.02303 -0.0043325 0)
(1.0231 -0.00430852 0)
(1.02318 -0.0042848 0)
(1.02326 -0.00426134 0)
(1.02333 -0.00423815 0)
(1.02341 -0.00421525 0)
(1.02348 -0.00419263 0)
(1.02356 -0.00417033 0)
(1.02363 -0.00414834 0)
(1.02371 -0.00412668 0)
(1.02379 -0.00410538 0)
(1.02386 -0.00408444 0)
(1.02394 -0.00406388 0)
(1.02401 -0.00404373 0)
(1.02409 -0.004024 0)
(1.02416 -0.0040047 0)
(1.02424 -0.00398586 0)
(1.02431 -0.00396749 0)
(1.02439 -0.00394959 0)
(1.02446 -0.00393216 0)
(1.02454 -0.00391522 0)
(1.02461 -0.00389874 0)
(1.02469 -0.00388273 0)
(1.02476 -0.00386717 0)
(1.02483 -0.00385205 0)
(1.02491 -0.00383733 0)
(1.02498 -0.00382301 0)
(1.02505 -0.00380905 0)
(1.02512 -0.00379543 0)
(1.0252 -0.00378212 0)
(1.02527 -0.0037691 0)
(1.02534 -0.00375632 0)
(1.02541 -0.00374377 0)
(1.02548 -0.00373141 0)
(1.02555 -0.00371921 0)
(1.02562 -0.00370714 0)
(1.02568 -0.00369516 0)
(1.02575 -0.00368325 0)
(1.02582 -0.00367138 0)
(1.02589 -0.0036595 0)
(1.02595 -0.00364758 0)
(1.02602 -0.00363559 0)
(1.02609 -0.0036235 0)
(1.02615 -0.00361127 0)
(1.02622 -0.00359887 0)
(1.02628 -0.00358628 0)
(1.02635 -0.00357346 0)
(1.02642 -0.0035604 0)
(1.02648 -0.00354707 0)
(1.02654 -0.00353346 0)
(1.02661 -0.00351954 0)
(1.02667 -0.00350533 0)
(1.02674 -0.0034908 0)
(1.0268 -0.00347596 0)
(1.02687 -0.00346081 0)
(1.02693 -0.00344537 0)
(1.027 -0.00342964 0)
(1.02706 -0.00341367 0)
(1.02713 -0.00339747 0)
(1.02719 -0.00338108 0)
(1.02726 -0.00336455 0)
(1.02733 -0.00334791 0)
(1.02739 -0.00333124 0)
(1.02746 -0.00331458 0)
(1.02753 -0.00329799 0)
(1.02759 -0.00328155 0)
(1.02766 -0.00326532 0)
(1.02773 -0.00324936 0)
(1.0278 -0.00323373 0)
(1.02787 -0.00321851 0)
(1.02793 -0.00320373 0)
(1.028 -0.00318948 0)
(1.02807 -0.00317577 0)
(1.02814 -0.00316267 0)
(1.02821 -0.00315016 0)
(1.02827 -0.00313835 0)
(1.02186 -0.00498165 0)
(1.02194 -0.00495669 0)
(1.02202 -0.00493174 0)
(1.0221 -0.00490676 0)
(1.02217 -0.00488172 0)
(1.02225 -0.0048566 0)
(1.02233 -0.00483138 0)
(1.0224 -0.00480607 0)
(1.02248 -0.00478067 0)
(1.02256 -0.00475517 0)
(1.02263 -0.0047296 0)
(1.02271 -0.00470398 0)
(1.02279 -0.00467832 0)
(1.02286 -0.00465265 0)
(1.02294 -0.004627 0)
(1.02301 -0.00460138 0)
(1.02309 -0.00457584 0)
(1.02316 -0.00455039 0)
(1.02324 -0.00452506 0)
(1.02332 -0.00449987 0)
(1.02339 -0.00447484 0)
(1.02347 -0.00445 0)
(1.02354 -0.00442536 0)
(1.02362 -0.00440094 0)
(1.0237 -0.00437675 0)
(1.02377 -0.0043528 0)
(1.02385 -0.0043291 0)
(1.02392 -0.00430566 0)
(1.024 -0.00428249 0)
(1.02408 -0.0042596 0)
(1.02415 -0.00423701 0)
(1.02423 -0.00421471 0)
(1.0243 -0.00419273 0)
(1.02438 -0.00417107 0)
(1.02446 -0.00414975 0)
(1.02453 -0.00412879 0)
(1.02461 -0.00410821 0)
(1.02468 -0.00408801 0)
(1.02476 -0.00406823 0)
(1.02484 -0.00404887 0)
(1.02491 -0.00402995 0)
(1.02499 -0.00401147 0)
(1.02506 -0.00399346 0)
(1.02514 -0.00397591 0)
(1.02521 -0.00395882 0)
(1.02529 -0.00394219 0)
(1.02536 -0.00392601 0)
(1.02544 -0.00391027 0)
(1.02551 -0.00389495 0)
(1.02558 -0.00388003 0)
(1.02566 -0.00386548 0)
(1.02573 -0.0038513 0)
(1.0258 -0.00383745 0)
(1.02587 -0.0038239 0)
(1.02595 -0.00381062 0)
(1.02602 -0.0037976 0)
(1.02609 -0.00378479 0)
(1.02616 -0.00377218 0)
(1.02623 -0.00375973 0)
(1.0263 -0.00374741 0)
(1.02637 -0.00373519 0)
(1.02643 -0.00372304 0)
(1.0265 -0.00371093 0)
(1.02657 -0.00369883 0)
(1.02664 -0.0036867 0)
(1.0267 -0.00367451 0)
(1.02677 -0.00366223 0)
(1.02684 -0.00364983 0)
(1.0269 -0.00363728 0)
(1.02697 -0.00362455 0)
(1.02703 -0.00361161 0)
(1.0271 -0.00359846 0)
(1.02717 -0.00358505 0)
(1.02723 -0.00357139 0)
(1.0273 -0.00355745 0)
(1.02736 -0.00354322 0)
(1.02743 -0.0035287 0)
(1.02749 -0.0035139 0)
(1.02756 -0.00349881 0)
(1.02762 -0.00348344 0)
(1.02769 -0.00346781 0)
(1.02775 -0.00345195 0)
(1.02782 -0.00343587 0)
(1.02788 -0.00341962 0)
(1.02795 -0.00340323 0)
(1.02802 -0.00338675 0)
(1.02808 -0.00337023 0)
(1.02815 -0.00335372 0)
(1.02822 -0.00333728 0)
(1.02829 -0.00332097 0)
(1.02835 -0.00330486 0)
(1.02842 -0.00328901 0)
(1.02849 -0.00327347 0)
(1.02856 -0.00325831 0)
(1.02863 -0.00324358 0)
(1.02869 -0.00322934 0)
(1.02876 -0.00321561 0)
(1.02883 -0.00320246 0)
(1.0289 -0.00318988 0)
(1.02897 -0.00317796 0)
(1.02255 -0.00502678 0)
(1.02263 -0.00500155 0)
(1.02271 -0.00497633 0)
(1.02279 -0.00495111 0)
(1.02287 -0.00492585 0)
(1.02294 -0.00490053 0)
(1.02302 -0.00487514 0)
(1.0231 -0.00484968 0)
(1.02318 -0.00482414 0)
(1.02325 -0.00479854 0)
(1.02333 -0.00477288 0)
(1.02341 -0.00474718 0)
(1.02348 -0.00472146 0)
(1.02356 -0.00469574 0)
(1.02363 -0.00467006 0)
(1.02371 -0.00464442 0)
(1.02379 -0.00461887 0)
(1.02386 -0.00459341 0)
(1.02394 -0.00456809 0)
(1.02401 -0.00454291 0)
(1.02409 -0.0045179 0)
(1.02417 -0.00449308 0)
(1.02424 -0.00446846 0)
(1.02432 -0.00444406 0)
(1.0244 -0.00441989 0)
(1.02447 -0.00439596 0)
(1.02455 -0.00437229 0)
(1.02462 -0.00434887 0)
(1.0247 -0.00432573 0)
(1.02478 -0.00430286 0)
(1.02485 -0.00428027 0)
(1.02493 -0.00425799 0)
(1.02501 -0.00423601 0)
(1.02508 -0.00421435 0)
(1.02516 -0.00419303 0)
(1.02524 -0.00417205 0)
(1.02531 -0.00415144 0)
(1.02539 -0.00413121 0)
(1.02547 -0.00411137 0)
(1.02554 -0.00409195 0)
(1.02562 -0.00407295 0)
(1.0257 -0.00405439 0)
(1.02577 -0.00403627 0)
(1.02585 -0.0040186 0)
(1.02592 -0.00400137 0)
(1.026 -0.00398459 0)
(1.02607 -0.00396825 0)
(1.02615 -0.00395233 0)
(1.02622 -0.00393681 0)
(1.0263 -0.00392169 0)
(1.02637 -0.00390694 0)
(1.02644 -0.00389254 0)
(1.02651 -0.00387846 0)
(1.02659 -0.00386468 0)
(1.02666 -0.00385116 0)
(1.02673 -0.0038379 0)
(1.0268 -0.00382485 0)
(1.02687 -0.00381199 0)
(1.02694 -0.00379929 0)
(1.02701 -0.00378673 0)
(1.02708 -0.00377427 0)
(1.02715 -0.00376189 0)
(1.02722 -0.00374955 0)
(1.02729 -0.00373723 0)
(1.02736 -0.00372489 0)
(1.02742 -0.00371251 0)
(1.02749 -0.00370004 0)
(1.02756 -0.00368747 0)
(1.02762 -0.00367477 0)
(1.02769 -0.00366191 0)
(1.02776 -0.00364886 0)
(1.02782 -0.00363561 0)
(1.02789 -0.00362213 0)
(1.02795 -0.00360841 0)
(1.02802 -0.00359443 0)
(1.02808 -0.00358019 0)
(1.02815 -0.00356569 0)
(1.02821 -0.00355091 0)
(1.02828 -0.00353587 0)
(1.02835 -0.00352058 0)
(1.02841 -0.00350504 0)
(1.02848 -0.00348928 0)
(1.02854 -0.00347332 0)
(1.02861 -0.0034572 0)
(1.02868 -0.00344095 0)
(1.02874 -0.00342461 0)
(1.02881 -0.00340824 0)
(1.02888 -0.00339187 0)
(1.02895 -0.00337558 0)
(1.02901 -0.00335941 0)
(1.02908 -0.00334342 0)
(1.02915 -0.00332767 0)
(1.02922 -0.00331222 0)
(1.02929 -0.00329713 0)
(1.02936 -0.00328245 0)
(1.02942 -0.00326822 0)
(1.02949 -0.00325448 0)
(1.02956 -0.0032413 0)
(1.02963 -0.00322865 0)
(1.0297 -0.00321663 0)
(1.02328 -0.00507083 0)
(1.02336 -0.00504531 0)
(1.02344 -0.00501984 0)
(1.02351 -0.00499438 0)
(1.02359 -0.0049689 0)
(1.02367 -0.00494339 0)
(1.02375 -0.00491784 0)
(1.02383 -0.00489222 0)
(1.0239 -0.00486656 0)
(1.02398 -0.00484085 0)
(1.02406 -0.00481509 0)
(1.02414 -0.00478932 0)
(1.02421 -0.00476355 0)
(1.02429 -0.00473779 0)
(1.02437 -0.00471207 0)
(1.02444 -0.00468642 0)
(1.02452 -0.00466085 0)
(1.0246 -0.0046354 0)
(1.02467 -0.00461007 0)
(1.02475 -0.0045849 0)
(1.02483 -0.00455991 0)
(1.0249 -0.00453511 0)
(1.02498 -0.00451051 0)
(1.02506 -0.00448613 0)
(1.02513 -0.00446198 0)
(1.02521 -0.00443808 0)
(1.02529 -0.00441443 0)
(1.02536 -0.00439104 0)
(1.02544 -0.00436791 0)
(1.02552 -0.00434506 0)
(1.02559 -0.00432249 0)
(1.02567 -0.00430022 0)
(1.02575 -0.00427825 0)
(1.02583 -0.00425659 0)
(1.0259 -0.00423526 0)
(1.02598 -0.00421427 0)
(1.02606 -0.00419363 0)
(1.02613 -0.00417337 0)
(1.02621 -0.00415349 0)
(1.02629 -0.004134 0)
(1.02636 -0.00411493 0)
(1.02644 -0.00409628 0)
(1.02652 -0.00407806 0)
(1.02659 -0.00406027 0)
(1.02667 -0.00404292 0)
(1.02674 -0.004026 0)
(1.02682 -0.00400949 0)
(1.0269 -0.0039934 0)
(1.02697 -0.00397771 0)
(1.02704 -0.0039624 0)
(1.02712 -0.00394745 0)
(1.02719 -0.00393283 0)
(1.02727 -0.00391853 0)
(1.02734 -0.00390452 0)
(1.02741 -0.00389078 0)
(1.02748 -0.00387728 0)
(1.02756 -0.00386399 0)
(1.02763 -0.0038509 0)
(1.0277 -0.00383796 0)
(1.02777 -0.00382516 0)
(1.02784 -0.00381247 0)
(1.02791 -0.00379986 0)
(1.02798 -0.0037873 0)
(1.02804 -0.00377476 0)
(1.02811 -0.00376222 0)
(1.02818 -0.00374964 0)
(1.02825 -0.003737 0)
(1.02832 -0.00372426 0)
(1.02838 -0.00371141 0)
(1.02845 -0.00369841 0)
(1.02852 -0.00368525 0)
(1.02858 -0.0036719 0)
(1.02865 -0.00365834 0)
(1.02872 -0.00364456 0)
(1.02878 -0.00363055 0)
(1.02885 -0.0036163 0)
(1.02891 -0.0036018 0)
(1.02898 -0.00358705 0)
(1.02904 -0.00357206 0)
(1.02911 -0.00355682 0)
(1.02918 -0.00354137 0)
(1.02924 -0.00352571 0)
(1.02931 -0.00350987 0)
(1.02938 -0.00349387 0)
(1.02944 -0.00347775 0)
(1.02951 -0.00346156 0)
(1.02958 -0.00344532 0)
(1.02965 -0.0034291 0)
(1.02971 -0.00341295 0)
(1.02978 -0.00339691 0)
(1.02985 -0.00338104 0)
(1.02992 -0.0033654 0)
(1.02999 -0.00335004 0)
(1.03006 -0.00333502 0)
(1.03013 -0.00332039 0)
(1.0302 -0.00330618 0)
(1.03027 -0.00329244 0)
(1.03033 -0.00327922 0)
(1.0304 -0.00326651 0)
(1.03047 -0.0032544 0)
(1.02404 -0.00511384 0)
(1.02412 -0.00508805 0)
(1.0242 -0.00506233 0)
(1.02428 -0.00503664 0)
(1.02436 -0.00501096 0)
(1.02444 -0.00498526 0)
(1.02452 -0.00495953 0)
(1.02459 -0.00493378 0)
(1.02467 -0.00490799 0)
(1.02475 -0.00488217 0)
(1.02483 -0.00485633 0)
(1.02491 -0.00483048 0)
(1.02498 -0.00480465 0)
(1.02506 -0.00477885 0)
(1.02514 -0.0047531 0)
(1.02521 -0.00472743 0)
(1.02529 -0.00470185 0)
(1.02537 -0.00467639 0)
(1.02545 -0.00465107 0)
(1.02552 -0.00462591 0)
(1.0256 -0.00460093 0)
(1.02568 -0.00457615 0)
(1.02575 -0.00455157 0)
(1.02583 -0.00452721 0)
(1.02591 -0.00450309 0)
(1.02599 -0.00447921 0)
(1.02606 -0.00445558 0)
(1.02614 -0.00443221 0)
(1.02622 -0.00440911 0)
(1.0263 -0.00438628 0)
(1.02637 -0.00436373 0)
(1.02645 -0.00434147 0)
(1.02653 -0.0043195 0)
(1.02661 -0.00429785 0)
(1.02668 -0.00427651 0)
(1.02676 -0.00425551 0)
(1.02684 -0.00423485 0)
(1.02692 -0.00421455 0)
(1.02699 -0.00419463 0)
(1.02707 -0.00417509 0)
(1.02715 -0.00415595 0)
(1.02723 -0.00413722 0)
(1.0273 -0.0041189 0)
(1.02738 -0.00410101 0)
(1.02746 -0.00408353 0)
(1.02753 -0.00406647 0)
(1.02761 -0.00404982 0)
(1.02768 -0.00403356 0)
(1.02776 -0.00401769 0)
(1.02784 -0.0040022 0)
(1.02791 -0.00398705 0)
(1.02798 -0.00397223 0)
(1.02806 -0.00395772 0)
(1.02813 -0.00394349 0)
(1.02821 -0.00392953 0)
(1.02828 -0.0039158 0)
(1.02835 -0.00390228 0)
(1.02842 -0.00388895 0)
(1.02849 -0.00387579 0)
(1.02856 -0.00386276 0)
(1.02864 -0.00384984 0)
(1.02871 -0.00383701 0)
(1.02878 -0.00382423 0)
(1.02884 -0.00381148 0)
(1.02891 -0.00379874 0)
(1.02898 -0.00378597 0)
(1.02905 -0.00377315 0)
(1.02912 -0.00376025 0)
(1.02919 -0.00374724 0)
(1.02925 -0.00373411 0)
(1.02932 -0.00372083 0)
(1.02939 -0.00370738 0)
(1.02945 -0.00369375 0)
(1.02952 -0.00367991 0)
(1.02959 -0.00366586 0)
(1.02965 -0.00365159 0)
(1.02972 -0.00363709 0)
(1.02979 -0.00362236 0)
(1.02985 -0.00360741 0)
(1.02992 -0.00359224 0)
(1.02999 -0.00357686 0)
(1.03005 -0.0035613 0)
(1.03012 -0.00354556 0)
(1.03019 -0.00352968 0)
(1.03025 -0.00351369 0)
(1.03032 -0.00349763 0)
(1.03039 -0.00348154 0)
(1.03046 -0.00346546 0)
(1.03053 -0.00344944 0)
(1.0306 -0.00343353 0)
(1.03067 -0.00341778 0)
(1.03073 -0.00340225 0)
(1.0308 -0.00338699 0)
(1.03087 -0.00337204 0)
(1.03094 -0.00335745 0)
(1.03101 -0.00334328 0)
(1.03108 -0.00332954 0)
(1.03115 -0.00331629 0)
(1.03122 -0.00330353 0)
(1.03129 -0.00329133 0)
(1.02484 -0.00515589 0)
(1.02492 -0.00512984 0)
(1.02501 -0.00510387 0)
(1.02509 -0.00507795 0)
(1.02517 -0.00505207 0)
(1.02525 -0.00502619 0)
(1.02532 -0.0050003 0)
(1.0254 -0.0049744 0)
(1.02548 -0.00494849 0)
(1.02556 -0.00492256 0)
(1.02564 -0.00489663 0)
(1.02572 -0.00487072 0)
(1.0258 -0.00484483 0)
(1.02587 -0.00481898 0)
(1.02595 -0.0047932 0)
(1.02603 -0.00476751 0)
(1.02611 -0.00474192 0)
(1.02618 -0.00471646 0)
(1.02626 -0.00469115 0)
(1.02634 -0.004666 0)
(1.02642 -0.00464103 0)
(1.0265 -0.00461626 0)
(1.02657 -0.0045917 0)
(1.02665 -0.00456737 0)
(1.02673 -0.00454327 0)
(1.02681 -0.00451941 0)
(1.02689 -0.00449581 0)
(1.02696 -0.00447246 0)
(1.02704 -0.00444938 0)
(1.02712 -0.00442657 0)
(1.0272 -0.00440404 0)
(1.02728 -0.00438179 0)
(1.02735 -0.00435983 0)
(1.02743 -0.00433818 0)
(1.02751 -0.00431684 0)
(1.02759 -0.00429583 0)
(1.02767 -0.00427515 0)
(1.02775 -0.00425482 0)
(1.02782 -0.00423486 0)
(1.0279 -0.00421527 0)
(1.02798 -0.00419607 0)
(1.02806 -0.00417726 0)
(1.02813 -0.00415885 0)
(1.02821 -0.00414085 0)
(1.02829 -0.00412326 0)
(1.02837 -0.00410606 0)
(1.02844 -0.00408927 0)
(1.02852 -0.00407286 0)
(1.0286 -0.00405682 0)
(1.02867 -0.00404115 0)
(1.02875 -0.00402581 0)
(1.02882 -0.00401079 0)
(1.0289 -0.00399608 0)
(1.02897 -0.00398164 0)
(1.02904 -0.00396746 0)
(1.02912 -0.00395351 0)
(1.02919 -0.00393977 0)
(1.02926 -0.00392622 0)
(1.02934 -0.00391283 0)
(1.02941 -0.00389958 0)
(1.02948 -0.00388644 0)
(1.02955 -0.00387338 0)
(1.02962 -0.00386039 0)
(1.02969 -0.00384744 0)
(1.02976 -0.0038345 0)
(1.02983 -0.00382154 0)
(1.0299 -0.00380855 0)
(1.02997 -0.00379548 0)
(1.03003 -0.00378233 0)
(1.0301 -0.00376907 0)
(1.03017 -0.00375567 0)
(1.03024 -0.00374212 0)
(1.03031 -0.00372841 0)
(1.03037 -0.00371451 0)
(1.03044 -0.00370042 0)
(1.03051 -0.00368612 0)
(1.03057 -0.00367162 0)
(1.03064 -0.00365691 0)
(1.03071 -0.00364199 0)
(1.03078 -0.00362688 0)
(1.03084 -0.00361157 0)
(1.03091 -0.00359609 0)
(1.03098 -0.00358046 0)
(1.03105 -0.00356469 0)
(1.03111 -0.00354883 0)
(1.03118 -0.0035329 0)
(1.03125 -0.00351694 0)
(1.03132 -0.003501 0)
(1.03139 -0.00348511 0)
(1.03146 -0.00346933 0)
(1.03153 -0.0034537 0)
(1.0316 -0.00343827 0)
(1.03167 -0.0034231 0)
(1.03174 -0.00340823 0)
(1.03181 -0.00339369 0)
(1.03188 -0.00337955 0)
(1.03195 -0.00336582 0)
(1.03202 -0.00335255 0)
(1.03209 -0.00333975 0)
(1.03216 -0.00332747 0)
(1.02569 -0.00519704 0)
(1.02577 -0.00517073 0)
(1.02586 -0.00514452 0)
(1.02594 -0.00511839 0)
(1.02602 -0.0050923 0)
(1.0261 -0.00506624 0)
(1.02618 -0.0050402 0)
(1.02626 -0.00501416 0)
(1.02634 -0.00498812 0)
(1.02642 -0.00496209 0)
(1.0265 -0.00493608 0)
(1.02657 -0.00491009 0)
(1.02665 -0.00488415 0)
(1.02673 -0.00485826 0)
(1.02681 -0.00483245 0)
(1.02689 -0.00480674 0)
(1.02697 -0.00478114 0)
(1.02705 -0.00475567 0)
(1.02712 -0.00473036 0)
(1.0272 -0.00470522 0)
(1.02728 -0.00468027 0)
(1.02736 -0.00465552 0)
(1.02744 -0.00463098 0)
(1.02752 -0.00460666 0)
(1.0276 -0.00458259 0)
(1.02767 -0.00455875 0)
(1.02775 -0.00453517 0)
(1.02783 -0.00451185 0)
(1.02791 -0.00448879 0)
(1.02799 -0.00446599 0)
(1.02807 -0.00444348 0)
(1.02815 -0.00442124 0)
(1.02823 -0.0043993 0)
(1.0283 -0.00437765 0)
(1.02838 -0.00435631 0)
(1.02846 -0.00433529 0)
(1.02854 -0.00431459 0)
(1.02862 -0.00429424 0)
(1.0287 -0.00427424 0)
(1.02878 -0.0042546 0)
(1.02886 -0.00423534 0)
(1.02894 -0.00421646 0)
(1.02901 -0.00419797 0)
(1.02909 -0.00417987 0)
(1.02917 -0.00416216 0)
(1.02925 -0.00414484 0)
(1.02933 -0.00412791 0)
(1.0294 -0.00411135 0)
(1.02948 -0.00409516 0)
(1.02956 -0.00407931 0)
(1.02963 -0.00406379 0)
(1.02971 -0.00404858 0)
(1.02978 -0.00403367 0)
(1.02986 -0.00401903 0)
(1.02993 -0.00400464 0)
(1.03001 -0.00399048 0)
(1.03008 -0.00397653 0)
(1.03015 -0.00396275 0)
(1.03023 -0.00394915 0)
(1.0303 -0.00393567 0)
(1.03037 -0.00392232 0)
(1.03044 -0.00390905 0)
(1.03052 -0.00389586 0)
(1.03059 -0.0038827 0)
(1.03066 -0.00386957 0)
(1.03073 -0.00385642 0)
(1.0308 -0.00384325 0)
(1.03087 -0.00383003 0)
(1.03093 -0.00381673 0)
(1.031 -0.00380333 0)
(1.03107 -0.00378982 0)
(1.03114 -0.00377617 0)
(1.03121 -0.00376237 0)
(1.03128 -0.00374841 0)
(1.03134 -0.00373427 0)
(1.03141 -0.00371995 0)
(1.03148 -0.00370545 0)
(1.03155 -0.00369075 0)
(1.03162 -0.00367586 0)
(1.03168 -0.0036608 0)
(1.03175 -0.00364556 0)
(1.03182 -0.00363016 0)
(1.03189 -0.00361462 0)
(1.03196 -0.00359896 0)
(1.03202 -0.00358321 0)
(1.03209 -0.00356741 0)
(1.03216 -0.00355158 0)
(1.03223 -0.00353577 0)
(1.0323 -0.00352001 0)
(1.03237 -0.00350435 0)
(1.03244 -0.00348884 0)
(1.03251 -0.00347353 0)
(1.03258 -0.00345844 0)
(1.03265 -0.00344365 0)
(1.03272 -0.00342917 0)
(1.0328 -0.00341506 0)
(1.03287 -0.00340135 0)
(1.03294 -0.00338807 0)
(1.03301 -0.00337522 0)
(1.03308 -0.00336288 0)
(1.02659 -0.00523736 0)
(1.02667 -0.0052108 0)
(1.02675 -0.00518436 0)
(1.02684 -0.00515801 0)
(1.02692 -0.00513173 0)
(1.027 -0.0051055 0)
(1.02708 -0.00507929 0)
(1.02716 -0.00505311 0)
(1.02724 -0.00502696 0)
(1.02732 -0.00500083 0)
(1.0274 -0.00497473 0)
(1.02748 -0.00494867 0)
(1.02756 -0.00492267 0)
(1.02764 -0.00489674 0)
(1.02772 -0.0048709 0)
(1.0278 -0.00484517 0)
(1.02788 -0.00481956 0)
(1.02796 -0.00479409 0)
(1.02804 -0.00476878 0)
(1.02811 -0.00474365 0)
(1.02819 -0.00471871 0)
(1.02827 -0.00469397 0)
(1.02835 -0.00466945 0)
(1.02843 -0.00464516 0)
(1.02851 -0.0046211 0)
(1.02859 -0.00459729 0)
(1.02867 -0.00457373 0)
(1.02875 -0.00455043 0)
(1.02883 -0.00452739 0)
(1.02891 -0.00450462 0)
(1.02899 -0.00448212 0)
(1.02907 -0.0044599 0)
(1.02915 -0.00443797 0)
(1.02923 -0.00441632 0)
(1.02931 -0.00439498 0)
(1.02939 -0.00437395 0)
(1.02947 -0.00435325 0)
(1.02955 -0.00433287 0)
(1.02963 -0.00431284 0)
(1.02971 -0.00429315 0)
(1.02979 -0.00427384 0)
(1.02987 -0.00425489 0)
(1.02995 -0.00423631 0)
(1.03002 -0.00421812 0)
(1.0301 -0.00420031 0)
(1.03018 -0.00418287 0)
(1.03026 -0.00416581 0)
(1.03034 -0.0041491 0)
(1.03042 -0.00413275 0)
(1.03049 -0.00411674 0)
(1.03057 -0.00410105 0)
(1.03065 -0.00408566 0)
(1.03072 -0.00407056 0)
(1.0308 -0.00405572 0)
(1.03088 -0.00404113 0)
(1.03095 -0.00402676 0)
(1.03103 -0.0040126 0)
(1.0311 -0.00399862 0)
(1.03117 -0.00398479 0)
(1.03125 -0.00397111 0)
(1.03132 -0.00395754 0)
(1.03139 -0.00394407 0)
(1.03146 -0.00393067 0)
(1.03154 -0.00391732 0)
(1.03161 -0.00390399 0)
(1.03168 -0.00389067 0)
(1.03175 -0.00387733 0)
(1.03182 -0.00386394 0)
(1.03189 -0.0038505 0)
(1.03196 -0.00383697 0)
(1.03203 -0.00382334 0)
(1.0321 -0.00380959 0)
(1.03217 -0.00379571 0)
(1.03224 -0.00378168 0)
(1.0323 -0.00376749 0)
(1.03237 -0.00375314 0)
(1.03244 -0.00373862 0)
(1.03251 -0.00372393 0)
(1.03258 -0.00370907 0)
(1.03265 -0.00369405 0)
(1.03272 -0.00367887 0)
(1.03278 -0.00366354 0)
(1.03285 -0.00364809 0)
(1.03292 -0.00363254 0)
(1.03299 -0.0036169 0)
(1.03306 -0.00360122 0)
(1.03313 -0.00358551 0)
(1.0332 -0.00356983 0)
(1.03327 -0.0035542 0)
(1.03334 -0.00353866 0)
(1.03341 -0.00352327 0)
(1.03348 -0.00350806 0)
(1.03356 -0.00349307 0)
(1.03363 -0.00347835 0)
(1.0337 -0.00346394 0)
(1.03377 -0.00344987 0)
(1.03384 -0.00343617 0)
(1.03391 -0.00342289 0)
(1.03399 -0.00341001 0)
(1.03406 -0.00339761 0)
(1.02754 -0.00527692 0)
(1.02762 -0.00525012 0)
(1.0277 -0.00522345 0)
(1.02779 -0.00519689 0)
(1.02787 -0.00517042 0)
(1.02795 -0.00514401 0)
(1.02803 -0.00511765 0)
(1.02812 -0.00509134 0)
(1.0282 -0.00506506 0)
(1.02828 -0.00503883 0)
(1.02836 -0.00501265 0)
(1.02844 -0.00498653 0)
(1.02852 -0.00496047 0)
(1.0286 -0.0049345 0)
(1.02868 -0.00490862 0)
(1.02876 -0.00488287 0)
(1.02884 -0.00485725 0)
(1.02892 -0.00483177 0)
(1.029 -0.00480647 0)
(1.02908 -0.00478134 0)
(1.02916 -0.00475641 0)
(1.02924 -0.00473169 0)
(1.02932 -0.00470719 0)
(1.0294 -0.00468292 0)
(1.02948 -0.00465888 0)
(1.02956 -0.0046351 0)
(1.02964 -0.00461156 0)
(1.02972 -0.00458828 0)
(1.0298 -0.00456526 0)
(1.02989 -0.00454251 0)
(1.02997 -0.00452003 0)
(1.03005 -0.00449782 0)
(1.03013 -0.0044759 0)
(1.03021 -0.00445426 0)
(1.03029 -0.00443292 0)
(1.03037 -0.00441189 0)
(1.03045 -0.00439117 0)
(1.03053 -0.00437077 0)
(1.03061 -0.0043507 0)
(1.03069 -0.00433098 0)
(1.03077 -0.00431161 0)
(1.03085 -0.0042926 0)
(1.03093 -0.00427395 0)
(1.03101 -0.00425567 0)
(1.03109 -0.00423776 0)
(1.03117 -0.00422021 0)
(1.03125 -0.00420302 0)
(1.03133 -0.00418618 0)
(1.03141 -0.00416968 0)
(1.03149 -0.00415351 0)
(1.03157 -0.00413765 0)
(1.03164 -0.00412208 0)
(1.03172 -0.0041068 0)
(1.0318 -0.00409177 0)
(1.03188 -0.00407699 0)
(1.03195 -0.00406242 0)
(1.03203 -0.00404805 0)
(1.0321 -0.00403386 0)
(1.03218 -0.00401983 0)
(1.03225 -0.00400594 0)
(1.03233 -0.00399217 0)
(1.0324 -0.00397849 0)
(1.03247 -0.00396489 0)
(1.03255 -0.00395135 0)
(1.03262 -0.00393784 0)
(1.03269 -0.00392434 0)
(1.03276 -0.00391082 0)
(1.03283 -0.00389728 0)
(1.0329 -0.00388369 0)
(1.03297 -0.00387003 0)
(1.03304 -0.00385628 0)
(1.03311 -0.00384243 0)
(1.03318 -0.00382846 0)
(1.03325 -0.00381436 0)
(1.03332 -0.00380012 0)
(1.03339 -0.00378574 0)
(1.03346 -0.0037712 0)
(1.03353 -0.00375652 0)
(1.0336 -0.00374168 0)
(1.03367 -0.00372669 0)
(1.03374 -0.00371156 0)
(1.03381 -0.00369631 0)
(1.03388 -0.00368094 0)
(1.03395 -0.00366549 0)
(1.03402 -0.00364996 0)
(1.03409 -0.00363439 0)
(1.03416 -0.0036188 0)
(1.03423 -0.00360324 0)
(1.0343 -0.00358773 0)
(1.03438 -0.00357232 0)
(1.03445 -0.00355704 0)
(1.03452 -0.00354193 0)
(1.03459 -0.00352704 0)
(1.03466 -0.0035124 0)
(1.03474 -0.00349805 0)
(1.03481 -0.00348403 0)
(1.03488 -0.00347035 0)
(1.03495 -0.00345707 0)
(1.03503 -0.00344417 0)
(1.0351 -0.00343172 0)
(1.02854 -0.00531579 0)
(1.02863 -0.00528874 0)
(1.02871 -0.00526186 0)
(1.02879 -0.00523509 0)
(1.02888 -0.00520843 0)
(1.02896 -0.00518185 0)
(1.02904 -0.00515534 0)
(1.02913 -0.00512889 0)
(1.02921 -0.0051025 0)
(1.02929 -0.00507617 0)
(1.02937 -0.00504991 0)
(1.02945 -0.00502371 0)
(1.02954 -0.0049976 0)
(1.02962 -0.00497159 0)
(1.0297 -0.00494568 0)
(1.02978 -0.0049199 0)
(1.02986 -0.00489427 0)
(1.02994 -0.00486879 0)
(1.03002 -0.00484348 0)
(1.03011 -0.00481837 0)
(1.03019 -0.00479345 0)
(1.03027 -0.00476874 0)
(1.03035 -0.00474426 0)
(1.03043 -0.00472 0)
(1.03051 -0.00469599 0)
(1.03059 -0.00467222 0)
(1.03068 -0.00464871 0)
(1.03076 -0.00462545 0)
(1.03084 -0.00460245 0)
(1.03092 -0.00457972 0)
(1.031 -0.00455726 0)
(1.03108 -0.00453507 0)
(1.03117 -0.00451315 0)
(1.03125 -0.00449153 0)
(1.03133 -0.00447019 0)
(1.03141 -0.00444915 0)
(1.03149 -0.00442842 0)
(1.03157 -0.004408 0)
(1.03166 -0.00438791 0)
(1.03174 -0.00436815 0)
(1.03182 -0.00434873 0)
(1.0319 -0.00432966 0)
(1.03198 -0.00431094 0)
(1.03206 -0.00429258 0)
(1.03214 -0.00427457 0)
(1.03223 -0.00425691 0)
(1.03231 -0.0042396 0)
(1.03239 -0.00422263 0)
(1.03247 -0.00420599 0)
(1.03255 -0.00418967 0)
(1.03263 -0.00417365 0)
(1.0327 -0.00415792 0)
(1.03278 -0.00414245 0)
(1.03286 -0.00412724 0)
(1.03294 -0.00411227 0)
(1.03302 -0.00409751 0)
(1.03309 -0.00408294 0)
(1.03317 -0.00406855 0)
(1.03325 -0.00405432 0)
(1.03332 -0.00404023 0)
(1.0334 -0.00402626 0)
(1.03347 -0.00401238 0)
(1.03354 -0.00399859 0)
(1.03362 -0.00398485 0)
(1.03369 -0.00397116 0)
(1.03377 -0.00395748 0)
(1.03384 -0.0039438 0)
(1.03391 -0.00393011 0)
(1.03398 -0.00391637 0)
(1.03405 -0.00390258 0)
(1.03413 -0.00388871 0)
(1.0342 -0.00387475 0)
(1.03427 -0.0038607 0)
(1.03434 -0.00384653 0)
(1.03441 -0.00383223 0)
(1.03448 -0.00381781 0)
(1.03455 -0.00380326 0)
(1.03462 -0.00378856 0)
(1.03469 -0.00377374 0)
(1.03476 -0.00375878 0)
(1.03483 -0.00374371 0)
(1.0349 -0.00372852 0)
(1.03497 -0.00371323 0)
(1.03504 -0.00369786 0)
(1.03512 -0.00368243 0)
(1.03519 -0.00366697 0)
(1.03526 -0.0036515 0)
(1.03533 -0.00363605 0)
(1.0354 -0.00362066 0)
(1.03547 -0.00360537 0)
(1.03555 -0.0035902 0)
(1.03562 -0.0035752 0)
(1.03569 -0.00356041 0)
(1.03577 -0.00354585 0)
(1.03584 -0.00353156 0)
(1.03591 -0.00351759 0)
(1.03599 -0.00350394 0)
(1.03606 -0.00349066 0)
(1.03614 -0.00347775 0)
(1.03621 -0.00346526 0)
(1.0296 -0.00535403 0)
(1.02969 -0.00532675 0)
(1.02978 -0.00529965 0)
(1.02986 -0.00527268 0)
(1.02995 -0.00524584 0)
(1.03003 -0.00521909 0)
(1.03012 -0.00519243 0)
(1.0302 -0.00516585 0)
(1.03028 -0.00513935 0)
(1.03037 -0.00511292 0)
(1.03045 -0.00508656 0)
(1.03053 -0.0050603 0)
(1.03062 -0.00503413 0)
(1.0307 -0.00500807 0)
(1.03078 -0.00498214 0)
(1.03086 -0.00495634 0)
(1.03095 -0.00493069 0)
(1.03103 -0.0049052 0)
(1.03111 -0.0048799 0)
(1.03119 -0.00485479 0)
(1.03128 -0.00482988 0)
(1.03136 -0.00480519 0)
(1.03144 -0.00478072 0)
(1.03152 -0.00475648 0)
(1.03161 -0.00473249 0)
(1.03169 -0.00470875 0)
(1.03177 -0.00468525 0)
(1.03185 -0.00466201 0)
(1.03194 -0.00463904 0)
(1.03202 -0.00461632 0)
(1.0321 -0.00459388 0)
(1.03219 -0.0045717 0)
(1.03227 -0.0045498 0)
(1.03235 -0.00452818 0)
(1.03243 -0.00450685 0)
(1.03252 -0.00448581 0)
(1.0326 -0.00446507 0)
(1.03268 -0.00444463 0)
(1.03277 -0.00442452 0)
(1.03285 -0.00440472 0)
(1.03293 -0.00438526 0)
(1.03302 -0.00436613 0)
(1.0331 -0.00434735 0)
(1.03318 -0.0043289 0)
(1.03326 -0.0043108 0)
(1.03334 -0.00429304 0)
(1.03343 -0.00427562 0)
(1.03351 -0.00425853 0)
(1.03359 -0.00424175 0)
(1.03367 -0.00422528 0)
(1.03375 -0.00420911 0)
(1.03383 -0.00419322 0)
(1.03391 -0.00417758 0)
(1.03399 -0.0041622 0)
(1.03407 -0.00414704 0)
(1.03415 -0.00413209 0)
(1.03423 -0.00411733 0)
(1.0343 -0.00410275 0)
(1.03438 -0.00408832 0)
(1.03446 -0.00407404 0)
(1.03453 -0.00405987 0)
(1.03461 -0.0040458 0)
(1.03469 -0.00403182 0)
(1.03476 -0.0040179 0)
(1.03484 -0.00400402 0)
(1.03491 -0.00399017 0)
(1.03498 -0.00397633 0)
(1.03506 -0.00396247 0)
(1.03513 -0.00394859 0)
(1.0352 -0.00393467 0)
(1.03528 -0.00392068 0)
(1.03535 -0.00390662 0)
(1.03542 -0.00389247 0)
(1.03549 -0.00387823 0)
(1.03556 -0.00386387 0)
(1.03564 -0.00384941 0)
(1.03571 -0.00383483 0)
(1.03578 -0.00382013 0)
(1.03585 -0.00380532 0)
(1.03592 -0.00379039 0)
(1.03599 -0.00377535 0)
(1.03607 -0.00376022 0)
(1.03614 -0.003745 0)
(1.03621 -0.00372971 0)
(1.03628 -0.00371438 0)
(1.03635 -0.00369902 0)
(1.03643 -0.00368366 0)
(1.0365 -0.00366833 0)
(1.03657 -0.00365306 0)
(1.03665 -0.00363788 0)
(1.03672 -0.00362282 0)
(1.03679 -0.00360793 0)
(1.03687 -0.00359322 0)
(1.03694 -0.00357875 0)
(1.03702 -0.00356454 0)
(1.03709 -0.00355061 0)
(1.03717 -0.003537 0)
(1.03724 -0.00352373 0)
(1.03732 -0.00351081 0)
(1.03739 -0.00349829 0)
(1.03073 -0.00539172 0)
(1.03082 -0.00536421 0)
(1.03091 -0.00533689 0)
(1.031 -0.00530973 0)
(1.03108 -0.0052827 0)
(1.03117 -0.00525579 0)
(1.03125 -0.00522899 0)
(1.03134 -0.00520227 0)
(1.03142 -0.00517565 0)
(1.03151 -0.00514913 0)
(1.03159 -0.00512269 0)
(1.03168 -0.00509636 0)
(1.03176 -0.00507013 0)
(1.03185 -0.00504403 0)
(1.03193 -0.00501806 0)
(1.03201 -0.00499224 0)
(1.0321 -0.00496657 0)
(1.03218 -0.00494108 0)
(1.03226 -0.00491578 0)
(1.03235 -0.00489067 0)
(1.03243 -0.00486577 0)
(1.03252 -0.00484109 0)
(1.0326 -0.00481664 0)
(1.03268 -0.00479242 0)
(1.03277 -0.00476845 0)
(1.03285 -0.00474472 0)
(1.03294 -0.00472125 0)
(1.03302 -0.00469803 0)
(1.0331 -0.00467508 0)
(1.03319 -0.00465238 0)
(1.03327 -0.00462995 0)
(1.03336 -0.00460779 0)
(1.03344 -0.0045859 0)
(1.03353 -0.00456429 0)
(1.03361 -0.00454296 0)
(1.03369 -0.00452192 0)
(1.03378 -0.00450117 0)
(1.03386 -0.00448073 0)
(1.03395 -0.00446059 0)
(1.03403 -0.00444076 0)
(1.03412 -0.00442126 0)
(1.0342 -0.00440208 0)
(1.03428 -0.00438323 0)
(1.03437 -0.00436471 0)
(1.03445 -0.00434653 0)
(1.03453 -0.00432867 0)
(1.03462 -0.00431114 0)
(1.0347 -0.00429393 0)
(1.03478 -0.00427702 0)
(1.03487 -0.00426042 0)
(1.03495 -0.0042441 0)
(1.03503 -0.00422804 0)
(1.03511 -0.00421225 0)
(1.03519 -0.00419669 0)
(1.03527 -0.00418136 0)
(1.03535 -0.00416623 0)
(1.03543 -0.00415128 0)
(1.03551 -0.00413651 0)
(1.03559 -0.0041219 0)
(1.03567 -0.00410742 0)
(1.03575 -0.00409306 0)
(1.03582 -0.0040788 0)
(1.0359 -0.00406463 0)
(1.03598 -0.00405053 0)
(1.03605 -0.00403648 0)
(1.03613 -0.00402245 0)
(1.0362 -0.00400845 0)
(1.03628 -0.00399444 0)
(1.03635 -0.00398042 0)
(1.03643 -0.00396636 0)
(1.0365 -0.00395225 0)
(1.03658 -0.00393808 0)
(1.03665 -0.00392384 0)
(1.03672 -0.00390952 0)
(1.0368 -0.00389511 0)
(1.03687 -0.0038806 0)
(1.03694 -0.00386599 0)
(1.03701 -0.00385128 0)
(1.03709 -0.00383647 0)
(1.03716 -0.00382156 0)
(1.03723 -0.00380656 0)
(1.03731 -0.00379148 0)
(1.03738 -0.00377632 0)
(1.03745 -0.00376111 0)
(1.03753 -0.00374587 0)
(1.0376 -0.00373061 0)
(1.03767 -0.00371535 0)
(1.03775 -0.00370013 0)
(1.03782 -0.00368497 0)
(1.0379 -0.0036699 0)
(1.03797 -0.00365495 0)
(1.03805 -0.00364016 0)
(1.03812 -0.00362556 0)
(1.0382 -0.00361117 0)
(1.03827 -0.00359702 0)
(1.03835 -0.00358315 0)
(1.03843 -0.00356958 0)
(1.0385 -0.00355633 0)
(1.03858 -0.00354341 0)
(1.03865 -0.00353086 0)
(1.03193 -0.00542892 0)
(1.03202 -0.00540119 0)
(1.03211 -0.00537366 0)
(1.0322 -0.00534631 0)
(1.03229 -0.0053191 0)
(1.03237 -0.00529203 0)
(1.03246 -0.00526507 0)
(1.03255 -0.00523823 0)
(1.03263 -0.0052115 0)
(1.03272 -0.00518487 0)
(1.03281 -0.00515835 0)
(1.03289 -0.00513195 0)
(1.03298 -0.00510567 0)
(1.03306 -0.00507952 0)
(1.03315 -0.00505352 0)
(1.03323 -0.00502767 0)
(1.03332 -0.00500199 0)
(1.03341 -0.00497649 0)
(1.03349 -0.00495118 0)
(1.03358 -0.00492608 0)
(1.03366 -0.00490119 0)
(1.03375 -0.00487652 0)
(1.03383 -0.00485208 0)
(1.03392 -0.00482788 0)
(1.034 -0.00480393 0)
(1.03409 -0.00478022 0)
(1.03417 -0.00475677 0)
(1.03426 -0.00473357 0)
(1.03435 -0.00471063 0)
(1.03443 -0.00468796 0)
(1.03452 -0.00466555 0)
(1.0346 -0.0046434 0)
(1.03469 -0.00462153 0)
(1.03477 -0.00459992 0)
(1.03486 -0.0045786 0)
(1.03495 -0.00455756 0)
(1.03503 -0.0045368 0)
(1.03512 -0.00451634 0)
(1.0352 -0.00449618 0)
(1.03529 -0.00447633 0)
(1.03538 -0.00445679 0)
(1.03546 -0.00443756 0)
(1.03555 -0.00441865 0)
(1.03563 -0.00440007 0)
(1.03572 -0.0043818 0)
(1.0358 -0.00436386 0)
(1.03589 -0.00434622 0)
(1.03597 -0.0043289 0)
(1.03605 -0.00431187 0)
(1.03614 -0.00429513 0)
(1.03622 -0.00427867 0)
(1.03631 -0.00426246 0)
(1.03639 -0.00424651 0)
(1.03647 -0.00423079 0)
(1.03655 -0.00421528 0)
(1.03663 -0.00419998 0)
(1.03672 -0.00418485 0)
(1.0368 -0.0041699 0)
(1.03688 -0.0041551 0)
(1.03696 -0.00414044 0)
(1.03704 -0.00412589 0)
(1.03712 -0.00411145 0)
(1.03719 -0.0040971 0)
(1.03727 -0.00408281 0)
(1.03735 -0.00406859 0)
(1.03743 -0.0040544 0)
(1.0375 -0.00404023 0)
(1.03758 -0.00402607 0)
(1.03766 -0.0040119 0)
(1.03773 -0.00399771 0)
(1.03781 -0.00398348 0)
(1.03788 -0.00396921 0)
(1.03796 -0.00395487 0)
(1.03803 -0.00394047 0)
(1.03811 -0.00392599 0)
(1.03818 -0.00391143 0)
(1.03826 -0.00389679 0)
(1.03833 -0.00388206 0)
(1.0384 -0.00386725 0)
(1.03848 -0.00385235 0)
(1.03855 -0.00383738 0)
(1.03863 -0.00382234 0)
(1.0387 -0.00380725 0)
(1.03878 -0.00379211 0)
(1.03885 -0.00377695 0)
(1.03893 -0.00376178 0)
(1.039 -0.00374662 0)
(1.03908 -0.00373151 0)
(1.03915 -0.00371645 0)
(1.03923 -0.00370149 0)
(1.0393 -0.00368665 0)
(1.03938 -0.00367196 0)
(1.03946 -0.00365745 0)
(1.03954 -0.00364315 0)
(1.03961 -0.00362908 0)
(1.03969 -0.00361527 0)
(1.03977 -0.00360173 0)
(1.03984 -0.00358851 0)
(1.03992 -0.00357559 0)
(1.04 -0.00356303 0)
(1.0332 -0.0054657 0)
(1.03329 -0.00543775 0)
(1.03339 -0.00541002 0)
(1.03348 -0.00538247 0)
(1.03357 -0.00535509 0)
(1.03365 -0.00532786 0)
(1.03374 -0.00530076 0)
(1.03383 -0.00527379 0)
(1.03392 -0.00524694 0)
(1.03401 -0.00522022 0)
(1.0341 -0.00519361 0)
(1.03418 -0.00516714 0)
(1.03427 -0.0051408 0)
(1.03436 -0.00511461 0)
(1.03445 -0.00508857 0)
(1.03453 -0.0050627 0)
(1.03462 -0.005037 0)
(1.03471 -0.00501149 0)
(1.03479 -0.00498618 0)
(1.03488 -0.00496108 0)
(1.03497 -0.00493619 0)
(1.03505 -0.00491154 0)
(1.03514 -0.00488711 0)
(1.03523 -0.00486293 0)
(1.03532 -0.00483899 0)
(1.0354 -0.0048153 0)
(1.03549 -0.00479187 0)
(1.03558 -0.00476869 0)
(1.03567 -0.00474577 0)
(1.03575 -0.00472312 0)
(1.03584 -0.00470072 0)
(1.03593 -0.00467859 0)
(1.03601 -0.00465673 0)
(1.0361 -0.00463514 0)
(1.03619 -0.00461382 0)
(1.03628 -0.00459278 0)
(1.03637 -0.00457202 0)
(1.03645 -0.00455155 0)
(1.03654 -0.00453137 0)
(1.03663 -0.00451149 0)
(1.03671 -0.00449191 0)
(1.0368 -0.00447264 0)
(1.03689 -0.00445368 0)
(1.03698 -0.00443503 0)
(1.03706 -0.00441669 0)
(1.03715 -0.00439865 0)
(1.03724 -0.00438092 0)
(1.03732 -0.00436349 0)
(1.03741 -0.00434635 0)
(1.03749 -0.00432948 0)
(1.03758 -0.00431288 0)
(1.03766 -0.00429653 0)
(1.03775 -0.00428043 0)
(1.03783 -0.00426454 0)
(1.03792 -0.00424887 0)
(1.038 -0.0042334 0)
(1.03808 -0.0042181 0)
(1.03817 -0.00420297 0)
(1.03825 -0.00418799 0)
(1.03833 -0.00417315 0)
(1.03841 -0.00415842 0)
(1.03849 -0.0041438 0)
(1.03857 -0.00412926 0)
(1.03865 -0.0041148 0)
(1.03873 -0.00410041 0)
(1.03881 -0.00408605 0)
(1.03889 -0.00407172 0)
(1.03897 -0.00405741 0)
(1.03904 -0.0040431 0)
(1.03912 -0.00402877 0)
(1.0392 -0.00401443 0)
(1.03928 -0.00400004 0)
(1.03935 -0.00398561 0)
(1.03943 -0.00397112 0)
(1.03951 -0.00395658 0)
(1.03958 -0.00394196 0)
(1.03966 -0.00392728 0)
(1.03973 -0.00391253 0)
(1.03981 -0.00389771 0)
(1.03988 -0.00388283 0)
(1.03996 -0.00386788 0)
(1.04004 -0.00385288 0)
(1.04011 -0.00383784 0)
(1.04019 -0.00382276 0)
(1.04026 -0.00380768 0)
(1.04034 -0.00379259 0)
(1.04042 -0.00377753 0)
(1.04049 -0.00376251 0)
(1.04057 -0.00374756 0)
(1.04065 -0.00373271 0)
(1.04073 -0.00371797 0)
(1.0408 -0.00370338 0)
(1.04088 -0.00368896 0)
(1.04096 -0.00367474 0)
(1.04104 -0.00366075 0)
(1.04112 -0.003647 0)
(1.0412 -0.00363351 0)
(1.04128 -0.00362032 0)
(1.04136 -0.00360741 0)
(1.04143 -0.00359484 0)
(1.03455 -0.00550213 0)
(1.03465 -0.00547397 0)
(1.03474 -0.00544603 0)
(1.03483 -0.0054183 0)
(1.03492 -0.00539075 0)
(1.03501 -0.00536335 0)
(1.03511 -0.00533611 0)
(1.0352 -0.00530901 0)
(1.03529 -0.00528205 0)
(1.03538 -0.00525522 0)
(1.03547 -0.00522854 0)
(1.03556 -0.00520199 0)
(1.03564 -0.0051756 0)
(1.03573 -0.00514936 0)
(1.03582 -0.00512328 0)
(1.03591 -0.00509738 0)
(1.036 -0.00507167 0)
(1.03609 -0.00504615 0)
(1.03618 -0.00502083 0)
(1.03627 -0.00499573 0)
(1.03636 -0.00497085 0)
(1.03645 -0.0049462 0)
(1.03653 -0.00492179 0)
(1.03662 -0.00489762 0)
(1.03671 -0.0048737 0)
(1.0368 -0.00485003 0)
(1.03689 -0.00482662 0)
(1.03698 -0.00480346 0)
(1.03707 -0.00478056 0)
(1.03716 -0.00475792 0)
(1.03725 -0.00473554 0)
(1.03734 -0.00471343 0)
(1.03743 -0.00469158 0)
(1.03752 -0.00466999 0)
(1.0376 -0.00464868 0)
(1.03769 -0.00462764 0)
(1.03778 -0.00460688 0)
(1.03787 -0.0045864 0)
(1.03796 -0.00456621 0)
(1.03805 -0.0045463 0)
(1.03814 -0.00452669 0)
(1.03823 -0.00450738 0)
(1.03832 -0.00448837 0)
(1.03841 -0.00446966 0)
(1.0385 -0.00445124 0)
(1.03859 -0.00443313 0)
(1.03867 -0.00441531 0)
(1.03876 -0.00439777 0)
(1.03885 -0.00438051 0)
(1.03894 -0.00436352 0)
(1.03902 -0.00434679 0)
(1.03911 -0.00433031 0)
(1.0392 -0.00431405 0)
(1.03928 -0.00429802 0)
(1.03937 -0.00428219 0)
(1.03945 -0.00426655 0)
(1.03954 -0.00425108 0)
(1.03962 -0.00423578 0)
(1.03971 -0.00422062 0)
(1.03979 -0.0042056 0)
(1.03987 -0.00419069 0)
(1.03996 -0.0041759 0)
(1.04004 -0.00416119 0)
(1.04012 -0.00414655 0)
(1.0402 -0.00413199 0)
(1.04028 -0.00411746 0)
(1.04036 -0.00410298 0)
(1.04044 -0.00408852 0)
(1.04052 -0.00407406 0)
(1.0406 -0.0040596 0)
(1.04068 -0.00404513 0)
(1.04076 -0.00403063 0)
(1.04084 -0.0040161 0)
(1.04092 -0.00400153 0)
(1.04099 -0.00398691 0)
(1.04107 -0.00397224 0)
(1.04115 -0.00395752 0)
(1.04123 -0.00394274 0)
(1.0413 -0.0039279 0)
(1.04138 -0.00391302 0)
(1.04146 -0.00389809 0)
(1.04154 -0.00388312 0)
(1.04161 -0.00386812 0)
(1.04169 -0.0038531 0)
(1.04177 -0.00383809 0)
(1.04185 -0.00382308 0)
(1.04193 -0.0038081 0)
(1.042 -0.00379318 0)
(1.04208 -0.00377833 0)
(1.04216 -0.00376357 0)
(1.04224 -0.00374893 0)
(1.04232 -0.00373444 0)
(1.0424 -0.00372012 0)
(1.04248 -0.00370598 0)
(1.04256 -0.00369206 0)
(1.04264 -0.00367837 0)
(1.04272 -0.00366493 0)
(1.0428 -0.00365177 0)
(1.04288 -0.00363888 0)
(1.04296 -0.0036263 0)
(1.03599 -0.00553827 0)
(1.03608 -0.0055099 0)
(1.03618 -0.00548177 0)
(1.03627 -0.00545385 0)
(1.03637 -0.00542612 0)
(1.03646 -0.00539857 0)
(1.03655 -0.00537119 0)
(1.03664 -0.00534396 0)
(1.03674 -0.00531688 0)
(1.03683 -0.00528996 0)
(1.03692 -0.00526319 0)
(1.03701 -0.00523657 0)
(1.0371 -0.00521012 0)
(1.0372 -0.00518383 0)
(1.03729 -0.00515772 0)
(1.03738 -0.00513179 0)
(1.03747 -0.00510605 0)
(1.03756 -0.00508052 0)
(1.03765 -0.0050552 0)
(1.03774 -0.0050301 0)
(1.03783 -0.00500522 0)
(1.03792 -0.00498058 0)
(1.03801 -0.00495618 0)
(1.03811 -0.00493203 0)
(1.0382 -0.00490812 0)
(1.03829 -0.00488447 0)
(1.03838 -0.00486107 0)
(1.03847 -0.00483793 0)
(1.03856 -0.00481505 0)
(1.03865 -0.00479243 0)
(1.03874 -0.00477006 0)
(1.03883 -0.00474796 0)
(1.03893 -0.00472613 0)
(1.03902 -0.00470455 0)
(1.03911 -0.00468325 0)
(1.0392 -0.00466221 0)
(1.03929 -0.00464144 0)
(1.03938 -0.00462096 0)
(1.03947 -0.00460075 0)
(1.03957 -0.00458082 0)
(1.03966 -0.00456118 0)
(1.03975 -0.00454183 0)
(1.03984 -0.00452277 0)
(1.03993 -0.004504 0)
(1.04002 -0.00448552 0)
(1.04011 -0.00446733 0)
(1.0402 -0.00444942 0)
(1.04029 -0.00443178 0)
(1.04038 -0.00441442 0)
(1.04047 -0.00439731 0)
(1.04056 -0.00438046 0)
(1.04065 -0.00436383 0)
(1.04074 -0.00434744 0)
(1.04083 -0.00433126 0)
(1.04091 -0.00431527 0)
(1.041 -0.00429947 0)
(1.04109 -0.00428384 0)
(1.04117 -0.00426837 0)
(1.04126 -0.00425304 0)
(1.04135 -0.00423784 0)
(1.04143 -0.00422276 0)
(1.04152 -0.00420779 0)
(1.0416 -0.0041929 0)
(1.04168 -0.0041781 0)
(1.04177 -0.00416336 0)
(1.04185 -0.00414868 0)
(1.04193 -0.00413403 0)
(1.04201 -0.00411942 0)
(1.0421 -0.00410482 0)
(1.04218 -0.00409022 0)
(1.04226 -0.00407562 0)
(1.04234 -0.00406101 0)
(1.04242 -0.00404638 0)
(1.0425 -0.00403171 0)
(1.04258 -0.00401702 0)
(1.04266 -0.00400228 0)
(1.04274 -0.00398751 0)
(1.04282 -0.00397269 0)
(1.0429 -0.00395784 0)
(1.04297 -0.00394295 0)
(1.04305 -0.00392802 0)
(1.04313 -0.00391308 0)
(1.04321 -0.00389811 0)
(1.04329 -0.00388314 0)
(1.04337 -0.00386818 0)
(1.04345 -0.00385325 0)
(1.04353 -0.00383835 0)
(1.04361 -0.00382351 0)
(1.04369 -0.00380875 0)
(1.04377 -0.00379408 0)
(1.04385 -0.00377954 0)
(1.04393 -0.00376513 0)
(1.04401 -0.00375089 0)
(1.04409 -0.00373684 0)
(1.04417 -0.00372299 0)
(1.04425 -0.00370936 0)
(1.04434 -0.00369597 0)
(1.04442 -0.00368284 0)
(1.0445 -0.00366996 0)
(1.04458 -0.00365737 0)
(1.03751 -0.00557419 0)
(1.03761 -0.00554561 0)
(1.0377 -0.00551728 0)
(1.0378 -0.00548918 0)
(1.0379 -0.00546129 0)
(1.03799 -0.00543358 0)
(1.03809 -0.00540605 0)
(1.03818 -0.00537869 0)
(1.03828 -0.00535151 0)
(1.03837 -0.00532448 0)
(1.03847 -0.00529763 0)
(1.03856 -0.00527094 0)
(1.03865 -0.00524442 0)
(1.03875 -0.00521808 0)
(1.03884 -0.00519193 0)
(1.03893 -0.00516597 0)
(1.03903 -0.00514022 0)
(1.03912 -0.00511467 0)
(1.03921 -0.00508934 0)
(1.03931 -0.00506424 0)
(1.0394 -0.00503937 0)
(1.03949 -0.00501473 0)
(1.03959 -0.00499034 0)
(1.03968 -0.0049662 0)
(1.03977 -0.00494231 0)
(1.03987 -0.00491867 0)
(1.03996 -0.00489529 0)
(1.04005 -0.00487217 0)
(1.04015 -0.0048493 0)
(1.04024 -0.00482669 0)
(1.04033 -0.00480434 0)
(1.04043 -0.00478226 0)
(1.04052 -0.00476043 0)
(1.04061 -0.00473886 0)
(1.04071 -0.00471756 0)
(1.0408 -0.00469653 0)
(1.04089 -0.00467576 0)
(1.04099 -0.00465526 0)
(1.04108 -0.00463504 0)
(1.04117 -0.00461509 0)
(1.04127 -0.00459543 0)
(1.04136 -0.00457604 0)
(1.04145 -0.00455693 0)
(1.04155 -0.00453811 0)
(1.04164 -0.00451956 0)
(1.04173 -0.0045013 0)
(1.04183 -0.0044833 0)
(1.04192 -0.00446557 0)
(1.04201 -0.0044481 0)
(1.0421 -0.00443088 0)
(1.04219 -0.0044139 0)
(1.04228 -0.00439715 0)
(1.04238 -0.00438061 0)
(1.04247 -0.00436428 0)
(1.04256 -0.00434814 0)
(1.04264 -0.00433218 0)
(1.04273 -0.00431639 0)
(1.04282 -0.00430075 0)
(1.04291 -0.00428525 0)
(1.043 -0.00426988 0)
(1.04308 -0.00425463 0)
(1.04317 -0.00423948 0)
(1.04326 -0.00422442 0)
(1.04334 -0.00420944 0)
(1.04343 -0.00419453 0)
(1.04351 -0.00417968 0)
(1.0436 -0.00416488 0)
(1.04368 -0.0041501 0)
(1.04376 -0.00413535 0)
(1.04385 -0.00412062 0)
(1.04393 -0.00410589 0)
(1.04401 -0.00409115 0)
(1.04409 -0.00407641 0)
(1.04417 -0.00406165 0)
(1.04426 -0.00404686 0)
(1.04434 -0.00403205 0)
(1.04442 -0.00401722 0)
(1.0445 -0.00400235 0)
(1.04458 -0.00398747 0)
(1.04466 -0.00397255 0)
(1.04474 -0.00395763 0)
(1.04482 -0.00394269 0)
(1.0449 -0.00392774 0)
(1.04498 -0.00391281 0)
(1.04506 -0.00389789 0)
(1.04514 -0.00388301 0)
(1.04522 -0.00386818 0)
(1.0453 -0.00385341 0)
(1.04538 -0.00383872 0)
(1.04546 -0.00382413 0)
(1.04555 -0.00380967 0)
(1.04563 -0.00379534 0)
(1.04571 -0.00378118 0)
(1.04579 -0.00376719 0)
(1.04587 -0.0037534 0)
(1.04595 -0.00373982 0)
(1.04604 -0.00372647 0)
(1.04612 -0.00371336 0)
(1.0462 -0.00370049 0)
(1.04628 -0.00368788 0)
(1.03912 -0.00560993 0)
(1.03922 -0.00558115 0)
(1.03932 -0.00555264 0)
(1.03942 -0.00552436 0)
(1.03952 -0.00549629 0)
(1.03962 -0.00546843 0)
(1.03972 -0.00544076 0)
(1.03981 -0.00541327 0)
(1.03991 -0.00538597 0)
(1.04001 -0.00535885 0)
(1.0401 -0.00533191 0)
(1.0402 -0.00530514 0)
(1.0403 -0.00527856 0)
(1.04039 -0.00525217 0)
(1.04049 -0.00522598 0)
(1.04058 -0.00519999 0)
(1.04068 -0.00517421 0)
(1.04078 -0.00514865 0)
(1.04087 -0.00512331 0)
(1.04097 -0.0050982 0)
(1.04106 -0.00507333 0)
(1.04116 -0.0050487 0)
(1.04125 -0.00502432 0)
(1.04135 -0.00500019 0)
(1.04145 -0.00497631 0)
(1.04154 -0.00495268 0)
(1.04164 -0.00492931 0)
(1.04173 -0.0049062 0)
(1.04183 -0.00488335 0)
(1.04192 -0.00486075 0)
(1.04202 -0.00483842 0)
(1.04212 -0.00481634 0)
(1.04221 -0.00479452 0)
(1.04231 -0.00477296 0)
(1.0424 -0.00475167 0)
(1.0425 -0.00473063 0)
(1.04259 -0.00470986 0)
(1.04269 -0.00468935 0)
(1.04279 -0.00466911 0)
(1.04288 -0.00464914 0)
(1.04298 -0.00462944 0)
(1.04307 -0.00461002 0)
(1.04317 -0.00459087 0)
(1.04326 -0.00457199 0)
(1.04336 -0.00455337 0)
(1.04345 -0.00453503 0)
(1.04355 -0.00451695 0)
(1.04364 -0.00449912 0)
(1.04374 -0.00448155 0)
(1.04383 -0.00446421 0)
(1.04392 -0.00444711 0)
(1.04402 -0.00443022 0)
(1.04411 -0.00441355 0)
(1.0442 -0.00439707 0)
(1.04429 -0.00438077 0)
(1.04438 -0.00436465 0)
(1.04447 -0.00434869 0)
(1.04456 -0.00433288 0)
(1.04465 -0.0043172 0)
(1.04474 -0.00430166 0)
(1.04483 -0.00428622 0)
(1.04492 -0.00427089 0)
(1.04501 -0.00425565 0)
(1.04509 -0.0042405 0)
(1.04518 -0.00422541 0)
(1.04527 -0.00421038 0)
(1.04535 -0.00419541 0)
(1.04544 -0.00418047 0)
(1.04552 -0.00416556 0)
(1.04561 -0.00415067 0)
(1.04569 -0.00413579 0)
(1.04577 -0.00412092 0)
(1.04586 -0.00410605 0)
(1.04594 -0.00409117 0)
(1.04602 -0.00407628 0)
(1.0461 -0.00406138 0)
(1.04618 -0.00404646 0)
(1.04626 -0.00403153 0)
(1.04634 -0.00401659 0)
(1.04642 -0.00400164 0)
(1.04651 -0.00398668 0)
(1.04659 -0.00397173 0)
(1.04667 -0.00395679 0)
(1.04675 -0.00394186 0)
(1.04683 -0.00392697 0)
(1.04691 -0.00391211 0)
(1.04699 -0.00389732 0)
(1.04707 -0.00388259 0)
(1.04715 -0.00386796 0)
(1.04723 -0.00385343 0)
(1.04731 -0.00383902 0)
(1.04739 -0.00382474 0)
(1.04747 -0.00381063 0)
(1.04755 -0.00379669 0)
(1.04763 -0.00378293 0)
(1.04771 -0.00376938 0)
(1.04779 -0.00375604 0)
(1.04787 -0.00374293 0)
(1.04796 -0.00373004 0)
(1.04804 -0.00371741 0)
(1.04083 -0.00564557 0)
(1.04093 -0.00561659 0)
(1.04104 -0.00558788 0)
(1.04114 -0.00555942 0)
(1.04124 -0.00553119 0)
(1.04134 -0.00550317 0)
(1.04144 -0.00547536 0)
(1.04154 -0.00544774 0)
(1.04164 -0.00542033 0)
(1.04174 -0.0053931 0)
(1.04184 -0.00536607 0)
(1.04194 -0.00533923 0)
(1.04204 -0.00531258 0)
(1.04214 -0.00528614 0)
(1.04224 -0.0052599 0)
(1.04233 -0.00523388 0)
(1.04243 -0.00520807 0)
(1.04253 -0.00518249 0)
(1.04263 -0.00515713 0)
(1.04273 -0.00513202 0)
(1.04282 -0.00510714 0)
(1.04292 -0.00508251 0)
(1.04302 -0.00505813 0)
(1.04312 -0.005034 0)
(1.04322 -0.00501013 0)
(1.04331 -0.00498651 0)
(1.04341 -0.00496315 0)
(1.04351 -0.00494005 0)
(1.04361 -0.0049172 0)
(1.04371 -0.00489461 0)
(1.0438 -0.00487228 0)
(1.0439 -0.00485021 0)
(1.044 -0.00482839 0)
(1.0441 -0.00480683 0)
(1.0442 -0.00478553 0)
(1.04429 -0.00476449 0)
(1.04439 -0.0047437 0)
(1.04449 -0.00472318 0)
(1.04459 -0.00470292 0)
(1.04468 -0.00468292 0)
(1.04478 -0.00466318 0)
(1.04488 -0.00464371 0)
(1.04498 -0.0046245 0)
(1.04507 -0.00460556 0)
(1.04517 -0.00458687 0)
(1.04527 -0.00456844 0)
(1.04536 -0.00455027 0)
(1.04546 -0.00453234 0)
(1.04555 -0.00451465 0)
(1.04565 -0.00449719 0)
(1.04574 -0.00447995 0)
(1.04584 -0.00446292 0)
(1.04593 -0.00444609 0)
(1.04602 -0.00442945 0)
(1.04612 -0.00441299 0)
(1.04621 -0.00439669 0)
(1.0463 -0.00438055 0)
(1.04639 -0.00436455 0)
(1.04648 -0.00434869 0)
(1.04657 -0.00433295 0)
(1.04666 -0.00431732 0)
(1.04675 -0.00430179 0)
(1.04684 -0.00428635 0)
(1.04692 -0.00427099 0)
(1.04701 -0.00425571 0)
(1.0471 -0.00424048 0)
(1.04718 -0.00422531 0)
(1.04727 -0.00421018 0)
(1.04735 -0.00419508 0)
(1.04743 -0.00418001 0)
(1.04752 -0.00416496 0)
(1.0476 -0.00414993 0)
(1.04768 -0.0041349 0)
(1.04776 -0.00411987 0)
(1.04784 -0.00410485 0)
(1.04792 -0.00408982 0)
(1.048 -0.00407479 0)
(1.04808 -0.00405976 0)
(1.04816 -0.00404473 0)
(1.04824 -0.0040297 0)
(1.04832 -0.00401467 0)
(1.04839 -0.00399967 0)
(1.04847 -0.00398468 0)
(1.04855 -0.00396972 0)
(1.04863 -0.00395481 0)
(1.0487 -0.00393994 0)
(1.04878 -0.00392514 0)
(1.04886 -0.00391042 0)
(1.04894 -0.00389579 0)
(1.04901 -0.00388127 0)
(1.04909 -0.00386687 0)
(1.04917 -0.00385261 0)
(1.04924 -0.00383851 0)
(1.04932 -0.00382457 0)
(1.0494 -0.0038108 0)
(1.04947 -0.00379724 0)
(1.04955 -0.00378387 0)
(1.04962 -0.00377072 0)
(1.0497 -0.00375777 0)
(1.04978 -0.00374505 0)
(1.04264 -0.00568112 0)
(1.04274 -0.00565194 0)
(1.04285 -0.00562305 0)
(1.04295 -0.00559442 0)
(1.04306 -0.00556601 0)
(1.04316 -0.00553783 0)
(1.04327 -0.00550987 0)
(1.04337 -0.00548213 0)
(1.04347 -0.00545459 0)
(1.04357 -0.00542726 0)
(1.04368 -0.00540013 0)
(1.04378 -0.00537321 0)
(1.04388 -0.00534649 0)
(1.04398 -0.00531998 0)
(1.04408 -0.00529369 0)
(1.04418 -0.00526762 0)
(1.04428 -0.00524178 0)
(1.04438 -0.00521617 0)
(1.04448 -0.00519079 0)
(1.04458 -0.00516566 0)
(1.04468 -0.00514077 0)
(1.04478 -0.00511613 0)
(1.04488 -0.00509174 0)
(1.04498 -0.0050676 0)
(1.04508 -0.00504372 0)
(1.04518 -0.0050201 0)
(1.04528 -0.00499673 0)
(1.04538 -0.00497362 0)
(1.04548 -0.00495077 0)
(1.04558 -0.00492817 0)
(1.04568 -0.00490583 0)
(1.04578 -0.00488374 0)
(1.04588 -0.00486191 0)
(1.04598 -0.00484033 0)
(1.04608 -0.00481901 0)
(1.04618 -0.00479794 0)
(1.04628 -0.00477712 0)
(1.04638 -0.00475656 0)
(1.04647 -0.00473625 0)
(1.04657 -0.0047162 0)
(1.04667 -0.00469641 0)
(1.04677 -0.00467687 0)
(1.04687 -0.00465758 0)
(1.04696 -0.00463855 0)
(1.04706 -0.00461977 0)
(1.04716 -0.00460124 0)
(1.04725 -0.00458294 0)
(1.04735 -0.00456488 0)
(1.04744 -0.00454705 0)
(1.04754 -0.00452944 0)
(1.04763 -0.00451203 0)
(1.04772 -0.00449483 0)
(1.04782 -0.00447782 0)
(1.04791 -0.00446099 0)
(1.048 -0.00444433 0)
(1.04809 -0.00442782 0)
(1.04818 -0.00441147 0)
(1.04827 -0.00439525 0)
(1.04836 -0.00437916 0)
(1.04845 -0.00436318 0)
(1.04853 -0.00434732 0)
(1.04862 -0.00433155 0)
(1.0487 -0.00431587 0)
(1.04879 -0.00430027 0)
(1.04887 -0.00428474 0)
(1.04895 -0.00426927 0)
(1.04904 -0.00425386 0)
(1.04912 -0.00423849 0)
(1.0492 -0.00422316 0)
(1.04928 -0.00420786 0)
(1.04935 -0.00419259 0)
(1.04943 -0.00417733 0)
(1.04951 -0.00416209 0)
(1.04958 -0.00414686 0)
(1.04966 -0.00413164 0)
(1.04973 -0.00411643 0)
(1.04981 -0.00410123 0)
(1.04988 -0.00408603 0)
(1.04995 -0.00407084 0)
(1.05003 -0.00405567 0)
(1.0501 -0.00404052 0)
(1.05017 -0.00402539 0)
(1.05024 -0.0040103 0)
(1.05031 -0.00399524 0)
(1.05038 -0.00398024 0)
(1.05045 -0.00396529 0)
(1.05052 -0.00395042 0)
(1.05058 -0.00393563 0)
(1.05065 -0.00392094 0)
(1.05072 -0.00390636 0)
(1.05079 -0.0038919 0)
(1.05085 -0.00387757 0)
(1.05092 -0.0038634 0)
(1.05099 -0.00384939 0)
(1.05105 -0.00383555 0)
(1.05112 -0.00382189 0)
(1.05118 -0.00380842 0)
(1.05125 -0.00379515 0)
(1.05131 -0.00378207 0)
(1.05138 -0.00376921 0)
(1.04454 -0.0057166 0)
(1.04465 -0.00568722 0)
(1.04476 -0.00565813 0)
(1.04487 -0.00562931 0)
(1.04498 -0.00560072 0)
(1.04508 -0.00557238 0)
(1.04519 -0.00554426 0)
(1.04529 -0.00551637 0)
(1.0454 -0.00548871 0)
(1.0455 -0.00546125 0)
(1.04561 -0.00543402 0)
(1.04571 -0.00540699 0)
(1.04581 -0.00538019 0)
(1.04592 -0.0053536 0)
(1.04602 -0.00532724 0)
(1.04612 -0.00530111 0)
(1.04623 -0.00527521 0)
(1.04633 -0.00524954 0)
(1.04643 -0.00522412 0)
(1.04653 -0.00519894 0)
(1.04663 -0.00517402 0)
(1.04673 -0.00514934 0)
(1.04683 -0.00512491 0)
(1.04693 -0.00510074 0)
(1.04704 -0.00507682 0)
(1.04714 -0.00505317 0)
(1.04724 -0.00502976 0)
(1.04734 -0.00500661 0)
(1.04744 -0.00498372 0)
(1.04753 -0.00496108 0)
(1.04763 -0.00493869 0)
(1.04773 -0.00491656 0)
(1.04783 -0.00489467 0)
(1.04793 -0.00487303 0)
(1.04803 -0.00485165 0)
(1.04813 -0.00483051 0)
(1.04822 -0.00480962 0)
(1.04832 -0.00478897 0)
(1.04842 -0.00476858 0)
(1.04851 -0.00474843 0)
(1.04861 -0.00472853 0)
(1.0487 -0.00470887 0)
(1.0488 -0.00468946 0)
(1.04889 -0.00467029 0)
(1.04899 -0.00465136 0)
(1.04908 -0.00463267 0)
(1.04917 -0.0046142 0)
(1.04926 -0.00459595 0)
(1.04935 -0.00457792 0)
(1.04944 -0.0045601 0)
(1.04953 -0.00454247 0)
(1.04962 -0.00452504 0)
(1.04971 -0.00450778 0)
(1.04979 -0.00449069 0)
(1.04988 -0.00447377 0)
(1.04996 -0.00445699 0)
(1.05005 -0.00444035 0)
(1.05013 -0.00442384 0)
(1.05021 -0.00440745 0)
(1.05029 -0.00439117 0)
(1.05037 -0.00437499 0)
(1.05045 -0.00435891 0)
(1.05052 -0.00434291 0)
(1.0506 -0.00432699 0)
(1.05067 -0.00431114 0)
(1.05074 -0.00429535 0)
(1.05082 -0.00427961 0)
(1.05089 -0.00426392 0)
(1.05096 -0.00424826 0)
(1.05102 -0.00423265 0)
(1.05109 -0.00421706 0)
(1.05116 -0.0042015 0)
(1.05122 -0.00418595 0)
(1.05129 -0.00417043 0)
(1.05135 -0.00415492 0)
(1.05141 -0.00413943 0)
(1.05147 -0.00412396 0)
(1.05153 -0.0041085 0)
(1.05159 -0.00409306 0)
(1.05164 -0.00407765 0)
(1.0517 -0.00406227 0)
(1.05175 -0.00404692 0)
(1.05181 -0.00403161 0)
(1.05186 -0.00401636 0)
(1.05192 -0.00400116 0)
(1.05197 -0.00398603 0)
(1.05202 -0.00397098 0)
(1.05207 -0.00395601 0)
(1.05212 -0.00394115 0)
(1.05217 -0.0039264 0)
(1.05221 -0.00391177 0)
(1.05226 -0.00389728 0)
(1.05231 -0.00388293 0)
(1.05235 -0.00386874 0)
(1.0524 -0.00385471 0)
(1.05244 -0.00384085 0)
(1.05249 -0.00382717 0)
(1.05253 -0.00381368 0)
(1.05257 -0.00380036 0)
(1.05261 -0.00378723 0)
(1.04655 -0.00575187 0)
(1.04666 -0.00572227 0)
(1.04677 -0.00569298 0)
(1.04688 -0.00566395 0)
(1.04699 -0.00563516 0)
(1.04709 -0.00560661 0)
(1.0472 -0.00557832 0)
(1.04731 -0.00555026 0)
(1.04741 -0.00552242 0)
(1.04752 -0.00549482 0)
(1.04762 -0.00546743 0)
(1.04773 -0.00544028 0)
(1.04783 -0.00541334 0)
(1.04793 -0.00538664 0)
(1.04804 -0.00536016 0)
(1.04814 -0.00533392 0)
(1.04824 -0.00530792 0)
(1.04834 -0.00528216 0)
(1.04844 -0.00525664 0)
(1.04854 -0.00523137 0)
(1.04864 -0.00520634 0)
(1.04874 -0.00518157 0)
(1.04884 -0.00515705 0)
(1.04894 -0.00513279 0)
(1.04903 -0.00510878 0)
(1.04913 -0.00508502 0)
(1.04923 -0.00506151 0)
(1.04932 -0.00503826 0)
(1.04942 -0.00501525 0)
(1.04951 -0.0049925 0)
(1.04961 -0.00496999 0)
(1.0497 -0.00494773 0)
(1.0498 -0.00492571 0)
(1.04989 -0.00490394 0)
(1.04998 -0.0048824 0)
(1.05007 -0.00486111 0)
(1.05016 -0.00484006 0)
(1.05025 -0.00481925 0)
(1.05034 -0.00479868 0)
(1.05043 -0.00477834 0)
(1.05051 -0.00475824 0)
(1.0506 -0.00473838 0)
(1.05069 -0.00471874 0)
(1.05077 -0.00469934 0)
(1.05085 -0.00468016 0)
(1.05094 -0.0046612 0)
(1.05102 -0.00464246 0)
(1.0511 -0.00462392 0)
(1.05118 -0.00460559 0)
(1.05125 -0.00458745 0)
(1.05133 -0.00456949 0)
(1.0514 -0.00455171 0)
(1.05148 -0.0045341 0)
(1.05155 -0.00451664 0)
(1.05162 -0.00449933 0)
(1.05169 -0.00448216 0)
(1.05175 -0.00446512 0)
(1.05182 -0.0044482 0)
(1.05188 -0.00443139 0)
(1.05195 -0.00441468 0)
(1.05201 -0.00439807 0)
(1.05207 -0.00438155 0)
(1.05212 -0.0043651 0)
(1.05218 -0.00434873 0)
(1.05223 -0.00433243 0)
(1.05229 -0.00431618 0)
(1.05234 -0.00429999 0)
(1.05239 -0.00428384 0)
(1.05243 -0.00426774 0)
(1.05248 -0.00425167 0)
(1.05252 -0.00423564 0)
(1.05256 -0.00421963 0)
(1.0526 -0.00420365 0)
(1.05264 -0.00418769 0)
(1.05268 -0.00417176 0)
(1.05271 -0.00415585 0)
(1.05275 -0.00413996 0)
(1.05278 -0.00412411 0)
(1.05281 -0.00410828 0)
(1.05284 -0.00409248 0)
(1.05286 -0.00407673 0)
(1.05289 -0.00406102 0)
(1.05292 -0.00404536 0)
(1.05294 -0.00402975 0)
(1.05296 -0.00401422 0)
(1.05298 -0.00399876 0)
(1.053 -0.00398338 0)
(1.05302 -0.0039681 0)
(1.05303 -0.00395292 0)
(1.05305 -0.00393786 0)
(1.05306 -0.00392292 0)
(1.05308 -0.00390811 0)
(1.05309 -0.00389344 0)
(1.0531 -0.00387892 0)
(1.05311 -0.00386456 0)
(1.05311 -0.00385036 0)
(1.05312 -0.00383632 0)
(1.05312 -0.00382245 0)
(1.05313 -0.00380874 0)
(1.05313 -0.00379521 0)
(1.04862 -0.00578653 0)
(1.04873 -0.00575667 0)
(1.04884 -0.00572711 0)
(1.04895 -0.00569781 0)
(1.04906 -0.00566876 0)
(1.04916 -0.00563996 0)
(1.04927 -0.00561141 0)
(1.04937 -0.00558311 0)
(1.04948 -0.00555504 0)
(1.04958 -0.00552721 0)
(1.04968 -0.0054996 0)
(1.04978 -0.00547223 0)
(1.04988 -0.00544508 0)
(1.04998 -0.00541817 0)
(1.05007 -0.00539149 0)
(1.05017 -0.00536505 0)
(1.05026 -0.00533885 0)
(1.05036 -0.00531289 0)
(1.05045 -0.00528717 0)
(1.05054 -0.0052617 0)
(1.05064 -0.00523648 0)
(1.05073 -0.00521151 0)
(1.05082 -0.00518678 0)
(1.0509 -0.0051623 0)
(1.05099 -0.00513807 0)
(1.05108 -0.00511409 0)
(1.05116 -0.00509036 0)
(1.05125 -0.00506687 0)
(1.05133 -0.00504363 0)
(1.05141 -0.00502063 0)
(1.05149 -0.00499786 0)
(1.05157 -0.00497534 0)
(1.05165 -0.00495305 0)
(1.05173 -0.004931 0)
(1.0518 -0.00490917 0)
(1.05188 -0.00488758 0)
(1.05195 -0.00486622 0)
(1.05202 -0.00484509 0)
(1.05209 -0.00482419 0)
(1.05216 -0.00480351 0)
(1.05223 -0.00478305 0)
(1.05229 -0.00476282 0)
(1.05235 -0.0047428 0)
(1.05242 -0.004723 0)
(1.05248 -0.00470341 0)
(1.05254 -0.00468402 0)
(1.05259 -0.00466483 0)
(1.05265 -0.00464584 0)
(1.0527 -0.00462703 0)
(1.05275 -0.00460839 0)
(1.0528 -0.00458993 0)
(1.05285 -0.00457163 0)
(1.05289 -0.00455349 0)
(1.05293 -0.00453548 0)
(1.05297 -0.00451761 0)
(1.05301 -0.00449987 0)
(1.05305 -0.00448225 0)
(1.05308 -0.00446474 0)
(1.05311 -0.00444733 0)
(1.05314 -0.00443001 0)
(1.05317 -0.00441279 0)
(1.05319 -0.00439564 0)
(1.05321 -0.00437857 0)
(1.05323 -0.00436157 0)
(1.05325 -0.00434463 0)
(1.05326 -0.00432775 0)
(1.05327 -0.00431092 0)
(1.05328 -0.00429413 0)
(1.05329 -0.00427739 0)
(1.05329 -0.00426069 0)
(1.05329 -0.00424403 0)
(1.05329 -0.00422739 0)
(1.05329 -0.00421079 0)
(1.05328 -0.00419422 0)
(1.05328 -0.00417768 0)
(1.05327 -0.00416118 0)
(1.05325 -0.0041447 0)
(1.05324 -0.00412827 0)
(1.05322 -0.00411187 0)
(1.0532 -0.00409551 0)
(1.05318 -0.00407921 0)
(1.05316 -0.00406296 0)
(1.05313 -0.00404676 0)
(1.05311 -0.00403064 0)
(1.05308 -0.00401459 0)
(1.05305 -0.00399863 0)
(1.05301 -0.00398275 0)
(1.05298 -0.00396698 0)
(1.05294 -0.00395131 0)
(1.0529 -0.00393576 0)
(1.05286 -0.00392033 0)
(1.05282 -0.00390503 0)
(1.05277 -0.00388987 0)
(1.05273 -0.00387485 0)
(1.05268 -0.00385998 0)
(1.05263 -0.00384527 0)
(1.05257 -0.0038307 0)
(1.05252 -0.00381629 0)
(1.05246 -0.00380204 0)
(1.0524 -0.00378793 0)
(1.05072 -0.0058195 0)
(1.05082 -0.00578926 0)
(1.05092 -0.00575932 0)
(1.05102 -0.00572963 0)
(1.05112 -0.00570018 0)
(1.05122 -0.005671 0)
(1.05131 -0.00564207 0)
(1.05141 -0.00561339 0)
(1.0515 -0.00558494 0)
(1.05159 -0.00555673 0)
(1.05168 -0.00552875 0)
(1.05176 -0.005501 0)
(1.05185 -0.00547348 0)
(1.05193 -0.0054462 0)
(1.05201 -0.00541915 0)
(1.05209 -0.00539233 0)
(1.05217 -0.00536576 0)
(1.05225 -0.00533942 0)
(1.05232 -0.00531332 0)
(1.05239 -0.00528746 0)
(1.05246 -0.00526185 0)
(1.05253 -0.00523647 0)
(1.0526 -0.00521134 0)
(1.05266 -0.00518645 0)
(1.05273 -0.00516181 0)
(1.05279 -0.0051374 0)
(1.05285 -0.00511323 0)
(1.0529 -0.00508929 0)
(1.05296 -0.00506559 0)
(1.05301 -0.00504212 0)
(1.05306 -0.00501888 0)
(1.05311 -0.00499587 0)
(1.05316 -0.00497309 0)
(1.0532 -0.00495053 0)
(1.05324 -0.00492819 0)
(1.05328 -0.00490607 0)
(1.05332 -0.00488417 0)
(1.05335 -0.00486248 0)
(1.05339 -0.00484101 0)
(1.05342 -0.00481975 0)
(1.05344 -0.0047987 0)
(1.05347 -0.00477785 0)
(1.05349 -0.00475721 0)
(1.05351 -0.00473677 0)
(1.05353 -0.00471653 0)
(1.05354 -0.00469647 0)
(1.05355 -0.00467659 0)
(1.05356 -0.0046569 0)
(1.05356 -0.00463737 0)
(1.05357 -0.00461801 0)
(1.05357 -0.0045988 0)
(1.05356 -0.00457974 0)
(1.05356 -0.00456081 0)
(1.05355 -0.00454202 0)
(1.05353 -0.00452336 0)
(1.05352 -0.0045048 0)
(1.0535 -0.00448636 0)
(1.05347 -0.00446802 0)
(1.05345 -0.00444978 0)
(1.05342 -0.00443162 0)
(1.05339 -0.00441354 0)
(1.05335 -0.00439555 0)
(1.05331 -0.00437762 0)
(1.05327 -0.00435976 0)
(1.05322 -0.00434196 0)
(1.05317 -0.00432422 0)
(1.05312 -0.00430653 0)
(1.05307 -0.00428889 0)
(1.05301 -0.0042713 0)
(1.05294 -0.00425374 0)
(1.05288 -0.00423624 0)
(1.05281 -0.00421877 0)
(1.05274 -0.00420134 0)
(1.05266 -0.00418395 0)
(1.05259 -0.0041666 0)
(1.0525 -0.00414929 0)
(1.05242 -0.00413203 0)
(1.05233 -0.00411481 0)
(1.05224 -0.00409765 0)
(1.05215 -0.00408054 0)
(1.05205 -0.00406349 0)
(1.05196 -0.00404651 0)
(1.05185 -0.0040296 0)
(1.05175 -0.00401277 0)
(1.05164 -0.00399602 0)
(1.05154 -0.00397937 0)
(1.05142 -0.00396281 0)
(1.05131 -0.00394636 0)
(1.05119 -0.00393002 0)
(1.05107 -0.0039138 0)
(1.05095 -0.00389771 0)
(1.05083 -0.00388175 0)
(1.0507 -0.00386592 0)
(1.05057 -0.00385023 0)
(1.05044 -0.00383469 0)
(1.0503 -0.00381929 0)
(1.05017 -0.00380403 0)
(1.05003 -0.00378892 0)
(1.04989 -0.00377395 0)
(1.04974 -0.00375912 0)
(1.05271 -0.00584837 0)
(1.05279 -0.00581754 0)
(1.05287 -0.005787 0)
(1.05295 -0.00575668 0)
(1.05302 -0.00572661 0)
(1.0531 -0.0056968 0)
(1.05317 -0.00566724 0)
(1.05323 -0.00563792 0)
(1.0533 -0.00560884 0)
(1.05336 -0.00557998 0)
(1.05341 -0.00555136 0)
(1.05347 -0.00552297 0)
(1.05352 -0.00549481 0)
(1.05357 -0.00546687 0)
(1.05362 -0.00543917 0)
(1.05366 -0.00541169 0)
(1.0537 -0.00538445 0)
(1.05374 -0.00535744 0)
(1.05377 -0.00533066 0)
(1.0538 -0.00530412 0)
(1.05383 -0.00527781 0)
(1.05385 -0.00525174 0)
(1.05387 -0.00522589 0)
(1.05389 -0.00520029 0)
(1.05391 -0.00517491 0)
(1.05392 -0.00514976 0)
(1.05392 -0.00512484 0)
(1.05393 -0.00510015 0)
(1.05393 -0.00507567 0)
(1.05393 -0.00505143 0)
(1.05392 -0.0050274 0)
(1.05391 -0.00500358 0)
(1.0539 -0.00497998 0)
(1.05389 -0.0049566 0)
(1.05387 -0.00493342 0)
(1.05384 -0.00491046 0)
(1.05382 -0.0048877 0)
(1.05379 -0.00486514 0)
(1.05375 -0.00484279 0)
(1.05371 -0.00482063 0)
(1.05367 -0.00479868 0)
(1.05363 -0.00477691 0)
(1.05358 -0.00475534 0)
(1.05352 -0.00473395 0)
(1.05347 -0.00471274 0)
(1.05341 -0.00469171 0)
(1.05334 -0.00467085 0)
(1.05327 -0.00465015 0)
(1.0532 -0.00462961 0)
(1.05312 -0.00460922 0)
(1.05304 -0.00458897 0)
(1.05296 -0.00456886 0)
(1.05287 -0.00454888 0)
(1.05277 -0.00452902 0)
(1.05267 -0.00450927 0)
(1.05257 -0.00448964 0)
(1.05246 -0.0044701 0)
(1.05235 -0.00445067 0)
(1.05224 -0.00443132 0)
(1.05212 -0.00441207 0)
(1.052 -0.00439289 0)
(1.05187 -0.00437379 0)
(1.05174 -0.00435476 0)
(1.0516 -0.0043358 0)
(1.05146 -0.00431691 0)
(1.05132 -0.00429808 0)
(1.05117 -0.0042793 0)
(1.05101 -0.00426058 0)
(1.05086 -0.00424192 0)
(1.0507 -0.0042233 0)
(1.05053 -0.00420474 0)
(1.05036 -0.00418623 0)
(1.05019 -0.00416777 0)
(1.05002 -0.00414937 0)
(1.04984 -0.00413102 0)
(1.04965 -0.00411272 0)
(1.04947 -0.00409449 0)
(1.04927 -0.00407632 0)
(1.04908 -0.00405821 0)
(1.04888 -0.00404018 0)
(1.04868 -0.00402222 0)
(1.04848 -0.00400434 0)
(1.04827 -0.00398655 0)
(1.04806 -0.00396885 0)
(1.04784 -0.00395124 0)
(1.04763 -0.00393374 0)
(1.04741 -0.00391636 0)
(1.04718 -0.00389908 0)
(1.04696 -0.00388193 0)
(1.04673 -0.0038649 0)
(1.0465 -0.003848 0)
(1.04626 -0.00383123 0)
(1.04602 -0.0038146 0)
(1.04578 -0.00379811 0)
(1.04554 -0.00378176 0)
(1.04529 -0.00376555 0)
(1.04504 -0.00374947 0)
(1.04479 -0.00373354 0)
(1.04454 -0.00371773 0)
(1.04428 -0.00370207 0)
(1.05432 -0.00586849 0)
(1.05436 -0.00583669 0)
(1.05439 -0.00580515 0)
(1.05442 -0.00577382 0)
(1.05445 -0.00574274 0)
(1.05447 -0.00571191 0)
(1.05449 -0.00568133 0)
(1.0545 -0.00565098 0)
(1.0545 -0.00562086 0)
(1.05451 -0.00559097 0)
(1.0545 -0.0055613 0)
(1.0545 -0.00553185 0)
(1.05448 -0.00550263 0)
(1.05447 -0.00547364 0)
(1.05445 -0.00544487 0)
(1.05442 -0.00541632 0)
(1.05439 -0.005388 0)
(1.05435 -0.0053599 0)
(1.05431 -0.00533204 0)
(1.05427 -0.0053044 0)
(1.05422 -0.00527698 0)
(1.05416 -0.0052498 0)
(1.0541 -0.00522284 0)
(1.05404 -0.0051961 0)
(1.05397 -0.00516959 0)
(1.05389 -0.00514329 0)
(1.05381 -0.00511722 0)
(1.05373 -0.00509137 0)
(1.05364 -0.00506573 0)
(1.05354 -0.0050403 0)
(1.05344 -0.00501509 0)
(1.05334 -0.00499009 0)
(1.05323 -0.00496529 0)
(1.05312 -0.0049407 0)
(1.053 -0.00491631 0)
(1.05287 -0.00489213 0)
(1.05274 -0.00486814 0)
(1.05261 -0.00484435 0)
(1.05247 -0.00482075 0)
(1.05232 -0.00479735 0)
(1.05217 -0.00477413 0)
(1.05202 -0.0047511 0)
(1.05186 -0.00472825 0)
(1.05169 -0.00470558 0)
(1.05152 -0.00468309 0)
(1.05135 -0.00466076 0)
(1.05117 -0.00463859 0)
(1.05098 -0.00461658 0)
(1.05079 -0.00459471 0)
(1.05059 -0.004573 0)
(1.05039 -0.00455142 0)
(1.05019 -0.00452997 0)
(1.04997 -0.00450865 0)
(1.04976 -0.00448745 0)
(1.04954 -0.00446637 0)
(1.04931 -0.00444539 0)
(1.04908 -0.00442452 0)
(1.04884 -0.00440375 0)
(1.0486 -0.00438307 0)
(1.04835 -0.00436249 0)
(1.0481 -0.00434199 0)
(1.04784 -0.00432157 0)
(1.04758 -0.00430124 0)
(1.04731 -0.00428098 0)
(1.04704 -0.0042608 0)
(1.04676 -0.00424069 0)
(1.04648 -0.00422065 0)
(1.04619 -0.00420068 0)
(1.0459 -0.00418079 0)
(1.04561 -0.00416095 0)
(1.04531 -0.00414119 0)
(1.04501 -0.0041215 0)
(1.0447 -0.00410188 0)
(1.04439 -0.00408232 0)
(1.04407 -0.00406285 0)
(1.04375 -0.00404345 0)
(1.04343 -0.00402412 0)
(1.0431 -0.00400489 0)
(1.04277 -0.00398573 0)
(1.04243 -0.00396667 0)
(1.04209 -0.0039477 0)
(1.04175 -0.00392884 0)
(1.0414 -0.00391007 0)
(1.04105 -0.00389142 0)
(1.0407 -0.00387288 0)
(1.04035 -0.00385446 0)
(1.03999 -0.00383616 0)
(1.03962 -0.00381799 0)
(1.03926 -0.00379995 0)
(1.03889 -0.00378205 0)
(1.03852 -0.00376428 0)
(1.03814 -0.00374665 0)
(1.03777 -0.00372916 0)
(1.03739 -0.00371181 0)
(1.037 -0.0036946 0)
(1.03662 -0.00367753 0)
(1.03623 -0.0036606 0)
(1.03583 -0.0036438 0)
(1.03544 -0.00362713 0)
(1.03504 -0.00361061 0)
(1.05507 -0.00587182 0)
(1.05502 -0.0058385 0)
(1.05497 -0.00580541 0)
(1.05491 -0.00577253 0)
(1.05484 -0.00573989 0)
(1.05477 -0.00570751 0)
(1.05469 -0.00567536 0)
(1.0546 -0.00564344 0)
(1.05451 -0.00561175 0)
(1.0544 -0.00558028 0)
(1.0543 -0.00554903 0)
(1.05418 -0.00551801 0)
(1.05406 -0.00548721 0)
(1.05393 -0.00545664 0)
(1.05379 -0.00542629 0)
(1.05365 -0.00539616 0)
(1.0535 -0.00536626 0)
(1.05335 -0.00533659 0)
(1.05318 -0.00530714 0)
(1.05301 -0.00527791 0)
(1.05284 -0.00524892 0)
(1.05265 -0.00522015 0)
(1.05246 -0.0051916 0)
(1.05227 -0.00516328 0)
(1.05206 -0.00513518 0)
(1.05186 -0.0051073 0)
(1.05164 -0.00507964 0)
(1.05142 -0.0050522 0)
(1.05119 -0.00502497 0)
(1.05095 -0.00499796 0)
(1.05071 -0.00497116 0)
(1.05046 -0.00494457 0)
(1.05021 -0.00491819 0)
(1.04994 -0.00489202 0)
(1.04968 -0.00486605 0)
(1.0494 -0.00484028 0)
(1.04912 -0.00481472 0)
(1.04884 -0.00478935 0)
(1.04854 -0.00476418 0)
(1.04824 -0.0047392 0)
(1.04794 -0.00471441 0)
(1.04763 -0.00468981 0)
(1.04731 -0.0046654 0)
(1.04699 -0.00464116 0)
(1.04666 -0.00461709 0)
(1.04632 -0.0045932 0)
(1.04598 -0.00456947 0)
(1.04563 -0.0045459 0)
(1.04528 -0.00452248 0)
(1.04492 -0.00449921 0)
(1.04455 -0.00447609 0)
(1.04418 -0.0044531 0)
(1.04381 -0.00443025 0)
(1.04342 -0.00440752 0)
(1.04304 -0.00438492 0)
(1.04264 -0.00436244 0)
(1.04224 -0.00434007 0)
(1.04184 -0.00431782 0)
(1.04143 -0.00429567 0)
(1.04101 -0.00427363 0)
(1.04059 -0.0042517 0)
(1.04017 -0.00422986 0)
(1.03974 -0.00420812 0)
(1.0393 -0.00418648 0)
(1.03886 -0.00416493 0)
(1.03841 -0.00414348 0)
(1.03796 -0.00412211 0)
(1.03751 -0.00410084 0)
(1.03705 -0.00407967 0)
(1.03658 -0.00405858 0)
(1.03611 -0.00403758 0)
(1.03564 -0.00401668 0)
(1.03517 -0.00399588 0)
(1.03468 -0.00397517 0)
(1.0342 -0.00395456 0)
(1.03371 -0.00393406 0)
(1.03322 -0.00391365 0)
(1.03272 -0.00389336 0)
(1.03222 -0.00387318 0)
(1.03172 -0.00385311 0)
(1.03121 -0.00383316 0)
(1.0307 -0.00381333 0)
(1.03019 -0.00379363 0)
(1.02967 -0.00377406 0)
(1.02916 -0.00375462 0)
(1.02863 -0.00373532 0)
(1.02811 -0.00371616 0)
(1.02758 -0.00369714 0)
(1.02705 -0.00367826 0)
(1.02652 -0.00365953 0)
(1.02598 -0.00364094 0)
(1.02544 -0.00362251 0)
(1.0249 -0.00360422 0)
(1.02436 -0.00358608 0)
(1.02381 -0.00356808 0)
(1.02326 -0.00355023 0)
(1.02271 -0.00353251 0)
(1.02216 -0.00351494 0)
(1.0216 -0.00349749 0)
(1.02104 -0.00348019 0)
(1.05414 -0.00584624 0)
(1.05395 -0.00581071 0)
(1.05375 -0.0057754 0)
(1.05354 -0.00574031 0)
(1.05332 -0.00570548 0)
(1.05309 -0.0056709 0)
(1.05285 -0.00563657 0)
(1.05261 -0.00560247 0)
(1.05235 -0.0055686 0)
(1.05208 -0.00553497 0)
(1.05181 -0.00550158 0)
(1.05152 -0.00546842 0)
(1.05123 -0.00543549 0)
(1.05093 -0.0054028 0)
(1.05062 -0.00537035 0)
(1.0503 -0.00533813 0)
(1.04997 -0.00530615 0)
(1.04964 -0.00527441 0)
(1.04929 -0.00524291 0)
(1.04894 -0.00521164 0)
(1.04858 -0.00518062 0)
(1.04821 -0.00514983 0)
(1.04783 -0.00511929 0)
(1.04744 -0.00508897 0)
(1.04705 -0.0050589 0)
(1.04665 -0.00502906 0)
(1.04624 -0.00499945 0)
(1.04582 -0.00497007 0)
(1.04539 -0.00494092 0)
(1.04496 -0.004912 0)
(1.04452 -0.00488331 0)
(1.04408 -0.00485484 0)
(1.04362 -0.00482659 0)
(1.04316 -0.00479857 0)
(1.04269 -0.00477077 0)
(1.04221 -0.00474318 0)
(1.04173 -0.00471581 0)
(1.04124 -0.00468865 0)
(1.04075 -0.0046617 0)
(1.04024 -0.00463495 0)
(1.03973 -0.00460842 0)
(1.03922 -0.00458208 0)
(1.03869 -0.00455594 0)
(1.03817 -0.00452999 0)
(1.03763 -0.00450423 0)
(1.03709 -0.00447866 0)
(1.03654 -0.00445326 0)
(1.03599 -0.00442804 0)
(1.03543 -0.00440299 0)
(1.03486 -0.00437811 0)
(1.03429 -0.00435338 0)
(1.03371 -0.00432881 0)
(1.03313 -0.0043044 0)
(1.03254 -0.00428013 0)
(1.03195 -0.004256 0)
(1.03135 -0.00423202 0)
(1.03075 -0.00420818 0)
(1.03014 -0.00418447 0)
(1.02952 -0.00416089 0)
(1.0289 -0.00413745 0)
(1.02828 -0.00411413 0)
(1.02765 -0.00409094 0)
(1.02702 -0.00406787 0)
(1.02638 -0.00404493 0)
(1.02574 -0.00402211 0)
(1.02509 -0.00399941 0)
(1.02444 -0.00397683 0)
(1.02379 -0.00395438 0)
(1.02313 -0.00393204 0)
(1.02247 -0.00390983 0)
(1.0218 -0.00388774 0)
(1.02113 -0.00386578 0)
(1.02046 -0.00384394 0)
(1.01979 -0.00382223 0)
(1.01911 -0.00380065 0)
(1.01843 -0.0037792 0)
(1.01774 -0.00375788 0)
(1.01705 -0.0037367 0)
(1.01636 -0.00371566 0)
(1.01567 -0.00369476 0)
(1.01498 -0.00367401 0)
(1.01428 -0.0036534 0)
(1.01358 -0.00363294 0)
(1.01288 -0.00361263 0)
(1.01217 -0.00359248 0)
(1.01147 -0.00357248 0)
(1.01076 -0.00355264 0)
(1.01005 -0.00353296 0)
(1.00934 -0.00351344 0)
(1.00862 -0.00349407 0)
(1.00791 -0.00347487 0)
(1.00719 -0.00345582 0)
(1.00647 -0.00343693 0)
(1.00575 -0.0034182 0)
(1.00503 -0.00339961 0)
(1.0043 -0.00338118 0)
(1.00358 -0.00336289 0)
(1.00285 -0.00334475 0)
(1.00212 -0.00332674 0)
(1.00139 -0.00330889 0)
(1.05033 -0.00577573 0)
(1.04992 -0.00573732 0)
(1.0495 -0.00569912 0)
(1.04906 -0.0056612 0)
(1.04862 -0.00562358 0)
(1.04816 -0.00558624 0)
(1.04769 -0.00554916 0)
(1.04721 -0.00551235 0)
(1.04672 -0.0054758 0)
(1.04622 -0.00543952 0)
(1.04571 -0.00540351 0)
(1.04518 -0.00536777 0)
(1.04465 -0.00533229 0)
(1.04411 -0.00529708 0)
(1.04355 -0.00526214 0)
(1.04299 -0.00522747 0)
(1.04242 -0.00519307 0)
(1.04183 -0.00515895 0)
(1.04124 -0.00512509 0)
(1.04064 -0.0050915 0)
(1.04003 -0.00505819 0)
(1.03941 -0.00502514 0)
(1.03879 -0.00499236 0)
(1.03815 -0.00495985 0)
(1.03751 -0.00492761 0)
(1.03685 -0.00489564 0)
(1.03619 -0.00486392 0)
(1.03552 -0.00483247 0)
(1.03485 -0.00480128 0)
(1.03417 -0.00477035 0)
(1.03347 -0.00473967 0)
(1.03278 -0.00470925 0)
(1.03207 -0.00467909 0)
(1.03136 -0.00464917 0)
(1.03064 -0.0046195 0)
(1.02992 -0.00459008 0)
(1.02918 -0.00456091 0)
(1.02844 -0.00453197 0)
(1.0277 -0.00450327 0)
(1.02695 -0.00447481 0)
(1.02619 -0.00444658 0)
(1.02543 -0.00441858 0)
(1.02466 -0.0043908 0)
(1.02389 -0.00436324 0)
(1.02311 -0.00433589 0)
(1.02232 -0.00430876 0)
(1.02153 -0.00428183 0)
(1.02074 -0.00425511 0)
(1.01994 -0.00422858 0)
(1.01913 -0.00420224 0)
(1.01832 -0.0041761 0)
(1.01751 -0.00415014 0)
(1.01669 -0.00412436 0)
(1.01586 -0.00409876 0)
(1.01503 -0.00407334 0)
(1.0142 -0.00404809 0)
(1.01337 -0.004023 0)
(1.01253 -0.00399809 0)
(1.01168 -0.00397334 0)
(1.01084 -0.00394875 0)
(1.00998 -0.00392432 0)
(1.00913 -0.00390006 0)
(1.00827 -0.00387595 0)
(1.00741 -0.003852 0)
(1.00655 -0.00382821 0)
(1.00568 -0.00380457 0)
(1.00482 -0.00378109 0)
(1.00394 -0.00375777 0)
(1.00307 -0.0037346 0)
(1.0022 -0.00371158 0)
(1.00132 -0.00368872 0)
(1.00044 -0.00366602 0)
(0.999557 -0.00364348 0)
(0.998674 -0.0036211 0)
(0.997789 -0.00359888 0)
(0.996903 -0.00357682 0)
(0.996015 -0.00355493 0)
(0.995126 -0.0035332 0)
(0.994236 -0.00351163 0)
(0.993345 -0.00349024 0)
(0.992453 -0.00346901 0)
(0.99156 -0.00344795 0)
(0.990666 -0.00342707 0)
(0.989771 -0.00340636 0)
(0.988876 -0.00338582 0)
(0.98798 -0.00336546 0)
(0.987084 -0.00334527 0)
(0.986187 -0.00332526 0)
(0.98529 -0.00330542 0)
(0.984392 -0.00328575 0)
(0.983494 -0.00326625 0)
(0.982596 -0.00324692 0)
(0.981698 -0.00322775 0)
(0.980799 -0.00320876 0)
(0.979901 -0.00318991 0)
(0.979002 -0.00317124 0)
(0.978103 -0.00315271 0)
(0.977204 -0.00313435 0)
(0.976305 -0.00311611 0)
(0.975406 -0.00309805 0)
(1.04206 -0.00564216 0)
(1.04135 -0.0056004 0)
(1.04062 -0.00555891 0)
(1.03988 -0.00551779 0)
(1.03913 -0.00547704 0)
(1.03837 -0.00543663 0)
(1.03759 -0.00539653 0)
(1.0368 -0.00535676 0)
(1.036 -0.00531732 0)
(1.03519 -0.0052782 0)
(1.03437 -0.00523941 0)
(1.03354 -0.00520095 0)
(1.0327 -0.00516281 0)
(1.03185 -0.00512499 0)
(1.03099 -0.0050875 0)
(1.03012 -0.00505034 0)
(1.02924 -0.0050135 0)
(1.02835 -0.00497699 0)
(1.02745 -0.00494081 0)
(1.02654 -0.00490494 0)
(1.02563 -0.0048694 0)
(1.02471 -0.00483418 0)
(1.02378 -0.00479929 0)
(1.02284 -0.0047647 0)
(1.0219 -0.00473044 0)
(1.02095 -0.00469648 0)
(1.01999 -0.00466284 0)
(1.01903 -0.00462951 0)
(1.01806 -0.00459648 0)
(1.01708 -0.00456376 0)
(1.0161 -0.00453134 0)
(1.01511 -0.00449922 0)
(1.01412 -0.00446739 0)
(1.01312 -0.00443586 0)
(1.01211 -0.00440462 0)
(1.0111 -0.00437367 0)
(1.01009 -0.004343 0)
(1.00907 -0.00431261 0)
(1.00805 -0.0042825 0)
(1.00702 -0.00425266 0)
(1.00599 -0.0042231 0)
(1.00495 -0.00419379 0)
(1.00391 -0.00416475 0)
(1.00287 -0.00413596 0)
(1.00182 -0.00410742 0)
(1.00077 -0.00407913 0)
(0.99972 -0.00405108 0)
(0.998663 -0.00402327 0)
(0.997604 -0.00399569 0)
(0.996542 -0.00396835 0)
(0.995477 -0.00394122 0)
(0.994409 -0.00391432 0)
(0.99334 -0.00388763 0)
(0.992268 -0.00386116 0)
(0.991194 -0.0038349 0)
(0.990118 -0.00380885 0)
(0.98904 -0.00378301 0)
(0.98796 -0.00375737 0)
(0.98688 -0.00373192 0)
(0.985797 -0.00370668 0)
(0.984714 -0.00368164 0)
(0.983629 -0.00365679 0)
(0.982544 -0.00363214 0)
(0.981457 -0.00360768 0)
(0.98037 -0.00358341 0)
(0.979283 -0.00355933 0)
(0.978195 -0.00353544 0)
(0.977106 -0.00351174 0)
(0.976018 -0.00348823 0)
(0.974929 -0.00346491 0)
(0.973841 -0.00344178 0)
(0.972753 -0.00341883 0)
(0.971665 -0.00339608 0)
(0.970577 -0.00337351 0)
(0.96949 -0.00335114 0)
(0.968404 -0.00332895 0)
(0.967318 -0.00330695 0)
(0.966233 -0.00328515 0)
(0.965149 -0.00326353 0)
(0.964066 -0.0032421 0)
(0.962984 -0.00322087 0)
(0.961903 -0.00319983 0)
(0.960824 -0.00317897 0)
(0.959745 -0.00315831 0)
(0.958668 -0.00313784 0)
(0.957592 -0.00311756 0)
(0.956518 -0.00309746 0)
(0.955445 -0.00307755 0)
(0.954373 -0.00305783 0)
(0.953303 -0.00303828 0)
(0.952234 -0.00301892 0)
(0.951167 -0.00299974 0)
(0.950102 -0.00298073 0)
(0.949038 -0.0029619 0)
(0.947976 -0.00294323 0)
(0.946916 -0.00292473 0)
(0.945857 -0.00290639 0)
(0.9448 -0.00288822 0)
(0.943745 -0.00287019 0)
(0.942691 -0.00285234 0)
(1.02748 -0.00542868 0)
(1.02639 -0.00538361 0)
(1.02529 -0.00533891 0)
(1.02417 -0.0052947 0)
(1.02304 -0.00525097 0)
(1.02191 -0.00520766 0)
(1.02076 -0.00516475 0)
(1.0196 -0.00512226 0)
(1.01843 -0.00508018 0)
(1.01726 -0.00503851 0)
(1.01607 -0.00499725 0)
(1.01488 -0.0049564 0)
(1.01368 -0.00491595 0)
(1.01247 -0.00487591 0)
(1.01126 -0.00483627 0)
(1.01003 -0.00479703 0)
(1.00881 -0.00475819 0)
(1.00757 -0.00471975 0)
(1.00633 -0.0046817 0)
(1.00508 -0.00464404 0)
(1.00383 -0.00460677 0)
(1.00257 -0.00456989 0)
(1.00131 -0.00453339 0)
(1.00004 -0.00449727 0)
(0.998771 -0.00446153 0)
(0.997496 -0.00442616 0)
(0.996217 -0.00439115 0)
(0.994934 -0.00435652 0)
(0.993648 -0.00432224 0)
(0.992359 -0.00428832 0)
(0.991066 -0.00425476 0)
(0.989771 -0.00422155 0)
(0.988474 -0.00418868 0)
(0.987174 -0.00415616 0)
(0.985872 -0.00412397 0)
(0.984569 -0.00409212 0)
(0.983263 -0.00406059 0)
(0.981956 -0.00402939 0)
(0.980647 -0.00399851 0)
(0.979338 -0.00396795 0)
(0.978027 -0.00393769 0)
(0.976715 -0.00390774 0)
(0.975402 -0.0038781 0)
(0.974089 -0.00384874 0)
(0.972776 -0.00381967 0)
(0.971462 -0.00379089 0)
(0.970147 -0.00376239 0)
(0.968833 -0.00373416 0)
(0.967519 -0.00370621 0)
(0.966205 -0.00367851 0)
(0.964892 -0.00365108 0)
(0.963579 -0.00362391 0)
(0.962267 -0.00359699 0)
(0.960955 -0.00357032 0)
(0.959645 -0.0035439 0)
(0.958336 -0.00351772 0)
(0.957027 -0.00349177 0)
(0.95572 -0.00346607 0)
(0.954415 -0.0034406 0)
(0.953111 -0.00341537 0)
(0.951808 -0.00339036 0)
(0.950508 -0.00336558 0)
(0.949209 -0.00334103 0)
(0.947913 -0.0033167 0)
(0.946618 -0.0032926 0)
(0.945326 -0.00326871 0)
(0.944036 -0.00324505 0)
(0.942748 -0.0032216 0)
(0.941463 -0.00319837 0)
(0.940181 -0.00317535 0)
(0.938901 -0.00315255 0)
(0.937624 -0.00312997 0)
(0.93635 -0.00310759 0)
(0.935079 -0.00308543 0)
(0.933811 -0.00306348 0)
(0.932546 -0.00304173 0)
(0.931284 -0.0030202 0)
(0.930026 -0.00299888 0)
(0.92877 -0.00297776 0)
(0.927518 -0.00295685 0)
(0.926269 -0.00293614 0)
(0.925024 -0.00291564 0)
(0.923782 -0.00289535 0)
(0.922543 -0.00287525 0)
(0.921308 -0.00285535 0)
(0.920077 -0.00283566 0)
(0.918849 -0.00281615 0)
(0.917624 -0.00279685 0)
(0.916404 -0.00277773 0)
(0.915186 -0.0027588 0)
(0.913973 -0.00274006 0)
(0.912763 -0.0027215 0)
(0.911556 -0.00270312 0)
(0.910353 -0.00268493 0)
(0.909154 -0.0026669 0)
(0.907958 -0.00264905 0)
(0.906767 -0.00263135 0)
(0.905578 -0.00261384 0)
(0.904394 -0.00259647 0)
(0.903213 -0.00257929 0)
(1.00472 -0.00512408 0)
(1.0032 -0.00507641 0)
(1.00167 -0.00502922 0)
(1.00014 -0.00498268 0)
(0.998596 -0.00493673 0)
(0.997049 -0.00489131 0)
(0.995495 -0.0048464 0)
(0.993937 -0.004802 0)
(0.992373 -0.00475812 0)
(0.990804 -0.00471475 0)
(0.989232 -0.00467189 0)
(0.987655 -0.00462952 0)
(0.986076 -0.00458765 0)
(0.984493 -0.00454627 0)
(0.982907 -0.00450538 0)
(0.98132 -0.00446497 0)
(0.97973 -0.00442504 0)
(0.978138 -0.00438558 0)
(0.976545 -0.00434659 0)
(0.974951 -0.00430807 0)
(0.973356 -0.00427 0)
(0.971761 -0.00423238 0)
(0.970165 -0.00419521 0)
(0.968569 -0.00415848 0)
(0.966973 -0.00412219 0)
(0.965377 -0.00408633 0)
(0.963782 -0.0040509 0)
(0.962188 -0.00401589 0)
(0.960595 -0.00398129 0)
(0.959003 -0.0039471 0)
(0.957412 -0.00391331 0)
(0.955823 -0.00387992 0)
(0.954236 -0.00384693 0)
(0.952651 -0.00381432 0)
(0.951067 -0.00378209 0)
(0.949486 -0.00375024 0)
(0.947907 -0.00371876 0)
(0.946331 -0.00368764 0)
(0.944758 -0.00365688 0)
(0.943187 -0.00362647 0)
(0.941619 -0.00359641 0)
(0.940054 -0.00356669 0)
(0.938492 -0.0035373 0)
(0.936934 -0.00350824 0)
(0.935379 -0.0034795 0)
(0.933827 -0.00345108 0)
(0.932279 -0.00342297 0)
(0.930735 -0.00339516 0)
(0.929194 -0.00336766 0)
(0.927658 -0.00334045 0)
(0.926125 -0.00331353 0)
(0.924597 -0.0032869 0)
(0.923072 -0.00326055 0)
(0.921552 -0.00323448 0)
(0.920037 -0.00320868 0)
(0.918526 -0.00318315 0)
(0.917019 -0.00315789 0)
(0.915517 -0.00313289 0)
(0.91402 -0.00310815 0)
(0.912528 -0.00308366 0)
(0.91104 -0.00305943 0)
(0.909558 -0.00303546 0)
(0.908081 -0.00301173 0)
(0.906608 -0.00298824 0)
(0.905141 -0.002965 0)
(0.903679 -0.002942 0)
(0.902222 -0.00291924 0)
(0.900771 -0.00289671 0)
(0.899325 -0.00287442 0)
(0.897884 -0.00285236 0)
(0.896449 -0.00283054 0)
(0.895019 -0.00280894 0)
(0.893595 -0.00278756 0)
(0.892177 -0.00276641 0)
(0.890764 -0.00274548 0)
(0.889357 -0.00272478 0)
(0.887955 -0.00270429 0)
(0.886559 -0.00268402 0)
(0.885169 -0.00266396 0)
(0.883784 -0.00264412 0)
(0.882405 -0.00262449 0)
(0.881032 -0.00260507 0)
(0.879664 -0.00258585 0)
(0.878302 -0.00256684 0)
(0.876946 -0.00254803 0)
(0.875595 -0.00252943 0)
(0.87425 -0.00251102 0)
(0.872911 -0.0024928 0)
(0.871578 -0.00247478 0)
(0.87025 -0.00245695 0)
(0.868927 -0.0024393 0)
(0.867611 -0.00242184 0)
(0.866299 -0.00240455 0)
(0.864994 -0.00238745 0)
(0.863694 -0.00237052 0)
(0.8624 -0.00235377 0)
(0.861111 -0.00233717 0)
(0.859827 -0.00232075 0)
(0.85855 -0.00230448 0)
(0.857277 -0.0022884 0)
(0.972187 -0.00472674 0)
(0.970235 -0.00467784 0)
(0.968283 -0.00462955 0)
(0.96633 -0.00458206 0)
(0.964377 -0.00453527 0)
(0.962425 -0.0044891 0)
(0.960474 -0.00444355 0)
(0.958524 -0.00439862 0)
(0.956575 -0.0043543 0)
(0.954629 -0.00431058 0)
(0.952685 -0.00426746 0)
(0.950743 -0.00422492 0)
(0.948805 -0.00418296 0)
(0.94687 -0.00414157 0)
(0.944938 -0.00410073 0)
(0.94301 -0.00406046 0)
(0.941086 -0.00402072 0)
(0.939167 -0.00398153 0)
(0.937252 -0.00394286 0)
(0.935342 -0.00390472 0)
(0.933437 -0.00386709 0)
(0.931536 -0.00382997 0)
(0.929642 -0.00379335 0)
(0.927752 -0.00375722 0)
(0.925869 -0.00372158 0)
(0.923991 -0.00368641 0)
(0.922119 -0.00365171 0)
(0.920253 -0.00361747 0)
(0.918393 -0.00358368 0)
(0.91654 -0.00355035 0)
(0.914693 -0.00351745 0)
(0.912853 -0.00348498 0)
(0.911019 -0.00345294 0)
(0.909192 -0.00342132 0)
(0.907372 -0.00339011 0)
(0.905558 -0.0033593 0)
(0.903752 -0.00332889 0)
(0.901953 -0.00329887 0)
(0.900161 -0.00326923 0)
(0.898376 -0.00323997 0)
(0.896598 -0.00321108 0)
(0.894828 -0.00318255 0)
(0.893065 -0.00315437 0)
(0.891309 -0.00312655 0)
(0.889561 -0.00309906 0)
(0.887821 -0.00307191 0)
(0.886088 -0.0030451 0)
(0.884363 -0.0030186 0)
(0.882645 -0.00299242 0)
(0.880935 -0.00296656 0)
(0.879233 -0.002941 0)
(0.877539 -0.00291575 0)
(0.875852 -0.00289079 0)
(0.874173 -0.00286613 0)
(0.872502 -0.00284175 0)
(0.870839 -0.00281766 0)
(0.869184 -0.00279384 0)
(0.867537 -0.00277031 0)
(0.865898 -0.00274704 0)
(0.864267 -0.00272404 0)
(0.862644 -0.00270131 0)
(0.861029 -0.00267884 0)
(0.859422 -0.00265663 0)
(0.857823 -0.00263467 0)
(0.856232 -0.00261296 0)
(0.854649 -0.0025915 0)
(0.853074 -0.00257028 0)
(0.851508 -0.00254931 0)
(0.849949 -0.00252858 0)
(0.848398 -0.00250808 0)
(0.846856 -0.00248782 0)
(0.845321 -0.00246778 0)
(0.843794 -0.00244798 0)
(0.842276 -0.0024284 0)
(0.840765 -0.00240905 0)
(0.839262 -0.00238991 0)
(0.837768 -0.00237099 0)
(0.836281 -0.00235229 0)
(0.834802 -0.0023338 0)
(0.833331 -0.00231552 0)
(0.831867 -0.00229745 0)
(0.830411 -0.00227958 0)
(0.828964 -0.00226192 0)
(0.827523 -0.00224445 0)
(0.826091 -0.00222719 0)
(0.824666 -0.00221012 0)
(0.823248 -0.00219324 0)
(0.821838 -0.00217655 0)
(0.820436 -0.00216004 0)
(0.819041 -0.00214372 0)
(0.817653 -0.00212758 0)
(0.816273 -0.00211162 0)
(0.8149 -0.00209583 0)
(0.813535 -0.00208022 0)
(0.812176 -0.00206477 0)
(0.810825 -0.0020495 0)
(0.809481 -0.00203438 0)
(0.808144 -0.00201943 0)
(0.806814 -0.00200462 0)
(0.805492 -0.00199 0)
(0.928907 -0.00424659 0)
(0.926569 -0.00419834 0)
(0.92424 -0.00415083 0)
(0.921919 -0.0041042 0)
(0.919606 -0.00405834 0)
(0.917302 -0.00401318 0)
(0.915007 -0.00396873 0)
(0.912721 -0.00392497 0)
(0.910445 -0.00388189 0)
(0.908179 -0.00383948 0)
(0.905922 -0.00379772 0)
(0.903676 -0.0037566 0)
(0.90144 -0.00371612 0)
(0.899214 -0.00367625 0)
(0.896999 -0.003637 0)
(0.894795 -0.00359834 0)
(0.892601 -0.00356027 0)
(0.890418 -0.00352278 0)
(0.888247 -0.00348586 0)
(0.886086 -0.00344949 0)
(0.883937 -0.00341366 0)
(0.881798 -0.00337838 0)
(0.879671 -0.00334362 0)
(0.877556 -0.00330938 0)
(0.875452 -0.00327564 0)
(0.873359 -0.0032424 0)
(0.871277 -0.00320966 0)
(0.869207 -0.00317739 0)
(0.867149 -0.00314559 0)
(0.865102 -0.00311426 0)
(0.863066 -0.00308338 0)
(0.861043 -0.00305294 0)
(0.85903 -0.00302294 0)
(0.857029 -0.00299338 0)
(0.85504 -0.00296423 0)
(0.853062 -0.00293549 0)
(0.851095 -0.00290716 0)
(0.84914 -0.00287922 0)
(0.847197 -0.00285168 0)
(0.845264 -0.00282451 0)
(0.843344 -0.00279772 0)
(0.841434 -0.00277129 0)
(0.839536 -0.00274523 0)
(0.837649 -0.00271951 0)
(0.835774 -0.00269415 0)
(0.83391 -0.00266911 0)
(0.832057 -0.00264442 0)
(0.830215 -0.00262004 0)
(0.828384 -0.00259599 0)
(0.826565 -0.00257225 0)
(0.824756 -0.00254881 0)
(0.822959 -0.00252568 0)
(0.821173 -0.00250285 0)
(0.819397 -0.00248031 0)
(0.817633 -0.00245805 0)
(0.815879 -0.00243608 0)
(0.814137 -0.00241439 0)
(0.812405 -0.00239297 0)
(0.810684 -0.00237182 0)
(0.808974 -0.00235093 0)
(0.807274 -0.0023303 0)
(0.805585 -0.00230994 0)
(0.803907 -0.00228982 0)
(0.802239 -0.00226995 0)
(0.800581 -0.00225033 0)
(0.798935 -0.00223096 0)
(0.797298 -0.00221182 0)
(0.795672 -0.00219291 0)
(0.794056 -0.00217424 0)
(0.79245 -0.00215579 0)
(0.790854 -0.00213757 0)
(0.789269 -0.00211958 0)
(0.787693 -0.0021018 0)
(0.786127 -0.00208423 0)
(0.784572 -0.00206688 0)
(0.783026 -0.00204974 0)
(0.781489 -0.00203281 0)
(0.779963 -0.00201608 0)
(0.778446 -0.00199955 0)
(0.776939 -0.00198322 0)
(0.775441 -0.00196709 0)
(0.773952 -0.00195115 0)
(0.772473 -0.0019354 0)
(0.771003 -0.00191983 0)
(0.769542 -0.00190445 0)
(0.76809 -0.00188926 0)
(0.766648 -0.00187424 0)
(0.765214 -0.0018594 0)
(0.763789 -0.00184474 0)
(0.762373 -0.00183024 0)
(0.760966 -0.00181592 0)
(0.759568 -0.00180176 0)
(0.758178 -0.00178777 0)
(0.756797 -0.00177394 0)
(0.755424 -0.00176026 0)
(0.75406 -0.00174674 0)
(0.752704 -0.00173338 0)
(0.751356 -0.00172017 0)
(0.750017 -0.00170709 0)
(0.748686 -0.00169418 0)
(0.874706 -0.00370437 0)
(0.872076 -0.00365883 0)
(0.869463 -0.00361409 0)
(0.866868 -0.00357025 0)
(0.864289 -0.0035272 0)
(0.861728 -0.00348489 0)
(0.859184 -0.00344333 0)
(0.856658 -0.00340249 0)
(0.854149 -0.00336235 0)
(0.851657 -0.00332291 0)
(0.849183 -0.00328414 0)
(0.846726 -0.00324603 0)
(0.844286 -0.00320857 0)
(0.841863 -0.00317174 0)
(0.839458 -0.00313553 0)
(0.83707 -0.00309993 0)
(0.834699 -0.00306492 0)
(0.832345 -0.00303049 0)
(0.830008 -0.00299663 0)
(0.827689 -0.00296333 0)
(0.825385 -0.00293057 0)
(0.823099 -0.00289835 0)
(0.820829 -0.00286666 0)
(0.818576 -0.00283547 0)
(0.81634 -0.00280479 0)
(0.81412 -0.0027746 0)
(0.811916 -0.00274489 0)
(0.809728 -0.00271565 0)
(0.807557 -0.00268687 0)
(0.805401 -0.00265854 0)
(0.803261 -0.00263066 0)
(0.801138 -0.00260321 0)
(0.799029 -0.00257619 0)
(0.796937 -0.00254958 0)
(0.794859 -0.00252338 0)
(0.792797 -0.00249757 0)
(0.790751 -0.00247216 0)
(0.788719 -0.00244713 0)
(0.786703 -0.00242248 0)
(0.784701 -0.00239819 0)
(0.782714 -0.00237426 0)
(0.780742 -0.00235068 0)
(0.778784 -0.00232745 0)
(0.776841 -0.00230455 0)
(0.774912 -0.00228198 0)
(0.772997 -0.00225974 0)
(0.771096 -0.00223781 0)
(0.76921 -0.00221619 0)
(0.767337 -0.00219488 0)
(0.765478 -0.00217386 0)
(0.763633 -0.00215314 0)
(0.761801 -0.0021327 0)
(0.759983 -0.00211254 0)
(0.758178 -0.00209266 0)
(0.756386 -0.00207305 0)
(0.754608 -0.00205371 0)
(0.752843 -0.00203463 0)
(0.75109 -0.00201581 0)
(0.749351 -0.00199723 0)
(0.747624 -0.00197891 0)
(0.74591 -0.00196083 0)
(0.744208 -0.00194299 0)
(0.742519 -0.00192539 0)
(0.740842 -0.00190802 0)
(0.739177 -0.00189087 0)
(0.737525 -0.00187395 0)
(0.735884 -0.00185725 0)
(0.734255 -0.00184077 0)
(0.732639 -0.0018245 0)
(0.731033 -0.00180844 0)
(0.72944 -0.00179259 0)
(0.727858 -0.00177694 0)
(0.726287 -0.00176149 0)
(0.724728 -0.00174624 0)
(0.723179 -0.00173118 0)
(0.721642 -0.00171632 0)
(0.720116 -0.00170164 0)
(0.718601 -0.00168715 0)
(0.717096 -0.00167283 0)
(0.715602 -0.0016587 0)
(0.714119 -0.00164475 0)
(0.712646 -0.00163097 0)
(0.711184 -0.00161736 0)
(0.709731 -0.00160392 0)
(0.708289 -0.00159064 0)
(0.706857 -0.00157754 0)
(0.705435 -0.00156459 0)
(0.704023 -0.0015518 0)
(0.702621 -0.00153917 0)
(0.701228 -0.0015267 0)
(0.699845 -0.00151437 0)
(0.698472 -0.0015022 0)
(0.697108 -0.00149017 0)
(0.695754 -0.00147829 0)
(0.694408 -0.00146656 0)
(0.693072 -0.00145496 0)
(0.691745 -0.0014435 0)
(0.690427 -0.00143218 0)
(0.689118 -0.00142098 0)
(0.687818 -0.00140992 0)
(0.810256 -0.0031282 0)
(0.80746 -0.00308722 0)
(0.80469 -0.00304704 0)
(0.801944 -0.00300769 0)
(0.799223 -0.0029691 0)
(0.796527 -0.00293125 0)
(0.793855 -0.00289412 0)
(0.791207 -0.00285769 0)
(0.788583 -0.00282195 0)
(0.785982 -0.00278687 0)
(0.783406 -0.00275245 0)
(0.780852 -0.00271866 0)
(0.778321 -0.00268549 0)
(0.775813 -0.00265293 0)
(0.773328 -0.00262096 0)
(0.770865 -0.00258956 0)
(0.768425 -0.00255873 0)
(0.766006 -0.00252844 0)
(0.763609 -0.0024987 0)
(0.761233 -0.00246947 0)
(0.758879 -0.00244077 0)
(0.756545 -0.00241256 0)
(0.754233 -0.00238484 0)
(0.751941 -0.0023576 0)
(0.749669 -0.00233083 0)
(0.747417 -0.00230451 0)
(0.745186 -0.00227865 0)
(0.742974 -0.00225322 0)
(0.740781 -0.00222821 0)
(0.738608 -0.00220363 0)
(0.736454 -0.00217945 0)
(0.734318 -0.00215567 0)
(0.732202 -0.00213228 0)
(0.730103 -0.00210927 0)
(0.728023 -0.00208664 0)
(0.725961 -0.00206437 0)
(0.723917 -0.00204246 0)
(0.72189 -0.0020209 0)
(0.719881 -0.00199968 0)
(0.717889 -0.0019788 0)
(0.715914 -0.00195824 0)
(0.713956 -0.001938 0)
(0.712015 -0.00191808 0)
(0.71009 -0.00189845 0)
(0.708182 -0.00187913 0)
(0.706289 -0.0018601 0)
(0.704413 -0.00184136 0)
(0.702552 -0.0018229 0)
(0.700707 -0.00180471 0)
(0.698878 -0.00178679 0)
(0.697063 -0.00176913 0)
(0.695264 -0.00175173 0)
(0.69348 -0.00173458 0)
(0.691711 -0.00171768 0)
(0.689956 -0.00170103 0)
(0.688216 -0.00168461 0)
(0.68649 -0.00166843 0)
(0.684778 -0.00165247 0)
(0.683081 -0.00163674 0)
(0.681397 -0.00162123 0)
(0.679727 -0.00160594 0)
(0.678071 -0.00159086 0)
(0.676428 -0.00157599 0)
(0.674798 -0.00156132 0)
(0.673182 -0.00154686 0)
(0.671578 -0.00153259 0)
(0.669987 -0.00151852 0)
(0.66841 -0.00150463 0)
(0.666844 -0.00149094 0)
(0.665292 -0.00147743 0)
(0.663751 -0.0014641 0)
(0.662223 -0.00145095 0)
(0.660707 -0.00143797 0)
(0.659202 -0.00142517 0)
(0.65771 -0.00141254 0)
(0.656229 -0.00140007 0)
(0.65476 -0.00138776 0)
(0.653302 -0.00137562 0)
(0.651856 -0.00136363 0)
(0.65042 -0.0013518 0)
(0.648996 -0.00134013 0)
(0.647583 -0.0013286 0)
(0.64618 -0.00131722 0)
(0.644789 -0.00130599 0)
(0.643407 -0.00129491 0)
(0.642037 -0.00128397 0)
(0.640676 -0.00127316 0)
(0.639326 -0.0012625 0)
(0.637986 -0.00125197 0)
(0.636656 -0.00124158 0)
(0.635337 -0.00123132 0)
(0.634026 -0.00122118 0)
(0.632726 -0.00121118 0)
(0.631435 -0.0012013 0)
(0.630154 -0.00119155 0)
(0.628883 -0.00118191 0)
(0.62762 -0.0011724 0)
(0.626367 -0.001163 0)
(0.625123 -0.00115371 0)
(0.623889 -0.00114453 0)
(0.736943 -0.00254884 0)
(0.734122 -0.00251378 0)
(0.731331 -0.00247945 0)
(0.72857 -0.00244581 0)
(0.72584 -0.00241286 0)
(0.723139 -0.00238058 0)
(0.720467 -0.00234896 0)
(0.717823 -0.00231798 0)
(0.715209 -0.00228762 0)
(0.712622 -0.00225787 0)
(0.710062 -0.0022287 0)
(0.70753 -0.0022001 0)
(0.705024 -0.00217206 0)
(0.702545 -0.00214456 0)
(0.700092 -0.00211759 0)
(0.697664 -0.00209113 0)
(0.695262 -0.00206518 0)
(0.692885 -0.00203971 0)
(0.690532 -0.00201472 0)
(0.688203 -0.0019902 0)
(0.685899 -0.00196613 0)
(0.683617 -0.0019425 0)
(0.681359 -0.0019193 0)
(0.679124 -0.00189653 0)
(0.676912 -0.00187416 0)
(0.674721 -0.0018522 0)
(0.672553 -0.00183063 0)
(0.670406 -0.00180944 0)
(0.668281 -0.00178863 0)
(0.666176 -0.00176817 0)
(0.664093 -0.00174808 0)
(0.66203 -0.00172833 0)
(0.659987 -0.00170892 0)
(0.657963 -0.00168985 0)
(0.65596 -0.0016711 0)
(0.653976 -0.00165266 0)
(0.652011 -0.00163454 0)
(0.650064 -0.00161671 0)
(0.648137 -0.00159919 0)
(0.646227 -0.00158195 0)
(0.644336 -0.00156499 0)
(0.642463 -0.00154831 0)
(0.640607 -0.0015319 0)
(0.638768 -0.00151575 0)
(0.636947 -0.00149985 0)
(0.635143 -0.00148421 0)
(0.633355 -0.00146882 0)
(0.631584 -0.00145366 0)
(0.629829 -0.00143874 0)
(0.628091 -0.00142405 0)
(0.626368 -0.00140958 0)
(0.624661 -0.00139534 0)
(0.622969 -0.0013813 0)
(0.621292 -0.00136748 0)
(0.619631 -0.00135387 0)
(0.617985 -0.00134046 0)
(0.616353 -0.00132725 0)
(0.614736 -0.00131423 0)
(0.613133 -0.0013014 0)
(0.611544 -0.00128876 0)
(0.60997 -0.0012763 0)
(0.608409 -0.00126402 0)
(0.606862 -0.00125192 0)
(0.605328 -0.00123999 0)
(0.603808 -0.00122823 0)
(0.6023 -0.00121664 0)
(0.600806 -0.00120521 0)
(0.599325 -0.00119394 0)
(0.597856 -0.00118283 0)
(0.5964 -0.00117187 0)
(0.594956 -0.00116106 0)
(0.593525 -0.0011504 0)
(0.592105 -0.00113989 0)
(0.590698 -0.00112952 0)
(0.589302 -0.00111929 0)
(0.587918 -0.00110921 0)
(0.586545 -0.00109925 0)
(0.585184 -0.00108943 0)
(0.583834 -0.00107975 0)
(0.582495 -0.00107019 0)
(0.581167 -0.00106076 0)
(0.57985 -0.00105146 0)
(0.578543 -0.00104228 0)
(0.577248 -0.00103322 0)
(0.575962 -0.00102428 0)
(0.574687 -0.00101547 0)
(0.573423 -0.00100676 0)
(0.572168 -0.000998178 0)
(0.570923 -0.000989704 0)
(0.569689 -0.000981342 0)
(0.568464 -0.00097309 0)
(0.567248 -0.000964945 0)
(0.566043 -0.000956907 0)
(0.564846 -0.000948972 0)
(0.563659 -0.000941142 0)
(0.562482 -0.000933409 0)
(0.561313 -0.000925781 0)
(0.560153 -0.000918239 0)
(0.559002 -0.000910799 0)
(0.557861 -0.000903432 0)
(0.656615 -0.00199507 0)
(0.653901 -0.00196664 0)
(0.651221 -0.00193881 0)
(0.648574 -0.0019115 0)
(0.645959 -0.00188476 0)
(0.643376 -0.00185861 0)
(0.640824 -0.00183302 0)
(0.638303 -0.00180797 0)
(0.635813 -0.00178344 0)
(0.633352 -0.00175942 0)
(0.63092 -0.0017359 0)
(0.628517 -0.00171287 0)
(0.626142 -0.0016903 0)
(0.623795 -0.00166818 0)
(0.621475 -0.00164651 0)
(0.619182 -0.00162527 0)
(0.616915 -0.00160445 0)
(0.614675 -0.00158403 0)
(0.612459 -0.00156402 0)
(0.610269 -0.00154439 0)
(0.608103 -0.00152514 0)
(0.605962 -0.00150626 0)
(0.603844 -0.00148774 0)
(0.60175 -0.00146957 0)
(0.599679 -0.00145173 0)
(0.597631 -0.00143423 0)
(0.595605 -0.00141706 0)
(0.593601 -0.0014002 0)
(0.591618 -0.00138364 0)
(0.589657 -0.00136739 0)
(0.587717 -0.00135143 0)
(0.585798 -0.00133576 0)
(0.583898 -0.00132036 0)
(0.582019 -0.00130524 0)
(0.580159 -0.00129039 0)
(0.578319 -0.00127579 0)
(0.576498 -0.00126145 0)
(0.574695 -0.00124736 0)
(0.572912 -0.00123351 0)
(0.571146 -0.00121989 0)
(0.569398 -0.00120651 0)
(0.567668 -0.00119335 0)
(0.565955 -0.00118041 0)
(0.56426 -0.00116768 0)
(0.562581 -0.00115516 0)
(0.56092 -0.00114285 0)
(0.559274 -0.00113074 0)
(0.557645 -0.00111882 0)
(0.556032 -0.00110709 0)
(0.554434 -0.00109555 0)
(0.552852 -0.00108419 0)
(0.551285 -0.00107301 0)
(0.549734 -0.001062 0)
(0.548197 -0.00105116 0)
(0.546675 -0.00104049 0)
(0.545167 -0.00102999 0)
(0.543673 -0.00101964 0)
(0.542194 -0.00100945 0)
(0.540729 -0.000999415 0)
(0.539277 -0.000989528 0)
(0.537839 -0.000979789 0)
(0.536414 -0.000970194 0)
(0.535002 -0.000960741 0)
(0.533603 -0.000951425 0)
(0.532217 -0.000942246 0)
(0.530843 -0.0009332 0)
(0.529482 -0.000924284 0)
(0.528133 -0.000915496 0)
(0.526797 -0.000906834 0)
(0.525472 -0.000898295 0)
(0.524159 -0.000889877 0)
(0.522858 -0.000881577 0)
(0.521569 -0.000873394 0)
(0.52029 -0.000865326 0)
(0.519023 -0.00085737 0)
(0.517767 -0.000849524 0)
(0.516522 -0.000841787 0)
(0.515288 -0.000834157 0)
(0.514064 -0.000826631 0)
(0.512851 -0.000819209 0)
(0.511648 -0.000811889 0)
(0.510456 -0.000804669 0)
(0.509273 -0.000797547 0)
(0.508101 -0.000790523 0)
(0.506939 -0.000783595 0)
(0.505786 -0.000776761 0)
(0.504643 -0.00077002 0)
(0.503509 -0.00076337 0)
(0.502385 -0.00075681 0)
(0.50127 -0.000750339 0)
(0.500165 -0.000743955 0)
(0.499068 -0.000737656 0)
(0.49798 -0.000731443 0)
(0.496901 -0.000725311 0)
(0.495831 -0.000719263 0)
(0.49477 -0.00071329 0)
(0.493717 -0.000707404 0)
(0.492672 -0.000701578 0)
(0.491636 -0.000695842 0)
(0.490608 -0.000690148 0)
(0.571294 -0.00149035 0)
(0.568802 -0.00146861 0)
(0.566344 -0.00144731 0)
(0.563918 -0.00142635 0)
(0.561524 -0.00140583 0)
(0.559162 -0.00138579 0)
(0.556831 -0.00136619 0)
(0.55453 -0.00134703 0)
(0.552259 -0.00132827 0)
(0.550018 -0.00130992 0)
(0.547805 -0.00129197 0)
(0.545619 -0.00127439 0)
(0.543462 -0.00125718 0)
(0.541331 -0.00124033 0)
(0.539227 -0.00122383 0)
(0.537149 -0.00120766 0)
(0.535097 -0.00119183 0)
(0.53307 -0.00117631 0)
(0.531067 -0.00116111 0)
(0.529088 -0.00114621 0)
(0.527133 -0.0011316 0)
(0.525201 -0.00111728 0)
(0.523293 -0.00110325 0)
(0.521406 -0.00108948 0)
(0.519542 -0.00107598 0)
(0.517699 -0.00106274 0)
(0.515878 -0.00104975 0)
(0.514078 -0.001037 0)
(0.512298 -0.0010245 0)
(0.510538 -0.00101222 0)
(0.508799 -0.00100018 0)
(0.507078 -0.000988357 0)
(0.505377 -0.000976751 0)
(0.503695 -0.000965356 0)
(0.502032 -0.000954167 0)
(0.500386 -0.000943178 0)
(0.498759 -0.000932386 0)
(0.497149 -0.000921785 0)
(0.495557 -0.00091137 0)
(0.493981 -0.000901138 0)
(0.492423 -0.000891083 0)
(0.490881 -0.000881202 0)
(0.489355 -0.000871489 0)
(0.487846 -0.000861941 0)
(0.486352 -0.000852555 0)
(0.484873 -0.000843325 0)
(0.48341 -0.000834249 0)
(0.481962 -0.000825322 0)
(0.480529 -0.000816541 0)
(0.47911 -0.000807903 0)
(0.477706 -0.000799404 0)
(0.476316 -0.000791042 0)
(0.47494 -0.000782813 0)
(0.473577 -0.000774714 0)
(0.472229 -0.000766742 0)
(0.470893 -0.000758895 0)
(0.469571 -0.00075117 0)
(0.468261 -0.000743564 0)
(0.466964 -0.000736075 0)
(0.46568 -0.000728701 0)
(0.464408 -0.000721438 0)
(0.463149 -0.000714285 0)
(0.461901 -0.000707239 0)
(0.460666 -0.000700299 0)
(0.459442 -0.000693462 0)
(0.458229 -0.000686726 0)
(0.457028 -0.000680088 0)
(0.455839 -0.000673548 0)
(0.45466 -0.000667103 0)
(0.453492 -0.000660752 0)
(0.452335 -0.000654492 0)
(0.451189 -0.000648322 0)
(0.450053 -0.00064224 0)
(0.448927 -0.000636245 0)
(0.447812 -0.000630335 0)
(0.446706 -0.000624509 0)
(0.445611 -0.000618765 0)
(0.444525 -0.000613101 0)
(0.443449 -0.000607517 0)
(0.442383 -0.000602011 0)
(0.441326 -0.000596583 0)
(0.440278 -0.00059123 0)
(0.43924 -0.000585952 0)
(0.43821 -0.000580747 0)
(0.437189 -0.000575615 0)
(0.436178 -0.000570554 0)
(0.435175 -0.000565564 0)
(0.43418 -0.000560643 0)
(0.433194 -0.00055579 0)
(0.432216 -0.000551004 0)
(0.431247 -0.000546284 0)
(0.430286 -0.000541628 0)
(0.429332 -0.000537037 0)
(0.428387 -0.000532506 0)
(0.42745 -0.000528041 0)
(0.42652 -0.000523628 0)
(0.425598 -0.000519287 0)
(0.424683 -0.000514983 0)
(0.423776 -0.000510754 0)
(0.422877 -0.000506542 0)
(0.482927 -0.00105122 0)
(0.480743 -0.0010357 0)
(0.47859 -0.00102045 0)
(0.476467 -0.00100538 0)
(0.474374 -0.000990616 0)
(0.47231 -0.000976215 0)
(0.470275 -0.000962149 0)
(0.468267 -0.000948396 0)
(0.466287 -0.000934947 0)
(0.464334 -0.000921795 0)
(0.462406 -0.000908931 0)
(0.460505 -0.000896345 0)
(0.458628 -0.000884029 0)
(0.456776 -0.000871976 0)
(0.454949 -0.000860177 0)
(0.453145 -0.000848625 0)
(0.451364 -0.000837313 0)
(0.449606 -0.000826236 0)
(0.44787 -0.000815385 0)
(0.446156 -0.000804755 0)
(0.444463 -0.00079434 0)
(0.442791 -0.000784135 0)
(0.441141 -0.000774133 0)
(0.43951 -0.000764329 0)
(0.437899 -0.000754717 0)
(0.436308 -0.000745294 0)
(0.434735 -0.000736053 0)
(0.433182 -0.000726991 0)
(0.431647 -0.000718102 0)
(0.43013 -0.000709382 0)
(0.428631 -0.000700827 0)
(0.427149 -0.000692433 0)
(0.425685 -0.000684196 0)
(0.424237 -0.000676111 0)
(0.422806 -0.000668175 0)
(0.421391 -0.000660385 0)
(0.419992 -0.000652736 0)
(0.418609 -0.000645226 0)
(0.417241 -0.00063785 0)
(0.415888 -0.000630606 0)
(0.41455 -0.00062349 0)
(0.413227 -0.000616498 0)
(0.411919 -0.000609629 0)
(0.410624 -0.000602878 0)
(0.409344 -0.000596244 0)
(0.408077 -0.000589722 0)
(0.406823 -0.00058331 0)
(0.405583 -0.000577006 0)
(0.404356 -0.000570807 0)
(0.403142 -0.00056471 0)
(0.401941 -0.000558714 0)
(0.400751 -0.000552814 0)
(0.399575 -0.000547011 0)
(0.39841 -0.0005413 0)
(0.397257 -0.000535681 0)
(0.396116 -0.000530151 0)
(0.394986 -0.000524708 0)
(0.393868 -0.000519351 0)
(0.392761 -0.000514077 0)
(0.391665 -0.000508885 0)
(0.390579 -0.000503773 0)
(0.389505 -0.000498739 0)
(0.388441 -0.000493782 0)
(0.387387 -0.000488899 0)
(0.386344 -0.000484091 0)
(0.38531 -0.000479354 0)
(0.384287 -0.000474688 0)
(0.383273 -0.000470091 0)
(0.382269 -0.000465563 0)
(0.381274 -0.0004611 0)
(0.380289 -0.000456703 0)
(0.379313 -0.00045237 0)
(0.378346 -0.0004481 0)
(0.377389 -0.000443892 0)
(0.37644 -0.000439745 0)
(0.375499 -0.000435657 0)
(0.374568 -0.000431628 0)
(0.373645 -0.000427656 0)
(0.37273 -0.00042374 0)
(0.371823 -0.000419881 0)
(0.370925 -0.000416076 0)
(0.370035 -0.000412326 0)
(0.369152 -0.000408628 0)
(0.368278 -0.000404983 0)
(0.367411 -0.00040139 0)
(0.366552 -0.000397848 0)
(0.3657 -0.000394356 0)
(0.364856 -0.000390913 0)
(0.364019 -0.000387518 0)
(0.363189 -0.000384171 0)
(0.362367 -0.000380871 0)
(0.361551 -0.000377617 0)
(0.360742 -0.000374409 0)
(0.35994 -0.000371243 0)
(0.359145 -0.000368125 0)
(0.358357 -0.000365042 0)
(0.357575 -0.000362014 0)
(0.356799 -0.000359004 0)
(0.35603 -0.000356057 0)
(0.355268 -0.000353105 0)
(0.393202 -0.000687284 0)
(0.391384 -0.000677138 0)
(0.389592 -0.000667094 0)
(0.387827 -0.000657099 0)
(0.386087 -0.000647309 0)
(0.384373 -0.000637772 0)
(0.382683 -0.000628463 0)
(0.381016 -0.000619365 0)
(0.379373 -0.000610471 0)
(0.377754 -0.000601778 0)
(0.376156 -0.000593278 0)
(0.374581 -0.000584966 0)
(0.373026 -0.000576834 0)
(0.371493 -0.000568878 0)
(0.369981 -0.000561093 0)
(0.368489 -0.000553474 0)
(0.367016 -0.000546015 0)
(0.365563 -0.000538713 0)
(0.364129 -0.000531563 0)
(0.362713 -0.00052456 0)
(0.361315 -0.000517701 0)
(0.359936 -0.000510982 0)
(0.358574 -0.000504399 0)
(0.357229 -0.000497949 0)
(0.3559 -0.000491626 0)
(0.354589 -0.00048543 0)
(0.353293 -0.000479355 0)
(0.352014 -0.000473399 0)
(0.350749 -0.000467559 0)
(0.349501 -0.000461831 0)
(0.348267 -0.000456213 0)
(0.347048 -0.000450703 0)
(0.345843 -0.000445296 0)
(0.344652 -0.000439992 0)
(0.343476 -0.000434787 0)
(0.342313 -0.000429678 0)
(0.341163 -0.000424663 0)
(0.340027 -0.000419741 0)
(0.338904 -0.000414908 0)
(0.337793 -0.000410162 0)
(0.336695 -0.000405502 0)
(0.335609 -0.000400924 0)
(0.334535 -0.000396428 0)
(0.333473 -0.00039201 0)
(0.332423 -0.000387669 0)
(0.331384 -0.000383403 0)
(0.330356 -0.00037921 0)
(0.32934 -0.000375088 0)
(0.328334 -0.000371036 0)
(0.327339 -0.000367051 0)
(0.326355 -0.000363133 0)
(0.325381 -0.000359279 0)
(0.324417 -0.000355488 0)
(0.323463 -0.000351758 0)
(0.32252 -0.000348089 0)
(0.321586 -0.000344479 0)
(0.320661 -0.000340926 0)
(0.319746 -0.00033743 0)
(0.31884 -0.000333989 0)
(0.317944 -0.000330601 0)
(0.317056 -0.000327267 0)
(0.316177 -0.000323983 0)
(0.315307 -0.000320751 0)
(0.314446 -0.000317568 0)
(0.313593 -0.000314433 0)
(0.312748 -0.000311346 0)
(0.311912 -0.000308306 0)
(0.311084 -0.000305311 0)
(0.310263 -0.00030236 0)
(0.309451 -0.000299454 0)
(0.308646 -0.000296591 0)
(0.307849 -0.000293769 0)
(0.30706 -0.00029099 0)
(0.306278 -0.000288251 0)
(0.305503 -0.000285551 0)
(0.304736 -0.000282892 0)
(0.303975 -0.00028027 0)
(0.303222 -0.000277687 0)
(0.302476 -0.00027514 0)
(0.301736 -0.000272631 0)
(0.301003 -0.000270158 0)
(0.300277 -0.00026772 0)
(0.299557 -0.000265317 0)
(0.298844 -0.000262949 0)
(0.298137 -0.000260615 0)
(0.297436 -0.000258315 0)
(0.296741 -0.000256047 0)
(0.296053 -0.000253812 0)
(0.295371 -0.000251609 0)
(0.294694 -0.000249437 0)
(0.294023 -0.000247296 0)
(0.293359 -0.000245185 0)
(0.292699 -0.000243105 0)
(0.292046 -0.000241051 0)
(0.291398 -0.000239031 0)
(0.290755 -0.000237031 0)
(0.290118 -0.000235071 0)
(0.289486 -0.000233116 0)
(0.288859 -0.00023121 0)
(0.288238 -0.000229285 0)
(0.303459 -0.000402209 0)
(0.30204 -0.000396354 0)
(0.300641 -0.000390468 0)
(0.299264 -0.000384547 0)
(0.297907 -0.000378754 0)
(0.296569 -0.000373123 0)
(0.295252 -0.000367631 0)
(0.293953 -0.000362266 0)
(0.292673 -0.000357023 0)
(0.291411 -0.000351899 0)
(0.290167 -0.000346891 0)
(0.28894 -0.000341995 0)
(0.287731 -0.000337206 0)
(0.286538 -0.000332522 0)
(0.285361 -0.00032794 0)
(0.284201 -0.000323456 0)
(0.283056 -0.000319068 0)
(0.281926 -0.000314773 0)
(0.280812 -0.000310568 0)
(0.279712 -0.00030645 0)
(0.278626 -0.000302419 0)
(0.277555 -0.00029847 0)
(0.276497 -0.000294602 0)
(0.275453 -0.000290812 0)
(0.274422 -0.000287099 0)
(0.273404 -0.00028346 0)
(0.272399 -0.000279893 0)
(0.271406 -0.000276397 0)
(0.270426 -0.00027297 0)
(0.269458 -0.000269609 0)
(0.268501 -0.000266314 0)
(0.267556 -0.000263082 0)
(0.266622 -0.000259912 0)
(0.2657 -0.000256802 0)
(0.264788 -0.000253751 0)
(0.263887 -0.000250757 0)
(0.262997 -0.000247819 0)
(0.262117 -0.000244936 0)
(0.261247 -0.000242105 0)
(0.260387 -0.000239327 0)
(0.259537 -0.000236598 0)
(0.258697 -0.000233919 0)
(0.257866 -0.000231288 0)
(0.257044 -0.000228703 0)
(0.256231 -0.000226163 0)
(0.255428 -0.000223668 0)
(0.254633 -0.000221216 0)
(0.253846 -0.000218806 0)
(0.253069 -0.000216437 0)
(0.252299 -0.000214108 0)
(0.251538 -0.000211818 0)
(0.250785 -0.000209566 0)
(0.25004 -0.000207351 0)
(0.249303 -0.000205172 0)
(0.248574 -0.000203029 0)
(0.247852 -0.000200921 0)
(0.247137 -0.000198846 0)
(0.24643 -0.000196805 0)
(0.245731 -0.000194796 0)
(0.245038 -0.000192818 0)
(0.244352 -0.000190872 0)
(0.243673 -0.000188956 0)
(0.243001 -0.00018707 0)
(0.242336 -0.000185213 0)
(0.241677 -0.000183384 0)
(0.241025 -0.000181583 0)
(0.240379 -0.00017981 0)
(0.23974 -0.000178063 0)
(0.239106 -0.000176343 0)
(0.238479 -0.000174648 0)
(0.237858 -0.000172979 0)
(0.237243 -0.000171335 0)
(0.236633 -0.000169715 0)
(0.23603 -0.000168119 0)
(0.235432 -0.000166546 0)
(0.234839 -0.000164997 0)
(0.234253 -0.00016347 0)
(0.233671 -0.000161965 0)
(0.233095 -0.000160482 0)
(0.232524 -0.000159021 0)
(0.231959 -0.000157581 0)
(0.231398 -0.000156162 0)
(0.230843 -0.000154763 0)
(0.230292 -0.000153385 0)
(0.229747 -0.000152027 0)
(0.229206 -0.000150689 0)
(0.22867 -0.00014937 0)
(0.228139 -0.00014807 0)
(0.227613 -0.000146789 0)
(0.227091 -0.000145526 0)
(0.226573 -0.000144282 0)
(0.22606 -0.000143055 0)
(0.225552 -0.000141847 0)
(0.225048 -0.000140653 0)
(0.224547 -0.00013948 0)
(0.224052 -0.000138317 0)
(0.22356 -0.000137181 0)
(0.223072 -0.000136042 0)
(0.222589 -0.000134939 0)
(0.222109 -0.00013381 0)
(0.214669 -0.000195393 0)
(0.213661 -0.000192639 0)
(0.212668 -0.000189782 0)
(0.211689 -0.000186865 0)
(0.210726 -0.000184023 0)
(0.209776 -0.000181272 0)
(0.208841 -0.000178592 0)
(0.207919 -0.000175974 0)
(0.207011 -0.000173415 0)
(0.206116 -0.000170916 0)
(0.205233 -0.000168474 0)
(0.204364 -0.000166086 0)
(0.203506 -0.000163751 0)
(0.20266 -0.000161468 0)
(0.201826 -0.000159235 0)
(0.201003 -0.00015705 0)
(0.200192 -0.000154912 0)
(0.199392 -0.000152819 0)
(0.198602 -0.000150771 0)
(0.197823 -0.000148766 0)
(0.197054 -0.000146803 0)
(0.196295 -0.00014488 0)
(0.195546 -0.000142997 0)
(0.194806 -0.000141153 0)
(0.194077 -0.000139346 0)
(0.193356 -0.000137575 0)
(0.192645 -0.00013584 0)
(0.191942 -0.00013414 0)
(0.191248 -0.000132473 0)
(0.190563 -0.000130838 0)
(0.189886 -0.000129236 0)
(0.189217 -0.000127665 0)
(0.188557 -0.000126124 0)
(0.187904 -0.000124613 0)
(0.18726 -0.000123131 0)
(0.186622 -0.000121676 0)
(0.185993 -0.000120249 0)
(0.18537 -0.000118849 0)
(0.184755 -0.000117474 0)
(0.184147 -0.000116125 0)
(0.183546 -0.000114801 0)
(0.182952 -0.000113501 0)
(0.182364 -0.000112224 0)
(0.181783 -0.00011097 0)
(0.181209 -0.000109738 0)
(0.180641 -0.000108528 0)
(0.180079 -0.000107339 0)
(0.179523 -0.00010617 0)
(0.178974 -0.000105022 0)
(0.17843 -0.000103893 0)
(0.177892 -0.000102783 0)
(0.17736 -0.000101691 0)
(0.176834 -0.000100618 0)
(0.176313 -9.95624e-05 0)
(0.175797 -9.85241e-05 0)
(0.175287 -9.75027e-05 0)
(0.174782 -9.64977e-05 0)
(0.174283 -9.55089e-05 0)
(0.173788 -9.45359e-05 0)
(0.173299 -9.35784e-05 0)
(0.172814 -9.26359e-05 0)
(0.172335 -9.17082e-05 0)
(0.17186 -9.0795e-05 0)
(0.17139 -8.9896e-05 0)
(0.170924 -8.90108e-05 0)
(0.170464 -8.81392e-05 0)
(0.170007 -8.72809e-05 0)
(0.169556 -8.64357e-05 0)
(0.169108 -8.56032e-05 0)
(0.168665 -8.47834e-05 0)
(0.168226 -8.39758e-05 0)
(0.167792 -8.31803e-05 0)
(0.167361 -8.23966e-05 0)
(0.166935 -8.16246e-05 0)
(0.166512 -8.0864e-05 0)
(0.166094 -8.01146e-05 0)
(0.165679 -7.93762e-05 0)
(0.165268 -7.86485e-05 0)
(0.164861 -7.79315e-05 0)
(0.164458 -7.72252e-05 0)
(0.164058 -7.65291e-05 0)
(0.163662 -7.58431e-05 0)
(0.16327 -7.51672e-05 0)
(0.162881 -7.45013e-05 0)
(0.162495 -7.38452e-05 0)
(0.162113 -7.31986e-05 0)
(0.161735 -7.25616e-05 0)
(0.161359 -7.19337e-05 0)
(0.160987 -7.13151e-05 0)
(0.160618 -7.07052e-05 0)
(0.160253 -7.01047e-05 0)
(0.15989 -6.95119e-05 0)
(0.159531 -6.89292e-05 0)
(0.159174 -6.83525e-05 0)
(0.158821 -6.77877e-05 0)
(0.15847 -6.72251e-05 0)
(0.158123 -6.66789e-05 0)
(0.157778 -6.61264e-05 0)
(0.157436 -6.55971e-05 0)
(0.157097 -6.5045e-05 0)
(0.127466 -6.39226e-05 0)
(0.126868 -6.30804e-05 0)
(0.126278 -6.21427e-05 0)
(0.125698 -6.11669e-05 0)
(0.125126 -6.02283e-05 0)
(0.124562 -5.93265e-05 0)
(0.124008 -5.84478e-05 0)
(0.123461 -5.75886e-05 0)
(0.122922 -5.67495e-05 0)
(0.122391 -5.59301e-05 0)
(0.121868 -5.51294e-05 0)
(0.121352 -5.43469e-05 0)
(0.120844 -5.35817e-05 0)
(0.120342 -5.28335e-05 0)
(0.119848 -5.21018e-05 0)
(0.11936 -5.13859e-05 0)
(0.118879 -5.06856e-05 0)
(0.118405 -5.00002e-05 0)
(0.117936 -4.93295e-05 0)
(0.117475 -4.86729e-05 0)
(0.117019 -4.80301e-05 0)
(0.116569 -4.74007e-05 0)
(0.116125 -4.67844e-05 0)
(0.115687 -4.61808e-05 0)
(0.115255 -4.55895e-05 0)
(0.114828 -4.50102e-05 0)
(0.114406 -4.44426e-05 0)
(0.11399 -4.38864e-05 0)
(0.113579 -4.33412e-05 0)
(0.113173 -4.28068e-05 0)
(0.112772 -4.22829e-05 0)
(0.112376 -4.17693e-05 0)
(0.111985 -4.12656e-05 0)
(0.111598 -4.07717e-05 0)
(0.111216 -4.02873e-05 0)
(0.110839 -3.98121e-05 0)
(0.110466 -3.93459e-05 0)
(0.110097 -3.88886e-05 0)
(0.109733 -3.84398e-05 0)
(0.109373 -3.79994e-05 0)
(0.109017 -3.75671e-05 0)
(0.108665 -3.71428e-05 0)
(0.108317 -3.67262e-05 0)
(0.107973 -3.63171e-05 0)
(0.107632 -3.59153e-05 0)
(0.107296 -3.55207e-05 0)
(0.106963 -3.5133e-05 0)
(0.106634 -3.4752e-05 0)
(0.106309 -3.43776e-05 0)
(0.105986 -3.40097e-05 0)
(0.105668 -3.3648e-05 0)
(0.105353 -3.32923e-05 0)
(0.105041 -3.29426e-05 0)
(0.104732 -3.25987e-05 0)
(0.104427 -3.22605e-05 0)
(0.104125 -3.19278e-05 0)
(0.103826 -3.16004e-05 0)
(0.10353 -3.12784e-05 0)
(0.103237 -3.09616e-05 0)
(0.102947 -3.06497e-05 0)
(0.10266 -3.03429e-05 0)
(0.102376 -3.00408e-05 0)
(0.102094 -2.97435e-05 0)
(0.101816 -2.94508e-05 0)
(0.10154 -2.91627e-05 0)
(0.101267 -2.8879e-05 0)
(0.100996 -2.85996e-05 0)
(0.100729 -2.83245e-05 0)
(0.100464 -2.80536e-05 0)
(0.100201 -2.77867e-05 0)
(0.0999408 -2.75239e-05 0)
(0.0996831 -2.7265e-05 0)
(0.0994279 -2.701e-05 0)
(0.0991751 -2.67588e-05 0)
(0.0989247 -2.65112e-05 0)
(0.0986766 -2.62674e-05 0)
(0.0984307 -2.60271e-05 0)
(0.0981872 -2.57903e-05 0)
(0.0979458 -2.55569e-05 0)
(0.0977067 -2.53271e-05 0)
(0.0974697 -2.51007e-05 0)
(0.0972349 -2.48775e-05 0)
(0.0970022 -2.46576e-05 0)
(0.0967715 -2.44409e-05 0)
(0.0965428 -2.42275e-05 0)
(0.0963162 -2.40172e-05 0)
(0.0960916 -2.38101e-05 0)
(0.0958689 -2.36058e-05 0)
(0.0956481 -2.34048e-05 0)
(0.0954293 -2.32064e-05 0)
(0.0952122 -2.30113e-05 0)
(0.0949971 -2.28185e-05 0)
(0.0947837 -2.26294e-05 0)
(0.0945722 -2.24416e-05 0)
(0.0943623 -2.22587e-05 0)
(0.0941543 -2.20751e-05 0)
(0.0939479 -2.18989e-05 0)
(0.0937433 -2.17176e-05 0)
(0.0935403 -2.15475e-05 0)
(0.093339 -2.13647e-05 0)
(0.0422078 -2.99273e-06 0)
(0.0420105 -2.97888e-06 0)
(0.0418157 -2.92862e-06 0)
(0.041624 -2.8763e-06 0)
(0.0414353 -2.83162e-06 0)
(0.0412494 -2.78979e-06 0)
(0.0410663 -2.74847e-06 0)
(0.0408859 -2.70791e-06 0)
(0.0407082 -2.6684e-06 0)
(0.040533 -2.62989e-06 0)
(0.0403604 -2.59228e-06 0)
(0.0401902 -2.55552e-06 0)
(0.0400224 -2.51959e-06 0)
(0.039857 -2.48448e-06 0)
(0.0396939 -2.45014e-06 0)
(0.039533 -2.41658e-06 0)
(0.0393743 -2.38375e-06 0)
(0.0392178 -2.35164e-06 0)
(0.0390634 -2.32022e-06 0)
(0.038911 -2.28948e-06 0)
(0.0387607 -2.25939e-06 0)
(0.0386124 -2.22996e-06 0)
(0.0384659 -2.20115e-06 0)
(0.0383214 -2.17294e-06 0)
(0.0381788 -2.14532e-06 0)
(0.0380379 -2.11828e-06 0)
(0.0378989 -2.0918e-06 0)
(0.0377615 -2.06585e-06 0)
(0.0376259 -2.04043e-06 0)
(0.037492 -2.01554e-06 0)
(0.0373597 -1.99114e-06 0)
(0.0372291 -1.96723e-06 0)
(0.0371 -1.94379e-06 0)
(0.0369725 -1.92083e-06 0)
(0.0368464 -1.89831e-06 0)
(0.0367219 -1.87624e-06 0)
(0.0365989 -1.8546e-06 0)
(0.0364772 -1.8334e-06 0)
(0.036357 -1.8126e-06 0)
(0.0362382 -1.79222e-06 0)
(0.0361207 -1.77221e-06 0)
(0.0360045 -1.75261e-06 0)
(0.0358897 -1.73338e-06 0)
(0.0357761 -1.71451e-06 0)
(0.0356638 -1.69599e-06 0)
(0.0355528 -1.67783e-06 0)
(0.0354429 -1.65999e-06 0)
(0.0353343 -1.64249e-06 0)
(0.0352268 -1.62528e-06 0)
(0.0351205 -1.6084e-06 0)
(0.0350153 -1.5918e-06 0)
(0.0349112 -1.57549e-06 0)
(0.0348082 -1.55945e-06 0)
(0.0347063 -1.5437e-06 0)
(0.0346054 -1.5282e-06 0)
(0.0345056 -1.51296e-06 0)
(0.0344068 -1.49797e-06 0)
(0.034309 -1.48323e-06 0)
(0.0342123 -1.46873e-06 0)
(0.0341165 -1.45446e-06 0)
(0.0340216 -1.44041e-06 0)
(0.0339277 -1.4266e-06 0)
(0.0338347 -1.41299e-06 0)
(0.0337427 -1.39961e-06 0)
(0.0336515 -1.38642e-06 0)
(0.0335612 -1.37345e-06 0)
(0.0334719 -1.36066e-06 0)
(0.0333833 -1.34808e-06 0)
(0.0332956 -1.33567e-06 0)
(0.0332088 -1.32347e-06 0)
(0.0331228 -1.31143e-06 0)
(0.0330375 -1.29958e-06 0)
(0.0329531 -1.28789e-06 0)
(0.0328695 -1.27639e-06 0)
(0.0327866 -1.26504e-06 0)
(0.0327045 -1.25386e-06 0)
(0.0326232 -1.24282e-06 0)
(0.0325426 -1.23195e-06 0)
(0.0324627 -1.22124e-06 0)
(0.0323836 -1.21069e-06 0)
(0.0323051 -1.20029e-06 0)
(0.0322274 -1.19003e-06 0)
(0.0321503 -1.17991e-06 0)
(0.0320739 -1.16996e-06 0)
(0.0319982 -1.16016e-06 0)
(0.0319232 -1.15049e-06 0)
(0.0318488 -1.14097e-06 0)
(0.031775 -1.13156e-06 0)
(0.0317019 -1.12236e-06 0)
(0.0316294 -1.11319e-06 0)
(0.0315574 -1.10432e-06 0)
(0.0314861 -1.09534e-06 0)
(0.0314154 -1.08687e-06 0)
(0.0313453 -1.07797e-06 0)
(0.0312758 -1.07005e-06 0)
(0.0312068 -1.06103e-06 0)
(0.0311384 -1.05381e-06 0)
(0.0310705 -1.04441e-06 0)
(0.0310032 -1.03787e-06 0)
(0.0309364 -1.02821e-06 0)
(1.01348 0.00265111 0)
(1.01354 0.00264448 0)
(1.0136 0.00263558 0)
(1.01366 0.00262445 0)
(1.01372 0.00261114 0)
(1.01378 0.00259568 0)
(1.01384 0.00257816 0)
(1.0139 0.00255865 0)
(1.01396 0.00253724 0)
(1.01402 0.00251404 0)
(1.01408 0.00248918 0)
(1.01414 0.00246277 0)
(1.0142 0.00243495 0)
(1.01427 0.00240587 0)
(1.01433 0.00237566 0)
(1.01439 0.00234448 0)
(1.01445 0.00231247 0)
(1.01452 0.00227978 0)
(1.01458 0.00224657 0)
(1.01464 0.00221298 0)
(1.01471 0.00217914 0)
(1.01477 0.0021452 0)
(1.01483 0.0021113 0)
(1.01489 0.00207756 0)
(1.01496 0.0020441 0)
(1.01502 0.00201105 0)
(1.01508 0.00197854 0)
(1.01514 0.00194666 0)
(1.01521 0.00191553 0)
(1.01527 0.00188527 0)
(1.01533 0.00185597 0)
(1.01539 0.00182772 0)
(1.01545 0.00180063 0)
(1.01551 0.00177476 0)
(1.01557 0.0017502 0)
(1.01563 0.00172702 0)
(1.01569 0.00170525 0)
(1.01575 0.00168494 0)
(1.0158 0.00166611 0)
(1.01586 0.00164878 0)
(1.01592 0.00163293 0)
(1.01597 0.00161857 0)
(1.01603 0.00160567 0)
(1.01608 0.0015942 0)
(1.01613 0.00158414 0)
(1.01619 0.00157546 0)
(1.01624 0.00156812 0)
(1.01629 0.00156212 0)
(1.01634 0.00155745 0)
(1.01639 0.0015541 0)
(1.01644 0.00155208 0)
(1.01648 0.00155141 0)
(1.01653 0.00155211 0)
(1.01658 0.0015542 0)
(1.01662 0.0015577 0)
(1.01667 0.00156264 0)
(1.01671 0.00156904 0)
(1.01675 0.00157694 0)
(1.01679 0.00158635 0)
(1.01684 0.00159732 0)
(1.01688 0.00160992 0)
(1.01692 0.00162424 0)
(1.01696 0.0016404 0)
(1.017 0.00165857 0)
(1.01704 0.00167897 0)
(1.01707 0.00170188 0)
(1.01711 0.00172761 0)
(1.01715 0.00175653 0)
(1.01719 0.00178902 0)
(1.01722 0.00182549 0)
(1.01726 0.00186631 0)
(1.0173 0.00191183 0)
(1.01734 0.00196235 0)
(1.01737 0.00201807 0)
(1.01741 0.0020791 0)
(1.01745 0.00214541 0)
(1.01749 0.0022169 0)
(1.01753 0.00229331 0)
(1.01757 0.00237431 0)
(1.01761 0.00245948 0)
(1.01766 0.00254835 0)
(1.0177 0.00264045 0)
(1.01774 0.00273524 0)
(1.01779 0.00283238 0)
(1.01784 0.00293136 0)
(1.01788 0.00303208 0)
(1.01793 0.00313403 0)
(1.01799 0.00323759 0)
(1.01804 0.00334187 0)
(1.0181 0.00344822 0)
(1.01815 0.00355438 0)
(1.01821 0.00366399 0)
(1.01827 0.00377087 0)
(1.01834 0.00388481 0)
(1.0184 0.00398891 0)
(1.01848 0.00411015 0)
(1.01853 0.00420257 0)
(1.01863 0.00434054 0)
(1.01866 0.00439971 0)
(1.0188 0.00458265 0)
(1.01351 0.002401 0)
(1.01356 0.00239394 0)
(1.01362 0.00238471 0)
(1.01368 0.00237335 0)
(1.01373 0.0023599 0)
(1.01379 0.00234441 0)
(1.01385 0.00232697 0)
(1.01391 0.00230764 0)
(1.01396 0.00228652 0)
(1.01402 0.00226373 0)
(1.01408 0.00223938 0)
(1.01414 0.00221359 0)
(1.0142 0.00218652 0)
(1.01426 0.00215828 0)
(1.01432 0.00212904 0)
(1.01438 0.00209894 0)
(1.01444 0.00206813 0)
(1.0145 0.00203675 0)
(1.01456 0.00200496 0)
(1.01462 0.00197291 0)
(1.01468 0.00194072 0)
(1.01474 0.00190854 0)
(1.0148 0.00187651 0)
(1.01486 0.00184474 0)
(1.01492 0.00181337 0)
(1.01498 0.00178251 0)
(1.01504 0.00175228 0)
(1.0151 0.0017228 0)
(1.01516 0.00169415 0)
(1.01522 0.00166646 0)
(1.01528 0.00163982 0)
(1.01534 0.00161433 0)
(1.0154 0.00159006 0)
(1.01546 0.0015671 0)
(1.01551 0.00154552 0)
(1.01557 0.00152537 0)
(1.01563 0.00150671 0)
(1.01568 0.00148955 0)
(1.01574 0.00147394 0)
(1.0158 0.00145986 0)
(1.01585 0.00144731 0)
(1.01591 0.00143628 0)
(1.01596 0.00142673 0)
(1.01601 0.00141864 0)
(1.01607 0.00141197 0)
(1.01612 0.00140667 0)
(1.01617 0.00140274 0)
(1.01622 0.00140012 0)
(1.01627 0.00139882 0)
(1.01632 0.00139881 0)
(1.01637 0.00140011 0)
(1.01642 0.00140271 0)
(1.01647 0.00140662 0)
(1.01651 0.00141186 0)
(1.01656 0.00141844 0)
(1.01661 0.00142638 0)
(1.01665 0.00143569 0)
(1.0167 0.00144639 0)
(1.01674 0.00145849 0)
(1.01678 0.00147204 0)
(1.01683 0.00148707 0)
(1.01687 0.00150368 0)
(1.01691 0.00152197 0)
(1.01696 0.00154212 0)
(1.017 0.00156432 0)
(1.01704 0.00158884 0)
(1.01708 0.00161599 0)
(1.01712 0.00164613 0)
(1.01716 0.00167963 0)
(1.0172 0.00171689 0)
(1.01725 0.00175828 0)
(1.01729 0.00180414 0)
(1.01733 0.00185476 0)
(1.01737 0.00191034 0)
(1.01741 0.00197098 0)
(1.01746 0.00203667 0)
(1.0175 0.00210729 0)
(1.01754 0.0021826 0)
(1.01759 0.00226227 0)
(1.01763 0.00234589 0)
(1.01768 0.00243298 0)
(1.01773 0.0025231 0)
(1.01778 0.00261571 0)
(1.01783 0.00271047 0)
(1.01788 0.00280689 0)
(1.01793 0.00290488 0)
(1.01799 0.00300394 0)
(1.01805 0.00310443 0)
(1.0181 0.00320552 0)
(1.01816 0.00330849 0)
(1.01822 0.00341122 0)
(1.01829 0.00351715 0)
(1.01835 0.00362044 0)
(1.01842 0.0037304 0)
(1.01848 0.00383092 0)
(1.01857 0.00394777 0)
(1.01862 0.00403696 0)
(1.01873 0.00416975 0)
(1.01876 0.00422686 0)
(1.01891 0.00440274 0)
(1.01354 0.00216542 0)
(1.0136 0.00215814 0)
(1.01365 0.00214877 0)
(1.01371 0.00213736 0)
(1.01376 0.00212395 0)
(1.01382 0.0021086 0)
(1.01387 0.00209138 0)
(1.01393 0.00207237 0)
(1.01399 0.00205167 0)
(1.01404 0.00202939 0)
(1.0141 0.00200564 0)
(1.01416 0.00198055 0)
(1.01421 0.00195427 0)
(1.01427 0.00192693 0)
(1.01433 0.00189867 0)
(1.01439 0.00186965 0)
(1.01445 0.00184 0)
(1.0145 0.00180989 0)
(1.01456 0.00177946 0)
(1.01462 0.00174885 0)
(1.01468 0.0017182 0)
(1.01474 0.00168764 0)
(1.01479 0.00165731 0)
(1.01485 0.00162734 0)
(1.01491 0.00159784 0)
(1.01497 0.00156893 0)
(1.01503 0.00154073 0)
(1.01508 0.00151335 0)
(1.01514 0.00148688 0)
(1.0152 0.00146143 0)
(1.01526 0.00143709 0)
(1.01531 0.00141396 0)
(1.01537 0.00139212 0)
(1.01543 0.00137163 0)
(1.01548 0.00135258 0)
(1.01554 0.001335 0)
(1.01559 0.00131895 0)
(1.01565 0.00130445 0)
(1.0157 0.00129152 0)
(1.01576 0.00128015 0)
(1.01581 0.00127034 0)
(1.01587 0.00126206 0)
(1.01592 0.00125529 0)
(1.01597 0.00124998 0)
(1.01602 0.00124609 0)
(1.01608 0.00124358 0)
(1.01613 0.00124242 0)
(1.01618 0.00124258 0)
(1.01623 0.00124402 0)
(1.01628 0.00124674 0)
(1.01633 0.00125073 0)
(1.01638 0.00125598 0)
(1.01643 0.0012625 0)
(1.01647 0.0012703 0)
(1.01652 0.00127938 0)
(1.01657 0.00128974 0)
(1.01662 0.0013014 0)
(1.01666 0.00131436 0)
(1.01671 0.00132863 0)
(1.01676 0.00134423 0)
(1.0168 0.00136122 0)
(1.01685 0.00137966 0)
(1.01689 0.00139965 0)
(1.01694 0.00142136 0)
(1.01698 0.00144498 0)
(1.01702 0.00147076 0)
(1.01707 0.00149902 0)
(1.01711 0.00153008 0)
(1.01716 0.00156432 0)
(1.0172 0.00160212 0)
(1.01725 0.00164386 0)
(1.01729 0.00168987 0)
(1.01734 0.00174042 0)
(1.01738 0.00179573 0)
(1.01743 0.00185588 0)
(1.01748 0.00192087 0)
(1.01752 0.00199057 0)
(1.01757 0.00206476 0)
(1.01762 0.00214309 0)
(1.01767 0.00222518 0)
(1.01772 0.00231056 0)
(1.01777 0.00239876 0)
(1.01783 0.0024893 0)
(1.01788 0.0025818 0)
(1.01794 0.00267582 0)
(1.01799 0.00277123 0)
(1.01805 0.00286757 0)
(1.01811 0.00296519 0)
(1.01817 0.0030633 0)
(1.01824 0.00316311 0)
(1.0183 0.00326264 0)
(1.01837 0.00336514 0)
(1.01844 0.00346506 0)
(1.01852 0.00357129 0)
(1.01858 0.00366846 0)
(1.01867 0.00378118 0)
(1.01873 0.00386736 0)
(1.01884 0.00399526 0)
(1.01887 0.00405044 0)
(1.01903 0.00421964 0)
(1.01359 0.00194251 0)
(1.01364 0.00193516 0)
(1.01369 0.00192582 0)
(1.01375 0.0019145 0)
(1.0138 0.00190128 0)
(1.01385 0.00188618 0)
(1.01391 0.0018693 0)
(1.01396 0.00185072 0)
(1.01402 0.00183052 0)
(1.01407 0.00180883 0)
(1.01413 0.00178575 0)
(1.01418 0.00176142 0)
(1.01424 0.00173597 0)
(1.0143 0.00170954 0)
(1.01435 0.00168228 0)
(1.01441 0.00165433 0)
(1.01447 0.00162584 0)
(1.01452 0.00159695 0)
(1.01458 0.00156781 0)
(1.01463 0.00153857 0)
(1.01469 0.00150936 0)
(1.01475 0.00148031 0)
(1.0148 0.00145156 0)
(1.01486 0.00142322 0)
(1.01492 0.00139542 0)
(1.01497 0.00136827 0)
(1.01503 0.00134189 0)
(1.01509 0.00131637 0)
(1.01514 0.00129183 0)
(1.0152 0.00126835 0)
(1.01525 0.00124603 0)
(1.01531 0.00122495 0)
(1.01536 0.00120521 0)
(1.01542 0.00118686 0)
(1.01547 0.00116996 0)
(1.01553 0.00115458 0)
(1.01558 0.00114075 0)
(1.01564 0.00112849 0)
(1.01569 0.00111782 0)
(1.01574 0.00110873 0)
(1.0158 0.0011012 0)
(1.01585 0.00109522 0)
(1.0159 0.00109075 0)
(1.01595 0.00108774 0)
(1.01601 0.00108615 0)
(1.01606 0.00108593 0)
(1.01611 0.00108706 0)
(1.01616 0.00108948 0)
(1.01621 0.00109317 0)
(1.01626 0.00109812 0)
(1.01631 0.0011043 0)
(1.01636 0.00111171 0)
(1.01641 0.00112035 0)
(1.01646 0.00113022 0)
(1.01651 0.00114131 0)
(1.01656 0.00115363 0)
(1.0166 0.00116718 0)
(1.01665 0.00118195 0)
(1.0167 0.00119796 0)
(1.01675 0.00121521 0)
(1.01679 0.00123375 0)
(1.01684 0.00125364 0)
(1.01689 0.00127498 0)
(1.01694 0.00129791 0)
(1.01698 0.00132263 0)
(1.01703 0.00134937 0)
(1.01708 0.00137844 0)
(1.01712 0.00141017 0)
(1.01717 0.00144492 0)
(1.01722 0.00148305 0)
(1.01726 0.00152495 0)
(1.01731 0.00157093 0)
(1.01736 0.00162128 0)
(1.01741 0.00167618 0)
(1.01746 0.00173573 0)
(1.01751 0.00179993 0)
(1.01756 0.00186865 0)
(1.01761 0.00194167 0)
(1.01766 0.00201865 0)
(1.01772 0.00209921 0)
(1.01777 0.00218289 0)
(1.01783 0.00226923 0)
(1.01788 0.00235774 0)
(1.01794 0.00244807 0)
(1.018 0.00253977 0)
(1.01806 0.00263273 0)
(1.01812 0.00272649 0)
(1.01819 0.00282139 0)
(1.01825 0.00291668 0)
(1.01832 0.0030135 0)
(1.01839 0.00310999 0)
(1.01846 0.00320925 0)
(1.01853 0.003306 0)
(1.01861 0.00340871 0)
(1.01868 0.0035027 0)
(1.01877 0.00361152 0)
(1.01883 0.00369484 0)
(1.01895 0.00381812 0)
(1.01898 0.00387147 0)
(1.01915 0.00403434 0)
(1.01364 0.00173079 0)
(1.01369 0.00172351 0)
(1.01375 0.0017143 0)
(1.0138 0.0017032 0)
(1.01385 0.00169025 0)
(1.0139 0.00167551 0)
(1.01396 0.00165906 0)
(1.01401 0.00164098 0)
(1.01406 0.00162136 0)
(1.01412 0.00160032 0)
(1.01417 0.00157796 0)
(1.01423 0.00155442 0)
(1.01428 0.00152983 0)
(1.01433 0.00150433 0)
(1.01439 0.00147807 0)
(1.01444 0.00145118 0)
(1.0145 0.00142381 0)
(1.01455 0.00139611 0)
(1.01461 0.00136822 0)
(1.01466 0.00134028 0)
(1.01472 0.00131243 0)
(1.01477 0.00128479 0)
(1.01483 0.0012575 0)
(1.01488 0.00123068 0)
(1.01494 0.00120443 0)
(1.01499 0.00117889 0)
(1.01505 0.00115414 0)
(1.0151 0.00113031 0)
(1.01516 0.00110748 0)
(1.01521 0.00108575 0)
(1.01527 0.00106521 0)
(1.01532 0.00104594 0)
(1.01538 0.00102802 0)
(1.01543 0.00101152 0)
(1.01548 0.000996499 0)
(1.01554 0.000983003 0)
(1.01559 0.000971068 0)
(1.01564 0.000960716 0)
(1.0157 0.000951957 0)
(1.01575 0.000944785 0)
(1.0158 0.000939184 0)
(1.01585 0.000935125 0)
(1.01591 0.000932569 0)
(1.01596 0.000931473 0)
(1.01601 0.00093179 0)
(1.01606 0.000933472 0)
(1.01611 0.000936476 0)
(1.01616 0.000940762 0)
(1.01621 0.000946298 0)
(1.01626 0.000953059 0)
(1.01631 0.000961028 0)
(1.01636 0.000970194 0)
(1.01641 0.000980549 0)
(1.01646 0.00099209 0)
(1.01651 0.00100481 0)
(1.01656 0.0010187 0)
(1.01661 0.00103377 0)
(1.01666 0.00104999 0)
(1.01671 0.00106738 0)
(1.01676 0.00108594 0)
(1.01681 0.0011057 0)
(1.01686 0.00112673 0)
(1.0169 0.00114911 0)
(1.01695 0.00117298 0)
(1.017 0.00119852 0)
(1.01705 0.00122598 0)
(1.0171 0.00125563 0)
(1.01715 0.00128781 0)
(1.0172 0.00132285 0)
(1.01725 0.00136114 0)
(1.0173 0.00140303 0)
(1.01735 0.00144884 0)
(1.0174 0.00149884 0)
(1.01745 0.00155322 0)
(1.0175 0.00161207 0)
(1.01755 0.0016754 0)
(1.01761 0.00174307 0)
(1.01766 0.00181486 0)
(1.01772 0.00189046 0)
(1.01777 0.00196947 0)
(1.01783 0.00205144 0)
(1.01789 0.00213594 0)
(1.01795 0.00222247 0)
(1.01801 0.00231068 0)
(1.01807 0.00240014 0)
(1.01814 0.00249072 0)
(1.0182 0.00258201 0)
(1.01827 0.00267429 0)
(1.01834 0.00276688 0)
(1.01841 0.00286086 0)
(1.01848 0.00295446 0)
(1.01856 0.00305063 0)
(1.01863 0.00314436 0)
(1.01871 0.00324372 0)
(1.01878 0.00333469 0)
(1.01888 0.0034398 0)
(1.01894 0.00352039 0)
(1.01906 0.00363928 0)
(1.0191 0.00369089 0)
(1.01927 0.00384776 0)
(1.01371 0.00152907 0)
(1.01376 0.00152195 0)
(1.01381 0.00151296 0)
(1.01386 0.00150215 0)
(1.01391 0.00148956 0)
(1.01396 0.00147526 0)
(1.01401 0.0014593 0)
(1.01407 0.00144178 0)
(1.01412 0.00142279 0)
(1.01417 0.00140243 0)
(1.01423 0.00138083 0)
(1.01428 0.00135811 0)
(1.01433 0.0013344 0)
(1.01439 0.00130984 0)
(1.01444 0.00128457 0)
(1.01449 0.00125872 0)
(1.01455 0.00123246 0)
(1.0146 0.00120591 0)
(1.01465 0.00117922 0)
(1.01471 0.00115253 0)
(1.01476 0.00112596 0)
(1.01481 0.00109966 0)
(1.01487 0.00107374 0)
(1.01492 0.00104832 0)
(1.01498 0.00102352 0)
(1.01503 0.000999443 0)
(1.01508 0.000976198 0)
(1.01514 0.000953886 0)
(1.01519 0.000932602 0)
(1.01524 0.000912439 0)
(1.0153 0.000893482 0)
(1.01535 0.000875814 0)
(1.0154 0.000859507 0)
(1.01546 0.000844629 0)
(1.01551 0.000831235 0)
(1.01556 0.000819371 0)
(1.01561 0.00080907 0)
(1.01567 0.000800353 0)
(1.01572 0.000793227 0)
(1.01577 0.000787685 0)
(1.01582 0.000783708 0)
(1.01587 0.000781265 0)
(1.01593 0.000780317 0)
(1.01598 0.000780818 0)
(1.01603 0.000782719 0)
(1.01608 0.000785971 0)
(1.01613 0.000790526 0)
(1.01618 0.000796345 0)
(1.01623 0.00080339 0)
(1.01628 0.000811636 0)
(1.01633 0.000821061 0)
(1.01638 0.000831651 0)
(1.01644 0.000843395 0)
(1.01649 0.000856285 0)
(1.01654 0.000870311 0)
(1.01659 0.000885463 0)
(1.01664 0.000901731 0)
(1.01669 0.000919105 0)
(1.01674 0.000937582 0)
(1.01679 0.000957166 0)
(1.01684 0.000977883 0)
(1.01689 0.000999784 0)
(1.01694 0.00102295 0)
(1.01699 0.00104753 0)
(1.01704 0.00107367 0)
(1.01709 0.00110163 0)
(1.01714 0.00113166 0)
(1.01719 0.0011641 0)
(1.01724 0.00119928 0)
(1.01729 0.00123756 0)
(1.01734 0.00127929 0)
(1.01739 0.00132479 0)
(1.01745 0.00137432 0)
(1.0175 0.00142807 0)
(1.01755 0.00148614 0)
(1.01761 0.00154851 0)
(1.01767 0.00161506 0)
(1.01772 0.00168559 0)
(1.01778 0.00175976 0)
(1.01784 0.0018372 0)
(1.0179 0.00191747 0)
(1.01796 0.00200012 0)
(1.01802 0.00208469 0)
(1.01809 0.00217082 0)
(1.01815 0.00225809 0)
(1.01822 0.00234636 0)
(1.01829 0.00243525 0)
(1.01836 0.00252501 0)
(1.01843 0.002615 0)
(1.0185 0.00270624 0)
(1.01858 0.00279707 0)
(1.01866 0.00289029 0)
(1.01873 0.00298112 0)
(1.01882 0.00307728 0)
(1.01889 0.00316536 0)
(1.01899 0.00326692 0)
(1.01906 0.00334491 0)
(1.01918 0.00345961 0)
(1.01922 0.00350955 0)
(1.0194 0.0036607 0)
(1.01378 0.00133636 0)
(1.01383 0.00132947 0)
(1.01388 0.00132078 0)
(1.01393 0.00131033 0)
(1.01398 0.00129816 0)
(1.01403 0.00128434 0)
(1.01408 0.00126893 0)
(1.01413 0.00125201 0)
(1.01419 0.00123368 0)
(1.01424 0.00121405 0)
(1.01429 0.00119323 0)
(1.01434 0.00117135 0)
(1.0144 0.00114852 0)
(1.01445 0.0011249 0)
(1.0145 0.00110061 0)
(1.01455 0.0010758 0)
(1.01461 0.00105061 0)
(1.01466 0.00102518 0)
(1.01471 0.000999644 0)
(1.01476 0.000974145 0)
(1.01482 0.00094881 0)
(1.01487 0.000923766 0)
(1.01492 0.000899134 0)
(1.01497 0.00087503 0)
(1.01503 0.000851567 0)
(1.01508 0.000828852 0)
(1.01513 0.000806987 0)
(1.01518 0.000786069 0)
(1.01524 0.000766194 0)
(1.01529 0.000747448 0)
(1.01534 0.000729918 0)
(1.01539 0.00071368 0)
(1.01545 0.000698807 0)
(1.0155 0.000685361 0)
(1.01555 0.000673398 0)
(1.0156 0.00066296 0)
(1.01565 0.000654079 0)
(1.01571 0.000646773 0)
(1.01576 0.000641048 0)
(1.01581 0.000636896 0)
(1.01586 0.000634297 0)
(1.01591 0.000633218 0)
(1.01596 0.00063362 0)
(1.01601 0.000635454 0)
(1.01607 0.000638672 0)
(1.01612 0.000643223 0)
(1.01617 0.000649058 0)
(1.01622 0.000656135 0)
(1.01627 0.000664415 0)
(1.01632 0.000673871 0)
(1.01637 0.000684478 0)
(1.01642 0.00069622 0)
(1.01647 0.000709082 0)
(1.01652 0.000723053 0)
(1.01657 0.000738121 0)
(1.01662 0.000754272 0)
(1.01668 0.000771492 0)
(1.01673 0.000789769 0)
(1.01678 0.000809093 0)
(1.01683 0.000829466 0)
(1.01688 0.000850909 0)
(1.01693 0.000873468 0)
(1.01698 0.000897222 0)
(1.01703 0.000922295 0)
(1.01708 0.000948859 0)
(1.01714 0.000977132 0)
(1.01719 0.00100738 0)
(1.01724 0.00103992 0)
(1.01729 0.00107508 0)
(1.01735 0.00111322 0)
(1.0174 0.00115467 0)
(1.01745 0.00119975 0)
(1.01751 0.00124871 0)
(1.01756 0.00130174 0)
(1.01762 0.00135893 0)
(1.01768 0.00142028 0)
(1.01774 0.00148566 0)
(1.0178 0.00155486 0)
(1.01786 0.00162758 0)
(1.01792 0.00170342 0)
(1.01798 0.00178197 0)
(1.01804 0.00186279 0)
(1.01811 0.0019454 0)
(1.01817 0.00202948 0)
(1.01824 0.00211459 0)
(1.01831 0.00220061 0)
(1.01838 0.00228715 0)
(1.01846 0.00237446 0)
(1.01853 0.00246194 0)
(1.01861 0.00255054 0)
(1.01868 0.00263869 0)
(1.01877 0.00272907 0)
(1.01884 0.00281712 0)
(1.01893 0.00291021 0)
(1.01901 0.0029955 0)
(1.01911 0.00309368 0)
(1.01918 0.00316917 0)
(1.01931 0.00327987 0)
(1.01935 0.0033282 0)
(1.01953 0.0034739 0)
(1.01386 0.00115185 0)
(1.01391 0.00114525 0)
(1.01396 0.00113691 0)
(1.01401 0.00112687 0)
(1.01406 0.00111517 0)
(1.01411 0.00110187 0)
(1.01416 0.00108704 0)
(1.01421 0.00107076 0)
(1.01426 0.00105312 0)
(1.01431 0.00103424 0)
(1.01437 0.00101421 0)
(1.01442 0.000993166 0)
(1.01447 0.000971232 0)
(1.01452 0.00094854 0)
(1.01457 0.000925228 0)
(1.01462 0.000901433 0)
(1.01468 0.000877294 0)
(1.01473 0.00085295 0)
(1.01478 0.000828535 0)
(1.01483 0.000804182 0)
(1.01488 0.000780019 0)
(1.01493 0.000756171 0)
(1.01499 0.000732756 0)
(1.01504 0.000709889 0)
(1.01509 0.000687677 0)
(1.01514 0.000666226 0)
(1.01519 0.000645636 0)
(1.01525 0.000626001 0)
(1.0153 0.000607414 0)
(1.01535 0.000589959 0)
(1.0154 0.00057372 0)
(1.01545 0.00055877 0)
(1.0155 0.000545181 0)
(1.01555 0.000533012 0)
(1.01561 0.000522316 0)
(1.01566 0.000513135 0)
(1.01571 0.000505497 0)
(1.01576 0.000499421 0)
(1.01581 0.00049491 0)
(1.01586 0.000491954 0)
(1.01591 0.000490533 0)
(1.01596 0.000490615 0)
(1.01602 0.000492157 0)
(1.01607 0.000495112 0)
(1.01612 0.00049943 0)
(1.01617 0.000505059 0)
(1.01622 0.00051195 0)
(1.01627 0.000520059 0)
(1.01632 0.000529347 0)
(1.01637 0.000539784 0)
(1.01642 0.000551345 0)
(1.01647 0.00056401 0)
(1.01652 0.000577764 0)
(1.01658 0.000592592 0)
(1.01663 0.00060848 0)
(1.01668 0.000625412 0)
(1.01673 0.000643371 0)
(1.01678 0.000662341 0)
(1.01683 0.00068231 0)
(1.01688 0.000703276 0)
(1.01694 0.000725256 0)
(1.01699 0.00074829 0)
(1.01704 0.000772453 0)
(1.01709 0.000797863 0)
(1.01715 0.000824684 0)
(1.0172 0.000853129 0)
(1.01725 0.000883456 0)
(1.01731 0.000915968 0)
(1.01736 0.000950991 0)
(1.01741 0.000988869 0)
(1.01747 0.00102993 0)
(1.01753 0.00107449 0)
(1.01758 0.0011228 0)
(1.01764 0.00117503 0)
(1.0177 0.00123127 0)
(1.01776 0.00129153 0)
(1.01782 0.00135568 0)
(1.01788 0.00142352 0)
(1.01794 0.00149474 0)
(1.018 0.00156897 0)
(1.01807 0.00164579 0)
(1.01813 0.00172476 0)
(1.0182 0.00180544 0)
(1.01827 0.00188748 0)
(1.01834 0.00197047 0)
(1.01841 0.00205428 0)
(1.01848 0.00213853 0)
(1.01856 0.00222347 0)
(1.01864 0.00230849 0)
(1.01872 0.00239454 0)
(1.01879 0.0024801 0)
(1.01888 0.00256774 0)
(1.01896 0.00265309 0)
(1.01905 0.00274323 0)
(1.01913 0.00282585 0)
(1.01924 0.00292077 0)
(1.0193 0.00299384 0)
(1.01944 0.00310071 0)
(1.01948 0.0031475 0)
(1.01966 0.003288 0)
(1.01395 0.000974879 0)
(1.014 0.00096861 0)
(1.01405 0.000960656 0)
(1.0141 0.000951057 0)
(1.01415 0.000939856 0)
(1.0142 0.00092711 0)
(1.01425 0.000912886 0)
(1.0143 0.000897265 0)
(1.01435 0.000880338 0)
(1.0144 0.000862207 0)
(1.01445 0.000842984 0)
(1.0145 0.000822786 0)
(1.01455 0.00080174 0)
(1.0146 0.000779975 0)
(1.01465 0.000757626 0)
(1.01471 0.000734828 0)
(1.01476 0.000711718 0)
(1.01481 0.000688429 0)
(1.01486 0.000665096 0)
(1.01491 0.000641848 0)
(1.01496 0.000618809 0)
(1.01501 0.000596103 0)
(1.01506 0.000573843 0)
(1.01511 0.000552143 0)
(1.01517 0.000531108 0)
(1.01522 0.000510839 0)
(1.01527 0.000491435 0)
(1.01532 0.000472987 0)
(1.01537 0.000455585 0)
(1.01542 0.000439312 0)
(1.01547 0.000424248 0)
(1.01552 0.000410465 0)
(1.01557 0.000398031 0)
(1.01562 0.000387005 0)
(1.01567 0.000377437 0)
(1.01573 0.000369368 0)
(1.01578 0.000362824 0)
(1.01583 0.000357823 0)
(1.01588 0.000354367 0)
(1.01593 0.000352447 0)
(1.01598 0.000352039 0)
(1.01603 0.000353112 0)
(1.01608 0.000355623 0)
(1.01613 0.000359524 0)
(1.01618 0.000364765 0)
(1.01623 0.000371294 0)
(1.01628 0.000379059 0)
(1.01633 0.000388018 0)
(1.01639 0.00039813 0)
(1.01644 0.000409362 0)
(1.01649 0.00042169 0)
(1.01654 0.000435092 0)
(1.01659 0.000449551 0)
(1.01664 0.000465051 0)
(1.01669 0.000481575 0)
(1.01674 0.000499105 0)
(1.0168 0.000517624 0)
(1.01685 0.000537111 0)
(1.0169 0.000557554 0)
(1.01695 0.000578946 0)
(1.01701 0.000601302 0)
(1.01706 0.000624657 0)
(1.01711 0.000649082 0)
(1.01716 0.000674689 0)
(1.01722 0.000701634 0)
(1.01727 0.000730125 0)
(1.01733 0.000760411 0)
(1.01738 0.000792786 0)
(1.01744 0.000827569 0)
(1.01749 0.000865093 0)
(1.01755 0.000905685 0)
(1.01761 0.000949642 0)
(1.01767 0.000997213 0)
(1.01772 0.00104857 0)
(1.01778 0.00110382 0)
(1.01784 0.00116293 0)
(1.01791 0.00122581 0)
(1.01797 0.00129225 0)
(1.01803 0.00136195 0)
(1.0181 0.00143454 0)
(1.01816 0.00150961 0)
(1.01823 0.00158675 0)
(1.0183 0.0016655 0)
(1.01837 0.00174552 0)
(1.01844 0.00182642 0)
(1.01852 0.00190806 0)
(1.01859 0.00199007 0)
(1.01867 0.00207268 0)
(1.01875 0.00215533 0)
(1.01883 0.00223889 0)
(1.01891 0.00232194 0)
(1.019 0.00240692 0)
(1.01908 0.00248968 0)
(1.01918 0.00257696 0)
(1.01925 0.00265699 0)
(1.01936 0.00274878 0)
(1.01943 0.00281952 0)
(1.01957 0.00292272 0)
(1.01961 0.00296802 0)
(1.0198 0.00310354 0)
(1.01405 0.000804866 0)
(1.0141 0.000798961 0)
(1.01415 0.000791424 0)
(1.0142 0.000782295 0)
(1.01425 0.000771617 0)
(1.0143 0.000759445 0)
(1.01435 0.000745845 0)
(1.0144 0.000730897 0)
(1.01445 0.000714689 0)
(1.0145 0.000697321 0)
(1.01455 0.000678903 0)
(1.0146 0.00065955 0)
(1.01465 0.000639386 0)
(1.0147 0.000618538 0)
(1.01475 0.000597137 0)
(1.0148 0.000575317 0)
(1.01485 0.00055321 0)
(1.0149 0.000530948 0)
(1.01495 0.000508662 0)
(1.015 0.000486478 0)
(1.01505 0.000464519 0)
(1.0151 0.000442904 0)
(1.01515 0.000421745 0)
(1.0152 0.000401151 0)
(1.01525 0.000381226 0)
(1.0153 0.000362069 0)
(1.01535 0.000343775 0)
(1.0154 0.000326434 0)
(1.01545 0.000310132 0)
(1.0155 0.000294949 0)
(1.01555 0.000280963 0)
(1.0156 0.000268246 0)
(1.01565 0.000256861 0)
(1.0157 0.000246866 0)
(1.01576 0.000238309 0)
(1.01581 0.00023123 0)
(1.01586 0.000225654 0)
(1.01591 0.000221597 0)
(1.01596 0.000219062 0)
(1.01601 0.000218037 0)
(1.01606 0.000218501 0)
(1.01611 0.00022042 0)
(1.01616 0.000223753 0)
(1.01621 0.000228452 0)
(1.01626 0.000234466 0)
(1.01631 0.000241742 0)
(1.01636 0.000250231 0)
(1.01641 0.000259887 0)
(1.01646 0.00027067 0)
(1.01651 0.000282547 0)
(1.01656 0.00029549 0)
(1.01662 0.000309477 0)
(1.01667 0.00032449 0)
(1.01672 0.000340511 0)
(1.01677 0.000357522 0)
(1.01682 0.000375504 0)
(1.01688 0.000394435 0)
(1.01693 0.000414297 0)
(1.01698 0.000435071 0)
(1.01703 0.000456753 0)
(1.01709 0.00047935 0)
(1.01714 0.000502898 0)
(1.01719 0.000527461 0)
(1.01725 0.000553147 0)
(1.0173 0.000580105 0)
(1.01736 0.000608535 0)
(1.01741 0.000638681 0)
(1.01747 0.000670825 0)
(1.01753 0.00070528 0)
(1.01758 0.000742369 0)
(1.01764 0.000782412 0)
(1.0177 0.000825699 0)
(1.01776 0.000872473 0)
(1.01782 0.000922908 0)
(1.01788 0.000977093 0)
(1.01794 0.00103502 0)
(1.01801 0.00109659 0)
(1.01807 0.0011616 0)
(1.01813 0.00122975 0)
(1.0182 0.0013007 0)
(1.01827 0.00137402 0)
(1.01834 0.00144932 0)
(1.01841 0.00152615 0)
(1.01848 0.00160418 0)
(1.01856 0.00168302 0)
(1.01863 0.00176252 0)
(1.01871 0.00184234 0)
(1.01879 0.00192268 0)
(1.01887 0.002003 0)
(1.01895 0.00208415 0)
(1.01903 0.00216476 0)
(1.01912 0.00224716 0)
(1.01921 0.00232739 0)
(1.0193 0.00241191 0)
(1.01939 0.00248943 0)
(1.0195 0.00257821 0)
(1.01957 0.0026467 0)
(1.01971 0.00274638 0)
(1.01975 0.00279023 0)
(1.01994 0.002921 0)
(1.01416 0.000641333 0)
(1.01421 0.000635814 0)
(1.01426 0.000628716 0)
(1.01431 0.000620076 0)
(1.01436 0.000609937 0)
(1.0144 0.000598352 0)
(1.01445 0.000585387 0)
(1.0145 0.000571118 0)
(1.01455 0.000555634 0)
(1.0146 0.000539032 0)
(1.01465 0.000521417 0)
(1.0147 0.000502904 0)
(1.01475 0.000483614 0)
(1.0148 0.00046367 0)
(1.01485 0.000443201 0)
(1.0149 0.000422338 0)
(1.01495 0.00040121 0)
(1.015 0.000379946 0)
(1.01505 0.000358675 0)
(1.0151 0.000337518 0)
(1.01515 0.000316598 0)
(1.0152 0.000296028 0)
(1.01525 0.00027592 0)
(1.0153 0.000256379 0)
(1.01535 0.000237506 0)
(1.0154 0.000219398 0)
(1.01545 0.000202146 0)
(1.0155 0.000185839 0)
(1.01555 0.00017056 0)
(1.0156 0.000156389 0)
(1.01565 0.000143398 0)
(1.0157 0.000131658 0)
(1.01575 0.000121231 0)
(1.0158 0.000112172 0)
(1.01585 0.000104529 0)
(1.0159 9.8337e-05 0)
(1.01595 9.36236e-05 0)
(1.016 9.04024e-05 0)
(1.01605 8.86753e-05 0)
(1.0161 8.84314e-05 0)
(1.01615 8.96483e-05 0)
(1.0162 9.22937e-05 0)
(1.01625 9.63262e-05 0)
(1.0163 0.000101698 0)
(1.01635 0.000108358 0)
(1.0164 0.000116253 0)
(1.01645 0.000125336 0)
(1.0165 0.000135562 0)
(1.01655 0.000146888 0)
(1.0166 0.00015928 0)
(1.01665 0.000172711 0)
(1.0167 0.000187157 0)
(1.01676 0.000202597 0)
(1.01681 0.000219014 0)
(1.01686 0.000236389 0)
(1.01691 0.000254699 0)
(1.01697 0.000273925 0)
(1.01702 0.000294043 0)
(1.01707 0.000315036 0)
(1.01713 0.000336895 0)
(1.01718 0.000359627 0)
(1.01723 0.000383262 0)
(1.01729 0.000407862 0)
(1.01734 0.000433529 0)
(1.0174 0.000460407 0)
(1.01745 0.000488688 0)
(1.01751 0.000518607 0)
(1.01757 0.000550441 0)
(1.01762 0.000584491 0)
(1.01768 0.000621075 0)
(1.01774 0.000660503 0)
(1.0178 0.000703059 0)
(1.01786 0.000748982 0)
(1.01792 0.000798444 0)
(1.01798 0.000851532 0)
(1.01805 0.000908243 0)
(1.01811 0.000968473 0)
(1.01818 0.00103203 0)
(1.01824 0.00109862 0)
(1.01831 0.00116791 0)
(1.01838 0.00123949 0)
(1.01845 0.00131296 0)
(1.01853 0.00138789 0)
(1.0186 0.00146395 0)
(1.01867 0.00154075 0)
(1.01875 0.00161815 0)
(1.01883 0.00169582 0)
(1.01891 0.00177393 0)
(1.01899 0.00185198 0)
(1.01908 0.00193077 0)
(1.01916 0.002009 0)
(1.01925 0.0020889 0)
(1.01934 0.00216668 0)
(1.01944 0.00224853 0)
(1.01952 0.00232362 0)
(1.01963 0.00240948 0)
(1.01971 0.00247579 0)
(1.01985 0.0025721 0)
(1.01989 0.00261454 0)
(1.02009 0.00274076 0)
(1.01428 0.000483859 0)
(1.01433 0.000478743 0)
(1.01437 0.000472097 0)
(1.01442 0.000463958 0)
(1.01447 0.000454368 0)
(1.01452 0.000443378 0)
(1.01457 0.000431053 0)
(1.01462 0.000417467 0)
(1.01467 0.000402707 0)
(1.01471 0.000386867 0)
(1.01476 0.000370052 0)
(1.01481 0.000352371 0)
(1.01486 0.000333944 0)
(1.01491 0.000314891 0)
(1.01496 0.000295338 0)
(1.01501 0.000275412 0)
(1.01506 0.00025524 0)
(1.01511 0.000234947 0)
(1.01516 0.000214659 0)
(1.01521 0.000194496 0)
(1.01526 0.000174576 0)
(1.01531 0.00015501 0)
(1.01536 0.000135908 0)
(1.0154 0.000117371 0)
(1.01545 9.94992e-05 0)
(1.0155 8.23854e-05 0)
(1.01555 6.61196e-05 0)
(1.0156 5.07858e-05 0)
(1.01565 3.64647e-05 0)
(1.0157 2.32341e-05 0)
(1.01575 1.11662e-05 0)
(1.0158 3.27633e-07 0)
(1.01585 -9.22078e-06 0)
(1.0159 -1.74253e-05 0)
(1.01595 -2.42407e-05 0)
(1.016 -2.9631e-05 0)
(1.01605 -3.35715e-05 0)
(1.0161 -3.60488e-05 0)
(1.01615 -3.70615e-05 0)
(1.0162 -3.66202e-05 0)
(1.01625 -3.47471e-05 0)
(1.0163 -3.14753e-05 0)
(1.01635 -2.68456e-05 0)
(1.0164 -2.09041e-05 0)
(1.01645 -1.37028e-05 0)
(1.0165 -5.29089e-06 0)
(1.01655 4.2794e-06 0)
(1.0166 1.49612e-05 0)
(1.01665 2.67168e-05 0)
(1.0167 3.95124e-05 0)
(1.01675 5.33183e-05 0)
(1.0168 6.81111e-05 0)
(1.01686 8.38708e-05 0)
(1.01691 0.000100578 0)
(1.01696 0.000118212 0)
(1.01701 0.00013675 0)
(1.01707 0.000156172 0)
(1.01712 0.000176452 0)
(1.01717 0.000197571 0)
(1.01723 0.000219517 0)
(1.01728 0.000242296 0)
(1.01734 0.000265933 0)
(1.01739 0.000290488 0)
(1.01745 0.000316056 0)
(1.0175 0.000342776 0)
(1.01756 0.000370834 0)
(1.01762 0.000400456 0)
(1.01767 0.000431912 0)
(1.01773 0.000465495 0)
(1.01779 0.000501515 0)
(1.01785 0.000540274 0)
(1.01791 0.000582052 0)
(1.01797 0.000627082 0)
(1.01803 0.000675533 0)
(1.0181 0.000727493 0)
(1.01816 0.00078296 0)
(1.01823 0.000841833 0)
(1.01829 0.000903923 0)
(1.01836 0.000968952 0)
(1.01843 0.00103658 0)
(1.0185 0.00110642 0)
(1.01857 0.00117807 0)
(1.01865 0.00125111 0)
(1.01872 0.00132522 0)
(1.0188 0.00140001 0)
(1.01888 0.00147534 0)
(1.01896 0.00155089 0)
(1.01904 0.00162682 0)
(1.01912 0.00170265 0)
(1.01921 0.00177914 0)
(1.0193 0.00185505 0)
(1.01939 0.00193251 0)
(1.01948 0.00200791 0)
(1.01958 0.00208717 0)
(1.01966 0.0021599 0)
(1.01978 0.00224296 0)
(1.01985 0.00230716 0)
(1.01999 0.00240022 0)
(1.02004 0.00244131 0)
(1.02024 0.00256316 0)
(1.0144 0.000332085 0)
(1.01445 0.000327383 0)
(1.0145 0.000321198 0)
(1.01455 0.000313568 0)
(1.01459 0.000304532 0)
(1.01464 0.000294141 0)
(1.01469 0.000282458 0)
(1.01474 0.000269554 0)
(1.01479 0.000255515 0)
(1.01484 0.000240431 0)
(1.01488 0.000224406 0)
(1.01493 0.000207546 0)
(1.01498 0.000189969 0)
(1.01503 0.000171791 0)
(1.01508 0.000153135 0)
(1.01513 0.000134125 0)
(1.01518 0.000114885 0)
(1.01523 9.55382e-05 0)
(1.01528 7.62059e-05 0)
(1.01532 5.70048e-05 0)
(1.01537 3.80493e-05 0)
(1.01542 1.94498e-05 0)
(1.01547 1.31158e-06 0)
(1.01552 -1.62651e-05 0)
(1.01557 -3.31842e-05 0)
(1.01562 -4.9355e-05 0)
(1.01567 -6.469e-05 0)
(1.01572 -7.91075e-05 0)
(1.01577 -9.25292e-05 0)
(1.01581 -0.00010488 0)
(1.01586 -0.000116089 0)
(1.01591 -0.000126092 0)
(1.01596 -0.00013483 0)
(1.01601 -0.000142251 0)
(1.01606 -0.000148311 0)
(1.01611 -0.000152975 0)
(1.01616 -0.00015622 0)
(1.01621 -0.000158032 0)
(1.01626 -0.000158411 0)
(1.01631 -0.000157367 0)
(1.01636 -0.000154922 0)
(1.01641 -0.000151109 0)
(1.01646 -0.000145968 0)
(1.01651 -0.000139545 0)
(1.01656 -0.000131891 0)
(1.01661 -0.000123055 0)
(1.01666 -0.000113088 0)
(1.01671 -0.000102038 0)
(1.01676 -8.99401e-05 0)
(1.01681 -7.68297e-05 0)
(1.01686 -6.27362e-05 0)
(1.01691 -4.76841e-05 0)
(1.01697 -3.16937e-05 0)
(1.01702 -1.47851e-05 0)
(1.01707 3.02065e-06 0)
(1.01712 2.17025e-05 0)
(1.01718 4.12339e-05 0)
(1.01723 6.1591e-05 0)
(1.01728 8.27541e-05 0)
(1.01734 0.00010471 0)
(1.01739 0.00012746 0)
(1.01745 0.000151029 0)
(1.0175 0.000175471 0)
(1.01756 0.000200876 0)
(1.01762 0.000227378 0)
(1.01767 0.000255154 0)
(1.01773 0.000284427 0)
(1.01779 0.000315455 0)
(1.01785 0.000348525 0)
(1.01791 0.000383938 0)
(1.01797 0.000421991 0)
(1.01803 0.000462956 0)
(1.01809 0.000507062 0)
(1.01816 0.000554475 0)
(1.01822 0.000605283 0)
(1.01828 0.000659484 0)
(1.01835 0.000716984 0)
(1.01842 0.000777597 0)
(1.01849 0.000841052 0)
(1.01856 0.000907021 0)
(1.01863 0.000975118 0)
(1.0187 0.00104496 0)
(1.01878 0.00111612 0)
(1.01885 0.00118829 0)
(1.01893 0.0012611 0)
(1.01901 0.0013344 0)
(1.01909 0.00140786 0)
(1.01918 0.00148165 0)
(1.01926 0.00155531 0)
(1.01935 0.00162956 0)
(1.01944 0.00170321 0)
(1.01953 0.00177831 0)
(1.01962 0.00185139 0)
(1.01972 0.00192815 0)
(1.01981 0.0019986 0)
(1.01992 0.00207895 0)
(1.02 0.0021411 0)
(1.02014 0.00223104 0)
(1.02019 0.00227082 0)
(1.02039 0.00238848 0)
(1.01453 0.000185685 0)
(1.01458 0.000181403 0)
(1.01463 0.000175685 0)
(1.01468 0.000168567 0)
(1.01472 0.000160087 0)
(1.01477 0.000150295 0)
(1.01482 0.000139251 0)
(1.01487 0.000127027 0)
(1.01492 0.000113703 0)
(1.01497 9.93698e-05 0)
(1.01501 8.41262e-05 0)
(1.01506 6.80774e-05 0)
(1.01511 5.13349e-05 0)
(1.01516 3.4015e-05 0)
(1.01521 1.62373e-05 0)
(1.01526 -1.87782e-06 0)
(1.01531 -2.02094e-05 0)
(1.01535 -3.86376e-05 0)
(1.0154 -5.70439e-05 0)
(1.01545 -7.53146e-05 0)
(1.0155 -9.33382e-05 0)
(1.01555 -0.000111007 0)
(1.0156 -0.000128219 0)
(1.01565 -0.000144877 0)
(1.01569 -0.000160886 0)
(1.01574 -0.00017616 0)
(1.01579 -0.000190613 0)
(1.01584 -0.000204165 0)
(1.01589 -0.000216738 0)
(1.01594 -0.000228261 0)
(1.01599 -0.000238666 0)
(1.01603 -0.000247891 0)
(1.01608 -0.000255877 0)
(1.01613 -0.000262575 0)
(1.01618 -0.000267942 0)
(1.01623 -0.000271945 0)
(1.01628 -0.00027456 0)
(1.01633 -0.000275775 0)
(1.01638 -0.00027559 0)
(1.01643 -0.000274014 0)
(1.01648 -0.00027107 0)
(1.01653 -0.000266789 0)
(1.01657 -0.00026121 0)
(1.01662 -0.000254381 0)
(1.01667 -0.00024635 0)
(1.01673 -0.000237167 0)
(1.01678 -0.00022688 0)
(1.01683 -0.000215532 0)
(1.01688 -0.000203166 0)
(1.01693 -0.000189815 0)
(1.01698 -0.000175508 0)
(1.01703 -0.000160269 0)
(1.01708 -0.000144121 0)
(1.01714 -0.000127082 0)
(1.01719 -0.000109176 0)
(1.01724 -9.04244e-05 0)
(1.0173 -7.08545e-05 0)
(1.01735 -5.04894e-05 0)
(1.0174 -2.93497e-05 0)
(1.01746 -7.4502e-06 0)
(1.01751 1.52088e-05 0)
(1.01757 3.86482e-05 0)
(1.01763 6.29185e-05 0)
(1.01768 8.81068e-05 0)
(1.01774 0.00011434 0)
(1.0178 0.000141791 0)
(1.01786 0.000170671 0)
(1.01791 0.000201233 0)
(1.01797 0.000233756 0)
(1.01803 0.000268531 0)
(1.0181 0.000305848 0)
(1.01816 0.000345974 0)
(1.01822 0.000389133 0)
(1.01828 0.000435488 0)
(1.01835 0.000485126 0)
(1.01842 0.000538049 0)
(1.01848 0.000594163 0)
(1.01855 0.000653291 0)
(1.01862 0.00071517 0)
(1.01869 0.000779478 0)
(1.01876 0.000845839 0)
(1.01884 0.000913876 0)
(1.01892 0.000983185 0)
(1.01899 0.00105344 0)
(1.01907 0.00112429 0)
(1.01915 0.00119559 0)
(1.01924 0.00126701 0)
(1.01932 0.00133871 0)
(1.01941 0.00141024 0)
(1.0195 0.0014823 0)
(1.01958 0.00155375 0)
(1.01968 0.00162655 0)
(1.01977 0.00169738 0)
(1.01987 0.00177172 0)
(1.01996 0.00183995 0)
(1.02008 0.00191769 0)
(1.02015 0.00197786 0)
(1.0203 0.00206479 0)
(1.02034 0.0021033 0)
(1.02055 0.00221695 0)
(1.01467 4.43879e-05 0)
(1.01472 4.05289e-05 0)
(1.01477 3.52788e-05 0)
(1.01482 2.86722e-05 0)
(1.01486 2.07467e-05 0)
(1.01491 1.15501e-05 0)
(1.01496 1.14085e-06 0)
(1.01501 -1.04118e-05 0)
(1.01505 -2.30291e-05 0)
(1.0151 -3.66231e-05 0)
(1.01515 -5.10977e-05 0)
(1.0152 -6.63506e-05 0)
(1.01525 -8.22734e-05 0)
(1.0153 -9.87525e-05 0)
(1.01534 -0.000115672 0)
(1.01539 -0.000132914 0)
(1.01544 -0.000150361 0)
(1.01549 -0.000167897 0)
(1.01554 -0.000185406 0)
(1.01559 -0.000202776 0)
(1.01563 -0.000219898 0)
(1.01568 -0.000236669 0)
(1.01573 -0.00025299 0)
(1.01578 -0.000268764 0)
(1.01583 -0.000283902 0)
(1.01587 -0.000298317 0)
(1.01592 -0.000311928 0)
(1.01597 -0.000324655 0)
(1.01602 -0.000336426 0)
(1.01607 -0.000347169 0)
(1.01612 -0.00035682 0)
(1.01616 -0.000365316 0)
(1.01621 -0.000372604 0)
(1.01626 -0.000378633 0)
(1.01631 -0.000383363 0)
(1.01636 -0.00038676 0)
(1.01641 -0.000388803 0)
(1.01646 -0.000389479 0)
(1.01651 -0.000388788 0)
(1.01655 -0.00038674 0)
(1.0166 -0.000383357 0)
(1.01665 -0.000378669 0)
(1.0167 -0.000372715 0)
(1.01675 -0.000365541 0)
(1.0168 -0.000357194 0)
(1.01685 -0.000347724 0)
(1.0169 -0.000337178 0)
(1.01695 -0.000325601 0)
(1.01701 -0.000313033 0)
(1.01706 -0.000299507 0)
(1.01711 -0.000285052 0)
(1.01716 -0.000269693 0)
(1.01721 -0.000253451 0)
(1.01727 -0.000236347 0)
(1.01732 -0.000218404 0)
(1.01737 -0.000199644 0)
(1.01742 -0.000180092 0)
(1.01748 -0.000159772 0)
(1.01753 -0.00013871 0)
(1.01759 -0.000116919 0)
(1.01764 -9.44022e-05 0)
(1.0177 -7.11405e-05 0)
(1.01776 -4.7087e-05 0)
(1.01781 -2.21594e-05 0)
(1.01787 3.765e-06 0)
(1.01793 3.08508e-05 0)
(1.01799 5.93041e-05 0)
(1.01805 8.9368e-05 0)
(1.01811 0.000121313 0)
(1.01817 0.000155424 0)
(1.01823 0.000191983 0)
(1.01829 0.00023125 0)
(1.01836 0.000273445 0)
(1.01842 0.000318728 0)
(1.01849 0.000367186 0)
(1.01855 0.000418822 0)
(1.01862 0.000473548 0)
(1.01869 0.000531191 0)
(1.01876 0.000591497 0)
(1.01883 0.000654152 0)
(1.01891 0.00071879 0)
(1.01898 0.000785041 0)
(1.01906 0.000852511 0)
(1.01914 0.000920882 0)
(1.01922 0.000989807 0)
(1.0193 0.00105913 0)
(1.01938 0.00112855 0)
(1.01947 0.0011982 0)
(1.01956 0.00126766 0)
(1.01965 0.00133758 0)
(1.01974 0.00140689 0)
(1.01983 0.00147746 0)
(1.01992 0.00154611 0)
(1.02003 0.00161809 0)
(1.02012 0.00168418 0)
(1.02023 0.00175939 0)
(1.02031 0.00181764 0)
(1.02046 0.00190168 0)
(1.0205 0.00193896 0)
(1.02071 0.00204875 0)
(1.01482 -9.20739e-05 0)
(1.01487 -9.55091e-05 0)
(1.01492 -0.000100292 0)
(1.01496 -0.000106388 0)
(1.01501 -0.000113763 0)
(1.01506 -0.000122369 0)
(1.0151 -0.00013215 0)
(1.01515 -0.000143039 0)
(1.0152 -0.00015496 0)
(1.01525 -0.000167826 0)
(1.0153 -0.000181546 0)
(1.01534 -0.000196018 0)
(1.01539 -0.000211136 0)
(1.01544 -0.000226791 0)
(1.01549 -0.000242871 0)
(1.01554 -0.000259261 0)
(1.01558 -0.000275846 0)
(1.01563 -0.000292512 0)
(1.01568 -0.000309147 0)
(1.01573 -0.000325643 0)
(1.01578 -0.000341893 0)
(1.01582 -0.000357797 0)
(1.01587 -0.000373258 0)
(1.01592 -0.000388183 0)
(1.01597 -0.000402485 0)
(1.01602 -0.000416079 0)
(1.01606 -0.000428886 0)
(1.01611 -0.00044083 0)
(1.01616 -0.000451839 0)
(1.01621 -0.000461846 0)
(1.01626 -0.000470786 0)
(1.0163 -0.0004786 0)
(1.01635 -0.000485234 0)
(1.0164 -0.000490642 0)
(1.01645 -0.000494781 0)
(1.0165 -0.000497623 0)
(1.01655 -0.000499143 0)
(1.01659 -0.000499331 0)
(1.01664 -0.000498186 0)
(1.01669 -0.000495718 0)
(1.01674 -0.000491948 0)
(1.01679 -0.000486906 0)
(1.01684 -0.00048063 0)
(1.01689 -0.000473164 0)
(1.01694 -0.000464556 0)
(1.01699 -0.000454853 0)
(1.01704 -0.000444103 0)
(1.01709 -0.00043235 0)
(1.01714 -0.000419632 0)
(1.01719 -0.000405983 0)
(1.01724 -0.000391433 0)
(1.0173 -0.000376006 0)
(1.01735 -0.000359723 0)
(1.0174 -0.000342606 0)
(1.01745 -0.000324677 0)
(1.01751 -0.000305957 0)
(1.01756 -0.000286471 0)
(1.01762 -0.000266247 0)
(1.01767 -0.000245308 0)
(1.01773 -0.000223671 0)
(1.01778 -0.000201338 0)
(1.01784 -0.000178294 0)
(1.01789 -0.000154493 0)
(1.01795 -0.000129861 0)
(1.01801 -0.000104279 0)
(1.01807 -7.75885e-05 0)
(1.01813 -4.95906e-05 0)
(1.01819 -2.00496e-05 0)
(1.01825 1.12962e-05 0)
(1.01831 4.47239e-05 0)
(1.01837 8.05062e-05 0)
(1.01843 0.0001189 0)
(1.0185 0.000160121 0)
(1.01856 0.000204324 0)
(1.01863 0.000251597 0)
(1.0187 0.000301945 0)
(1.01877 0.000355284 0)
(1.01884 0.000411447 0)
(1.01891 0.000470188 0)
(1.01898 0.000531202 0)
(1.01906 0.000594133 0)
(1.01913 0.000658618 0)
(1.01921 0.000724273 0)
(1.01929 0.000790785 0)
(1.01937 0.000857815 0)
(1.01945 0.000925204 0)
(1.01954 0.000992663 0)
(1.01962 0.00106031 0)
(1.01971 0.00112774 0)
(1.0198 0.00119559 0)
(1.01989 0.00126281 0)
(1.01999 0.00133121 0)
(1.02008 0.00139773 0)
(1.02019 0.00146743 0)
(1.02028 0.00153143 0)
(1.0204 0.0016042 0)
(1.02047 0.00166059 0)
(1.02062 0.00174184 0)
(1.02067 0.00177792 0)
(1.02088 0.00188401 0)
(1.01498 -0.000223931 0)
(1.01502 -0.000226943 0)
(1.01507 -0.00023126 0)
(1.01512 -0.00023685 0)
(1.01516 -0.000243679 0)
(1.01521 -0.000251701 0)
(1.01526 -0.000260862 0)
(1.01531 -0.000271096 0)
(1.01535 -0.000282329 0)
(1.0154 -0.000294479 0)
(1.01545 -0.000307455 0)
(1.0155 -0.00032116 0)
(1.01554 -0.00033549 0)
(1.01559 -0.00035034 0)
(1.01564 -0.0003656 0)
(1.01569 -0.000381158 0)
(1.01573 -0.000396903 0)
(1.01578 -0.000412723 0)
(1.01583 -0.000428511 0)
(1.01588 -0.000444159 0)
(1.01593 -0.000459566 0)
(1.01597 -0.000474633 0)
(1.01602 -0.000489266 0)
(1.01607 -0.000503374 0)
(1.01612 -0.000516872 0)
(1.01616 -0.00052968 0)
(1.01621 -0.000541719 0)
(1.01626 -0.000552916 0)
(1.01631 -0.000563201 0)
(1.01636 -0.000572509 0)
(1.0164 -0.000580777 0)
(1.01645 -0.000587948 0)
(1.0165 -0.00059397 0)
(1.01655 -0.000598796 0)
(1.01659 -0.000602388 0)
(1.01664 -0.000604715 0)
(1.01669 -0.000605756 0)
(1.01674 -0.000605499 0)
(1.01679 -0.000603944 0)
(1.01684 -0.0006011 0)
(1.01689 -0.000596988 0)
(1.01694 -0.000591637 0)
(1.01698 -0.000585084 0)
(1.01703 -0.000577371 0)
(1.01708 -0.000568546 0)
(1.01713 -0.000558657 0)
(1.01718 -0.000547748 0)
(1.01724 -0.000535863 0)
(1.01729 -0.000523041 0)
(1.01734 -0.000509315 0)
(1.01739 -0.000494714 0)
(1.01744 -0.000479263 0)
(1.01749 -0.000462982 0)
(1.01755 -0.000445892 0)
(1.0176 -0.000428016 0)
(1.01765 -0.000409377 0)
(1.01771 -0.00039 0)
(1.01776 -0.000369912 0)
(1.01782 -0.000349135 0)
(1.01787 -0.000327688 0)
(1.01793 -0.000305575 0)
(1.01798 -0.000282781 0)
(1.01804 -0.000259267 0)
(1.0181 -0.000234958 0)
(1.01816 -0.000209744 0)
(1.01822 -0.000183472 0)
(1.01828 -0.000155951 0)
(1.01834 -0.000126952 0)
(1.0184 -9.62218e-05 0)
(1.01846 -6.34918e-05 0)
(1.01852 -2.84932e-05 0)
(1.01858 9.01919e-06 0)
(1.01865 4.92563e-05 0)
(1.01872 9.23757e-05 0)
(1.01878 0.000138463 0)
(1.01885 0.000187526 0)
(1.01892 0.000239483 0)
(1.01899 0.000294176 0)
(1.01906 0.000351365 0)
(1.01914 0.000410754 0)
(1.01921 0.000471996 0)
(1.01929 0.000534738 0)
(1.01937 0.000598605 0)
(1.01945 0.000663287 0)
(1.01953 0.000728455 0)
(1.01961 0.000793949 0)
(1.0197 0.000859487 0)
(1.01978 0.000925176 0)
(1.01987 0.000990631 0)
(1.01997 0.00105645 0)
(1.02006 0.00112164 0)
(1.02015 0.00118793 0)
(1.02025 0.00125238 0)
(1.02035 0.00131988 0)
(1.02044 0.00138185 0)
(1.02057 0.00145226 0)
(1.02064 0.00150684 0)
(1.02079 0.0015854 0)
(1.02084 0.00162032 0)
(1.02105 0.00172284 0)
(1.01514 -0.000351376 0)
(1.01518 -0.000353969 0)
(1.01523 -0.000357825 0)
(1.01528 -0.000362916 0)
(1.01532 -0.000369206 0)
(1.01537 -0.000376653 0)
(1.01542 -0.000385203 0)
(1.01547 -0.000394793 0)
(1.01551 -0.000405353 0)
(1.01556 -0.0004168 0)
(1.01561 -0.000429048 0)
(1.01566 -0.000442003 0)
(1.0157 -0.000455564 0)
(1.01575 -0.000469628 0)
(1.0158 -0.000484088 0)
(1.01585 -0.000498836 0)
(1.01589 -0.000513763 0)
(1.01594 -0.000528761 0)
(1.01599 -0.000543726 0)
(1.01604 -0.000558553 0)
(1.01608 -0.000573143 0)
(1.01613 -0.0005874 0)
(1.01618 -0.000601233 0)
(1.01623 -0.000614554 0)
(1.01627 -0.00062728 0)
(1.01632 -0.000639332 0)
(1.01637 -0.000650635 0)
(1.01642 -0.000661118 0)
(1.01646 -0.000670713 0)
(1.01651 -0.000679356 0)
(1.01656 -0.000686987 0)
(1.01661 -0.000693551 0)
(1.01665 -0.000698996 0)
(1.0167 -0.000703278 0)
(1.01675 -0.00070636 0)
(1.0168 -0.000708211 0)
(1.01685 -0.00070881 0)
(1.01689 -0.000708146 0)
(1.01694 -0.000706219 0)
(1.01699 -0.000703037 0)
(1.01704 -0.000698621 0)
(1.01709 -0.000692999 0)
(1.01714 -0.000686207 0)
(1.01719 -0.000678287 0)
(1.01724 -0.000669285 0)
(1.01729 -0.000659246 0)
(1.01734 -0.000648217 0)
(1.01739 -0.000636238 0)
(1.01744 -0.00062335 0)
(1.01749 -0.000609584 0)
(1.01754 -0.000594969 0)
(1.01759 -0.000579528 0)
(1.01765 -0.000563285 0)
(1.0177 -0.000546259 0)
(1.01775 -0.000528473 0)
(1.01781 -0.000509949 0)
(1.01786 -0.000490713 0)
(1.01792 -0.000470791 0)
(1.01797 -0.000450207 0)
(1.01803 -0.000428978 0)
(1.01808 -0.000407112 0)
(1.01814 -0.000384595 0)
(1.0182 -0.000361391 0)
(1.01825 -0.00033743 0)
(1.01831 -0.000312605 0)
(1.01837 -0.000286771 0)
(1.01843 -0.000259743 0)
(1.01849 -0.000231301 0)
(1.01855 -0.000201198 0)
(1.01862 -0.000169174 0)
(1.01868 -0.000134968 0)
(1.01874 -9.83409e-05 0)
(1.01881 -5.90858e-05 0)
(1.01887 -1.70477e-05 0)
(1.01894 2.7859e-05 0)
(1.01901 7.56429e-05 0)
(1.01908 0.000126229 0)
(1.01915 0.000179464 0)
(1.01922 0.000235116 0)
(1.0193 0.000292899 0)
(1.01937 0.000352475 0)
(1.01945 0.000413499 0)
(1.01953 0.000475605 0)
(1.01961 0.00053849 0)
(1.01969 0.000601831 0)
(1.01978 0.000665467 0)
(1.01986 0.000729124 0)
(1.01995 0.000792901 0)
(1.02004 0.000856425 0)
(1.02013 0.000920265 0)
(1.02023 0.000983474 0)
(1.02032 0.00104772 0)
(1.02042 0.00111016 0)
(1.02053 0.00117551 0)
(1.02062 0.00123552 0)
(1.02074 0.00130364 0)
(1.02082 0.00135648 0)
(1.02097 0.00143244 0)
(1.02101 0.00146624 0)
(1.02123 0.00156532 0)
(1.01531 -0.000474611 0)
(1.01535 -0.00047679 0)
(1.0154 -0.000480193 0)
(1.01545 -0.000484791 0)
(1.01549 -0.000490551 0)
(1.01554 -0.000497431 0)
(1.01559 -0.000505381 0)
(1.01563 -0.00051434 0)
(1.01568 -0.000524238 0)
(1.01573 -0.000534997 0)
(1.01578 -0.000546533 0)
(1.01582 -0.000558753 0)
(1.01587 -0.000571561 0)
(1.01592 -0.000584856 0)
(1.01596 -0.000598535 0)
(1.01601 -0.000612492 0)
(1.01606 -0.000626623 0)
(1.01611 -0.000640822 0)
(1.01615 -0.000654987 0)
(1.0162 -0.000669017 0)
(1.01625 -0.000682815 0)
(1.0163 -0.000696289 0)
(1.01634 -0.000709349 0)
(1.01639 -0.00072191 0)
(1.01644 -0.000733892 0)
(1.01648 -0.000745217 0)
(1.01653 -0.000755815 0)
(1.01658 -0.000765614 0)
(1.01663 -0.000774549 0)
(1.01667 -0.000782559 0)
(1.01672 -0.000789586 0)
(1.01677 -0.000795574 0)
(1.01682 -0.000800475 0)
(1.01686 -0.000804246 0)
(1.01691 -0.00080685 0)
(1.01696 -0.000808257 0)
(1.01701 -0.000808448 0)
(1.01706 -0.000807411 0)
(1.0171 -0.000805145 0)
(1.01715 -0.000801659 0)
(1.0172 -0.000796973 0)
(1.01725 -0.000791113 0)
(1.0173 -0.000784116 0)
(1.01735 -0.000776022 0)
(1.0174 -0.000766875 0)
(1.01745 -0.00075672 0)
(1.0175 -0.000745602 0)
(1.01755 -0.000733562 0)
(1.0176 -0.000720639 0)
(1.01765 -0.000706864 0)
(1.0177 -0.000692265 0)
(1.01776 -0.000676868 0)
(1.01781 -0.000660692 0)
(1.01786 -0.000643759 0)
(1.01791 -0.00062609 0)
(1.01797 -0.000607709 0)
(1.01802 -0.00058864 0)
(1.01808 -0.00056891 0)
(1.01813 -0.000548542 0)
(1.01819 -0.000527556 0)
(1.01824 -0.000505959 0)
(1.0183 -0.000483741 0)
(1.01836 -0.000460866 0)
(1.01842 -0.00043727 0)
(1.01847 -0.000412851 0)
(1.01853 -0.000387468 0)
(1.01859 -0.000360944 0)
(1.01866 -0.000333067 0)
(1.01872 -0.0003036 0)
(1.01878 -0.000272287 0)
(1.01884 -0.000238879 0)
(1.01891 -0.000203137 0)
(1.01897 -0.000164859 0)
(1.01904 -0.000123895 0)
(1.01911 -8.0161e-05 0)
(1.01918 -3.36447e-05 0)
(1.01925 1.55838e-05 0)
(1.01932 6.73767e-05 0)
(1.01939 0.000121511 0)
(1.01947 0.000177709 0)
(1.01954 0.000235643 0)
(1.01962 0.000294975 0)
(1.0197 0.000355351 0)
(1.01978 0.000416471 0)
(1.01986 0.00047802 0)
(1.01995 0.000539838 0)
(1.02003 0.000601656 0)
(1.02012 0.000663565 0)
(1.02021 0.000725205 0)
(1.02031 0.000787121 0)
(1.0204 0.000848402 0)
(1.0205 0.00091065 0)
(1.02059 0.000971146 0)
(1.0207 0.00103442 0)
(1.02079 0.00109251 0)
(1.02092 0.00115843 0)
(1.021 0.00120956 0)
(1.02115 0.00128303 0)
(1.02119 0.00131573 0)
(1.02141 0.0014115 0)
(1.01548 -0.000593811 0)
(1.01553 -0.000595581 0)
(1.01557 -0.000598537 0)
(1.01562 -0.00060265 0)
(1.01567 -0.000607888 0)
(1.01571 -0.000614213 0)
(1.01576 -0.000621574 0)
(1.01581 -0.000629914 0)
(1.01586 -0.000639163 0)
(1.0159 -0.000649248 0)
(1.01595 -0.000660086 0)
(1.016 -0.000671588 0)
(1.01604 -0.000683661 0)
(1.01609 -0.000696206 0)
(1.01614 -0.000709124 0)
(1.01618 -0.000722312 0)
(1.01623 -0.000735668 0)
(1.01628 -0.00074909 0)
(1.01633 -0.000762478 0)
(1.01637 -0.000775734 0)
(1.01642 -0.000788765 0)
(1.01647 -0.00080148 0)
(1.01651 -0.000813793 0)
(1.01656 -0.000825621 0)
(1.01661 -0.000836885 0)
(1.01666 -0.000847512 0)
(1.0167 -0.000857431 0)
(1.01675 -0.000866574 0)
(1.0168 -0.000874879 0)
(1.01684 -0.000882285 0)
(1.01689 -0.000888735 0)
(1.01694 -0.000894177 0)
(1.01699 -0.000898564 0)
(1.01703 -0.000901853 0)
(1.01708 -0.000904008 0)
(1.01713 -0.000905001 0)
(1.01718 -0.000904812 0)
(1.01722 -0.00090343 0)
(1.01727 -0.000900855 0)
(1.01732 -0.000897094 0)
(1.01737 -0.000892166 0)
(1.01742 -0.000886098 0)
(1.01747 -0.000878924 0)
(1.01752 -0.000870683 0)
(1.01757 -0.000861419 0)
(1.01762 -0.000851175 0)
(1.01767 -0.000839996 0)
(1.01772 -0.000827922 0)
(1.01777 -0.00081499 0)
(1.01782 -0.000801232 0)
(1.01787 -0.000786676 0)
(1.01792 -0.000771345 0)
(1.01798 -0.000755262 0)
(1.01803 -0.000738445 0)
(1.01808 -0.000720917 0)
(1.01814 -0.000702701 0)
(1.01819 -0.000683822 0)
(1.01825 -0.000664304 0)
(1.0183 -0.000644174 0)
(1.01836 -0.000623449 0)
(1.01841 -0.000602138 0)
(1.01847 -0.000580233 0)
(1.01853 -0.000557702 0)
(1.01859 -0.000534483 0)
(1.01864 -0.000510479 0)
(1.0187 -0.000485557 0)
(1.01876 -0.000459545 0)
(1.01883 -0.00043224 0)
(1.01889 -0.00040341 0)
(1.01895 -0.000372811 0)
(1.01901 -0.000340196 0)
(1.01908 -0.000305335 0)
(1.01914 -0.000268031 0)
(1.01921 -0.000228136 0)
(1.01928 -0.000185564 0)
(1.01935 -0.000140301 0)
(1.01942 -9.24142e-05 0)
(1.01949 -4.20447e-05 0)
(1.01956 1.05925e-05 0)
(1.01964 6.5229e-05 0)
(1.01972 0.000121546 0)
(1.0198 0.000179217 0)
(1.01988 0.000237893 0)
(1.01996 0.000297282 0)
(1.02004 0.000357076 0)
(1.02013 0.000417114 0)
(1.02021 0.000477135 0)
(1.0203 0.00053722 0)
(1.02039 0.000597023 0)
(1.02049 0.000657065 0)
(1.02058 0.000716471 0)
(1.02068 0.000776782 0)
(1.02078 0.000835381 0)
(1.02088 0.000896634 0)
(1.02098 0.000952877 0)
(1.0211 0.00101665 0)
(1.02118 0.00106614 0)
(1.02133 0.00113719 0)
(1.02138 0.00116883 0)
(1.02159 0.00126141 0)
(1.01567 -0.000709138 0)
(1.01571 -0.000710507 0)
(1.01576 -0.000713024 0)
(1.0158 -0.00071666 0)
(1.01585 -0.000721388 0)
(1.0159 -0.000727167 0)
(1.01594 -0.000733952 0)
(1.01599 -0.000741684 0)
(1.01604 -0.000750299 0)
(1.01608 -0.000759725 0)
(1.01613 -0.000769881 0)
(1.01618 -0.000780682 0)
(1.01622 -0.000792037 0)
(1.01627 -0.000803851 0)
(1.01632 -0.000816027 0)
(1.01637 -0.000828465 0)
(1.01641 -0.000841066 0)
(1.01646 -0.000853732 0)
(1.01651 -0.000866365 0)
(1.01655 -0.000878871 0)
(1.0166 -0.000891158 0)
(1.01665 -0.000903138 0)
(1.01669 -0.000914728 0)
(1.01674 -0.000925847 0)
(1.01679 -0.000936419 0)
(1.01683 -0.000946373 0)
(1.01688 -0.000955639 0)
(1.01693 -0.000964153 0)
(1.01698 -0.000971853 0)
(1.01702 -0.000978681 0)
(1.01707 -0.000984581 0)
(1.01712 -0.000989503 0)
(1.01716 -0.000993401 0)
(1.01721 -0.000996234 0)
(1.01726 -0.000997967 0)
(1.01731 -0.000998572 0)
(1.01735 -0.00099803 0)
(1.0174 -0.000996329 0)
(1.01745 -0.00099347 0)
(1.0175 -0.000989459 0)
(1.01755 -0.000984315 0)
(1.0176 -0.000978062 0)
(1.01764 -0.000970735 0)
(1.01769 -0.000962372 0)
(1.01774 -0.000953015 0)
(1.01779 -0.000942706 0)
(1.01784 -0.000931489 0)
(1.01789 -0.000919403 0)
(1.01794 -0.000906484 0)
(1.018 -0.000892765 0)
(1.01805 -0.000878273 0)
(1.0181 -0.00086303 0)
(1.01815 -0.000847059 0)
(1.0182 -0.000830378 0)
(1.01826 -0.000813011 0)
(1.01831 -0.000794977 0)
(1.01837 -0.000776304 0)
(1.01842 -0.000757015 0)
(1.01848 -0.000737137 0)
(1.01853 -0.000716687 0)
(1.01859 -0.000695676 0)
(1.01865 -0.000674096 0)
(1.0187 -0.000651919 0)
(1.01876 -0.000629086 0)
(1.01882 -0.000605506 0)
(1.01888 -0.00058105 0)
(1.01894 -0.000555555 0)
(1.019 -0.000528823 0)
(1.01907 -0.000500632 0)
(1.01913 -0.000470743 0)
(1.01919 -0.000438918 0)
(1.01926 -0.000404932 0)
(1.01932 -0.000368593 0)
(1.01939 -0.000329754 0)
(1.01946 -0.000288329 0)
(1.01953 -0.000244305 0)
(1.0196 -0.000197741 0)
(1.01967 -0.000148774 0)
(1.01975 -9.76097e-05 0)
(1.01982 -4.45092e-05 0)
(1.0199 1.02194e-05 0)
(1.01998 6.62575e-05 0)
(1.02006 0.000123266 0)
(1.02014 0.00018096 0)
(1.02022 0.000239034 0)
(1.02031 0.000297333 0)
(1.0204 0.000355598 0)
(1.02049 0.000413905 0)
(1.02058 0.000471917 0)
(1.02067 0.000530134 0)
(1.02077 0.000587715 0)
(1.02087 0.000646143 0)
(1.02096 0.000702899 0)
(1.02107 0.000762197 0)
(1.02117 0.000816641 0)
(1.02129 0.000878346 0)
(1.02137 0.00092623 0)
(1.02152 0.000994942 0)
(1.02157 0.00102556 0)
(1.02179 0.00111507 0)
(1.01585 -0.000820747 0)
(1.0159 -0.000821722 0)
(1.01595 -0.000823807 0)
(1.01599 -0.000826977 0)
(1.01604 -0.000831203 0)
(1.01609 -0.000836449 0)
(1.01613 -0.000842669 0)
(1.01618 -0.000849807 0)
(1.01623 -0.000857803 0)
(1.01627 -0.000866584 0)
(1.01632 -0.000876074 0)
(1.01637 -0.000886191 0)
(1.01641 -0.000896845 0)
(1.01646 -0.000907946 0)
(1.01651 -0.000919399 0)
(1.01655 -0.000931107 0)
(1.0166 -0.000942974 0)
(1.01665 -0.000954904 0)
(1.01669 -0.000966804 0)
(1.01674 -0.000978581 0)
(1.01679 -0.000990146 0)
(1.01683 -0.00100141 0)
(1.01688 -0.0010123 0)
(1.01693 -0.00102274 0)
(1.01697 -0.00103264 0)
(1.01702 -0.00104195 0)
(1.01707 -0.00105058 0)
(1.01711 -0.00105849 0)
(1.01716 -0.00106561 0)
(1.01721 -0.00107189 0)
(1.01725 -0.00107726 0)
(1.0173 -0.00108169 0)
(1.01735 -0.00108512 0)
(1.0174 -0.00108752 0)
(1.01744 -0.00108885 0)
(1.01749 -0.0010891 0)
(1.01754 -0.00108822 0)
(1.01759 -0.00108623 0)
(1.01763 -0.0010831 0)
(1.01768 -0.00107887 0)
(1.01773 -0.00107353 0)
(1.01778 -0.00106711 0)
(1.01783 -0.00105965 0)
(1.01788 -0.00105119 0)
(1.01793 -0.00104176 0)
(1.01798 -0.0010314 0)
(1.01803 -0.00102017 0)
(1.01808 -0.00100809 0)
(1.01813 -0.000995202 0)
(1.01818 -0.00098154 0)
(1.01823 -0.000967128 0)
(1.01828 -0.00095199 0)
(1.01834 -0.000936147 0)
(1.01839 -0.000919618 0)
(1.01844 -0.000902425 0)
(1.0185 -0.000884589 0)
(1.01855 -0.000866135 0)
(1.01861 -0.000847088 0)
(1.01866 -0.000827473 0)
(1.01872 -0.00080731 0)
(1.01877 -0.000786607 0)
(1.01883 -0.000765362 0)
(1.01889 -0.000743546 0)
(1.01895 -0.000721106 0)
(1.01901 -0.000697954 0)
(1.01907 -0.000673968 0)
(1.01913 -0.00064899 0)
(1.01919 -0.00062283 0)
(1.01925 -0.000595274 0)
(1.01931 -0.000566091 0)
(1.01938 -0.000535048 0)
(1.01944 -0.000501929 0)
(1.01951 -0.000466543 0)
(1.01958 -0.000428746 0)
(1.01965 -0.000388455 0)
(1.01972 -0.00034565 0)
(1.01979 -0.00030039 0)
(1.01986 -0.000252803 0)
(1.01993 -0.000203087 0)
(1.02001 -0.000151495 0)
(1.02009 -9.83255e-05 0)
(1.02017 -4.38883e-05 0)
(1.02025 1.14868e-05 0)
(1.02033 6.75194e-05 0)
(1.02041 0.000123913 0)
(1.0205 0.000180512 0)
(1.02059 0.000237063 0)
(1.02068 0.000293635 0)
(1.02077 0.000349903 0)
(1.02087 0.000406344 0)
(1.02096 0.000462149 0)
(1.02106 0.000518749 0)
(1.02116 0.000573714 0)
(1.02127 0.000631114 0)
(1.02136 0.000683811 0)
(1.02149 0.000743511 0)
(1.02157 0.000789843 0)
(1.02172 0.000856298 0)
(1.02177 0.000885913 0)
(1.02198 0.000972461 0)
(1.01605 -0.000928781 0)
(1.0161 -0.000929369 0)
(1.01614 -0.000931031 0)
(1.01619 -0.000933744 0)
(1.01624 -0.00093748 0)
(1.01628 -0.000942204 0)
(1.01633 -0.000947872 0)
(1.01637 -0.00095443 0)
(1.01642 -0.000961819 0)
(1.01647 -0.000969971 0)
(1.01651 -0.000978812 0)
(1.01656 -0.00098826 0)
(1.01661 -0.000998232 0)
(1.01665 -0.00100864 0)
(1.0167 -0.00101939 0)
(1.01675 -0.00103038 0)
(1.01679 -0.00104154 0)
(1.01684 -0.00105275 0)
(1.01689 -0.00106394 0)
(1.01693 -0.00107501 0)
(1.01698 -0.00108587 0)
(1.01703 -0.00109645 0)
(1.01707 -0.00110666 0)
(1.01712 -0.00111643 0)
(1.01717 -0.00112569 0)
(1.01721 -0.00113437 0)
(1.01726 -0.0011424 0)
(1.01731 -0.00114973 0)
(1.01735 -0.00115629 0)
(1.0174 -0.00116203 0)
(1.01745 -0.0011669 0)
(1.01749 -0.00117085 0)
(1.01754 -0.00117384 0)
(1.01759 -0.00117583 0)
(1.01764 -0.00117679 0)
(1.01768 -0.00117669 0)
(1.01773 -0.0011755 0)
(1.01778 -0.00117323 0)
(1.01783 -0.00116987 0)
(1.01787 -0.00116542 0)
(1.01792 -0.00115991 0)
(1.01797 -0.00115335 0)
(1.01802 -0.00114577 0)
(1.01807 -0.00113722 0)
(1.01812 -0.00112774 0)
(1.01817 -0.00111735 0)
(1.01822 -0.00110612 0)
(1.01827 -0.00109406 0)
(1.01832 -0.00108122 0)
(1.01837 -0.00106763 0)
(1.01842 -0.00105331 0)
(1.01847 -0.00103829 0)
(1.01853 -0.00102259 0)
(1.01858 -0.00100623 0)
(1.01863 -0.00098922 0)
(1.01869 -0.000971593 0)
(1.01874 -0.000953369 0)
(1.0188 -0.000934573 0)
(1.01885 -0.000915231 0)
(1.01891 -0.000895361 0)
(1.01896 -0.000874975 0)
(1.01902 -0.000854069 0)
(1.01908 -0.000832619 0)
(1.01914 -0.000810575 0)
(1.0192 -0.000787852 0)
(1.01926 -0.000764336 0)
(1.01932 -0.000739874 0)
(1.01938 -0.000714283 0)
(1.01944 -0.000687357 0)
(1.01951 -0.000658873 0)
(1.01957 -0.000628604 0)
(1.01964 -0.000596339 0)
(1.0197 -0.000561893 0)
(1.01977 -0.000525124 0)
(1.01984 -0.000485947 0)
(1.01991 -0.000444342 0)
(1.01998 -0.000400362 0)
(1.02005 -0.000354131 0)
(1.02013 -0.000305838 0)
(1.0202 -0.000255726 0)
(1.02028 -0.000204085 0)
(1.02036 -0.000151216 0)
(1.02044 -9.74408e-05 0)
(1.02053 -4.30327e-05 0)
(1.02061 1.17185e-05 0)
(1.0207 6.66566e-05 0)
(1.02079 0.000121536 0)
(1.02088 0.000176417 0)
(1.02097 0.000230985 0)
(1.02106 0.000285699 0)
(1.02116 0.000339777 0)
(1.02126 0.000394599 0)
(1.02136 0.000447826 0)
(1.02147 0.000503385 0)
(1.02156 0.000554386 0)
(1.02169 0.000612143 0)
(1.02177 0.000656969 0)
(1.02192 0.000721242 0)
(1.02197 0.000749888 0)
(1.02219 0.000833573 0)
(1.01626 -0.00103337 0)
(1.0163 -0.00103358 0)
(1.01635 -0.00103483 0)
(1.01639 -0.0010371 0)
(1.01644 -0.00104036 0)
(1.01649 -0.00104457 0)
(1.01653 -0.0010497 0)
(1.01658 -0.00105569 0)
(1.01662 -0.00106249 0)
(1.01667 -0.00107002 0)
(1.01672 -0.00107823 0)
(1.01676 -0.00108703 0)
(1.01681 -0.00109633 0)
(1.01686 -0.00110606 0)
(1.0169 -0.00111612 0)
(1.01695 -0.00112643 0)
(1.017 -0.00113689 0)
(1.01704 -0.00114741 0)
(1.01709 -0.0011579 0)
(1.01714 -0.00116828 0)
(1.01718 -0.00117847 0)
(1.01723 -0.00118838 0)
(1.01728 -0.00119793 0)
(1.01732 -0.00120706 0)
(1.01737 -0.00121569 0)
(1.01742 -0.00122377 0)
(1.01746 -0.00123121 0)
(1.01751 -0.00123798 0)
(1.01755 -0.001244 0)
(1.0176 -0.00124923 0)
(1.01765 -0.00125362 0)
(1.01769 -0.00125712 0)
(1.01774 -0.00125969 0)
(1.01779 -0.00126129 0)
(1.01784 -0.00126188 0)
(1.01788 -0.00126145 0)
(1.01793 -0.00125998 0)
(1.01798 -0.00125745 0)
(1.01803 -0.00125386 0)
(1.01807 -0.00124922 0)
(1.01812 -0.00124355 0)
(1.01817 -0.00123686 0)
(1.01822 -0.00122919 0)
(1.01827 -0.00122057 0)
(1.01832 -0.00121104 0)
(1.01837 -0.00120065 0)
(1.01842 -0.00118942 0)
(1.01847 -0.0011774 0)
(1.01852 -0.00116462 0)
(1.01857 -0.00115111 0)
(1.01862 -0.0011369 0)
(1.01867 -0.00112201 0)
(1.01872 -0.00110646 0)
(1.01878 -0.00109027 0)
(1.01883 -0.00107346 0)
(1.01889 -0.00105605 0)
(1.01894 -0.00103806 0)
(1.01899 -0.00101952 0)
(1.01905 -0.00100046 0)
(1.01911 -0.000980888 0)
(1.01916 -0.000960822 0)
(1.01922 -0.000940259 0)
(1.01928 -0.000919178 0)
(1.01934 -0.000897529 0)
(1.0194 -0.000875236 0)
(1.01946 -0.000852187 0)
(1.01952 -0.000828237 0)
(1.01958 -0.000803211 0)
(1.01964 -0.000776908 0)
(1.01971 -0.000749113 0)
(1.01977 -0.000719607 0)
(1.01984 -0.000688183 0)
(1.0199 -0.000654662 0)
(1.01997 -0.000618902 0)
(1.02004 -0.00058082 0)
(1.02011 -0.000540394 0)
(1.02018 -0.000497672 0)
(1.02025 -0.000452771 0)
(1.02033 -0.000405872 0)
(1.02041 -0.000357212 0)
(1.02048 -0.000307068 0)
(1.02056 -0.000255736 0)
(1.02065 -0.000203525 0)
(1.02073 -0.000150705 0)
(1.02081 -9.75587e-05 0)
(1.0209 -4.42411e-05 0)
(1.02099 9.00736e-06 0)
(1.02108 6.22414e-05 0)
(1.02117 0.000115155 0)
(1.02127 0.000168187 0)
(1.02136 0.000220586 0)
(1.02147 0.000273683 0)
(1.02156 0.00032522 0)
(1.02167 0.000378993 0)
(1.02177 0.000428349 0)
(1.02189 0.000484224 0)
(1.02197 0.000527588 0)
(1.02213 0.000589751 0)
(1.02218 0.000617457 0)
(1.02239 0.000698376 0)
(1.01647 -0.00113465 0)
(1.01651 -0.00113449 0)
(1.01656 -0.00113534 0)
(1.0166 -0.00113717 0)
(1.01665 -0.00113996 0)
(1.0167 -0.00114367 0)
(1.01674 -0.00114827 0)
(1.01679 -0.00115371 0)
(1.01683 -0.00115993 0)
(1.01688 -0.00116687 0)
(1.01693 -0.00117446 0)
(1.01697 -0.00118262 0)
(1.01702 -0.00119128 0)
(1.01707 -0.00120035 0)
(1.01711 -0.00120974 0)
(1.01716 -0.00121937 0)
(1.01721 -0.00122915 0)
(1.01725 -0.001239 0)
(1.0173 -0.00124882 0)
(1.01735 -0.00125853 0)
(1.01739 -0.00126806 0)
(1.01744 -0.00127732 0)
(1.01748 -0.00128624 0)
(1.01753 -0.00129474 0)
(1.01758 -0.00130277 0)
(1.01762 -0.00131026 0)
(1.01767 -0.00131714 0)
(1.01772 -0.00132336 0)
(1.01776 -0.00132887 0)
(1.01781 -0.00133361 0)
(1.01786 -0.00133753 0)
(1.0179 -0.0013406 0)
(1.01795 -0.00134276 0)
(1.018 -0.00134399 0)
(1.01804 -0.00134424 0)
(1.01809 -0.00134351 0)
(1.01814 -0.00134176 0)
(1.01818 -0.00133898 0)
(1.01823 -0.00133519 0)
(1.01828 -0.00133037 0)
(1.01833 -0.00132455 0)
(1.01838 -0.00131775 0)
(1.01842 -0.00130999 0)
(1.01847 -0.00130132 0)
(1.01852 -0.00129176 0)
(1.01857 -0.00128136 0)
(1.01862 -0.00127015 0)
(1.01867 -0.00125818 0)
(1.01872 -0.00124547 0)
(1.01877 -0.00123206 0)
(1.01883 -0.00121796 0)
(1.01888 -0.00120321 0)
(1.01893 -0.00118782 0)
(1.01898 -0.00117181 0)
(1.01904 -0.0011552 0)
(1.01909 -0.00113801 0)
(1.01915 -0.00112027 0)
(1.0192 -0.00110199 0)
(1.01926 -0.00108321 0)
(1.01931 -0.00106394 0)
(1.01937 -0.0010442 0)
(1.01943 -0.00102398 0)
(1.01949 -0.00100327 0)
(1.01954 -0.000982012 0)
(1.0196 -0.000960146 0)
(1.01966 -0.000937561 0)
(1.01972 -0.000914118 0)
(1.01979 -0.000889649 0)
(1.01985 -0.00086396 0)
(1.01991 -0.000836844 0)
(1.01998 -0.000808088 0)
(1.02004 -0.000777492 0)
(1.02011 -0.000744878 0)
(1.02018 -0.000710109 0)
(1.02025 -0.000673102 0)
(1.02032 -0.000633831 0)
(1.02039 -0.000592342 0)
(1.02046 -0.000548743 0)
(1.02054 -0.000503211 0)
(1.02061 -0.000455971 0)
(1.02069 -0.000407294 0)
(1.02077 -0.000357463 0)
(1.02085 -0.000306782 0)
(1.02094 -0.000255514 0)
(1.02102 -0.000203934 0)
(1.02111 -0.000152198 0)
(1.0212 -0.000100539 0)
(1.02129 -4.89091e-05 0)
(1.02138 2.39358e-06 0)
(1.02148 5.37919e-05 0)
(1.02158 0.000104558 0)
(1.02168 0.000155979 0)
(1.02177 0.000205875 0)
(1.02189 0.000257916 0)
(1.02198 0.000305674 0)
(1.02211 0.000359725 0)
(1.02219 0.00040167 0)
(1.02234 0.000461792 0)
(1.02239 0.000488584 0)
(1.02261 0.000566831 0)
(1.01668 -0.00123274 0)
(1.01673 -0.00123222 0)
(1.01678 -0.00123267 0)
(1.01682 -0.00123408 0)
(1.01687 -0.00123641 0)
(1.01691 -0.00123964 0)
(1.01696 -0.00124372 0)
(1.01701 -0.00124862 0)
(1.01705 -0.00125428 0)
(1.0171 -0.00126063 0)
(1.01714 -0.00126762 0)
(1.01719 -0.00127516 0)
(1.01724 -0.00128319 0)
(1.01728 -0.00129161 0)
(1.01733 -0.00130035 0)
(1.01738 -0.00130933 0)
(1.01742 -0.00131845 0)
(1.01747 -0.00132764 0)
(1.01752 -0.00133681 0)
(1.01756 -0.00134587 0)
(1.01761 -0.00135476 0)
(1.01765 -0.00136339 0)
(1.0177 -0.00137169 0)
(1.01775 -0.0013796 0)
(1.01779 -0.00138704 0)
(1.01784 -0.00139396 0)
(1.01789 -0.00140029 0)
(1.01793 -0.00140599 0)
(1.01798 -0.001411 0)
(1.01802 -0.00141526 0)
(1.01807 -0.00141874 0)
(1.01812 -0.00142139 0)
(1.01816 -0.00142316 0)
(1.01821 -0.00142403 0)
(1.01826 -0.00142397 0)
(1.0183 -0.00142294 0)
(1.01835 -0.00142093 0)
(1.0184 -0.00141793 0)
(1.01845 -0.00141393 0)
(1.01849 -0.00140895 0)
(1.01854 -0.001403 0)
(1.01859 -0.0013961 0)
(1.01864 -0.00138827 0)
(1.01869 -0.00137955 0)
(1.01874 -0.00136997 0)
(1.01879 -0.00135958 0)
(1.01884 -0.0013484 0)
(1.01889 -0.00133648 0)
(1.01894 -0.00132385 0)
(1.01899 -0.00131054 0)
(1.01904 -0.00129656 0)
(1.01909 -0.00128196 0)
(1.01914 -0.00126673 0)
(1.0192 -0.00125091 0)
(1.01925 -0.0012345 0)
(1.0193 -0.00121754 0)
(1.01936 -0.00120005 0)
(1.01941 -0.00118204 0)
(1.01947 -0.00116354 0)
(1.01953 -0.00114457 0)
(1.01958 -0.00112515 0)
(1.01964 -0.00110528 0)
(1.0197 -0.00108493 0)
(1.01976 -0.00106407 0)
(1.01982 -0.00104263 0)
(1.01988 -0.0010205 0)
(1.01994 -0.000997556 0)
(1.02 -0.000973636 0)
(1.02006 -0.000948551 0)
(1.02013 -0.000922102 0)
(1.02019 -0.000894083 0)
(1.02026 -0.000864297 0)
(1.02032 -0.000832573 0)
(1.02039 -0.000798776 0)
(1.02046 -0.000762821 0)
(1.02053 -0.000724682 0)
(1.0206 -0.000684399 0)
(1.02068 -0.000642077 0)
(1.02075 -0.000597882 0)
(1.02083 -0.000552032 0)
(1.02091 -0.000504788 0)
(1.02099 -0.000456426 0)
(1.02107 -0.00040724 0)
(1.02115 -0.000357486 0)
(1.02124 -0.000307435 0)
(1.02133 -0.000257239 0)
(1.02142 -0.000207129 0)
(1.02151 -0.000157062 0)
(1.0216 -0.000107326 0)
(1.0217 -5.75168e-05 0)
(1.02179 -8.33678e-06 0)
(1.0219 4.14565e-05 0)
(1.02199 8.97582e-05 0)
(1.0221 0.000140119 0)
(1.0222 0.000186325 0)
(1.02233 0.00023861 0)
(1.02241 0.000279178 0)
(1.02256 0.000337324 0)
(1.02261 0.000363229 0)
(1.02283 0.000438893 0)
(1.01691 -0.00132775 0)
(1.01696 -0.00132688 0)
(1.017 -0.00132695 0)
(1.01705 -0.00132793 0)
(1.01709 -0.00132982 0)
(1.01714 -0.00133257 0)
(1.01718 -0.00133616 0)
(1.01723 -0.00134053 0)
(1.01728 -0.00134564 0)
(1.01732 -0.00135143 0)
(1.01737 -0.00135783 0)
(1.01742 -0.00136477 0)
(1.01746 -0.00137217 0)
(1.01751 -0.00137997 0)
(1.01755 -0.00138808 0)
(1.0176 -0.00139642 0)
(1.01765 -0.0014049 0)
(1.01769 -0.00141345 0)
(1.01774 -0.00142198 0)
(1.01779 -0.00143042 0)
(1.01783 -0.00143868 0)
(1.01788 -0.0014467 0)
(1.01792 -0.0014544 0)
(1.01797 -0.00146172 0)
(1.01802 -0.0014686 0)
(1.01806 -0.00147497 0)
(1.01811 -0.00148078 0)
(1.01815 -0.00148597 0)
(1.0182 -0.00149049 0)
(1.01825 -0.0014943 0)
(1.01829 -0.00149735 0)
(1.01834 -0.0014996 0)
(1.01839 -0.001501 0)
(1.01843 -0.00150153 0)
(1.01848 -0.00150115 0)
(1.01853 -0.00149984 0)
(1.01857 -0.00149758 0)
(1.01862 -0.00149437 0)
(1.01867 -0.00149019 0)
(1.01872 -0.00148506 0)
(1.01876 -0.00147899 0)
(1.01881 -0.00147199 0)
(1.01886 -0.0014641 0)
(1.01891 -0.00145534 0)
(1.01896 -0.00144575 0)
(1.01901 -0.00143537 0)
(1.01906 -0.00142424 0)
(1.01911 -0.00141238 0)
(1.01916 -0.00139983 0)
(1.01921 -0.00138663 0)
(1.01926 -0.00137278 0)
(1.01931 -0.00135832 0)
(1.01937 -0.00134327 0)
(1.01942 -0.00132763 0)
(1.01947 -0.00131144 0)
(1.01953 -0.00129471 0)
(1.01958 -0.00127746 0)
(1.01964 -0.00125972 0)
(1.01969 -0.0012415 0)
(1.01975 -0.00122284 0)
(1.0198 -0.00120374 0)
(1.01986 -0.00118421 0)
(1.01992 -0.00116422 0)
(1.01998 -0.00114375 0)
(1.02004 -0.00112272 0)
(1.0201 -0.00110105 0)
(1.02016 -0.0010786 0)
(1.02022 -0.00105522 0)
(1.02029 -0.00103072 0)
(1.02035 -0.00100493 0)
(1.02041 -0.000977631 0)
(1.02048 -0.00094864 0)
(1.02055 -0.000917787 0)
(1.02061 -0.000884941 0)
(1.02068 -0.000850015 0)
(1.02075 -0.000812983 0)
(1.02083 -0.000773881 0)
(1.0209 -0.000732806 0)
(1.02098 -0.000689918 0)
(1.02105 -0.000645427 0)
(1.02113 -0.000599584 0)
(1.02121 -0.000552655 0)
(1.02129 -0.000504928 0)
(1.02138 -0.000456653 0)
(1.02146 -0.000408092 0)
(1.02155 -0.000359398 0)
(1.02164 -0.000310797 0)
(1.02173 -0.00026225 0)
(1.02183 -0.000214038 0)
(1.02192 -0.000165774 0)
(1.02202 -0.000118135 0)
(1.02212 -6.99225e-05 0)
(1.02222 -2.31684e-05 0)
(1.02233 2.55624e-05 0)
(1.02242 7.02631e-05 0)
(1.02255 0.000120835 0)
(1.02263 0.000160066 0)
(1.02279 0.000216299 0)
(1.02284 0.000241343 0)
(1.02306 0.000314507 0)
(1.01714 -0.00141979 0)
(1.01719 -0.00141858 0)
(1.01723 -0.00141827 0)
(1.01728 -0.00141885 0)
(1.01733 -0.00142031 0)
(1.01737 -0.0014226 0)
(1.01742 -0.0014257 0)
(1.01746 -0.00142956 0)
(1.01751 -0.00143413 0)
(1.01756 -0.00143936 0)
(1.0176 -0.00144519 0)
(1.01765 -0.00145154 0)
(1.01769 -0.00145835 0)
(1.01774 -0.00146554 0)
(1.01779 -0.00147303 0)
(1.01783 -0.00148075 0)
(1.01788 -0.00148861 0)
(1.01792 -0.00149653 0)
(1.01797 -0.00150445 0)
(1.01802 -0.00151227 0)
(1.01806 -0.00151993 0)
(1.01811 -0.00152735 0)
(1.01815 -0.00153448 0)
(1.0182 -0.00154123 0)
(1.01825 -0.00154756 0)
(1.01829 -0.0015534 0)
(1.01834 -0.00155869 0)
(1.01839 -0.00156339 0)
(1.01843 -0.00156745 0)
(1.01848 -0.00157082 0)
(1.01852 -0.00157346 0)
(1.01857 -0.00157531 0)
(1.01862 -0.00157636 0)
(1.01866 -0.00157656 0)
(1.01871 -0.00157588 0)
(1.01876 -0.00157431 0)
(1.0188 -0.00157182 0)
(1.01885 -0.0015684 0)
(1.0189 -0.00156405 0)
(1.01895 -0.00155878 0)
(1.01899 -0.00155259 0)
(1.01904 -0.00154551 0)
(1.01909 -0.00153756 0)
(1.01914 -0.00152878 0)
(1.01919 -0.00151919 0)
(1.01924 -0.00150883 0)
(1.01929 -0.00149774 0)
(1.01934 -0.00148595 0)
(1.01939 -0.00147349 0)
(1.01944 -0.00146039 0)
(1.01949 -0.00144668 0)
(1.01954 -0.00143237 0)
(1.01959 -0.00141749 0)
(1.01965 -0.00140205 0)
(1.0197 -0.00138607 0)
(1.01975 -0.00136956 0)
(1.01981 -0.00135256 0)
(1.01986 -0.00133509 0)
(1.01992 -0.00131716 0)
(1.01998 -0.00129879 0)
(1.02003 -0.00128001 0)
(1.02009 -0.00126082 0)
(1.02015 -0.00124119 0)
(1.02021 -0.0012211 0)
(1.02027 -0.00120049 0)
(1.02033 -0.00117926 0)
(1.02039 -0.00115729 0)
(1.02045 -0.00113444 0)
(1.02051 -0.00111053 0)
(1.02058 -0.00108537 0)
(1.02064 -0.00105878 0)
(1.02071 -0.00103056 0)
(1.02078 -0.00100056 0)
(1.02084 -0.000968644 0)
(1.02091 -0.000934724 0)
(1.02098 -0.000898774 0)
(1.02106 -0.000860825 0)
(1.02113 -0.000820969 0)
(1.02121 -0.000779359 0)
(1.02128 -0.000736194 0)
(1.02136 -0.000691718 0)
(1.02144 -0.000646189 0)
(1.02152 -0.000599886 0)
(1.02161 -0.000553052 0)
(1.02169 -0.000505945 0)
(1.02178 -0.000458714 0)
(1.02187 -0.000411581 0)
(1.02196 -0.000364513 0)
(1.02206 -0.000317784 0)
(1.02215 -0.000271021 0)
(1.02225 -0.00022488 0)
(1.02235 -0.000178202 0)
(1.02245 -0.00013295 0)
(1.02256 -8.58009e-05 0)
(1.02266 -4.25618e-05 0)
(1.02278 6.34973e-06 0)
(1.02287 4.42836e-05 0)
(1.02302 9.86628e-05 0)
(1.02307 0.000122872 0)
(1.02329 0.000193616 0)
(1.01738 -0.00150898 0)
(1.01743 -0.00150743 0)
(1.01747 -0.00150675 0)
(1.01752 -0.00150694 0)
(1.01757 -0.00150797 0)
(1.01761 -0.00150981 0)
(1.01766 -0.00151243 0)
(1.0177 -0.0015158 0)
(1.01775 -0.00151985 0)
(1.0178 -0.00152454 0)
(1.01784 -0.00152981 0)
(1.01789 -0.00153559 0)
(1.01793 -0.00154181 0)
(1.01798 -0.00154841 0)
(1.01803 -0.0015553 0)
(1.01807 -0.00156241 0)
(1.01812 -0.00156967 0)
(1.01816 -0.00157699 0)
(1.01821 -0.0015843 0)
(1.01826 -0.00159153 0)
(1.0183 -0.0015986 0)
(1.01835 -0.00160545 0)
(1.01839 -0.00161201 0)
(1.01844 -0.00161821 0)
(1.01849 -0.00162401 0)
(1.01853 -0.00162933 0)
(1.01858 -0.00163413 0)
(1.01862 -0.00163836 0)
(1.01867 -0.00164197 0)
(1.01872 -0.00164491 0)
(1.01876 -0.00164715 0)
(1.01881 -0.00164863 0)
(1.01885 -0.00164933 0)
(1.0189 -0.00164922 0)
(1.01895 -0.00164826 0)
(1.01899 -0.00164643 0)
(1.01904 -0.00164371 0)
(1.01909 -0.0016401 0)
(1.01914 -0.00163559 0)
(1.01918 -0.00163018 0)
(1.01923 -0.00162389 0)
(1.01928 -0.00161674 0)
(1.01933 -0.00160874 0)
(1.01938 -0.00159993 0)
(1.01942 -0.00159035 0)
(1.01947 -0.00158002 0)
(1.01952 -0.00156897 0)
(1.01957 -0.00155726 0)
(1.01962 -0.00154489 0)
(1.01968 -0.00153191 0)
(1.01973 -0.00151833 0)
(1.01978 -0.00150418 0)
(1.01983 -0.00148947 0)
(1.01988 -0.00147422 0)
(1.01994 -0.00145845 0)
(1.01999 -0.00144217 0)
(1.02005 -0.00142542 0)
(1.0201 -0.00140821 0)
(1.02016 -0.00139056 0)
(1.02021 -0.0013725 0)
(1.02027 -0.00135403 0)
(1.02033 -0.00133517 0)
(1.02039 -0.0013159 0)
(1.02044 -0.00129619 0)
(1.0205 -0.00127597 0)
(1.02056 -0.00125518 0)
(1.02063 -0.00123368 0)
(1.02069 -0.00121135 0)
(1.02075 -0.001188 0)
(1.02081 -0.00116347 0)
(1.02088 -0.00113757 0)
(1.02095 -0.00111011 0)
(1.02101 -0.00108094 0)
(1.02108 -0.00104993 0)
(1.02115 -0.00101699 0)
(1.02122 -0.0009821 0)
(1.02129 -0.000945276 0)
(1.02137 -0.00090661 0)
(1.02144 -0.000866246 0)
(1.02152 -0.000824376 0)
(1.0216 -0.000781235 0)
(1.02168 -0.000737072 0)
(1.02176 -0.000692157 0)
(1.02185 -0.000646728 0)
(1.02193 -0.000601036 0)
(1.02202 -0.00055523 0)
(1.02211 -0.000509527 0)
(1.0222 -0.000463897 0)
(1.0223 -0.000418609 0)
(1.02239 -0.000373304 0)
(1.02249 -0.000328618 0)
(1.02259 -0.00028343 0)
(1.02269 -0.000239637 0)
(1.0228 -0.000194022 0)
(1.0229 -0.000152201 0)
(1.02302 -0.0001049 0)
(1.02311 -6.82253e-05 0)
(1.02326 -1.56418e-05 0)
(1.02331 7.75511e-06 0)
(1.02353 7.61564e-05 0)
(1.01763 -0.00159539 0)
(1.01768 -0.00159352 0)
(1.01772 -0.00159249 0)
(1.01777 -0.0015923 0)
(1.01781 -0.00159291 0)
(1.01786 -0.00159432 0)
(1.01791 -0.00159648 0)
(1.01795 -0.00159935 0)
(1.018 -0.0016029 0)
(1.01804 -0.00160706 0)
(1.01809 -0.00161178 0)
(1.01814 -0.00161701 0)
(1.01818 -0.00162266 0)
(1.01823 -0.00162868 0)
(1.01827 -0.00163499 0)
(1.01832 -0.00164152 0)
(1.01837 -0.00164818 0)
(1.01841 -0.00165492 0)
(1.01846 -0.00166164 0)
(1.0185 -0.00166829 0)
(1.01855 -0.0016748 0)
(1.01859 -0.00168108 0)
(1.01864 -0.0016871 0)
(1.01869 -0.00169277 0)
(1.01873 -0.00169804 0)
(1.01878 -0.00170287 0)
(1.01882 -0.00170719 0)
(1.01887 -0.00171096 0)
(1.01892 -0.00171413 0)
(1.01896 -0.00171666 0)
(1.01901 -0.00171851 0)
(1.01905 -0.00171964 0)
(1.0191 -0.00172001 0)
(1.01915 -0.00171959 0)
(1.01919 -0.00171835 0)
(1.01924 -0.00171628 0)
(1.01929 -0.00171335 0)
(1.01933 -0.00170955 0)
(1.01938 -0.00170489 0)
(1.01943 -0.00169936 0)
(1.01948 -0.00169297 0)
(1.01952 -0.00168575 0)
(1.01957 -0.00167771 0)
(1.01962 -0.00166888 0)
(1.01967 -0.00165931 0)
(1.01972 -0.00164901 0)
(1.01977 -0.00163802 0)
(1.01982 -0.00162637 0)
(1.01987 -0.00161411 0)
(1.01992 -0.00160124 0)
(1.01997 -0.0015878 0)
(1.02002 -0.0015738 0)
(1.02008 -0.00155926 0)
(1.02013 -0.0015442 0)
(1.02018 -0.00152864 0)
(1.02024 -0.0015126 0)
(1.02029 -0.00149609 0)
(1.02035 -0.00147914 0)
(1.0204 -0.00146177 0)
(1.02046 -0.001444 0)
(1.02051 -0.00142585 0)
(1.02057 -0.00140731 0)
(1.02063 -0.00138839 0)
(1.02069 -0.00136905 0)
(1.02075 -0.00134923 0)
(1.02081 -0.00132886 0)
(1.02087 -0.00130783 0)
(1.02093 -0.001286 0)
(1.021 -0.00126321 0)
(1.02106 -0.00123929 0)
(1.02112 -0.00121405 0)
(1.02119 -0.00118734 0)
(1.02126 -0.00115898 0)
(1.02133 -0.00112885 0)
(1.0214 -0.00109687 0)
(1.02147 -0.00106301 0)
(1.02154 -0.00102728 0)
(1.02161 -0.000989775 0)
(1.02169 -0.000950627 0)
(1.02177 -0.00091002 0)
(1.02184 -0.00086818 0)
(1.02193 -0.000825348 0)
(1.02201 -0.000781786 0)
(1.02209 -0.000737726 0)
(1.02218 -0.000693413 0)
(1.02227 -0.000648994 0)
(1.02236 -0.000604681 0)
(1.02245 -0.00056045 0)
(1.02254 -0.000516563 0)
(1.02264 -0.000472675 0)
(1.02274 -0.000429402 0)
(1.02284 -0.000385659 0)
(1.02294 -0.000343282 0)
(1.02305 -0.000299156 0)
(1.02314 -0.000258712 0)
(1.02327 -0.000212972 0)
(1.02335 -0.00017752 0)
(1.02351 -0.000126677 0)
(1.02356 -0.000104069 0)
(1.02378 -3.79374e-05 0)
(1.01789 -0.00167915 0)
(1.01793 -0.00167696 0)
(1.01798 -0.00167558 0)
(1.01802 -0.00167501 0)
(1.01807 -0.00167523 0)
(1.01812 -0.00167621 0)
(1.01816 -0.00167791 0)
(1.01821 -0.00168032 0)
(1.01825 -0.00168337 0)
(1.0183 -0.00168702 0)
(1.01834 -0.00169122 0)
(1.01839 -0.0016959 0)
(1.01844 -0.001701 0)
(1.01848 -0.00170646 0)
(1.01853 -0.0017122 0)
(1.01857 -0.00171815 0)
(1.01862 -0.00172424 0)
(1.01867 -0.00173041 0)
(1.01871 -0.00173656 0)
(1.01876 -0.00174265 0)
(1.0188 -0.0017486 0)
(1.01885 -0.00175434 0)
(1.0189 -0.00175982 0)
(1.01894 -0.00176498 0)
(1.01899 -0.00176975 0)
(1.01903 -0.00177409 0)
(1.01908 -0.00177795 0)
(1.01912 -0.00178127 0)
(1.01917 -0.00178402 0)
(1.01922 -0.00178616 0)
(1.01926 -0.00178763 0)
(1.01931 -0.00178841 0)
(1.01935 -0.00178846 0)
(1.0194 -0.00178775 0)
(1.01945 -0.00178625 0)
(1.01949 -0.00178394 0)
(1.01954 -0.0017808 0)
(1.01959 -0.00177683 0)
(1.01963 -0.00177202 0)
(1.01968 -0.00176637 0)
(1.01973 -0.0017599 0)
(1.01978 -0.00175261 0)
(1.01983 -0.00174454 0)
(1.01987 -0.0017357 0)
(1.01992 -0.00172613 0)
(1.01997 -0.00171587 0)
(1.02002 -0.00170494 0)
(1.02007 -0.00169337 0)
(1.02012 -0.0016812 0)
(1.02017 -0.00166845 0)
(1.02022 -0.00165514 0)
(1.02028 -0.0016413 0)
(1.02033 -0.00162693 0)
(1.02038 -0.00161207 0)
(1.02044 -0.00159672 0)
(1.02049 -0.0015809 0)
(1.02054 -0.00156464 0)
(1.0206 -0.00154794 0)
(1.02065 -0.00153085 0)
(1.02071 -0.00151337 0)
(1.02077 -0.00149552 0)
(1.02082 -0.00147731 0)
(1.02088 -0.00145873 0)
(1.02094 -0.00143974 0)
(1.021 -0.00142031 0)
(1.02106 -0.00140036 0)
(1.02112 -0.00137978 0)
(1.02119 -0.00135844 0)
(1.02125 -0.00133619 0)
(1.02131 -0.00131286 0)
(1.02138 -0.00128828 0)
(1.02144 -0.00126228 0)
(1.02151 -0.00123471 0)
(1.02158 -0.00120545 0)
(1.02165 -0.0011744 0)
(1.02172 -0.00114154 0)
(1.02179 -0.00110689 0)
(1.02187 -0.00107051 0)
(1.02194 -0.00103255 0)
(1.02202 -0.000993174 0)
(1.0221 -0.000952602 0)
(1.02218 -0.000911068 0)
(1.02226 -0.000868824 0)
(1.02235 -0.000826097 0)
(1.02243 -0.000783126 0)
(1.02252 -0.000740056 0)
(1.02261 -0.000697096 0)
(1.0227 -0.000654225 0)
(1.0228 -0.000611699 0)
(1.02289 -0.000569186 0)
(1.02299 -0.000527285 0)
(1.02309 -0.000484945 0)
(1.02319 -0.000443943 0)
(1.0233 -0.000401261 0)
(1.0234 -0.000362154 0)
(1.02353 -0.000317928 0)
(1.02361 -0.000283663 0)
(1.02377 -0.000234508 0)
(1.02381 -0.000212666 0)
(1.02403 -0.000148735 0)
(1.01815 -0.00176033 0)
(1.0182 -0.00175783 0)
(1.01824 -0.00175612 0)
(1.01829 -0.00175519 0)
(1.01833 -0.00175501 0)
(1.01838 -0.00175557 0)
(1.01843 -0.00175684 0)
(1.01847 -0.00175878 0)
(1.01852 -0.00176136 0)
(1.01856 -0.00176451 0)
(1.01861 -0.00176819 0)
(1.01865 -0.00177235 0)
(1.0187 -0.00177691 0)
(1.01875 -0.00178182 0)
(1.01879 -0.00178701 0)
(1.01884 -0.0017924 0)
(1.01888 -0.00179794 0)
(1.01893 -0.00180354 0)
(1.01898 -0.00180915 0)
(1.01902 -0.00181469 0)
(1.01907 -0.0018201 0)
(1.01911 -0.00182532 0)
(1.01916 -0.00183028 0)
(1.0192 -0.00183493 0)
(1.01925 -0.00183922 0)
(1.0193 -0.00184309 0)
(1.01934 -0.00184649 0)
(1.01939 -0.00184939 0)
(1.01943 -0.00185173 0)
(1.01948 -0.00185347 0)
(1.01952 -0.00185459 0)
(1.01957 -0.00185503 0)
(1.01962 -0.00185477 0)
(1.01966 -0.00185377 0)
(1.01971 -0.00185202 0)
(1.01976 -0.00184949 0)
(1.0198 -0.00184616 0)
(1.01985 -0.00184202 0)
(1.0199 -0.00183707 0)
(1.01994 -0.0018313 0)
(1.01999 -0.00182474 0)
(1.02004 -0.0018174 0)
(1.02009 -0.00180929 0)
(1.02014 -0.00180045 0)
(1.02018 -0.0017909 0)
(1.02023 -0.00178067 0)
(1.02028 -0.0017698 0)
(1.02033 -0.00175831 0)
(1.02038 -0.00174624 0)
(1.02043 -0.0017336 0)
(1.02049 -0.00172043 0)
(1.02054 -0.00170674 0)
(1.02059 -0.00169255 0)
(1.02064 -0.00167788 0)
(1.0207 -0.00166273 0)
(1.02075 -0.00164714 0)
(1.0208 -0.00163111 0)
(1.02086 -0.00161468 0)
(1.02092 -0.00159785 0)
(1.02097 -0.00158065 0)
(1.02103 -0.00156311 0)
(1.02109 -0.00154521 0)
(1.02114 -0.00152696 0)
(1.0212 -0.00150833 0)
(1.02126 -0.00148928 0)
(1.02132 -0.00146973 0)
(1.02138 -0.00144959 0)
(1.02145 -0.00142872 0)
(1.02151 -0.001407 0)
(1.02157 -0.00138425 0)
(1.02164 -0.00136031 0)
(1.0217 -0.00133501 0)
(1.02177 -0.00130821 0)
(1.02184 -0.00127978 0)
(1.02191 -0.00124964 0)
(1.02198 -0.00121776 0)
(1.02205 -0.00118415 0)
(1.02213 -0.00114888 0)
(1.0222 -0.00111207 0)
(1.02228 -0.00107389 0)
(1.02236 -0.00103455 0)
(1.02244 -0.000994283 0)
(1.02252 -0.000953323 0)
(1.02261 -0.000911893 0)
(1.02269 -0.000870229 0)
(1.02278 -0.000828471 0)
(1.02287 -0.000786825 0)
(1.02296 -0.000745276 0)
(1.02306 -0.000704072 0)
(1.02316 -0.000662895 0)
(1.02325 -0.000622326 0)
(1.02336 -0.000581348 0)
(1.02345 -0.00054168 0)
(1.02357 -0.000500399 0)
(1.02366 -0.00046259 0)
(1.02379 -0.000419833 0)
(1.02387 -0.000386721 0)
(1.02403 -0.000339202 0)
(1.02408 -0.000318104 0)
(1.0243 -0.000256306 0)
(1.01842 -0.00183902 0)
(1.01847 -0.00183622 0)
(1.01852 -0.00183419 0)
(1.01856 -0.0018329 0)
(1.01861 -0.00183235 0)
(1.01865 -0.00183251 0)
(1.0187 -0.00183335 0)
(1.01874 -0.00183484 0)
(1.01879 -0.00183695 0)
(1.01884 -0.00183961 0)
(1.01888 -0.0018428 0)
(1.01893 -0.00184644 0)
(1.01897 -0.00185048 0)
(1.01902 -0.00185485 0)
(1.01906 -0.0018595 0)
(1.01911 -0.00186436 0)
(1.01916 -0.00186935 0)
(1.0192 -0.00187442 0)
(1.01925 -0.00187949 0)
(1.01929 -0.0018845 0)
(1.01934 -0.00188938 0)
(1.01938 -0.00189408 0)
(1.01943 -0.00189854 0)
(1.01948 -0.00190271 0)
(1.01952 -0.00190652 0)
(1.01957 -0.00190993 0)
(1.01961 -0.0019129 0)
(1.01966 -0.00191538 0)
(1.0197 -0.00191732 0)
(1.01975 -0.00191869 0)
(1.0198 -0.00191946 0)
(1.01984 -0.00191957 0)
(1.01989 -0.00191901 0)
(1.01993 -0.00191775 0)
(1.01998 -0.00191575 0)
(1.02003 -0.001913 0)
(1.02007 -0.00190947 0)
(1.02012 -0.00190517 0)
(1.02017 -0.00190009 0)
(1.02021 -0.00189422 0)
(1.02026 -0.00188759 0)
(1.02031 -0.00188019 0)
(1.02036 -0.00187205 0)
(1.02041 -0.0018632 0)
(1.02046 -0.00185367 0)
(1.0205 -0.00184348 0)
(1.02055 -0.00183267 0)
(1.0206 -0.00182126 0)
(1.02065 -0.00180928 0)
(1.02071 -0.00179677 0)
(1.02076 -0.00178373 0)
(1.02081 -0.0017702 0)
(1.02086 -0.00175618 0)
(1.02091 -0.00174169 0)
(1.02097 -0.00172675 0)
(1.02102 -0.00171137 0)
(1.02107 -0.00169558 0)
(1.02113 -0.00167939 0)
(1.02119 -0.00166283 0)
(1.02124 -0.00164592 0)
(1.0213 -0.00162866 0)
(1.02136 -0.00161107 0)
(1.02141 -0.00159315 0)
(1.02147 -0.00157486 0)
(1.02153 -0.00155618 0)
(1.02159 -0.00153702 0)
(1.02165 -0.00151731 0)
(1.02172 -0.00149691 0)
(1.02178 -0.0014757 0)
(1.02184 -0.00145351 0)
(1.02191 -0.00143019 0)
(1.02197 -0.00140557 0)
(1.02204 -0.00137951 0)
(1.02211 -0.0013519 0)
(1.02218 -0.00132265 0)
(1.02225 -0.00129171 0)
(1.02232 -0.00125911 0)
(1.0224 -0.00122491 0)
(1.02247 -0.00118923 0)
(1.02255 -0.00115222 0)
(1.02263 -0.00111409 0)
(1.02271 -0.00107505 0)
(1.02279 -0.00103534 0)
(1.02288 -0.000995169 0)
(1.02296 -0.000954775 0)
(1.02305 -0.000914293 0)
(1.02314 -0.000873926 0)
(1.02323 -0.00083366 0)
(1.02333 -0.00079374 0)
(1.02343 -0.000753861 0)
(1.02352 -0.000714584 0)
(1.02363 -0.000674928 0)
(1.02372 -0.000636554 0)
(1.02384 -0.000596633 0)
(1.02393 -0.000560083 0)
(1.02406 -0.000518751 0)
(1.02414 -0.000486758 0)
(1.0243 -0.000440828 0)
(1.02435 -0.000420453 0)
(1.02457 -0.000360725 0)
(1.01871 -0.00191532 0)
(1.01875 -0.00191223 0)
(1.0188 -0.00190988 0)
(1.01884 -0.00190825 0)
(1.01889 -0.00190733 0)
(1.01893 -0.00190709 0)
(1.01898 -0.00190752 0)
(1.01902 -0.00190858 0)
(1.01907 -0.00191022 0)
(1.01912 -0.00191242 0)
(1.01916 -0.00191512 0)
(1.01921 -0.00191826 0)
(1.01925 -0.00192179 0)
(1.0193 -0.00192565 0)
(1.01935 -0.00192977 0)
(1.01939 -0.0019341 0)
(1.01944 -0.00193857 0)
(1.01948 -0.00194311 0)
(1.01953 -0.00194765 0)
(1.01957 -0.00195214 0)
(1.01962 -0.00195652 0)
(1.01967 -0.00196072 0)
(1.01971 -0.0019647 0)
(1.01976 -0.00196838 0)
(1.0198 -0.00197174 0)
(1.01985 -0.00197471 0)
(1.01989 -0.00197725 0)
(1.01994 -0.00197932 0)
(1.01999 -0.00198088 0)
(1.02003 -0.00198189 0)
(1.02008 -0.00198231 0)
(1.02012 -0.00198211 0)
(1.02017 -0.00198126 0)
(1.02021 -0.00197973 0)
(1.02026 -0.0019775 0)
(1.02031 -0.00197454 0)
(1.02035 -0.00197083 0)
(1.0204 -0.00196638 0)
(1.02045 -0.00196117 0)
(1.02049 -0.0019552 0)
(1.02054 -0.00194848 0)
(1.02059 -0.00194104 0)
(1.02064 -0.00193288 0)
(1.02069 -0.00192402 0)
(1.02074 -0.00191451 0)
(1.02078 -0.00190436 0)
(1.02083 -0.00189361 0)
(1.02088 -0.00188228 0)
(1.02093 -0.0018704 0)
(1.02098 -0.001858 0)
(1.02104 -0.0018451 0)
(1.02109 -0.00183172 0)
(1.02114 -0.00181786 0)
(1.02119 -0.00180356 0)
(1.02125 -0.00178882 0)
(1.0213 -0.00177366 0)
(1.02135 -0.0017581 0)
(1.02141 -0.00174216 0)
(1.02146 -0.00172585 0)
(1.02152 -0.00170921 0)
(1.02158 -0.00169224 0)
(1.02164 -0.00167495 0)
(1.02169 -0.00165735 0)
(1.02175 -0.0016394 0)
(1.02181 -0.00162107 0)
(1.02187 -0.0016023 0)
(1.02193 -0.001583 0)
(1.022 -0.00156305 0)
(1.02206 -0.00154233 0)
(1.02212 -0.00152069 0)
(1.02219 -0.00149797 0)
(1.02225 -0.00147401 0)
(1.02232 -0.00144868 0)
(1.02239 -0.00142186 0)
(1.02246 -0.00139346 0)
(1.02253 -0.00136345 0)
(1.0226 -0.00133184 0)
(1.02268 -0.00129868 0)
(1.02275 -0.00126409 0)
(1.02283 -0.00122822 0)
(1.02291 -0.00119126 0)
(1.02299 -0.00115341 0)
(1.02307 -0.00111492 0)
(1.02316 -0.00107598 0)
(1.02324 -0.00103682 0)
(1.02333 -0.000997581 0)
(1.02342 -0.000958455 0)
(1.02351 -0.000919436 0)
(1.02361 -0.000880763 0)
(1.0237 -0.000842143 0)
(1.0238 -0.000804121 0)
(1.0239 -0.000765747 0)
(1.024 -0.000728629 0)
(1.02411 -0.000690027 0)
(1.02421 -0.000654699 0)
(1.02434 -0.00061475 0)
(1.02442 -0.000583845 0)
(1.02458 -0.000539456 0)
(1.02463 -0.000519783 0)
(1.02485 -0.000462065 0)
(1.019 -0.0019893 0)
(1.01904 -0.00198593 0)
(1.01909 -0.00198327 0)
(1.01913 -0.0019813 0)
(1.01918 -0.00198002 0)
(1.01922 -0.00197941 0)
(1.01927 -0.00197943 0)
(1.01932 -0.00198006 0)
(1.01936 -0.00198127 0)
(1.01941 -0.00198301 0)
(1.01945 -0.00198523 0)
(1.0195 -0.00198789 0)
(1.01954 -0.00199092 0)
(1.01959 -0.00199428 0)
(1.01964 -0.00199789 0)
(1.01968 -0.00200171 0)
(1.01973 -0.00200566 0)
(1.01977 -0.00200969 0)
(1.01982 -0.00201373 0)
(1.01986 -0.00201772 0)
(1.01991 -0.0020216 0)
(1.01996 -0.00202531 0)
(1.02 -0.00202881 0)
(1.02005 -0.00203204 0)
(1.02009 -0.00203494 0)
(1.02014 -0.00203748 0)
(1.02018 -0.00203961 0)
(1.02023 -0.00204129 0)
(1.02027 -0.00204248 0)
(1.02032 -0.00204313 0)
(1.02037 -0.00204323 0)
(1.02041 -0.00204272 0)
(1.02046 -0.00204159 0)
(1.0205 -0.0020398 0)
(1.02055 -0.00203734 0)
(1.0206 -0.00203418 0)
(1.02064 -0.0020303 0)
(1.02069 -0.00202569 0)
(1.02074 -0.00202036 0)
(1.02078 -0.00201429 0)
(1.02083 -0.00200751 0)
(1.02088 -0.00200001 0)
(1.02093 -0.00199183 0)
(1.02098 -0.00198298 0)
(1.02102 -0.00197348 0)
(1.02107 -0.00196338 0)
(1.02112 -0.00195268 0)
(1.02117 -0.00194143 0)
(1.02122 -0.00192966 0)
(1.02127 -0.00191737 0)
(1.02132 -0.0019046 0)
(1.02138 -0.00189136 0)
(1.02143 -0.00187767 0)
(1.02148 -0.00186355 0)
(1.02153 -0.00184901 0)
(1.02159 -0.00183406 0)
(1.02164 -0.00181872 0)
(1.0217 -0.00180302 0)
(1.02175 -0.00178697 0)
(1.02181 -0.00177059 0)
(1.02187 -0.0017539 0)
(1.02192 -0.00173691 0)
(1.02198 -0.00171961 0)
(1.02204 -0.00170199 0)
(1.0221 -0.00168401 0)
(1.02216 -0.00166561 0)
(1.02222 -0.00164671 0)
(1.02228 -0.0016272 0)
(1.02235 -0.00160696 0)
(1.02241 -0.00158585 0)
(1.02248 -0.0015637 0)
(1.02254 -0.00154039 0)
(1.02261 -0.00151576 0)
(1.02268 -0.00148971 0)
(1.02275 -0.00146215 0)
(1.02282 -0.00143304 0)
(1.02289 -0.00140238 0)
(1.02296 -0.00137024 0)
(1.02304 -0.00133671 0)
(1.02312 -0.00130195 0)
(1.0232 -0.00126612 0)
(1.02328 -0.00122944 0)
(1.02336 -0.00119213 0)
(1.02344 -0.00115438 0)
(1.02353 -0.00111643 0)
(1.02362 -0.00107839 0)
(1.02371 -0.00104047 0)
(1.0238 -0.00100266 0)
(1.02389 -0.000965202 0)
(1.02399 -0.000927803 0)
(1.02409 -0.000890998 0)
(1.02419 -0.000853868 0)
(1.02429 -0.00081797 0)
(1.0244 -0.000780647 0)
(1.0245 -0.000746505 0)
(1.02463 -0.000707899 0)
(1.02471 -0.000678049 0)
(1.02487 -0.000635157 0)
(1.02491 -0.000616167 0)
(1.02513 -0.0005604 0)
(1.0193 -0.00206104 0)
(1.01934 -0.0020574 0)
(1.01939 -0.00205444 0)
(1.01943 -0.00205215 0)
(1.01948 -0.00205052 0)
(1.01952 -0.00204953 0)
(1.01957 -0.00204917 0)
(1.01962 -0.00204939 0)
(1.01966 -0.00205016 0)
(1.01971 -0.00205146 0)
(1.01975 -0.00205322 0)
(1.0198 -0.0020554 0)
(1.01984 -0.00205795 0)
(1.01989 -0.00206082 0)
(1.01994 -0.00206394 0)
(1.01998 -0.00206726 0)
(1.02003 -0.00207071 0)
(1.02007 -0.00207424 0)
(1.02012 -0.00207778 0)
(1.02016 -0.00208128 0)
(1.02021 -0.00208468 0)
(1.02026 -0.00208793 0)
(1.0203 -0.00209096 0)
(1.02035 -0.00209374 0)
(1.02039 -0.00209621 0)
(1.02044 -0.00209833 0)
(1.02048 -0.00210006 0)
(1.02053 -0.00210136 0)
(1.02057 -0.00210218 0)
(1.02062 -0.00210249 0)
(1.02067 -0.00210227 0)
(1.02071 -0.00210147 0)
(1.02076 -0.00210006 0)
(1.0208 -0.00209803 0)
(1.02085 -0.00209534 0)
(1.0209 -0.00209198 0)
(1.02094 -0.00208793 0)
(1.02099 -0.00208318 0)
(1.02104 -0.00207773 0)
(1.02108 -0.00207157 0)
(1.02113 -0.00206472 0)
(1.02118 -0.00205718 0)
(1.02123 -0.00204897 0)
(1.02127 -0.00204012 0)
(1.02132 -0.00203065 0)
(1.02137 -0.00202059 0)
(1.02142 -0.00200995 0)
(1.02147 -0.00199878 0)
(1.02152 -0.0019871 0)
(1.02157 -0.00197493 0)
(1.02162 -0.00196229 0)
(1.02168 -0.0019492 0)
(1.02173 -0.00193567 0)
(1.02178 -0.00192172 0)
(1.02183 -0.00190737 0)
(1.02189 -0.00189263 0)
(1.02194 -0.00187751 0)
(1.022 -0.00186204 0)
(1.02205 -0.00184624 0)
(1.02211 -0.00183012 0)
(1.02216 -0.0018137 0)
(1.02222 -0.00179699 0)
(1.02228 -0.00178 0)
(1.02234 -0.00176269 0)
(1.0224 -0.00174505 0)
(1.02246 -0.00172701 0)
(1.02252 -0.0017085 0)
(1.02258 -0.00168942 0)
(1.02265 -0.00166964 0)
(1.02271 -0.00164903 0)
(1.02277 -0.00162746 0)
(1.02284 -0.00160476 0)
(1.02291 -0.00158082 0)
(1.02298 -0.00155551 0)
(1.02304 -0.00152875 0)
(1.02312 -0.00150052 0)
(1.02319 -0.00147079 0)
(1.02326 -0.00143964 0)
(1.02334 -0.00140714 0)
(1.02341 -0.00137345 0)
(1.02349 -0.00133873 0)
(1.02357 -0.00130319 0)
(1.02366 -0.00126702 0)
(1.02374 -0.00123044 0)
(1.02383 -0.00119365 0)
(1.02392 -0.00115678 0)
(1.02401 -0.00112004 0)
(1.0241 -0.00108341 0)
(1.02419 -0.00104712 0)
(1.02429 -0.0010109 0)
(1.02439 -0.00097528 0)
(1.02449 -0.000939357 0)
(1.02459 -0.000904641 0)
(1.0247 -0.000868559 0)
(1.02479 -0.000835569 0)
(1.02492 -0.000798266 0)
(1.02501 -0.00076944 0)
(1.02516 -0.000728002 0)
(1.02521 -0.000709675 0)
(1.02543 -0.000655806 0)
(1.01961 -0.00213062 0)
(1.01965 -0.00212671 0)
(1.0197 -0.00212346 0)
(1.01974 -0.00212086 0)
(1.01979 -0.0021189 0)
(1.01983 -0.00211755 0)
(1.01988 -0.0021168 0)
(1.01993 -0.00211662 0)
(1.01997 -0.00211698 0)
(1.02002 -0.00211784 0)
(1.02006 -0.00211915 0)
(1.02011 -0.00212087 0)
(1.02015 -0.00212296 0)
(1.0202 -0.00212535 0)
(1.02025 -0.00212799 0)
(1.02029 -0.00213082 0)
(1.02034 -0.00213379 0)
(1.02038 -0.00213683 0)
(1.02043 -0.00213989 0)
(1.02047 -0.00214292 0)
(1.02052 -0.00214585 0)
(1.02057 -0.00214863 0)
(1.02061 -0.00215122 0)
(1.02066 -0.00215356 0)
(1.0207 -0.00215561 0)
(1.02075 -0.00215733 0)
(1.02079 -0.00215867 0)
(1.02084 -0.00215959 0)
(1.02088 -0.00216006 0)
(1.02093 -0.00216004 0)
(1.02098 -0.0021595 0)
(1.02102 -0.00215841 0)
(1.02107 -0.00215674 0)
(1.02111 -0.00215447 0)
(1.02116 -0.00215156 0)
(1.02121 -0.00214801 0)
(1.02125 -0.0021438 0)
(1.0213 -0.00213891 0)
(1.02134 -0.00213334 0)
(1.02139 -0.0021271 0)
(1.02144 -0.00212018 0)
(1.02149 -0.0021126 0)
(1.02153 -0.00210437 0)
(1.02158 -0.00209552 0)
(1.02163 -0.00208607 0)
(1.02168 -0.00207605 0)
(1.02173 -0.00206548 0)
(1.02178 -0.00205438 0)
(1.02183 -0.0020428 0)
(1.02188 -0.00203073 0)
(1.02193 -0.00201822 0)
(1.02198 -0.00200527 0)
(1.02204 -0.0019919 0)
(1.02209 -0.00197813 0)
(1.02214 -0.00196396 0)
(1.0222 -0.00194942 0)
(1.02225 -0.00193452 0)
(1.0223 -0.00191928 0)
(1.02236 -0.00190372 0)
(1.02242 -0.00188785 0)
(1.02247 -0.0018717 0)
(1.02253 -0.00185526 0)
(1.02259 -0.00183856 0)
(1.02265 -0.00182156 0)
(1.02271 -0.00180424 0)
(1.02277 -0.00178655 0)
(1.02283 -0.00176842 0)
(1.02289 -0.00174975 0)
(1.02295 -0.00173042 0)
(1.02302 -0.00171031 0)
(1.02308 -0.00168927 0)
(1.02315 -0.00166718 0)
(1.02322 -0.00164389 0)
(1.02328 -0.00161931 0)
(1.02335 -0.00159334 0)
(1.02342 -0.00156595 0)
(1.0235 -0.00153713 0)
(1.02357 -0.00150693 0)
(1.02365 -0.00147544 0)
(1.02372 -0.00144279 0)
(1.0238 -0.00140915 0)
(1.02388 -0.0013747 0)
(1.02396 -0.00133966 0)
(1.02405 -0.0013042 0)
(1.02414 -0.00126855 0)
(1.02422 -0.00123282 0)
(1.02431 -0.00119721 0)
(1.02441 -0.00116172 0)
(1.0245 -0.00112657 0)
(1.0246 -0.00109151 0)
(1.02469 -0.00105703 0)
(1.0248 -0.00102228 0)
(1.02489 -0.000988708 0)
(1.02501 -0.00095383 0)
(1.0251 -0.000921958 0)
(1.02523 -0.000885919 0)
(1.02531 -0.00085809 0)
(1.02547 -0.000818064 0)
(1.02552 -0.000800382 0)
(1.02574 -0.000748355 0)
(1.01993 -0.00219811 0)
(1.01997 -0.00219395 0)
(1.02002 -0.00219042 0)
(1.02006 -0.00218751 0)
(1.02011 -0.00218522 0)
(1.02015 -0.00218352 0)
(1.0202 -0.00218241 0)
(1.02025 -0.00218184 0)
(1.02029 -0.00218179 0)
(1.02034 -0.00218223 0)
(1.02038 -0.0021831 0)
(1.02043 -0.00218438 0)
(1.02047 -0.00218601 0)
(1.02052 -0.00218793 0)
(1.02057 -0.0021901 0)
(1.02061 -0.00219247 0)
(1.02066 -0.00219496 0)
(1.0207 -0.00219753 0)
(1.02075 -0.00220013 0)
(1.02079 -0.00220269 0)
(1.02084 -0.00220516 0)
(1.02089 -0.0022075 0)
(1.02093 -0.00220965 0)
(1.02098 -0.00221157 0)
(1.02102 -0.00221321 0)
(1.02107 -0.00221453 0)
(1.02111 -0.00221549 0)
(1.02116 -0.00221605 0)
(1.0212 -0.00221617 0)
(1.02125 -0.00221583 0)
(1.0213 -0.00221499 0)
(1.02134 -0.00221362 0)
(1.02139 -0.0022117 0)
(1.02143 -0.00220919 0)
(1.02148 -0.00220607 0)
(1.02152 -0.00220234 0)
(1.02157 -0.00219796 0)
(1.02162 -0.00219294 0)
(1.02166 -0.00218726 0)
(1.02171 -0.00218093 0)
(1.02176 -0.00217395 0)
(1.02181 -0.00216633 0)
(1.02185 -0.00215808 0)
(1.0219 -0.00214924 0)
(1.02195 -0.00213981 0)
(1.022 -0.00212982 0)
(1.02205 -0.00211931 0)
(1.0221 -0.00210829 0)
(1.02215 -0.0020968 0)
(1.0222 -0.00208485 0)
(1.02225 -0.00207245 0)
(1.0223 -0.00205964 0)
(1.02236 -0.00204643 0)
(1.02241 -0.00203282 0)
(1.02246 -0.00201884 0)
(1.02251 -0.0020045 0)
(1.02257 -0.0019898 0)
(1.02262 -0.00197478 0)
(1.02268 -0.00195945 0)
(1.02274 -0.00194383 0)
(1.02279 -0.00192794 0)
(1.02285 -0.00191177 0)
(1.02291 -0.00189535 0)
(1.02297 -0.00187865 0)
(1.02303 -0.00186164 0)
(1.02309 -0.00184429 0)
(1.02315 -0.00182652 0)
(1.02321 -0.00180825 0)
(1.02327 -0.00178935 0)
(1.02334 -0.00176972 0)
(1.0234 -0.00174921 0)
(1.02347 -0.0017277 0)
(1.02353 -0.00170505 0)
(1.0236 -0.00168117 0)
(1.02367 -0.00165596 0)
(1.02374 -0.00162939 0)
(1.02381 -0.00160144 0)
(1.02389 -0.00157217 0)
(1.02396 -0.00154166 0)
(1.02404 -0.00151003 0)
(1.02412 -0.00147743 0)
(1.0242 -0.00144405 0)
(1.02428 -0.00141009 0)
(1.02437 -0.00137573 0)
(1.02445 -0.00134118 0)
(1.02454 -0.00130656 0)
(1.02463 -0.00127205 0)
(1.02472 -0.00123767 0)
(1.02482 -0.00120363 0)
(1.02492 -0.00116968 0)
(1.02501 -0.00113631 0)
(1.02512 -0.00110269 0)
(1.02521 -0.00107024 0)
(1.02533 -0.00103653 0)
(1.02542 -0.00100574 0)
(1.02555 -0.000970929 0)
(1.02563 -0.000944066 0)
(1.02579 -0.000905413 0)
(1.02584 -0.000888357 0)
(1.02606 -0.000838124 0)
(1.02026 -0.00226359 0)
(1.0203 -0.00225918 0)
(1.02035 -0.00225538 0)
(1.02039 -0.00225218 0)
(1.02044 -0.00224957 0)
(1.02049 -0.00224753 0)
(1.02053 -0.00224605 0)
(1.02058 -0.00224511 0)
(1.02062 -0.00224467 0)
(1.02067 -0.00224469 0)
(1.02071 -0.00224515 0)
(1.02076 -0.00224599 0)
(1.02081 -0.00224717 0)
(1.02085 -0.00224865 0)
(1.0209 -0.00225036 0)
(1.02094 -0.00225226 0)
(1.02099 -0.0022543 0)
(1.02103 -0.00225641 0)
(1.02108 -0.00225855 0)
(1.02113 -0.00226066 0)
(1.02117 -0.0022627 0)
(1.02122 -0.0022646 0)
(1.02126 -0.00226633 0)
(1.02131 -0.00226783 0)
(1.02135 -0.00226907 0)
(1.0214 -0.00227 0)
(1.02144 -0.00227059 0)
(1.02149 -0.0022708 0)
(1.02153 -0.00227059 0)
(1.02158 -0.00226994 0)
(1.02163 -0.0022688 0)
(1.02167 -0.00226716 0)
(1.02172 -0.00226498 0)
(1.02176 -0.00226225 0)
(1.02181 -0.00225893 0)
(1.02186 -0.00225501 0)
(1.0219 -0.00225048 0)
(1.02195 -0.00224533 0)
(1.022 -0.00223954 0)
(1.02204 -0.00223313 0)
(1.02209 -0.00222608 0)
(1.02214 -0.00221842 0)
(1.02219 -0.00221016 0)
(1.02223 -0.00220132 0)
(1.02228 -0.00219191 0)
(1.02233 -0.00218197 0)
(1.02238 -0.00217151 0)
(1.02243 -0.00216057 0)
(1.02248 -0.00214916 0)
(1.02253 -0.00213732 0)
(1.02258 -0.00212505 0)
(1.02263 -0.00211237 0)
(1.02269 -0.00209931 0)
(1.02274 -0.00208586 0)
(1.02279 -0.00207206 0)
(1.02285 -0.0020579 0)
(1.0229 -0.00204342 0)
(1.02295 -0.00202861 0)
(1.02301 -0.00201351 0)
(1.02307 -0.00199812 0)
(1.02312 -0.00198248 0)
(1.02318 -0.00196657 0)
(1.02324 -0.00195042 0)
(1.0233 -0.00193401 0)
(1.02336 -0.00191731 0)
(1.02342 -0.00190028 0)
(1.02348 -0.00188287 0)
(1.02354 -0.00186497 0)
(1.0236 -0.0018465 0)
(1.02367 -0.00182733 0)
(1.02373 -0.00180733 0)
(1.0238 -0.00178638 0)
(1.02386 -0.00176435 0)
(1.02393 -0.00174114 0)
(1.024 -0.00171666 0)
(1.02407 -0.00169089 0)
(1.02414 -0.00166379 0)
(1.02422 -0.00163543 0)
(1.02429 -0.00160586 0)
(1.02437 -0.00157521 0)
(1.02445 -0.00154363 0)
(1.02453 -0.00151129 0)
(1.02461 -0.00147838 0)
(1.0247 -0.00144509 0)
(1.02478 -0.0014116 0)
(1.02487 -0.00137806 0)
(1.02496 -0.00134462 0)
(1.02505 -0.00131131 0)
(1.02515 -0.00127834 0)
(1.02524 -0.00124548 0)
(1.02534 -0.00121319 0)
(1.02544 -0.00118067 0)
(1.02554 -0.00114929 0)
(1.02565 -0.00111672 0)
(1.02575 -0.00108698 0)
(1.02588 -0.00105336 0)
(1.02596 -0.00102744 0)
(1.02612 -0.000990121 0)
(1.02616 -0.000973675 0)
(1.02638 -0.000925186 0)
(1.0206 -0.00232712 0)
(1.02065 -0.00232247 0)
(1.02069 -0.00231841 0)
(1.02074 -0.00231492 0)
(1.02078 -0.002312 0)
(1.02083 -0.00230964 0)
(1.02087 -0.00230781 0)
(1.02092 -0.0023065 0)
(1.02097 -0.00230568 0)
(1.02101 -0.0023053 0)
(1.02106 -0.00230535 0)
(1.0211 -0.00230577 0)
(1.02115 -0.00230652 0)
(1.02119 -0.00230756 0)
(1.02124 -0.00230883 0)
(1.02129 -0.00231028 0)
(1.02133 -0.00231187 0)
(1.02138 -0.00231354 0)
(1.02142 -0.00231523 0)
(1.02147 -0.00231691 0)
(1.02151 -0.00231851 0)
(1.02156 -0.00231999 0)
(1.0216 -0.0023213 0)
(1.02165 -0.0023224 0)
(1.0217 -0.00232326 0)
(1.02174 -0.00232381 0)
(1.02179 -0.00232404 0)
(1.02183 -0.00232391 0)
(1.02188 -0.00232337 0)
(1.02192 -0.00232241 0)
(1.02197 -0.00232099 0)
(1.02201 -0.00231908 0)
(1.02206 -0.00231666 0)
(1.02211 -0.0023137 0)
(1.02215 -0.00231019 0)
(1.0222 -0.0023061 0)
(1.02224 -0.00230142 0)
(1.02229 -0.00229613 0)
(1.02234 -0.00229024 0)
(1.02238 -0.00228374 0)
(1.02243 -0.00227664 0)
(1.02248 -0.00226894 0)
(1.02253 -0.00226066 0)
(1.02258 -0.00225182 0)
(1.02262 -0.00224244 0)
(1.02267 -0.00223253 0)
(1.02272 -0.00222213 0)
(1.02277 -0.00221126 0)
(1.02282 -0.00219995 0)
(1.02287 -0.0021882 0)
(1.02292 -0.00217605 0)
(1.02298 -0.00216351 0)
(1.02303 -0.00215059 0)
(1.02308 -0.0021373 0)
(1.02313 -0.00212367 0)
(1.02319 -0.0021097 0)
(1.02324 -0.00209541 0)
(1.0233 -0.00208081 0)
(1.02335 -0.00206593 0)
(1.02341 -0.00205078 0)
(1.02346 -0.00203537 0)
(1.02352 -0.00201972 0)
(1.02358 -0.00200383 0)
(1.02364 -0.0019877 0)
(1.0237 -0.00197129 0)
(1.02376 -0.00195458 0)
(1.02382 -0.0019375 0)
(1.02388 -0.00191998 0)
(1.02394 -0.00190191 0)
(1.02401 -0.00188318 0)
(1.02407 -0.00186367 0)
(1.02414 -0.00184326 0)
(1.02421 -0.00182183 0)
(1.02427 -0.00179927 0)
(1.02434 -0.00177551 0)
(1.02441 -0.0017505 0)
(1.02449 -0.00172423 0)
(1.02456 -0.00169674 0)
(1.02463 -0.00166809 0)
(1.02471 -0.0016384 0)
(1.02479 -0.0016078 0)
(1.02487 -0.00157647 0)
(1.02495 -0.00154459 0)
(1.02504 -0.00151233 0)
(1.02512 -0.00147988 0)
(1.02521 -0.00144738 0)
(1.0253 -0.00141498 0)
(1.02539 -0.00138272 0)
(1.02549 -0.00135079 0)
(1.02558 -0.00131897 0)
(1.02568 -0.00128772 0)
(1.02578 -0.00125627 0)
(1.02588 -0.00122594 0)
(1.02599 -0.00119447 0)
(1.02609 -0.00116575 0)
(1.02622 -0.00113329 0)
(1.0263 -0.00110828 0)
(1.02646 -0.00107226 0)
(1.0265 -0.0010564 0)
(1.02672 -0.00100961 0)
(1.02096 -0.00238878 0)
(1.021 -0.0023839 0)
(1.02105 -0.00237958 0)
(1.02109 -0.00237581 0)
(1.02114 -0.0023726 0)
(1.02118 -0.00236991 0)
(1.02123 -0.00236775 0)
(1.02127 -0.00236608 0)
(1.02132 -0.00236488 0)
(1.02137 -0.00236413 0)
(1.02141 -0.00236377 0)
(1.02146 -0.00236378 0)
(1.0215 -0.00236411 0)
(1.02155 -0.00236472 0)
(1.02159 -0.00236556 0)
(1.02164 -0.00236658 0)
(1.02169 -0.00236774 0)
(1.02173 -0.00236897 0)
(1.02178 -0.00237024 0)
(1.02182 -0.00237148 0)
(1.02187 -0.00237266 0)
(1.02191 -0.00237373 0)
(1.02196 -0.00237464 0)
(1.022 -0.00237535 0)
(1.02205 -0.00237583 0)
(1.0221 -0.00237602 0)
(1.02214 -0.0023759 0)
(1.02219 -0.00237543 0)
(1.02223 -0.00237458 0)
(1.02228 -0.00237332 0)
(1.02232 -0.00237162 0)
(1.02237 -0.00236945 0)
(1.02241 -0.00236679 0)
(1.02246 -0.00236362 0)
(1.02251 -0.00235991 0)
(1.02255 -0.00235565 0)
(1.0226 -0.00235082 0)
(1.02265 -0.00234541 0)
(1.02269 -0.00233941 0)
(1.02274 -0.00233284 0)
(1.02279 -0.00232568 0)
(1.02283 -0.00231794 0)
(1.02288 -0.00230965 0)
(1.02293 -0.00230081 0)
(1.02298 -0.00229144 0)
(1.02303 -0.00228158 0)
(1.02308 -0.00227123 0)
(1.02313 -0.00226043 0)
(1.02318 -0.0022492 0)
(1.02323 -0.00223755 0)
(1.02328 -0.00222552 0)
(1.02333 -0.0022131 0)
(1.02338 -0.00220032 0)
(1.02343 -0.00218719 0)
(1.02349 -0.00217373 0)
(1.02354 -0.00215994 0)
(1.0236 -0.00214584 0)
(1.02365 -0.00213144 0)
(1.02371 -0.00211677 0)
(1.02376 -0.00210184 0)
(1.02382 -0.00208667 0)
(1.02388 -0.00207126 0)
(1.02393 -0.00205563 0)
(1.02399 -0.00203976 0)
(1.02405 -0.00202364 0)
(1.02411 -0.00200723 0)
(1.02417 -0.00199048 0)
(1.02424 -0.00197331 0)
(1.0243 -0.00195563 0)
(1.02436 -0.00193733 0)
(1.02443 -0.00191829 0)
(1.02449 -0.00189841 0)
(1.02456 -0.00187755 0)
(1.02463 -0.00185562 0)
(1.0247 -0.00183255 0)
(1.02477 -0.00180829 0)
(1.02484 -0.00178282 0)
(1.02491 -0.00175617 0)
(1.02499 -0.00172841 0)
(1.02507 -0.00169964 0)
(1.02514 -0.00167001 0)
(1.02522 -0.00163965 0)
(1.02531 -0.00160877 0)
(1.02539 -0.00157751 0)
(1.02548 -0.00154607 0)
(1.02556 -0.00151458 0)
(1.02565 -0.00148319 0)
(1.02575 -0.00145194 0)
(1.02584 -0.00142102 0)
(1.02594 -0.00139022 0)
(1.02603 -0.00135998 0)
(1.02614 -0.00132957 0)
(1.02623 -0.00130025 0)
(1.02635 -0.00126984 0)
(1.02644 -0.00124212 0)
(1.02657 -0.00121078 0)
(1.02665 -0.00118665 0)
(1.02681 -0.0011519 0)
(1.02686 -0.00113662 0)
(1.02708 -0.00109148 0)
(1.02132 -0.00244862 0)
(1.02137 -0.00244352 0)
(1.02141 -0.00243895 0)
(1.02146 -0.00243492 0)
(1.0215 -0.00243141 0)
(1.02155 -0.00242842 0)
(1.0216 -0.00242593 0)
(1.02164 -0.00242392 0)
(1.02169 -0.00242236 0)
(1.02173 -0.00242122 0)
(1.02178 -0.00242048 0)
(1.02182 -0.00242009 0)
(1.02187 -0.00242001 0)
(1.02192 -0.00242021 0)
(1.02196 -0.00242063 0)
(1.02201 -0.00242123 0)
(1.02205 -0.00242196 0)
(1.0221 -0.00242277 0)
(1.02214 -0.00242362 0)
(1.02219 -0.00242445 0)
(1.02224 -0.00242522 0)
(1.02228 -0.00242589 0)
(1.02233 -0.00242641 0)
(1.02237 -0.00242674 0)
(1.02242 -0.00242684 0)
(1.02246 -0.00242668 0)
(1.02251 -0.00242622 0)
(1.02255 -0.00242542 0)
(1.0226 -0.00242426 0)
(1.02265 -0.00242271 0)
(1.02269 -0.00242074 0)
(1.02274 -0.00241832 0)
(1.02278 -0.00241543 0)
(1.02283 -0.00241204 0)
(1.02287 -0.00240814 0)
(1.02292 -0.00240371 0)
(1.02297 -0.00239874 0)
(1.02301 -0.00239321 0)
(1.02306 -0.00238712 0)
(1.02311 -0.00238046 0)
(1.02315 -0.00237324 0)
(1.0232 -0.00236547 0)
(1.02325 -0.00235716 0)
(1.0233 -0.00234832 0)
(1.02335 -0.00233898 0)
(1.0234 -0.00232915 0)
(1.02344 -0.00231886 0)
(1.02349 -0.00230812 0)
(1.02354 -0.00229697 0)
(1.0236 -0.00228542 0)
(1.02365 -0.0022735 0)
(1.0237 -0.0022612 0)
(1.02375 -0.00224856 0)
(1.0238 -0.00223558 0)
(1.02386 -0.00222228 0)
(1.02391 -0.00220866 0)
(1.02396 -0.00219475 0)
(1.02402 -0.00218055 0)
(1.02407 -0.00216608 0)
(1.02413 -0.00215137 0)
(1.02419 -0.00213642 0)
(1.02424 -0.00212125 0)
(1.0243 -0.00210586 0)
(1.02436 -0.00209026 0)
(1.02442 -0.00207441 0)
(1.02448 -0.00205829 0)
(1.02454 -0.00204186 0)
(1.0246 -0.00202503 0)
(1.02467 -0.00200772 0)
(1.02473 -0.00198983 0)
(1.02479 -0.00197125 0)
(1.02486 -0.00195187 0)
(1.02493 -0.00193156 0)
(1.02499 -0.00191025 0)
(1.02506 -0.00188784 0)
(1.02513 -0.0018643 0)
(1.02521 -0.0018396 0)
(1.02528 -0.00181377 0)
(1.02535 -0.00178688 0)
(1.02543 -0.00175901 0)
(1.02551 -0.0017303 0)
(1.02559 -0.0017009 0)
(1.02567 -0.00167098 0)
(1.02576 -0.00164069 0)
(1.02584 -0.00161023 0)
(1.02593 -0.00157972 0)
(1.02602 -0.00154931 0)
(1.02611 -0.00151904 0)
(1.02621 -0.00148909 0)
(1.0263 -0.00145928 0)
(1.0264 -0.00143003 0)
(1.0265 -0.00140061 0)
(1.0266 -0.00137228 0)
(1.02671 -0.0013429 0)
(1.02681 -0.00131614 0)
(1.02693 -0.0012859 0)
(1.02702 -0.00126263 0)
(1.02717 -0.0012291 0)
(1.02722 -0.00121438 0)
(1.02744 -0.00117086 0)
(1.0217 -0.00250672 0)
(1.02175 -0.00250139 0)
(1.02179 -0.00249659 0)
(1.02184 -0.0024923 0)
(1.02188 -0.00248851 0)
(1.02193 -0.00248522 0)
(1.02198 -0.00248241 0)
(1.02202 -0.00248006 0)
(1.02207 -0.00247815 0)
(1.02211 -0.00247666 0)
(1.02216 -0.00247554 0)
(1.0222 -0.00247476 0)
(1.02225 -0.00247429 0)
(1.0223 -0.00247408 0)
(1.02234 -0.00247409 0)
(1.02239 -0.00247428 0)
(1.02243 -0.0024746 0)
(1.02248 -0.002475 0)
(1.02253 -0.00247544 0)
(1.02257 -0.00247587 0)
(1.02262 -0.00247624 0)
(1.02266 -0.00247652 0)
(1.02271 -0.00247665 0)
(1.02275 -0.00247661 0)
(1.0228 -0.00247636 0)
(1.02284 -0.00247585 0)
(1.02289 -0.00247505 0)
(1.02294 -0.00247394 0)
(1.02298 -0.00247248 0)
(1.02303 -0.00247065 0)
(1.02307 -0.00246841 0)
(1.02312 -0.00246574 0)
(1.02316 -0.00246262 0)
(1.02321 -0.00245903 0)
(1.02326 -0.00245495 0)
(1.0233 -0.00245036 0)
(1.02335 -0.00244524 0)
(1.02339 -0.00243959 0)
(1.02344 -0.0024334 0)
(1.02349 -0.00242666 0)
(1.02354 -0.00241939 0)
(1.02358 -0.00241158 0)
(1.02363 -0.00240325 0)
(1.02368 -0.00239442 0)
(1.02373 -0.00238509 0)
(1.02378 -0.0023753 0)
(1.02383 -0.00236506 0)
(1.02388 -0.00235439 0)
(1.02393 -0.00234332 0)
(1.02398 -0.00233186 0)
(1.02403 -0.00232004 0)
(1.02408 -0.00230787 0)
(1.02413 -0.00229536 0)
(1.02418 -0.00228252 0)
(1.02424 -0.00226937 0)
(1.02429 -0.00225593 0)
(1.02434 -0.00224219 0)
(1.0244 -0.00222818 0)
(1.02445 -0.00221392 0)
(1.02451 -0.00219941 0)
(1.02457 -0.00218468 0)
(1.02462 -0.00216974 0)
(1.02468 -0.00215459 0)
(1.02474 -0.00213923 0)
(1.0248 -0.00212365 0)
(1.02486 -0.00210781 0)
(1.02492 -0.00209168 0)
(1.02498 -0.00207518 0)
(1.02505 -0.00205823 0)
(1.02511 -0.00204074 0)
(1.02517 -0.00202259 0)
(1.02524 -0.00200369 0)
(1.02531 -0.00198393 0)
(1.02537 -0.0019632 0)
(1.02544 -0.00194143 0)
(1.02551 -0.00191859 0)
(1.02559 -0.00189464 0)
(1.02566 -0.0018696 0)
(1.02574 -0.00184354 0)
(1.02581 -0.00181654 0)
(1.02589 -0.00178874 0)
(1.02597 -0.00176025 0)
(1.02605 -0.00173127 0)
(1.02614 -0.00170193 0)
(1.02622 -0.00167242 0)
(1.02631 -0.00164286 0)
(1.0264 -0.0016134 0)
(1.02649 -0.00158408 0)
(1.02659 -0.00155508 0)
(1.02668 -0.00152622 0)
(1.02678 -0.00149792 0)
(1.02688 -0.00146948 0)
(1.02698 -0.00144209 0)
(1.02709 -0.00141372 0)
(1.02719 -0.00138789 0)
(1.02731 -0.00135871 0)
(1.02739 -0.00133628 0)
(1.02755 -0.00130395 0)
(1.0276 -0.00128977 0)
(1.02782 -0.00124782 0)
(1.0221 -0.00256312 0)
(1.02214 -0.00255759 0)
(1.02219 -0.00255256 0)
(1.02223 -0.00254801 0)
(1.02228 -0.00254396 0)
(1.02232 -0.00254038 0)
(1.02237 -0.00253726 0)
(1.02242 -0.00253459 0)
(1.02246 -0.00253234 0)
(1.02251 -0.00253049 0)
(1.02255 -0.002529 0)
(1.0226 -0.00252785 0)
(1.02265 -0.00252699 0)
(1.02269 -0.00252639 0)
(1.02274 -0.00252601 0)
(1.02278 -0.0025258 0)
(1.02283 -0.00252571 0)
(1.02287 -0.00252572 0)
(1.02292 -0.00252576 0)
(1.02297 -0.00252579 0)
(1.02301 -0.00252578 0)
(1.02306 -0.00252567 0)
(1.0231 -0.00252544 0)
(1.02315 -0.00252504 0)
(1.02319 -0.00252443 0)
(1.02324 -0.00252358 0)
(1.02328 -0.00252246 0)
(1.02333 -0.00252104 0)
(1.02338 -0.00251929 0)
(1.02342 -0.00251718 0)
(1.02347 -0.00251468 0)
(1.02351 -0.00251177 0)
(1.02356 -0.00250843 0)
(1.0236 -0.00250464 0)
(1.02365 -0.00250038 0)
(1.0237 -0.00249562 0)
(1.02374 -0.00249037 0)
(1.02379 -0.0024846 0)
(1.02384 -0.00247831 0)
(1.02388 -0.0024715 0)
(1.02393 -0.00246417 0)
(1.02398 -0.00245633 0)
(1.02403 -0.00244798 0)
(1.02407 -0.00243915 0)
(1.02412 -0.00242984 0)
(1.02417 -0.00242008 0)
(1.02422 -0.00240988 0)
(1.02427 -0.00239928 0)
(1.02432 -0.00238828 0)
(1.02437 -0.00237692 0)
(1.02442 -0.0023652 0)
(1.02447 -0.00235314 0)
(1.02453 -0.00234076 0)
(1.02458 -0.00232806 0)
(1.02463 -0.00231506 0)
(1.02469 -0.00230178 0)
(1.02474 -0.00228822 0)
(1.02479 -0.00227439 0)
(1.02485 -0.00226032 0)
(1.02491 -0.00224601 0)
(1.02496 -0.00223149 0)
(1.02502 -0.00221677 0)
(1.02508 -0.00220185 0)
(1.02514 -0.00218673 0)
(1.0252 -0.0021714 0)
(1.02526 -0.00215584 0)
(1.02532 -0.00213999 0)
(1.02538 -0.00212381 0)
(1.02544 -0.0021072 0)
(1.02551 -0.00209009 0)
(1.02557 -0.00207237 0)
(1.02564 -0.00205394 0)
(1.0257 -0.00203468 0)
(1.02577 -0.00201452 0)
(1.02584 -0.00199338 0)
(1.02591 -0.0019712 0)
(1.02598 -0.00194797 0)
(1.02606 -0.00192371 0)
(1.02613 -0.00189846 0)
(1.02621 -0.00187231 0)
(1.02629 -0.00184537 0)
(1.02637 -0.00181778 0)
(1.02645 -0.0017897 0)
(1.02653 -0.00176129 0)
(1.02662 -0.0017327 0)
(1.02671 -0.00170405 0)
(1.02679 -0.00167552 0)
(1.02689 -0.00164711 0)
(1.02698 -0.00161904 0)
(1.02708 -0.0015911 0)
(1.02717 -0.00156372 0)
(1.02728 -0.00153622 0)
(1.02737 -0.00150976 0)
(1.02748 -0.00148236 0)
(1.02758 -0.00145744 0)
(1.02771 -0.00142929 0)
(1.02779 -0.00140767 0)
(1.02794 -0.0013765 0)
(1.02799 -0.00136285 0)
(1.02821 -0.00132244 0)
(1.02251 -0.0026179 0)
(1.02255 -0.00261217 0)
(1.0226 -0.00260691 0)
(1.02264 -0.00260213 0)
(1.02269 -0.00259781 0)
(1.02273 -0.00259395 0)
(1.02278 -0.00259053 0)
(1.02283 -0.00258755 0)
(1.02287 -0.00258497 0)
(1.02292 -0.00258277 0)
(1.02296 -0.00258093 0)
(1.02301 -0.00257941 0)
(1.02306 -0.00257818 0)
(1.0231 -0.0025772 0)
(1.02315 -0.00257643 0)
(1.02319 -0.00257583 0)
(1.02324 -0.00257536 0)
(1.02328 -0.00257497 0)
(1.02333 -0.00257463 0)
(1.02338 -0.00257428 0)
(1.02342 -0.00257389 0)
(1.02347 -0.00257341 0)
(1.02351 -0.00257282 0)
(1.02356 -0.00257206 0)
(1.0236 -0.00257112 0)
(1.02365 -0.00256994 0)
(1.0237 -0.0025685 0)
(1.02374 -0.00256678 0)
(1.02379 -0.00256474 0)
(1.02383 -0.00256236 0)
(1.02388 -0.00255961 0)
(1.02392 -0.00255647 0)
(1.02397 -0.00255291 0)
(1.02402 -0.00254892 0)
(1.02406 -0.00254448 0)
(1.02411 -0.00253957 0)
(1.02415 -0.00253417 0)
(1.0242 -0.00252829 0)
(1.02425 -0.00252191 0)
(1.02429 -0.00251502 0)
(1.02434 -0.00250764 0)
(1.02439 -0.00249976 0)
(1.02444 -0.00249139 0)
(1.02449 -0.00248256 0)
(1.02453 -0.00247326 0)
(1.02458 -0.00246353 0)
(1.02463 -0.00245339 0)
(1.02468 -0.00244284 0)
(1.02473 -0.00243192 0)
(1.02478 -0.00242064 0)
(1.02483 -0.00240902 0)
(1.02489 -0.00239707 0)
(1.02494 -0.00238481 0)
(1.02499 -0.00237225 0)
(1.02504 -0.0023594 0)
(1.0251 -0.00234627 0)
(1.02515 -0.00233287 0)
(1.02521 -0.00231922 0)
(1.02526 -0.00230534 0)
(1.02532 -0.00229123 0)
(1.02537 -0.00227691 0)
(1.02543 -0.0022624 0)
(1.02549 -0.0022477 0)
(1.02555 -0.00223281 0)
(1.02561 -0.00221773 0)
(1.02567 -0.00220242 0)
(1.02573 -0.00218686 0)
(1.02579 -0.00217097 0)
(1.02585 -0.0021547 0)
(1.02592 -0.00213795 0)
(1.02598 -0.00212064 0)
(1.02605 -0.00210265 0)
(1.02611 -0.00208389 0)
(1.02618 -0.00206428 0)
(1.02625 -0.00204373 0)
(1.02632 -0.0020222 0)
(1.02639 -0.00199967 0)
(1.02647 -0.00197615 0)
(1.02654 -0.00195168 0)
(1.02662 -0.00192634 0)
(1.0267 -0.00190025 0)
(1.02678 -0.00187353 0)
(1.02686 -0.00184634 0)
(1.02694 -0.00181881 0)
(1.02703 -0.00179111 0)
(1.02712 -0.00176336 0)
(1.0272 -0.00173572 0)
(1.0273 -0.00170821 0)
(1.02739 -0.00168102 0)
(1.02749 -0.00165398 0)
(1.02758 -0.00162749 0)
(1.02768 -0.00160091 0)
(1.02778 -0.00157534 0)
(1.02789 -0.00154889 0)
(1.02799 -0.00152484 0)
(1.02811 -0.00149769 0)
(1.0282 -0.00147686 0)
(1.02835 -0.00144682 0)
(1.0284 -0.00143369 0)
(1.02862 -0.00139477 0)
(1.02293 -0.00267111 0)
(1.02298 -0.00266518 0)
(1.02302 -0.00265971 0)
(1.02307 -0.00265469 0)
(1.02311 -0.00265012 0)
(1.02316 -0.00264599 0)
(1.0232 -0.00264229 0)
(1.02325 -0.002639 0)
(1.0233 -0.0026361 0)
(1.02334 -0.00263357 0)
(1.02339 -0.00263139 0)
(1.02343 -0.00262951 0)
(1.02348 -0.00262792 0)
(1.02353 -0.00262657 0)
(1.02357 -0.00262543 0)
(1.02362 -0.00262445 0)
(1.02366 -0.0026236 0)
(1.02371 -0.00262283 0)
(1.02376 -0.00262211 0)
(1.0238 -0.00262139 0)
(1.02385 -0.00262063 0)
(1.02389 -0.00261979 0)
(1.02394 -0.00261885 0)
(1.02398 -0.00261775 0)
(1.02403 -0.00261647 0)
(1.02408 -0.00261497 0)
(1.02412 -0.00261323 0)
(1.02417 -0.00261121 0)
(1.02421 -0.00260889 0)
(1.02426 -0.00260624 0)
(1.0243 -0.00260324 0)
(1.02435 -0.00259987 0)
(1.0244 -0.0025961 0)
(1.02444 -0.00259192 0)
(1.02449 -0.0025873 0)
(1.02453 -0.00258224 0)
(1.02458 -0.00257671 0)
(1.02463 -0.00257071 0)
(1.02467 -0.00256423 0)
(1.02472 -0.00255727 0)
(1.02477 -0.00254983 0)
(1.02482 -0.00254192 0)
(1.02486 -0.00253353 0)
(1.02491 -0.00252469 0)
(1.02496 -0.00251542 0)
(1.02501 -0.00250571 0)
(1.02506 -0.00249561 0)
(1.02511 -0.00248512 0)
(1.02516 -0.00247427 0)
(1.02521 -0.00246308 0)
(1.02526 -0.00245155 0)
(1.02531 -0.00243971 0)
(1.02537 -0.00242757 0)
(1.02542 -0.00241513 0)
(1.02547 -0.00240242 0)
(1.02552 -0.00238944 0)
(1.02558 -0.00237621 0)
(1.02563 -0.00236273 0)
(1.02569 -0.00234902 0)
(1.02575 -0.0023351 0)
(1.0258 -0.00232098 0)
(1.02586 -0.00230667 0)
(1.02592 -0.00229218 0)
(1.02598 -0.00227752 0)
(1.02604 -0.00226267 0)
(1.0261 -0.00224761 0)
(1.02616 -0.00223231 0)
(1.02622 -0.00221672 0)
(1.02628 -0.00220076 0)
(1.02634 -0.00218437 0)
(1.02641 -0.00216744 0)
(1.02647 -0.00214988 0)
(1.02654 -0.0021316 0)
(1.02661 -0.00211251 0)
(1.02668 -0.00209254 0)
(1.02675 -0.00207163 0)
(1.02682 -0.00204977 0)
(1.02689 -0.00202697 0)
(1.02697 -0.00200326 0)
(1.02704 -0.00197872 0)
(1.02712 -0.00195344 0)
(1.0272 -0.00192756 0)
(1.02728 -0.00190122 0)
(1.02737 -0.00187455 0)
(1.02745 -0.00184772 0)
(1.02754 -0.00182084 0)
(1.02763 -0.00179407 0)
(1.02772 -0.00176742 0)
(1.02782 -0.0017411 0)
(1.02791 -0.00171493 0)
(1.02801 -0.0016893 0)
(1.02811 -0.00166359 0)
(1.02821 -0.0016389 0)
(1.02832 -0.00161336 0)
(1.02841 -0.00159016 0)
(1.02854 -0.00156398 0)
(1.02862 -0.00154391 0)
(1.02878 -0.00151498 0)
(1.02883 -0.00150235 0)
(1.02904 -0.00146489 0)
(1.02337 -0.0027228 0)
(1.02342 -0.00271669 0)
(1.02346 -0.00271101 0)
(1.02351 -0.00270577 0)
(1.02355 -0.00270096 0)
(1.0236 -0.00269656 0)
(1.02365 -0.00269258 0)
(1.02369 -0.002689 0)
(1.02374 -0.00268579 0)
(1.02378 -0.00268294 0)
(1.02383 -0.00268042 0)
(1.02388 -0.0026782 0)
(1.02392 -0.00267626 0)
(1.02397 -0.00267455 0)
(1.02402 -0.00267304 0)
(1.02406 -0.0026717 0)
(1.02411 -0.00267048 0)
(1.02415 -0.00266934 0)
(1.0242 -0.00266825 0)
(1.02425 -0.00266717 0)
(1.02429 -0.00266605 0)
(1.02434 -0.00266486 0)
(1.02438 -0.00266357 0)
(1.02443 -0.00266214 0)
(1.02447 -0.00266053 0)
(1.02452 -0.00265872 0)
(1.02457 -0.00265668 0)
(1.02461 -0.00265437 0)
(1.02466 -0.00265178 0)
(1.0247 -0.00264887 0)
(1.02475 -0.00264563 0)
(1.02479 -0.00264203 0)
(1.02484 -0.00263806 0)
(1.02489 -0.00263368 0)
(1.02493 -0.0026289 0)
(1.02498 -0.00262368 0)
(1.02503 -0.00261802 0)
(1.02507 -0.00261191 0)
(1.02512 -0.00260534 0)
(1.02517 -0.0025983 0)
(1.02521 -0.00259081 0)
(1.02526 -0.00258285 0)
(1.02531 -0.00257445 0)
(1.02536 -0.00256561 0)
(1.02541 -0.00255634 0)
(1.02546 -0.00254667 0)
(1.0255 -0.00253661 0)
(1.02555 -0.00252617 0)
(1.0256 -0.00251539 0)
(1.02566 -0.00250427 0)
(1.02571 -0.00249283 0)
(1.02576 -0.0024811 0)
(1.02581 -0.00246907 0)
(1.02586 -0.00245676 0)
(1.02592 -0.00244418 0)
(1.02597 -0.00243135 0)
(1.02602 -0.00241827 0)
(1.02608 -0.00240495 0)
(1.02613 -0.00239142 0)
(1.02619 -0.00237768 0)
(1.02625 -0.00236375 0)
(1.0263 -0.00234963 0)
(1.02636 -0.00233535 0)
(1.02642 -0.0023209 0)
(1.02648 -0.00230628 0)
(1.02654 -0.00229146 0)
(1.0266 -0.00227641 0)
(1.02666 -0.0022611 0)
(1.02673 -0.00224545 0)
(1.02679 -0.00222938 0)
(1.02685 -0.00221283 0)
(1.02692 -0.00219568 0)
(1.02699 -0.00217785 0)
(1.02705 -0.00215927 0)
(1.02712 -0.00213985 0)
(1.02719 -0.00211955 0)
(1.02726 -0.00209834 0)
(1.02734 -0.00207622 0)
(1.02741 -0.00205325 0)
(1.02749 -0.00202947 0)
(1.02757 -0.00200499 0)
(1.02765 -0.00197993 0)
(1.02773 -0.00195441 0)
(1.02781 -0.00192858 0)
(1.0279 -0.00190259 0)
(1.02799 -0.00187655 0)
(1.02807 -0.00185061 0)
(1.02817 -0.0018248 0)
(1.02826 -0.00179932 0)
(1.02836 -0.00177399 0)
(1.02845 -0.0017492 0)
(1.02855 -0.00172435 0)
(1.02865 -0.00170049 0)
(1.02876 -0.00167584 0)
(1.02886 -0.00165346 0)
(1.02898 -0.00162823 0)
(1.02907 -0.0016089 0)
(1.02922 -0.00158105 0)
(1.02927 -0.0015689 0)
(1.02949 -0.00153287 0)
(1.02383 -0.00277304 0)
(1.02388 -0.00276675 0)
(1.02392 -0.00276088 0)
(1.02397 -0.00275542 0)
(1.02401 -0.00275037 0)
(1.02406 -0.00274572 0)
(1.02411 -0.00274147 0)
(1.02415 -0.0027376 0)
(1.0242 -0.00273409 0)
(1.02425 -0.00273093 0)
(1.02429 -0.00272809 0)
(1.02434 -0.00272554 0)
(1.02438 -0.00272325 0)
(1.02443 -0.00272119 0)
(1.02448 -0.00271933 0)
(1.02452 -0.00271763 0)
(1.02457 -0.00271605 0)
(1.02461 -0.00271456 0)
(1.02466 -0.00271311 0)
(1.02471 -0.00271167 0)
(1.02475 -0.00271021 0)
(1.0248 -0.00270868 0)
(1.02484 -0.00270705 0)
(1.02489 -0.00270529 0)
(1.02494 -0.00270337 0)
(1.02498 -0.00270125 0)
(1.02503 -0.00269891 0)
(1.02507 -0.00269632 0)
(1.02512 -0.00269346 0)
(1.02517 -0.0026903 0)
(1.02521 -0.00268683 0)
(1.02526 -0.00268301 0)
(1.0253 -0.00267883 0)
(1.02535 -0.00267427 0)
(1.0254 -0.00266931 0)
(1.02544 -0.00266394 0)
(1.02549 -0.00265815 0)
(1.02554 -0.00265193 0)
(1.02558 -0.00264527 0)
(1.02563 -0.00263816 0)
(1.02568 -0.00263061 0)
(1.02572 -0.00262262 0)
(1.02577 -0.00261419 0)
(1.02582 -0.00260534 0)
(1.02587 -0.00259609 0)
(1.02592 -0.00258644 0)
(1.02597 -0.00257641 0)
(1.02602 -0.00256603 0)
(1.02607 -0.00255531 0)
(1.02612 -0.00254427 0)
(1.02617 -0.00253292 0)
(1.02622 -0.00252128 0)
(1.02627 -0.00250936 0)
(1.02633 -0.00249717 0)
(1.02638 -0.00248472 0)
(1.02643 -0.00247203 0)
(1.02649 -0.0024591 0)
(1.02654 -0.00244594 0)
(1.0266 -0.00243257 0)
(1.02665 -0.00241901 0)
(1.02671 -0.00240526 0)
(1.02677 -0.00239133 0)
(1.02683 -0.00237725 0)
(1.02689 -0.002363 0)
(1.02695 -0.00234859 0)
(1.02701 -0.002334 0)
(1.02707 -0.00231921 0)
(1.02713 -0.00230415 0)
(1.02719 -0.00228879 0)
(1.02725 -0.00227305 0)
(1.02732 -0.00225685 0)
(1.02738 -0.0022401 0)
(1.02745 -0.00222271 0)
(1.02752 -0.00220461 0)
(1.02759 -0.00218572 0)
(1.02766 -0.00216599 0)
(1.02773 -0.00214541 0)
(1.0278 -0.00212397 0)
(1.02788 -0.0021017 0)
(1.02795 -0.00207866 0)
(1.02803 -0.00205495 0)
(1.02811 -0.00203067 0)
(1.02819 -0.00200596 0)
(1.02828 -0.00198094 0)
(1.02836 -0.00195576 0)
(1.02845 -0.00193054 0)
(1.02854 -0.00190541 0)
(1.02863 -0.00188042 0)
(1.02872 -0.00185574 0)
(1.02882 -0.00183122 0)
(1.02891 -0.00180724 0)
(1.02902 -0.00178322 0)
(1.02911 -0.00176018 0)
(1.02923 -0.00173638 0)
(1.02932 -0.0017148 0)
(1.02945 -0.00169049 0)
(1.02953 -0.00167189 0)
(1.02968 -0.00164508 0)
(1.02973 -0.0016334 0)
(1.02995 -0.00159877 0)
(1.02431 -0.00282187 0)
(1.02436 -0.00281541 0)
(1.0244 -0.00280935 0)
(1.02445 -0.00280368 0)
(1.02449 -0.0027984 0)
(1.02454 -0.00279351 0)
(1.02459 -0.002789 0)
(1.02463 -0.00278486 0)
(1.02468 -0.00278106 0)
(1.02472 -0.0027776 0)
(1.02477 -0.00277444 0)
(1.02482 -0.00277157 0)
(1.02486 -0.00276895 0)
(1.02491 -0.00276655 0)
(1.02496 -0.00276435 0)
(1.025 -0.0027623 0)
(1.02505 -0.00276037 0)
(1.0251 -0.00275853 0)
(1.02514 -0.00275673 0)
(1.02519 -0.00275495 0)
(1.02523 -0.00275315 0)
(1.02528 -0.00275129 0)
(1.02533 -0.00274933 0)
(1.02537 -0.00274725 0)
(1.02542 -0.00274502 0)
(1.02546 -0.0027426 0)
(1.02551 -0.00273998 0)
(1.02556 -0.00273712 0)
(1.0256 -0.00273399 0)
(1.02565 -0.00273059 0)
(1.02569 -0.00272687 0)
(1.02574 -0.00272284 0)
(1.02579 -0.00271846 0)
(1.02583 -0.00271371 0)
(1.02588 -0.00270859 0)
(1.02592 -0.00270308 0)
(1.02597 -0.00269716 0)
(1.02602 -0.00269082 0)
(1.02606 -0.00268407 0)
(1.02611 -0.00267689 0)
(1.02616 -0.00266928 0)
(1.02621 -0.00266125 0)
(1.02626 -0.0026528 0)
(1.0263 -0.00264395 0)
(1.02635 -0.0026347 0)
(1.0264 -0.00262507 0)
(1.02645 -0.00261508 0)
(1.0265 -0.00260475 0)
(1.02655 -0.00259409 0)
(1.0266 -0.00258312 0)
(1.02665 -0.00257185 0)
(1.02671 -0.0025603 0)
(1.02676 -0.00254849 0)
(1.02681 -0.00253641 0)
(1.02686 -0.00252409 0)
(1.02692 -0.00251153 0)
(1.02697 -0.00249874 0)
(1.02703 -0.00248574 0)
(1.02708 -0.00247253 0)
(1.02714 -0.00245913 0)
(1.0272 -0.00244556 0)
(1.02725 -0.00243181 0)
(1.02731 -0.00241792 0)
(1.02737 -0.00240387 0)
(1.02743 -0.00238967 0)
(1.02749 -0.0023753 0)
(1.02755 -0.00236073 0)
(1.02761 -0.00234594 0)
(1.02767 -0.00233085 0)
(1.02774 -0.00231542 0)
(1.0278 -0.00229955 0)
(1.02787 -0.00228318 0)
(1.02793 -0.00226621 0)
(1.028 -0.00224857 0)
(1.02807 -0.00223019 0)
(1.02814 -0.00221103 0)
(1.02821 -0.00219105 0)
(1.02829 -0.00217025 0)
(1.02836 -0.00214866 0)
(1.02844 -0.00212634 0)
(1.02851 -0.00210337 0)
(1.02859 -0.00207986 0)
(1.02868 -0.00205592 0)
(1.02876 -0.00203169 0)
(1.02885 -0.0020073 0)
(1.02893 -0.00198286 0)
(1.02902 -0.00195853 0)
(1.02911 -0.00193432 0)
(1.02921 -0.00191042 0)
(1.0293 -0.0018867 0)
(1.0294 -0.0018635 0)
(1.0295 -0.00184028 0)
(1.0296 -0.00181802 0)
(1.02971 -0.00179506 0)
(1.0298 -0.00177425 0)
(1.02993 -0.00175084 0)
(1.03001 -0.00173293 0)
(1.03017 -0.00170715 0)
(1.03021 -0.00169592 0)
(1.03043 -0.00166266 0)
(1.02481 -0.00286936 0)
(1.02486 -0.00286274 0)
(1.0249 -0.00285649 0)
(1.02495 -0.00285062 0)
(1.02499 -0.00284513 0)
(1.02504 -0.00284 0)
(1.02509 -0.00283524 0)
(1.02513 -0.00283083 0)
(1.02518 -0.00282675 0)
(1.02522 -0.00282299 0)
(1.02527 -0.00281953 0)
(1.02532 -0.00281635 0)
(1.02536 -0.0028134 0)
(1.02541 -0.00281068 0)
(1.02546 -0.00280814 0)
(1.0255 -0.00280576 0)
(1.02555 -0.00280349 0)
(1.0256 -0.00280131 0)
(1.02564 -0.00279918 0)
(1.02569 -0.00279706 0)
(1.02574 -0.00279493 0)
(1.02578 -0.00279274 0)
(1.02583 -0.00279046 0)
(1.02587 -0.00278807 0)
(1.02592 -0.00278554 0)
(1.02597 -0.00278283 0)
(1.02601 -0.00277992 0)
(1.02606 -0.00277679 0)
(1.0261 -0.00277341 0)
(1.02615 -0.00276976 0)
(1.0262 -0.00276582 0)
(1.02624 -0.00276157 0)
(1.02629 -0.002757 0)
(1.02633 -0.00275207 0)
(1.02638 -0.00274679 0)
(1.02643 -0.00274113 0)
(1.02647 -0.00273508 0)
(1.02652 -0.00272864 0)
(1.02657 -0.00272179 0)
(1.02662 -0.00271453 0)
(1.02666 -0.00270687 0)
(1.02671 -0.0026988 0)
(1.02676 -0.00269033 0)
(1.02681 -0.00268146 0)
(1.02686 -0.00267222 0)
(1.02691 -0.00266261 0)
(1.02696 -0.00265266 0)
(1.02701 -0.00264237 0)
(1.02706 -0.00263177 0)
(1.02711 -0.00262086 0)
(1.02716 -0.00260967 0)
(1.02721 -0.00259822 0)
(1.02726 -0.0025865 0)
(1.02732 -0.00257453 0)
(1.02737 -0.00256233 0)
(1.02742 -0.0025499 0)
(1.02748 -0.00253725 0)
(1.02753 -0.00252439 0)
(1.02759 -0.00251134 0)
(1.02764 -0.0024981 0)
(1.0277 -0.00248469 0)
(1.02776 -0.00247112 0)
(1.02782 -0.00245741 0)
(1.02788 -0.00244355 0)
(1.02794 -0.00242955 0)
(1.028 -0.00241539 0)
(1.02806 -0.00240105 0)
(1.02812 -0.00238649 0)
(1.02818 -0.00237167 0)
(1.02824 -0.00235653 0)
(1.02831 -0.00234099 0)
(1.02837 -0.00232497 0)
(1.02844 -0.00230841 0)
(1.02851 -0.00229121 0)
(1.02858 -0.00227332 0)
(1.02865 -0.00225469 0)
(1.02872 -0.00223529 0)
(1.02879 -0.00221511 0)
(1.02887 -0.00219419 0)
(1.02894 -0.00217256 0)
(1.02902 -0.00215031 0)
(1.0291 -0.00212753 0)
(1.02918 -0.00210435 0)
(1.02927 -0.00208087 0)
(1.02935 -0.00205725 0)
(1.02944 -0.00203358 0)
(1.02953 -0.00201001 0)
(1.02962 -0.00198656 0)
(1.02971 -0.00196342 0)
(1.02981 -0.00194046 0)
(1.0299 -0.00191802 0)
(1.03 -0.00189558 0)
(1.0301 -0.00187408 0)
(1.03021 -0.00185193 0)
(1.03031 -0.00183187 0)
(1.03043 -0.00180932 0)
(1.03051 -0.00179209 0)
(1.03067 -0.00176731 0)
(1.03072 -0.00175652 0)
(1.03094 -0.00172459 0)
(1.02533 -0.00291555 0)
(1.02538 -0.00290877 0)
(1.02542 -0.00290235 0)
(1.02547 -0.00289629 0)
(1.02551 -0.00289058 0)
(1.02556 -0.00288523 0)
(1.02561 -0.00288023 0)
(1.02565 -0.00287556 0)
(1.0257 -0.00287121 0)
(1.02575 -0.00286717 0)
(1.02579 -0.00286342 0)
(1.02584 -0.00285993 0)
(1.02589 -0.00285667 0)
(1.02593 -0.00285363 0)
(1.02598 -0.00285077 0)
(1.02603 -0.00284806 0)
(1.02607 -0.00284546 0)
(1.02612 -0.00284295 0)
(1.02617 -0.00284049 0)
(1.02621 -0.00283805 0)
(1.02626 -0.00283559 0)
(1.02631 -0.00283308 0)
(1.02635 -0.0028305 0)
(1.0264 -0.0028278 0)
(1.02644 -0.00282497 0)
(1.02649 -0.00282198 0)
(1.02654 -0.0028188 0)
(1.02658 -0.0028154 0)
(1.02663 -0.00281177 0)
(1.02668 -0.00280789 0)
(1.02672 -0.00280372 0)
(1.02677 -0.00279926 0)
(1.02681 -0.00279449 0)
(1.02686 -0.00278939 0)
(1.02691 -0.00278394 0)
(1.02695 -0.00277814 0)
(1.027 -0.00277196 0)
(1.02705 -0.00276541 0)
(1.0271 -0.00275847 0)
(1.02714 -0.00275114 0)
(1.02719 -0.00274342 0)
(1.02724 -0.0027353 0)
(1.02729 -0.00272681 0)
(1.02734 -0.00271793 0)
(1.02738 -0.0027087 0)
(1.02743 -0.00269911 0)
(1.02748 -0.00268918 0)
(1.02753 -0.00267893 0)
(1.02758 -0.00266838 0)
(1.02764 -0.00265754 0)
(1.02769 -0.00264643 0)
(1.02774 -0.00263506 0)
(1.02779 -0.00262343 0)
(1.02784 -0.00261157 0)
(1.0279 -0.00259948 0)
(1.02795 -0.00258718 0)
(1.02801 -0.00257466 0)
(1.02806 -0.00256194 0)
(1.02812 -0.00254903 0)
(1.02817 -0.00253595 0)
(1.02823 -0.0025227 0)
(1.02829 -0.00250931 0)
(1.02835 -0.00249577 0)
(1.0284 -0.00248209 0)
(1.02846 -0.00246828 0)
(1.02852 -0.00245432 0)
(1.02859 -0.00244019 0)
(1.02865 -0.00242587 0)
(1.02871 -0.0024113 0)
(1.02877 -0.00239643 0)
(1.02884 -0.0023812 0)
(1.0289 -0.00236553 0)
(1.02897 -0.00234935 0)
(1.02904 -0.00233258 0)
(1.02911 -0.00231516 0)
(1.02918 -0.00229704 0)
(1.02925 -0.0022782 0)
(1.02932 -0.00225862 0)
(1.0294 -0.00223832 0)
(1.02947 -0.00221736 0)
(1.02955 -0.00219581 0)
(1.02963 -0.00217374 0)
(1.02971 -0.00215129 0)
(1.02979 -0.00212855 0)
(1.02988 -0.00210567 0)
(1.02997 -0.00208274 0)
(1.03006 -0.00205991 0)
(1.03015 -0.0020372 0)
(1.03024 -0.0020148 0)
(1.03034 -0.00199258 0)
(1.03043 -0.00197087 0)
(1.03053 -0.00194918 0)
(1.03063 -0.00192842 0)
(1.03074 -0.00190705 0)
(1.03083 -0.00188771 0)
(1.03096 -0.00186601 0)
(1.03104 -0.00184943 0)
(1.0312 -0.00182562 0)
(1.03125 -0.00181526 0)
(1.03146 -0.00178465 0)
(1.02588 -0.0029605 0)
(1.02592 -0.00295357 0)
(1.02597 -0.00294698 0)
(1.02601 -0.00294073 0)
(1.02606 -0.00293483 0)
(1.02611 -0.00292926 0)
(1.02615 -0.00292402 0)
(1.0262 -0.00291911 0)
(1.02625 -0.0029145 0)
(1.02629 -0.00291019 0)
(1.02634 -0.00290615 0)
(1.02639 -0.00290236 0)
(1.02643 -0.00289881 0)
(1.02648 -0.00289545 0)
(1.02653 -0.00289228 0)
(1.02657 -0.00288925 0)
(1.02662 -0.00288633 0)
(1.02667 -0.0028835 0)
(1.02671 -0.00288072 0)
(1.02676 -0.00287796 0)
(1.02681 -0.00287518 0)
(1.02685 -0.00287237 0)
(1.0269 -0.00286948 0)
(1.02695 -0.00286649 0)
(1.02699 -0.00286337 0)
(1.02704 -0.0028601 0)
(1.02709 -0.00285665 0)
(1.02713 -0.002853 0)
(1.02718 -0.00284912 0)
(1.02723 -0.002845 0)
(1.02727 -0.00284061 0)
(1.02732 -0.00283595 0)
(1.02736 -0.00283098 0)
(1.02741 -0.00282571 0)
(1.02746 -0.0028201 0)
(1.02751 -0.00281415 0)
(1.02755 -0.00280785 0)
(1.0276 -0.00280119 0)
(1.02765 -0.00279416 0)
(1.02769 -0.00278675 0)
(1.02774 -0.00277897 0)
(1.02779 -0.00277082 0)
(1.02784 -0.00276229 0)
(1.02789 -0.00275341 0)
(1.02794 -0.00274417 0)
(1.02799 -0.0027346 0)
(1.02804 -0.0027247 0)
(1.02809 -0.00271449 0)
(1.02814 -0.00270399 0)
(1.02819 -0.00269321 0)
(1.02824 -0.00268216 0)
(1.02829 -0.00267087 0)
(1.02834 -0.00265934 0)
(1.0284 -0.00264758 0)
(1.02845 -0.0026356 0)
(1.0285 -0.00262341 0)
(1.02856 -0.00261102 0)
(1.02861 -0.00259843 0)
(1.02867 -0.00258567 0)
(1.02873 -0.00257273 0)
(1.02878 -0.00255964 0)
(1.02884 -0.00254641 0)
(1.0289 -0.00253303 0)
(1.02896 -0.00251953 0)
(1.02902 -0.0025059 0)
(1.02908 -0.00249213 0)
(1.02914 -0.00247821 0)
(1.0292 -0.00246411 0)
(1.02927 -0.00244978 0)
(1.02933 -0.00243518 0)
(1.02939 -0.00242024 0)
(1.02946 -0.0024049 0)
(1.02953 -0.00238908 0)
(1.02959 -0.00237272 0)
(1.02966 -0.00235575 0)
(1.02973 -0.00233812 0)
(1.0298 -0.00231981 0)
(1.02988 -0.00230081 0)
(1.02995 -0.00228112 0)
(1.03003 -0.00226081 0)
(1.0301 -0.00223992 0)
(1.03018 -0.00221855 0)
(1.03027 -0.0021968 0)
(1.03035 -0.00217478 0)
(1.03043 -0.00215261 0)
(1.03052 -0.0021304 0)
(1.03061 -0.00210829 0)
(1.0307 -0.0020863 0)
(1.03079 -0.0020646 0)
(1.03089 -0.0020431 0)
(1.03099 -0.0020221 0)
(1.03109 -0.00200114 0)
(1.03118 -0.00198109 0)
(1.03129 -0.00196048 0)
(1.03139 -0.00194184 0)
(1.03151 -0.00192096 0)
(1.0316 -0.00190501 0)
(1.03175 -0.00188215 0)
(1.0318 -0.00187221 0)
(1.03202 -0.00184287 0)
(1.02645 -0.00300425 0)
(1.02649 -0.00299718 0)
(1.02654 -0.00299043 0)
(1.02658 -0.00298401 0)
(1.02663 -0.00297791 0)
(1.02668 -0.00297213 0)
(1.02672 -0.00296667 0)
(1.02677 -0.00296152 0)
(1.02682 -0.00295666 0)
(1.02687 -0.00295208 0)
(1.02691 -0.00294777 0)
(1.02696 -0.0029437 0)
(1.02701 -0.00293985 0)
(1.02705 -0.0029362 0)
(1.0271 -0.00293272 0)
(1.02715 -0.00292938 0)
(1.02719 -0.00292615 0)
(1.02724 -0.002923 0)
(1.02729 -0.00291991 0)
(1.02733 -0.00291684 0)
(1.02738 -0.00291376 0)
(1.02743 -0.00291065 0)
(1.02747 -0.00290746 0)
(1.02752 -0.00290418 0)
(1.02757 -0.00290078 0)
(1.02761 -0.00289724 0)
(1.02766 -0.00289352 0)
(1.02771 -0.00288962 0)
(1.02775 -0.0028855 0)
(1.0278 -0.00288115 0)
(1.02785 -0.00287655 0)
(1.02789 -0.00287168 0)
(1.02794 -0.00286653 0)
(1.02799 -0.00286108 0)
(1.02804 -0.00285531 0)
(1.02808 -0.00284922 0)
(1.02813 -0.0028428 0)
(1.02818 -0.00283602 0)
(1.02822 -0.0028289 0)
(1.02827 -0.00282142 0)
(1.02832 -0.00281358 0)
(1.02837 -0.00280538 0)
(1.02842 -0.00279682 0)
(1.02847 -0.00278792 0)
(1.02852 -0.00277869 0)
(1.02857 -0.00276912 0)
(1.02862 -0.00275925 0)
(1.02867 -0.00274908 0)
(1.02872 -0.00273862 0)
(1.02877 -0.0027279 0)
(1.02882 -0.00271692 0)
(1.02887 -0.0027057 0)
(1.02892 -0.00269426 0)
(1.02898 -0.00268259 0)
(1.02903 -0.00267071 0)
(1.02909 -0.00265864 0)
(1.02914 -0.00264636 0)
(1.0292 -0.00263391 0)
(1.02925 -0.00262128 0)
(1.02931 -0.00260849 0)
(1.02936 -0.00259555 0)
(1.02942 -0.00258247 0)
(1.02948 -0.00256926 0)
(1.02954 -0.00255592 0)
(1.0296 -0.00254246 0)
(1.02966 -0.00252888 0)
(1.02972 -0.00251515 0)
(1.02978 -0.00250126 0)
(1.02985 -0.00248716 0)
(1.02991 -0.00247282 0)
(1.02998 -0.00245816 0)
(1.03004 -0.00244313 0)
(1.03011 -0.00242766 0)
(1.03017 -0.00241168 0)
(1.03024 -0.00239514 0)
(1.03031 -0.00237798 0)
(1.03039 -0.00236018 0)
(1.03046 -0.00234173 0)
(1.03053 -0.00232264 0)
(1.03061 -0.00230294 0)
(1.03069 -0.0022827 0)
(1.03077 -0.002262 0)
(1.03085 -0.00224093 0)
(1.03093 -0.0022196 0)
(1.03102 -0.00219813 0)
(1.0311 -0.00217661 0)
(1.03119 -0.00215519 0)
(1.03128 -0.0021339 0)
(1.03138 -0.00211289 0)
(1.03147 -0.00209208 0)
(1.03157 -0.00207177 0)
(1.03167 -0.00205151 0)
(1.03177 -0.00203215 0)
(1.03188 -0.00201228 0)
(1.03197 -0.00199432 0)
(1.0321 -0.00197423 0)
(1.03218 -0.00195889 0)
(1.03233 -0.00193696 0)
(1.03238 -0.00192742 0)
(1.0326 -0.00189934 0)
(1.02704 -0.00304686 0)
(1.02709 -0.00303965 0)
(1.02714 -0.00303276 0)
(1.02718 -0.00302617 0)
(1.02723 -0.00301988 0)
(1.02728 -0.00301391 0)
(1.02732 -0.00300823 0)
(1.02737 -0.00300285 0)
(1.02742 -0.00299775 0)
(1.02746 -0.00299291 0)
(1.02751 -0.00298833 0)
(1.02756 -0.00298399 0)
(1.02761 -0.00297986 0)
(1.02765 -0.00297591 0)
(1.0277 -0.00297214 0)
(1.02775 -0.0029685 0)
(1.0278 -0.00296497 0)
(1.02784 -0.00296152 0)
(1.02789 -0.00295812 0)
(1.02794 -0.00295475 0)
(1.02798 -0.00295137 0)
(1.02803 -0.00294796 0)
(1.02808 -0.00294449 0)
(1.02812 -0.00294093 0)
(1.02817 -0.00293725 0)
(1.02822 -0.00293344 0)
(1.02826 -0.00292947 0)
(1.02831 -0.00292531 0)
(1.02836 -0.00292096 0)
(1.02841 -0.00291638 0)
(1.02845 -0.00291157 0)
(1.0285 -0.0029065 0)
(1.02855 -0.00290116 0)
(1.02859 -0.00289554 0)
(1.02864 -0.00288962 0)
(1.02869 -0.00288339 0)
(1.02874 -0.00287684 0)
(1.02878 -0.00286995 0)
(1.02883 -0.00286274 0)
(1.02888 -0.00285518 0)
(1.02893 -0.00284728 0)
(1.02898 -0.00283903 0)
(1.02902 -0.00283045 0)
(1.02907 -0.00282153 0)
(1.02912 -0.00281229 0)
(1.02917 -0.00280273 0)
(1.02922 -0.00279288 0)
(1.02927 -0.00278274 0)
(1.02932 -0.00277233 0)
(1.02938 -0.00276166 0)
(1.02943 -0.00275074 0)
(1.02948 -0.0027396 0)
(1.02953 -0.00272823 0)
(1.02959 -0.00271665 0)
(1.02964 -0.00270488 0)
(1.02969 -0.00269291 0)
(1.02975 -0.00268075 0)
(1.0298 -0.00266842 0)
(1.02986 -0.00265592 0)
(1.02992 -0.00264327 0)
(1.02997 -0.00263047 0)
(1.03003 -0.00261753 0)
(1.03009 -0.00260448 0)
(1.03015 -0.0025913 0)
(1.03021 -0.00257801 0)
(1.03027 -0.0025646 0)
(1.03033 -0.00255107 0)
(1.0304 -0.00253737 0)
(1.03046 -0.00252349 0)
(1.03052 -0.00250938 0)
(1.03059 -0.00249499 0)
(1.03065 -0.00248026 0)
(1.03072 -0.00246512 0)
(1.03079 -0.00244951 0)
(1.03086 -0.00243338 0)
(1.03093 -0.00241667 0)
(1.031 -0.00239936 0)
(1.03107 -0.00238144 0)
(1.03114 -0.00236291 0)
(1.03122 -0.00234381 0)
(1.0313 -0.0023242 0)
(1.03138 -0.00230414 0)
(1.03146 -0.00228373 0)
(1.03154 -0.00226306 0)
(1.03163 -0.00224227 0)
(1.03172 -0.00222143 0)
(1.0318 -0.00220068 0)
(1.0319 -0.00218006 0)
(1.03199 -0.00215972 0)
(1.03208 -0.00213958 0)
(1.03218 -0.00211993 0)
(1.03228 -0.00210036 0)
(1.03238 -0.00208166 0)
(1.03249 -0.0020625 0)
(1.03258 -0.0020452 0)
(1.03271 -0.00202588 0)
(1.03279 -0.00201114 0)
(1.03294 -0.00199011 0)
(1.03299 -0.00198095 0)
(1.03321 -0.00195411 0)
(1.02767 -0.00308838 0)
(1.02772 -0.00308105 0)
(1.02776 -0.00307401 0)
(1.02781 -0.00306726 0)
(1.02786 -0.0030608 0)
(1.0279 -0.00305463 0)
(1.02795 -0.00304875 0)
(1.028 -0.00304314 0)
(1.02805 -0.00303781 0)
(1.02809 -0.00303273 0)
(1.02814 -0.00302789 0)
(1.02819 -0.00302328 0)
(1.02824 -0.00301888 0)
(1.02828 -0.00301465 0)
(1.02833 -0.00301059 0)
(1.02838 -0.00300666 0)
(1.02843 -0.00300283 0)
(1.02847 -0.00299909 0)
(1.02852 -0.0029954 0)
(1.02857 -0.00299174 0)
(1.02862 -0.00298807 0)
(1.02866 -0.00298437 0)
(1.02871 -0.00298061 0)
(1.02876 -0.00297677 0)
(1.0288 -0.00297283 0)
(1.02885 -0.00296876 0)
(1.0289 -0.00296453 0)
(1.02895 -0.00296013 0)
(1.02899 -0.00295554 0)
(1.02904 -0.00295075 0)
(1.02909 -0.00294572 0)
(1.02913 -0.00294046 0)
(1.02918 -0.00293494 0)
(1.02923 -0.00292914 0)
(1.02928 -0.00292307 0)
(1.02932 -0.0029167 0)
(1.02937 -0.00291002 0)
(1.02942 -0.00290303 0)
(1.02947 -0.00289572 0)
(1.02952 -0.00288808 0)
(1.02956 -0.00288011 0)
(1.02961 -0.00287182 0)
(1.02966 -0.0028632 0)
(1.02971 -0.00285427 0)
(1.02976 -0.00284502 0)
(1.02981 -0.00283547 0)
(1.02986 -0.00282563 0)
(1.02991 -0.00281552 0)
(1.02996 -0.00280515 0)
(1.03002 -0.00279453 0)
(1.03007 -0.00278367 0)
(1.03012 -0.00277259 0)
(1.03017 -0.0027613 0)
(1.03023 -0.00274981 0)
(1.03028 -0.00273813 0)
(1.03034 -0.00272626 0)
(1.03039 -0.00271421 0)
(1.03045 -0.002702 0)
(1.0305 -0.00268963 0)
(1.03056 -0.00267711 0)
(1.03062 -0.00266444 0)
(1.03067 -0.00265165 0)
(1.03073 -0.00263874 0)
(1.03079 -0.00262572 0)
(1.03085 -0.00261259 0)
(1.03091 -0.00259935 0)
(1.03098 -0.00258599 0)
(1.03104 -0.00257249 0)
(1.0311 -0.00255882 0)
(1.03117 -0.00254494 0)
(1.03123 -0.0025308 0)
(1.0313 -0.00251634 0)
(1.03136 -0.00250152 0)
(1.03143 -0.00248626 0)
(1.0315 -0.00247052 0)
(1.03157 -0.00245424 0)
(1.03164 -0.0024374 0)
(1.03171 -0.00241999 0)
(1.03179 -0.002402 0)
(1.03187 -0.00238348 0)
(1.03194 -0.00236446 0)
(1.03202 -0.00234502 0)
(1.0321 -0.00232525 0)
(1.03219 -0.00230523 0)
(1.03227 -0.00228509 0)
(1.03236 -0.0022649 0)
(1.03245 -0.0022448 0)
(1.03254 -0.00222483 0)
(1.03263 -0.00220514 0)
(1.03273 -0.00218565 0)
(1.03282 -0.00216665 0)
(1.03293 -0.00214774 0)
(1.03302 -0.00212968 0)
(1.03313 -0.00211121 0)
(1.03323 -0.00209454 0)
(1.03335 -0.00207597 0)
(1.03343 -0.0020618 0)
(1.03359 -0.00204166 0)
(1.03364 -0.00203287 0)
(1.03385 -0.00200723 0)
(1.02833 -0.00312886 0)
(1.02838 -0.00312141 0)
(1.02842 -0.00311423 0)
(1.02847 -0.00310733 0)
(1.02852 -0.0031007 0)
(1.02857 -0.00309435 0)
(1.02861 -0.00308827 0)
(1.02866 -0.00308245 0)
(1.02871 -0.0030769 0)
(1.02876 -0.00307158 0)
(1.0288 -0.0030665 0)
(1.02885 -0.00306163 0)
(1.0289 -0.00305696 0)
(1.02895 -0.00305246 0)
(1.029 -0.00304812 0)
(1.02904 -0.00304391 0)
(1.02909 -0.0030398 0)
(1.02914 -0.00303577 0)
(1.02919 -0.00303179 0)
(1.02923 -0.00302784 0)
(1.02928 -0.00302389 0)
(1.02933 -0.00301991 0)
(1.02938 -0.00301588 0)
(1.02942 -0.00301177 0)
(1.02947 -0.00300756 0)
(1.02952 -0.00300323 0)
(1.02957 -0.00299876 0)
(1.02961 -0.00299412 0)
(1.02966 -0.00298931 0)
(1.02971 -0.00298429 0)
(1.02976 -0.00297906 0)
(1.0298 -0.0029736 0)
(1.02985 -0.0029679 0)
(1.0299 -0.00296193 0)
(1.02995 -0.0029557 0)
(1.02999 -0.00294919 0)
(1.03004 -0.00294239 0)
(1.03009 -0.00293529 0)
(1.03014 -0.00292788 0)
(1.03019 -0.00292016 0)
(1.03024 -0.00291213 0)
(1.03029 -0.00290379 0)
(1.03033 -0.00289514 0)
(1.03038 -0.00288618 0)
(1.03043 -0.00287692 0)
(1.03048 -0.00286738 0)
(1.03054 -0.00285756 0)
(1.03059 -0.00284747 0)
(1.03064 -0.00283713 0)
(1.03069 -0.00282655 0)
(1.03074 -0.00281575 0)
(1.03079 -0.00280474 0)
(1.03085 -0.00279352 0)
(1.0309 -0.00278211 0)
(1.03096 -0.00277052 0)
(1.03101 -0.00275874 0)
(1.03107 -0.0027468 0)
(1.03112 -0.0027347 0)
(1.03118 -0.00272245 0)
(1.03124 -0.00271005 0)
(1.03129 -0.00269752 0)
(1.03135 -0.00268487 0)
(1.03141 -0.0026721 0)
(1.03147 -0.00265923 0)
(1.03153 -0.00264625 0)
(1.03159 -0.00263317 0)
(1.03165 -0.00261998 0)
(1.03172 -0.00260666 0)
(1.03178 -0.00259318 0)
(1.03184 -0.00257952 0)
(1.03191 -0.00256562 0)
(1.03197 -0.00255143 0)
(1.03204 -0.0025369 0)
(1.03211 -0.00252198 0)
(1.03218 -0.0025066 0)
(1.03225 -0.00249074 0)
(1.03232 -0.00247435 0)
(1.03239 -0.00245742 0)
(1.03247 -0.00243995 0)
(1.03254 -0.00242198 0)
(1.03262 -0.00240354 0)
(1.0327 -0.0023847 0)
(1.03278 -0.00236554 0)
(1.03287 -0.00234615 0)
(1.03295 -0.00232664 0)
(1.03304 -0.00230708 0)
(1.03313 -0.00228762 0)
(1.03322 -0.00226827 0)
(1.03331 -0.00224921 0)
(1.03341 -0.00223035 0)
(1.0335 -0.00221197 0)
(1.0336 -0.0021937 0)
(1.0337 -0.00217626 0)
(1.03381 -0.00215846 0)
(1.0339 -0.0021424 0)
(1.03403 -0.00212457 0)
(1.03411 -0.00211095 0)
(1.03427 -0.00209167 0)
(1.03432 -0.00208324 0)
(1.03453 -0.00205878 0)
(1.02902 -0.00316835 0)
(1.02907 -0.00316079 0)
(1.02912 -0.00315348 0)
(1.02917 -0.00314643 0)
(1.02921 -0.00313965 0)
(1.02926 -0.00313312 0)
(1.02931 -0.00312685 0)
(1.02936 -0.00312083 0)
(1.02941 -0.00311506 0)
(1.02945 -0.00310952 0)
(1.0295 -0.0031042 0)
(1.02955 -0.00309909 0)
(1.0296 -0.00309416 0)
(1.02965 -0.0030894 0)
(1.02969 -0.00308479 0)
(1.02974 -0.0030803 0)
(1.02979 -0.00307592 0)
(1.02984 -0.00307161 0)
(1.02989 -0.00306735 0)
(1.02993 -0.00306312 0)
(1.02998 -0.00305889 0)
(1.03003 -0.00305464 0)
(1.03008 -0.00305034 0)
(1.03013 -0.00304597 0)
(1.03017 -0.0030415 0)
(1.03022 -0.00303692 0)
(1.03027 -0.0030322 0)
(1.03032 -0.00302733 0)
(1.03037 -0.00302229 0)
(1.03041 -0.00301706 0)
(1.03046 -0.00301162 0)
(1.03051 -0.00300597 0)
(1.03056 -0.00300009 0)
(1.0306 -0.00299396 0)
(1.03065 -0.00298757 0)
(1.0307 -0.00298092 0)
(1.03075 -0.00297399 0)
(1.0308 -0.00296678 0)
(1.03085 -0.00295928 0)
(1.0309 -0.00295148 0)
(1.03094 -0.00294339 0)
(1.03099 -0.00293499 0)
(1.03104 -0.0029263 0)
(1.03109 -0.00291732 0)
(1.03114 -0.00290805 0)
(1.03119 -0.0028985 0)
(1.03124 -0.00288869 0)
(1.0313 -0.00287863 0)
(1.03135 -0.00286832 0)
(1.0314 -0.00285778 0)
(1.03145 -0.00284703 0)
(1.03151 -0.00283608 0)
(1.03156 -0.00282493 0)
(1.03161 -0.00281359 0)
(1.03167 -0.00280208 0)
(1.03172 -0.0027904 0)
(1.03178 -0.00277856 0)
(1.03183 -0.00276657 0)
(1.03189 -0.00275443 0)
(1.03195 -0.00274215 0)
(1.03201 -0.00272975 0)
(1.03207 -0.00271722 0)
(1.03212 -0.00270459 0)
(1.03218 -0.00269186 0)
(1.03225 -0.00267903 0)
(1.03231 -0.0026661 0)
(1.03237 -0.00265307 0)
(1.03243 -0.00263992 0)
(1.0325 -0.00262663 0)
(1.03256 -0.00261317 0)
(1.03262 -0.0025995 0)
(1.03269 -0.00258557 0)
(1.03276 -0.00257132 0)
(1.03283 -0.00255671 0)
(1.0329 -0.00254169 0)
(1.03297 -0.00252621 0)
(1.03304 -0.00251025 0)
(1.03311 -0.00249379 0)
(1.03319 -0.00247682 0)
(1.03326 -0.00245937 0)
(1.03334 -0.00244149 0)
(1.03342 -0.00242323 0)
(1.0335 -0.00240466 0)
(1.03359 -0.00238587 0)
(1.03367 -0.00236697 0)
(1.03376 -0.00234803 0)
(1.03385 -0.00232917 0)
(1.03394 -0.00231044 0)
(1.03403 -0.00229198 0)
(1.03413 -0.00227374 0)
(1.03422 -0.00225596 0)
(1.03432 -0.00223831 0)
(1.03442 -0.00222147 0)
(1.03453 -0.00220432 0)
(1.03462 -0.00218885 0)
(1.03475 -0.00217172 0)
(1.03483 -0.00215864 0)
(1.03499 -0.0021402 0)
(1.03503 -0.00213211 0)
(1.03525 -0.00210882 0)
(1.02976 -0.00320691 0)
(1.0298 -0.00319924 0)
(1.02985 -0.00319181 0)
(1.0299 -0.00318462 0)
(1.02995 -0.00317769 0)
(1.03 -0.00317099 0)
(1.03004 -0.00316455 0)
(1.03009 -0.00315834 0)
(1.03014 -0.00315236 0)
(1.03019 -0.0031466 0)
(1.03024 -0.00314105 0)
(1.03029 -0.00313569 0)
(1.03034 -0.00313052 0)
(1.03038 -0.00312551 0)
(1.03043 -0.00312064 0)
(1.03048 -0.00311588 0)
(1.03053 -0.00311123 0)
(1.03058 -0.00310665 0)
(1.03063 -0.00310212 0)
(1.03067 -0.00309762 0)
(1.03072 -0.00309312 0)
(1.03077 -0.0030886 0)
(1.03082 -0.00308404 0)
(1.03087 -0.00307941 0)
(1.03092 -0.00307469 0)
(1.03096 -0.00306986 0)
(1.03101 -0.00306491 0)
(1.03106 -0.00305981 0)
(1.03111 -0.00305454 0)
(1.03116 -0.0030491 0)
(1.03121 -0.00304346 0)
(1.03125 -0.00303762 0)
(1.0313 -0.00303156 0)
(1.03135 -0.00302526 0)
(1.0314 -0.00301873 0)
(1.03145 -0.00301193 0)
(1.0315 -0.00300488 0)
(1.03154 -0.00299756 0)
(1.03159 -0.00298996 0)
(1.03164 -0.00298208 0)
(1.03169 -0.00297391 0)
(1.03174 -0.00296546 0)
(1.03179 -0.00295673 0)
(1.03184 -0.00294772 0)
(1.03189 -0.00293843 0)
(1.03194 -0.00292889 0)
(1.032 -0.00291908 0)
(1.03205 -0.00290904 0)
(1.0321 -0.00289876 0)
(1.03215 -0.00288826 0)
(1.0322 -0.00287756 0)
(1.03226 -0.00286665 0)
(1.03231 -0.00285557 0)
(1.03237 -0.0028443 0)
(1.03242 -0.00283287 0)
(1.03248 -0.00282128 0)
(1.03253 -0.00280953 0)
(1.03259 -0.00279764 0)
(1.03265 -0.00278561 0)
(1.0327 -0.00277345 0)
(1.03276 -0.00276116 0)
(1.03282 -0.00274877 0)
(1.03288 -0.00273627 0)
(1.03294 -0.00272367 0)
(1.033 -0.00271098 0)
(1.03306 -0.0026982 0)
(1.03313 -0.00268532 0)
(1.03319 -0.00267234 0)
(1.03325 -0.00265922 0)
(1.03332 -0.00264596 0)
(1.03338 -0.0026325 0)
(1.03345 -0.0026188 0)
(1.03352 -0.00260482 0)
(1.03358 -0.00259052 0)
(1.03365 -0.00257583 0)
(1.03373 -0.00256072 0)
(1.0338 -0.00254516 0)
(1.03387 -0.00252914 0)
(1.03395 -0.00251265 0)
(1.03402 -0.00249571 0)
(1.0341 -0.00247836 0)
(1.03418 -0.00246065 0)
(1.03426 -0.00244266 0)
(1.03435 -0.00242445 0)
(1.03443 -0.00240614 0)
(1.03452 -0.00238779 0)
(1.03461 -0.00236953 0)
(1.0347 -0.00235139 0)
(1.03479 -0.00233352 0)
(1.03489 -0.00231586 0)
(1.03498 -0.00229867 0)
(1.03508 -0.00228162 0)
(1.03518 -0.00226536 0)
(1.03529 -0.00224884 0)
(1.03538 -0.00223394 0)
(1.03551 -0.00221751 0)
(1.03559 -0.00220493 0)
(1.03575 -0.00218732 0)
(1.0358 -0.00217955 0)
(1.03601 -0.0021574 0)
(1.03053 -0.00324458 0)
(1.03058 -0.00323681 0)
(1.03063 -0.00322926 0)
(1.03068 -0.00322195 0)
(1.03072 -0.00321487 0)
(1.03077 -0.00320802 0)
(1.03082 -0.0032014 0)
(1.03087 -0.00319501 0)
(1.03092 -0.00318883 0)
(1.03097 -0.00318286 0)
(1.03102 -0.0031771 0)
(1.03106 -0.00317151 0)
(1.03111 -0.0031661 0)
(1.03116 -0.00316084 0)
(1.03121 -0.00315572 0)
(1.03126 -0.00315071 0)
(1.03131 -0.00314579 0)
(1.03136 -0.00314095 0)
(1.03141 -0.00313616 0)
(1.03146 -0.00313139 0)
(1.03151 -0.00312663 0)
(1.03155 -0.00312185 0)
(1.0316 -0.00311703 0)
(1.03165 -0.00311215 0)
(1.0317 -0.00310718 0)
(1.03175 -0.00310211 0)
(1.0318 -0.00309692 0)
(1.03185 -0.0030916 0)
(1.03189 -0.00308611 0)
(1.03194 -0.00308046 0)
(1.03199 -0.00307463 0)
(1.03204 -0.0030686 0)
(1.03209 -0.00306236 0)
(1.03214 -0.0030559 0)
(1.03219 -0.00304921 0)
(1.03224 -0.00304228 0)
(1.03229 -0.0030351 0)
(1.03233 -0.00302766 0)
(1.03238 -0.00301996 0)
(1.03243 -0.003012 0)
(1.03248 -0.00300376 0)
(1.03253 -0.00299525 0)
(1.03258 -0.00298648 0)
(1.03264 -0.00297744 0)
(1.03269 -0.00296813 0)
(1.03274 -0.00295858 0)
(1.03279 -0.00294878 0)
(1.03284 -0.00293875 0)
(1.03289 -0.00292849 0)
(1.03295 -0.00291803 0)
(1.033 -0.00290737 0)
(1.03305 -0.00289652 0)
(1.03311 -0.00288549 0)
(1.03316 -0.00287429 0)
(1.03322 -0.00286293 0)
(1.03327 -0.00285142 0)
(1.03333 -0.00283977 0)
(1.03339 -0.00282797 0)
(1.03344 -0.00281604 0)
(1.0335 -0.00280399 0)
(1.03356 -0.00279182 0)
(1.03362 -0.00277955 0)
(1.03368 -0.00276717 0)
(1.03374 -0.0027547 0)
(1.0338 -0.00274214 0)
(1.03386 -0.0027295 0)
(1.03393 -0.00271677 0)
(1.03399 -0.00270394 0)
(1.03405 -0.002691 0)
(1.03412 -0.00267792 0)
(1.03419 -0.00266466 0)
(1.03425 -0.00265119 0)
(1.03432 -0.00263746 0)
(1.03439 -0.00262344 0)
(1.03446 -0.00260906 0)
(1.03453 -0.00259431 0)
(1.0346 -0.00257914 0)
(1.03468 -0.00256353 0)
(1.03475 -0.0025475 0)
(1.03483 -0.00253104 0)
(1.03491 -0.0025142 0)
(1.03499 -0.00249703 0)
(1.03507 -0.00247958 0)
(1.03515 -0.00246194 0)
(1.03524 -0.0024442 0)
(1.03532 -0.00242643 0)
(1.03541 -0.00240873 0)
(1.0355 -0.00239117 0)
(1.0356 -0.00237387 0)
(1.03569 -0.00235679 0)
(1.03579 -0.00234016 0)
(1.03589 -0.00232369 0)
(1.03599 -0.002308 0)
(1.0361 -0.00229209 0)
(1.03619 -0.00227773 0)
(1.03632 -0.00226197 0)
(1.0364 -0.00224989 0)
(1.03656 -0.00223308 0)
(1.0366 -0.00222563 0)
(1.03682 -0.00220458 0)
(1.03135 -0.00328141 0)
(1.0314 -0.00327355 0)
(1.03145 -0.0032659 0)
(1.0315 -0.00325847 0)
(1.03154 -0.00325125 0)
(1.03159 -0.00324426 0)
(1.03164 -0.00323747 0)
(1.03169 -0.0032309 0)
(1.03174 -0.00322454 0)
(1.03179 -0.00321837 0)
(1.03184 -0.00321239 0)
(1.03189 -0.00320659 0)
(1.03194 -0.00320095 0)
(1.03199 -0.00319545 0)
(1.03204 -0.00319009 0)
(1.03209 -0.00318483 0)
(1.03214 -0.00317966 0)
(1.03219 -0.00317456 0)
(1.03224 -0.00316952 0)
(1.03228 -0.00316449 0)
(1.03233 -0.00315947 0)
(1.03238 -0.00315444 0)
(1.03243 -0.00314937 0)
(1.03248 -0.00314424 0)
(1.03253 -0.00313903 0)
(1.03258 -0.00313372 0)
(1.03263 -0.0031283 0)
(1.03268 -0.00312275 0)
(1.03273 -0.00311706 0)
(1.03278 -0.0031112 0)
(1.03283 -0.00310517 0)
(1.03288 -0.00309895 0)
(1.03292 -0.00309253 0)
(1.03297 -0.00308591 0)
(1.03302 -0.00307907 0)
(1.03307 -0.00307199 0)
(1.03312 -0.00306469 0)
(1.03317 -0.00305714 0)
(1.03322 -0.00304934 0)
(1.03327 -0.00304129 0)
(1.03332 -0.00303298 0)
(1.03337 -0.00302441 0)
(1.03342 -0.00301559 0)
(1.03348 -0.00300651 0)
(1.03353 -0.00299719 0)
(1.03358 -0.00298763 0)
(1.03363 -0.00297783 0)
(1.03368 -0.00296781 0)
(1.03374 -0.00295757 0)
(1.03379 -0.00294714 0)
(1.03384 -0.00293651 0)
(1.0339 -0.00292571 0)
(1.03395 -0.00291473 0)
(1.03401 -0.0029036 0)
(1.03406 -0.00289231 0)
(1.03412 -0.00288088 0)
(1.03418 -0.00286931 0)
(1.03423 -0.00285761 0)
(1.03429 -0.00284578 0)
(1.03435 -0.00283383 0)
(1.03441 -0.00282177 0)
(1.03447 -0.00280961 0)
(1.03453 -0.00279735 0)
(1.03459 -0.002785 0)
(1.03465 -0.00277257 0)
(1.03471 -0.00276007 0)
(1.03478 -0.00274748 0)
(1.03484 -0.0027348 0)
(1.03491 -0.00272201 0)
(1.03497 -0.0027091 0)
(1.03504 -0.00269603 0)
(1.0351 -0.00268278 0)
(1.03517 -0.00266929 0)
(1.03524 -0.00265553 0)
(1.03531 -0.00264145 0)
(1.03538 -0.00262703 0)
(1.03546 -0.00261222 0)
(1.03553 -0.00259702 0)
(1.03561 -0.00258142 0)
(1.03568 -0.00256543 0)
(1.03576 -0.00254908 0)
(1.03584 -0.00253241 0)
(1.03592 -0.0025155 0)
(1.03601 -0.0024984 0)
(1.03609 -0.0024812 0)
(1.03618 -0.00246399 0)
(1.03627 -0.00244685 0)
(1.03636 -0.00242984 0)
(1.03645 -0.00241309 0)
(1.03655 -0.00239657 0)
(1.03665 -0.00238049 0)
(1.03675 -0.00236458 0)
(1.03685 -0.00234943 0)
(1.03696 -0.00233412 0)
(1.03705 -0.00232029 0)
(1.03718 -0.00230518 0)
(1.03726 -0.00229357 0)
(1.03742 -0.00227754 0)
(1.03746 -0.00227039 0)
(1.03768 -0.00225044 0)
(1.03222 -0.00331747 0)
(1.03227 -0.00330952 0)
(1.03232 -0.00330178 0)
(1.03237 -0.00329423 0)
(1.03241 -0.00328689 0)
(1.03246 -0.00327975 0)
(1.03251 -0.00327281 0)
(1.03256 -0.00326608 0)
(1.03261 -0.00325953 0)
(1.03266 -0.00325317 0)
(1.03271 -0.00324699 0)
(1.03276 -0.00324098 0)
(1.03281 -0.00323512 0)
(1.03286 -0.00322939 0)
(1.03291 -0.00322379 0)
(1.03296 -0.0032183 0)
(1.03301 -0.00321288 0)
(1.03306 -0.00320754 0)
(1.03311 -0.00320224 0)
(1.03316 -0.00319697 0)
(1.03321 -0.0031917 0)
(1.03326 -0.00318642 0)
(1.03331 -0.0031811 0)
(1.03336 -0.00317573 0)
(1.03341 -0.00317028 0)
(1.03346 -0.00316474 0)
(1.03351 -0.00315909 0)
(1.03356 -0.00315332 0)
(1.03361 -0.00314742 0)
(1.03366 -0.00314136 0)
(1.03371 -0.00313513 0)
(1.03376 -0.00312873 0)
(1.03381 -0.00312214 0)
(1.03386 -0.00311535 0)
(1.03391 -0.00310835 0)
(1.03396 -0.00310114 0)
(1.03401 -0.00309371 0)
(1.03406 -0.00308604 0)
(1.03411 -0.00307814 0)
(1.03416 -0.00307 0)
(1.03421 -0.00306161 0)
(1.03426 -0.00305299 0)
(1.03432 -0.00304411 0)
(1.03437 -0.003035 0)
(1.03442 -0.00302565 0)
(1.03447 -0.00301607 0)
(1.03452 -0.00300627 0)
(1.03458 -0.00299626 0)
(1.03463 -0.00298604 0)
(1.03468 -0.00297563 0)
(1.03474 -0.00296504 0)
(1.03479 -0.00295428 0)
(1.03485 -0.00294336 0)
(1.0349 -0.00293228 0)
(1.03496 -0.00292106 0)
(1.03502 -0.0029097 0)
(1.03507 -0.00289821 0)
(1.03513 -0.00288659 0)
(1.03519 -0.00287485 0)
(1.03525 -0.002863 0)
(1.03531 -0.00285105 0)
(1.03537 -0.002839 0)
(1.03543 -0.00282685 0)
(1.03549 -0.00281462 0)
(1.03555 -0.00280232 0)
(1.03562 -0.00278994 0)
(1.03568 -0.00277748 0)
(1.03575 -0.00276494 0)
(1.03581 -0.00275231 0)
(1.03588 -0.00273956 0)
(1.03594 -0.00272667 0)
(1.03601 -0.00271362 0)
(1.03608 -0.00270035 0)
(1.03615 -0.00268684 0)
(1.03622 -0.00267305 0)
(1.03629 -0.00265894 0)
(1.03636 -0.00264448 0)
(1.03644 -0.00262965 0)
(1.03651 -0.00261446 0)
(1.03659 -0.00259891 0)
(1.03667 -0.00258303 0)
(1.03675 -0.00256686 0)
(1.03683 -0.00255045 0)
(1.03692 -0.00253387 0)
(1.037 -0.00251721 0)
(1.03709 -0.00250053 0)
(1.03718 -0.00248393 0)
(1.03727 -0.00246747 0)
(1.03737 -0.00245125 0)
(1.03746 -0.00243526 0)
(1.03756 -0.00241971 0)
(1.03766 -0.00240436 0)
(1.03776 -0.00238973 0)
(1.03787 -0.00237499 0)
(1.03796 -0.00236168 0)
(1.03809 -0.0023472 0)
(1.03817 -0.00233605 0)
(1.03833 -0.00232078 0)
(1.03838 -0.00231391 0)
(1.0386 -0.00229502 0)
(1.03314 -0.0033528 0)
(1.03319 -0.00334478 0)
(1.03324 -0.00333694 0)
(1.03329 -0.00332929 0)
(1.03334 -0.00332183 0)
(1.03339 -0.00331456 0)
(1.03344 -0.00330748 0)
(1.03349 -0.00330058 0)
(1.03354 -0.00329387 0)
(1.03359 -0.00328733 0)
(1.03364 -0.00328095 0)
(1.03369 -0.00327474 0)
(1.03374 -0.00326866 0)
(1.03379 -0.00326272 0)
(1.03384 -0.00325689 0)
(1.03389 -0.00325116 0)
(1.03394 -0.00324552 0)
(1.03399 -0.00323993 0)
(1.03404 -0.00323439 0)
(1.0341 -0.00322887 0)
(1.03415 -0.00322336 0)
(1.0342 -0.00321784 0)
(1.03425 -0.00321228 0)
(1.0343 -0.00320667 0)
(1.03435 -0.00320099 0)
(1.0344 -0.00319522 0)
(1.03445 -0.00318935 0)
(1.0345 -0.00318337 0)
(1.03455 -0.00317725 0)
(1.0346 -0.00317099 0)
(1.03465 -0.00316457 0)
(1.0347 -0.00315798 0)
(1.03475 -0.00315122 0)
(1.0348 -0.00314426 0)
(1.03485 -0.00313712 0)
(1.0349 -0.00312976 0)
(1.03495 -0.0031222 0)
(1.03501 -0.00311442 0)
(1.03506 -0.00310641 0)
(1.03511 -0.00309818 0)
(1.03516 -0.00308972 0)
(1.03521 -0.00308103 0)
(1.03526 -0.0030721 0)
(1.03532 -0.00306295 0)
(1.03537 -0.00305357 0)
(1.03542 -0.00304398 0)
(1.03547 -0.00303417 0)
(1.03553 -0.00302416 0)
(1.03558 -0.00301395 0)
(1.03564 -0.00300357 0)
(1.03569 -0.00299301 0)
(1.03575 -0.00298228 0)
(1.0358 -0.0029714 0)
(1.03586 -0.00296038 0)
(1.03592 -0.00294922 0)
(1.03597 -0.00293793 0)
(1.03603 -0.00292651 0)
(1.03609 -0.00291497 0)
(1.03615 -0.00290333 0)
(1.03621 -0.00289157 0)
(1.03627 -0.00287972 0)
(1.03633 -0.00286777 0)
(1.03639 -0.00285573 0)
(1.03645 -0.00284362 0)
(1.03652 -0.00283143 0)
(1.03658 -0.00281917 0)
(1.03664 -0.00280684 0)
(1.03671 -0.00279443 0)
(1.03677 -0.00278194 0)
(1.03684 -0.00276935 0)
(1.03691 -0.00275663 0)
(1.03698 -0.00274376 0)
(1.03704 -0.00273071 0)
(1.03711 -0.00271743 0)
(1.03719 -0.0027039 0)
(1.03726 -0.00269009 0)
(1.03733 -0.00267595 0)
(1.03741 -0.00266149 0)
(1.03748 -0.00264669 0)
(1.03756 -0.00263156 0)
(1.03764 -0.00261612 0)
(1.03772 -0.00260042 0)
(1.0378 -0.0025845 0)
(1.03789 -0.00256842 0)
(1.03797 -0.00255227 0)
(1.03806 -0.00253611 0)
(1.03815 -0.00252003 0)
(1.03825 -0.00250409 0)
(1.03834 -0.0024884 0)
(1.03844 -0.00247293 0)
(1.03853 -0.0024579 0)
(1.03864 -0.00244307 0)
(1.03873 -0.00242896 0)
(1.03885 -0.00241477 0)
(1.03894 -0.00240196 0)
(1.03907 -0.00238809 0)
(1.03915 -0.00237738 0)
(1.03931 -0.00236285 0)
(1.03935 -0.00235625 0)
(1.03957 -0.0023384 0)
(1.03412 -0.00338746 0)
(1.03417 -0.00337937 0)
(1.03422 -0.00337145 0)
(1.03427 -0.0033637 0)
(1.03432 -0.00335613 0)
(1.03437 -0.00334873 0)
(1.03442 -0.00334152 0)
(1.03447 -0.00333447 0)
(1.03452 -0.0033276 0)
(1.03457 -0.00332088 0)
(1.03463 -0.00331433 0)
(1.03468 -0.00330792 0)
(1.03473 -0.00330164 0)
(1.03478 -0.00329549 0)
(1.03483 -0.00328944 0)
(1.03488 -0.00328349 0)
(1.03493 -0.00327761 0)
(1.03498 -0.00327179 0)
(1.03504 -0.00326601 0)
(1.03509 -0.00326026 0)
(1.03514 -0.00325451 0)
(1.03519 -0.00324875 0)
(1.03524 -0.00324296 0)
(1.03529 -0.00323711 0)
(1.03534 -0.00323121 0)
(1.0354 -0.00322521 0)
(1.03545 -0.00321913 0)
(1.0355 -0.00321293 0)
(1.03555 -0.0032066 0)
(1.0356 -0.00320014 0)
(1.03565 -0.00319353 0)
(1.0357 -0.00318676 0)
(1.03575 -0.00317983 0)
(1.03581 -0.00317271 0)
(1.03586 -0.00316541 0)
(1.03591 -0.00315792 0)
(1.03596 -0.00315022 0)
(1.03601 -0.00314232 0)
(1.03606 -0.00313421 0)
(1.03612 -0.00312589 0)
(1.03617 -0.00311734 0)
(1.03622 -0.00310858 0)
(1.03627 -0.0030996 0)
(1.03633 -0.00309041 0)
(1.03638 -0.003081 0)
(1.03643 -0.00307138 0)
(1.03649 -0.00306156 0)
(1.03654 -0.00305155 0)
(1.0366 -0.00304135 0)
(1.03665 -0.00303098 0)
(1.03671 -0.00302045 0)
(1.03676 -0.00300976 0)
(1.03682 -0.00299892 0)
(1.03688 -0.00298795 0)
(1.03693 -0.00297684 0)
(1.03699 -0.00296561 0)
(1.03705 -0.00295427 0)
(1.03711 -0.00294281 0)
(1.03717 -0.00293124 0)
(1.03723 -0.00291958 0)
(1.03729 -0.00290782 0)
(1.03735 -0.00289597 0)
(1.03741 -0.00288404 0)
(1.03748 -0.00287203 0)
(1.03754 -0.00285995 0)
(1.0376 -0.00284781 0)
(1.03767 -0.0028356 0)
(1.03773 -0.00282332 0)
(1.0378 -0.00281096 0)
(1.03787 -0.00279852 0)
(1.03794 -0.00278596 0)
(1.038 -0.00277327 0)
(1.03807 -0.00276041 0)
(1.03815 -0.00274736 0)
(1.03822 -0.00273407 0)
(1.03829 -0.00272053 0)
(1.03836 -0.00270671 0)
(1.03844 -0.00269258 0)
(1.03852 -0.00267815 0)
(1.03859 -0.00266342 0)
(1.03867 -0.00264841 0)
(1.03876 -0.00263315 0)
(1.03884 -0.0026177 0)
(1.03892 -0.00260211 0)
(1.03901 -0.00258645 0)
(1.0391 -0.00257079 0)
(1.03919 -0.00255522 0)
(1.03928 -0.00253978 0)
(1.03938 -0.00252459 0)
(1.03947 -0.00250963 0)
(1.03957 -0.0024951 0)
(1.03968 -0.00248079 0)
(1.03977 -0.00246717 0)
(1.03989 -0.00245352 0)
(1.03998 -0.00244119 0)
(1.04011 -0.00242792 0)
(1.04019 -0.00241764 0)
(1.04035 -0.00240382 0)
(1.0404 -0.00239747 0)
(1.04062 -0.00238063 0)
(1.03516 -0.00342151 0)
(1.03521 -0.00341335 0)
(1.03526 -0.00340535 0)
(1.03531 -0.00339752 0)
(1.03536 -0.00338984 0)
(1.03542 -0.00338233 0)
(1.03547 -0.00337499 0)
(1.03552 -0.0033678 0)
(1.03557 -0.00336077 0)
(1.03562 -0.0033539 0)
(1.03567 -0.00334717 0)
(1.03573 -0.00334057 0)
(1.03578 -0.0033341 0)
(1.03583 -0.00332774 0)
(1.03588 -0.00332149 0)
(1.03594 -0.00331532 0)
(1.03599 -0.00330922 0)
(1.03604 -0.00330318 0)
(1.03609 -0.00329717 0)
(1.03614 -0.00329119 0)
(1.0362 -0.00328521 0)
(1.03625 -0.00327921 0)
(1.0363 -0.00327319 0)
(1.03635 -0.00326712 0)
(1.0364 -0.00326099 0)
(1.03646 -0.00325478 0)
(1.03651 -0.00324847 0)
(1.03656 -0.00324206 0)
(1.03661 -0.00323553 0)
(1.03667 -0.00322888 0)
(1.03672 -0.00322208 0)
(1.03677 -0.00321513 0)
(1.03682 -0.00320802 0)
(1.03687 -0.00320074 0)
(1.03693 -0.00319328 0)
(1.03698 -0.00318565 0)
(1.03703 -0.00317782 0)
(1.03708 -0.0031698 0)
(1.03714 -0.00316159 0)
(1.03719 -0.00315316 0)
(1.03724 -0.00314454 0)
(1.0373 -0.00313571 0)
(1.03735 -0.00312667 0)
(1.0374 -0.00311742 0)
(1.03746 -0.00310798 0)
(1.03751 -0.00309833 0)
(1.03757 -0.0030885 0)
(1.03762 -0.00307849 0)
(1.03768 -0.0030683 0)
(1.03773 -0.00305794 0)
(1.03779 -0.00304743 0)
(1.03785 -0.00303677 0)
(1.0379 -0.00302597 0)
(1.03796 -0.00301504 0)
(1.03802 -0.00300398 0)
(1.03808 -0.00299281 0)
(1.03814 -0.00298153 0)
(1.0382 -0.00297015 0)
(1.03826 -0.00295866 0)
(1.03832 -0.00294708 0)
(1.03838 -0.0029354 0)
(1.03844 -0.00292365 0)
(1.0385 -0.00291182 0)
(1.03857 -0.00289991 0)
(1.03863 -0.00288794 0)
(1.0387 -0.00287591 0)
(1.03876 -0.00286381 0)
(1.03883 -0.00285166 0)
(1.0389 -0.00283943 0)
(1.03896 -0.00282712 0)
(1.03903 -0.00281471 0)
(1.0391 -0.00280219 0)
(1.03917 -0.00278951 0)
(1.03924 -0.00277667 0)
(1.03932 -0.00276361 0)
(1.03939 -0.00275033 0)
(1.03947 -0.00273679 0)
(1.03954 -0.00272299 0)
(1.03962 -0.0027089 0)
(1.0397 -0.00269455 0)
(1.03978 -0.00267994 0)
(1.03986 -0.00266511 0)
(1.03994 -0.00265011 0)
(1.04003 -0.00263498 0)
(1.04012 -0.0026198 0)
(1.04021 -0.00260463 0)
(1.0403 -0.00258954 0)
(1.04039 -0.00257459 0)
(1.04049 -0.0025599 0)
(1.04058 -0.00254543 0)
(1.04068 -0.00253138 0)
(1.04079 -0.00251756 0)
(1.04088 -0.00250444 0)
(1.041 -0.00249129 0)
(1.04109 -0.00247945 0)
(1.04122 -0.00246674 0)
(1.0413 -0.00245688 0)
(1.04146 -0.00244375 0)
(1.04151 -0.00243766 0)
(1.04173 -0.00242177 0)
(1.03627 -0.003455 0)
(1.03632 -0.00344678 0)
(1.03637 -0.00343872 0)
(1.03643 -0.0034308 0)
(1.03648 -0.00342303 0)
(1.03653 -0.00341541 0)
(1.03658 -0.00340794 0)
(1.03663 -0.00340063 0)
(1.03669 -0.00339346 0)
(1.03674 -0.00338642 0)
(1.03679 -0.00337953 0)
(1.03685 -0.00337275 0)
(1.0369 -0.0033661 0)
(1.03695 -0.00335955 0)
(1.037 -0.00335309 0)
(1.03706 -0.00334671 0)
(1.03711 -0.0033404 0)
(1.03716 -0.00333414 0)
(1.03722 -0.00332791 0)
(1.03727 -0.0033217 0)
(1.03732 -0.0033155 0)
(1.03738 -0.00330928 0)
(1.03743 -0.00330303 0)
(1.03748 -0.00329674 0)
(1.03754 -0.00329038 0)
(1.03759 -0.00328396 0)
(1.03764 -0.00327744 0)
(1.0377 -0.00327082 0)
(1.03775 -0.00326409 0)
(1.0378 -0.00325724 0)
(1.03785 -0.00325025 0)
(1.03791 -0.00324312 0)
(1.03796 -0.00323584 0)
(1.03801 -0.0032284 0)
(1.03807 -0.00322079 0)
(1.03812 -0.00321301 0)
(1.03817 -0.00320505 0)
(1.03823 -0.00319691 0)
(1.03828 -0.00318858 0)
(1.03833 -0.00318007 0)
(1.03839 -0.00317135 0)
(1.03844 -0.00316245 0)
(1.0385 -0.00315334 0)
(1.03855 -0.00314405 0)
(1.03861 -0.00313456 0)
(1.03866 -0.00312489 0)
(1.03872 -0.00311504 0)
(1.03877 -0.00310502 0)
(1.03883 -0.00309483 0)
(1.03889 -0.00308448 0)
(1.03894 -0.00307399 0)
(1.039 -0.00306335 0)
(1.03906 -0.00305258 0)
(1.03912 -0.00304169 0)
(1.03918 -0.00303069 0)
(1.03924 -0.00301957 0)
(1.0393 -0.00300835 0)
(1.03936 -0.00299703 0)
(1.03942 -0.00298562 0)
(1.03948 -0.00297412 0)
(1.03954 -0.00296253 0)
(1.03961 -0.00295086 0)
(1.03967 -0.00293912 0)
(1.03973 -0.00292732 0)
(1.0398 -0.00291545 0)
(1.03987 -0.00290352 0)
(1.03993 -0.00289153 0)
(1.04 -0.00287949 0)
(1.04007 -0.00286739 0)
(1.04014 -0.00285521 0)
(1.04021 -0.00284294 0)
(1.04028 -0.00283057 0)
(1.04035 -0.00281807 0)
(1.04042 -0.00280541 0)
(1.04049 -0.00279258 0)
(1.04057 -0.00277954 0)
(1.04064 -0.00276627 0)
(1.04072 -0.00275276 0)
(1.0408 -0.002739 0)
(1.04088 -0.00272501 0)
(1.04096 -0.00271078 0)
(1.04104 -0.00269636 0)
(1.04113 -0.00268179 0)
(1.04121 -0.0026671 0)
(1.0413 -0.00265238 0)
(1.04139 -0.00263767 0)
(1.04148 -0.00262306 0)
(1.04158 -0.00260858 0)
(1.04167 -0.00259437 0)
(1.04177 -0.00258036 0)
(1.04187 -0.00256681 0)
(1.04197 -0.00255345 0)
(1.04207 -0.00254082 0)
(1.04219 -0.00252815 0)
(1.04228 -0.00251679 0)
(1.04241 -0.00250461 0)
(1.04249 -0.00249519 0)
(1.04266 -0.0024827 0)
(1.0427 -0.00247686 0)
(1.04293 -0.00246187 0)
(1.03746 -0.00348798 0)
(1.03751 -0.00347972 0)
(1.03756 -0.00347159 0)
(1.03761 -0.00346359 0)
(1.03766 -0.00345574 0)
(1.03772 -0.00344802 0)
(1.03777 -0.00344045 0)
(1.03782 -0.003433 0)
(1.03788 -0.0034257 0)
(1.03793 -0.00341852 0)
(1.03799 -0.00341146 0)
(1.03804 -0.00340452 0)
(1.03809 -0.00339769 0)
(1.03815 -0.00339095 0)
(1.0382 -0.0033843 0)
(1.03826 -0.00337772 0)
(1.03831 -0.00337121 0)
(1.03836 -0.00336473 0)
(1.03842 -0.00335829 0)
(1.03847 -0.00335187 0)
(1.03853 -0.00334544 0)
(1.03858 -0.003339 0)
(1.03863 -0.00333253 0)
(1.03869 -0.00332602 0)
(1.03874 -0.00331945 0)
(1.0388 -0.00331281 0)
(1.03885 -0.00330608 0)
(1.03891 -0.00329926 0)
(1.03896 -0.00329233 0)
(1.03901 -0.00328528 0)
(1.03907 -0.00327811 0)
(1.03912 -0.0032708 0)
(1.03918 -0.00326335 0)
(1.03923 -0.00325574 0)
(1.03928 -0.00324798 0)
(1.03934 -0.00324006 0)
(1.03939 -0.00323197 0)
(1.03945 -0.0032237 0)
(1.0395 -0.00321526 0)
(1.03956 -0.00320664 0)
(1.03961 -0.00319784 0)
(1.03967 -0.00318885 0)
(1.03972 -0.00317968 0)
(1.03978 -0.00317033 0)
(1.03983 -0.00316081 0)
(1.03989 -0.0031511 0)
(1.03995 -0.00314123 0)
(1.04 -0.00313119 0)
(1.04006 -0.003121 0)
(1.04012 -0.00311066 0)
(1.04018 -0.00310017 0)
(1.04024 -0.00308956 0)
(1.04029 -0.00307882 0)
(1.04035 -0.00306797 0)
(1.04041 -0.00305701 0)
(1.04047 -0.00304594 0)
(1.04054 -0.00303478 0)
(1.0406 -0.00302352 0)
(1.04066 -0.00301217 0)
(1.04072 -0.00300074 0)
(1.04079 -0.00298924 0)
(1.04085 -0.00297765 0)
(1.04092 -0.002966 0)
(1.04098 -0.00295429 0)
(1.04105 -0.00294251 0)
(1.04111 -0.00293069 0)
(1.04118 -0.00291881 0)
(1.04125 -0.00290687 0)
(1.04132 -0.00289488 0)
(1.04139 -0.00288282 0)
(1.04146 -0.00287069 0)
(1.04153 -0.00285846 0)
(1.0416 -0.00284612 0)
(1.04168 -0.00283365 0)
(1.04175 -0.00282101 0)
(1.04183 -0.0028082 0)
(1.0419 -0.00279518 0)
(1.04198 -0.00278195 0)
(1.04206 -0.0027685 0)
(1.04214 -0.00275484 0)
(1.04222 -0.00274098 0)
(1.0423 -0.00272694 0)
(1.04239 -0.00271278 0)
(1.04248 -0.00269851 0)
(1.04257 -0.00268424 0)
(1.04266 -0.00266997 0)
(1.04275 -0.00265582 0)
(1.04284 -0.00264179 0)
(1.04294 -0.00262805 0)
(1.04304 -0.00261449 0)
(1.04314 -0.00260142 0)
(1.04324 -0.0025885 0)
(1.04334 -0.00257636 0)
(1.04346 -0.00256413 0)
(1.04355 -0.00255327 0)
(1.04368 -0.00254156 0)
(1.04377 -0.00253261 0)
(1.04393 -0.00252069 0)
(1.04398 -0.00251516 0)
(1.0442 -0.00250096 0)
(1.03872 -0.00352052 0)
(1.03877 -0.00351221 0)
(1.03882 -0.00350402 0)
(1.03888 -0.00349596 0)
(1.03893 -0.00348803 0)
(1.03899 -0.00348022 0)
(1.03904 -0.00347254 0)
(1.03909 -0.00346498 0)
(1.03915 -0.00345755 0)
(1.0392 -0.00345023 0)
(1.03926 -0.00344303 0)
(1.03931 -0.00343593 0)
(1.03937 -0.00342893 0)
(1.03942 -0.00342201 0)
(1.03948 -0.00341518 0)
(1.03953 -0.0034084 0)
(1.03959 -0.00340169 0)
(1.03964 -0.00339501 0)
(1.0397 -0.00338836 0)
(1.03975 -0.00338172 0)
(1.03981 -0.00337508 0)
(1.03987 -0.00336843 0)
(1.03992 -0.00336174 0)
(1.03998 -0.00335502 0)
(1.04003 -0.00334823 0)
(1.04009 -0.00334138 0)
(1.04014 -0.00333445 0)
(1.0402 -0.00332742 0)
(1.04025 -0.0033203 0)
(1.04031 -0.00331306 0)
(1.04036 -0.0033057 0)
(1.04042 -0.00329821 0)
(1.04047 -0.00329058 0)
(1.04053 -0.00328281 0)
(1.04058 -0.0032749 0)
(1.04064 -0.00326683 0)
(1.04069 -0.0032586 0)
(1.04075 -0.00325021 0)
(1.04081 -0.00324166 0)
(1.04086 -0.00323293 0)
(1.04092 -0.00322404 0)
(1.04097 -0.00321497 0)
(1.04103 -0.00320573 0)
(1.04109 -0.00319632 0)
(1.04114 -0.00318675 0)
(1.0412 -0.00317701 0)
(1.04126 -0.00316711 0)
(1.04132 -0.00315705 0)
(1.04138 -0.00314685 0)
(1.04144 -0.00313651 0)
(1.04149 -0.00312604 0)
(1.04155 -0.00311544 0)
(1.04161 -0.00310472 0)
(1.04167 -0.0030939 0)
(1.04174 -0.00308298 0)
(1.0418 -0.00307195 0)
(1.04186 -0.00306084 0)
(1.04192 -0.00304964 0)
(1.04199 -0.00303836 0)
(1.04205 -0.003027 0)
(1.04211 -0.00301556 0)
(1.04218 -0.00300406 0)
(1.04225 -0.00299249 0)
(1.04231 -0.00298086 0)
(1.04238 -0.00296918 0)
(1.04245 -0.00295745 0)
(1.04252 -0.00294566 0)
(1.04258 -0.00293383 0)
(1.04265 -0.00292195 0)
(1.04273 -0.00291001 0)
(1.0428 -0.002898 0)
(1.04287 -0.0028859 0)
(1.04294 -0.00287371 0)
(1.04302 -0.0028614 0)
(1.04309 -0.00284895 0)
(1.04317 -0.00283634 0)
(1.04325 -0.00282356 0)
(1.04332 -0.00281059 0)
(1.0434 -0.00279743 0)
(1.04349 -0.00278408 0)
(1.04357 -0.00277056 0)
(1.04365 -0.00275688 0)
(1.04374 -0.00274311 0)
(1.04383 -0.00272925 0)
(1.04392 -0.00271539 0)
(1.04401 -0.00270154 0)
(1.0441 -0.00268785 0)
(1.0442 -0.00267425 0)
(1.04429 -0.00266098 0)
(1.04439 -0.00264783 0)
(1.04449 -0.00263525 0)
(1.0446 -0.00262272 0)
(1.0447 -0.00261109 0)
(1.04481 -0.00259924 0)
(1.04491 -0.00258892 0)
(1.04504 -0.0025776 0)
(1.04513 -0.00256919 0)
(1.04529 -0.00255773 0)
(1.04534 -0.00255258 0)
(1.04556 -0.00253904 0)
(1.04007 -0.00355265 0)
(1.04012 -0.00354431 0)
(1.04017 -0.00353608 0)
(1.04023 -0.00352796 0)
(1.04028 -0.00351995 0)
(1.04034 -0.00351206 0)
(1.04039 -0.00350428 0)
(1.04045 -0.00349662 0)
(1.0405 -0.00348906 0)
(1.04056 -0.00348162 0)
(1.04062 -0.00347427 0)
(1.04067 -0.00346702 0)
(1.04073 -0.00345986 0)
(1.04078 -0.00345277 0)
(1.04084 -0.00344576 0)
(1.0409 -0.0034388 0)
(1.04095 -0.00343189 0)
(1.04101 -0.00342501 0)
(1.04107 -0.00341816 0)
(1.04112 -0.00341132 0)
(1.04118 -0.00340447 0)
(1.04124 -0.0033976 0)
(1.04129 -0.00339071 0)
(1.04135 -0.00338377 0)
(1.04141 -0.00337678 0)
(1.04146 -0.00336972 0)
(1.04152 -0.00336258 0)
(1.04157 -0.00335535 0)
(1.04163 -0.00334803 0)
(1.04169 -0.0033406 0)
(1.04174 -0.00333305 0)
(1.0418 -0.00332538 0)
(1.04186 -0.00331759 0)
(1.04191 -0.00330965 0)
(1.04197 -0.00330158 0)
(1.04203 -0.00329337 0)
(1.04208 -0.003285 0)
(1.04214 -0.00327648 0)
(1.0422 -0.00326781 0)
(1.04225 -0.00325898 0)
(1.04231 -0.00324998 0)
(1.04237 -0.00324083 0)
(1.04243 -0.00323152 0)
(1.04249 -0.00322205 0)
(1.04254 -0.00321242 0)
(1.0426 -0.00320263 0)
(1.04266 -0.0031927 0)
(1.04272 -0.00318262 0)
(1.04278 -0.00317241 0)
(1.04284 -0.00316206 0)
(1.0429 -0.00315159 0)
(1.04296 -0.00314101 0)
(1.04302 -0.00313031 0)
(1.04308 -0.00311951 0)
(1.04315 -0.00310862 0)
(1.04321 -0.00309764 0)
(1.04327 -0.00308657 0)
(1.04333 -0.00307542 0)
(1.0434 -0.00306419 0)
(1.04346 -0.00305289 0)
(1.04353 -0.00304153 0)
(1.0436 -0.00303009 0)
(1.04366 -0.0030186 0)
(1.04373 -0.00300705 0)
(1.0438 -0.00299545 0)
(1.04387 -0.00298381 0)
(1.04394 -0.00297211 0)
(1.04401 -0.00296038 0)
(1.04408 -0.00294859 0)
(1.04415 -0.00293675 0)
(1.04422 -0.00292486 0)
(1.0443 -0.00291289 0)
(1.04437 -0.00290083 0)
(1.04444 -0.00288867 0)
(1.04452 -0.00287639 0)
(1.0446 -0.00286397 0)
(1.04468 -0.00285141 0)
(1.04476 -0.00283867 0)
(1.04484 -0.00282578 0)
(1.04492 -0.00281271 0)
(1.045 -0.00279951 0)
(1.04509 -0.00278618 0)
(1.04517 -0.00277277 0)
(1.04526 -0.00275928 0)
(1.04535 -0.00274584 0)
(1.04544 -0.00273238 0)
(1.04554 -0.00271913 0)
(1.04563 -0.00270592 0)
(1.04573 -0.00269312 0)
(1.04583 -0.00268035 0)
(1.04593 -0.00266826 0)
(1.04604 -0.00265608 0)
(1.04614 -0.00264499 0)
(1.04625 -0.00263344 0)
(1.04635 -0.00262372 0)
(1.04648 -0.00261266 0)
(1.04656 -0.0026049 0)
(1.04673 -0.00259373 0)
(1.04677 -0.0025891 0)
(1.047 -0.00257601 0)
(1.0415 -0.00358444 0)
(1.04156 -0.00357606 0)
(1.04161 -0.00356778 0)
(1.04167 -0.00355961 0)
(1.04172 -0.00355154 0)
(1.04178 -0.00354357 0)
(1.04184 -0.0035357 0)
(1.04189 -0.00352794 0)
(1.04195 -0.00352027 0)
(1.04201 -0.0035127 0)
(1.04206 -0.00350522 0)
(1.04212 -0.00349783 0)
(1.04218 -0.00349051 0)
(1.04224 -0.00348326 0)
(1.04229 -0.00347608 0)
(1.04235 -0.00346894 0)
(1.04241 -0.00346184 0)
(1.04247 -0.00345477 0)
(1.04252 -0.00344772 0)
(1.04258 -0.00344068 0)
(1.04264 -0.00343362 0)
(1.0427 -0.00342655 0)
(1.04275 -0.00341945 0)
(1.04281 -0.0034123 0)
(1.04287 -0.0034051 0)
(1.04293 -0.00339783 0)
(1.04299 -0.00339049 0)
(1.04304 -0.00338306 0)
(1.0431 -0.00337554 0)
(1.04316 -0.00336792 0)
(1.04322 -0.00336019 0)
(1.04327 -0.00335234 0)
(1.04333 -0.00334437 0)
(1.04339 -0.00333627 0)
(1.04345 -0.00332804 0)
(1.04351 -0.00331967 0)
(1.04356 -0.00331116 0)
(1.04362 -0.00330251 0)
(1.04368 -0.00329372 0)
(1.04374 -0.00328477 0)
(1.0438 -0.00327568 0)
(1.04385 -0.00326643 0)
(1.04391 -0.00325704 0)
(1.04397 -0.0032475 0)
(1.04403 -0.00323781 0)
(1.04409 -0.00322797 0)
(1.04415 -0.003218 0)
(1.04421 -0.00320789 0)
(1.04427 -0.00319766 0)
(1.04433 -0.0031873 0)
(1.04439 -0.00317682 0)
(1.04446 -0.00316624 0)
(1.04452 -0.00315556 0)
(1.04458 -0.00314478 0)
(1.04464 -0.00313391 0)
(1.04471 -0.00312296 0)
(1.04477 -0.00311192 0)
(1.04484 -0.00310082 0)
(1.0449 -0.00308964 0)
(1.04497 -0.00307839 0)
(1.04503 -0.00306708 0)
(1.0451 -0.00305571 0)
(1.04517 -0.00304429 0)
(1.04523 -0.00303281 0)
(1.0453 -0.00302128 0)
(1.04537 -0.00300971 0)
(1.04544 -0.0029981 0)
(1.04551 -0.00298644 0)
(1.04559 -0.00297475 0)
(1.04566 -0.002963 0)
(1.04573 -0.00295121 0)
(1.0458 -0.00293935 0)
(1.04588 -0.00292741 0)
(1.04596 -0.00291538 0)
(1.04603 -0.00290325 0)
(1.04611 -0.002891 0)
(1.04619 -0.00287863 0)
(1.04627 -0.0028661 0)
(1.04635 -0.00285345 0)
(1.04643 -0.00284065 0)
(1.04651 -0.00282774 0)
(1.0466 -0.00281471 0)
(1.04668 -0.00280165 0)
(1.04677 -0.00278851 0)
(1.04686 -0.00277545 0)
(1.04695 -0.00276236 0)
(1.04705 -0.00274953 0)
(1.04714 -0.00273669 0)
(1.04724 -0.00272434 0)
(1.04734 -0.00271191 0)
(1.04744 -0.00270032 0)
(1.04754 -0.00268842 0)
(1.04764 -0.0026779 0)
(1.04776 -0.00266654 0)
(1.04785 -0.00265751 0)
(1.04798 -0.00264655 0)
(1.04807 -0.00263961 0)
(1.04823 -0.00262849 0)
(1.04828 -0.00262461 0)
(1.0485 -0.00261166 0)
(1.04303 -0.00361588 0)
(1.04309 -0.00360747 0)
(1.04314 -0.00359916 0)
(1.0432 -0.00359093 0)
(1.04326 -0.0035828 0)
(1.04331 -0.00357476 0)
(1.04337 -0.00356681 0)
(1.04343 -0.00355895 0)
(1.04349 -0.00355118 0)
(1.04354 -0.00354349 0)
(1.0436 -0.00353589 0)
(1.04366 -0.00352835 0)
(1.04372 -0.00352088 0)
(1.04378 -0.00351348 0)
(1.04384 -0.00350612 0)
(1.0439 -0.00349881 0)
(1.04395 -0.00349153 0)
(1.04401 -0.00348427 0)
(1.04407 -0.00347703 0)
(1.04413 -0.00346978 0)
(1.04419 -0.00346253 0)
(1.04425 -0.00345525 0)
(1.04431 -0.00344794 0)
(1.04437 -0.00344058 0)
(1.04443 -0.00343317 0)
(1.04448 -0.0034257 0)
(1.04454 -0.00341815 0)
(1.0446 -0.00341052 0)
(1.04466 -0.0034028 0)
(1.04472 -0.00339498 0)
(1.04478 -0.00338706 0)
(1.04484 -0.00337903 0)
(1.0449 -0.00337088 0)
(1.04495 -0.00336261 0)
(1.04501 -0.00335421 0)
(1.04507 -0.00334569 0)
(1.04513 -0.00333703 0)
(1.04519 -0.00332824 0)
(1.04525 -0.00331931 0)
(1.04531 -0.00331025 0)
(1.04537 -0.00330104 0)
(1.04543 -0.0032917 0)
(1.04549 -0.00328221 0)
(1.04555 -0.00327259 0)
(1.04561 -0.00326283 0)
(1.04567 -0.00325294 0)
(1.04573 -0.00324291 0)
(1.04579 -0.00323276 0)
(1.04585 -0.0032225 0)
(1.04591 -0.00321211 0)
(1.04597 -0.00320162 0)
(1.04603 -0.00319103 0)
(1.04609 -0.00318035 0)
(1.04616 -0.00316957 0)
(1.04622 -0.00315872 0)
(1.04629 -0.00314778 0)
(1.04635 -0.00313677 0)
(1.04641 -0.00312569 0)
(1.04648 -0.00311455 0)
(1.04655 -0.00310334 0)
(1.04661 -0.00309208 0)
(1.04668 -0.00308076 0)
(1.04675 -0.00306938 0)
(1.04681 -0.00305796 0)
(1.04688 -0.00304649 0)
(1.04695 -0.00303498 0)
(1.04702 -0.00302343 0)
(1.04709 -0.00301185 0)
(1.04716 -0.00300022 0)
(1.04724 -0.00298855 0)
(1.04731 -0.00297684 0)
(1.04738 -0.00296506 0)
(1.04746 -0.00295323 0)
(1.04753 -0.00294131 0)
(1.04761 -0.00292931 0)
(1.04768 -0.0029172 0)
(1.04776 -0.00290498 0)
(1.04784 -0.00289265 0)
(1.04792 -0.0028802 0)
(1.048 -0.00286763 0)
(1.04808 -0.00285498 0)
(1.04816 -0.00284223 0)
(1.04825 -0.00282948 0)
(1.04834 -0.00281665 0)
(1.04842 -0.00280394 0)
(1.04851 -0.00279119 0)
(1.0486 -0.00277876 0)
(1.0487 -0.00276623 0)
(1.04879 -0.00275433 0)
(1.04889 -0.00274218 0)
(1.04899 -0.00273111 0)
(1.04909 -0.00271938 0)
(1.04919 -0.0027095 0)
(1.0493 -0.00269818 0)
(1.04939 -0.00268997 0)
(1.04952 -0.00267886 0)
(1.0496 -0.00267297 0)
(1.04976 -0.00266156 0)
(1.04981 -0.00265876 0)
(1.05002 -0.00264552 0)
(1.04465 -0.00364693 0)
(1.04471 -0.0036385 0)
(1.04476 -0.00363015 0)
(1.04482 -0.00362188 0)
(1.04488 -0.00361369 0)
(1.04494 -0.00360558 0)
(1.045 -0.00359755 0)
(1.04505 -0.00358959 0)
(1.04511 -0.00358172 0)
(1.04517 -0.00357391 0)
(1.04523 -0.00356618 0)
(1.04529 -0.00355851 0)
(1.04535 -0.00355089 0)
(1.04541 -0.00354333 0)
(1.04547 -0.00353581 0)
(1.04553 -0.00352832 0)
(1.04559 -0.00352085 0)
(1.04565 -0.00351341 0)
(1.04571 -0.00350596 0)
(1.04577 -0.00349852 0)
(1.04583 -0.00349106 0)
(1.04589 -0.00348357 0)
(1.04595 -0.00347605 0)
(1.04601 -0.00346848 0)
(1.04607 -0.00346086 0)
(1.04612 -0.00345317 0)
(1.04618 -0.00344541 0)
(1.04624 -0.00343757 0)
(1.0463 -0.00342964 0)
(1.04636 -0.00342162 0)
(1.04642 -0.0034135 0)
(1.04648 -0.00340527 0)
(1.04654 -0.00339693 0)
(1.0466 -0.00338848 0)
(1.04666 -0.00337991 0)
(1.04672 -0.00337122 0)
(1.04677 -0.0033624 0)
(1.04683 -0.00335346 0)
(1.04689 -0.00334439 0)
(1.04695 -0.00333519 0)
(1.04701 -0.00332586 0)
(1.04707 -0.0033164 0)
(1.04713 -0.00330681 0)
(1.04719 -0.00329709 0)
(1.04725 -0.00328724 0)
(1.04731 -0.00327727 0)
(1.04737 -0.00326718 0)
(1.04743 -0.00325697 0)
(1.04749 -0.00324665 0)
(1.04755 -0.00323623 0)
(1.04761 -0.00322571 0)
(1.04767 -0.00321509 0)
(1.04773 -0.00320438 0)
(1.04779 -0.0031936 0)
(1.04786 -0.00318273 0)
(1.04792 -0.00317179 0)
(1.04798 -0.00316079 0)
(1.04805 -0.00314972 0)
(1.04811 -0.00313859 0)
(1.04817 -0.0031274 0)
(1.04824 -0.00311615 0)
(1.0483 -0.00310485 0)
(1.04837 -0.00309351 0)
(1.04844 -0.00308212 0)
(1.0485 -0.00307069 0)
(1.04857 -0.00305921 0)
(1.04864 -0.0030477 0)
(1.04871 -0.00303616 0)
(1.04878 -0.00302458 0)
(1.04884 -0.00301296 0)
(1.04891 -0.0030013 0)
(1.04899 -0.00298958 0)
(1.04906 -0.00297781 0)
(1.04913 -0.00296598 0)
(1.0492 -0.00295406 0)
(1.04927 -0.00294206 0)
(1.04935 -0.00292997 0)
(1.04942 -0.00291778 0)
(1.0495 -0.0029055 0)
(1.04958 -0.00289312 0)
(1.04966 -0.00288069 0)
(1.04973 -0.00286817 0)
(1.04981 -0.00285569 0)
(1.0499 -0.00284312 0)
(1.04998 -0.00283074 0)
(1.05007 -0.00281826 0)
(1.05015 -0.0028062 0)
(1.05024 -0.00279394 0)
(1.05033 -0.00278246 0)
(1.05042 -0.00277051 0)
(1.05051 -0.00275996 0)
(1.05061 -0.00274831 0)
(1.0507 -0.00273911 0)
(1.05081 -0.00272765 0)
(1.0509 -0.00272039 0)
(1.05102 -0.00270885 0)
(1.05109 -0.00270429 0)
(1.05124 -0.00269213 0)
(1.05128 -0.00269086 0)
(1.05149 -0.00267678 0)
(1.04635 -0.00367742 0)
(1.04641 -0.00366896 0)
(1.04647 -0.00366057 0)
(1.04652 -0.00365224 0)
(1.04658 -0.00364399 0)
(1.04664 -0.0036358 0)
(1.0467 -0.00362769 0)
(1.04676 -0.00361964 0)
(1.04682 -0.00361165 0)
(1.04687 -0.00360373 0)
(1.04693 -0.00359586 0)
(1.04699 -0.00358805 0)
(1.04705 -0.00358028 0)
(1.04711 -0.00357255 0)
(1.04717 -0.00356485 0)
(1.04723 -0.00355718 0)
(1.04729 -0.00354953 0)
(1.04735 -0.00354188 0)
(1.04741 -0.00353424 0)
(1.04747 -0.00352658 0)
(1.04753 -0.0035189 0)
(1.04759 -0.00351119 0)
(1.04765 -0.00350345 0)
(1.0477 -0.00349565 0)
(1.04776 -0.0034878 0)
(1.04782 -0.00347989 0)
(1.04788 -0.00347191 0)
(1.04794 -0.00346384 0)
(1.048 -0.00345569 0)
(1.04806 -0.00344745 0)
(1.04811 -0.00343911 0)
(1.04817 -0.00343067 0)
(1.04823 -0.00342213 0)
(1.04829 -0.00341347 0)
(1.04834 -0.00340471 0)
(1.0484 -0.00339583 0)
(1.04846 -0.00338683 0)
(1.04852 -0.00337771 0)
(1.04857 -0.00336847 0)
(1.04863 -0.00335911 0)
(1.04869 -0.00334963 0)
(1.04875 -0.00334003 0)
(1.0488 -0.00333031 0)
(1.04886 -0.00332047 0)
(1.04892 -0.00331051 0)
(1.04897 -0.00330043 0)
(1.04903 -0.00329025 0)
(1.04909 -0.00327995 0)
(1.04915 -0.00326956 0)
(1.0492 -0.00325906 0)
(1.04926 -0.00324847 0)
(1.04932 -0.0032378 0)
(1.04938 -0.00322704 0)
(1.04944 -0.00321621 0)
(1.0495 -0.00320531 0)
(1.04955 -0.00319434 0)
(1.04961 -0.0031833 0)
(1.04967 -0.0031722 0)
(1.04973 -0.00316105 0)
(1.04979 -0.00314985 0)
(1.04985 -0.00313859 0)
(1.04991 -0.00312728 0)
(1.04997 -0.00311593 0)
(1.05004 -0.00310453 0)
(1.0501 -0.0030931 0)
(1.05016 -0.00308163 0)
(1.05022 -0.00307012 0)
(1.05028 -0.00305858 0)
(1.05035 -0.003047 0)
(1.05041 -0.00303539 0)
(1.05048 -0.00302374 0)
(1.05054 -0.00301204 0)
(1.0506 -0.0030003 0)
(1.05067 -0.00298849 0)
(1.05074 -0.00297663 0)
(1.0508 -0.00296468 0)
(1.05087 -0.00295267 0)
(1.05094 -0.00294057 0)
(1.051 -0.00292841 0)
(1.05107 -0.00291616 0)
(1.05114 -0.0029039 0)
(1.05121 -0.00289155 0)
(1.05128 -0.00287928 0)
(1.05136 -0.00286693 0)
(1.05143 -0.00285481 0)
(1.05151 -0.00284255 0)
(1.05158 -0.0028308 0)
(1.05166 -0.00281874 0)
(1.05174 -0.00280765 0)
(1.05182 -0.00279582 0)
(1.0519 -0.00278577 0)
(1.05199 -0.00277407 0)
(1.05207 -0.00276559 0)
(1.05216 -0.00275378 0)
(1.05224 -0.00274762 0)
(1.05234 -0.00273527 0)
(1.05241 -0.00273237 0)
(1.05254 -0.00271894 0)
(1.05258 -0.00271972 0)
(1.05275 -0.00270416 0)
(1.0481 -0.0037069 0)
(1.04816 -0.00369839 0)
(1.04822 -0.00368994 0)
(1.04827 -0.00368156 0)
(1.04833 -0.00367322 0)
(1.04839 -0.00366495 0)
(1.04844 -0.00365673 0)
(1.0485 -0.00364857 0)
(1.04856 -0.00364046 0)
(1.04861 -0.0036324 0)
(1.04867 -0.00362438 0)
(1.04873 -0.00361641 0)
(1.04879 -0.00360847 0)
(1.04884 -0.00360056 0)
(1.0489 -0.00359267 0)
(1.04896 -0.0035848 0)
(1.04902 -0.00357693 0)
(1.04907 -0.00356907 0)
(1.04913 -0.00356119 0)
(1.04919 -0.0035533 0)
(1.04924 -0.00354538 0)
(1.0493 -0.00353743 0)
(1.04936 -0.00352944 0)
(1.04941 -0.0035214 0)
(1.04947 -0.00351329 0)
(1.04952 -0.00350513 0)
(1.04958 -0.00349689 0)
(1.04963 -0.00348857 0)
(1.04969 -0.00348017 0)
(1.04974 -0.00347168 0)
(1.0498 -0.00346309 0)
(1.04985 -0.00345441 0)
(1.0499 -0.00344562 0)
(1.04996 -0.00343673 0)
(1.05001 -0.00342774 0)
(1.05006 -0.00341863 0)
(1.05012 -0.00340942 0)
(1.05017 -0.00340009 0)
(1.05022 -0.00339065 0)
(1.05027 -0.00338109 0)
(1.05032 -0.00337143 0)
(1.05038 -0.00336164 0)
(1.05043 -0.00335175 0)
(1.05048 -0.00334174 0)
(1.05053 -0.00333163 0)
(1.05058 -0.00332141 0)
(1.05063 -0.00331108 0)
(1.05068 -0.00330066 0)
(1.05073 -0.00329014 0)
(1.05078 -0.00327953 0)
(1.05083 -0.00326884 0)
(1.05088 -0.00325806 0)
(1.05094 -0.00324721 0)
(1.05099 -0.00323628 0)
(1.05104 -0.00322529 0)
(1.05109 -0.00321424 0)
(1.05114 -0.00320313 0)
(1.05119 -0.00319196 0)
(1.05124 -0.00318073 0)
(1.05129 -0.00316946 0)
(1.05134 -0.00315814 0)
(1.05139 -0.00314677 0)
(1.05144 -0.00313536 0)
(1.05149 -0.0031239 0)
(1.05154 -0.00311241 0)
(1.0516 -0.00310089 0)
(1.05165 -0.00308933 0)
(1.0517 -0.00307773 0)
(1.05175 -0.00306611 0)
(1.0518 -0.00305445 0)
(1.05185 -0.00304276 0)
(1.0519 -0.00303102 0)
(1.05196 -0.00301924 0)
(1.05201 -0.00300741 0)
(1.05206 -0.00299552 0)
(1.05211 -0.00298358 0)
(1.05216 -0.00297158 0)
(1.05222 -0.0029595 0)
(1.05227 -0.00294739 0)
(1.05232 -0.00293521 0)
(1.05238 -0.00292304 0)
(1.05243 -0.0029108 0)
(1.05249 -0.00289867 0)
(1.05254 -0.00288645 0)
(1.0526 -0.00287453 0)
(1.05266 -0.00286241 0)
(1.05272 -0.00285092 0)
(1.05278 -0.00283897 0)
(1.05284 -0.00282821 0)
(1.0529 -0.00281639 0)
(1.05296 -0.00280681 0)
(1.05303 -0.00279492 0)
(1.05309 -0.00278718 0)
(1.05316 -0.00277478 0)
(1.05322 -0.00276986 0)
(1.0533 -0.00275632 0)
(1.05335 -0.00275541 0)
(1.05344 -0.0027401 0)
(1.05348 -0.00274351 0)
(1.05361 -0.00272573 0)
(1.04984 -0.00373446 0)
(1.04989 -0.00372588 0)
(1.04994 -0.00371735 0)
(1.05 -0.00370886 0)
(1.05005 -0.00370042 0)
(1.0501 -0.00369202 0)
(1.05015 -0.00368367 0)
(1.05021 -0.00367536 0)
(1.05026 -0.0036671 0)
(1.05031 -0.00365887 0)
(1.05036 -0.00365067 0)
(1.05041 -0.0036425 0)
(1.05047 -0.00363435 0)
(1.05052 -0.00362623 0)
(1.05057 -0.00361811 0)
(1.05062 -0.00361 0)
(1.05067 -0.00360188 0)
(1.05072 -0.00359376 0)
(1.05077 -0.00358562 0)
(1.05083 -0.00357746 0)
(1.05088 -0.00356926 0)
(1.05092 -0.00356102 0)
(1.05097 -0.00355274 0)
(1.05102 -0.0035444 0)
(1.05107 -0.003536 0)
(1.05112 -0.00352754 0)
(1.05117 -0.003519 0)
(1.05121 -0.00351038 0)
(1.05126 -0.00350168 0)
(1.05131 -0.00349289 0)
(1.05135 -0.00348401 0)
(1.0514 -0.00347503 0)
(1.05144 -0.00346596 0)
(1.05148 -0.00345678 0)
(1.05153 -0.0034475 0)
(1.05157 -0.00343812 0)
(1.05161 -0.00342864 0)
(1.05166 -0.00341904 0)
(1.0517 -0.00340935 0)
(1.05174 -0.00339954 0)
(1.05178 -0.00338963 0)
(1.05182 -0.00337961 0)
(1.05186 -0.00336948 0)
(1.0519 -0.00335926 0)
(1.05194 -0.00334893 0)
(1.05197 -0.0033385 0)
(1.05201 -0.00332798 0)
(1.05205 -0.00331736 0)
(1.05209 -0.00330666 0)
(1.05212 -0.00329587 0)
(1.05216 -0.00328501 0)
(1.0522 -0.00327406 0)
(1.05223 -0.00326305 0)
(1.05227 -0.00325197 0)
(1.0523 -0.00324083 0)
(1.05234 -0.00322963 0)
(1.05237 -0.00321837 0)
(1.05241 -0.00320706 0)
(1.05244 -0.0031957 0)
(1.05247 -0.00318429 0)
(1.05251 -0.00317283 0)
(1.05254 -0.00316133 0)
(1.05257 -0.00314979 0)
(1.0526 -0.00313821 0)
(1.05264 -0.0031266 0)
(1.05267 -0.00311494 0)
(1.0527 -0.00310326 0)
(1.05273 -0.00309154 0)
(1.05276 -0.0030798 0)
(1.05279 -0.00306802 0)
(1.05282 -0.0030562 0)
(1.05285 -0.00304435 0)
(1.05288 -0.00303246 0)
(1.05291 -0.00302053 0)
(1.05294 -0.00300855 0)
(1.05297 -0.00299652 0)
(1.053 -0.00298446 0)
(1.05302 -0.00297233 0)
(1.05305 -0.00296019 0)
(1.05308 -0.00294799 0)
(1.05311 -0.00293584 0)
(1.05314 -0.00292362 0)
(1.05317 -0.00291155 0)
(1.05319 -0.00289938 0)
(1.05322 -0.00288757 0)
(1.05325 -0.0028755 0)
(1.05328 -0.00286417 0)
(1.05331 -0.00285224 0)
(1.05334 -0.00284173 0)
(1.05338 -0.00282981 0)
(1.05341 -0.00282064 0)
(1.05344 -0.00280841 0)
(1.05347 -0.0028014 0)
(1.05351 -0.0027882 0)
(1.05354 -0.00278459 0)
(1.05357 -0.0027695 0)
(1.0536 -0.00277085 0)
(1.05365 -0.00275306 0)
(1.05366 -0.00275965 0)
(1.05373 -0.00273896 0)
(1.05143 -0.00375847 0)
(1.05147 -0.00374976 0)
(1.05151 -0.00374109 0)
(1.05156 -0.00373246 0)
(1.0516 -0.00372385 0)
(1.05164 -0.00371528 0)
(1.05169 -0.00370674 0)
(1.05173 -0.00369823 0)
(1.05177 -0.00368975 0)
(1.05181 -0.0036813 0)
(1.05185 -0.00367286 0)
(1.0519 -0.00366444 0)
(1.05194 -0.00365603 0)
(1.05198 -0.00364763 0)
(1.05202 -0.00363922 0)
(1.05206 -0.00363081 0)
(1.0521 -0.00362239 0)
(1.05213 -0.00361395 0)
(1.05217 -0.00360548 0)
(1.05221 -0.00359698 0)
(1.05225 -0.00358844 0)
(1.05228 -0.00357985 0)
(1.05232 -0.00357122 0)
(1.05235 -0.00356252 0)
(1.05239 -0.00355376 0)
(1.05242 -0.00354493 0)
(1.05245 -0.00353602 0)
(1.05248 -0.00352704 0)
(1.05251 -0.00351797 0)
(1.05254 -0.00350881 0)
(1.05257 -0.00349956 0)
(1.0526 -0.00349023 0)
(1.05263 -0.00348079 0)
(1.05265 -0.00347126 0)
(1.05268 -0.00346163 0)
(1.0527 -0.0034519 0)
(1.05273 -0.00344207 0)
(1.05275 -0.00343214 0)
(1.05277 -0.00342211 0)
(1.05279 -0.00341198 0)
(1.05281 -0.00340175 0)
(1.05283 -0.00339142 0)
(1.05285 -0.00338099 0)
(1.05287 -0.00337046 0)
(1.05289 -0.00335984 0)
(1.0529 -0.00334913 0)
(1.05292 -0.00333833 0)
(1.05293 -0.00332745 0)
(1.05295 -0.00331648 0)
(1.05296 -0.00330544 0)
(1.05297 -0.00329432 0)
(1.05298 -0.00328313 0)
(1.05299 -0.00327188 0)
(1.053 -0.00326056 0)
(1.05301 -0.00324919 0)
(1.05302 -0.00323776 0)
(1.05303 -0.00322627 0)
(1.05303 -0.00321474 0)
(1.05304 -0.00320315 0)
(1.05305 -0.00319152 0)
(1.05305 -0.00317985 0)
(1.05305 -0.00316814 0)
(1.05306 -0.00315638 0)
(1.05306 -0.00314459 0)
(1.05306 -0.00313276 0)
(1.05306 -0.0031209 0)
(1.05306 -0.00310901 0)
(1.05306 -0.00309708 0)
(1.05306 -0.00308513 0)
(1.05305 -0.00307314 0)
(1.05305 -0.00306113 0)
(1.05304 -0.00304908 0)
(1.05304 -0.00303699 0)
(1.05303 -0.00302487 0)
(1.05302 -0.00301272 0)
(1.05302 -0.00300052 0)
(1.05301 -0.0029883 0)
(1.053 -0.00297604 0)
(1.05299 -0.00296378 0)
(1.05298 -0.00295148 0)
(1.05296 -0.00293925 0)
(1.05295 -0.00292696 0)
(1.05294 -0.00291486 0)
(1.05293 -0.00290264 0)
(1.05291 -0.00289085 0)
(1.0529 -0.00287874 0)
(1.05289 -0.00286749 0)
(1.05287 -0.00285546 0)
(1.05286 -0.00284511 0)
(1.05284 -0.00283299 0)
(1.05283 -0.00282414 0)
(1.05281 -0.00281144 0)
(1.0528 -0.00280508 0)
(1.05278 -0.00279092 0)
(1.05277 -0.00278861 0)
(1.05275 -0.00277169 0)
(1.05274 -0.00277544 0)
(1.05271 -0.0027547 0)
(1.05271 -0.00276487 0)
(1.05267 -0.00274071 0)
(1.05264 -0.00377626 0)
(1.05267 -0.00376734 0)
(1.0527 -0.00375846 0)
(1.05272 -0.00374959 0)
(1.05275 -0.00374075 0)
(1.05277 -0.00373192 0)
(1.0528 -0.00372311 0)
(1.05282 -0.00371433 0)
(1.05285 -0.00370555 0)
(1.05287 -0.00369679 0)
(1.05289 -0.00368803 0)
(1.05291 -0.00367928 0)
(1.05293 -0.00367053 0)
(1.05295 -0.00366176 0)
(1.05297 -0.00365299 0)
(1.05299 -0.0036442 0)
(1.05301 -0.00363538 0)
(1.05302 -0.00362654 0)
(1.05304 -0.00361766 0)
(1.05305 -0.00360874 0)
(1.05307 -0.00359977 0)
(1.05308 -0.00359075 0)
(1.05309 -0.00358168 0)
(1.0531 -0.00357253 0)
(1.05311 -0.00356333 0)
(1.05312 -0.00355404 0)
(1.05312 -0.00354469 0)
(1.05313 -0.00353525 0)
(1.05313 -0.00352572 0)
(1.05313 -0.00351612 0)
(1.05313 -0.00350642 0)
(1.05313 -0.00349663 0)
(1.05313 -0.00348675 0)
(1.05313 -0.00347677 0)
(1.05313 -0.00346671 0)
(1.05312 -0.00345654 0)
(1.05311 -0.00344628 0)
(1.05311 -0.00343593 0)
(1.0531 -0.00342548 0)
(1.05308 -0.00341493 0)
(1.05307 -0.00340429 0)
(1.05306 -0.00339356 0)
(1.05304 -0.00338274 0)
(1.05303 -0.00337183 0)
(1.05301 -0.00336083 0)
(1.05299 -0.00334975 0)
(1.05297 -0.00333858 0)
(1.05295 -0.00332734 0)
(1.05293 -0.00331602 0)
(1.0529 -0.00330463 0)
(1.05287 -0.00329317 0)
(1.05285 -0.00328164 0)
(1.05282 -0.00327006 0)
(1.05279 -0.00325842 0)
(1.05276 -0.00324672 0)
(1.05273 -0.00323497 0)
(1.05269 -0.00322316 0)
(1.05266 -0.00321132 0)
(1.05262 -0.00319942 0)
(1.05258 -0.00318748 0)
(1.05254 -0.0031755 0)
(1.0525 -0.00316348 0)
(1.05246 -0.00315142 0)
(1.05241 -0.00313933 0)
(1.05237 -0.0031272 0)
(1.05232 -0.00311504 0)
(1.05227 -0.00310285 0)
(1.05223 -0.00309063 0)
(1.05217 -0.00307838 0)
(1.05212 -0.00306611 0)
(1.05207 -0.0030538 0)
(1.05201 -0.00304147 0)
(1.05195 -0.00302911 0)
(1.0519 -0.00301672 0)
(1.05184 -0.0030043 0)
(1.05177 -0.00299186 0)
(1.05171 -0.0029794 0)
(1.05165 -0.00296692 0)
(1.05158 -0.00295446 0)
(1.05151 -0.00294197 0)
(1.05145 -0.00292959 0)
(1.05138 -0.00291714 0)
(1.05131 -0.00290493 0)
(1.05124 -0.00289258 0)
(1.05116 -0.00288071 0)
(1.05109 -0.00286847 0)
(1.05101 -0.00285719 0)
(1.05094 -0.00284499 0)
(1.05086 -0.0028347 0)
(1.05078 -0.00282228 0)
(1.05071 -0.00281364 0)
(1.05062 -0.00280039 0)
(1.05055 -0.00279457 0)
(1.05046 -0.00277935 0)
(1.05038 -0.00277824 0)
(1.05028 -0.00275934 0)
(1.05022 -0.00276547 0)
(1.0501 -0.00274151 0)
(1.05006 -0.00275542 0)
(1.0499 -0.0027275 0)
(1.05313 -0.00378388 0)
(1.05313 -0.00377466 0)
(1.05313 -0.00376546 0)
(1.05312 -0.00375626 0)
(1.05312 -0.00374708 0)
(1.05311 -0.00373789 0)
(1.05311 -0.00372872 0)
(1.0531 -0.00371955 0)
(1.0531 -0.00371038 0)
(1.05309 -0.00370121 0)
(1.05308 -0.00369203 0)
(1.05307 -0.00368285 0)
(1.05305 -0.00367365 0)
(1.05304 -0.00366443 0)
(1.05303 -0.00365518 0)
(1.05301 -0.00364591 0)
(1.05299 -0.0036366 0)
(1.05297 -0.00362725 0)
(1.05295 -0.00361787 0)
(1.05293 -0.00360843 0)
(1.05291 -0.00359893 0)
(1.05288 -0.00358938 0)
(1.05285 -0.00357977 0)
(1.05282 -0.00357008 0)
(1.05279 -0.00356033 0)
(1.05276 -0.0035505 0)
(1.05273 -0.0035406 0)
(1.05269 -0.00353061 0)
(1.05265 -0.00352054 0)
(1.05261 -0.00351039 0)
(1.05257 -0.00350014 0)
(1.05253 -0.00348981 0)
(1.05248 -0.00347939 0)
(1.05243 -0.00346888 0)
(1.05239 -0.00345828 0)
(1.05233 -0.0034476 0)
(1.05228 -0.00343682 0)
(1.05223 -0.00342595 0)
(1.05217 -0.00341499 0)
(1.05211 -0.00340394 0)
(1.05205 -0.00339281 0)
(1.05199 -0.00338159 0)
(1.05192 -0.00337028 0)
(1.05185 -0.0033589 0)
(1.05179 -0.00334743 0)
(1.05171 -0.00333589 0)
(1.05164 -0.00332427 0)
(1.05157 -0.00331258 0)
(1.05149 -0.00330082 0)
(1.05141 -0.003289 0)
(1.05133 -0.00327711 0)
(1.05125 -0.00326517 0)
(1.05116 -0.00325317 0)
(1.05108 -0.00324111 0)
(1.05099 -0.003229 0)
(1.0509 -0.00321685 0)
(1.0508 -0.00320465 0)
(1.05071 -0.0031924 0)
(1.05061 -0.00318011 0)
(1.05051 -0.00316779 0)
(1.05041 -0.00315542 0)
(1.05031 -0.00314301 0)
(1.0502 -0.00313057 0)
(1.0501 -0.0031181 0)
(1.04999 -0.00310559 0)
(1.04987 -0.00309306 0)
(1.04976 -0.0030805 0)
(1.04964 -0.00306791 0)
(1.04953 -0.0030553 0)
(1.04941 -0.00304266 0)
(1.04928 -0.00303 0)
(1.04916 -0.00301731 0)
(1.04903 -0.00300461 0)
(1.0489 -0.00299188 0)
(1.04877 -0.00297914 0)
(1.04864 -0.00296639 0)
(1.0485 -0.00295364 0)
(1.04836 -0.00294087 0)
(1.04822 -0.00292816 0)
(1.04808 -0.00291542 0)
(1.04794 -0.00290281 0)
(1.04779 -0.00289015 0)
(1.04765 -0.00287775 0)
(1.0475 -0.0028652 0)
(1.04734 -0.00285318 0)
(1.04719 -0.00284075 0)
(1.04704 -0.00282936 0)
(1.04688 -0.00281692 0)
(1.04672 -0.00280658 0)
(1.04656 -0.00279382 0)
(1.0464 -0.00278527 0)
(1.04623 -0.00277145 0)
(1.04607 -0.00276601 0)
(1.04589 -0.00274974 0)
(1.04574 -0.00274964 0)
(1.04554 -0.00272881 0)
(1.04541 -0.00273707 0)
(1.04516 -0.00270994 0)
(1.04509 -0.0027274 0)
(1.04475 -0.00269582 0)
(1.05235 -0.00377611 0)
(1.05231 -0.00376647 0)
(1.05226 -0.00375684 0)
(1.05222 -0.0037472 0)
(1.05217 -0.00373755 0)
(1.05212 -0.00372791 0)
(1.05207 -0.00371825 0)
(1.05202 -0.00370859 0)
(1.05196 -0.00369892 0)
(1.05191 -0.00368923 0)
(1.05185 -0.00367953 0)
(1.05179 -0.0036698 0)
(1.05173 -0.00366004 0)
(1.05167 -0.00365026 0)
(1.0516 -0.00364044 0)
(1.05153 -0.00363058 0)
(1.05146 -0.00362068 0)
(1.05139 -0.00361073 0)
(1.05132 -0.00360073 0)
(1.05124 -0.00359068 0)
(1.05117 -0.00358056 0)
(1.05108 -0.00357038 0)
(1.051 -0.00356014 0)
(1.05092 -0.00354982 0)
(1.05083 -0.00353944 0)
(1.05074 -0.00352897 0)
(1.05065 -0.00351843 0)
(1.05055 -0.00350781 0)
(1.05046 -0.00349711 0)
(1.05036 -0.00348633 0)
(1.05025 -0.00347546 0)
(1.05015 -0.0034645 0)
(1.05004 -0.00345347 0)
(1.04993 -0.00344235 0)
(1.04982 -0.00343114 0)
(1.0497 -0.00341985 0)
(1.04959 -0.00340847 0)
(1.04947 -0.00339702 0)
(1.04934 -0.00338548 0)
(1.04922 -0.00337385 0)
(1.04909 -0.00336215 0)
(1.04896 -0.00335038 0)
(1.04883 -0.00333852 0)
(1.04869 -0.00332659 0)
(1.04855 -0.0033146 0)
(1.04841 -0.00330253 0)
(1.04826 -0.00329039 0)
(1.04812 -0.00327819 0)
(1.04797 -0.00326593 0)
(1.04782 -0.00325361 0)
(1.04766 -0.00324124 0)
(1.0475 -0.00322881 0)
(1.04734 -0.00321633 0)
(1.04718 -0.00320381 0)
(1.04702 -0.00319124 0)
(1.04685 -0.00317862 0)
(1.04668 -0.00316596 0)
(1.0465 -0.00315327 0)
(1.04633 -0.00314053 0)
(1.04615 -0.00312776 0)
(1.04597 -0.00311495 0)
(1.04578 -0.00310211 0)
(1.04559 -0.00308924 0)
(1.0454 -0.00307635 0)
(1.04521 -0.00306342 0)
(1.04501 -0.00305047 0)
(1.04481 -0.00303749 0)
(1.04461 -0.0030245 0)
(1.04441 -0.00301148 0)
(1.0442 -0.00299845 0)
(1.04399 -0.0029854 0)
(1.04378 -0.00297233 0)
(1.04356 -0.00295925 0)
(1.04334 -0.00294616 0)
(1.04312 -0.00293308 0)
(1.04289 -0.00291998 0)
(1.04267 -0.00290691 0)
(1.04244 -0.00289384 0)
(1.0422 -0.00288084 0)
(1.04197 -0.00286783 0)
(1.04173 -0.00285497 0)
(1.04149 -0.00284207 0)
(1.04124 -0.00282945 0)
(1.041 -0.00281668 0)
(1.04075 -0.00280448 0)
(1.0405 -0.00279182 0)
(1.04025 -0.00278026 0)
(1.03999 -0.00276757 0)
(1.03973 -0.00275712 0)
(1.03947 -0.00274402 0)
(1.03921 -0.00273544 0)
(1.03893 -0.0027211 0)
(1.03868 -0.00271587 0)
(1.03838 -0.0026987 0)
(1.03814 -0.00269929 0)
(1.03781 -0.00267682 0)
(1.0376 -0.00268672 0)
(1.03721 -0.00265686 0)
(1.03708 -0.00267726 0)
(1.03655 -0.00264261 0)
(1.04962 -0.00374667 0)
(1.04951 -0.00373651 0)
(1.04941 -0.00372633 0)
(1.0493 -0.00371615 0)
(1.04919 -0.00370594 0)
(1.04908 -0.00369573 0)
(1.04896 -0.0036855 0)
(1.04885 -0.00367525 0)
(1.04873 -0.00366497 0)
(1.04861 -0.00365467 0)
(1.04848 -0.00364434 0)
(1.04835 -0.00363398 0)
(1.04823 -0.00362358 0)
(1.04809 -0.00361315 0)
(1.04796 -0.00360267 0)
(1.04782 -0.00359214 0)
(1.04768 -0.00358157 0)
(1.04754 -0.00357094 0)
(1.04739 -0.00356026 0)
(1.04724 -0.00354952 0)
(1.04709 -0.00353871 0)
(1.04694 -0.00352784 0)
(1.04678 -0.0035169 0)
(1.04662 -0.00350589 0)
(1.04646 -0.00349481 0)
(1.04629 -0.00348365 0)
(1.04612 -0.00347242 0)
(1.04595 -0.00346111 0)
(1.04577 -0.00344973 0)
(1.04559 -0.00343826 0)
(1.04541 -0.00342672 0)
(1.04523 -0.0034151 0)
(1.04504 -0.00340341 0)
(1.04485 -0.00339163 0)
(1.04465 -0.00337978 0)
(1.04445 -0.00336785 0)
(1.04425 -0.00335584 0)
(1.04405 -0.00334377 0)
(1.04384 -0.00333161 0)
(1.04363 -0.00331939 0)
(1.04341 -0.00330709 0)
(1.04319 -0.00329473 0)
(1.04297 -0.0032823 0)
(1.04275 -0.00326981 0)
(1.04252 -0.00325725 0)
(1.04229 -0.00324463 0)
(1.04205 -0.00323196 0)
(1.04181 -0.00321923 0)
(1.04157 -0.00320645 0)
(1.04133 -0.00319362 0)
(1.04108 -0.00318074 0)
(1.04083 -0.00316781 0)
(1.04058 -0.00315485 0)
(1.04032 -0.00314184 0)
(1.04006 -0.00312879 0)
(1.03979 -0.0031157 0)
(1.03952 -0.00310258 0)
(1.03925 -0.00308943 0)
(1.03898 -0.00307624 0)
(1.0387 -0.00306302 0)
(1.03842 -0.00304978 0)
(1.03813 -0.00303651 0)
(1.03784 -0.00302321 0)
(1.03755 -0.00300989 0)
(1.03726 -0.00299655 0)
(1.03696 -0.00298319 0)
(1.03666 -0.00296982 0)
(1.03635 -0.00295643 0)
(1.03604 -0.00294302 0)
(1.03573 -0.00292961 0)
(1.03541 -0.00291619 0)
(1.03509 -0.00290276 0)
(1.03477 -0.00288934 0)
(1.03445 -0.00287591 0)
(1.03412 -0.00286251 0)
(1.03378 -0.0028491 0)
(1.03345 -0.00283575 0)
(1.03311 -0.0028224 0)
(1.03276 -0.00280914 0)
(1.03242 -0.00279589 0)
(1.03207 -0.0027828 0)
(1.03171 -0.00276968 0)
(1.03136 -0.00275687 0)
(1.031 -0.0027439 0)
(1.03064 -0.00273151 0)
(1.03027 -0.00271865 0)
(1.0299 -0.00270693 0)
(1.02953 -0.00269402 0)
(1.02916 -0.00268341 0)
(1.02878 -0.00267004 0)
(1.0284 -0.00266137 0)
(1.028 -0.00264664 0)
(1.02763 -0.00264143 0)
(1.02721 -0.00262363 0)
(1.02686 -0.00262454 0)
(1.02639 -0.00260096 0)
(1.02609 -0.00261179 0)
(1.02553 -0.00258003 0)
(1.02535 -0.00260238 0)
(1.02459 -0.00256575 0)
(1.04406 -0.0036889 0)
(1.04387 -0.00367814 0)
(1.04369 -0.00366736 0)
(1.0435 -0.00365655 0)
(1.04331 -0.00364572 0)
(1.04311 -0.00363488 0)
(1.04292 -0.00362401 0)
(1.04271 -0.0036131 0)
(1.04251 -0.00360217 0)
(1.0423 -0.00359121 0)
(1.04209 -0.0035802 0)
(1.04188 -0.00356916 0)
(1.04167 -0.00355808 0)
(1.04145 -0.00354695 0)
(1.04122 -0.00353577 0)
(1.041 -0.00352455 0)
(1.04077 -0.00351327 0)
(1.04053 -0.00350194 0)
(1.0403 -0.00349054 0)
(1.04006 -0.00347909 0)
(1.03981 -0.00346758 0)
(1.03957 -0.003456 0)
(1.03931 -0.00344435 0)
(1.03906 -0.00343264 0)
(1.0388 -0.00342086 0)
(1.03854 -0.00340901 0)
(1.03827 -0.00339709 0)
(1.038 -0.0033851 0)
(1.03773 -0.00337304 0)
(1.03745 -0.00336091 0)
(1.03717 -0.00334871 0)
(1.03689 -0.00333644 0)
(1.0366 -0.0033241 0)
(1.03631 -0.00331169 0)
(1.03601 -0.00329922 0)
(1.03571 -0.00328667 0)
(1.03541 -0.00327406 0)
(1.0351 -0.00326139 0)
(1.03479 -0.00324866 0)
(1.03447 -0.00323586 0)
(1.03415 -0.003223 0)
(1.03383 -0.00321009 0)
(1.03351 -0.00319712 0)
(1.03317 -0.0031841 0)
(1.03284 -0.00317102 0)
(1.0325 -0.0031579 0)
(1.03216 -0.00314473 0)
(1.03181 -0.00313152 0)
(1.03146 -0.00311826 0)
(1.03111 -0.00310496 0)
(1.03075 -0.00309162 0)
(1.03039 -0.00307825 0)
(1.03003 -0.00306484 0)
(1.02966 -0.0030514 0)
(1.02928 -0.00303793 0)
(1.02891 -0.00302443 0)
(1.02853 -0.00301091 0)
(1.02814 -0.00299735 0)
(1.02775 -0.00298378 0)
(1.02736 -0.00297018 0)
(1.02696 -0.00295656 0)
(1.02656 -0.00294292 0)
(1.02616 -0.00292926 0)
(1.02575 -0.00291559 0)
(1.02534 -0.00290191 0)
(1.02492 -0.00288822 0)
(1.0245 -0.00287452 0)
(1.02408 -0.00286081 0)
(1.02365 -0.00284711 0)
(1.02322 -0.0028334 0)
(1.02279 -0.00281969 0)
(1.02235 -0.00280599 0)
(1.0219 -0.00279231 0)
(1.02146 -0.00277864 0)
(1.02101 -0.002765 0)
(1.02055 -0.00275138 0)
(1.0201 -0.00273783 0)
(1.01963 -0.0027243 0)
(1.01917 -0.00271087 0)
(1.0187 -0.00269746 0)
(1.01823 -0.00268423 0)
(1.01775 -0.00267097 0)
(1.01727 -0.00265803 0)
(1.01679 -0.00264493 0)
(1.0163 -0.00263243 0)
(1.01581 -0.00261945 0)
(1.01532 -0.00260762 0)
(1.01481 -0.00259458 0)
(1.01432 -0.00258386 0)
(1.0138 -0.00257033 0)
(1.0133 -0.00256154 0)
(1.01278 -0.00254663 0)
(1.01228 -0.00254129 0)
(1.01172 -0.00252326 0)
(1.01125 -0.00252407 0)
(1.01064 -0.0025001 0)
(1.01023 -0.002511 0)
(1.0095 -0.00247852 0)
(1.00926 -0.00250145 0)
(1.00825 -0.0024644 0)
(1.0347 -0.0035967 0)
(1.03442 -0.00358533 0)
(1.03414 -0.00357393 0)
(1.03385 -0.0035625 0)
(1.03356 -0.00355104 0)
(1.03327 -0.00353957 0)
(1.03297 -0.00352806 0)
(1.03267 -0.00351651 0)
(1.03236 -0.00350493 0)
(1.03205 -0.00349332 0)
(1.03174 -0.00348166 0)
(1.03142 -0.00346996 0)
(1.0311 -0.00345822 0)
(1.03078 -0.00344643 0)
(1.03045 -0.00343459 0)
(1.03012 -0.0034227 0)
(1.02978 -0.00341076 0)
(1.02944 -0.00339877 0)
(1.0291 -0.00338672 0)
(1.02875 -0.00337461 0)
(1.0284 -0.00336245 0)
(1.02804 -0.00335022 0)
(1.02768 -0.00333794 0)
(1.02731 -0.0033256 0)
(1.02695 -0.00331319 0)
(1.02657 -0.00330072 0)
(1.02619 -0.00328819 0)
(1.02581 -0.0032756 0)
(1.02543 -0.00326295 0)
(1.02504 -0.00325024 0)
(1.02464 -0.00323747 0)
(1.02424 -0.00322464 0)
(1.02384 -0.00321175 0)
(1.02344 -0.00319881 0)
(1.02302 -0.00318581 0)
(1.02261 -0.00317275 0)
(1.02219 -0.00315964 0)
(1.02176 -0.00314648 0)
(1.02134 -0.00313327 0)
(1.0209 -0.00312001 0)
(1.02047 -0.0031067 0)
(1.02003 -0.00309334 0)
(1.01958 -0.00307995 0)
(1.01913 -0.00306651 0)
(1.01868 -0.00305303 0)
(1.01822 -0.00303952 0)
(1.01776 -0.00302597 0)
(1.01729 -0.00301238 0)
(1.01682 -0.00299877 0)
(1.01635 -0.00298513 0)
(1.01587 -0.00297145 0)
(1.01539 -0.00295775 0)
(1.0149 -0.00294403 0)
(1.01441 -0.00293029 0)
(1.01391 -0.00291652 0)
(1.01341 -0.00290273 0)
(1.01291 -0.00288893 0)
(1.0124 -0.00287511 0)
(1.01189 -0.00286127 0)
(1.01137 -0.00284742 0)
(1.01085 -0.00283356 0)
(1.01033 -0.0028197 0)
(1.0098 -0.00280582 0)
(1.00926 -0.00279194 0)
(1.00873 -0.00277806 0)
(1.00819 -0.00276418 0)
(1.00764 -0.0027503 0)
(1.00709 -0.00273642 0)
(1.00654 -0.00272256 0)
(1.00598 -0.0027087 0)
(1.00542 -0.00269487 0)
(1.00485 -0.00268105 0)
(1.00428 -0.00266726 0)
(1.00371 -0.00265349 0)
(1.00313 -0.00263977 0)
(1.00255 -0.00262609 0)
(1.00196 -0.00261248 0)
(1.00137 -0.00259891 0)
(1.00078 -0.00258546 0)
(1.00018 -0.00257204 0)
(0.999581 -0.0025588 0)
(0.998976 -0.00254554 0)
(0.998368 -0.00253261 0)
(0.997755 -0.00251952 0)
(0.997139 -0.00250703 0)
(0.996517 -0.00249406 0)
(0.995895 -0.00248223 0)
(0.995264 -0.0024692 0)
(0.994636 -0.00245844 0)
(0.993992 -0.00244496 0)
(0.993363 -0.00243606 0)
(0.992701 -0.00242125 0)
(0.992079 -0.00241566 0)
(0.991383 -0.00239787 0)
(0.990791 -0.00239818 0)
(0.990026 -0.00237468 0)
(0.989516 -0.00238471 0)
(0.988602 -0.00235296 0)
(0.9883 -0.00237486 0)
(0.987052 -0.00233927 0)
(1.02057 -0.00346564 0)
(1.02018 -0.00345372 0)
(1.01978 -0.00344177 0)
(1.01938 -0.00342979 0)
(1.01898 -0.00341779 0)
(1.01857 -0.00340577 0)
(1.01816 -0.00339371 0)
(1.01775 -0.00338162 0)
(1.01733 -0.00336949 0)
(1.0169 -0.00335732 0)
(1.01648 -0.00334512 0)
(1.01604 -0.00333287 0)
(1.01561 -0.00332058 0)
(1.01517 -0.00330825 0)
(1.01472 -0.00329587 0)
(1.01427 -0.00328345 0)
(1.01382 -0.00327098 0)
(1.01336 -0.00325846 0)
(1.0129 -0.00324589 0)
(1.01243 -0.00323327 0)
(1.01196 -0.0032206 0)
(1.01148 -0.00320788 0)
(1.011 -0.00319511 0)
(1.01052 -0.00318229 0)
(1.01003 -0.00316941 0)
(1.00953 -0.00315649 0)
(1.00904 -0.00314351 0)
(1.00853 -0.00313049 0)
(1.00802 -0.00311742 0)
(1.00751 -0.00310429 0)
(1.007 -0.00309113 0)
(1.00648 -0.00307791 0)
(1.00595 -0.00306465 0)
(1.00542 -0.00305134 0)
(1.00489 -0.003038 0)
(1.00435 -0.00302461 0)
(1.00381 -0.00301118 0)
(1.00326 -0.00299771 0)
(1.00271 -0.0029842 0)
(1.00215 -0.00297066 0)
(1.00159 -0.00295709 0)
(1.00102 -0.00294348 0)
(1.00045 -0.00292984 0)
(0.99988 -0.00291618 0)
(0.999302 -0.00290249 0)
(0.99872 -0.00288877 0)
(0.998133 -0.00287503 0)
(0.997541 -0.00286127 0)
(0.996946 -0.00284748 0)
(0.996346 -0.00283368 0)
(0.995742 -0.00281987 0)
(0.995133 -0.00280603 0)
(0.99452 -0.00279219 0)
(0.993903 -0.00277833 0)
(0.993282 -0.00276446 0)
(0.992656 -0.00275058 0)
(0.992026 -0.0027367 0)
(0.991392 -0.0027228 0)
(0.990754 -0.00270891 0)
(0.990111 -0.00269501 0)
(0.989464 -0.00268111 0)
(0.988813 -0.00266721 0)
(0.988158 -0.00265332 0)
(0.987499 -0.00263943 0)
(0.986836 -0.00262555 0)
(0.986168 -0.00261169 0)
(0.985496 -0.00259783 0)
(0.98482 -0.00258399 0)
(0.984141 -0.00257017 0)
(0.983457 -0.00255638 0)
(0.982769 -0.00254261 0)
(0.982077 -0.00252888 0)
(0.981381 -0.00251519 0)
(0.980681 -0.00250153 0)
(0.979978 -0.00248794 0)
(0.97927 -0.00247439 0)
(0.978559 -0.00246092 0)
(0.977843 -0.00244751 0)
(0.977124 -0.00243422 0)
(0.976401 -0.00242097 0)
(0.975674 -0.00240791 0)
(0.974944 -0.00239483 0)
(0.974209 -0.00238208 0)
(0.973471 -0.00236918 0)
(0.972729 -0.00235686 0)
(0.971982 -0.00234409 0)
(0.971234 -0.0023324 0)
(0.970477 -0.00231959 0)
(0.969724 -0.00230892 0)
(0.968953 -0.0022957 0)
(0.9682 -0.00228677 0)
(0.967409 -0.00227236 0)
(0.966666 -0.00226647 0)
(0.965837 -0.00224943 0)
(0.96513 -0.00224887 0)
(0.964222 -0.00222676 0)
(0.963614 -0.00223497 0)
(0.96253 -0.00220553 0)
(0.962169 -0.00222471 0)
(0.960692 -0.00219262 0)
(1.00078 -0.00329389 0)
(1.00027 -0.00328159 0)
(0.999753 -0.00326925 0)
(0.999236 -0.0032569 0)
(0.998714 -0.00324453 0)
(0.998188 -0.00323213 0)
(0.997657 -0.00321971 0)
(0.997122 -0.00320725 0)
(0.996583 -0.00319475 0)
(0.996039 -0.00318223 0)
(0.995491 -0.00316967 0)
(0.994938 -0.00315707 0)
(0.994381 -0.00314444 0)
(0.993819 -0.00313177 0)
(0.993253 -0.00311906 0)
(0.992682 -0.00310631 0)
(0.992107 -0.00309352 0)
(0.991527 -0.0030807 0)
(0.990943 -0.00306783 0)
(0.990354 -0.00305492 0)
(0.98976 -0.00304198 0)
(0.989162 -0.00302899 0)
(0.98856 -0.00301597 0)
(0.987953 -0.0030029 0)
(0.987341 -0.0029898 0)
(0.986725 -0.00297665 0)
(0.986104 -0.00296347 0)
(0.985479 -0.00295026 0)
(0.984849 -0.002937 0)
(0.984215 -0.00292371 0)
(0.983576 -0.00291039 0)
(0.982933 -0.00289704 0)
(0.982286 -0.00288365 0)
(0.981633 -0.00287023 0)
(0.980977 -0.00285678 0)
(0.980316 -0.00284331 0)
(0.979651 -0.00282981 0)
(0.978981 -0.00281628 0)
(0.978307 -0.00280273 0)
(0.977628 -0.00278916 0)
(0.976945 -0.00277556 0)
(0.976258 -0.00276195 0)
(0.975566 -0.00274832 0)
(0.974871 -0.00273468 0)
(0.97417 -0.00272101 0)
(0.973466 -0.00270734 0)
(0.972757 -0.00269366 0)
(0.972045 -0.00267996 0)
(0.971328 -0.00266626 0)
(0.970606 -0.00265255 0)
(0.969881 -0.00263883 0)
(0.969151 -0.00262511 0)
(0.968417 -0.00261139 0)
(0.967679 -0.00259766 0)
(0.966937 -0.00258394 0)
(0.966191 -0.00257021 0)
(0.965441 -0.00255649 0)
(0.964687 -0.00254278 0)
(0.963928 -0.00252907 0)
(0.963166 -0.00251536 0)
(0.9624 -0.00250167 0)
(0.961629 -0.00248799 0)
(0.960855 -0.00247432 0)
(0.960077 -0.00246067 0)
(0.959294 -0.00244704 0)
(0.958508 -0.00243343 0)
(0.957718 -0.00241984 0)
(0.956925 -0.00240628 0)
(0.956127 -0.00239276 0)
(0.955325 -0.00237926 0)
(0.95452 -0.00236581 0)
(0.953711 -0.0023524 0)
(0.952899 -0.00233904 0)
(0.952082 -0.00232573 0)
(0.951262 -0.00231248 0)
(0.950439 -0.0022993 0)
(0.949611 -0.0022862 0)
(0.94878 -0.00227316 0)
(0.947946 -0.00226025 0)
(0.947108 -0.00224738 0)
(0.946266 -0.00223471 0)
(0.945421 -0.00222203 0)
(0.944572 -0.00220965 0)
(0.943719 -0.00219715 0)
(0.942864 -0.0021852 0)
(0.942002 -0.00217282 0)
(0.941141 -0.00216147 0)
(0.94027 -0.00214908 0)
(0.939404 -0.00213867 0)
(0.93852 -0.00212595 0)
(0.937655 -0.0021171 0)
(0.936749 -0.00210342 0)
(0.935898 -0.00209722 0)
(0.93495 -0.00208141 0)
(0.934141 -0.00207971 0)
(0.933106 -0.00205988 0)
(0.93241 -0.00206542 0)
(0.931177 -0.00203982 0)
(0.930764 -0.00205463 0)
(0.929086 -0.00202808 0)
(0.974645 -0.00308288 0)
(0.974019 -0.00307045 0)
(0.97339 -0.00305797 0)
(0.972756 -0.00304549 0)
(0.972118 -0.003033 0)
(0.971476 -0.00302048 0)
(0.970829 -0.00300794 0)
(0.970177 -0.00299538 0)
(0.969521 -0.00298278 0)
(0.968861 -0.00297016 0)
(0.968196 -0.00295752 0)
(0.967527 -0.00294484 0)
(0.966854 -0.00293214 0)
(0.966176 -0.0029194 0)
(0.965493 -0.00290664 0)
(0.964806 -0.00289385 0)
(0.964115 -0.00288103 0)
(0.963419 -0.00286818 0)
(0.962719 -0.00285531 0)
(0.962014 -0.0028424 0)
(0.961305 -0.00282947 0)
(0.960591 -0.00281651 0)
(0.959873 -0.00280352 0)
(0.959151 -0.0027905 0)
(0.958424 -0.00277746 0)
(0.957693 -0.00276439 0)
(0.956958 -0.0027513 0)
(0.956218 -0.00273818 0)
(0.955474 -0.00272504 0)
(0.954725 -0.00271188 0)
(0.953973 -0.00269869 0)
(0.953216 -0.00268549 0)
(0.952455 -0.00267227 0)
(0.951689 -0.00265903 0)
(0.95092 -0.00264578 0)
(0.950146 -0.00263251 0)
(0.949368 -0.00261922 0)
(0.948586 -0.00260593 0)
(0.9478 -0.00259262 0)
(0.947009 -0.0025793 0)
(0.946215 -0.00256598 0)
(0.945416 -0.00255264 0)
(0.944614 -0.0025393 0)
(0.943807 -0.00252596 0)
(0.942997 -0.00251261 0)
(0.942182 -0.00249926 0)
(0.941364 -0.00248591 0)
(0.940542 -0.00247256 0)
(0.939715 -0.00245922 0)
(0.938885 -0.00244587 0)
(0.938051 -0.00243253 0)
(0.937213 -0.0024192 0)
(0.936372 -0.00240587 0)
(0.935526 -0.00239255 0)
(0.934677 -0.00237924 0)
(0.933824 -0.00236594 0)
(0.932967 -0.00235266 0)
(0.932107 -0.00233939 0)
(0.931243 -0.00232613 0)
(0.930375 -0.00231289 0)
(0.929504 -0.00229967 0)
(0.928629 -0.00228647 0)
(0.927751 -0.00227329 0)
(0.926868 -0.00226014 0)
(0.925983 -0.00224701 0)
(0.925094 -0.00223392 0)
(0.924201 -0.00222086 0)
(0.923305 -0.00220784 0)
(0.922406 -0.00219485 0)
(0.921503 -0.00218191 0)
(0.920597 -0.00216902 0)
(0.919688 -0.00215617 0)
(0.918775 -0.00214339 0)
(0.917859 -0.00213066 0)
(0.91694 -0.002118 0)
(0.916017 -0.00210541 0)
(0.915092 -0.00209291 0)
(0.914163 -0.00208048 0)
(0.913231 -0.00206817 0)
(0.912295 -0.0020559 0)
(0.911357 -0.00204383 0)
(0.910415 -0.00203175 0)
(0.90947 -0.00201997 0)
(0.908521 -0.00200807 0)
(0.907571 -0.00199668 0)
(0.906614 -0.00198491 0)
(0.905658 -0.00197409 0)
(0.904692 -0.00196234 0)
(0.903734 -0.00195237 0)
(0.902755 -0.00194038 0)
(0.901798 -0.00193177 0)
(0.900797 -0.00191908 0)
(0.899857 -0.00191264 0)
(0.898812 -0.00189847 0)
(0.89792 -0.00189547 0)
(0.89678 -0.00187865 0)
(0.896014 -0.00188086 0)
(0.894659 -0.00186045 0)
(0.894204 -0.00186946 0)
(0.892363 -0.00185026 0)
(0.941801 -0.00283736 0)
(0.941071 -0.00282508 0)
(0.940336 -0.00281278 0)
(0.939598 -0.00280047 0)
(0.938855 -0.00278815 0)
(0.938107 -0.00277582 0)
(0.937356 -0.00276348 0)
(0.9366 -0.00275111 0)
(0.93584 -0.00273872 0)
(0.935076 -0.00272632 0)
(0.934308 -0.0027139 0)
(0.933535 -0.00270146 0)
(0.932759 -0.002689 0)
(0.931978 -0.00267652 0)
(0.931193 -0.00266402 0)
(0.930403 -0.00265151 0)
(0.92961 -0.00263897 0)
(0.928812 -0.00262642 0)
(0.92801 -0.00261385 0)
(0.927205 -0.00260127 0)
(0.926395 -0.00258867 0)
(0.925581 -0.00257605 0)
(0.924762 -0.00256341 0)
(0.92394 -0.00255076 0)
(0.923114 -0.0025381 0)
(0.922284 -0.00252542 0)
(0.92145 -0.00251273 0)
(0.920611 -0.00250003 0)
(0.919769 -0.00248731 0)
(0.918923 -0.00247459 0)
(0.918073 -0.00246186 0)
(0.91722 -0.00244911 0)
(0.916362 -0.00243637 0)
(0.915501 -0.00242361 0)
(0.914635 -0.00241085 0)
(0.913766 -0.00239809 0)
(0.912893 -0.00238533 0)
(0.912017 -0.00237256 0)
(0.911137 -0.00235979 0)
(0.910253 -0.00234702 0)
(0.909365 -0.00233426 0)
(0.908474 -0.00232149 0)
(0.90758 -0.00230873 0)
(0.906681 -0.00229598 0)
(0.905779 -0.00228323 0)
(0.904874 -0.00227049 0)
(0.903965 -0.00225776 0)
(0.903053 -0.00224503 0)
(0.902137 -0.00223232 0)
(0.901218 -0.00221962 0)
(0.900295 -0.00220693 0)
(0.89937 -0.00219426 0)
(0.89844 -0.0021816 0)
(0.897508 -0.00216896 0)
(0.896572 -0.00215633 0)
(0.895633 -0.00214372 0)
(0.894691 -0.00213113 0)
(0.893745 -0.00211857 0)
(0.892796 -0.00210603 0)
(0.891845 -0.00209351 0)
(0.89089 -0.00208102 0)
(0.889932 -0.00206855 0)
(0.888971 -0.00205612 0)
(0.888007 -0.00204372 0)
(0.88704 -0.00203135 0)
(0.88607 -0.00201902 0)
(0.885097 -0.00200673 0)
(0.884121 -0.00199448 0)
(0.883142 -0.00198228 0)
(0.88216 -0.00197012 0)
(0.881176 -0.00195802 0)
(0.880189 -0.00194597 0)
(0.879199 -0.00193399 0)
(0.878206 -0.00192207 0)
(0.87721 -0.00191022 0)
(0.876212 -0.00189843 0)
(0.875211 -0.00188674 0)
(0.874207 -0.00187511 0)
(0.873201 -0.00186361 0)
(0.872191 -0.00185215 0)
(0.871179 -0.00184087 0)
(0.870164 -0.0018296 0)
(0.869147 -0.0018186 0)
(0.868126 -0.0018075 0)
(0.867104 -0.00179687 0)
(0.866077 -0.0017859 0)
(0.865051 -0.0017758 0)
(0.864015 -0.00176487 0)
(0.862987 -0.00175552 0)
(0.861938 -0.00174446 0)
(0.860915 -0.00173624 0)
(0.859843 -0.00172478 0)
(0.858839 -0.00171818 0)
(0.857722 -0.00170599 0)
(0.85677 -0.00170161 0)
(0.855554 -0.00168837 0)
(0.854738 -0.0016868 0)
(0.853294 -0.00167265 0)
(0.852809 -0.00167475 0)
(0.850852 -0.00166433 0)
(0.902216 -0.00256488 0)
(0.9014 -0.00255308 0)
(0.900579 -0.00254126 0)
(0.899755 -0.00252944 0)
(0.898926 -0.00251762 0)
(0.898094 -0.0025058 0)
(0.897258 -0.00249396 0)
(0.896418 -0.00248211 0)
(0.895574 -0.00247025 0)
(0.894727 -0.00245838 0)
(0.893875 -0.00244651 0)
(0.89302 -0.00243462 0)
(0.892161 -0.00242272 0)
(0.891298 -0.00241082 0)
(0.890431 -0.0023989 0)
(0.889561 -0.00238698 0)
(0.888687 -0.00237505 0)
(0.887809 -0.00236311 0)
(0.886927 -0.00235116 0)
(0.886042 -0.00233921 0)
(0.885153 -0.00232725 0)
(0.884261 -0.00231528 0)
(0.883365 -0.00230331 0)
(0.882465 -0.00229134 0)
(0.881562 -0.00227936 0)
(0.880656 -0.00226737 0)
(0.879745 -0.00225538 0)
(0.878832 -0.0022434 0)
(0.877915 -0.00223141 0)
(0.876994 -0.00221942 0)
(0.87607 -0.00220743 0)
(0.875143 -0.00219544 0)
(0.874212 -0.00218345 0)
(0.873279 -0.00217147 0)
(0.872341 -0.00215949 0)
(0.871401 -0.00214751 0)
(0.870457 -0.00213555 0)
(0.86951 -0.00212358 0)
(0.86856 -0.00211163 0)
(0.867607 -0.00209968 0)
(0.866651 -0.00208775 0)
(0.865692 -0.00207582 0)
(0.864729 -0.00206391 0)
(0.863764 -0.002052 0)
(0.862795 -0.00204011 0)
(0.861824 -0.00202824 0)
(0.860849 -0.00201638 0)
(0.859872 -0.00200453 0)
(0.858892 -0.00199271 0)
(0.857909 -0.0019809 0)
(0.856923 -0.00196911 0)
(0.855934 -0.00195734 0)
(0.854943 -0.00194559 0)
(0.853949 -0.00193386 0)
(0.852952 -0.00192216 0)
(0.851952 -0.00191048 0)
(0.85095 -0.00189882 0)
(0.849945 -0.00188719 0)
(0.848938 -0.00187559 0)
(0.847928 -0.00186402 0)
(0.846915 -0.00185248 0)
(0.8459 -0.00184098 0)
(0.844882 -0.00182951 0)
(0.843862 -0.00181807 0)
(0.84284 -0.00180667 0)
(0.841815 -0.00179531 0)
(0.840788 -0.001784 0)
(0.839758 -0.00177273 0)
(0.838727 -0.00176151 0)
(0.837692 -0.00175034 0)
(0.836656 -0.00173923 0)
(0.835617 -0.00172817 0)
(0.834576 -0.00171718 0)
(0.833533 -0.00170624 0)
(0.832488 -0.00169538 0)
(0.83144 -0.00168458 0)
(0.830391 -0.00167387 0)
(0.829339 -0.00166323 0)
(0.828285 -0.0016527 0)
(0.827228 -0.00164222 0)
(0.82617 -0.0016319 0)
(0.825109 -0.00162159 0)
(0.824046 -0.00161154 0)
(0.82298 -0.0016014 0)
(0.821914 -0.00159169 0)
(0.820842 -0.00158168 0)
(0.819773 -0.00157245 0)
(0.818694 -0.00156251 0)
(0.817624 -0.00155392 0)
(0.816533 -0.00154396 0)
(0.815469 -0.00153625 0)
(0.814356 -0.00152619 0)
(0.813313 -0.00151955 0)
(0.812153 -0.00150954 0)
(0.811168 -0.00150382 0)
(0.809906 -0.0014945 0)
(0.809062 -0.00148897 0)
(0.807566 -0.00148175 0)
(0.807065 -0.00147621 0)
(0.805041 -0.00147555 0)
(0.856205 -0.00227492 0)
(0.855327 -0.00226389 0)
(0.854445 -0.00225285 0)
(0.85356 -0.00224182 0)
(0.852672 -0.00223079 0)
(0.85178 -0.00221976 0)
(0.850885 -0.00220873 0)
(0.849986 -0.00219769 0)
(0.849084 -0.00218665 0)
(0.848179 -0.00217561 0)
(0.84727 -0.00216457 0)
(0.846358 -0.00215352 0)
(0.845443 -0.00214248 0)
(0.844524 -0.00213143 0)
(0.843602 -0.00212038 0)
(0.842677 -0.00210933 0)
(0.841749 -0.00209828 0)
(0.840817 -0.00208723 0)
(0.839883 -0.00207619 0)
(0.838945 -0.00206514 0)
(0.838004 -0.00205409 0)
(0.83706 -0.00204305 0)
(0.836113 -0.00203201 0)
(0.835163 -0.00202097 0)
(0.83421 -0.00200994 0)
(0.833254 -0.00199891 0)
(0.832295 -0.00198788 0)
(0.831333 -0.00197686 0)
(0.830368 -0.00196585 0)
(0.8294 -0.00195484 0)
(0.82843 -0.00194384 0)
(0.827457 -0.00193285 0)
(0.82648 -0.00192187 0)
(0.825502 -0.00191089 0)
(0.82452 -0.00189993 0)
(0.823536 -0.00188898 0)
(0.822549 -0.00187804 0)
(0.821559 -0.00186711 0)
(0.820567 -0.00185619 0)
(0.819572 -0.00184529 0)
(0.818575 -0.00183441 0)
(0.817575 -0.00182354 0)
(0.816573 -0.00181268 0)
(0.815568 -0.00180184 0)
(0.814561 -0.00179103 0)
(0.813551 -0.00178023 0)
(0.812539 -0.00176944 0)
(0.811525 -0.00175868 0)
(0.810508 -0.00174794 0)
(0.809489 -0.00173722 0)
(0.808468 -0.00172653 0)
(0.807445 -0.00171586 0)
(0.806419 -0.00170521 0)
(0.805391 -0.00169459 0)
(0.804361 -0.00168399 0)
(0.803329 -0.00167342 0)
(0.802295 -0.00166288 0)
(0.801259 -0.00165237 0)
(0.800221 -0.00164189 0)
(0.799181 -0.00163144 0)
(0.798138 -0.00162103 0)
(0.797094 -0.00161065 0)
(0.796048 -0.0016003 0)
(0.795 -0.00159 0)
(0.793951 -0.00157973 0)
(0.792899 -0.00156951 0)
(0.791846 -0.00155933 0)
(0.79079 -0.00154919 0)
(0.789733 -0.0015391 0)
(0.788675 -0.00152907 0)
(0.787614 -0.00151908 0)
(0.786552 -0.00150915 0)
(0.785488 -0.00149928 0)
(0.784423 -0.00148947 0)
(0.783356 -0.00147973 0)
(0.782287 -0.00147005 0)
(0.781216 -0.00146046 0)
(0.780144 -0.00145092 0)
(0.77907 -0.00144149 0)
(0.777994 -0.00143211 0)
(0.776917 -0.00142288 0)
(0.775838 -0.00141365 0)
(0.774758 -0.00140467 0)
(0.773675 -0.0013956 0)
(0.772592 -0.00138693 0)
(0.771504 -0.00137799 0)
(0.770419 -0.00136974 0)
(0.769325 -0.0013609 0)
(0.768241 -0.00135319 0)
(0.767135 -0.00134442 0)
(0.766059 -0.00133736 0)
(0.764931 -0.00132879 0)
(0.763878 -0.00132223 0)
(0.762704 -0.00131446 0)
(0.76171 -0.00130755 0)
(0.760433 -0.00130223 0)
(0.759584 -0.00129278 0)
(0.758072 -0.00129275 0)
(0.757569 -0.00127931 0)
(0.755527 -0.00128883 0)
(0.804378 -0.00197774 0)
(0.803467 -0.00196773 0)
(0.802553 -0.00195772 0)
(0.801635 -0.00194772 0)
(0.800715 -0.00193773 0)
(0.799792 -0.00192773 0)
(0.798866 -0.00191774 0)
(0.797937 -0.00190775 0)
(0.797006 -0.00189776 0)
(0.796071 -0.00188778 0)
(0.795134 -0.0018778 0)
(0.794194 -0.00186783 0)
(0.793251 -0.00185786 0)
(0.792305 -0.00184789 0)
(0.791357 -0.00183793 0)
(0.790405 -0.00182798 0)
(0.789452 -0.00181803 0)
(0.788495 -0.00180809 0)
(0.787536 -0.00179815 0)
(0.786575 -0.00178822 0)
(0.785611 -0.0017783 0)
(0.784644 -0.00176838 0)
(0.783675 -0.00175848 0)
(0.782703 -0.00174858 0)
(0.781729 -0.00173869 0)
(0.780752 -0.00172881 0)
(0.779773 -0.00171894 0)
(0.778792 -0.00170907 0)
(0.777808 -0.00169922 0)
(0.776822 -0.00168939 0)
(0.775834 -0.00167956 0)
(0.774843 -0.00166974 0)
(0.77385 -0.00165994 0)
(0.772855 -0.00165015 0)
(0.771858 -0.00164038 0)
(0.770858 -0.00163062 0)
(0.769857 -0.00162087 0)
(0.768853 -0.00161114 0)
(0.767848 -0.00160143 0)
(0.76684 -0.00159173 0)
(0.76583 -0.00158205 0)
(0.764819 -0.00157239 0)
(0.763805 -0.00156275 0)
(0.762789 -0.00155313 0)
(0.761772 -0.00154353 0)
(0.760753 -0.00153395 0)
(0.759732 -0.00152439 0)
(0.758709 -0.00151485 0)
(0.757684 -0.00150533 0)
(0.756657 -0.00149584 0)
(0.755629 -0.00148638 0)
(0.754599 -0.00147693 0)
(0.753568 -0.00146752 0)
(0.752535 -0.00145813 0)
(0.7515 -0.00144876 0)
(0.750464 -0.00143943 0)
(0.749426 -0.00143012 0)
(0.748386 -0.00142085 0)
(0.747345 -0.0014116 0)
(0.746303 -0.00140239 0)
(0.745259 -0.00139321 0)
(0.744214 -0.00138406 0)
(0.743167 -0.00137495 0)
(0.742119 -0.00136588 0)
(0.74107 -0.00135684 0)
(0.740019 -0.00134785 0)
(0.738967 -0.0013389 0)
(0.737913 -0.00132999 0)
(0.736859 -0.00132112 0)
(0.735803 -0.00131231 0)
(0.734746 -0.00130354 0)
(0.733688 -0.00129483 0)
(0.732628 -0.00128617 0)
(0.731567 -0.00127756 0)
(0.730505 -0.00126902 0)
(0.729442 -0.00126053 0)
(0.728378 -0.00125213 0)
(0.727313 -0.00124377 0)
(0.726246 -0.00123552 0)
(0.725178 -0.0012273 0)
(0.724109 -0.00121923 0)
(0.723038 -0.00121116 0)
(0.721967 -0.00120331 0)
(0.720894 -0.00119538 0)
(0.719821 -0.00118781 0)
(0.718744 -0.00118001 0)
(0.71767 -0.0011728 0)
(0.716587 -0.00116512 0)
(0.715515 -0.00115836 0)
(0.714421 -0.00115083 0)
(0.713359 -0.00114449 0)
(0.712244 -0.00113743 0)
(0.711206 -0.00113108 0)
(0.710044 -0.00112552 0)
(0.709067 -0.0011176 0)
(0.707803 -0.00111615 0)
(0.706971 -0.00110308 0)
(0.705475 -0.00111008 0)
(0.704984 -0.00108889 0)
(0.702971 -0.00110848 0)
(0.747566 -0.00168336 0)
(0.74665 -0.00167454 0)
(0.745732 -0.00166574 0)
(0.744811 -0.00165693 0)
(0.743888 -0.00164814 0)
(0.742962 -0.00163934 0)
(0.742034 -0.00163055 0)
(0.741104 -0.00162177 0)
(0.740171 -0.001613 0)
(0.739236 -0.00160423 0)
(0.738298 -0.00159547 0)
(0.737359 -0.00158672 0)
(0.736417 -0.00157798 0)
(0.735472 -0.00156925 0)
(0.734526 -0.00156053 0)
(0.733577 -0.00155181 0)
(0.732627 -0.0015431 0)
(0.731674 -0.00153441 0)
(0.730719 -0.00152572 0)
(0.729762 -0.00151704 0)
(0.728802 -0.00150838 0)
(0.727841 -0.00149972 0)
(0.726878 -0.00149107 0)
(0.725913 -0.00148244 0)
(0.724946 -0.00147382 0)
(0.723977 -0.00146521 0)
(0.723006 -0.00145661 0)
(0.722033 -0.00144802 0)
(0.721058 -0.00143945 0)
(0.720081 -0.00143089 0)
(0.719103 -0.00142234 0)
(0.718123 -0.00141381 0)
(0.717141 -0.00140529 0)
(0.716158 -0.00139679 0)
(0.715172 -0.0013883 0)
(0.714185 -0.00137983 0)
(0.713197 -0.00137138 0)
(0.712207 -0.00136294 0)
(0.711215 -0.00135452 0)
(0.710222 -0.00134611 0)
(0.709227 -0.00133773 0)
(0.708231 -0.00132936 0)
(0.707233 -0.00132102 0)
(0.706234 -0.00131269 0)
(0.705233 -0.00130439 0)
(0.704231 -0.0012961 0)
(0.703228 -0.00128784 0)
(0.702223 -0.0012796 0)
(0.701217 -0.00127138 0)
(0.70021 -0.00126319 0)
(0.699201 -0.00125501 0)
(0.698191 -0.00124687 0)
(0.69718 -0.00123875 0)
(0.696168 -0.00123065 0)
(0.695155 -0.00122258 0)
(0.69414 -0.00121453 0)
(0.693125 -0.00120652 0)
(0.692108 -0.00119853 0)
(0.691091 -0.00119057 0)
(0.690072 -0.00118264 0)
(0.689052 -0.00117475 0)
(0.688031 -0.00116688 0)
(0.68701 -0.00115905 0)
(0.685987 -0.00115125 0)
(0.684964 -0.00114349 0)
(0.683939 -0.00113576 0)
(0.682914 -0.00112807 0)
(0.681888 -0.00112043 0)
(0.680861 -0.00111282 0)
(0.679833 -0.00110526 0)
(0.678804 -0.00109774 0)
(0.677775 -0.00109026 0)
(0.676745 -0.00108284 0)
(0.675714 -0.00107547 0)
(0.674682 -0.00106815 0)
(0.673649 -0.00106089 0)
(0.672616 -0.00105369 0)
(0.671581 -0.00104654 0)
(0.670547 -0.00103948 0)
(0.669511 -0.00103245 0)
(0.668474 -0.00102556 0)
(0.667436 -0.00101866 0)
(0.666399 -0.00101196 0)
(0.665359 -0.00100519 0)
(0.66432 -0.000998736 0)
(0.663277 -0.00099209 0)
(0.662239 -0.000985947 0)
(0.66119 -0.000979431 0)
(0.660155 -0.000973635 0)
(0.659096 -0.00096735 0)
(0.658071 -0.000961776 0)
(0.656991 -0.000956175 0)
(0.655992 -0.000950135 0)
(0.654866 -0.000946633 0)
(0.653928 -0.000937959 0)
(0.652702 -0.000940038 0)
(0.651906 -0.000923835 0)
(0.650457 -0.000937314 0)
(0.649989 -0.000908962 0)
(0.648045 -0.000937974 0)
(0.686725 -0.00140066 0)
(0.685831 -0.00139312 0)
(0.684936 -0.00138561 0)
(0.684038 -0.0013781 0)
(0.683139 -0.00137058 0)
(0.682237 -0.00136307 0)
(0.681333 -0.00135557 0)
(0.680428 -0.00134808 0)
(0.679521 -0.0013406 0)
(0.678611 -0.00133313 0)
(0.6777 -0.00132567 0)
(0.676787 -0.00131822 0)
(0.675873 -0.00131078 0)
(0.674956 -0.00130335 0)
(0.674038 -0.00129592 0)
(0.673118 -0.00128851 0)
(0.672196 -0.00128111 0)
(0.671272 -0.00127373 0)
(0.670347 -0.00126635 0)
(0.669421 -0.00125898 0)
(0.668492 -0.00125163 0)
(0.667562 -0.00124428 0)
(0.666631 -0.00123695 0)
(0.665698 -0.00122963 0)
(0.664763 -0.00122232 0)
(0.663827 -0.00121503 0)
(0.662889 -0.00120774 0)
(0.66195 -0.00120048 0)
(0.66101 -0.00119322 0)
(0.660068 -0.00118598 0)
(0.659124 -0.00117875 0)
(0.65818 -0.00117153 0)
(0.657234 -0.00116433 0)
(0.656286 -0.00115715 0)
(0.655338 -0.00114998 0)
(0.654388 -0.00114283 0)
(0.653437 -0.00113569 0)
(0.652485 -0.00112857 0)
(0.651532 -0.00112146 0)
(0.650577 -0.00111438 0)
(0.649621 -0.00110731 0)
(0.648665 -0.00110025 0)
(0.647707 -0.00109322 0)
(0.646748 -0.00108621 0)
(0.645788 -0.00107921 0)
(0.644827 -0.00107224 0)
(0.643865 -0.00106528 0)
(0.642903 -0.00105834 0)
(0.641939 -0.00105143 0)
(0.640974 -0.00104454 0)
(0.640009 -0.00103767 0)
(0.639042 -0.00103082 0)
(0.638075 -0.00102399 0)
(0.637107 -0.00101719 0)
(0.636138 -0.00101041 0)
(0.635169 -0.00100365 0)
(0.634198 -0.000996921 0)
(0.633227 -0.000990217 0)
(0.632256 -0.000983538 0)
(0.631283 -0.000976887 0)
(0.63031 -0.000970263 0)
(0.629337 -0.000963667 0)
(0.628362 -0.000957102 0)
(0.627388 -0.000950565 0)
(0.626412 -0.00094406 0)
(0.625436 -0.000937588 0)
(0.62446 -0.00093115 0)
(0.623483 -0.000924746 0)
(0.622505 -0.000918378 0)
(0.621527 -0.000912048 0)
(0.620548 -0.000905758 0)
(0.619569 -0.000899506 0)
(0.618589 -0.000893299 0)
(0.617609 -0.000887133 0)
(0.616629 -0.000881019 0)
(0.615648 -0.000874947 0)
(0.614666 -0.000868937 0)
(0.613684 -0.000862967 0)
(0.612702 -0.000857076 0)
(0.611719 -0.000851213 0)
(0.610736 -0.000845465 0)
(0.609752 -0.000839713 0)
(0.608768 -0.000834134 0)
(0.607782 -0.000828498 0)
(0.606798 -0.000823135 0)
(0.605809 -0.000817613 0)
(0.604826 -0.000812506 0)
(0.603833 -0.000807123 0)
(0.602853 -0.000802272 0)
(0.60185 -0.00079718 0)
(0.600882 -0.000792372 0)
(0.599858 -0.000788142 0)
(0.598915 -0.000782483 0)
(0.597847 -0.000780829 0)
(0.596965 -0.00077166 0)
(0.595799 -0.000776783 0)
(0.595055 -0.000758086 0)
(0.593676 -0.000777166 0)
(0.593243 -0.000742609 0)
(0.591401 -0.000779929 0)
(0.62285 -0.00113685 0)
(0.622002 -0.00113062 0)
(0.621153 -0.00112441 0)
(0.620301 -0.0011182 0)
(0.619448 -0.00111198 0)
(0.618594 -0.00110576 0)
(0.617738 -0.00109956 0)
(0.61688 -0.00109337 0)
(0.616021 -0.00108719 0)
(0.615161 -0.00108102 0)
(0.614298 -0.00107485 0)
(0.613435 -0.0010687 0)
(0.61257 -0.00106256 0)
(0.611703 -0.00105643 0)
(0.610836 -0.0010503 0)
(0.609966 -0.00104419 0)
(0.609096 -0.00103809 0)
(0.608224 -0.001032 0)
(0.607351 -0.00102593 0)
(0.606476 -0.00101986 0)
(0.605601 -0.0010138 0)
(0.604724 -0.00100776 0)
(0.603846 -0.00100172 0)
(0.602966 -0.000995697 0)
(0.602086 -0.000989686 0)
(0.601204 -0.000983687 0)
(0.600321 -0.000977699 0)
(0.599437 -0.000971724 0)
(0.598552 -0.000965762 0)
(0.597666 -0.000959812 0)
(0.596779 -0.000953874 0)
(0.595891 -0.00094795 0)
(0.595002 -0.000942039 0)
(0.594112 -0.000936142 0)
(0.593221 -0.000930259 0)
(0.592329 -0.00092439 0)
(0.591436 -0.000918535 0)
(0.590542 -0.000912695 0)
(0.589647 -0.00090687 0)
(0.588752 -0.00090106 0)
(0.587856 -0.000895266 0)
(0.586959 -0.000889489 0)
(0.586061 -0.000883727 0)
(0.585162 -0.000877982 0)
(0.584263 -0.000872254 0)
(0.583363 -0.000866543 0)
(0.582462 -0.00086085 0)
(0.581561 -0.000855174 0)
(0.580659 -0.000849516 0)
(0.579757 -0.000843878 0)
(0.578853 -0.000838258 0)
(0.57795 -0.000832658 0)
(0.577046 -0.000827078 0)
(0.576141 -0.000821516 0)
(0.575236 -0.000815976 0)
(0.57433 -0.000810456 0)
(0.573424 -0.000804958 0)
(0.572517 -0.000799481 0)
(0.57161 -0.000794027 0)
(0.570702 -0.000788596 0)
(0.569794 -0.000783189 0)
(0.568886 -0.000777805 0)
(0.567977 -0.000772447 0)
(0.567069 -0.000767113 0)
(0.566159 -0.000761806 0)
(0.56525 -0.000756528 0)
(0.56434 -0.000751278 0)
(0.563429 -0.000746057 0)
(0.562519 -0.000740866 0)
(0.561608 -0.000735707 0)
(0.560697 -0.000730582 0)
(0.559786 -0.000725489 0)
(0.558874 -0.000720434 0)
(0.557963 -0.000715413 0)
(0.557051 -0.000710437 0)
(0.556138 -0.000705496 0)
(0.555226 -0.000700609 0)
(0.554313 -0.000695754 0)
(0.5534 -0.000690968 0)
(0.552487 -0.000686203 0)
(0.551574 -0.000681538 0)
(0.550659 -0.000676869 0)
(0.549746 -0.000672347 0)
(0.54883 -0.000667779 0)
(0.547917 -0.000663438 0)
(0.546999 -0.000658976 0)
(0.546087 -0.000654839 0)
(0.545165 -0.000650523 0)
(0.544258 -0.000646557 0)
(0.543326 -0.000642576 0)
(0.54243 -0.0006385 0)
(0.541478 -0.000635513 0)
(0.540608 -0.000630281 0)
(0.539612 -0.000630213 0)
(0.538802 -0.000620813 0)
(0.537712 -0.000628389 0)
(0.537033 -0.000607942 0)
(0.535744 -0.000631478 0)
(0.535352 -0.000592016 0)
(0.533639 -0.000636097 0)
(0.556901 -0.000897264 0)
(0.556118 -0.000892285 0)
(0.555333 -0.000887333 0)
(0.554546 -0.000882368 0)
(0.553759 -0.000877392 0)
(0.55297 -0.000872421 0)
(0.55218 -0.000867461 0)
(0.551388 -0.000862513 0)
(0.550596 -0.000857572 0)
(0.549802 -0.00085264 0)
(0.549007 -0.000847718 0)
(0.548211 -0.000842804 0)
(0.547414 -0.000837899 0)
(0.546615 -0.000833004 0)
(0.545816 -0.000828119 0)
(0.545015 -0.000823243 0)
(0.544214 -0.000818377 0)
(0.543411 -0.00081352 0)
(0.542608 -0.000808673 0)
(0.541803 -0.000803836 0)
(0.540997 -0.000799009 0)
(0.540191 -0.00079419 0)
(0.539383 -0.000789382 0)
(0.538575 -0.000784584 0)
(0.537765 -0.000779796 0)
(0.536955 -0.000775019 0)
(0.536144 -0.000770252 0)
(0.535332 -0.000765495 0)
(0.534519 -0.00076075 0)
(0.533706 -0.000756015 0)
(0.532891 -0.000751291 0)
(0.532076 -0.000746579 0)
(0.53126 -0.000741877 0)
(0.530444 -0.000737188 0)
(0.529627 -0.00073251 0)
(0.528809 -0.000727843 0)
(0.52799 -0.00072319 0)
(0.527171 -0.000718548 0)
(0.526351 -0.000713919 0)
(0.525531 -0.000709304 0)
(0.52471 -0.000704701 0)
(0.523888 -0.000700112 0)
(0.523066 -0.000695536 0)
(0.522243 -0.000690974 0)
(0.52142 -0.000686427 0)
(0.520596 -0.000681892 0)
(0.519772 -0.000677374 0)
(0.518948 -0.000672869 0)
(0.518123 -0.00066838 0)
(0.517298 -0.000663906 0)
(0.516472 -0.000659448 0)
(0.515646 -0.000655006 0)
(0.514819 -0.00065058 0)
(0.513992 -0.00064617 0)
(0.513165 -0.000641777 0)
(0.512338 -0.0006374 0)
(0.51151 -0.000633041 0)
(0.510682 -0.000628701 0)
(0.509854 -0.000624378 0)
(0.509026 -0.000620074 0)
(0.508197 -0.00061579 0)
(0.507369 -0.000611524 0)
(0.50654 -0.00060728 0)
(0.50571 -0.000603055 0)
(0.504881 -0.000598852 0)
(0.504052 -0.000594672 0)
(0.503222 -0.000590516 0)
(0.502392 -0.000586383 0)
(0.501562 -0.000582274 0)
(0.500733 -0.000578191 0)
(0.499903 -0.000574137 0)
(0.499072 -0.000570108 0)
(0.498242 -0.000566111 0)
(0.497412 -0.000562141 0)
(0.496581 -0.000558208 0)
(0.495751 -0.000554305 0)
(0.49492 -0.000550445 0)
(0.49409 -0.000546612 0)
(0.493259 -0.000542836 0)
(0.492428 -0.000539077 0)
(0.491597 -0.000535401 0)
(0.490765 -0.000531721 0)
(0.489935 -0.000528163 0)
(0.489102 -0.000524571 0)
(0.488272 -0.000521159 0)
(0.487437 -0.000517663 0)
(0.486609 -0.000514405 0)
(0.48577 -0.000511061 0)
(0.484946 -0.000507893 0)
(0.484097 -0.000504919 0)
(0.483285 -0.000501511 0)
(0.482417 -0.000499619 0)
(0.481631 -0.000494831 0)
(0.48072 -0.000496063 0)
(0.479992 -0.000486681 0)
(0.478991 -0.000496061 0)
(0.478387 -0.000474671 0)
(0.477201 -0.000501325 0)
(0.476857 -0.000458547 0)
(0.475292 -0.000507469 0)
(0.489745 -0.000685378 0)
(0.489039 -0.000681553 0)
(0.488333 -0.000677753 0)
(0.487626 -0.000673933 0)
(0.486917 -0.000670098 0)
(0.486208 -0.000666268 0)
(0.485498 -0.000662449 0)
(0.484786 -0.000658639 0)
(0.484074 -0.000654836 0)
(0.483361 -0.000651039 0)
(0.482646 -0.000647251 0)
(0.481931 -0.00064347 0)
(0.481215 -0.000639697 0)
(0.480498 -0.000635932 0)
(0.479781 -0.000632175 0)
(0.479062 -0.000628426 0)
(0.478342 -0.000624685 0)
(0.477622 -0.000620952 0)
(0.476901 -0.000617227 0)
(0.476179 -0.000613509 0)
(0.475456 -0.000609801 0)
(0.474733 -0.000606099 0)
(0.474009 -0.000602405 0)
(0.473284 -0.00059872 0)
(0.472559 -0.000595043 0)
(0.471832 -0.000591374 0)
(0.471105 -0.000587715 0)
(0.470378 -0.000584062 0)
(0.46965 -0.00058042 0)
(0.468921 -0.000576785 0)
(0.468192 -0.00057316 0)
(0.467462 -0.000569543 0)
(0.466731 -0.000565936 0)
(0.466 -0.000562338 0)
(0.465268 -0.000558749 0)
(0.464536 -0.000555169 0)
(0.463804 -0.0005516 0)
(0.463071 -0.00054804 0)
(0.462337 -0.00054449 0)
(0.461603 -0.00054095 0)
(0.460869 -0.000537421 0)
(0.460134 -0.000533903 0)
(0.459399 -0.000530395 0)
(0.458664 -0.000526898 0)
(0.457928 -0.000523412 0)
(0.457192 -0.000519936 0)
(0.456455 -0.000516474 0)
(0.455719 -0.000513021 0)
(0.454982 -0.000509581 0)
(0.454244 -0.000506153 0)
(0.453507 -0.000502738 0)
(0.452769 -0.000499335 0)
(0.452031 -0.000495944 0)
(0.451293 -0.000492565 0)
(0.450555 -0.000489201 0)
(0.449816 -0.000485848 0)
(0.449077 -0.00048251 0)
(0.448339 -0.000479186 0)
(0.4476 -0.000475875 0)
(0.44686 -0.00047258 0)
(0.446121 -0.0004693 0)
(0.445382 -0.000466034 0)
(0.444643 -0.000462785 0)
(0.443903 -0.00045955 0)
(0.443164 -0.000456332 0)
(0.442424 -0.000453133 0)
(0.441685 -0.000449953 0)
(0.440945 -0.000446791 0)
(0.440206 -0.000443647 0)
(0.439466 -0.000440524 0)
(0.438727 -0.000437423 0)
(0.437987 -0.000434342 0)
(0.437247 -0.000431287 0)
(0.436508 -0.000428253 0)
(0.435768 -0.000425248 0)
(0.435028 -0.000422266 0)
(0.434289 -0.00041932 0)
(0.433549 -0.000416394 0)
(0.43281 -0.000413514 0)
(0.43207 -0.000410648 0)
(0.43133 -0.000407848 0)
(0.43059 -0.000405046 0)
(0.429851 -0.000402338 0)
(0.429109 -0.000399612 0)
(0.428371 -0.000397015 0)
(0.427628 -0.000394378 0)
(0.426891 -0.000391885 0)
(0.426144 -0.000389405 0)
(0.425412 -0.000386929 0)
(0.424655 -0.000384844 0)
(0.423935 -0.000382018 0)
(0.423158 -0.000381067 0)
(0.422464 -0.000376711 0)
(0.421646 -0.000378957 0)
(0.421008 -0.000369814 0)
(0.420105 -0.000380339 0)
(0.419582 -0.00035883 0)
(0.41851 -0.000387143 0)
(0.418219 -0.000342871 0)
(0.416816 -0.000394404 0)
(0.422121 -0.00050301 0)
(0.421504 -0.000500203 0)
(0.420886 -0.000497418 0)
(0.420267 -0.000494607 0)
(0.419648 -0.000491779 0)
(0.419027 -0.000488956 0)
(0.418406 -0.000486142 0)
(0.417784 -0.000483335 0)
(0.417161 -0.000480533 0)
(0.416538 -0.000477737 0)
(0.415914 -0.000474947 0)
(0.415289 -0.000472162 0)
(0.414663 -0.000469384 0)
(0.414036 -0.000466613 0)
(0.413409 -0.000463847 0)
(0.412781 -0.000461088 0)
(0.412153 -0.000458334 0)
(0.411524 -0.000455587 0)
(0.410894 -0.000452846 0)
(0.410264 -0.00045011 0)
(0.409633 -0.000447382 0)
(0.409001 -0.000444658 0)
(0.408369 -0.000441941 0)
(0.407736 -0.00043923 0)
(0.407103 -0.000436525 0)
(0.406469 -0.000433827 0)
(0.405835 -0.000431136 0)
(0.4052 -0.00042845 0)
(0.404564 -0.000425771 0)
(0.403929 -0.000423098 0)
(0.403292 -0.000420432 0)
(0.402656 -0.000417773 0)
(0.402019 -0.000415121 0)
(0.401381 -0.000412475 0)
(0.400743 -0.000409837 0)
(0.400105 -0.000407205 0)
(0.399466 -0.000404581 0)
(0.398827 -0.000401964 0)
(0.398188 -0.000399354 0)
(0.397548 -0.000396752 0)
(0.396908 -0.000394158 0)
(0.396268 -0.000391572 0)
(0.395627 -0.000388994 0)
(0.394986 -0.000386423 0)
(0.394345 -0.000383861 0)
(0.393704 -0.000381307 0)
(0.393062 -0.000378762 0)
(0.392421 -0.000376224 0)
(0.391779 -0.000373696 0)
(0.391136 -0.000371178 0)
(0.390494 -0.000368668 0)
(0.389852 -0.000366167 0)
(0.389209 -0.000363675 0)
(0.388567 -0.000361192 0)
(0.387924 -0.00035872 0)
(0.387281 -0.000356256 0)
(0.386638 -0.000353803 0)
(0.385995 -0.00035136 0)
(0.385352 -0.000348928 0)
(0.384709 -0.000346507 0)
(0.384065 -0.000344096 0)
(0.383422 -0.000341696 0)
(0.382779 -0.000339309 0)
(0.382136 -0.000336932 0)
(0.381492 -0.000334569 0)
(0.380849 -0.000332219 0)
(0.380206 -0.000329883 0)
(0.379563 -0.00032756 0)
(0.37892 -0.000325252 0)
(0.378277 -0.000322958 0)
(0.377633 -0.000320682 0)
(0.37699 -0.00031842 0)
(0.376347 -0.000316178 0)
(0.375704 -0.000313951 0)
(0.375061 -0.000311747 0)
(0.374418 -0.000309561 0)
(0.373776 -0.000307402 0)
(0.373133 -0.000305259 0)
(0.37249 -0.000303149 0)
(0.371847 -0.000301052 0)
(0.371204 -0.000299004 0)
(0.370561 -0.000296958 0)
(0.369918 -0.000294977 0)
(0.369274 -0.000292996 0)
(0.368632 -0.000291092 0)
(0.367986 -0.000289196 0)
(0.367347 -0.000287347 0)
(0.366696 -0.000285614 0)
(0.366062 -0.000283713 0)
(0.365402 -0.000282395 0)
(0.364779 -0.000280053 0)
(0.3641 -0.000279887 0)
(0.363502 -0.000275933 0)
(0.362782 -0.00027892 0)
(0.362238 -0.000270206 0)
(0.361439 -0.000281237 0)
(0.361 -0.000260414 0)
(0.360049 -0.00028888 0)
(0.359814 -0.000245106 0)
(0.358581 -0.000296769 0)
(0.354627 -0.000350626 0)
(0.354104 -0.000348685 0)
(0.353581 -0.000346758 0)
(0.353056 -0.000344799 0)
(0.352531 -0.000342826 0)
(0.352006 -0.000340856 0)
(0.351479 -0.000338893 0)
(0.350952 -0.000336936 0)
(0.350425 -0.000334982 0)
(0.349896 -0.000333032 0)
(0.349368 -0.000331087 0)
(0.348838 -0.000329146 0)
(0.348308 -0.00032721 0)
(0.347777 -0.000325278 0)
(0.347246 -0.000323351 0)
(0.346715 -0.000321428 0)
(0.346182 -0.000319509 0)
(0.34565 -0.000317594 0)
(0.345116 -0.000315684 0)
(0.344583 -0.000313778 0)
(0.344048 -0.000311877 0)
(0.343514 -0.000309979 0)
(0.342979 -0.000308086 0)
(0.342443 -0.000306198 0)
(0.341907 -0.000304313 0)
(0.34137 -0.000302433 0)
(0.340833 -0.000300558 0)
(0.340296 -0.000298686 0)
(0.339758 -0.000296821 0)
(0.33922 -0.000294958 0)
(0.338682 -0.000293101 0)
(0.338143 -0.000291248 0)
(0.337604 -0.0002894 0)
(0.337065 -0.000287557 0)
(0.336525 -0.000285719 0)
(0.335985 -0.000283884 0)
(0.335445 -0.000282056 0)
(0.334904 -0.000280232 0)
(0.334363 -0.000278414 0)
(0.333822 -0.000276601 0)
(0.333281 -0.000274793 0)
(0.332739 -0.000272991 0)
(0.332197 -0.000271194 0)
(0.331655 -0.000269403 0)
(0.331113 -0.000267617 0)
(0.330571 -0.000265837 0)
(0.330028 -0.000264064 0)
(0.329485 -0.000262295 0)
(0.328943 -0.000260533 0)
(0.3284 -0.000258777 0)
(0.327857 -0.000257028 0)
(0.327314 -0.000255285 0)
(0.32677 -0.000253548 0)
(0.326227 -0.000251817 0)
(0.325684 -0.000250094 0)
(0.32514 -0.000248375 0)
(0.324597 -0.000246666 0)
(0.324053 -0.000244963 0)
(0.32351 -0.000243267 0)
(0.322966 -0.000241579 0)
(0.322422 -0.000239898 0)
(0.321879 -0.000238225 0)
(0.321335 -0.000236561 0)
(0.320792 -0.000234903 0)
(0.320248 -0.000233255 0)
(0.319704 -0.000231617 0)
(0.319161 -0.000229989 0)
(0.318617 -0.000228369 0)
(0.318074 -0.00022676 0)
(0.317531 -0.000225161 0)
(0.316987 -0.000223575 0)
(0.316444 -0.000221998 0)
(0.315901 -0.000220437 0)
(0.315358 -0.000218885 0)
(0.314815 -0.000217351 0)
(0.314271 -0.000215829 0)
(0.313728 -0.000214327 0)
(0.313185 -0.000212836 0)
(0.312642 -0.000211369 0)
(0.312099 -0.000209914 0)
(0.311556 -0.00020849 0)
(0.311013 -0.000207073 0)
(0.31047 -0.000205694 0)
(0.309926 -0.000204335 0)
(0.309384 -0.000203 0)
(0.308837 -0.000201724 0)
(0.308298 -0.000200397 0)
(0.307747 -0.000199291 0)
(0.307212 -0.000197849 0)
(0.306652 -0.000197172 0)
(0.306129 -0.000195217 0)
(0.30555 -0.000195681 0)
(0.305051 -0.000192095 0)
(0.304434 -0.000195565 0)
(0.303986 -0.00018744 0)
(0.303294 -0.000198388 0)
(0.302942 -0.000178996 0)
(0.302115 -0.000206147 0)
(0.301937 -0.000164946 0)
(0.300878 -0.000214079 0)
(0.287716 -0.000227668 0)
(0.28729 -0.000226428 0)
(0.286863 -0.000225194 0)
(0.286436 -0.000223927 0)
(0.286008 -0.000222647 0)
(0.28558 -0.000221369 0)
(0.285151 -0.000220098 0)
(0.284721 -0.00021883 0)
(0.284292 -0.000217565 0)
(0.283861 -0.000216302 0)
(0.28343 -0.000215042 0)
(0.282999 -0.000213785 0)
(0.282567 -0.000212531 0)
(0.282135 -0.000211281 0)
(0.281702 -0.000210033 0)
(0.281269 -0.000208788 0)
(0.280836 -0.000207546 0)
(0.280402 -0.000206306 0)
(0.279967 -0.00020507 0)
(0.279532 -0.000203836 0)
(0.279097 -0.000202605 0)
(0.278662 -0.000201376 0)
(0.278226 -0.00020015 0)
(0.277789 -0.000198927 0)
(0.277353 -0.000197707 0)
(0.276916 -0.00019649 0)
(0.276478 -0.000195275 0)
(0.276041 -0.000194063 0)
(0.275603 -0.000192855 0)
(0.275164 -0.000191648 0)
(0.274726 -0.000190445 0)
(0.274287 -0.000189245 0)
(0.273848 -0.000188048 0)
(0.273409 -0.000186854 0)
(0.272969 -0.000185663 0)
(0.272529 -0.000184474 0)
(0.272089 -0.00018329 0)
(0.271649 -0.000182107 0)
(0.271208 -0.000180929 0)
(0.270767 -0.000179754 0)
(0.270327 -0.000178582 0)
(0.269885 -0.000177414 0)
(0.269444 -0.00017625 0)
(0.269003 -0.000175088 0)
(0.268561 -0.000173931 0)
(0.26812 -0.000172776 0)
(0.267678 -0.000171627 0)
(0.267236 -0.000170479 0)
(0.266794 -0.000169337 0)
(0.266352 -0.000168198 0)
(0.265909 -0.000167063 0)
(0.265467 -0.000165933 0)
(0.265025 -0.000164806 0)
(0.264582 -0.000163682 0)
(0.26414 -0.000162565 0)
(0.263697 -0.00016145 0)
(0.263255 -0.000160341 0)
(0.262812 -0.000159235 0)
(0.262369 -0.000158135 0)
(0.261927 -0.000157039 0)
(0.261484 -0.000155948 0)
(0.261041 -0.000154862 0)
(0.260599 -0.000153782 0)
(0.260156 -0.000152705 0)
(0.259713 -0.000151636 0)
(0.259271 -0.000150572 0)
(0.258828 -0.000149515 0)
(0.258386 -0.000148464 0)
(0.257943 -0.000147419 0)
(0.257501 -0.000146381 0)
(0.257058 -0.000145352 0)
(0.256616 -0.000144329 0)
(0.256174 -0.000143315 0)
(0.255731 -0.000142308 0)
(0.255289 -0.000141313 0)
(0.254847 -0.000140327 0)
(0.254405 -0.000139353 0)
(0.253963 -0.000138388 0)
(0.25352 -0.000137437 0)
(0.253078 -0.000136497 0)
(0.252636 -0.000135573 0)
(0.252193 -0.000134663 0)
(0.251752 -0.000133764 0)
(0.251308 -0.000132904 0)
(0.250867 -0.000132019 0)
(0.250421 -0.000131241 0)
(0.249982 -0.000130323 0)
(0.249533 -0.000129722 0)
(0.249098 -0.000128635 0)
(0.24864 -0.000128466 0)
(0.248217 -0.00012682 0)
(0.24774 -0.000127751 0)
(0.24734 -0.000124517 0)
(0.246827 -0.000128208 0)
(0.246474 -0.000120834 0)
(0.245893 -0.000131152 0)
(0.245625 -0.000113864 0)
(0.244928 -0.000138343 0)
(0.244805 -0.000101746 0)
(0.243923 -0.000145621 0)
(0.221707 -0.000132863 0)
(0.221378 -0.000132161 0)
(0.221049 -0.000131455 0)
(0.220719 -0.000130719 0)
(0.220389 -0.000129973 0)
(0.220058 -0.00012923 0)
(0.219727 -0.000128491 0)
(0.219396 -0.000127755 0)
(0.219064 -0.000127021 0)
(0.218732 -0.000126287 0)
(0.2184 -0.000125556 0)
(0.218067 -0.000124826 0)
(0.217734 -0.000124098 0)
(0.2174 -0.000123372 0)
(0.217066 -0.000122648 0)
(0.216732 -0.000121925 0)
(0.216397 -0.000121204 0)
(0.216062 -0.000120484 0)
(0.215727 -0.000119767 0)
(0.215391 -0.00011905 0)
(0.215055 -0.000118336 0)
(0.214719 -0.000117622 0)
(0.214383 -0.00011691 0)
(0.214046 -0.0001162 0)
(0.213709 -0.000115491 0)
(0.213371 -0.000114784 0)
(0.213034 -0.000114078 0)
(0.212696 -0.000113374 0)
(0.212358 -0.000112672 0)
(0.212019 -0.000111971 0)
(0.211681 -0.000111272 0)
(0.211342 -0.000110574 0)
(0.211003 -0.000109878 0)
(0.210664 -0.000109184 0)
(0.210324 -0.000108491 0)
(0.209985 -0.0001078 0)
(0.209645 -0.000107111 0)
(0.209305 -0.000106423 0)
(0.208965 -0.000105738 0)
(0.208625 -0.000105054 0)
(0.208284 -0.000104372 0)
(0.207943 -0.000103692 0)
(0.207603 -0.000103014 0)
(0.207262 -0.000102338 0)
(0.206921 -0.000101664 0)
(0.20658 -0.000100992 0)
(0.206239 -0.000100323 0)
(0.205897 -9.96545e-05 0)
(0.205556 -9.89893e-05 0)
(0.205214 -9.83262e-05 0)
(0.204873 -9.76651e-05 0)
(0.204531 -9.70062e-05 0)
(0.204189 -9.63499e-05 0)
(0.203848 -9.5695e-05 0)
(0.203506 -9.50439e-05 0)
(0.203164 -9.43937e-05 0)
(0.202822 -9.37473e-05 0)
(0.20248 -9.31029e-05 0)
(0.202138 -9.24612e-05 0)
(0.201797 -9.18223e-05 0)
(0.201455 -9.11863e-05 0)
(0.201113 -9.05524e-05 0)
(0.200771 -8.99228e-05 0)
(0.200429 -8.92942e-05 0)
(0.200087 -8.86705e-05 0)
(0.199745 -8.80502e-05 0)
(0.199403 -8.74335e-05 0)
(0.199061 -8.68198e-05 0)
(0.19872 -8.621e-05 0)
(0.198378 -8.56048e-05 0)
(0.198036 -8.50042e-05 0)
(0.197694 -8.4407e-05 0)
(0.197353 -8.38162e-05 0)
(0.197011 -8.32288e-05 0)
(0.196669 -8.26486e-05 0)
(0.196327 -8.20739e-05 0)
(0.195986 -8.15056e-05 0)
(0.195644 -8.09444e-05 0)
(0.195303 -8.03889e-05 0)
(0.194961 -7.98451e-05 0)
(0.194619 -7.93034e-05 0)
(0.194277 -7.87824e-05 0)
(0.193936 -7.82487e-05 0)
(0.193593 -7.77703e-05 0)
(0.193252 -7.72273e-05 0)
(0.192907 -7.68266e-05 0)
(0.192568 -7.62218e-05 0)
(0.19222 -7.59953e-05 0)
(0.191885 -7.51884e-05 0)
(0.191529 -7.53774e-05 0)
(0.191204 -7.40051e-05 0)
(0.190831 -7.5201e-05 0)
(0.190527 -7.23687e-05 0)
(0.190122 -7.59673e-05 0)
(0.189859 -6.95766e-05 0)
(0.189395 -7.86875e-05 0)
(0.189206 -6.41722e-05 0)
(0.188643 -8.4723e-05 0)
(0.188572 -5.461e-05 0)
(0.187868 -9.05799e-05 0)
(0.156812 -6.4581e-05 0)
(0.15658 -6.42562e-05 0)
(0.156347 -6.39211e-05 0)
(0.156114 -6.35638e-05 0)
(0.15588 -6.32015e-05 0)
(0.155646 -6.28424e-05 0)
(0.155412 -6.24861e-05 0)
(0.155178 -6.2131e-05 0)
(0.154943 -6.17767e-05 0)
(0.154708 -6.14229e-05 0)
(0.154473 -6.10705e-05 0)
(0.154238 -6.07184e-05 0)
(0.154002 -6.03675e-05 0)
(0.153766 -6.00175e-05 0)
(0.15353 -5.96682e-05 0)
(0.153293 -5.93195e-05 0)
(0.153056 -5.89716e-05 0)
(0.152819 -5.86246e-05 0)
(0.152582 -5.82784e-05 0)
(0.152344 -5.79326e-05 0)
(0.152107 -5.7588e-05 0)
(0.151869 -5.72433e-05 0)
(0.151631 -5.68998e-05 0)
(0.151392 -5.65569e-05 0)
(0.151154 -5.62146e-05 0)
(0.150915 -5.58731e-05 0)
(0.150676 -5.55325e-05 0)
(0.150437 -5.51921e-05 0)
(0.150197 -5.48532e-05 0)
(0.149958 -5.45142e-05 0)
(0.149718 -5.41764e-05 0)
(0.149478 -5.38391e-05 0)
(0.149238 -5.35026e-05 0)
(0.148998 -5.31668e-05 0)
(0.148757 -5.28319e-05 0)
(0.148517 -5.24973e-05 0)
(0.148276 -5.21642e-05 0)
(0.148035 -5.18312e-05 0)
(0.147794 -5.14996e-05 0)
(0.147553 -5.11685e-05 0)
(0.147312 -5.08384e-05 0)
(0.147071 -5.05092e-05 0)
(0.146829 -5.0181e-05 0)
(0.146588 -4.98534e-05 0)
(0.146346 -4.9527e-05 0)
(0.146105 -4.9201e-05 0)
(0.145863 -4.8877e-05 0)
(0.145621 -4.85528e-05 0)
(0.145379 -4.82304e-05 0)
(0.145137 -4.79088e-05 0)
(0.144895 -4.75883e-05 0)
(0.144653 -4.72687e-05 0)
(0.144411 -4.69503e-05 0)
(0.144169 -4.66326e-05 0)
(0.143926 -4.63168e-05 0)
(0.143684 -4.60011e-05 0)
(0.143442 -4.56875e-05 0)
(0.1432 -4.53745e-05 0)
(0.142957 -4.5063e-05 0)
(0.142715 -4.47527e-05 0)
(0.142473 -4.44439e-05 0)
(0.14223 -4.41359e-05 0)
(0.141988 -4.38301e-05 0)
(0.141745 -4.35246e-05 0)
(0.141503 -4.32216e-05 0)
(0.141261 -4.29201e-05 0)
(0.141018 -4.26204e-05 0)
(0.140776 -4.23219e-05 0)
(0.140534 -4.20256e-05 0)
(0.140291 -4.17314e-05 0)
(0.140049 -4.14394e-05 0)
(0.139807 -4.1149e-05 0)
(0.139564 -4.08619e-05 0)
(0.139322 -4.05763e-05 0)
(0.13908 -4.02942e-05 0)
(0.138838 -4.00153e-05 0)
(0.138595 -3.97387e-05 0)
(0.138353 -3.94672e-05 0)
(0.138111 -3.91959e-05 0)
(0.137868 -3.89351e-05 0)
(0.137626 -3.8668e-05 0)
(0.137383 -3.84233e-05 0)
(0.137141 -3.81532e-05 0)
(0.136898 -3.79417e-05 0)
(0.136656 -3.76496e-05 0)
(0.136411 -3.75046e-05 0)
(0.136171 -3.71403e-05 0)
(0.135923 -3.71471e-05 0)
(0.135687 -3.65858e-05 0)
(0.135432 -3.69463e-05 0)
(0.135204 -3.58869e-05 0)
(0.134936 -3.70705e-05 0)
(0.134724 -3.48163e-05 0)
(0.134431 -3.78719e-05 0)
(0.134252 -3.28817e-05 0)
(0.13391 -4.0032e-05 0)
(0.13379 -2.91235e-05 0)
(0.133372 -4.44343e-05 0)
(0.133342 -2.25579e-05 0)
(0.132821 -4.82285e-05 0)
(0.09317 -2.1208e-05 0)
(0.0930319 -2.11097e-05 0)
(0.0928936 -2.10028e-05 0)
(0.0927551 -2.08849e-05 0)
(0.0926164 -2.0766e-05 0)
(0.0924775 -2.06493e-05 0)
(0.0923384 -2.05338e-05 0)
(0.0921992 -2.04187e-05 0)
(0.0920597 -2.03038e-05 0)
(0.0919201 -2.0189e-05 0)
(0.0917803 -2.00748e-05 0)
(0.0916404 -1.99606e-05 0)
(0.0915003 -1.98468e-05 0)
(0.09136 -1.97333e-05 0)
(0.0912195 -1.962e-05 0)
(0.0910789 -1.95068e-05 0)
(0.0909381 -1.9394e-05 0)
(0.0907972 -1.92814e-05 0)
(0.0906561 -1.91691e-05 0)
(0.0905149 -1.90568e-05 0)
(0.0903735 -1.89449e-05 0)
(0.090232 -1.8833e-05 0)
(0.0900903 -1.87213e-05 0)
(0.0899485 -1.86099e-05 0)
(0.0898066 -1.84986e-05 0)
(0.0896646 -1.83876e-05 0)
(0.0895224 -1.82769e-05 0)
(0.0893801 -1.81661e-05 0)
(0.0892376 -1.80559e-05 0)
(0.0890951 -1.79455e-05 0)
(0.0889524 -1.78355e-05 0)
(0.0888097 -1.77257e-05 0)
(0.0886668 -1.7616e-05 0)
(0.0885238 -1.75065e-05 0)
(0.0883808 -1.73973e-05 0)
(0.0882376 -1.72882e-05 0)
(0.0880943 -1.71796e-05 0)
(0.087951 -1.70709e-05 0)
(0.0878076 -1.69626e-05 0)
(0.087664 -1.68545e-05 0)
(0.0875205 -1.67467e-05 0)
(0.0873768 -1.66391e-05 0)
(0.0872331 -1.65319e-05 0)
(0.0870893 -1.64248e-05 0)
(0.0869454 -1.63181e-05 0)
(0.0868015 -1.62115e-05 0)
(0.0866575 -1.61056e-05 0)
(0.0865135 -1.59995e-05 0)
(0.0863694 -1.5894e-05 0)
(0.0862253 -1.57887e-05 0)
(0.0860811 -1.56837e-05 0)
(0.0859369 -1.5579e-05 0)
(0.0857927 -1.54748e-05 0)
(0.0856484 -1.53707e-05 0)
(0.0855041 -1.52673e-05 0)
(0.0853598 -1.51638e-05 0)
(0.0852154 -1.5061e-05 0)
(0.085071 -1.49583e-05 0)
(0.0849266 -1.48562e-05 0)
(0.0847822 -1.47544e-05 0)
(0.0846378 -1.46531e-05 0)
(0.0844934 -1.4552e-05 0)
(0.084349 -1.44517e-05 0)
(0.0842045 -1.43513e-05 0)
(0.0840601 -1.42518e-05 0)
(0.0839156 -1.41528e-05 0)
(0.0837712 -1.40543e-05 0)
(0.0836268 -1.39562e-05 0)
(0.0834823 -1.38588e-05 0)
(0.0833379 -1.37621e-05 0)
(0.0831935 -1.36662e-05 0)
(0.0830491 -1.35707e-05 0)
(0.0829047 -1.34764e-05 0)
(0.0827603 -1.33825e-05 0)
(0.0826158 -1.32896e-05 0)
(0.0824714 -1.31982e-05 0)
(0.082327 -1.31067e-05 0)
(0.0821825 -1.30184e-05 0)
(0.0820381 -1.2928e-05 0)
(0.0818936 -1.28447e-05 0)
(0.0817492 -1.27536e-05 0)
(0.0816044 -1.26792e-05 0)
(0.0814601 -1.25817e-05 0)
(0.0813149 -1.25272e-05 0)
(0.0811709 -1.24093e-05 0)
(0.0810247 -1.23979e-05 0)
(0.0808817 -1.2225e-05 0)
(0.0807335 -1.23122e-05 0)
(0.0805928 -1.20021e-05 0)
(0.0804402 -1.23154e-05 0)
(0.0803048 -1.16799e-05 0)
(0.0801433 -1.25028e-05 0)
(0.0800192 -1.11287e-05 0)
(0.0798402 -1.30643e-05 0)
(0.0797383 -1.00894e-05 0)
(0.0795273 -1.43433e-05 0)
(0.0794646 -8.10127e-06 0)
(0.0792031 -1.67508e-05 0)
(0.0791982 -4.78307e-06 0)
(0.0788711 -1.83253e-05 0)
(0.0308804 -1.01805e-06 0)
(0.0308346 -1.01657e-06 0)
(0.0307887 -1.0116e-06 0)
(0.0307427 -1.00552e-06 0)
(0.0306967 -9.99783e-07 0)
(0.0306506 -9.94666e-07 0)
(0.0306044 -9.89435e-07 0)
(0.0305582 -9.84303e-07 0)
(0.0305119 -9.79154e-07 0)
(0.0304655 -9.73991e-07 0)
(0.0304191 -9.68872e-07 0)
(0.0303726 -9.63776e-07 0)
(0.0303261 -9.58561e-07 0)
(0.0302795 -9.53566e-07 0)
(0.0302329 -9.48392e-07 0)
(0.0301861 -9.43329e-07 0)
(0.0301394 -9.38245e-07 0)
(0.0300925 -9.33182e-07 0)
(0.0300457 -9.28113e-07 0)
(0.0299987 -9.23022e-07 0)
(0.0299517 -9.17972e-07 0)
(0.0299047 -9.12925e-07 0)
(0.0298576 -9.07757e-07 0)
(0.0298105 -9.02788e-07 0)
(0.0297633 -8.97632e-07 0)
(0.029716 -8.926e-07 0)
(0.0296688 -8.87561e-07 0)
(0.0296214 -8.82474e-07 0)
(0.0295741 -8.77441e-07 0)
(0.0295266 -8.72393e-07 0)
(0.0294792 -8.67231e-07 0)
(0.0294317 -8.62264e-07 0)
(0.0293842 -8.5711e-07 0)
(0.0293366 -8.5207e-07 0)
(0.029289 -8.47021e-07 0)
(0.0292413 -8.41925e-07 0)
(0.0291937 -8.36888e-07 0)
(0.029146 -8.31845e-07 0)
(0.0290982 -8.26699e-07 0)
(0.0290504 -8.21732e-07 0)
(0.0290026 -8.16587e-07 0)
(0.0289548 -8.11586e-07 0)
(0.028907 -8.06568e-07 0)
(0.0288591 -8.01517e-07 0)
(0.0288112 -7.96489e-07 0)
(0.0287632 -7.91441e-07 0)
(0.0287153 -7.86485e-07 0)
(0.0286673 -7.81462e-07 0)
(0.0286193 -7.76375e-07 0)
(0.0285713 -7.71472e-07 0)
(0.0285233 -7.6642e-07 0)
(0.0284753 -7.61478e-07 0)
(0.0284272 -7.5655e-07 0)
(0.0283792 -7.51568e-07 0)
(0.0283311 -7.46684e-07 0)
(0.028283 -7.41747e-07 0)
(0.0282349 -7.36777e-07 0)
(0.0281868 -7.3194e-07 0)
(0.0281387 -7.26977e-07 0)
(0.0280906 -7.22148e-07 0)
(0.0280424 -7.17326e-07 0)
(0.0279943 -7.1246e-07 0)
(0.0279462 -7.07704e-07 0)
(0.027898 -7.02866e-07 0)
(0.0278499 -6.97981e-07 0)
(0.0278018 -6.93294e-07 0)
(0.0277536 -6.88507e-07 0)
(0.0277055 -6.8381e-07 0)
(0.0276573 -6.79086e-07 0)
(0.0276092 -6.74433e-07 0)
(0.0275611 -6.69806e-07 0)
(0.0275129 -6.65188e-07 0)
(0.0274648 -6.60638e-07 0)
(0.0274166 -6.56151e-07 0)
(0.0273685 -6.51431e-07 0)
(0.0273203 -6.47285e-07 0)
(0.0272722 -6.42422e-07 0)
(0.027224 -6.38809e-07 0)
(0.0271759 -6.33445e-07 0)
(0.0271277 -6.31028e-07 0)
(0.0270795 -6.24123e-07 0)
(0.0270312 -6.24707e-07 0)
(0.0269831 -6.13383e-07 0)
(0.0269347 -6.21239e-07 0)
(0.0268867 -5.99531e-07 0)
(0.0268379 -6.24187e-07 0)
(0.0267902 -5.77596e-07 0)
(0.0267406 -6.41025e-07 0)
(0.0266939 -5.36855e-07 0)
(0.0266426 -6.87551e-07 0)
(0.0265979 -4.55181e-07 0)
(0.0265433 -7.95516e-07 0)
(0.0265028 -2.89889e-07 0)
(0.0264416 -1.02359e-06 0)
(0.0264094 3.31499e-08 0)
(0.0263363 -1.46238e-06 0)
(0.0263186 6.15874e-07 0)
(0.0262268 -2.19651e-06 0)
(0.0262303 1.50897e-06 0)
(0.0261136 -2.14668e-06 0)
)
;
boundaryField
{
velocityInlet
{
type fixedValue;
value uniform (1 0 0);
}
pressureOutlet
{
type inletOutlet;
inletValue uniform (0 0 0);
value nonuniform List<vector>
200
(
(0.0354071 -0.000215257 0)
(0.102144 -0.00131468 0)
(0.158986 -0.00267656 0)
(0.207164 -0.00404495 0)
(0.25019 -0.00527731 0)
(0.291165 -0.00635769 0)
(0.331983 -0.00733163 0)
(0.373395 -0.00828325 0)
(0.415292 -0.00933896 0)
(0.456992 -0.0106649 0)
(0.497622 -0.0124328 0)
(0.536644 -0.0147418 0)
(0.574359 -0.0175293 0)
(0.611926 -0.0205479 0)
(0.650718 -0.0234643 0)
(0.691398 -0.0260233 0)
(0.733445 -0.0281377 0)
(0.775451 -0.0298356 0)
(0.815754 -0.0311496 0)
(0.852891 -0.0320627 0)
(0.885742 -0.0325294 0)
(0.913632 -0.032525 0)
(0.936482 -0.0320728 0)
(0.954827 -0.0312293 0)
(0.969545 -0.0300525 0)
(0.98144 -0.0285924 0)
(0.990979 -0.0268964 0)
(0.998342 -0.0250162 0)
(1.00363 -0.0230079 0)
(1.00704 -0.0209287 0)
(1.00897 -0.0188292 0)
(1.00988 -0.0167425 0)
(1.0102 -0.0146829 0)
(1.01027 -0.0126551 0)
(1.01029 -0.0106603 0)
(1.01038 -0.00870275 0)
(1.01053 -0.00680121 0)
(1.01072 -0.00498338 0)
(1.01091 -0.00327214 0)
(1.01106 -0.00168156 0)
(1.0112 -0.000209382 0)
(1.01134 0.00115663 0)
(1.01149 0.00242369 0)
(1.01168 0.00359651 0)
(1.0119 0.00467801 0)
(1.01213 0.00566677 0)
(1.01238 0.00656316 0)
(1.01263 0.00736828 0)
(1.01288 0.00808419 0)
(1.01314 0.00871346 0)
(1.0134 0.00925899 0)
(1.01365 0.00972393 0)
(1.0139 0.0101117 0)
(1.01415 0.010426 0)
(1.01439 0.0106707 0)
(1.01463 0.0108499 0)
(1.01486 0.0109682 0)
(1.01508 0.0110299 0)
(1.01529 0.0110399 0)
(1.0155 0.0110028 0)
(1.01569 0.0109237 0)
(1.01587 0.0108072 0)
(1.01604 0.0106583 0)
(1.0162 0.0104818 0)
(1.01635 0.0102822 0)
(1.01649 0.0100642 0)
(1.01662 0.00983191 0)
(1.01674 0.00958952 0)
(1.01685 0.00934082 0)
(1.01695 0.00908932 0)
(1.01704 0.00883823 0)
(1.01713 0.00859042 0)
(1.0172 0.0083484 0)
(1.01727 0.00811433 0)
(1.01734 0.00788999 0)
(1.01739 0.00767679 0)
(1.01745 0.00747579 0)
(1.01749 0.00728767 0)
(1.01754 0.00711278 0)
(1.01758 0.00695115 0)
(1.01762 0.00680249 0)
(1.01766 0.00666624 0)
(1.0177 0.00654159 0)
(1.01773 0.00642747 0)
(1.01777 0.00632264 0)
(1.01781 0.00622569 0)
(1.01785 0.00613506 0)
(1.01789 0.0060491 0)
(1.01793 0.00596608 0)
(1.01798 0.00588422 0)
(1.01803 0.00580172 0)
(1.01808 0.0057168 0)
(1.01814 0.00562771 0)
(1.0182 0.00553274 0)
(1.01827 0.00543028 0)
(1.01834 0.00531879 0)
(1.01842 0.00519684 0)
(1.0185 0.00506311 0)
(1.01859 0.00491642 0)
(1.01869 0.00475569 0)
(1.0188 0.00458265 0)
(1.01891 0.00440274 0)
(1.01903 0.00421964 0)
(1.01915 0.00403434 0)
(1.01927 0.00384776 0)
(1.0194 0.0036607 0)
(1.01953 0.0034739 0)
(1.01966 0.003288 0)
(1.0198 0.00310354 0)
(1.01994 0.002921 0)
(1.02009 0.00274076 0)
(1.02024 0.00256316 0)
(1.02039 0.00238848 0)
(1.02055 0.00221695 0)
(1.02071 0.00204875 0)
(1.02088 0.00188401 0)
(1.02105 0.00172284 0)
(1.02123 0.00156532 0)
(1.02141 0.0014115 0)
(1.02159 0.00126141 0)
(1.02179 0.00111507 0)
(1.02198 0.000972461 0)
(1.02219 0.000833573 0)
(1.02239 0.000698376 0)
(1.02261 0.000566831 0)
(1.02283 0.000438893 0)
(1.02306 0.000314507 0)
(1.02329 0.000193616 0)
(1.02353 7.61564e-05 0)
(1.02378 -3.79374e-05 0)
(1.02403 -0.000148735 0)
(1.0243 -0.000256306 0)
(1.02457 -0.000360725 0)
(1.02485 -0.000462065 0)
(1.02513 -0.0005604 0)
(1.02543 -0.000655806 0)
(1.02574 -0.000748355 0)
(1.02606 -0.000838124 0)
(1.02638 -0.000925186 0)
(1.02672 -0.00100961 0)
(1.02708 -0.00109148 0)
(1.02744 -0.00117086 0)
(1.02782 -0.00124782 0)
(1.02821 -0.00132244 0)
(1.02862 -0.00139477 0)
(1.02904 -0.00146489 0)
(1.02949 -0.00153287 0)
(1.02995 -0.00159877 0)
(1.03043 -0.00166266 0)
(1.03094 -0.00172459 0)
(1.03146 -0.00178465 0)
(1.03202 -0.00184287 0)
(1.0326 -0.00189934 0)
(1.03321 -0.00195411 0)
(1.03385 -0.00200723 0)
(1.03453 -0.00205878 0)
(1.03525 -0.00210882 0)
(1.03601 -0.0021574 0)
(1.03682 -0.00220458 0)
(1.03768 -0.00225044 0)
(1.0386 -0.00229502 0)
(1.03957 -0.0023384 0)
(1.04062 -0.00238063 0)
(1.04173 -0.00242177 0)
(1.04293 -0.00246187 0)
(1.0442 -0.00250096 0)
(1.04556 -0.00253904 0)
(1.047 -0.00257601 0)
(1.0485 -0.00261166 0)
(1.05002 -0.00264552 0)
(1.05149 -0.00267678 0)
(1.05275 -0.00270416 0)
(1.05361 -0.00272573 0)
(1.05373 -0.00273896 0)
(1.05267 -0.00274071 0)
(1.0499 -0.0027275 0)
(1.04475 -0.00269582 0)
(1.03655 -0.00264261 0)
(1.02459 -0.00256575 0)
(1.00825 -0.0024644 0)
(0.987052 -0.00233927 0)
(0.960692 -0.00219262 0)
(0.929086 -0.00202808 0)
(0.892363 -0.00185026 0)
(0.850852 -0.00166433 0)
(0.805041 -0.00147555 0)
(0.755527 -0.00128883 0)
(0.702971 -0.00110848 0)
(0.648045 -0.000937974 0)
(0.591401 -0.000779929 0)
(0.533639 -0.000636097 0)
(0.475292 -0.000507469 0)
(0.416816 -0.000394404 0)
(0.358581 -0.000296769 0)
(0.300878 -0.000214079 0)
(0.243923 -0.000145621 0)
(0.187868 -9.05799e-05 0)
(0.132821 -4.82285e-05 0)
(0.0788711 -1.83253e-05 0)
(0.0261136 -2.14668e-06 0)
)
;
}
fixedWalls
{
type noSlip;
}
bottomWall
{
type noSlip;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //
| |
98c884bb138b2a21dea1f597063bf521eadd0ff5 | 56cedf8319dc5a1bffba161ee790f85f8c65a1e3 | /Santushti/2dArray/Hackerearth_Questions/Priority_Interview.cpp | 6bbc850c7b635e2227a46a68b9f4a7cee21c58d8 | [] | no_license | Girl-Code-It/DS-ALGO-in-Cpp-Submissions | 3da0169d83be97ac5913d96786cc83c98735f799 | e406791e69dd6297304d6a8260409bbbb3701c02 | refs/heads/master | 2023-02-25T22:49:58.445657 | 2021-01-28T08:38:11 | 2021-01-28T08:38:11 | 265,025,277 | 2 | 28 | null | 2021-02-03T09:11:57 | 2020-05-18T18:23:48 | C++ | UTF-8 | C++ | false | false | 816 | cpp | Priority_Interview.cpp | #include<bits/stdc++.h>
typedef long long ll;
using namespace std;
int main()
{
ll n;
cin>>n;
ll a[n][2];
for(int i=0;i<n;i++)
{
for(int j=0;j<2;j++)
{
cin>>a[i][j];
}
}
long int boy[n],girl[n];
int k=0,y=0;
for(int i=0;i<n;i++)
{
if(a[i][0]==0)
{
girl[k]=a[i][1];
k++;
}
else
{ boy[y]=a[i][1];
y++;
}
}
sort(girl,girl+k,greater<int>());
sort(boy,boy+y,greater<int>());
for(int i=0;i<n;i++)
{
if(i<k)
{
cout<<girl[i]<<" ";
}
else
cout<<boy[i-k]<<" ";
}
return 0;
}
|
643d12520456a79b9593fdbd234e3ee2b844507c | b4d693ac515f80049b6de64733165e3ba22ecc91 | /src/implicit/implicit_surface.cpp | 7bb7b572a6133ee8f79e2ea3527f778929f4ceb4 | [
"MIT"
] | permissive | knut0815/repulsive-surfaces | 2d0e997b24080850c6272e72aca1e85b70f80d5f | 74d6a16e6ca55c8296fa5a49757c2318bea62a84 | refs/heads/master | 2023-07-10T18:17:51.661383 | 2021-09-01T18:25:44 | 2021-09-01T18:25:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 106 | cpp | implicit_surface.cpp | #include "implicit/implicit_surface.h"
namespace rsurfaces
{
ImplicitSurface::~ImplicitSurface() {}
} |
90a00662c7256a9e021547c792f4d4ee5aada355 | 11e74997677dc0fbf08944e1ba99da90f55ca01b | /ros_wrapper/src/orcvio_mapping/src/orcvio/obj/ObjectFeature.cpp | 328ee230bd9c035e526ddea94cedbb6d08b2cb14 | [
"MIT"
] | permissive | shanmo/OrcVIO-Stereo-Mapping | de0053b54a63b7db2ed4f58f9c9019d3b0d41643 | e7716dc21cdc00c67e40dee85860a25d57c979ba | refs/heads/main | 2023-08-22T21:20:08.661266 | 2021-10-20T16:21:40 | 2021-10-20T16:21:40 | 414,379,723 | 12 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,191 | cpp | ObjectFeature.cpp | #include <math.h>
#include <iostream>
#include <fstream>
#include <ctime>
#include <unistd.h>
#ifndef NDEBUG
#define NDEBUG false
#endif
constexpr bool DEBUG = (! NDEBUG);
#include "orcvio/obj/ObjectFeature.h"
namespace orcvio
{
void ObjectFeature::track_sem_kp(const int & part_id, const float & x, const float & y, const double & timestamp)
{
if(kp_trackers.find(part_id) == kp_trackers.end()) {
if (x == 0 && y == 0)
{
// this should not happen, we think this kp is already initialized
// but in fact it is not
// this case may happen when an object is re-detected
// ignore this for now
return;
}
else
{
/* kp is NOT being tracked */
kp_trackers[part_id] = new KalmanFilter;
}
} else {
/* kp is being tracked */
// pass
}
MeasurementPackage meas_package;
meas_package.timestamp_ = timestamp;
meas_package.raw_measurements_ = Eigen::VectorXd(2);
meas_package.raw_measurements_ << static_cast<double>(x), static_cast<double>(y);
kp_trackers[part_id]->ProcessMeasurement(meas_package);
}
Eigen::Vector2f ObjectFeature::obtain_kp_coord(const int & part_id)
{
Eigen::Vector2f pos;
// make sure the part_id is currently being tracked
if(kp_trackers.find(part_id) == kp_trackers.end())
{
pos << 0, 0;
return pos;
}
pos(0) = static_cast<float>(kp_trackers[part_id]->x_(0));
pos(1) = static_cast<float>(kp_trackers[part_id]->x_(1));
// keep track of kp histroy for plotting
kp_trackers[part_id]->kp_history.push_back(pos);
// for debugging
// std::cout << "kps obtained " << pos << std::endl;
return pos;
}
bool ObjectFeature::zs_to_uvnorm(const int & part_id, std::unordered_map<size_t, std::vector<Eigen::VectorXd>>& uvs_norm, std::vector<int>& valid_ids)
{
// we only keep object observations in one camera
int cam_id = 0;
Eigen::Vector2d uv_n;
int valid_num = 0;
for (int i = 0; i < static_cast<int>(zs.size()); ++i)
{
Eigen::MatrixX2d matrix = zs.at(i);
// for debugging
// std::cout << "matrix " << matrix << std::endl;
// extract the observations for part id
uv_n = matrix.row(part_id);
// check whether the observations are invalid
if (! uv_n.allFinite())
continue;
valid_ids.push_back(i);
// insert valid observations in uvs_norm
uvs_norm[cam_id].emplace_back(uv_n);
// std::cout << "uv_n " << uv_n << std::endl;
++valid_num;
}
if (valid_num > min_triangulation_observations_num)
return true;
else
{
// for debugging
// std::cout << "valid_num " << valid_num << std::endl;
// std::cout << "min_triangulation_observations_num " << min_triangulation_observations_num << std::endl;
return false;
}
}
void ObjectFeature::get_valid_timestamps(const std::vector<int>& valid_ids, std::unordered_map<size_t, std::vector<double>>& valid_timestamps)
{
// // for debugging
// for (const auto & id : valid_ids)
// std::cout << "id " << id << std::endl;
// std::exit(0);
for (const auto& id : valid_ids)
{
// insert valid timestamps
valid_timestamps[0].emplace_back(timestamps.at(0).at(id));
}
}
void ObjectFeature::clean_old_measurements(const std::vector<double>& valid_times)
{
// for debugging
if (DEBUG) {
std::ofstream outfile;
outfile.open("/tmp/clean_old_mesaurements_valid_times_" + std::to_string(getpid()) + ".txt", std::ios_base::app); // append instead of overwrite
bool first_item = true;
for (const auto & time : valid_times) {
outfile << (first_item ? "" : ", ") << time;
first_item = false;
}
outfile << "\n";
}
// Loop through each of the cameras we have
for(auto const &pair : timestamps) {
// Assert that we have all the parts of a measurement
assert(timestamps.at(pair.first).size() == zs.size());
assert(timestamps.at(pair.first).size() == zb.size());
// Our iterators
auto it1 = timestamps.at(pair.first).begin();
auto it2 = zs.begin();
auto it3 = zb.begin();
// Loop through measurement times, remove ones that are not in our timestamps
while (it1 != timestamps.at(pair.first).end()) {
if (std::find(valid_times.begin(),valid_times.end(), *it1) == valid_times.end()) {
it1 = timestamps.at(pair.first).erase(it1);
it2 = zs.erase(it2);
it3 = zb.erase(it3);
} else {
++it1;
++it2;
++it3;
}
}
}
}
void ObjectFeature::clean_old_measurements_lite(const std::vector<double>& valid_times)
{
// Loop through each of the cameras we have
for(auto const &pair : timestamps) {
// Assert that we have all the parts of a measurement
assert(timestamps.at(pair.first).size() == zb.size());
// Our iterators
auto it1 = timestamps.at(pair.first).begin();
auto it3 = zb.begin();
// Loop through measurement times, remove ones that are not in our timestamps
while (it1 != timestamps.at(pair.first).end()) {
if (std::find(valid_times.begin(),valid_times.end(), *it1) == valid_times.end()) {
it1 = timestamps.at(pair.first).erase(it1);
it3 = zb.erase(it3);
} else {
++it1;
++it3;
}
}
}
}
void ObjectFeature::draw_kp_track(cv::Mat& img)
{
// int radius = std::max(2, 2 * img.rows / 40);
int radius = std::max(2, 2 * img.rows / 40) / 2;
// iterate the trackers
for (const auto & tracker : kp_trackers)
{
cv::Scalar kp_col = get_kp_track_color(tracker.first);
// Draw tracked features.
cv::Point2f prev_pt, curr_pt;
prev_pt.x = 0;
prev_pt.y = 0;
for (const auto& kp : tracker.second->kp_history) {
curr_pt.x = kp(0);
curr_pt.y = kp(1);
if (prev_pt.x == 0 && prev_pt.y == 0)
{
// nothing to plot
}
else
{
// plot the old kp
// circle(img, prev_pt, 2, kp_col, 5);
cv::line(img, prev_pt, curr_pt, kp_col, /*lineThickness=*/3);
}
prev_pt = curr_pt;
}
// plot the most recent kp
circle(img, curr_pt, radius, kp_col, /*lineThickness=*/-.3);
}
}
cv::Scalar ObjectFeature::get_kp_track_color(const int& part_id)
{
if (part_id < 12)
{
auto col = track_colors.row(part_id);
return cv::Scalar(col(0,0), col(0,1), col(0,2));
}
else
{
return cv::Scalar(255, 0, 0);
}
}
ObjectFeature::~ObjectFeature()
{
// for (auto tracker : kp_trackers)
// delete tracker.second;
}
} // end namespace orcvio
|
db9b907b11c61ce0d62972386e5e6f24aa2002f0 | afbb07f3df283175c93e6bd25a13bf7f73bb0c85 | /Classes/LineEffect.cpp | 57aa4a35dd87a86be99021898ef0df411b74fd76 | [] | no_license | Nickchooshin/StardustCrusaders | 6aa889722358934a3ee2c4c9cc2c10e6e3efe478 | 2ed4f67cf23c8dc9186698b3325b585c85d5eabf | refs/heads/master | 2021-05-04T10:17:21.757348 | 2016-10-29T13:56:10 | 2016-10-29T13:56:10 | 47,019,836 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,899 | cpp | LineEffect.cpp | #include "LineEffect.h"
USING_NS_CC;
/*
LineEffect* LineEffect::create()
{
LineEffect *lineEffect = new (std::nothrow) LineEffect();
if (lineEffect && lineEffect->initWithFile("Images/Title/Line.png"))
{
lineEffect->autorelease();
return lineEffect;
}
CC_SAFE_DELETE(lineEffect);
return nullptr;
}
*/
bool LineEffect::init()
{
m_direction = Direction::NONE;
m_speed = 0.0f;
m_sizeHalf = 0.0f;
this->initWithFile("Images/Title/Line.png");
return true;
}
void LineEffect::InitLineEffect()
{
Size visibleSize = Director::getInstance()->getVisibleSize();
m_direction = (Direction)(rand() % 4 + 1);
m_speed = ((rand() % 5 + 1) * 4.0f + 8.0f) * 30.0f;
setScaleX((rand() % 3) * 0.5f + 1.0f);
m_sizeHalf = (getContentSize().width / 2.0f) * getScaleX();
switch (m_direction)
{
case Direction::UP:
setPosition(Vec2(rand() % (int)visibleSize.width, -m_sizeHalf));
setRotation(90.0f);
break;
case Direction::DOWN:
setPosition(Vec2(rand() % (int)visibleSize.width, visibleSize.height + m_sizeHalf));
m_speed = -m_speed;
setRotation(90.0f);
break;
case Direction::LEFT:
setPosition(Vec2(visibleSize.width + m_sizeHalf, rand() % (int)visibleSize.height));
m_speed = -m_speed;
setRotation(0.0f);
break;
case Direction::RIGHT:
setPosition(Vec2(-m_sizeHalf, rand() % (int)visibleSize.height));
setRotation(0.0f);
break;
}
}
void LineEffect::Update(float dt)
{
Size visibleSize = Director::getInstance()->getVisibleSize();
float speed = m_speed * dt * 2.0f;
float x = getPositionX();
float y = getPositionY();
switch (m_direction)
{
case Direction::UP:
case Direction::DOWN:
y += speed;
break;
case Direction::LEFT:
case Direction::RIGHT:
x += speed;
break;
}
setPosition(x, y);
if ((x < -m_sizeHalf) || (x > visibleSize.width + m_sizeHalf) || (y < -m_sizeHalf) || (y > visibleSize.height + m_sizeHalf))
InitLineEffect();
} |
c1f7f302fe56303a3da9525cea4e377395fa78a3 | f49d206d68f2430ae0a93429d9f1f4e9da31f2d2 | /test/SerialFormatterTest.cpp | fe6b8c061a7720e21d155b0a6bad5e22e2016af8 | [
"MIT"
] | permissive | fmidev/smartmet-library-spine | f6b1198d63c5a457bfaea5516fce4d4bc7e2de42 | e9ba41ece77bffbdc499a539612c0a31662483ad | refs/heads/master | 2023-08-08T21:31:31.233944 | 2023-08-08T12:17:25 | 2023-08-08T12:17:25 | 75,052,857 | 1 | 1 | MIT | 2023-08-31T10:05:24 | 2016-11-29T06:59:20 | C++ | UTF-8 | C++ | false | false | 5,533 | cpp | SerialFormatterTest.cpp | // ======================================================================
/*!
* \file
* \brief Regression tests for class SerialFormatter
*/
// ======================================================================
#include "HTTP.h"
#include "SerialFormatter.h"
#include "Table.h"
#include "TableFormatterOptions.h"
#include <regression/tframe.h>
#include <cmath>
#include <sstream>
template <typename T>
std::string tostr(const T& theValue)
{
std::ostringstream out;
out << theValue;
return out.str();
}
SmartMet::Spine::TableFormatterOptions config;
//! Protection against conflicts with global functions
namespace SerialFormatterTest
{
// ----------------------------------------------------------------------
void noattributes()
{
SmartMet::Spine::Table tab;
SmartMet::Spine::TableFormatter::Names names;
names.push_back("col0");
names.push_back("col1");
names.push_back("col2");
names.push_back("col3");
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
tab.set(i, j, tostr(i) + tostr(j));
const char* res =
"a:4:{i:0;a:4:{s:4:\"col0\";s:2:\"00\";s:4:\"col1\";s:2:\"10\";s:4:\"col2\";s:2:\"20\";s:4:"
"\"col3\";s:2:\"30\";}i:1;a:4:{s:4:\"col0\";s:2:\"01\";s:4:\"col1\";s:2:\"11\";s:4:\"col2\";"
"s:2:\"21\";s:4:\"col3\";s:2:\"31\";}i:2;a:4:{s:4:\"col0\";s:2:\"02\";s:4:\"col1\";s:2:"
"\"12\";s:4:\"col2\";s:2:\"22\";s:4:\"col3\";s:2:\"32\";}i:3;a:4:{s:4:\"col0\";s:2:\"03\";s:"
"4:\"col1\";s:2:\"13\";s:4:\"col2\";s:2:\"23\";s:4:\"col3\";s:2:\"33\";}}";
SmartMet::Spine::HTTP::Request req;
SmartMet::Spine::SerialFormatter fmt;
auto out = fmt.format(tab, names, req, config);
if (out != res)
TEST_FAILED("Incorrect result:\n" + out + "\nexpected:\n" + res);
TEST_PASSED();
}
// ----------------------------------------------------------------------
void oneattribute()
{
SmartMet::Spine::Table tab;
SmartMet::Spine::TableFormatter::Names names;
names.push_back("col0");
names.push_back("col1");
names.push_back("col2");
names.push_back("col3");
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
tab.set(i, j, tostr(i) + tostr(j));
tab.set(2, 0, "Helsinki");
tab.set(2, 1, "Tampere");
tab.set(2, 2, "Helsinki");
tab.set(2, 3, "Tampere");
const char* res =
"a:2:{s:8:\"Helsinki\";a:2:{i:0;a:3:{s:4:\"col0\";s:2:\"00\";s:4:\"col1\";s:2:\"10\";s:4:"
"\"col3\";s:2:\"30\";}i:1;a:3:{s:4:\"col0\";s:2:\"02\";s:4:\"col1\";s:2:\"12\";s:4:\"col3\";"
"s:2:\"32\";}}s:7:\"Tampere\";a:2:{i:0;a:3:{s:4:\"col0\";s:2:\"01\";s:4:\"col1\";s:2:\"11\";"
"s:4:\"col3\";s:2:\"31\";}i:1;a:3:{s:4:\"col0\";s:2:\"03\";s:4:\"col1\";s:2:\"13\";s:4:"
"\"col3\";s:2:\"33\";}}}";
SmartMet::Spine::HTTP::Request req;
req.setParameter("attributes", "col2");
SmartMet::Spine::SerialFormatter fmt;
auto out = fmt.format(tab, names, req, config);
if (out != res)
TEST_FAILED("Incorrect result:\n" + out + "\nexpected:\n" + res);
TEST_PASSED();
}
// ----------------------------------------------------------------------
void twoattributes()
{
SmartMet::Spine::Table tab;
SmartMet::Spine::TableFormatter::Names names;
names.push_back("col0");
names.push_back("col1");
names.push_back("col2");
names.push_back("col3");
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
tab.set(i, j, tostr(i) + tostr(j));
tab.set(2, 0, "Helsinki");
tab.set(2, 1, "Tampere");
tab.set(2, 2, "Helsinki");
tab.set(2, 3, "Tampere");
tab.set(3, 0, "aamu");
tab.set(3, 1, "aamu");
tab.set(3, 2, "ilta");
tab.set(3, 3, "ilta");
const char* res =
"a:2:{s:8:\"Helsinki\";a:2:{s:4:\"aamu\";a:2:{s:4:\"col0\";s:2:\"00\";s:4:\"col1\";s:2:"
"\"10\";}s:4:\"ilta\";a:2:{s:4:\"col0\";s:2:\"02\";s:4:\"col1\";s:2:\"12\";}}s:7:\"Tampere\";"
"a:2:{s:4:\"aamu\";a:2:{s:4:\"col0\";s:2:\"01\";s:4:\"col1\";s:2:\"11\";}s:4:\"ilta\";a:2:{s:"
"4:\"col0\";s:2:\"03\";s:4:\"col1\";s:2:\"13\";}}}";
SmartMet::Spine::HTTP::Request req;
req.setParameter("attributes", "col2,col3");
SmartMet::Spine::SerialFormatter fmt;
auto out = fmt.format(tab, names, req, config);
if (out != res)
TEST_FAILED("Incorrect result:\n" + out + "\nexpected:\n" + res);
TEST_PASSED();
}
// ----------------------------------------------------------------------
/*!
* \brief Test formatting an empty table
*/
// ----------------------------------------------------------------------
void empty()
{
SmartMet::Spine::Table tab;
SmartMet::Spine::TableFormatter::Names names;
SmartMet::Spine::HTTP::Request req;
SmartMet::Spine::SerialFormatter fmt;
auto out = fmt.format(tab, names, req, config);
if (out != "a:0:{}")
TEST_FAILED("Incorrect result:\n" + out);
TEST_PASSED();
}
// ----------------------------------------------------------------------
/*!
* The actual test suite
*/
// ----------------------------------------------------------------------
class tests : public tframe::tests
{
virtual const char* error_message_prefix() const { return "\n\t"; }
void test(void)
{
TEST(noattributes);
TEST(oneattribute);
TEST(twoattributes);
TEST(empty);
// TEST(missingtext);
}
};
} // namespace SerialFormatterTest
//! The main program
int main(void)
{
using namespace std;
cout << endl << "SerialFormatter tester" << endl << "======================" << endl;
SerialFormatterTest::tests t;
return t.run();
}
// ======================================================================
|
62b6f67268f188baedb4748e6cb8931f3ccb72be | 20b49a6ef1fa417d67abef2d29a598c9e41c478e | /usaco/cells.cpp | a5cbda37562b6fa10ffe2c57ec934f3b7a3cab21 | [] | no_license | switchpiggy/Competitive_Programming | 956dac4a71fdf65de2959dd142a2032e2f0710e1 | beaaae4ece70889b0af1494d68c630a6e053558a | refs/heads/master | 2023-04-15T19:13:12.348433 | 2021-04-04T06:12:29 | 2021-04-04T06:12:29 | 290,905,106 | 1 | 3 | null | 2020-10-05T20:16:53 | 2020-08-27T23:38:48 | C++ | UTF-8 | C++ | false | false | 713 | cpp | cells.cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
ll n;
queue<pair<char, ll>> q;
int main() {
scanf("%lld", &n);
q.push(make_pair('B', 0));
while(q.front().second < n) {
pair<char, ll> f = q.front();
if(f.first == 'B') {
q.push(make_pair('B', f.second + 1));
q.push(make_pair('R', f.second + 1));
} else {
q.push(make_pair('R', f.second + 1));
q.push(make_pair('R', f.second + 1));
q.push(make_pair('B', f.second + 1));
}
q.pop();
}
while(!q.empty()) {
printf("%c", q.front().first);
q.pop();
}
printf("\n");
return 0;
} |
cb29bac22bdedd25ea5214b8be1573965162a791 | d23fe63561c671cbd36e810013e843e538e08042 | /Home_ThingSpeak.ino | 5bb65962ad4acb4451b512b3132ea834f7031ec5 | [] | no_license | shashitejag2k2/python | de4ff7d7422aa564164ec0deb0992b161955988a | fbfe737e2e6f411feaa4d8f7f49baafda722a7da | refs/heads/main | 2023-05-12T12:19:33.410813 | 2021-06-06T10:38:54 | 2021-06-06T10:38:54 | 365,824,566 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,511 | ino | Home_ThingSpeak.ino | #include <ThingSpeak.h>
#include <ESP8266WiFi.h>
int pin1=D1;
int pin2=D2;
int pin3=D3;
int pin4=D4;
WiFiClient client;
unsigned long counterChannelNumber = 1408554;
const char * myCounterReadAPIKey = "PBNH72DT7S8JICMJ";
const int FieldNumber1 = 1;
const int FieldNumber2 = 2;
const int FieldNumber3 = 3;
const int FieldNumber4 = 4;
void setup()
{
pinMode(D1,OUTPUT);
pinMode(D2,OUTPUT);
pinMode(D3,OUTPUT);
pinMode(D4,OUTPUT);
Serial.begin(115200);
Serial.println();
WiFi.begin("Wifi Name", "Wifi password");
Serial.print("Connecting");
while (WiFi.status() != WL_CONNECTED)
{
delay(500);ss
Serial.print(".");
Serial.println();
Serial.print("Connected, IP address: ");
}
Serial.println(WiFi.localIP());
ThingSpeak.begin(client);
}
void loop()
{
int a = ThingSpeak.readLongField(counterChannelNumber, FieldNumber1, myCounterReadAPIKey);
int b = ThingSpeak.readLongField(counterChannelNumber, FieldNumber2, myCounterReadAPIKey);
int c = ThingSpeak.readLongField(counterChannelNumber, FieldNumber3, myCounterReadAPIKey);
int d = ThingSpeak.readLongField(counterChannelNumber, FieldNumber4, myCounterReadAPIKey);
Serial.println(a);
Serial.println(b);
Serial.println(c);
Serial.println(d);
digitalWrite(D1,a);
digitalWrite(D2,b);
digitalWrite(D3,c);
digitalWrite(D4,d);
}
|
b93a2eadb7c69a33438c2026b4842aa45a1c730f | 93422aeb6cd8f5f88cba56889cf2bbaba14713be | /synocontentsearchutils/lib/connection/query_close_cwrap.cpp | cfe3158323b7dbaa7a95a454d8bfc6b32dc9bd09 | [] | no_license | slowfranklin/synoutils | a0c2b402058f0d0929d5780273a3d2e29d4f3db0 | 53fd14d392678c7d1855838d918098f0d5aac816 | refs/heads/master | 2020-05-02T22:44:56.554673 | 2019-03-28T17:57:36 | 2019-03-28T17:57:36 | 178,260,760 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 367 | cpp | query_close_cwrap.cpp | //Copyright (c) 2000-2015 Synology Inc. All rights reserved.
#include <stdlib.h>
#include <sys/socket.h>
#include <synocontentsearchutils/connection_cwrap.h>
#include <synodaemon/io_utils.h>
void SYNOQueryConnectionClose(SYNOQueryConnection *connection)
{
if (connection) {
if (0 <= connection->sockfd){
close(connection->sockfd);
}
free(connection);
}
}
|
8abed18af9eb7cf902fbea21b2ca4a78c5454c2c | 9512ca159b0f9e36a70462268ce268024b1d2e8d | /22_05_2015/Кватернионы/Кватернионы.cpp | 2b8bd19858c2fb59a270620195a85666c34f00b2 | [] | no_license | ANkoR911/Sem_Two_Task_one | 9ffe5ad07263dff1b06d4df6ed282a6b171a637c | 5565b595586bff29036f52c0d83a635bd77d0dc8 | refs/heads/master | 2021-01-22T23:15:39.127692 | 2015-06-02T16:07:17 | 2015-06-02T16:07:17 | 34,897,515 | 0 | 1 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 5,943 | cpp | Кватернионы.cpp | #include <iostream>
#include <math.h>
#include <fstream>
using namespace std;
class Quaternion
{
private:
double Im;
double Re_i;
double Re_j;
double Re_k;
public:
Quaternion() : Im(0), Re_i(0), Re_j(0), Re_k(0)
{}
Quaternion(const double a, const double b, const double c, const double d) : Im(a), Re_i(b), Re_j(c), Re_k(d)
{}
void printQ() const
{
cout << Im << " " << Re_i << " " << Re_j << " " << Re_k << endl;
}
Quaternion operator = (const Quaternion &a)
{
Im = a.Im;
Re_i = a.Re_i;
Re_j = a.Re_j;
Re_k = a.Re_k;
return *this;
}
Quaternion operator + (const Quaternion &a) const
{
Quaternion Rez;
Rez.Im = Im + a.Im;
Rez.Re_i = Re_i + a.Re_i;
Rez.Re_j = Re_j + a.Re_j;
Rez.Re_k = Re_k + a.Re_k;
return Rez;
}
Quaternion operator - (const Quaternion &a) const
{
Quaternion Rez;
Rez.Im = Im - a.Im;
Rez.Re_i = Re_i - a.Re_i;
Rez.Re_j = Re_j - a.Re_j;
Rez.Re_k = Re_k - a.Re_k;
return Rez;
}
Quaternion operator += (const Quaternion &a)
{
Im += a.Im;
Re_i += a.Re_i;
Re_j += a.Re_j;
Re_k += a.Re_k;
return *this;
}
Quaternion operator -= (const Quaternion &a)
{
Im -= a.Im;
Re_i -= a.Re_i;
Re_j -= a.Re_j;
Re_k -= a.Re_k;
return *this;
}
Quaternion operator * (const Quaternion &a) const
{
Quaternion Rez;
Rez.Im = (Im * a.Im) - (Re_i * a.Re_i) - (Re_j * a.Re_j) - (Re_k * a.Re_k);
Rez.Re_i = (Im * a.Re_i) + (Re_i * a.Im) + (Re_j * a.Re_k) - (Re_k * a.Re_j);
Rez.Re_j = (Im * a.Re_j) - (Re_i * a.Re_k) + (Re_j * a.Im) + (Re_k * a.Re_i);
Rez.Re_k = (Im * a.Re_k) + (Re_i * a.Re_j) - (Re_j * a.Re_i) + (Re_k * a.Im);
return Rez;
}
Quaternion operator *= (const Quaternion &a)
{
Quaternion Rez;
Rez.Im = (Im * a.Im) - (Re_i * a.Re_i) - (Re_j * a.Re_j) - (Re_k * a.Re_k);
Rez.Re_i = (Im * a.Re_i) + (Re_i * a.Im) + (Re_j * a.Re_k) - (Re_k * a.Re_j);
Rez.Re_j = (Im * a.Re_j) - (Re_i * a.Re_k) + (Re_j * a.Im) + (Re_k * a.Re_i);
Rez.Re_k = (Im * a.Re_k) + (Re_i * a.Re_j) - (Re_j * a.Re_i) + (Re_k * a.Im);
*this = Rez;
return *this;
}
Quaternion operator / (const double n) const
{
Quaternion Rez;
Rez.Im = Im / n;
Rez.Re_i = Re_i / n;
Rez.Re_j = Re_j / n;
Rez.Re_k = Re_k / n;
return Rez;
}
Quaternion operator /= (const double n)
{
Im /= n;
Re_i /= n;
Re_j /= n;
Re_k /= n;
return *this;
}
Quaternion Conjugation() //сопряженный кватернион
{
Re_i = -Re_i;
Re_j = -Re_j;
Re_k = -Re_k;
return *this;
}
/*double Norm() //модуль кватерниона
{
double a = sqrt((Im*Im) + (Re_i*Re_i) + (Re_j*Re_j) + (Re_k*Re_k));
return a;
}*/
/*Quaternion Reciprocal() // кватернион А в степени -1
{
double n;
Quaternion A = *this;
//n = A.Norm();
n = (Im*Im) + (Re_i*Re_i) + (Re_j*Re_j) + (Re_k*Re_k);
A.Conjugation();
A /= n;
return A;
}*/
Quaternion operator / (const Quaternion &a) const
{
Quaternion Rez, Help;
Help = a;
Help = Help.Conjugation();
Rez = *this * Help;
Rez /= (a.Im*a.Im) + (a.Re_i*a.Re_i) + (a.Re_j*a.Re_j) + (a.Re_k*a.Re_k);
return Rez;
}
Quaternion operator /= (const Quaternion &a)
{
Quaternion Rez, Help;
Help = a;
Help = Help.Conjugation();
*this = *this * Help;
*this /= (a.Im*a.Im) + (a.Re_i*a.Re_i) + (a.Re_j*a.Re_j) + (a.Re_k*a.Re_k);
return *this;
}
bool operator == (const Quaternion &a) const
{
return ((Im == a.Im) && (Re_i == a.Re_i) && (Re_j == a.Re_j) && (Re_k == a.Re_k));
}
bool operator != (const Quaternion &a) const
{
return (!(*this == a));
}
double DotProduct(const Quaternion &a) const
{
double Rez = (Im*a.Im) + (Re_i*a.Re_i) + (Re_j*a.Re_j) + (Re_k*a.Re_k);
return Rez;
}
Quaternion CrossProduct(Quaternion &a) const
{
Quaternion Help = *this;
Quaternion Rez = ((Help * a) - (a * Help)) / 2;
return Rez;
}
friend ostream& operator << (ostream& os, const Quaternion &a);
friend istream& operator >> (istream& is, Quaternion &a);
};
ostream& operator << (ostream& os, const Quaternion &a)
{
os << a.Im << a.Re_i << a.Re_j << a.Re_k;
return os;
}
istream& operator >> (istream& is, Quaternion &a)
{
is >> a.Im >> a.Re_i >> a.Re_j >> a.Re_k;
return is;
}
int main()
{
ifstream infile("Test_quaternion.txt");
int Number_of_Tests, i;
int Operation_Number; // 1 - (+), 2 - (*), 3 - (/), 4 - (Conjugation), 5 - (DotProduct), 6 - (CrossProduct)
infile >> Number_of_Tests;
for (i = 1; i <= Number_of_Tests; i++)
{
infile >> Operation_Number;
switch (Operation_Number)
{
case 1:
{
Quaternion TestOne, TestTwo, Rez;
infile >> TestOne >> TestTwo >> Rez;
if ((TestOne = TestOne + TestTwo) != Rez)
cout << "Test " << i << " is not success!!!" << endl;
break;
}
case 2:
{
Quaternion TestOne, TestTwo, Rez;
infile >> TestOne >> TestTwo >> Rez;
if ((TestOne = TestOne * TestTwo) != Rez)
cout << "Test " << i << " is not success!!!" << endl;
break;
}
case 3:
{
Quaternion TestOne, TestTwo, Rez;
infile >> TestOne >> TestTwo >> Rez;
if ((TestOne = TestOne / TestTwo) != Rez)
cout << "Test " << i << " is not success!!!" << endl;
break;
}
case 4:
{
Quaternion TestOne, Rez;
infile >> TestOne >> Rez;
if ((TestOne = TestOne.Conjugation()) != Rez)
cout << "Test " << i << " is not success!!!" << endl;
break;
}
case 5:
{
Quaternion TestOne, TestTwo;
double Rez, Test;
infile >> TestOne >> TestTwo >> Rez;
if ((Test = TestOne.DotProduct(TestTwo)) != Rez)
cout << "Test " << i << " is not success!!!" << endl;
break;
}
case 6:
{
Quaternion TestOne, TestTwo, Rez;
infile >> TestOne >> TestTwo >> Rez;
if ((TestOne = TestOne.CrossProduct(TestTwo)) != Rez)
cout << "Test " << i << " is not success!!!" << endl;
break;
}
default:
{
cout << "Error!!! Uncorrect Operation_Number!!! (Test " << i << ")" << endl;
break;
}
}
}
return 0;
} |
73eff592ab5d2101f396b8b6a745f681f60c43c8 | 23e393f8c385a4e0f8f3d4b9e2d80f98657f4e1f | /hack-tools/A-Protect/A-Protect/C3600Splash.h | d165d2feaf9ed1d1e83ea7bc7264beed8b11323e | [] | no_license | IgorYunusov/Mega-collection-cpp-1 | c7c09e3c76395bcbf95a304db6462a315db921ba | 42d07f16a379a8093b6ddc15675bf777eb10d480 | refs/heads/master | 2020-03-24T10:20:15.783034 | 2018-06-12T13:19:05 | 2018-06-12T13:19:05 | 142,653,486 | 3 | 1 | null | 2018-07-28T06:36:35 | 2018-07-28T06:36:35 | null | UTF-8 | C++ | false | false | 309 | h | C3600Splash.h | #pragma once
// C3600Splash
class C3600Splash : public CWnd
{
DECLARE_DYNAMIC(C3600Splash)
public:
C3600Splash();
virtual ~C3600Splash();
protected:
DECLARE_MESSAGE_MAP()
public:
CBitmap m_bitmap;
void Create(UINT nBitmapID);
afx_msg void OnPaint();
afx_msg void OnTimer(UINT_PTR nIDEvent);
};
|
dc8a76b62230845e72a9e93355dcfbe687debc60 | 003056a9d2401942fb07f06dd87478e87ff24766 | /sepemployee.cpp | b48775843446b8812422e337fced2f8b6471da2c | [] | no_license | rranjan308/ILP-Project | 7ddc6472b97c279d22944a903286bd4870a9426c | 0686759ccc52a47674b97c6f77a73fd4bec30e85 | refs/heads/master | 2021-01-18T18:25:24.036504 | 2013-08-29T11:24:24 | 2013-08-29T11:24:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,361 | cpp | sepemployee.cpp | #include "sepemployee.h"
string CSepEmployee::getEmpId()
{
return m_iempid;
}
void CSepEmployee::setEmpId(string eid)
{
m_iempid=eid;
}
string CSepEmployee::getEmpFName()
{
return m_sempfname;
}
void CSepEmployee::setEmpFName(string fname)
{
m_sempfname=fname;
}
void CSepEmployee::setEmpMName(string mname)
{
m_sempmname=mname;
}
void CSepEmployee::setEmpLName(string lname)
{
m_semplname=lname;
}
string CSepEmployee::getEmpMName()
{
return m_sempmname;
}
string CSepEmployee::getEmpLName()
{
return m_semplname;
}
string CSepEmployee::getGender()
{
return m_cgender;
}
void CSepEmployee::setGender(string ch)
{
m_cgender=ch;
}
string CSepEmployee::getDob()
{
return m_sdob;
}
void CSepEmployee::setDob(string dob)
{
m_sdob=dob;
}
string CSepEmployee::getAddr1()
{
return m_saddr1;
}
void CSepEmployee::setAddr1(string addr1)
{
m_saddr1=addr1;
}
void CSepEmployee::setAddr2(string addr2)
{
m_saddr2=addr2;
}
string CSepEmployee::getAddr2()
{
return m_saddr2;
}
string CSepEmployee::getIpin()
{
return m_ipin;
}
void CSepEmployee::setIpin(string pin)
{
m_ipin=pin;
}
string CSepEmployee::getPhNumber()
{
return m_iphnumber;
}
void CSepEmployee::setPhNumber(string phnum)
{
m_iphnumber=phnum;
}
string CSepEmployee::getBranchId()
{
return m_ibranchid;
}
void CSepEmployee::setBranchId(string branchid)
{
m_ibranchid=branchid;
}
|
085003ef3d7027c979f6cf32daa3d122c9421736 | 2eb1bc1be18f164176049993261a5a4dae1d74e3 | /Technique-2/main.cpp | 048eb64017293c8e5010b6dc2647743b951dde2c | [
"MIT"
] | permissive | camillevingere/controle-souris-webcam | fa4a4ea644a7ca93c09b3ca2841a6ee2ffdc26dc | 632eb50dae3949b8da4d6289a5504ca5fce5394c | refs/heads/main | 2023-04-02T22:19:17.502719 | 2021-04-01T17:04:44 | 2021-04-01T17:04:44 | 353,248,943 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,743 | cpp | main.cpp | #include <opencv2/opencv.hpp>
#include <opencv2/face.hpp>
#include "opencv2/objdetect.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/videoio.hpp"
#include <X11/Xlib.h>
#include <iostream>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
using namespace cv;
int calibration(int x, int oldx1, int oldx2, int newx1, int newx2)
{
int diffnew = newx2 - newx1;
int diffold = oldx2 - oldx1;
int rapport = diffnew / diffold;
x *= rapport;
return x += newx1;
}
int main(int, char **)
{
//Choisir y'ecran
Display *dpy = XOpenDisplay(0);
int scr = XDefaultScreen(dpy);
Window root_window = XRootWindow(dpy, scr);
//Calculer la taille et de y'ecran
int height = DisplayHeight(dpy, scr);
int width = DisplayWidth(dpy, scr);
std::cout << "Screen size : " << width << "x" << height << std::endl;
//Initialiser la position du curseur au milieu de y'écran
int x, y;
x = width / 2;
y = height / 2;
std::vector<Mat> images;
std::vector<int> labels;
CascadeClassifier haar_cascade;
CascadeClassifier eyes_cascade;
haar_cascade.load("./haarcascade_frontalface_default.xml");
eyes_cascade.load("./haarcascade_eye_tree_eyeglasses.xml");
VideoCapture cap(0);
if (!cap.isOpened())
return -1;
Mat grImage;
Mat resizeImage;
namedWindow("face", 1);
int y1 = 0, y2 = 0;
int gauche = 0, droite = 0, haut = 0, bas = 0;
int centre = 0, moyenne_centre = 0, nombre_echantillon = 20;
/* On récupère un nombre d'échantillon de frame. Ces échantillons vont servir à "calibrer" le visage
* en lui donnant une position initiale avec laquelle on pourra comparer les futurs mouvement. Via
* cette comparaison on sera alors capable de dire si on oriente la tête ou pas.
* */
for (int i = 0; i < nombre_echantillon; i++)
{
Mat frame;
cap >> frame; // get a new frame from camera
resize(frame, resizeImage, Size(0, 0), 0.8, 0.8);
//On met la couleur de la frame en noir et blanc pour faciliter son interprétation
cvtColor(resizeImage, grImage, cv::COLOR_BGR2GRAY);
//On crée un tableau de rectangle
std::vector<Rect_<int>> faces;
//On detecte le visage, chaque visage est stocké dans une case du tableau "faces"
haar_cascade.detectMultiScale(grImage, faces);
//Récupère le premier visage du tableau
Rect face_i = faces[0];
//Affiche un rectangle autour du visage pour montrer la détection du visage à y'utilisateur
//Rectangle couleur rouge
rectangle(resizeImage, face_i, CV_RGB(255, 0, 0), 1);
//Calcul du centre du rectangle
centre = ((face_i.size().height) / 2) + face_i.x;
moyenne_centre += centre;
imshow("face", resizeImage);
//Nombre de fps (frame per seconds)
if (waitKey(30) >= 0)
break;
}
moyenne_centre = moyenne_centre / nombre_echantillon;
while (1)
{
Mat frame;
cap >> frame; // get a new frame from camera
resize(frame, resizeImage, Size(0, 0), 0.8, 0.8);
//On met la couleur de la frame en noir et blanc pour faciliter son interprétation
cvtColor(resizeImage, grImage, cv::COLOR_BGR2GRAY);
//On crée un tableau de rectangle
std::vector<Rect_<int>> faces;
//On detecte le visage, chaque visage est stocké dans une case du tableau "faces"
haar_cascade.detectMultiScale(grImage, faces);
//On boucle sur le nombre de visage sur la frame
for (int i = 0; i < faces.size(); i++)
{
Rect face_i = faces[i];
//Affiche un rectangle autour du visage pour montrer la détection du visage à y'utilisateur
//Rectangle couleur verte
rectangle(resizeImage, face_i, CV_RGB(0, 255, 0), 1);
centre = ((face_i.size().height) / 2) + face_i.x;
//Calcul de l'orientation de la tête haut et bas grâce aux échantillons
//précédemment calculés
if (moyenne_centre - centre > 0)
{
gauche = (moyenne_centre - centre);
droite = 0;
}
else
{
gauche = 0;
droite = -(moyenne_centre - centre);
}
Mat faceROI = grImage(faces[i]);
std::vector<Rect> eyes;
//Détecte les yeux dans chaque visage détecté
eyes_cascade.detectMultiScale(faceROI, eyes, 1.1, 2, 0 | cv::CASCADE_SCALE_IMAGE, Size(30, 30));
//On boucle sur le nombre de yeux sur la frame
for (size_t j = 0; j < eyes.size(); j++)
{
//on trouve le point central de y'oeil
Point center(faces[i].x + eyes[j].x + eyes[j].width * 0.5, faces[i].y + eyes[j].y + eyes[j].height * 0.5);
//cvRound arrondi à y'entier le plus proche
int radius = cvRound((eyes[j].width + eyes[j].height) * 0.25);
//on trace le cercle sur y'image "frame" de centre "center" et de rayon "radius"
circle(resizeImage, center, radius, Scalar(255, 0, 0), 4, 8, 0);
if (eyes[0].x < eyes[1].x)
{
y1 = center.y;
}
else
{
y2 = center.y;
}
}
if (y2 - y1 > 0)
{
haut = (y2 - y1);
bas = 0;
}
else
{
bas = -(y2 - y1);
haut = 0;
}
printf("gauche: %d droite: %d haut: %d bas: %d\n", calibration(gauche, 5, 30, 5, width), calibration(droite, 5, 30, 5, width), calibration(haut, 5, 30, 5, height), calibration(bas, 5, 30, 5, height));
x = width / 2;
y = height / 2;
x = x + (calibration(droite, 5, 30, 5, width / 2) - calibration(gauche, 5, 30, 5, width / 2));
y = y - (calibration(haut, 5, 30, 5, height / 2) - calibration(bas, 5, 30, 5, height / 2));
//mettre à jour le curseur
XWarpPointer(dpy, None, root_window, 0, 0, 0, 0, x, y);
XFlush(dpy);
usleep(50);
}
imshow("face", resizeImage);
if (waitKey(30) >= 0)
break;
}
return 0;
}
|
98833ce7c03a4c455fd91da774152aefeb8fabbe | eaebd1f0c15d1fe546fa6adbb08d0bbb70869d5d | /FedorovClient/camac/dfmodule/Lock_U0301.h | 4419f894e662d247f142770a260a6a2e473cdbe3 | [] | no_license | basilevs/libcamac | 145eac3b6fcdd45f7d31690eee3b1906796c421e | 64763fb047480c9c204ae4f9ed8be4d43f7f6a54 | refs/heads/master | 2020-05-16T10:23:49.156105 | 2013-02-13T13:21:48 | 2013-02-13T13:21:48 | 3,314,514 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 733 | h | Lock_U0301.h | /*
* Lock_U0301.h
*
* Created on: 12.10.2010
* Author: gulevich
*/
#ifndef LOCK_U0301_H_
#define LOCK_U0301_H_
#include "camac/dfmodule/base.h"
class Lock_U0301: public dfCamacModuleBase {
typedef dfCamacModuleBase Base;
public:
Lock_U0301();
enum
{
afReadI = CAMAC_MAKE_AF(0, 0), // TODO: check
afReset = CAMAC_MAKE_AF(0, 8) // TODO: check
};
//CAMAC_CC_NOT_Q is set if block has raised I
int Read();
int Reset();
int Bind(const camac_address& _addr, df_timeout_t* lock_station_timeout = DF_TIMEOUT_PTR_0, int flags=0) {
return Base::Bind(_addr, lock_station_timeout, flags);
}
int Unbind(void) {
return Base::Unbind();
}
int Init (void) {return Base::Init();}
};
#endif /* LOCK_U0301_H_ */
|
7cdf93fca13c71fe5b9fc79406788d5b76030b80 | 2367e774d643dce26de46053dca007af49a518b3 | /99-j1-windows/99-j1-windows.cpp | e9b3124dfc4ff1165aa502a1582feb5982043b9e | [] | no_license | yzy2018YZY/CppCourse2 | 820cde4c1ba575a3499a4caa6687402b9b51d8a6 | e2c61e0281f3ae768505766a1e9d3a495599897c | refs/heads/master | 2020-05-18T12:36:19.282539 | 2019-06-30T13:27:35 | 2019-06-30T13:27:35 | 184,412,681 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 7,879 | cpp | 99-j1-windows.cpp | /* 1850059 计1班 杨志远 */
#define _CRT_SECURE_NO_WARNINGS //使用了VS2017认为unsafe的函数
#include <iostream>
#include <ctime>
#include <cstring>
#include <conio.h>
#include <chrono>
#include <Windows.h>
using namespace std;
struct tj_time {
int tj_year; //表示年份
int tj_month; //表示月(1-12)
int tj_day; //表示日(1-28/29/30/31)
int tj_hour; //表示小时(0-23)
int tj_minute; //表示分(0-59)
int tj_second; //表示秒(0-59)
};
/* 可以在此定义其它需要的函数 */
const int months[] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
void calc_day(tj_time &result, int days, bool run4_nian2)
{
for (int k = 0; k < days; k++)
{
if ((result.tj_month == 2 && run4_nian2 && result.tj_day > months[2] + 1)
|| (!(result.tj_month == 2 && run4_nian2) && result.tj_day > months[result.tj_month]))
{
if (result.tj_month == 2 && run4_nian2 && result.tj_day > months[2] + 1)
{
result.tj_day -= months[2] + 1;
}
if (!(result.tj_month == 2 && run4_nian2) && result.tj_day > months[result.tj_month])
{
result.tj_day -= months[result.tj_month];
}
result.tj_month++;
}
if (result.tj_month > 12)
{
result.tj_month -= 12;
result.tj_year++;
run4_nian2 = ((result.tj_year % 4 == 0) && (result.tj_year % 100 != 0)) || (result.tj_year % 400 == 0);
}
}
}
bool is_daylight(const tj_time &result, const TIME_ZONE_INFORMATION &tzi, bool north)
{
bool over = (result.tj_month > tzi.DaylightDate.wMonth || (result.tj_month == tzi.DaylightDate.wMonth && (result.tj_day > tzi.DaylightDate.wDay || (result.tj_day == tzi.DaylightDate.wDay && result.tj_hour >= tzi.DaylightDate.wHour))));
bool under = (result.tj_month < tzi.StandardDate.wMonth || (result.tj_month == tzi.StandardDate.wMonth && (result.tj_day < tzi.StandardDate.wDay || (result.tj_day == tzi.DaylightDate.wDay && result.tj_hour <= tzi.DaylightDate.wHour))));
if (north)
{
if (tzi.DaylightDate.wMonth < tzi.StandardDate.wMonth && over && under)
return true;
else
return false;
}
else
{
if (tzi.DaylightDate.wMonth > tzi.StandardDate.wMonth && (over || under))
return true;
else
return false;
}
}
/***************************************************************************
函数名称:
功 能:给出提示并等待回车键
输入参数:
返 回 值:
说 明:
***************************************************************************/
void wait_for_enter(const char *prompt = "")
{
if (strlen(prompt) == 0)
cout << endl << "按回车键继续";
else
cout << endl << prompt << ",按回车键继续";
while (_getch() != '\r')
;
cout << endl << endl;
}
/***************************************************************************
函数名称:
功 能:调用系统的转换函数将整型秒值转换为与本题相似的结构体并输出
输入参数:
返 回 值:
说 明:
***************************************************************************/
void system_time_output(const time_t input_time) //time_t的本质是64位无符号整数
{
struct tm *tt; //struct tm 为系统定义的结构体
tt = localtime(&input_time); //localtime为系统函数
/* tm_*** 为struct tm中的成员,和本题的struct tj_time具体的内容不完全符合,具体含义自己查找相关资料 */
cout << tt->tm_year + 1900 << '-' << tt->tm_mon + 1 << '-' << tt->tm_mday << ' ' << tt->tm_hour << ':' << tt->tm_min << ':' << tt->tm_sec << endl;
return;
}
/***************************************************************************
函数名称:
功 能:自定义转换结果输出函数
输入参数:
返 回 值:
说 明:
***************************************************************************/
void tj_time_output(struct tj_time *tp)
{
/* 实现自定义结构的输出,输出形式与system_time_output相同 */
cout << tp->tj_year << '-' << tp->tj_month << '-' << tp->tj_day << ' ' << tp->tj_hour << ':' << tp->tj_minute << ':' << tp->tj_second << endl;
}
/***************************************************************************
函数名称:
功 能:自定义转换函数
输入参数:
返 回 值:
说 明:
***************************************************************************/
struct tj_time *tj_time_convert(int input_time)
{
static struct tj_time result; //定义静态局部变量,不准动
//time.h的函数,无法计算夏令时
//time_t timeCount = time(0);
//tm *gmt = gmtime(&timeCount);
//gmt->tm_isdst = 1;
//tm *gmt = new tm;
//tm *lct = new tm;
//gmt->tm_isdst = -1;
//lct->tm_isdst = -1;
//gmtime_s(gmt, &timeCount);
//localtime_s(lct, &timeCount);
//Windows API
//https://docs.microsoft.com/zh-cn/windows/desktop/api/timezoneapi/nf-timezoneapi-gettimezoneinformation
TIME_ZONE_INFORMATION tzi;
int daylight = GetTimeZoneInformation(&tzi);
//cout << GetTimeZoneInformation(&tzi) << endl;
//cout << tzi.Bias << " " << tzi.DaylightBias << " " << tzi.StandardBias << endl;
//tm *lct = localtime(&timeCount);
//lct->tm_isdst = -1;
//time_t timeZone = mktime(localtime(&timeCount)) - mktime(gmtime(&timeCount));
//time_t timeZone = mktime(lct) - mktime(gmt);
//c++11的方法,无法计算夏令时
/*std::chrono::system_clock::time_point tp;
time_t t = chrono::system_clock::to_time_t(tp);
char ts[100], tss[100];
strcpy(ts, ctime(&t));
strcpy(tss, asctime(gmtime(&t)));
int timeZone = (ts[11] - tss[11]) * 60 * 60 * 10 + (ts[12] - tss[12]) * 60 * 60 + (ts[14] - tss[14]) * 60 * 10 + (ts[15] - tss[15]) * 60;
*/
//cout << timeZone << endl;
result.tj_year = 1969;//初始化,修正因时差而导致的错位
result.tj_month = 12;
result.tj_day = 31;
result.tj_hour = 12;
result.tj_minute = 0;
result.tj_second = 12 * 60 * 60 - tzi.Bias * 60;
//计算时分秒
bool run4_nian2 = ((result.tj_year % 4 == 0) && (result.tj_year % 100 != 0)) || (result.tj_year % 400 == 0);
result.tj_second += input_time;
result.tj_minute += result.tj_second / 60;
result.tj_second %= 60;
result.tj_hour += result.tj_minute / 60;
result.tj_minute %= 60;
result.tj_day += result.tj_hour / 24;
int days = result.tj_hour / 24;
result.tj_hour %= 24;
//计算日期
calc_day(result, days, run4_nian2);
//调整夏令时 北半球 DaylightDate < StandardDate 南半球 DaylightDate > StandardDate
if (daylight != 0 && (is_daylight(result, tzi, true) || is_daylight(result, tzi, false)))
{
//加1小时,重新计算日期
result.tj_hour++;
result.tj_day += result.tj_hour / 24;
result.tj_hour %= 24;
calc_day(result, days, run4_nian2);
}
return &result; //注意,返回的是静态局部变量的地址,本语句不准动
}
/***************************************************************************
函数名称:
功 能:
输入参数:
返 回 值:
说 明:
***************************************************************************/
int main()
{
int test_time[] = { 1, 123456789, 349823021, 987654321, 1202990407, 1216468807, 1250312143, 1272636353, 1326193524, 1336549496, 1392837128, 1625675376, 2052743737 };
int i;
struct tj_time *tp;
for (i = 0; i < sizeof(test_time) / sizeof(int); i++) {
cout << "秒数 :" << test_time[i] << endl;
cout << "系统转换的结果 :";
system_time_output(test_time[i]);
cout << "自定义转换的结果:";
tp = tj_time_convert(test_time[i]);
tj_time_output(tp);
wait_for_enter();
}
if (1) {
struct tj_time *tp;
int t = (int)time(0); //系统函数,取当前系统时间(从1970-01-01 00:00:00开始的秒数)
cout << "当前系统时间 :" << t << endl;
cout << "系统转换的结果 :";
system_time_output(t);
cout << "自定义转换的结果:";
tp = tj_time_convert(t);
tj_time_output(tp);
wait_for_enter();
}
return 0;
}
|
2bac7e07e84f50827566776d14eca4bbdb67215f | 807315581299c7dd9896a13b0ad56a1d678623ec | /src/modules/servo/test.cpp | 9e8c972088e3e4e88dda64473c779c0e1a942511 | [
"MIT"
] | permissive | P8P-7/core | 4b68bf5980883422f48045fd6fb47c1aa520b094 | 820873e7da867392729b2e65922205afe98e41d8 | refs/heads/master | 2020-03-12T14:19:57.499223 | 2018-07-04T13:58:01 | 2018-07-04T13:58:01 | 130,664,669 | 3 | 1 | MIT | 2018-07-05T20:34:25 | 2018-04-23T08:26:54 | C++ | UTF-8 | C++ | false | false | 3,580 | cpp | test.cpp | #include <iostream>
#include <boost/format.hpp>
#include <goliath/gpio.h>
#include "dynamixel/Dynamixel.h"
using namespace goliath::gpio;
using namespace goliath::dynamixel;
int main(int argc, char *argv[]) {
unsigned char motorId = 4;
int numBytes = 2;
short iData = 512;
Dynamixel::Instruction instruction = Dynamixel::Instruction::Write;
Dynamixel::Address address = Dynamixel::Address::MovingSpeed;
std::string portName = "/dev/serial0";
unsigned int baudRate = 1000000;
std::vector<unsigned char> data;
// Parse command line args
for (int i = 1; i < argc; i++) {
if (!strcmp(argv[i], "--baudRate")) {
baudRate = static_cast<unsigned int>(std::stoul(argv[++i]));
} else if (!strcmp(argv[i], "--motorId")) {
motorId = static_cast<unsigned char>(std::stoul(argv[++i]));
} else if (!strcmp(argv[i], "--numBytes")) {
numBytes = std::stoi(argv[++i]);
} else if (!strcmp(argv[i], "--instruction")) {
instruction = static_cast<Dynamixel::Instruction>(std::stoi(argv[++i]));
} else if (!strcmp(argv[i], "--address")) {
address = static_cast<Dynamixel::Address>(std::stoi(argv[++i]));
} else if (!strcmp(argv[i], "--portName")) {
portName = argv[++i];
} else if (!strcmp(argv[i], "--data")) {
iData = static_cast<short>(std::stoul(argv[++i]));
}
}
data.push_back(static_cast<unsigned char>(address));
if (numBytes == 1) {
data.push_back(iData);
} else if (numBytes == 2) {
std::vector<unsigned char> hlData = Utils::convertToHL(iData);
data.insert(data.end(), hlData.begin(), hlData.end());
}
auto port = std::make_shared<SerialPort>();
BOOST_LOG_TRIVIAL(debug) << "Connecting to: " << portName << ":" << baudRate;
GPIO gpio(GPIO::MapPin::GPIO18, GPIO::Direction::Out, GPIO::State::Low);
if (port->connect(portName, baudRate)) {
BOOST_LOG_TRIVIAL(debug) << "Connected successfully";
std::function<void(bool)> callback = [&gpio](bool isTx) {
if (isTx) {
gpio.set(GPIO::State::High);
} else {
std::this_thread::sleep_for(std::chrono::microseconds(20));
gpio.set(GPIO::State::Low);
}
};
// Configure the motor object
Dynamixel motor(motorId, port);
motor.setDirectionCallback(callback);
// Debugging only
std::vector<unsigned char> buffer = motor.getInstructionPacket(instruction, data);
std::string bufferStr;
for (auto const &value: buffer) {
bufferStr += (boost::format("0x%02X ") % static_cast<int>(value)).str();
}
BOOST_LOG_TRIVIAL(debug) << "Buffer: " << bufferStr;
// End debugging
std::vector<unsigned char> statusPacket = motor.send(instruction, data);
// Remove the checksum.
statusPacket.pop_back();
// Remove the first 5 elements, and shift everything else down by 5 indices.
statusPacket.erase(statusPacket.begin(), statusPacket.begin() + 5);
int recvVal = 0;
if (statusPacket.size() == 2) {
recvVal = Utils::convertFromHL(statusPacket[0], statusPacket[1]);
} else {
recvVal = statusPacket[0];
}
BOOST_LOG_TRIVIAL(debug) << "Received: " << recvVal;
} else {
BOOST_LOG_TRIVIAL(warning) << "Couldn't open " << portName << " at baudRate " << baudRate;
return -1;
}
return 0;
}
|
a542736a042888aa19047d25d76ebb3c693d3516 | ec61ec7103731451c53fc7c78bc2c1bb8bf74823 | /Source/FG_ASTAR/Units/Components/Unit_Movement_Component.cpp | 038216640cdb1e84d484a4b6626955f198e06075 | [] | no_license | Paxton89/ASTAR_Pathfinding_Unreal | 7ec33b1e9c345061f0748413204a7495c5c8abeb | fc1fbc4c1b053412ac5febb9beb7d6016ca64cec | refs/heads/main | 2023-08-12T21:05:09.498920 | 2021-09-24T14:22:37 | 2021-09-24T14:22:37 | 407,469,180 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,363 | cpp | Unit_Movement_Component.cpp |
#include "FG_ASTAR/Units/Components/Unit_Movement_Component.h"
#include "FG_ASTAR/Grid/Tile.h"
UUnit_Movement_Component::UUnit_Movement_Component()
{
PrimaryComponentTick.bCanEverTick = true;
}
void UUnit_Movement_Component::BeginPlay()
{
Super::BeginPlay();
}
void UUnit_Movement_Component::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction)
{
Super::TickComponent(DeltaTime, TickType, ThisTickFunction);
UE_LOG(LogTemp, Log, TEXT("AAAAAAAAAAAAAAA"));
MoveToNextTile();
}
void UUnit_Movement_Component::CreatePath(ATile* Tile)
{
if(Tile->Parent == nullptr)
{
CurrentTile = Tile;
UE_LOG(LogTemp, Log, TEXT("Found first tile - %i, %i"), Tile->XPos, Tile->YPos);
}
else if(Tile != nullptr)
{
Path.Add(Tile);
CreatePath(Tile->Parent);
UE_LOG(LogTemp, Log, TEXT("Trying to find first tile - Backing up"))
}
}
void UUnit_Movement_Component::SetTargetTile(ATile* Tile)
{
GoalTile = Tile;
CreatePath(GoalTile);
}
void UUnit_Movement_Component::MoveToNextTile()
{
if(CurrentLocation != NextTile->TargetLocation)
{
CurrentLocation = GetOwner()->GetActorLocation();
FMath::Lerp(CurrentLocation, NextTile->TargetLocation, 0.1f);
}
else
{
if(Path.Num() > 0)
{
NextTile = Path.Pop();
}
else
{
UE_LOG(LogTemp, Log, TEXT("Actor says path array is empty"))
}
}
}
|
4e2b0cb3f8bcbd708fe3d2ca0703ed22caf52db2 | f81124e4a52878ceeb3e4b85afca44431ce68af2 | /re20_3/processor17/45/p | dd72e6107246945b9037562480d3a135bfc82a1c | [] | no_license | chaseguy15/coe-of2 | 7f47a72987638e60fd7491ee1310ee6a153a5c10 | dc09e8d5f172489eaa32610e08e1ee7fc665068c | refs/heads/master | 2023-03-29T16:59:14.421456 | 2021-04-06T23:26:52 | 2021-04-06T23:26:52 | 355,040,336 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 15,082 | p | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "45";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
928
(
-0.318587
-0.317497
-0.316275
-0.314923
-0.313445
-0.311846
-0.310128
-0.318734
-0.317634
-0.316403
-0.315042
-0.313555
-0.311947
-0.310222
-0.319027
-0.317908
-0.316658
-0.315279
-0.313775
-0.31215
-0.310409
-0.308556
-0.319464
-0.318317
-0.317039
-0.315632
-0.314102
-0.312451
-0.310686
-0.30881
-0.320043
-0.318858
-0.317542
-0.316099
-0.314533
-0.312848
-0.31105
-0.309144
-0.320761
-0.319528
-0.318165
-0.316676
-0.315065
-0.313337
-0.311497
-0.309552
-0.321615
-0.320323
-0.318903
-0.317358
-0.315692
-0.313912
-0.312021
-0.310029
-0.322599
-0.321239
-0.319752
-0.31814
-0.316411
-0.314568
-0.312617
-0.310569
-0.322271
-0.320706
-0.319019
-0.317214
-0.315299
-0.313278
-0.311165
-0.323415
-0.321762
-0.319987
-0.318097
-0.316099
-0.313998
-0.311809
-0.309567
-0.324665
-0.322913
-0.321041
-0.319054
-0.316962
-0.31477
-0.312494
-0.310179
-0.324155
-0.322174
-0.32008
-0.317882
-0.315586
-0.313212
-0.310814
-0.325485
-0.323383
-0.321169
-0.318853
-0.316441
-0.313957
-0.311462
-0.326898
-0.324664
-0.322318
-0.319871
-0.31733
-0.314721
-0.312117
-0.30943
-0.326014
-0.323524
-0.320932
-0.318247
-0.315498
-0.312769
-0.309961
-0.327434
-0.324786
-0.322035
-0.319191
-0.316285
-0.313414
-0.31047
-0.306454
-0.326105
-0.323181
-0.320161
-0.317079
-0.314048
-0.310946
-0.306632
-0.327482
-0.324371
-0.321158
-0.31788
-0.314667
-0.311383
-0.30673
-0.325612
-0.322187
-0.318692
-0.31527
-0.311776
-0.306739
-0.303434
-0.326913
-0.323259
-0.319522
-0.315863
-0.312123
-0.306647
-0.303085
-0.324387
-0.320383
-0.316454
-0.312426
-0.306443
-0.302555
-0.325591
-0.321296
-0.31706
-0.312694
-0.306117
-0.301808
-0.322291
-0.317709
-0.312944
-0.305665
-0.300805
-0.318444
-0.313209
-0.305089
-0.299493
-0.319332
-0.31355
-0.304412
-0.297808
-0.314088
-0.303729
-0.295721
-0.30325
-0.293247
-0.290047
-0.290047
-0.30325
-0.293247
-0.314088
-0.303729
-0.295721
-0.319332
-0.31355
-0.304412
-0.297808
-0.318444
-0.313209
-0.305089
-0.299493
-0.322291
-0.317709
-0.312944
-0.305665
-0.300805
-0.325591
-0.321296
-0.31706
-0.312694
-0.306117
-0.301808
-0.324387
-0.320383
-0.316454
-0.312426
-0.306443
-0.302555
-0.326913
-0.323259
-0.319522
-0.315863
-0.312123
-0.306647
-0.303085
-0.325612
-0.322187
-0.318692
-0.31527
-0.311776
-0.306739
-0.303434
-0.327482
-0.324371
-0.321158
-0.31788
-0.314667
-0.311383
-0.30673
-0.326105
-0.323181
-0.320161
-0.317079
-0.314048
-0.310946
-0.306632
-0.327434
-0.324786
-0.322035
-0.319191
-0.316285
-0.313414
-0.31047
-0.306454
-0.326014
-0.323524
-0.320932
-0.318247
-0.315498
-0.312769
-0.309961
-0.326898
-0.324664
-0.322318
-0.319871
-0.31733
-0.314721
-0.312117
-0.30943
-0.325485
-0.323383
-0.321169
-0.318853
-0.316441
-0.313957
-0.311462
-0.324155
-0.322174
-0.32008
-0.317882
-0.315586
-0.313212
-0.310814
-0.324665
-0.322913
-0.321041
-0.319054
-0.316962
-0.31477
-0.312494
-0.310179
-0.323415
-0.321762
-0.319987
-0.318097
-0.316099
-0.313998
-0.311809
-0.309567
-0.322271
-0.320706
-0.319019
-0.317214
-0.315299
-0.313278
-0.311165
-0.322599
-0.321239
-0.319752
-0.31814
-0.316411
-0.314568
-0.312617
-0.310569
-0.321615
-0.320323
-0.318903
-0.317358
-0.315692
-0.313912
-0.312021
-0.310029
-0.320761
-0.319528
-0.318165
-0.316676
-0.315065
-0.313337
-0.311497
-0.309552
-0.320043
-0.318858
-0.317542
-0.316099
-0.314533
-0.312848
-0.31105
-0.309144
-0.319464
-0.318317
-0.317039
-0.315632
-0.314102
-0.312451
-0.310686
-0.30881
-0.319027
-0.317908
-0.316658
-0.315279
-0.313775
-0.31215
-0.310409
-0.308556
-0.318734
-0.317634
-0.316403
-0.315042
-0.313555
-0.311947
-0.310222
-0.318587
-0.317497
-0.316275
-0.314923
-0.313445
-0.311846
-0.310128
-0.331122
-0.333767
-0.336349
-0.338792
-0.325674
-0.340983
-0.327247
-0.34273
-0.328493
-0.318392
-0.343729
-0.32927
-0.319073
-0.343554
-0.329533
-0.319582
-0.340758
-0.328179
-0.319322
-0.313512
-0.329744
-0.320983
-0.316624
-0.312011
-0.292468
-0.301917
-0.311756
-0.31037
-0.306001
-0.289164
-0.292903
-0.30207
-0.30098
-0.297092
-0.285325
-0.286329
-0.293688
-0.292721
-0.289293
-0.281068
-0.280369
-0.286176
-0.28514
-0.281973
-0.275863
-0.274272
-0.278683
-0.277461
-0.274453
-0.269612
-0.267622
-0.270834
-0.269465
-0.26663
-0.262333
-0.26027
-0.262497
-0.261063
-0.258447
-0.254098
-0.252195
-0.253645
-0.252232
-0.249885
-0.243455
-0.244323
-0.243011
-0.240977
-0.234165
-0.234628
-0.233482
-0.231793
-0.224466
-0.224681
-0.223751
-0.222423
-0.214517
-0.214613
-0.213931
-0.212967
-0.204473
-0.20455
-0.204135
-0.203524
-0.194476
-0.19461
-0.194463
-0.194187
-0.184647
-0.184888
-0.185003
-0.185036
-0.175083
-0.175462
-0.175824
-0.176135
-0.165858
-0.16639
-0.166979
-0.167536
-0.157022
-0.157709
-0.158501
-0.159275
-0.148605
-0.149443
-0.150414
-0.151373
-0.140623
-0.141601
-0.142726
-0.143843
-0.133078
-0.134182
-0.135439
-0.13669
-0.125963
-0.127179
-0.128547
-0.129909
-0.119264
-0.120578
-0.122039
-0.123492
-0.112966
-0.114363
-0.115901
-0.117429
-0.107047
-0.108516
-0.110116
-0.111706
-0.101489
-0.103017
-0.104668
-0.106307
-0.0962706
-0.0978483
-0.0995398
-0.101217
-0.0913715
-0.0929907
-0.094714
-0.096422
-0.0867729
-0.0884261
-0.090174
-0.0919052
-0.0824566
-0.0841375
-0.085904
-0.0876523
-0.0784055
-0.0801089
-0.0818889
-0.0836494
-0.074604
-0.0763251
-0.0781144
-0.0798829
-0.0710371
-0.0727722
-0.0745674
-0.0763404
-0.0676912
-0.0694372
-0.0712352
-0.0730099
-0.0645538
-0.0663078
-0.0681064
-0.0698804
-0.0616132
-0.0633728
-0.06517
-0.0669415
-0.0588585
-0.0606219
-0.0624162
-0.0641836
-0.0562799
-0.0580455
-0.0598355
-0.0615977
-0.0538682
-0.0556346
-0.0574194
-0.0591754
-0.0516149
-0.053381
-0.0551599
-0.056909
-0.0495122
-0.0512772
-0.0530496
-0.0547913
-0.047553
-0.0493162
-0.0510817
-0.0528156
-0.0457307
-0.0474915
-0.0492499
-0.0509759
-0.0440393
-0.0457972
-0.0475485
-0.0492665
-0.0424731
-0.0442279
-0.045972
-0.0476822
-0.0410272
-0.0427787
-0.0445158
-0.0462182
-0.0396969
-0.041445
-0.0431752
-0.0448701
-0.0384779
-0.0402226
-0.0419462
-0.043634
-0.0373665
-0.0391078
-0.0408251
-0.0425061
-0.0363591
-0.0380972
-0.0398086
-0.0414831
-0.0354528
-0.0371877
-0.0388937
-0.0405622
-0.0346446
-0.0363766
-0.0380775
-0.0397407
-0.0339322
-0.0356615
-0.0373579
-0.0390162
-0.0333133
-0.0350403
-0.0367327
-0.0383866
-0.0327862
-0.034511
-0.0362
-0.0378502
-0.0323492
-0.0340723
-0.0357583
-0.0374054
-0.0320011
-0.0337228
-0.0354065
-0.037051
-0.0317408
-0.0334614
-0.0351434
-0.0367861
-0.0315676
-0.0332875
-0.0349683
-0.0366097
-0.0314808
-0.0332006
-0.034881
-0.0365219
-0.292468
-0.289164
-0.285325
-0.281068
-0.275863
-0.269612
-0.262333
-0.254098
-0.24504
-0.235334
-0.225172
-0.214751
-0.204255
-0.193844
-0.183651
-0.173777
-0.164295
-0.155252
-0.146673
-0.138567
-0.130929
-0.123748
-0.117006
-0.110679
-0.104747
-0.0991853
-0.093971
-0.0890825
-0.0844991
-0.0802015
-0.0761717
-0.0723932
-0.0688506
-0.0655298
-0.0624178
-0.0595027
-0.0567734
-0.0542198
-0.0518326
-0.0496031
-0.0475235
-0.0455865
-0.0437855
-0.0421144
-0.0405675
-0.0391397
-0.0378265
-0.0366234
-0.0355268
-0.0345331
-0.0336391
-0.0328421
-0.0321396
-0.0315295
-0.0310099
-0.0305791
-0.030236
-0.0299794
-0.0298086
-0.0297226
-0.301917
-0.292903
-0.286329
-0.280369
-0.274272
-0.267622
-0.26027
-0.252195
-0.243455
-0.234165
-0.224466
-0.214517
-0.204473
-0.194476
-0.184647
-0.175083
-0.165858
-0.157022
-0.148605
-0.140623
-0.133078
-0.125963
-0.119264
-0.112966
-0.107047
-0.101489
-0.0962706
-0.0913715
-0.0867729
-0.0824566
-0.0784055
-0.0746039
-0.0710371
-0.0676912
-0.0645538
-0.0616132
-0.0588585
-0.0562799
-0.0538682
-0.0516149
-0.0495122
-0.047553
-0.0457307
-0.0440393
-0.0424731
-0.0410272
-0.0396968
-0.0384779
-0.0373665
-0.0363591
-0.0354528
-0.0346446
-0.0339322
-0.0333133
-0.0327862
-0.0323492
-0.0320011
-0.0317408
-0.0315675
-0.0314808
-0.311756
-0.30207
-0.293688
-0.286176
-0.278683
-0.270834
-0.262497
-0.253645
-0.244323
-0.234628
-0.224681
-0.214613
-0.20455
-0.19461
-0.184888
-0.175462
-0.16639
-0.157709
-0.149443
-0.141601
-0.134182
-0.127179
-0.120578
-0.114363
-0.108516
-0.103017
-0.0978483
-0.0929907
-0.0884261
-0.0841375
-0.0801088
-0.0763251
-0.0727722
-0.0694372
-0.0663078
-0.0633728
-0.0606219
-0.0580455
-0.0556346
-0.053381
-0.0512772
-0.0493161
-0.0474914
-0.0457972
-0.0442279
-0.0427787
-0.041445
-0.0402226
-0.0391078
-0.0380972
-0.0371877
-0.0363766
-0.0356615
-0.0350402
-0.034511
-0.0340723
-0.0337227
-0.0334614
-0.0332874
-0.0332006
-0.31037
-0.30098
-0.292721
-0.28514
-0.277461
-0.269465
-0.261063
-0.252232
-0.243011
-0.233482
-0.223751
-0.213931
-0.204135
-0.194463
-0.185003
-0.175824
-0.166979
-0.158501
-0.150414
-0.142726
-0.135439
-0.128547
-0.122039
-0.115901
-0.110116
-0.104668
-0.0995398
-0.094714
-0.090174
-0.085904
-0.0818889
-0.0781144
-0.0745674
-0.0712352
-0.0681064
-0.06517
-0.0624162
-0.0598355
-0.0574194
-0.0551599
-0.0530496
-0.0510817
-0.0492499
-0.0475484
-0.045972
-0.0445157
-0.0431752
-0.0419462
-0.0408251
-0.0398086
-0.0388936
-0.0380775
-0.0373579
-0.0367326
-0.0361999
-0.0357583
-0.0354064
-0.0351434
-0.0349682
-0.0348809
-0.306001
-0.297092
-0.289293
-0.281973
-0.274453
-0.26663
-0.258447
-0.249885
-0.240977
-0.231793
-0.222423
-0.212967
-0.203524
-0.194187
-0.185036
-0.176135
-0.167536
-0.159275
-0.151373
-0.143843
-0.13669
-0.129909
-0.123492
-0.117429
-0.111706
-0.106307
-0.101217
-0.096422
-0.0919052
-0.0876523
-0.329744
-0.320983
-0.316624
-0.312011
-0.340758
-0.328179
-0.319322
-0.313512
-0.343554
-0.329533
-0.319582
-0.343729
-0.32927
-0.319073
-0.34273
-0.328493
-0.318392
-0.340983
-0.327247
-0.338792
-0.325674
-0.336349
-0.333767
-0.331122
)
;
boundaryField
{
inlet
{
type zeroGradient;
}
outlet
{
type fixedValue;
value nonuniform 0();
}
cylinder
{
type zeroGradient;
}
top
{
type symmetryPlane;
}
bottom
{
type symmetryPlane;
}
defaultFaces
{
type empty;
}
procBoundary17to16
{
type processor;
value nonuniform List<scalar>
205
(
-0.319541
-0.319697
-0.32001
-0.320476
-0.321094
-0.321861
-0.322773
-0.323827
-0.323709
-0.323709
-0.324942
-0.326292
-0.326017
-0.326017
-0.327468
-0.329013
-0.328393
-0.328393
-0.329967
-0.328922
-0.328922
-0.330483
-0.328926
-0.328926
-0.330443
-0.328287
-0.328287
-0.329755
-0.326901
-0.326901
-0.323411
-0.323411
-0.324717
-0.320483
-0.320483
-0.315027
-0.315027
-0.303049
-0.303049
-0.285666
-0.285666
-0.29024
-0.29024
-0.285666
-0.285666
-0.303049
-0.303049
-0.315027
-0.315027
-0.320483
-0.320483
-0.324717
-0.323411
-0.323411
-0.326901
-0.326901
-0.329755
-0.328287
-0.328287
-0.330443
-0.328926
-0.328926
-0.330483
-0.328922
-0.328922
-0.329967
-0.328393
-0.328393
-0.329013
-0.327468
-0.326017
-0.326017
-0.326292
-0.324942
-0.323709
-0.323709
-0.323827
-0.322773
-0.321861
-0.321094
-0.320476
-0.32001
-0.319697
-0.319541
-0.353952
-0.356733
-0.344755
-0.333487
-0.320903
-0.307253
-0.292889
-0.24504
-0.278073
-0.24504
-0.235334
-0.225172
-0.214751
-0.204255
-0.193844
-0.183651
-0.173777
-0.164295
-0.155252
-0.146673
-0.138567
-0.130929
-0.123748
-0.117006
-0.110679
-0.104747
-0.0991853
-0.093971
-0.0890825
-0.0844991
-0.0802015
-0.0761717
-0.0723932
-0.0688506
-0.0655298
-0.0624178
-0.0595027
-0.0567734
-0.0542198
-0.0518326
-0.0496031
-0.0475235
-0.0455865
-0.0437855
-0.0421144
-0.0405675
-0.0391398
-0.0378265
-0.0366235
-0.0355268
-0.0345331
-0.0336391
-0.0328421
-0.0321397
-0.0315296
-0.0310099
-0.0305792
-0.030236
-0.0299795
-0.0298087
-0.0297227
-0.353952
-0.356733
-0.344755
-0.333487
-0.320903
-0.307253
-0.292889
-0.278073
-0.263093
-0.248217
-0.233676
-0.219654
-0.206282
-0.193646
-0.181786
-0.170709
-0.160398
-0.150817
-0.141921
-0.133661
-0.125986
-0.11885
-0.112206
-0.106014
-0.100237
-0.0948418
-0.0897993
-0.0850829
-0.0806691
-0.0765368
-0.0726669
-0.0690421
-0.0656466
-0.0624663
-0.0594879
-0.0566997
-0.0540907
-0.0516508
-0.0493709
-0.0472426
-0.045258
-0.0434101
-0.0416925
-0.0400991
-0.0386244
-0.0372636
-0.0360121
-0.0348657
-0.0338207
-0.0328738
-0.0320219
-0.0312624
-0.0305927
-0.030011
-0.0295152
-0.029104
-0.0287761
-0.0285303
-0.0283661
-0.0282817
)
;
}
procBoundary17to18
{
type processor;
value nonuniform List<scalar>
201
(
-0.308298
-0.308384
-0.308384
-0.306599
-0.306834
-0.307142
-0.307518
-0.307955
-0.308447
-0.308987
-0.308987
-0.307232
-0.307772
-0.308326
-0.308882
-0.308882
-0.305914
-0.306208
-0.306208
-0.303646
-0.303696
-0.30363
-0.30363
-0.325819
-0.328461
-0.328461
-0.30363
-0.325819
-0.30363
-0.303696
-0.303646
-0.306208
-0.306208
-0.305914
-0.308882
-0.308882
-0.308326
-0.307772
-0.307232
-0.308987
-0.308987
-0.308447
-0.307955
-0.307518
-0.307142
-0.306834
-0.306599
-0.308384
-0.308384
-0.308298
-0.328461
-0.320081
-0.322029
-0.32391
-0.32391
-0.316329
-0.317472
-0.317472
-0.312585
-0.313198
-0.313623
-0.313623
-0.307494
-0.306576
-0.306576
-0.301566
-0.293323
-0.285979
-0.278922
-0.271589
-0.263947
-0.255969
-0.247646
-0.239013
-0.23013
-0.221078
-0.211945
-0.202821
-0.19379
-0.184924
-0.176286
-0.167923
-0.159871
-0.152153
-0.144783
-0.137765
-0.1311
-0.124782
-0.118801
-0.113145
-0.107803
-0.10276
-0.0980014
-0.0935145
-0.0892852
-0.0853006
-0.0815479
-0.0780154
-0.0746918
-0.0715664
-0.0686295
-0.0658717
-0.0632844
-0.0608595
-0.0585895
-0.0564675
-0.054487
-0.0526421
-0.0509272
-0.0493373
-0.0478676
-0.0465139
-0.0452722
-0.0441391
-0.0431112
-0.0421856
-0.0413598
-0.0406313
-0.0399983
-0.0394588
-0.0390115
-0.0386551
-0.0383886
-0.0382112
-0.0381229
-0.0836493
-0.0798829
-0.0763404
-0.0730099
-0.0698804
-0.0669415
-0.0641836
-0.0615977
-0.0591754
-0.0569089
-0.0547912
-0.0528156
-0.0509759
-0.0492665
-0.0476822
-0.0462182
-0.0448701
-0.0436339
-0.042506
-0.0414831
-0.0405622
-0.0397407
-0.0390161
-0.0383866
-0.0378501
-0.0374054
-0.037051
-0.0367861
-0.0366097
-0.0365218
-0.301566
-0.306576
-0.293323
-0.285979
-0.278922
-0.271589
-0.263947
-0.255969
-0.247646
-0.239013
-0.23013
-0.221078
-0.211945
-0.202821
-0.19379
-0.184924
-0.176286
-0.167923
-0.159871
-0.152153
-0.144783
-0.137765
-0.1311
-0.124782
-0.118801
-0.113145
-0.107803
-0.10276
-0.0980014
-0.0935145
-0.0836493
-0.0892852
-0.306576
-0.307494
-0.313623
-0.313623
-0.313198
-0.312585
-0.317472
-0.317472
-0.316329
-0.32391
-0.32391
-0.322029
-0.320081
-0.328461
)
;
}
}
// ************************************************************************* //
| |
2111cbb64ef45dda9e99d9665128ff223f0fdc4f | 44e86b3ed5382c4c2da12073435779591921de1b | /src/geDE/Function.cpp | 98861e59d955d0f3c7ed6da1f78463f2070befd0 | [] | no_license | khardix/GPUEngine | eb14b660250b6625f0b1b5ab1549a6f922b9c01e | ab96b33c235c6178a6f9b2f241a8558b4134c943 | refs/heads/master | 2018-10-12T03:42:44.704548 | 2018-07-26T12:31:56 | 2018-07-26T12:31:56 | 111,310,282 | 0 | 0 | null | 2017-11-19T16:02:10 | 2017-11-19T16:02:10 | null | UTF-8 | C++ | false | false | 4,979 | cpp | Function.cpp | #include<geDE/Function.h>
#include<geDE/Resource.h>
#include<geDE/FunctionRegister.h>
#include<geCore/ErrorPrinter.h>
using namespace ge::de;
Function::~Function(){
for(auto const&x:this->_targetResources)
x->_removeSignalingSource(this);
for(auto const&x:this->_sourceResources)
x->_removeSignalingTarget(this);
}
bool Function::_inputBindingCheck(
std::shared_ptr<FunctionRegister>const&fr,
size_t i ,
std::shared_ptr<Function> const&f )const{
assert(this!=nullptr);
if(f==nullptr)return true;
assert(f->getOutputData()!=nullptr);
return this->_inputBindingCheck(fr,i,f->getOutputData());
}
bool Function::_inputBindingCheck(
std::shared_ptr<FunctionRegister>const&fr,
size_t i ,
std::shared_ptr<Resource> const&r )const{
assert(this!=nullptr);
assert(fr!=nullptr);
assert(fr->getTypeRegister()!=nullptr);
assert(fr->getNameRegister()!=nullptr);
auto tr = fr->getTypeRegister();
auto nr = fr->getNameRegister();
if(i>=fr->getNofInputs(this->_id)){
ge::core::printError(fr->getName(this->_id)+"::bindInput","out of range",i,r);
return false;
}
if(r == nullptr)return true;
auto fceType = fr->getType(this->_id);
auto toType = tr->getFceArgTypeId(fceType,i);
auto fromType = r->getId();
if(i==0&&tr->getTypeIdType(fceType)==TypeRegister::MEMFCE&&r->isPointer())
if(tr->getPtrType(r->getId())==tr->getMemFceClassTypeId(fceType))
return true;
if(tr->areConvertible(toType,fromType))return true;
ge::core::printError(GE_CORE_FCENAME,
std::string("in function of type: ")+tr->getTypeIdName(fr->getType(this->_id))+", "+
std::string("input ")+fr->getName(this->_id)+"."+nr->getFceInputName(this->_id,i)+" has different type - INPUT: "+
tr->getTypeIdName(toType)+" != RESOURCE: "+tr->getTypeIdName(fromType),
fr,i,r);
return false;
}
bool Function::_outputBindingCheck(
std::shared_ptr<FunctionRegister>const&fr ,
std::shared_ptr<Resource> const&data)const{
assert(this!=nullptr);
assert(fr!=nullptr);
assert(fr->getTypeRegister()!=nullptr);
auto tr = fr->getTypeRegister();
if(data == nullptr)return true;
auto toType = tr->getFceReturnTypeId(fr->getType(this->_id));
auto fromType = data->getId();
if(tr->areConvertible(toType,fromType))return true;
ge::core::printError(GE_CORE_FCENAME,
"function: "+fr->getName(this->getId())+
" of type: "+fr->getTypeRegister()->getTypeIdName(fr->getType(this->getId()))+
", output has different type - OUTPUT: "+
tr->getTypeIdName(toType)+" != RESOURCE: "+tr->getTypeIdName(fromType),
fr,data);
return false;
}
void Function::setSignalingDirty(){
this->Statement::setSignalingDirty();
for(auto const&x:this->_targetResources)
x->_setSignalingDirty();
}
bool Function::_recOutputBindingCircularCheck(
std::shared_ptr<FunctionRegister>const&fr ,
std::set<Function const*> &visited ,
std::shared_ptr<Resource> const&resource)const{
assert(this!=nullptr);
assert(fr!=nullptr);
if(visited.count(this)!=0)return true;
size_t n = fr->getNofInputs(this->getId());
for(size_t i=0;i<n;++i){
auto fce = this->getInputFunction(i);
if(!fce)continue;
if(fce->getOutputData()==resource)return false;
}
visited.insert(this);
for(size_t i=0;i<n;++i){
auto fce = this->getInputFunction(i);
if(!fce)continue;
if(!fce->_recOutputBindingCircularCheck(fr,visited,resource))
return false;
}
return true;
}
bool Function::_inputBindingCircularCheck(
std::shared_ptr<FunctionRegister>const&fr ,
std::shared_ptr<Function> const&function)const{
assert(this!=nullptr);
assert(fr!=nullptr);
if(function==nullptr)return true;
assert(function->getOutputData()!=nullptr);
auto o = this->getOutputData();
if(o==nullptr)return true;
if(o==function->getOutputData()){
ge::core::printError(GE_CORE_FCENAME,"1 binding function as input would result in fast circular dependence, you should use bindInputAsVariable in some point",fr,function);
return false;
}
if(!function->_outputBindingCircularCheck(fr,o)){
ge::core::printError(GE_CORE_FCENAME,"2 binding function as input would result in fast circular dependence, you should use bindInputAsVariable in some point",fr,function);
return false;
}
return true;
}
bool Function::_outputBindingCircularCheck(
std::shared_ptr<FunctionRegister>const&fr ,
std::shared_ptr<Resource> const&resource)const{
assert(this!=nullptr);
if(resource==nullptr)return true;
auto visited = std::set<Function const*>();
if(!this->_recOutputBindingCircularCheck(fr,visited,resource)){
ge::core::printError(GE_CORE_FCENAME,"binding resource as output would result in fast cicular dependence, you should use bindInputAsVariable in some point",fr,resource);
return false;
}
return true;
}
|
73bad0b4578386f4d3c800233126feeafd433f2e | 33a26cc8f71f6af164a69bc228638be28abd345d | /main.cpp | 7c7a4f0fc61c95c2e8c76085150142c900239af1 | [] | no_license | Czapkaman/S-Des | 84d2da17cad2f51de7c314c40dfe76ba6ab7ebfd | f9a9cd346bd146318979f86d71bf445bea8aa9cd | refs/heads/master | 2020-04-30T02:48:03.287195 | 2019-03-19T22:32:56 | 2019-03-19T22:32:56 | 176,569,923 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,036 | cpp | main.cpp | #include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <cstdint>
using namespace std;
constexpr int8_t Sbox1[16] = { 1, 0, 3, 2, 3, 2, 1, 0, 0, 2, 1, 3, 3, 1, 3, 2 };
constexpr int8_t Sbox2[16] = { 0, 1, 2, 3, 2, 0, 1, 3, 3, 0, 1, 0, 2, 1, 0, 3 };
bool Read(vector<char> &Vec, const char* File_name)
{
ifstream RawText(File_name, ifstream::in);
if (RawText.is_open())
{
char temp = 0;
int i = 0;
RawText.seekg(0, RawText.end);
i = RawText.tellg();
Vec.reserve(i);
RawText.seekg(0, RawText.beg);
while (i--)
{
temp = RawText.get();
if (temp > 64 && temp < 91) temp = (temp + 32 - 19) % 26 + 97;
if ((temp < 97 || temp > 122) && !(temp > 47 && temp <58))continue;
Vec.emplace_back(temp);
}
RawText.close();
return 0;
}
else
{
cout << "Error, cannot find \"" << File_name << "\"" << endl;
return 1;
}
}
void PrintBitsIn2x2BitsBlock(vector<bool> &text)
{
for (unsigned j = 0; j < text.size(); j+=4)
{
cout << text[j] << text[j + 1] << " ";
}
cout << endl;
for (unsigned j = 2; j < text.size(); j += 4)
{
cout << text[j] << text[j + 1] << " ";
}
cout << endl;
}
void PrintBitsInHex(vector<bool> &text)
{
int temp = 0;
for (unsigned j = 0; j < text.size(); j += 4)
{
if (j % 8 == 0 && j > 1)
{
cout << " ";
}
temp = text[0 + j] * 8 + text[1 + j] * 4 + text[2 + j] * 2 + text[3 + j] * 1;
if (temp < 10)
{
cout << temp;
}
else
{
cout << static_cast<char>(97 + temp - 10);
}
}
cout << endl;
}
void PrintVecBool(vector<bool> &text)
{
for (auto l : text) cout << l;
cout << endl;
}
void HexToBits(vector<char> &Text, vector<bool> &Bits)
{
for (auto L : Text)
{
if (L < 58)
{
for (int i = 3; i >= 0; i--)
{
Bits.emplace_back((L >> i) & 1);
}
}
else
{
Bits.emplace_back(1);
L += 1;
for (int i = 2; i >= 0; i--)
{
Bits.emplace_back((L >> i) & 1);
}
}
}
if(Bits.size() % 8 != 0)
Bits.insert(Bits.end(), { 0, 0, 0, 0 });
}
void ClearVecIfPossible(vector<bool> &Vec)
{
if (Vec.size() != 0) Vec.clear();
}
vector<bool> P10(vector<bool> &bits, int b0, int b1, int b2, int b3, int b4, int b5, int b6, int b7, int b8, int b9)
{
return { bits[b0], bits[b1], bits[b2], bits[b3], bits[b4], bits[b5], bits[b6], bits[b7], bits[b8], bits[b9] };
}
vector<bool> P4(vector<bool> &bits, int b0, int b1, int b2, int b3)
{
return { bits[b0], bits[b1], bits[b2], bits[b3] };
}
vector<bool> P10w8(vector<bool> &bits)
{
return { bits[5], bits[2], bits[6], bits[3], bits[7], bits[4], bits[9], bits[8] };
}
vector<bool> P4w8(vector<bool> &bits)
{
return { bits[3], bits[0], bits[1], bits[2], bits[1], bits[2], bits[3], bits[0] };
}
vector<bool> P8(vector<bool> &bits, int b0, int b1, int b2, int b3, int b4, int b5, int b6, int b7)
{
vector<bool> temp;
temp.reserve(8);
for (unsigned int j = 0; j < bits.size(); j += 8)
{
temp.insert(temp.end(), { bits[b0 + j], bits[b1 + j], bits[b2 + j], bits[b3 + j], bits[b4 + j], bits[b5 + j], bits[b6 + j], bits[b7 + j] });
}
return temp;
}
vector<bool> operator^ (vector<bool> lhs, vector<bool> rhs)
{
if (lhs.size() != rhs.size())
return { 0 };
for (unsigned int i = 0; i < lhs.size(); i++)
{
lhs[i] = lhs[i] ^ rhs[i];
}
return lhs;
}
vector<bool> ValueOfSBoxs(vector<bool> VecBool)
{
vector<bool> temp;
if (Sbox1[(VecBool[0] * 2 + VecBool[3]) * 4 + (VecBool[1] * 2 + VecBool[2])] == 3)
{
temp.insert(temp.end(), { 1, 1 });
}
else if (Sbox1[(VecBool[0] * 2 + VecBool[3]) * 4 + (VecBool[1] * 2 + VecBool[2])] == 2)
{
temp.insert(temp.end(), { 1, 0 });
}
else if (Sbox1[(VecBool[0] * 2 + VecBool[3]) * 4 + (VecBool[1] * 2 + VecBool[2])] == 1)
{
temp.insert(temp.end(), { 0, 1 });
}
else if (Sbox1[(VecBool[0] * 2 + VecBool[3]) * 4 + (VecBool[1] * 2 + VecBool[2])] == 0)
{
temp.insert(temp.end(), { 0, 0 });
}
if (Sbox2[(VecBool[4] * 2 + VecBool[7]) * 4 + (VecBool[5] * 2 + VecBool[6])] == 3)
{
temp.insert(temp.end(), { 1, 1 });
}
else if (Sbox2[(VecBool[4] * 2 + VecBool[7]) * 4 + (VecBool[5] * 2 + VecBool[6])] == 2)
{
temp.insert(temp.end(), { 1, 0 });
}
else if (Sbox2[(VecBool[4] * 2 + VecBool[7]) * 4 + (VecBool[5] * 2 + VecBool[6])] == 1)
{
temp.insert(temp.end(), { 0, 1 });
}
else if (Sbox2[(VecBool[4] * 2 + VecBool[7]) * 4 + (VecBool[5] * 2 + VecBool[6])] == 0)
{
temp.insert(temp.end(), { 0, 0 });
}
return temp;
}
vector<bool> Round(const bool Which_round, vector<bool> &text, vector<bool> &Key, vector<bool> &SboxsValues)
{
vector<bool> lhs, rhs, rhs2, Sboxs, CryptedText;
for (unsigned int i = 0; i < text.size(); i += 8)
{
lhs.insert(lhs.begin(), { text[0 + i], text[1 + i], text[2 + i], text[3 + i] });
rhs2.insert(rhs2.begin(), { text[4 + i], text[5 + i], text[6 + i], text[7 + i] });
if (Which_round) { lhs.swap(rhs2); }
rhs = P4w8(rhs2) ^ Key;
Sboxs = ValueOfSBoxs(rhs);
SboxsValues.insert(SboxsValues.end(), Sboxs.begin(), Sboxs.end());
lhs = lhs ^ P4(Sboxs, 1, 3, 2, 0);
CryptedText.insert(CryptedText.end(), lhs.begin(), lhs.end());
CryptedText.insert(CryptedText.end(), rhs2.begin(), rhs2.end());
ClearVecIfPossible(lhs);
ClearVecIfPossible(rhs);
ClearVecIfPossible(rhs2);
ClearVecIfPossible(Sboxs);
}
return CryptedText;
}
vector<bool> Crypting(vector<bool> &text, vector<bool> &k_1, vector<bool> &k_2)
{
vector<bool> temp_k_1, temp_k_2, CryptedText_r1, CryptedText_r2;
temp_k_1.reserve(text.size());
temp_k_2.reserve(text.size());
CryptedText_r1 = Round(0, text, k_1, temp_k_1);
PrintBitsInHex(CryptedText_r1);
PrintBitsIn2x2BitsBlock(temp_k_1);
CryptedText_r2 = Round(1, CryptedText_r1, k_2, temp_k_2);
PrintBitsInHex(CryptedText_r2);
PrintBitsIn2x2BitsBlock(temp_k_2);
return CryptedText_r2;
}
vector<bool> Decrypting(vector<bool> &text, vector<bool> &k_1, vector<bool> &k_2)
{
vector<bool> temp_k_1, temp_k_2, CryptedText_r1, CryptedText_r2;
CryptedText_r1 = Round(0, text, k_2, temp_k_1);
CryptedText_r2 = Round(1, CryptedText_r1, k_1, temp_k_2);
return CryptedText_r2;
}
int main()
{
vector<char> Text;
vector<bool> BitsOfText, Keyp, Key1, Key2;
string prompt;
bool check = 0;
if (Read(Text, "tekst.txt"))
{
return 1;
}
else
{
cout << "Warning! Hex values will be without 0x prefix!\n";
BitsOfText.reserve(Text.size() * 4);
HexToBits(Text, BitsOfText);
PrintBitsInHex(BitsOfText);
cout << "Please give 10 bits key: ";
Keyp.reserve(10);
while (cin >> prompt)
{
if (prompt.length() == 1)
{
if (prompt[0] != '0' && prompt[0] != '1')
{
cout << "Invalid input" << prompt[0] << "!\n";
cout << "Please give me key in bits\n";
continue;
}
else if (prompt[0] == '0')
{
Keyp.emplace_back(0);
}
else
{
Keyp.emplace_back(1);
}
}
else if (prompt.length() == 10 - Keyp.size())
{
check = 1;
for (auto b : prompt)
{
if (b != '0' && b != '1')
{
cout << "Invalid input" << b << "!\n";
cout << "Please give me key in bits\n";
check = 0;
break;
}
}
if (check)
{
for (auto b : prompt)
{
if (b == '0')
{
Keyp.emplace_back(0);
}
else
{
Keyp.emplace_back(1);
}
}
}
}
else
{
cout << "Invalid input \"" << prompt << "\"!\n";
cout << "Please give me key bit by bit or " << 10 - Keyp.size() << " bits at once!\n";
}
if (Keyp.size() == 10) break;
}
Keyp = P10(Keyp, 2, 4, 1, 6, 3, 9, 0, 8, 7, 5);
Keyp = P10(Keyp, 1, 2, 3, 4, 0, 6, 7, 8, 9, 5);
Key1 = P10w8(Keyp);
Keyp = P10(Keyp, 2, 3, 4, 0, 1, 7, 8, 9, 5, 6);
Key2 = P10w8(Keyp);
BitsOfText = P8(BitsOfText, 1, 5, 2, 0, 3, 7, 4, 6);
BitsOfText = Crypting(BitsOfText, Key1, Key2);
BitsOfText = P8(BitsOfText, 3, 0, 2, 4, 6, 1, 7, 5);
PrintBitsInHex(BitsOfText);
BitsOfText = P8(BitsOfText, 1, 5, 2, 0, 3, 7, 4, 6);
BitsOfText = Decrypting(BitsOfText, Key1, Key2);
BitsOfText = P8(BitsOfText, 3, 0, 2, 4, 6, 1, 7, 5);
PrintBitsInHex(BitsOfText);
}
return 0;
}
|
816b9e32972c8ec732fcf57a05dd6f400a0457af | 6816e09b41fa626f8b9f3ea9c023bdfcf12e5f67 | /Source/Shooter/Interactable.h | 695881f31bab03a71490e6bf90cefcc7ddfe871b | [] | no_license | garr12100/Unreal_FPS | d8c6c8678818f3f7845b1dbbb598208e8c999e4f | b1a8779baa5c053f1b534d7219eec9ac83a00705 | refs/heads/master | 2020-05-02T09:14:49.759862 | 2019-04-03T18:54:10 | 2019-04-03T18:54:10 | 177,865,990 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 477 | h | Interactable.h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "Interactable.generated.h"
UCLASS()
class SHOOTER_API AInteractable : public AActor
{
GENERATED_BODY()
public:
AInteractable();
UPROPERTY(EditAnywhere)
FString prefix = "Interact with";
UPROPERTY(EditAnywhere)
FString name = "???";
UFUNCTION(BlueprintCallable)
FString GetInteractionString();
};
|
c8178bae18d18ee9c7021847fafd64262dbc0c10 | 54bd6939a439dd8c641f18611dffb1c6587aa1d8 | /src/gestWindow.cpp | 30753d6e410bd2c6ddb40455421a629fe2451cdf | [] | no_license | MissaouiChedy/BlockBreaker | 55baae86495eed2971fb50324ea8c2d016569b0c | 932686ecb33e0864973986d3cee3b920fdfe470c | refs/heads/master | 2021-01-18T09:34:01.405123 | 2016-04-30T09:52:50 | 2016-04-30T09:52:50 | 7,654,321 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,355 | cpp | gestWindow.cpp | #include "gestWindow.h"
#include "mainWindow.h"
GestWindow::GestWindow(MainWindow *window){
this->setParent(window);
valideButton = new QPushButton("Valider");
//connect(valideButton, SIGNAL(clicked()), this, SLOT());
nameLabel = new QLabel("Saisissez Votre Nom: ");
nameText = new QLineEdit();
levelLabel = new QLabel("Niveau de Difficulté: ");
levelBox = new QComboBox();
volumeLabel = new QLabel("Volume: ");
volumeSlider = new QSlider();
volumeSlider->setTickInterval(10);
QHBoxLayout *nameLayout = new QHBoxLayout;
nameLayout->addWidget(nameLabel);
nameLayout->addWidget(nameText);
QHBoxLayout *levelLayout = new QHBoxLayout;
levelLayout->addWidget(levelLabel);
levelLayout->addWidget(levelBox);
QHBoxLayout *volumeLayout = new QHBoxLayout;
volumeLayout->addWidget(volumeLabel);
volumeLayout->addWidget(volumeSlider);
QHBoxLayout *valideLayout = new QHBoxLayout;
valideLayout->addWidget(valideButton);
QVBoxLayout *mainLayout = new QVBoxLayout;
mainLayout->addLayout(nameLayout);
mainLayout->addLayout(levelLayout);
mainLayout->addLayout(volumeLayout);
mainLayout->addLayout(valideLayout);
// QWidget *mainWidget = new QWidget;
// mainWidget->setLayout(mainLayout);
setLayout(mainLayout);
}
GestWindow::~GestWindow(){
delete valideButton;
delete nameText;
delete levelBox;
delete volumeSlider;
}
|
42619e81a89546c8971ce9fe9ed4f5b9b466f953 | 80e56bdfceac35462afcb394d1a3e0a2d97b87a2 | /testPangrams/src/testPangrams.cpp | 7dd86dc6380319c58f674315ab98f6d4c345e8f2 | [] | no_license | dimitarpg13/cpp_testcode | 8c6f338b5a831c35d813f13e5d2c83064accf253 | 9c1a5f2299a8c04cc5cb3dedc8a374063ac65cff | refs/heads/master | 2021-06-06T05:56:10.556943 | 2016-02-27T15:45:57 | 2016-02-27T15:45:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,023 | cpp | testPangrams.cpp | //============================================================================
// Name : testPangrams.cpp
// Author : Dimitar Gueorguiev
// Version :
// Copyright : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
const int capA = 0x41;
const int capZ = 0x5a;
const int smlA = 0x61;
const int smlZ = 0x7a;
char convertToLarge(char ch)
{
return ch - 0x20;
}
bool isSmallCap(char ch)
{
if ( ch >= smlA && ch <= smlZ )
return true;
else
return false;
}
bool isLargeCap(char ch)
{
if ( ch >= capA && ch <= capZ )
return true;
else
return false;
}
bool isLetter(char ch)
{
if ( (ch >= capA && ch <= capZ) ||
(ch >= smlA && ch <= smlZ) )
return true;
else
return false;
}
bool isPangram(char const * cstr)
{
if (cstr == NULL)
return false;
int i=0;
char ch;
bool present[26] = {};
//for (i = 0 ; i < 26; i++)
// present[i]=false;
while (ch = cstr[i++])
{
if (isSmallCap(ch))
{
ch = convertToLarge(ch);
present[ch-capA]=true;
}
else if (isLargeCap(ch))
{
present[ch-capA]=true;
}
}
for (i = 0; i < 26; i++)
if (!present[i])
{
return false;
}
return true;
}
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
//char arr[1000] = "We promptly judged antique ivory buckles for the next prize";
//char arr[1000] = "We promptly judged antique ivory buckles for the prize";
string str;
getline(cin,str);
cout << str << endl;
if (isPangram(str.c_str()))
cout << "pangram";
else
cout << "not pangram";
return 0;
}
|
fe3cf23cb24760014d34687f504bc784bb11d138 | 3bb4de0e45927d99f5509abbab97bc562e3673cf | /include/StateManager.h | 2258a996ab4fb41f5f4c0e44885de186675ab32c | [] | no_license | evheny0/dungeon | fa03547894ed248c6f2952a3df348c5204291fce | 0efcde7fc860d707e72883c03d3b239014dd8917 | refs/heads/master | 2020-06-05T03:29:12.238748 | 2014-04-24T23:13:10 | 2014-04-24T23:13:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 627 | h | StateManager.h | #ifndef STATE_MANAGER_H
#define STATE_MANAGER_H
#include <stack>
#include "CoreTypes.h"
#include "states/IState.h"
#include "states/Splash.h"
class IState;
class StateManager {
std::stack<IState *> statesStack;
IState *currentState;
IState *nextState;
public:
StateManager();
~StateManager();
bool isRunning();
void input(sf::Event &event);
void update();
void show();
void pushState(IState *state);
void popState();
void resetState();
void setNextState(IState *state);
private:
void cleanUpStates();
void updateCurrentState();
};
#include "Game.h"
#endif
|
82378f740d135e6e227dfc9bda60986a7cdf951a | 6b0d3e922263ae1e00850201aeaa4daa4532f0d4 | /src/app/helloBlinnPhong/main.cpp | cde12b8a7d8174e4b08300039ecf8bed630468a8 | [] | no_license | j8307042003/LearnOpenGL | 7a9392685d2a5e5e7e41ab0da9233ab3acd43060 | 83e336e81ba5afa6c3b176d254e6cfda61835fb9 | refs/heads/master | 2021-01-12T00:47:43.127224 | 2019-03-06T16:31:21 | 2019-03-06T16:31:21 | 78,293,547 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,586 | cpp | main.cpp | #include <stdio.h>
#include <stdlib.h>
#include <vector>
#include "SOIL\SOIL.h"
#include "stb\stb_image.h"
#if defined _WIN32
// OpenGL on Windows needs Windows.h
#include <Windows.h>
#endif
// GLEW
#define GLEW_STATIC
#include <GL/glew.h>
// GLFW
#include <GLFW/glfw3.h>
#include "glm\glm.hpp"
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include "common\Shader.h"
#include "common\Camera.h"
#include "common\Model.h"
#include <queue>
#include <thread>
#include <mutex>
// Properties
GLuint screenWidth = 1600, screenHeight = 900;
// Function prototypes
void key_callback(GLFWwindow* window, int key, int scancode, int action, int mode);
void scroll_callback(GLFWwindow* window, double xoffset, double yoffset);
void mouse_callback(GLFWwindow* window, double xpos, double ypos);
void Do_Movement();
unsigned int loadTexture(const char *path, bool gammaCorrection);
// Camera
common::Camera camera(glm::vec3(0.0f, 0.0f, 3.0f));
bool keys[1024];
GLfloat lastX = 400, lastY = 300;
bool firstMouse = true;
bool blinn = false;
bool blinnKeyPressed = false;
bool gamma = false;
bool gammaKeyPressed = false;
GLfloat deltaTime = 0.0f;
GLfloat lastFrame = 0.0f;
// The MAIN function, from here we start our application and run our Game loop
int main()
{
// Init GLFW
glfwInit();
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
GLFWwindow* window = glfwCreateWindow(screenWidth, screenHeight, "LearnOpenGL", nullptr, nullptr); // Windowed
glfwMakeContextCurrent(window);
// Set the required callback functions
glfwSetKeyCallback(window, key_callback);
glfwSetCursorPosCallback(window, mouse_callback);
glfwSetScrollCallback(window, scroll_callback);
// Options
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
// Initialize GLEW to setup the OpenGL Function pointers
glewExperimental = GL_TRUE;
glewInit();
// Define the viewport dimensions
glViewport(0, 0, screenWidth, screenHeight);
// no need to use full power in this case
glfwSwapInterval(1);
// Setup some OpenGL options
glEnable(GL_DEPTH_TEST);
glEnable(GL_MULTISAMPLE);
glEnable(GL_BLEND);
//glEnable(GL_FRAMEBUFFER_SRGB);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
// Setup and compile our shaders
common::Shader shader("shader/blinn/blinn.vs", "shader/blinn/blinn.fs");
float planeVertices[] = {
// positions // normals // texcoords
10.0f, -0.5f, 10.0f, 0.0f, 1.0f, 0.0f, 10.0f, 0.0f,
-10.0f, -0.5f, 10.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f,
-10.0f, -0.5f, -10.0f, 0.0f, 1.0f, 0.0f, 0.0f, 10.0f,
10.0f, -0.5f, 10.0f, 0.0f, 1.0f, 0.0f, 10.0f, 0.0f,
-10.0f, -0.5f, -10.0f, 0.0f, 1.0f, 0.0f, 0.0f, 10.0f,
10.0f, -0.5f, -10.0f, 0.0f, 1.0f, 0.0f, 10.0f, 10.0f
};
unsigned int VAO, VBO;
glGenVertexArrays(1, &VAO);
glGenBuffers(1, &VBO);
glBindVertexArray(VAO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glBufferData( GL_ARRAY_BUFFER, sizeof( planeVertices ), planeVertices, GL_STATIC_DRAW );
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void*)0);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void*)(3 * sizeof(float)));
glEnableVertexAttribArray(2);
glVertexAttribPointer(2, 2, GL_FLOAT, GL_FALSE, 8 * sizeof(float), (void*)(6 * sizeof(float)));
glBindVertexArray(0);
GLuint planeTexture = loadTexture("texture/wood.png", true);
shader.use();
shader.SetInt("texture1", 0);
glm::vec3 lightPos(0.0f, 0.0f, 0.0f);
// Game loop
while (!glfwWindowShouldClose(window))
{
// Set frame time
GLfloat currentFrame = glfwGetTime();
deltaTime = currentFrame - lastFrame;
lastFrame = currentFrame;
// Check and call events
glfwPollEvents();
Do_Movement();
glClearColor(0.1f, 0.1f, 0.1f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glm::mat4 projection = glm::perspective(camera.Zoom, (float)screenWidth / (float)screenHeight, 0.1f, 1000.0f);
glm::mat4 view = camera.GetViewMatrix();
shader.SetMat4("projection", projection);
shader.SetMat4("view", view);
shader.SetVec3( "viewPos", camera.position );
shader.SetVec3("lightPos", lightPos);
shader.SetInt("blinn", blinn);
shader.SetInt("gamma", gamma);
glBindVertexArray(VAO);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, planeTexture);
glDrawArrays(GL_TRIANGLES, 0, 6);
glfwSwapBuffers(window);
//std::cout << blinn << "\n";
//std::cout << glfwGetTime() - lastFrame << " seconds\n";
//std::cout << 1 / (glfwGetTime() - currentFrame) << " fps\n";
}
glfwTerminate();
return 0;
}
#pragma region "User input"
// Moves/alters the camera positions based on user input
void Do_Movement()
{
// Camera controls
if (keys[GLFW_KEY_W])
camera.ProcessKeyboard(FORWARD, deltaTime);
if (keys[GLFW_KEY_S])
camera.ProcessKeyboard(BACKWARD, deltaTime);
if (keys[GLFW_KEY_A])
camera.ProcessKeyboard(LEFT, deltaTime);
if (keys[GLFW_KEY_D])
camera.ProcessKeyboard(RIGHT, deltaTime);
if (keys[ GLFW_KEY_B] && !blinnKeyPressed)
{
blinn = !blinn;
blinnKeyPressed = true;
}
if (!keys[ GLFW_KEY_B] )
{
blinnKeyPressed = false;
}
if (keys[GLFW_KEY_G] && !gammaKeyPressed)
{
gamma = !gamma;
gammaKeyPressed = true;
}
if (!keys[GLFW_KEY_G])
{
gammaKeyPressed = false;
}
}
// Is called whenever a key is pressed/released via GLFW
void key_callback(GLFWwindow* window, int key, int scancode, int action, int mode)
{
if (key == GLFW_KEY_ESCAPE && action == GLFW_PRESS)
glfwSetWindowShouldClose(window, GL_TRUE);
if (action == GLFW_PRESS)
keys[key] = true;
else if (action == GLFW_RELEASE)
keys[key] = false;
}
void mouse_callback(GLFWwindow* window, double xpos, double ypos)
{
if (firstMouse)
{
lastX = xpos;
lastY = ypos;
firstMouse = false;
}
GLfloat xoffset = xpos - lastX;
GLfloat yoffset = lastY - ypos;
lastX = xpos;
lastY = ypos;
camera.ProcessMouseMovement(xoffset, yoffset);
}
void scroll_callback(GLFWwindow* window, double xoffset, double yoffset)
{
camera.ProcessMouseScroll(yoffset);
}
#pragma endregion
// utility function for loading a 2D texture from file
// ---------------------------------------------------
unsigned int loadTexture(char const * path, bool gammaCorrection)
{
unsigned int textureID;
glGenTextures(1, &textureID);
int width, height, nrComponents;
unsigned char *data = stbi_load(path, &width, &height, &nrComponents, 0);
if (data)
{
GLenum internalFormat;
GLenum dataFormat;
if (nrComponents == 1)
{
internalFormat = dataFormat = GL_RED;
}
else if (nrComponents == 3)
{
internalFormat = gammaCorrection ? GL_SRGB : GL_RGB;
dataFormat = GL_RGB;
}
else if (nrComponents == 4)
{
internalFormat = gammaCorrection ? GL_SRGB_ALPHA : GL_RGBA;
dataFormat = GL_RGBA;
}
glBindTexture(GL_TEXTURE_2D, textureID);
glTexImage2D(GL_TEXTURE_2D, 0, internalFormat, width, height, 0, dataFormat, GL_UNSIGNED_BYTE, data);
glGenerateMipmap(GL_TEXTURE_2D);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
stbi_image_free(data);
}
else
{
std::cout << "Texture failed to load at path: " << path << std::endl;
stbi_image_free(data);
}
return textureID;
}
|
34aa0c3ff8006f12ad259dd2cd45421ac577820a | 4f458aa251c6ce8ad848260bdc2ed54b78ae9b32 | /Test/SP0256-AL2/SP0256-AL2.ino | cc913bb3ceb39949ea656cb2710d8e9bd7af403f | [] | no_license | Luke1962/robot | f91dac3f925565535ba9f2f39549a48cd9fc55b7 | 4259356ca2f184efac848dcc473383dfcc661dbc | refs/heads/master | 2020-05-29T18:07:59.389130 | 2018-09-09T09:59:56 | 2018-09-09T09:59:56 | 51,524,325 | 1 | 3 | null | null | null | null | ISO-8859-1 | C++ | false | false | 13,937 | ino | SP0256-AL2.ino | /*
* interfacing to an old 1980s speech chip
*
* General Instruments SPO-256-AL2 pinouts
* 1 V_SS (aka ground)
* 2 ~RESET
* 3 ROM_DISABLE (disables external ROM)
* 4 C1 (external ROM control lines)
* 5 C2
* 6 C3
* 7 V_DD (power for non-CPU bits)
* 8 SBY (standby; output)
* 9 ~LRQ (load request; output)
* 10 A8
* 11 A7
* 12 SER_OUT (I/O to external ROM)
* 13 A6
* 14 A5
* 15 A4
* 16 A3
* 17 A2
* 18 A1
* 19 SE (ALD strobe [mode] enable)
* 20 ~ALD (address load)
* 21 SER_IN (I/O from external ROM)
* 22 TEST
* 23 V_D1 (power for CPU)
* 24 DIGITAL_OUT (10kHz PWM sound)
* 25 ~SBY_RESET
* 26 ROM_CLOCK (clock for external ROM; output)
* 27 OSC1 (datasheet requests a 3.12MHz crystal, but that is very hard to find,
* 28 OSC2 and many people report using a common 3.59 crystal without any side effects)
*
* Support parts (all optional, it turns out)
* 3.12 MHz crystal (though anything up to and including 3.59 MHz apparently works fine)
* 2x22 pF caps for the crystal
* 100 K resistor to pull up pins 2 and 25
* 0.1 uF cap to slow the pull up on pins 2 and 25 (works as a reset circuit)
* 33 K resistor for low-pass filter
* 0.022 uF cap for low-pass filter
* 1 uF cap for output decoupling
* one diagram has a diode also helping pull up pins 2 and 25, which discharges the capacitor if power blips on and off faster than the resistor will,
* but that is unnecessary for non-production use.
* another diagram shows two output filters in series, using 2x (33K R + 0.022 uF C)
*
* and to amplify the output to drive a speaker any basic opamp will do. One example has:
* 386 opamp
* 3x 0.1 uF caps for power debounce
* 100 uF cap for output decoupling (another circuit shows a 220 uF here; it doesn't matter much)
* 10 uf cap for ?
*
*
* References:
* http://www.atarimagazines.com/v5n9/TalkingTypewriter.html
* http://www.cpcwiki.eu/imgs/e/eb/SV_SPO256_001.jpg
* http://analog.katorlegaz.com/analog_1985-04_120dpi_jpeg_cropped/analog_1985-04_065.html
*
*
* In truth I found that the speakString chip was so unpicky about the clock input that I could
* drive its clock using a timer on the arduino running at 16MHz/6 = 2.66 MHz, outputting on
* a pin on the atmel, and sending that into the OSC1 pin of the SPO.
* #define DRIVE_CLOCK_USING_ATMEL to enable this and avoid needing a crystal and supporting caps.
*
* Secondly the reset circuits are done using an RC circuit (the 100k resistor and the 0.1 uF capacitor
* which pull pins 2 and 25 slowly up), can be driven from a arduino pin.
* #define DRIVE_RESET_USING_ATMEL to enable this and avoid needing the R/C circuit. (Also this lets
* you reset the SPO whenver the arduino resets. otherwise only power-on resets the SPO)
*
* Thirdly the 33K/0.22uF low-pass filtering of the output of pin 24, and subsequent amplification of
* the result using an opamp, seems pointless. A cheap moving-coil speaker (I used an old over-the-ear earphone)
* has enough inductance to act as a low-pass filter on its own, when driven with the 5V square wave coming
* from pin 24.
* If I used a piezo speaker then the output was buzzy. However the RC filtering didn't reduce the buzz much
* at all. Neither did two stages of the same filtering. And the view on the oscilloscope showed the signal
* was still spikey and ugly. Plus the opamp part was delicate to keep from clipping. Anyway the opamp isn't
* going to make a louder signal than 5V peak-to-peak unless it has its own power supply.
*
* So in the end the entire circuit is SPO driving a speaker directly, and some wires connecting the SPO to
* power, ground, and 10 arduino pins as defined below.
*
*/
// Un/comment as needed/desired.
//#define DRIVE_CLOCK_USING_ATMEL
#define DRIVE_RESET_USING_ATMEL
#include <MyRobotLibs\dbg.h>
#include <SP0256-AL2\SP0256-AL2.h>
// ci vuole questo include, anche se non usato perchè altrimenti il linker da errore
// in quanto compila anche robot.cpp che sta nello stesso folder di SP252-AL
#include <TinyGPSplus\TinyGPS++.h> //se manca non compila a causa del robot.cpp nella stessa cartella di robot\Commands_Enum.h
String s;
//uint8_t p; //phoneme
//#define INPUTCHARARRAYSIZE 255
char InputCharArray[INPUTCHARARRAYSIZE]; // string (char array) that holds bytes of incoming string
// read a string from the serial and store it in an array
// this bit of code adapted from WilsonSerialIO.pde
// http://userwww.sfsu.edu/~swilson/
void readSerialString( char *strArray ) {
int i = 0;
if (Serial.available()) {
//Serial.print("reading Serial String: "); //optional: for confirmation
while (Serial.available() > 0){
strArray[i] = Serial.read();
i++;
Serial.print( strArray[(i - 1)] ); // for confirmation
}
strArray[i] = '\0'; // append a proper null to end of string
Serial.println(); // for confirmation
}
}
// write a phoneme to the SPO chip
static void sayPhoneme(uint8_t phoneme) {
// first wait for LRQ to assert low, so there is room in the SPO's FIFO
while (digitalRead(SPO_LRQ));
// write the phoneme to A1-A6
digitalWrite(SPO_A1,(phoneme>>0)&1 ? HIGH : LOW);
digitalWrite(SPO_A2,(phoneme>>1)&1 ? HIGH : LOW);
digitalWrite(SPO_A3,(phoneme>>2)&1 ? HIGH : LOW);
digitalWrite(SPO_A4,(phoneme>>3)&1 ? HIGH : LOW);
digitalWrite(SPO_A5,(phoneme>>4)&1 ? HIGH : LOW);
digitalWrite(SPO_A6,(phoneme>>5)&1 ? HIGH : LOW);
// pulse ALD low for between 200ns and 1100 ns
digitalWrite( SPO_ALD, LOW );// digitalWrite( SPO_ALD, HIGH );
delayMicroseconds(5); // when checked on a scope we are producing pulses around 4.8usec wide just from the overhead of digitalWrite(), so no explict additional delay is needed
digitalWrite(SPO_ALD,HIGH); // digitalWrite( SPO_ALD, LOW );
// make sure ALD stays high at least 1.1 usec before it pulses low again. we do this crudely
delayMicroseconds(2); // like above, we don't actually need to enforce this that strongly because digitalWrite() is so slow
}
// Converte un carattere in un fonema basandosi anche sul carattere successivo c1
// se c1 è muto (es 'h') skipNext è messo a 1 altrimenti vale 0
//uint8_t CharToPhoneme( char c ,char c1, int &skipNext)
//{
// // c= carattere da pronunciare
// // c1 carattere successivo
// skipNext =0; //inizializzo
// if(c1=='\0')
// {
// c1 = ' ';
// }
// uint8_t p;
// Serial.print( c );
// switch (c)
// {
// case ' ': return pPA3;
//
// case 'a': case 'A': p = pAX; break;
// case 'b': case 'B': p = pBB2; break;
// case 'c': case 'C':
//
// switch (c1)
// {
// case 'i':case 'I' :case 'e': case 'E' :// C dolce
// p = pCH; break;
// case 'o':case 'O': // uso la k che suona meglio
// p = pKK3; break;
// case 'h':case 'H': // uso la k che suona meglio
// p = pKK1;
// skipNext = 1;
// break;
// default: //c dura
// p = pKK2; break;
// }
//
// p = pCH; break;
// case 'd': case 'D': p = pDD2; break;
// case 'e': case 'E': p = pEH; break;
// case 'f': case 'F': p = pFF; break;
// case 'g': case 'G':
// switch (c1){
// case 'i':case 'I' :case 'e': case 'E' :// g dolce
// p = pJH; break;
// case 'h':case 'H' :// g dura
// p = pGG1;
//
// break;
// default:
// p = pGG1; break;
// }
//
//
//
// case 'i': case 'I': p = pIY; break;
// case 'j': case 'J': p = pJH; break;
// case 'k': case 'K': p = pKK1; break;
// case 'l': case 'L': p = pLL; break;
// case 'm': case 'M': p = pMM; break;
// case 'n': case 'N':
// p = pNN1; break;
// case 'o': case 'O':
// //switch (c1){
// //case 'i':case 'I':
// // p = pOY; break;
// //default:
// //
// //}
// p = pOW; break;
// case 'p': case 'P': p = pPP; break;
// case 'q': case 'Q': p = pKK3; break;
// case 'r': case 'R': p = pRR1; break; //anche RR2
// case 's': case 'S':
// switch (c1){
// case 'c':case 'C':
// p = pSH;
// skipNext = 1;
// break;
// default:
// p = pSS; break;
// }
//
// //p = pSS; break;
// case 't': case 'T':
// //switch (c1){
// //case 't':case 'T':case 's':case 'S':
// // p = pTT1; break;
// //case 'h': case 'H':
// // p = pTH; break;
// //default:
// p = pTT2; break;
// //}
//
// //p = pTH; break;
// case 'u': case 'U': p = pUW2; break;
// case 'v': case 'V': p = pVV; break;
// case 'z': case 'Z': p = pZZ; break;
//
// default:
// p = pPA3;//pausa
// break;
//
// }
// return p;
//};
/// Pronuncia una frase contenuta in InputCharArray[]
void speakArrayOfChar( char *strArray ){
int i = 0; //indice array
int skipNext = 0; //indica quanti caratteri successivi saltare es. nel caso della sequenza '..ch..' ritorna 1 perchè la h deve salterla
uint8_t p; //phoneme
char c; char c1;
while (strArray[i] != '\0'){
c = strArray[i];
c1 = strArray[i + 1];
p = CharToPhoneme( c, c1, skipNext );
i += skipNext;
skipNext = 0;
sayPhoneme(p );
//Serial.println( phonemes[p] );
i++;
}
sayPhoneme( pPA5 );
}
void speakString(String s) {
// 1 Converto la stringa in ingresso in un array di caratteri
//2 pronuncio la sequenza
s.toCharArray(InputCharArray, INPUTCHARARRAYSIZE);
speakArrayOfChar(InputCharArray);
}
void setup() {
Serial.begin(9600);
Serial.println( "SP0256-AL2 Terminal" );
// configure LRQ from the SPO as an input
pinMode(SPO_LRQ,INPUT_PULLUP); //pinMode(SPO_LRQ,INPUT);
// write A1-A6 low and configure them as output
pinMode(SPO_A1,OUTPUT);
pinMode(SPO_A2,OUTPUT);
pinMode(SPO_A3,OUTPUT);
pinMode(SPO_A4,OUTPUT);
pinMode(SPO_A5,OUTPUT);
pinMode(SPO_A6,OUTPUT);
digitalWrite(SPO_A1,LOW);
digitalWrite(SPO_A2,LOW);
digitalWrite(SPO_A3,LOW);
digitalWrite(SPO_A4,LOW);
digitalWrite(SPO_A5,LOW);
digitalWrite(SPO_A6,LOW);
// write ALD high (idle)
pinMode(SPO_ALD,OUTPUT);
digitalWrite(SPO_ALD,HIGH);
// note that the above operation may have caused a low->high transition, but since the SPO latches on a high->low transition this edge should be ignored by the SPO
#ifdef DRIVE_CLOCK_USING_ATMEL // set to 1 to generate the clock signal using a timer on the arduino.
// I need a approx 3.14 MHz signal to generate a clock for the SPO
// so I use timer 2 to generate as high a freq signal as I can and feed that into the OSC1 input of the SPO.
// running timer 2 in CTC mode with OCR2A = 0 means it flips as fast as possible
// makes the OC2A output toggle at f_IO/(2*N*(1+OCR2A), where N=prescalar
// by setting N(prescalar)=1 and OCR2A=2 I'll get a 16MHz/6 = 2.66MHz signal, which I hope is enough
// (the other possibility is 4MHz)
// first setup so OC2A output is sent to the OC2A pin (pin 17 on the 28-pin DIP package)
// pin 17 is MOSI/OC2A/PCINT3, or port B bit 3
pinMode(SPO_OSC1,OUTPUT); // equivalent to DDRB |= (1<<3);
// make sure timer2 is powered (it should be, but just in case)
PRR &= ~(/*PRTIM2*/1<<6);
// NOTE: Port B bit 3 on an arduino uno maps to the board pin 11 (digital)
// then configure timer 2 to togging OC2A at as close to the desired frequency as we can get
TCCR2B = (/*CS2=stopped*/0<<0); // keep the clock stopped as we configure the timer
TIMSK2 = 0; // no interrupts
TCNT2 = 0; // reset count to 0
ASSR = 0; // use internal CLK_IO clock source
OCR2A = 2; // 1 -> 4MHz, 2 -> 2.66MHz on pin OC2A
OCR2B = 0xff; // to keep it out of the way
// NOTE WELL: observation of the OC2A pin with an oscilloscope show that I am not reading the manual right, or the manual isn't right
// If I set WGM2=2 (CTC mode) then OC2A toggles at 8MHz, no matter the value of OCR2A.
// And if I set WGM2=7 (Fast PWM mode) then OC2A toggles at 16MHz/(2*(1+OCR2A) as would be expected in CTC mode
// Since the latter mode turns out to generate the signal I want (2.66MHz) I use it, even though I don't fully understand why it works
TCCR2A = (/*COM2A=toggle OC2A on match*/1<<6) + (/*WGM2=CTC*/3<<0);
TCCR2B = (/*WGM2*/1<<3) + (/*CS2=CLK_IO (prescalar=1)*/1<<0); // and upper bit of WGM2 is 0; note that the timer starts running once prescalar is configured, so we do this last
TIFR2 = TIFR2; // toss away any accidental pending interrupts (not that it matters, just being neat & tidy)
#endif
#ifdef DRIVE_RESET_USING_ATMEL // set to 1 to drive the resets from the arduino
// hold SPO_RESET low for 100 msec (way more than would be needed), then pull it high
pinMode(SPO_RESET,OUTPUT);
digitalWrite(SPO_RESET,LOW);
delay(100);
digitalWrite(SPO_RESET,HIGH);
#endif
// and give the SPO time to get initialized
delay(1000);
// sayPhoneme(pHH1);sayPhoneme(pAE);sayPhoneme( pLL);sayPhoneme(pLL );sayPhoneme(pAW );
s = " Hello io sono arduino";
//s.toCharArray( InputCharArray, 256 );
//speakArrayOfChar( InputCharArray );
speakString( s );
speakString("t");
Serial.setTimeout( 1000 );
}
void loop() {
while(!Serial.available()>0){}
s = "";
s = Serial.readString();
if (s!="")
{
s.toCharArray( InputCharArray, INPUTCHARARRAYSIZE );
if (strlen( InputCharArray ) == 1){
speakCodedSentence( InputCharArray[0] );
}
else //stringa da pronunciare
{
speakString( s );
//Serial.println( s );
}
}
}
//void speakCodedSentence( char c ){
// // pronuncia una frase codificata da un singolo carattere
// switch (c)
// {
// case 't': test(); break;
// case 'k': speakString("OKEI"); break;
// case 'h': speakString("hello"); break;
// case 'f': speakString("avanti"); break;
// case 'b': speakString("indietro"); break;
// case 'l': speakString("sinistra"); break;
// case 'r': speakString("destra"); break;
// case 'o': speakString("oi oi"); break;
//
// default:
// break;
// }
//
//
//
//}
/// pronuncia il vocabolario
void test(){
speakString( F("OKEI ") );
speakString( F("no ") );
speakString( F("no okei") );
speakString( F("oi oi") );
speakString( F("chi sei ") );
speakString( F("ki sei ") );
};
|
db9aec2d2da1099abccaa051fbc79258de9e092f | 6e8b526ccfef9708d2417ffc32a03db16c9dd6ad | /tp1/sources/Reseau.cpp | 75546efb2f0f632007684f788e3919775b72da4f | [] | no_license | ArchSirius/log2810 | 0005428e3a5552f9e6d785be3b24bd433cb629d5 | e36985d9a0776ed5822f6723968f2e415642820a | refs/heads/master | 2021-03-27T12:33:30.588088 | 2015-04-13T16:32:55 | 2015-04-13T16:32:55 | 49,438,950 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,206 | cpp | Reseau.cpp | /****************************************************************************
* Fichier : Reseau.cpp
* Auteur : Jules Favreau-Pollender, Francis Rochon, Samuel Rondeau
* Date : 26 février 2015
* Mise à jour : 09 mars 2015
* Description : Implementation de la classe Reseau
****************************************************************************/
#include "headers/Reseau.h"
#include <limits>
/****************************************************************************
* Fonction : Reseau::Reseau
* Description : Constructeur par defaut
* Paramètres : aucun
* Retour : aucun
****************************************************************************/
Reseau::Reseau()
: coutFil(0), coutSansFil(0) , matriceUpdated(false), coutsUpdated(false) {
}
/****************************************************************************
* Fonction : Reseau::Reseau
* Description : Constructeur par paramètre
* Paramètres : (unsigned int) pCoutFil : le cout des connexions filaire
(unsigned int) pCoutSansFil : le cout des connexions sans fil
* Retour : aucun
****************************************************************************/
Reseau::Reseau(unsigned int pCoutFil, unsigned int pCoutSansFil)
: coutFil(pCoutFil), coutSansFil(pCoutSansFil), matriceUpdated(false), coutsUpdated(false) {
}
/****************************************************************************
* Fonction : Reseau::~Reseau
* Description : Destructeur du reseau qui detruit les noeuds
* Paramètres : auncun
* Retour : aucun
****************************************************************************/
Reseau::~Reseau(){
for (map<unsigned int, Noeud*>::iterator it = noeuds.begin();
it != noeuds.end();)
{
delete it->second;
it = noeuds.erase(it);
}
}
/****************************************************************************
* Requis fonctionnel 1
* Fonction : Reseau::implanter
* Description : permet d'implanter le reseau à l'aide de fichiers texte
* Paramètres : aucun
* Retour : aucun
****************************************************************************/
void Reseau::implanter(){
// Lire reseau.txt et établir connexions
ifstream fichier("reseau.txt");
if (fichier)
{
string input, token;
vector<string> relation;
unsigned int id1, id2;
while (!fichier.eof())
{
relation.clear();
getline(fichier, input);
istringstream ss(input);
while (getline(ss, token, '-'))
relation.push_back(token);
//Conversion des string en bons types
id1 = atoi(relation[0].c_str());
id2 = atoi(relation[1].c_str());
// Connecter
map<unsigned int, Noeud*>::iterator it1 = noeuds.find(id1);
map<unsigned int, Noeud*>::iterator it2 = noeuds.find(id2);
if (it1 != noeuds.end() && it2 != noeuds.end() && it1 != it2){
(it1->second)->connecter(it2->second);
}
else
cout << "Id introuvable" << endl;
}
matriceGen();
}
else
cout << "Impossible d'ouvrir le fichier" << endl;
}
/****************************************************************************
* Requis fonctionnel 2
* Fonction : Reseau::afficher
* Description : permet d'afficher la topologie du reseau
* Paramètres : aucun
* Retour : aucun
****************************************************************************/
void Reseau::afficher() const{
for (pair<const unsigned int, Noeud*> n : noeuds)
cout << *(n.second) << endl;
}
/****************************************************************************
* Fonction : Reseau::afficher
* Description : permet d'afficher un noeud par id
* Paramètres : (unsigned int) id : le id du noeud qu'on veut afficher
* Retour : aucun
****************************************************************************/
void Reseau::afficher(unsigned int id) const{
map<unsigned int, Noeud*>::const_iterator it = noeuds.find(id);
if (it != noeuds.end())
cout << *(it->second) << endl;
else
cout << "Noeud introuvable" << endl;
}
/****************************************************************************
* Fonction : Reseau::ajouter
* Description : permet d'ajouter un noeud au réseau sans faire de connexions
* Paramètres : (Noeud*) noeud : le noeud a ajouter au map
* Retour : aucun
****************************************************************************/
void Reseau::ajouter(Noeud* noeud){
noeuds.insert(pair<unsigned int, Noeud*>(noeud->getId(), noeud));
matriceUpdated = false;
coutsUpdated = false;
}
/****************************************************************************
* Requis fonctionnel 4
* Fonction : Reseau::ajouterConnecter
* Description : permet d'ajouter un noeud au réseau et de le connecter avec un autre noeud
* Paramètres : (Noeud*) noeudAjoute : le noeud a ajouter au map
: (unsigned int) idConnecteur : le id du noeud sur lequel on veut connecter
* Retour : aucun
****************************************************************************/
void Reseau::ajouterConnecter(Noeud* noeudAjoute, unsigned int idConnecteur) {
map<unsigned int, Noeud*>::iterator it = noeuds.find(idConnecteur);
if (it != noeuds.end())
{
//si la connexion est reussit, on ajoute le noeud au map
if (noeudAjoute->connecter(it->second))
{
noeuds.insert(pair<unsigned int, Noeud*>(noeudAjoute->getId(), noeudAjoute));
matriceUpdated = false;
coutsUpdated = false;
}
}
else
cout << "Id introuvable" << endl;
}
/****************************************************************************
* Requis fonctionnel 5
* Fonction : Reseau::retirer
* Description : permet de retirer un noeud du réseau ainsi que toute ces connexions
Seulement valide sur un PC, Laptop, tablette ou imprimante
* Paramètres : (unsigned int) id : le id du noeud a retirer
* Retour : aucun
****************************************************************************/
void Reseau::retirer(unsigned int id){
map<unsigned int, Noeud*>::iterator it = noeuds.find(id);
if (it == noeuds.end())
{
cout << "Noeud introuvable" << endl;
return;
}
//on peut seulement retirer un PC, laptop, tablette ou imprimante
if (it->second->getNumType() == 4 || it->second->getNumType() == 5 || it->second->getNumType() == 6 || it->second->getNumType() == 7)
{
delete it->second; //appel du destructeur de noeud qui s'assure de supprimer toutes les connexions reliées au noeud
noeuds.erase(id);
matriceUpdated = false;
coutsUpdated = false;
}
else
cout << "Desoler vous ne pouvez pas retirer un commutateur, un routeur ou un serveur" << endl;
}
/****************************************************************************
* Requis fonctionnel 6
* Fonction : Reseau::remplacer
* Description : permet de remplacer un noeud du réseau par un autre noeud
* Paramètres : (unsigned int) ancienId : l'ancien id du noeud a remplacer
(Noeud*) nouveauNoeud : le nouveau noeud
* Retour : aucun
****************************************************************************/
void Reseau::remplacer(unsigned int ancienId, Noeud* nouveauNoeud){
map<unsigned int, Noeud*>::iterator it = noeuds.find(ancienId);
//trouvez le noeud
if (it == noeuds.end())
{
cout << "Noeud introuvable" << endl;
return;
}
//On peut remplacer un routeur ou commutateur seulement
if ((it->second->getNumType() != 1 && it->second->getNumType() != 2) || (nouveauNoeud->getNumType() != 1 && nouveauNoeud->getNumType() != 2))
{
cout << "Desoler, vous pouvez seulement remplacer un commutateur ou un routeur" << endl;
return;
}
//La capacite du nouveau doit etre strictement superieur
if (nouveauNoeud->getCapacite() <= it->second->getCapacite())
{
cout << "Remplacement impossible : la capacite doit etre superieur" << endl;
return;
}
//carte sans fil sur ancient noeud -> nouveau noeud avec carte sans fil
if (it->second->getReseauSansfil() && !nouveauNoeud->getReseauSansfil())
{
cout << "Impossible, le nouvel appareil n'a pas de carte reseau" << endl;
return;
}
//on recupere les connexions
vector<Noeud*> tempFil = it->second->getConnexionsFil();
vector<Noeud*> tempSansFil = it->second->getConnexionsSansFil();
delete it->second; //appel du destructeur de noeud qui s'assure de supprimer toutes les connexions reliées au noeud
noeuds.erase(ancienId); // on supprime le noeud du map
matriceUpdated = false;
coutsUpdated = false;
//on reconnecte ce qui etait connecte a l'ancien noeud
for (unsigned int i = 0; i < tempFil.size(); i++)
nouveauNoeud->connecter(tempFil[i]);
for (unsigned int i = 0; i < tempSansFil.size(); i++)
nouveauNoeud->connecter(tempSansFil[i]);
//on ajoute le nouveau noeud au map
noeuds.insert(pair<unsigned int, Noeud*>(nouveauNoeud->getId(), nouveauNoeud));
}
/****************************************************************************
* Requis fonctionnel 7
* Fonction : Reseau::distance
* Description : permet d'obtenir la distance la plus courte entre deux noeuds du reseau
en utilisant l'algorithme de Floyd-Warshall
* Paramètres : (unsigned int) n1 : le id du premier noeud
(unsigned int) n2 : le id du deuxieme noeud
* Retour : (unsigned int) la distance minimal
****************************************************************************/
unsigned int Reseau::distance(unsigned int n1, unsigned int n2) {
map<unsigned int, Noeud*>::iterator it1 = noeuds.find(n1);
map<unsigned int, Noeud*>::iterator it2 = noeuds.find(n2);
if(it1 != noeuds.end() && it2 != noeuds.end() && it1 != it2){
if(!matriceUpdated)
matriceGen();
if(!coutsUpdated)
floyd();
unsigned int i = 0;
unsigned int j = 0;
// obtenir la position dans la matrice
while(header[i] != n1){
i++;
}
while(header[j] != n2){
j++;
}
cout << "La distance est de " << couts[i][j] << endl;
return couts[i][j];
}
cout << "La distance est introuvable" << endl;
return 0;
}
/****************************************************************************
* Requis fonctionnel 7
* Fonction : Reseau::floyd
* Description : l'algorithme de Floyd-Warshall
* Paramètres : aucun
* Retour : aucun
****************************************************************************/
void Reseau::floyd() {
couts = matrice;
for(unsigned int i = 0; i < couts.size(); i++){
for(unsigned int j = 0; j < couts.size(); j++){
for(unsigned int k = 0; k < couts.size(); k++){
if(couts[j][k] > couts[i][j] + couts[i][k]){
couts[j][k] = couts[i][j] + couts[i][k];
couts[k][j] = couts[i][j] + couts[i][k];
}
}
}
}
coutsUpdated = true;
}
/****************************************************************************
* Requis fonctionnel 7
* Fonction : Reseau::matriceGen
* Description : Permet de construire nos matrices pour faciliter les calculs
* Paramètres : aucun
* Retour : aucun
****************************************************************************/
void Reseau::matriceGen(){
matrice.clear();
// Construire la matrice et initialiser à l'infini
matrice.reserve(noeuds.size());
header.reserve(noeuds.size());
for(unsigned int i = 0; i < noeuds.size(); i++){
vector<unsigned int> temp;
temp.reserve(noeuds.size());
for(unsigned int j = 0; j < noeuds.size(); j++){
temp.push_back(numeric_limits<unsigned int>::max());
}
matrice.push_back(temp);
header.push_back(0);
}
// Initialiser le header
unsigned int i = 0;
for(pair<unsigned int, Noeud*> paire : noeuds){
header[i] = paire.first;
i++;
}
// Réinitialiser la diagonale
for(i = 0; i < matrice.size(); i++){
matrice[i][i] = 0;
}
// Coûts
// Pour chaque noeud A du réseau
for(pair<unsigned int, Noeud*> paire : noeuds){
// FIL
unsigned int indexA = 0;
unsigned int i = matrice.size();
// obtenir la position dans la matrice
while(header[indexA] != paire.first){
indexA++;
}
vector<Noeud*> connections = paire.second->getConnexionsFil();
// trouver ses noeuds B connectés
if(connections.size() > 0){
for(Noeud* noeud : connections){
// obtenir le ID de son noeud B
i = noeud->getId();
unsigned int indexB = 0;
// obtenir la position dans la matrice
while(header[indexB] != i){
indexB++;
}
// poser le coût [A][B]
matrice[indexA][indexB] = coutFil;
matrice[indexB][indexA] = coutFil;
}
}
// SANS-FIL
indexA = 0;
// obtenir la position dans la matrice
while(header[indexA] != paire.first){
indexA++;
}
connections = paire.second->getConnexionsSansFil();
// trouver ses noeuds B connectés
if(connections.size() > 0){
for(Noeud* noeud : connections){
// obtenir le ID de son noeud B
i = noeud->getId();
unsigned int indexB = 0;
// obtenir la position dans la matrice
while(header[indexB] != i){
indexB++;
}
// poser le coût [A][B]
matrice[indexA][indexB] = coutSansFil;
matrice[indexB][indexA] = coutSansFil;
}
}
}
/* La matrice prend alors la forme
- 111 112 113 211 311 312
111 0 1 - 2 - -
112 1 0 - - - 1
113 - - 0 2 - -
211 2 - 2 0 - 1
311 - - - - 0 -
312 - 1 - 1 - 0
*/
matriceUpdated = true;
} |
45eee7221ae9ac6a3d830dc05a27a5ab42e02dd2 | 1f3194a70bb89affa0281e5463269df7f64fa994 | /codechef/aug15/grguy.cpp | aebdff3f42f315b49509ac53074632559b739ae6 | [] | no_license | deepakchandh/competitive | 58e4143c232c0a343d0747c022548f23990c2fc4 | 1a18e7470b6c2887e49361dd464a1706c371f0be | refs/heads/master | 2020-04-06T18:18:54.928405 | 2018-11-15T10:39:23 | 2018-11-15T10:39:23 | 157,693,702 | 1 | 0 | null | 2018-11-15T10:31:04 | 2018-11-15T10:31:03 | null | UTF-8 | C++ | false | false | 1,112 | cpp | grguy.cpp | #include "bits/stdc++.h"
#define MODULO 1000000007
#define endl '\n'
#define m(a) ((a)%MODULO)
#define s(a) scanf("%d", &a)
#define sl(a) scanf("%lld", &a)
#define p(a) printf("%d\n", a)
#define LT 200000
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
int main(){
int t, i;
s(t);
char s1[LT+1], s2[LT+1];
char * ptr, * ptr2;
int ct1, ct2, len;
bool fail;
while (t--){
scanf("%s %s", s1, s2);
len = strlen( s1 );
fail = 0;
for (i=0; i<len; i++)
if (s1[i] == '#')
if (s2[i] == '#')
fail = 1;
if (fail){
printf("No\n");
continue;
}
ptr = s1; ptr2 = s2; ct1 = LT+1;
if (ptr[0] != '#'){
ct1 = 0;
for (i=0; i<(len-1); i++){
if (ptr[i+1] == '.')
continue;
else {
swap(ptr, ptr2); ct1++;
}
}
}
ptr = s2; ptr2 = s1; ct2 = LT+1;
if (ptr[0] != '#'){
ct2 = 0;
for (i=0; i<(len-1); i++){
if (ptr[i+1] == '.')
continue;
else {
swap(ptr, ptr2); ct2++;
}
}
}
printf("Yes\n%d\n", min(ct1, ct2));
}
return 0;
} |
91a85612e77742ffde4c89b58929e5294bd08540 | e53fab736b5cfd12784d22be2b9ea0c82e21eb8a | /cmdln.h | b7e623807938eda99cdfffdf85d57eb397c71b79 | [
"MIT"
] | permissive | abrauchli/camshift | 6f96de4b80cbe48fdc6c053d38b828c3b817ff38 | 16d087b96a0b1a113355916240111f5bfb41d8df | refs/heads/master | 2016-09-05T12:30:19.898783 | 2013-12-15T07:03:36 | 2013-12-15T07:03:36 | 14,250,740 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 14,343 | h | cmdln.h | //--------------------------------------------------------------------------
//
// File name: cmdln.h
//
// Abstract: Templatized command line parser.
//
//--------------------------------------------------------------------------
#ifndef __GLUE_CMDLN_H__
#define __GLUE_CMDLN_H__
#include <iostream>
#include <string>
#include <sstream>
#include <vector>
#include <exception>
#include <stdexcept>
#include <set>
//
//
//
namespace cmdln
{
class help_exception_t
: public std::exception
{
public:
help_exception_t(const std::string &helpstr)
{
help_txt = helpstr;
}
virtual ~help_exception_t() throw() {}
virtual const char* what() const throw() { return help_txt.c_str(); }
private:
std::string help_txt;
};
//-----------------------------------------------------------------------------
//
// class: opt_t
//
// Abstract:
// Base class for all command line option types to derive from.
//
//-----------------------------------------------------------------------------
class opt_t
{
friend class parser_t;
public:
bool opt_match(const std::string &Opt)
{
bool match;
if ( Opt[0] != '-' && !named() )
{
match = true;
}
else if (Opt == short_name || Opt == long_name)
{
match = true;
}
else
{
match = false;
}
return match;
}
virtual char** parse(char** ArgVal) = 0;
protected:
opt_t(const std::string &ShortName,
const std::string &LongName,
const std::string &Desc,
bool Valid = false)
: short_name(ShortName),
long_name(LongName),
desc(Desc),
valid(Valid)
{
short_name = "-" + short_name;
long_name = "--" + long_name;
}
opt_t()
: short_name(""),
long_name(""),
desc(""),
valid(true)
{
}
bool named() const
{
return !short_name.empty() || !long_name.empty();
}
bool valid;
std::string short_name;
std::string long_name;
std::string desc;
};
//-----------------------------------------------------------------------------
//
// class: opt_val_t
//
// Abstract:
// Generic template class for all simple value types. This would mostly be
// numeric types as strings and bools are specialized below.
//
//-----------------------------------------------------------------------------
template <typename T>
class opt_val_t : public opt_t
{
public:
opt_val_t(const std::string &ShortName,
const std::string &LongName,
const std::string &Desc)
: opt_t(ShortName, LongName, Desc)
{
}
opt_val_t(const std::string &ShortName,
const std::string &LongName,
const std::string &Desc,
const T &Default)
: opt_t(ShortName, LongName, Desc),
val(Default)
{
}
opt_val_t() {}
virtual char** parse(char **ArgVal)
{
if ( named() )
{
ArgVal++;
}
std::stringstream ss(*ArgVal);
ss >> val;
valid = true;
return ArgVal + 1;
}
const T& value() const
{
return val;
}
operator const T& () const
{
return val;
}
private:
T val;
};
//-----------------------------------------------------------------------------
//
// class: opt_val_t<bool>
//
// Abstract:
// Specialized boolean opt value. It behaves like a switch and does
// not have an associated "value" - it's either on or off.
//
//-----------------------------------------------------------------------------
template <>
class opt_val_t<bool> : public opt_t
{
public:
opt_val_t(const std::string &ShortName,
const std::string &LongName,
const std::string &Desc,
bool Default = false)
: opt_t(ShortName, LongName, Desc, true),
on(Default)
{
}
opt_val_t() {}
operator bool () const
{
return on;
}
bool value() const
{
return on;
}
virtual char** parse(char **ArgVal)
{
on = true;
return ArgVal + 1;
}
private:
bool on;
};
template <>
class opt_val_t<std::string>
: public opt_t
{
public:
opt_val_t(const std::string &ShortName,
const std::string &LongName,
const std::string &Desc,
const std::string &Default = "")
: opt_t(ShortName, LongName, Desc),
val(Default)
{
}
opt_val_t() {}
virtual char** parse(char **ArgVal)
{
if ( named() )
{
ArgVal++;
}
val = *ArgVal;
valid = true;
return ArgVal + 1;
}
const std::string& value() const
{
return val;
}
operator std::string () const
{
return val;
}
bool operator== (const opt_val_t &Opt)
{
return val == Opt.val;
}
bool operator!= (const opt_val_t &Opt)
{
return val != Opt.val;
}
bool operator== (const std::string &Val)
{
return val == Val;
}
bool operator!= (const std::string &Val)
{
return val != Val;
}
private:
std::string val;
};
template <typename Ty>
class opt_list_t : public opt_t
{
public:
opt_list_t(const std::string &ShortName,
const std::string &LongName,
const std::string &Desc)
: opt_t(ShortName, LongName, Desc)
{
}
virtual char** parse(char **ArgVal)
{
opt_val_t<Ty> vopt;
char **argv;
std::cout << "here" << std::endl;
argv = vopt.parse(ArgVal);
opt_list.push_back(vopt);
valid = true;
return argv;
}
int size() const
{
return opt_list.size();
}
const Ty& operator[] (int Index)
{
return opt_list[Index];
}
const Ty& value(int Index)
{
return opt_list[Index];
}
private:
std::vector< opt_val_t<Ty> > opt_list;
};
template <typename Ty>
class opt_set_t
: public opt_val_t<Ty>
{
public:
opt_set_t(const std::string &ShortName,
const std::string &LongName,
const std::string &Desc,
const std::set<Ty> &OptSet)
: opt_val_t<Ty>(ShortName, LongName, Desc),
opt_enum(OptSet)
{
common_init();
}
opt_set_t(const std::string &ShortName,
const std::string &LongName,
const std::string &Desc,
const std::set<Ty> &OptSet,
const Ty &Default)
: opt_val_t<Ty>(ShortName, LongName, Desc, Default),
opt_enum(OptSet)
{
common_init();
}
virtual char** parse(char **ArgVal)
{
char **argv;
typename std::set<Ty>::iterator it;
argv = opt_val_t<Ty>::parse(ArgVal);
it = opt_enum.find( static_cast<const Ty&>(*this) );
if ( it == opt_enum.end() )
{
std::stringstream e_strm;
e_strm << "Invalid command line option \"" << *ArgVal << "\".";
throw std::invalid_argument( e_strm.str() );
}
return argv;
}
private:
std::set<Ty> opt_enum;
void common_init()
{
typename std::set<Ty>::iterator it,
next_to_last;
next_to_last = opt_enum.end();
next_to_last--;
opt_val_t<Ty>::desc += " (";
for ( it = opt_enum.begin(); it != next_to_last; it++ )
{
opt_val_t<Ty>::desc += *it + ", ";
}
opt_val_t<Ty>::desc += *it + ").";
}
};
class parser_t
{
public:
parser_t()
: help_info("h", "help", "Show help and usage information.")
{
add(help_info);
}
parser_t(const std::string &Name, const std::string &Description="")
: help_info("h", "help", "Show help and usage information.", false),
name(Name),
desc(Description)
{
add(help_info);
}
void parse(int ArgCnt, char **ArgVal)
{
char **end_arg = &ArgVal[ArgCnt];
ArgVal += 1;
while (ArgVal < end_arg)
{
int opt_i = 0;
while ( opt_i < cl_opts.size() && !cl_opts[opt_i]->opt_match(*ArgVal) )
{
opt_i += 1;
}
if ( opt_i < cl_opts.size() )
{
ArgVal = cl_opts[opt_i]->parse(ArgVal);
}
else if (*ArgVal[0] == '-')
{
std::stringstream e_strm;
e_strm << "Unknown command line option \"" << *ArgVal << "\".";
throw std::invalid_argument( e_strm.str() );
}
else
{
std::stringstream e_strm;
e_strm << "Invalid option syntax \"" << *ArgVal << "\".";
throw std::invalid_argument( e_strm.str() );
}
}
if (help_info)
{
throw help_exception_t( help() );
}
}
void add(opt_t &Opt)
{
cl_opts.push_back(&Opt);
}
std::string help()
{
std::vector<opt_t*>::iterator opt_it;
std::stringstream help_str;
help_str << std::endl << name << ":" << std::endl << std::endl;
for ( opt_it = cl_opts.begin(); opt_it != cl_opts.end(); opt_it += 1 )
{
opt_t *p_opt = *opt_it;
std::string usage;
usage = p_opt->short_name;
if (usage != "")
{
usage += ", ";
}
usage += p_opt->long_name + "\t\t" + p_opt->desc;
help_str << usage << std::endl;
}
return help_str.str();
}
private:
opt_val_t<bool> help_info;
std::string name;
std::string desc;
std::vector<opt_t*> cl_opts;
};
}; // 'glu' namespace
#endif
|
c51de02e2a5497cc0985ea448add56471aa6aaa4 | 9ec1d03c4541d80d8f5eed69e684089c78b06e8e | /TPO_FreeRTOS/driverSM.h | b4ab2bc035e1a3778a8f2327c9426928139d3dd7 | [] | no_license | marcospicucci/PSE | 13f02acb9a921866779961312db0d9b25f5f2e55 | 2e8a9c3eae2f6acbc4c2def9cab82b03814a13cc | refs/heads/master | 2021-01-19T11:49:14.975634 | 2017-04-12T02:16:39 | 2017-04-12T02:16:39 | 87,998,488 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 315 | h | driverSM.h | #include "FreeRTOS.h"
#include "queue.h"
#ifndef _DRIVERSM_H
#define _DRIVERSM_H
class DriverSM{
public:
DriverSM();
void init();
void scanOff();
void scanOn();
//void apagaIzq();
//void apagaDer();
private:
volatile uint8_t *eicra;
volatile uint8_t *eimsk;
};
#endif /* _DRIVERSM_H */
|
eba954964ad052ec29527115dd023650e9e304d5 | 00e4707809ee0c26f6139cf7497b40b2c874ff5e | /class/system/Integral/itgl_02.cc | d4c5a9901a58157d616675ffc3459b142497c74b | [] | no_license | 5l1v3r1/hdphmm_lib | 01dee591de8c48b644992723ba95f7c348ab016a | 6e5e0af9b01f258fc91014af028d02de2eb1fb96 | refs/heads/master | 2021-08-31T16:56:59.228160 | 2017-12-22T04:34:41 | 2017-12-22T04:34:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,256 | cc | itgl_02.cc | // file: $isip/class/system/Integral/itgl_02.cc
// version: $Id: itgl_02.cc 10636 2007-01-26 22:18:09Z tm334 $
//
// isip include files
//
#include "Integral.h"
#include <Console.h>
#include <SysString.h>
// method: diagnose
//
// arguments:
// DEBUG level: (input) debug level for diagnostics
//
// return: a boolean value indicating status
//
bool8 Integral::diagnose(DEBUG level_a) {
//---------------------------------------------------------------------------
//
// 0. preliminaries
//
//---------------------------------------------------------------------------
// output the class name
//
if (level_a > Integral::NONE) {
SysString output(L"diagnosing class ");
output.concat(CLASS_NAME);
output.concat(L": ");
Console::put(output);
Console::increaseIndention();
}
//--------------------------------------------------------------------------
//
// 1. required public methods
//
//--------------------------------------------------------------------------
// set indentation
//
if (level_a > Integral::NONE) {
Console::put(L"testing required public methods...\n");
Console::increaseIndention();
}
// test the debug methods
//
setDebug(debug_level_d);
if (level_a > Integral::BRIEF) {
Integral::debug(L"debug");
}
// reset indentation
//
if (level_a > Integral::NONE) {
Console::decreaseIndention();
}
//--------------------------------------------------------------------------
//
// 2. class-specific public methods:
// general operating system methods
//
//--------------------------------------------------------------------------
// set indentation
//
if (level_a > Integral::NONE) {
Console::put(L"testing class-specific public methods: general operating system methods...\n");
Console::increaseIndention();
}
// test getEnv
//
SysString var(L"HOME");
SysString val;
bool8 ret;
ret = Integral::getEnv(val, var);
if (level_a > Integral::DETAILED) {
var.debug(L"var");
val.debug(L"val");
Console::put(L"\n");
}
if ((!ret) || (val.length() == 0)) {
Error::handle(name(), L"getEnv", Error::TEST, __FILE__, __LINE__);
}
// test getLoginDir
//
var.assign(L"root");
ret = Integral::getLoginDir(val, var);
if (level_a > Integral::DETAILED) {
var.debug(L"var");
val.debug(L"val");
Console::put(L"\n");
}
if ((!ret) || (val.length() == 0)) {
Error::handle(name(), L"getLoginDir", Error::TEST, __FILE__, __LINE__);
}
// test expandName
//
var.assign(L"$isip_ifc/include/Integral.h");
ret = Integral::expandName(val, var);
if (level_a > Integral::DETAILED) {
var.debug(L"var");
val.debug(L"val");
Console::put(L"\n");
}
if ((!ret) || (val.length() == 0)) {
val.debug(L"val");
var.debug(L"var");
Error::handle(name(), L"expandName", Error::TEST, __FILE__, __LINE__);
}
var.assign(L"/tmp/\\$isip_ifc/include/Integral.h");
ret = Integral::expandName(val, var);
if ((!ret) || (!val.eq(L"/tmp/$isip_ifc/include/Integral.h"))) {
var.debug(L"var");
val.debug(L"val");
Error::handle(name(), L"expandName", Error::TEST, __FILE__, __LINE__);
}
var.assign(L"~/login/editor_emacs_bindings.el");
ret = Integral::expandName(val, var);
if (level_a > Integral::DETAILED) {
var.debug(L"var");
val.debug(L"val");
Console::put(L"\n");
}
if ((!ret) || (val.length() == 0)) {
Error::handle(name(), L"expandName", Error::TEST, __FILE__, __LINE__);
}
var.assign(L"~/login/$ISIP_BINARY/editor_emacs_bindings.el");
ret = Integral::expandName(val, var);
if (level_a > Integral::DETAILED) {
var.debug(L"var");
val.debug(L"val");
Console::put(L"\n");
}
if ((!ret) || (val.length() == 0)) {
Error::handle(name(), L"expandName", Error::TEST, __FILE__, __LINE__);
}
var.assign(L"~root/$NO_VARIABLE_EXISTS/editor_emacs_bindings.el");
ret = Integral::expandName(val, var);
if (level_a > Integral::DETAILED) {
var.debug(L"var");
val.debug(L"val");
Console::put(L"\n");
}
if ((ret) || (val.length() == 0)) {
Error::handle(name(), L"expandName", Error::TEST, __FILE__, __LINE__);
}
var.assign(L"~root");
ret = Integral::expandName(val, var);
if (level_a > Integral::DETAILED) {
var.debug(L"var");
val.debug(L"val");
Console::put(L"\n");
}
if ((!ret) || (val.length() == 0)) {
Error::handle(name(), L"expandName", Error::TEST, __FILE__, __LINE__);
}
var.assign(L"~");
ret = Integral::expandName(val, var);
if (level_a > Integral::DETAILED) {
var.debug(L"var");
val.debug(L"val");
Console::put(L"\n");
}
if ((!ret) || (val.length() == 0)) {
Error::handle(name(), L"expandName", Error::TEST, __FILE__, __LINE__);
}
var.assign(L"~/");
ret = Integral::expandName(val, var);
if (level_a > Integral::DETAILED) {
var.debug(L"var");
val.debug(L"val");
Console::put(L"\n");
}
if ((!ret)|| (val.length() == 0)) {
Error::handle(name(), L"expandName", Error::TEST, __FILE__, __LINE__);
}
var.assign(L"/tmp/tmp_\\$\\$\\$");
ret = Integral::expandName(val, var);
if ((!ret) || (val.ne(L"/tmp/tmp_$$$"))) {
var.debug(L"var");
val.debug(L"val");
Error::handle(name(), L"expandName", Error::TEST, __FILE__, __LINE__);
}
// test getPid and getParentPid
//
int32 pid = getPid();
int32 ppid = getParentPid();
if (level_a > Integral::DETAILED) {
val.assign(pid);
var.debugStr(name(), L"diagnose", L"pid", val);
Console::put(var);
}
if (level_a > Integral::DETAILED) {
val.assign(ppid);
var.debugStr(name(), L"diagnose", L"ppid", val);
Console::put(var);
}
// test exit(): we can't really test exit() in this method
// test maketemp
//
makeTemp(val);
if (level_a > Integral::DETAILED) {
val.debug(L"makeTemp");
}
// reset indentation
//
if (level_a > Integral::NONE) {
Console::decreaseIndention();
}
//--------------------------------------------------------------------------
//
// 3. class-specific public methods:
// bit-level methods
//
//--------------------------------------------------------------------------
// set indentation
//
if (level_a > Integral::NONE) {
Console::put(L"testing class-specific public methods: bit-level methods...\n");
Console::increaseIndention();
}
// test almostEqual
//
if (!almostEqual(3.0001, 3.0000)) {
return Error::handle(name(), L"almostEqual", Error::TEST,
__FILE__, __LINE__);
}
if (!almostEqual(3.1, 3.0, 10.0)) {
return Error::handle(name(), L"almostEqual", Error::TEST,
__FILE__, __LINE__);
}
if (!almostEqual(3.0, 3.1, 10.0)) {
return Error::handle(name(), L"almostEqual", Error::TEST,
__FILE__, __LINE__);
}
if (almostEqual((int32)300001, (int32)300002)) {
return Error::handle(name(), L"almostEqual", Error::TEST,
__FILE__, __LINE__);
}
// reset indentation
//
if (level_a > Integral::NONE) {
Console::decreaseIndention();
}
//--------------------------------------------------------------------------
//
// 4. class-specific public methods:
// inlined wrappers for math and other C functions
//
//--------------------------------------------------------------------------
// set indentation
//
if (level_a > Integral::NONE) {
Console::put(L"testing class-specific public methods: inline wrappers...\n");
Console::increaseIndention();
}
if (!almostEqual(abs(-27.0), (float64)27.0)) {
return Error::handle(name(), L"abs", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(acos(0.0), M_PI_2)) {
return Error::handle(name(), L"acos", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(asin(1.0), M_PI_2)) {
return Error::handle(name(), L"asin", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(asinh(2.3013), M_PI_2)) {
return Error::handle(name(), L"asinh", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(atan(1.0), M_PI_4)) {
return Error::handle(name(), L"atan", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(atanh(0.9172), M_PI_2)) {
return Error::handle(name(), L"atanh", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(ceil(26.1), 27.0)) {
return Error::handle(name(), L"ceil", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(cos(M_PI_2), 0.0)) {
return Error::handle(name(), L"cos", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(cosh(0.0), 1.0)) {
return Error::handle(name(), L"cosh", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(exp(1.0), M_E)) {
return Error::handle(name(), L"exp", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(exp2(1.0), 2.0)) {
return Error::handle(name(), L"exp2", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(exp10(1.0), 10.0)) {
return Error::handle(name(), L"exp10", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(floor(27.1), 27.0)) {
return Error::handle(name(), L"floor", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(fraction(27.1), 0.1)) {
return Error::handle(name(), L"fraction", Error::TEST, __FILE__, __LINE__);
}
uint32 foo[] = {5, 27, 99, 10192, 3932};
if (hash(foo, 5, 128) != 53) {
return Error::handle(name(), L"hash", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(integer(27.1), 27.0)) {
return Error::handle(name(), L"integer", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(log(M_E), 1.0)) {
return Error::handle(name(), L"log", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(log2(2.0) / log2(M_E), log(2.0))) {
return Error::handle(name(), L"log2", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(log10(10.0) / log10(M_E), log(10.0))) {
return Error::handle(name(), L"log10", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(log1p(M_E - 1.0), 1.0)) {
return Error::handle(name(), L"log1p", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(max(1.0, 2.0), 2.0)) {
return Error::handle(name(), L"max", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(min(1.0, 2.0), 1.0)) {
return Error::handle(name(), L"min", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(pow(M_E, 2.0), exp(2.0))) {
return Error::handle(name(), L"pow", Error::TEST, __FILE__, __LINE__);
}
if ((!almostEqual(round(27.49), 27.0)) ||
(!almostEqual(round(26.51), 27.0)) ||
(!almostEqual(round(-27.1), -27.0)) ||
(!almostEqual(round(-26.51), -27.0))) {
return Error::handle(name(), L"round", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(sin(M_PI_2), 1.0)) {
return Error::handle(name(), L"sin", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(sinh(M_PI_2), 2.3013)) {
return Error::handle(name(), L"sinh", Error::TEST, __FILE__, __LINE__);
}
// test sleep:
// there is no easy way to test this since the unix time function is not
// very accurate and we can't guarantee this program won't be preempted.
//
sleep(1);
if (!almostEqual(sqrt(pow(M_E, 2.0)), M_E)) {
return Error::handle(name(), L"sqrt", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(tan(M_PI_4), 1.0)) {
return Error::handle(name(), L"tan", Error::TEST, __FILE__, __LINE__);
}
if (!almostEqual(tanh(M_PI_2), 0.9172)) {
return Error::handle(name(), L"tanh", Error::TEST, __FILE__, __LINE__);
}
// reset indentation
//
if (level_a > Integral::NONE) {
Console::decreaseIndention();
}
//--------------------------------------------------------------------------
//
// 5. class-specific public methods:
// math functions for complex numbers
//
//--------------------------------------------------------------------------
// set indentation
//
if (level_a > Integral::NONE) {
Console::put(L"testing class-specific public methods: complex number math functions...\n");
Console::increaseIndention();
}
const complexdouble c0(4.0, 2.0);
const complexdouble c1(3.5, 2.2);
if (Integral::almostEqual(c0, c1)) {
return Error::handle(name(), L"almostEqual",
Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(c0, complexdouble(4.00001, 1.99999))) {
return Error::handle(name(), L"almostEqual",
Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(abs(c0), 4.4721)) {
return Error::handle(name(), L"abs", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(acos(c0), complexdouble(0.4739, -2.1836))) {
return Error::handle(name(), L"acos", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(acosh(c0), complexdouble(2.1836, 0.4739))) {
return Error::handle(name(), L"acosh", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(asin(c0), complexdouble(1.0969, 2.1836))) {
return Error::handle(name(), L"asin", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(asinh(c0), complexdouble(2.1986, 0.4539))) {
return Error::handle(name(), L"asinh", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(atan(c0), complexdouble(1.3715, 0.0964))) {
return Error::handle(name(), L"atan", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(atanh(c0), complexdouble(0.2006, 1.4670))) {
return Error::handle(name(), L"atanh", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(ceil(c0), complexdouble(4.0000, 2.0000))) {
return Error::handle(name(), L"ceil", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(cos(c0), complexdouble(-2.4591, 2.7448))) {
return Error::handle(name(), L"cos", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(cosh(c0), complexdouble(-11.3642, 24.8147))) {
return Error::handle(name(), L"cosh", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(exp(c0), complexdouble(-22.7208, 49.6460))) {
return Error::handle(name(), L"exp", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(exp2(c0), complexdouble(2.9353, 15.7284))) {
return Error::handle(name(), L"exp2", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(exp10(c0), complexdouble(-1070.1, -9942.6))) {
return Error::handle(name(), L"exp10", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(floor(c0), complexdouble(4.000, 2.0000))) {
return Error::handle(name(), L"floor", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(log(c0), complexdouble(1.4979, 0.4636))) {
return Error::handle(name(), L"log", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(log2(c0), complexdouble(2.1610, 0.6689))) {
return Error::handle(name(), L"log2", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(log10(c0), complexdouble(0.6505, 0.2014))) {
return Error::handle(name(), L"log10", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(log1p(c0), complexdouble(1.6836, 0.3805))) {
return Error::handle(name(), L"log1p", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(max(c0, c1), c0)) {
return Error::handle(name(), L"max", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(min(c0, c1), c1)) {
return Error::handle(name(), L"min", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(pow(c0, c1), complexdouble(13.9298, -66.7666))) {
return Error::handle(name(), L"pow", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(round(c0), c0)) {
return Error::handle(name(), L"round", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(sin(c0), complexdouble(-2.8472, -2.3707))) {
return Error::handle(name(), L"sin", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(sinh(c0), complexdouble(-11.3566, 24.8313))) {
return Error::handle(name(), L"sinh", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(sqrt(c0), complexdouble(2.0582, 0.4859))) {
return Error::handle(name(), L"sqrt", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(tan(c0), complexdouble(0.0364, 1.0047))) {
return Error::handle(name(), L"tan", Error::TEST, __FILE__, __LINE__);
}
if (!Integral::almostEqual(tanh(c0), complexdouble(1.0004, -0.0005))) {
return Error::handle(name(), L"tanh", Error::TEST, __FILE__, __LINE__);
}
// reset indentation
//
if (level_a > Integral::NONE) {
Console::decreaseIndention();
}
//--------------------------------------------------------------------------
//
// 6. class-specific public methods:
// other math functions useful for speech research
//
//--------------------------------------------------------------------------
// set indentation
//
if (level_a > Integral::NONE) {
Console::put(L"testing class-specific public methods: other math functions...\n");
Console::increaseIndention();
}
// test logAddLog
//
if (!almostEqual(logAddLog(log(2.0), log(3.0)), (float64)1.609437912)) {
return Error::handle(name(), L"logAddLog",
Error::TEST, __FILE__, __LINE__);
}
// reset indentation
//
if (level_a > Integral::NONE) {
Console::decreaseIndention();
}
//--------------------------------------------------------------------------
//
// 7. class-specific public methods:
// time functions that are useful for time measurements. time
// functions can't be explicitly tested because the return value
// varies with time
//--------------------------------------------------------------------------
//---------------------------------------------------------------------------
//
// 8. print completion message
//
//---------------------------------------------------------------------------
// reset indentation
//
if (level_a > Integral::NONE) {
Console::decreaseIndention();
}
if (level_a > Integral::NONE) {
SysString output(L"diagnostics passed for class ");
output.concat(name());
output.concat(L"\n");
Console::put(output);
}
// exit gracefully
//
return true;
}
|
259de187a8f9daee6beff6620ecc4b34d2d859f4 | 14d33b9eaf4f17e828fdcab93b2eefeac39a5bab | /insertion_sort.cpp | bfad237dabcb61cf585514c547ed173f55e2c424 | [] | no_license | Riad889/Algorithm | f09affb3f853131363495ba0a725a2c0abc99078 | 9db768d1667c66a55fd720fcaca5d1ac28dca926 | refs/heads/main | 2023-07-18T14:09:03.138320 | 2021-09-03T04:33:16 | 2021-09-03T04:33:16 | 393,502,994 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 641 | cpp | insertion_sort.cpp | #include<bits/stdc++.h>
using namespace std;
void insertion_sort(int a[],int n)
{
int i;
for(i=1;i<n;i++)
{
int temp=a[i];
int j=i-1;
while(j>=0 and a[j]>temp)
{
a[j+1]=a[j];
j--;
}
a[j+1]=temp;
}
}
int main()
{
cout<<"Enter the amount of number : \n";
int n;
cin>>n;
int a[n+1];
cout<<"Enter the unsorted array element : "<<endl;
int i;
for(i=0;i<n;i++)
{
cin>>a[i];
}
insertion_sort(a,n);
cout<<"Sorted array is : "<<endl;
for(i=0;i<n;i++)
{
cout<<a[i]<<" ";
}
cout<<endl;
}
|
5f38c7f207213eb33670c0729becf6fff44fb7b5 | 5dd36c9dc3e6169b7a22529a75f620e42da80ee1 | /00300. Longest Increasing Subsequence.cpp | a0550a097982e839e3c5dc41227d75cb4478fa42 | [] | no_license | SanyaAttri/LeetCode | cdd6d3831f7a0f707285fd5bb9a5b11556efaa32 | d0cf03fcd6525ceeee231ba7efe40955eec4314d | refs/heads/master | 2022-12-24T20:58:20.040302 | 2020-10-10T11:12:27 | 2020-10-10T11:12:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,989 | cpp | 00300. Longest Increasing Subsequence.cpp | //
// main.cpp
// leetCode
//
// Created by miaoyou.gmy
// Copyright © 2016年 miaoyou.gmy. All rights reserved.
//
#include <math.h>
#include <stdio.h>
#include <cstdlib>
#include <set>
#include <map>
#include <list>
#include <queue>
#include <stack>
#include <bitset>
#include <vector>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <sstream>
#include <iostream>
#include <algorithm>
#include <functional>
using namespace std;
/**
300. Longest Increasing Subsequence
Total Accepted: 76875
Total Submissions: 201945
Difficulty: Medium
Contributor: LeetCode
Given an unsorted array of integers, find the length of longest increasing subsequence.
For example,
Given [10, 9, 2, 5, 3, 7, 101, 18],
The longest increasing subsequence is [2, 3, 7, 101], therefore the length is 4. Note that there may be more than one LIS combination, it is only necessary for you to return the length.
Your algorithm should run in O(n2) complexity.
Follow up: Could you improve it to O(n log n) time complexity?
Credits:
Special thanks to @pbrother for adding this problem and creating all test cases.
Subscribe to see which companies asked this question.
*/
/*
经典LIS问题,使用low_bounder代替二分查找
24 / 24 test cases passed.
Status: Accepted
Runtime: 3 ms
*/
class Solution {
public:
int lengthOfLIS(vector<int>& nums) {
vector<int> lis;
vector<int>::iterator low;
for(int num : nums){
low = lower_bound(lis.begin(), lis.end(), num);
long idx = low - lis.begin();
if(idx >= lis.size()){
lis.push_back(num);
} else {
lis[idx] = num;
}
}
return (int)lis.size();
}
};
int main(){
vector<int> nums{10, 9, 2, 5, 3, 7, 101, 18};
Solution solve;
cout<<solve.lengthOfLIS(nums)<<endl;
return 0;
}
|
f0b4357b160209f4a9e39b858bee342b7544b042 | 64e8ab3dedce1a3f03949950ca54a6bee4a5a16b | /UVA/11933 - Splitting Numbers.cpp | 63cb52863ea86f657cdddaf8226373d1f8806159 | [] | no_license | ansen16/Competitive_Programming | b05e47c0f9ef4ba9191a7ecbf1f62eee16878303 | 33eeaf183eb469157270ce4ed0273cfe9f5bb7c7 | refs/heads/master | 2022-11-05T08:15:11.427086 | 2020-06-22T08:47:48 | 2020-06-22T08:47:48 | 266,330,492 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,607 | cpp | 11933 - Splitting Numbers.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;
typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_multi_set;
#define mod 1000000007
#define pi acos(-1.0)
#define eps 1e-9
#define fast ios::sync_with_stdio(0); cin.tie(0);cout.tie(0)
#define fs first
#define sc second
#define pb push_back
#define sp printf(" ")
#define nl '\n'
#define all(a) a.begin(),a.end()
#define unique(c) (c).resize(unique(all(c)) - (c).begin())
#define itn int
#define set0(a) memset(a,0,sizeof(a))
#define setneg(a) memset(a,-1,sizeof(a))
#define setinf(a) memset(a,126,sizeof(a))
#define REP(i,n) for (int i = 0; i < n; i++)
#define REP1(i,n) for (int i = 1; i <= n; i++)
#define RREP(i,n) for (int i=n-1; i>=0 ;i--)
typedef long long LL;
typedef long double LD;
typedef unsigned long long ULL;
typedef pair<int, int> pii;
typedef pair<LL, LL> pll;
typedef pair<double, double> pdd;
typedef vector<int> vi;
typedef vector<LL> vll;
typedef vector<double> vd;
typedef vector<vector<LL> > matrix;
typedef vector<vector<int> > graph;
void solve(int n)
{
int a[2]={0};
int p=0;
while(n)
{
int x=n&(-n);
n-=x;
a[p]+=x;
p^=1;
}
cout<<a[0]<<" "<<a[1]<<nl;
}
int main()
{
fast;
int t;
while(cin>>t, t)
solve(t);
}
|
920532c22bc407f525d8b71f3566bcf18b2f69ca | 59864cbd213b5da6f50d6255b0a021564b3d5bd4 | /challenges/FileSys/src/cgc_file.h | bf5724bf7ac089ab56c4cb49b9c792c04c02c785 | [
"MIT",
"BSD-3-Clause",
"LicenseRef-scancode-unknown",
"BSD-2-Clause"
] | permissive | trailofbits/cb-multios | 8af96a4fbc3b34644367faa135347f88e0e0d0a3 | 810d7b24b1f62f56ef49b148fe155b0d0629cad2 | refs/heads/master | 2023-09-05T03:56:20.229403 | 2022-12-27T15:47:54 | 2022-12-27T15:47:54 | 41,688,943 | 522 | 133 | MIT | 2023-06-29T02:47:13 | 2015-08-31T17:04:31 | C | UTF-8 | C++ | false | false | 2,441 | h | cgc_file.h | /*
* Copyright (c) 2015 Kaprica Security, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/
#ifndef FILE_H
#define FILE_H
extern "C" {
#include "cgc_stdlib.h"
#include "cgc_string.h"
#include "cgc_stdint.h"
};
#include "cgc_llist.h"
class BaseFile
{
public:
BaseFile() {}
virtual ~BaseFile() = 0;
virtual int Open() = 0;
virtual int Close() = 0;
virtual int Read(cgc_size_t pos, cgc_size_t len, char **outBuf) = 0;
virtual int Write(cgc_size_t pos, char *inBuf, cgc_size_t len) = 0;
virtual void PrintFileInfo() = 0;
};
class File : public BaseFile
{
public:
enum FileType { FT_REG, FT_DIR };
protected:
char name[256];
FileType type;
cgc_size_t size;
bool opened;
union {
char *content;
List<File *> *files;
} info;
File *parent;
public:
File(const char* name, FileType type, cgc_size_t size, File* parent);
~File();
const char* GetName() { return name; }
FileType GetType() { return type; }
cgc_size_t GetSize() { return size; }
bool IsOpened() { return opened; }
List<File *>* GetFiles() { return (type == FT_DIR ? info.files : 0); }
File* GetParent() { return parent; }
int Open();
int Close();
int Read(cgc_size_t pos, cgc_size_t len, char **outBuf);
int Write(cgc_size_t pos, char *inBuf, cgc_size_t len);
void PrintFileInfo();
};
#endif
|
e2df49502e44f7ca6c19d57da0c2f63e94e781a1 | 60f86dbab2d52fce19bc0360367bd1ea6f67891b | /WiFi_TelNet_to_Serial_Internet_time_Temparature_Logging_V1.0.ino | de052c21ade37fa8f91fd8b04ae1872cdf45b019 | [] | no_license | UV-ultra/ESP8266_WiFi_TelNet_to_Serial_Internet_Time_Temparature_Logging | 2978ed38232a0569e935c196dd5c894fa85be10f | ffacfab04bbc74f1fc4894d6e4e2b42d4ca061aa | refs/heads/master | 2022-04-20T04:10:17.830105 | 2020-04-19T10:15:02 | 2020-04-19T10:15:02 | 256,956,062 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,331 | ino | WiFi_TelNet_to_Serial_Internet_time_Temparature_Logging_V1.0.ino | /*
WiFiTelnetToSerial - Example Transparent UART to Telnet Server for esp8266
Copyright (c) 2015 Hristo Gochkov. All rights reserved.
This file is part of the ESP8266WiFi library for Arduino environment.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
visit
http://www.techiesms.com
for IoT project tutorials.
#techiesms
explore | learn | share
*/
/* Coded by Udara Viduranga Avinash, Sri Lanka.
Several other codes were used to create this(Hats off to them!!!!).
free for anyone*/
#include <ESP8266WiFi.h>
#include <WifiUDP.h>
#include <String.h>
#include <Wire.h>
#include <NTPClient.h>
#include <Time.h>
#include <TimeLib.h>
#include <Timezone.h>
#include <stdlib.h>
#include "SevenSegmentTM1637.h"
#include "SevenSegmentExtended.h"
#include <OneWire.h>
#include <DallasTemperature.h>
// Define NTP properties
#define NTP_OFFSET 60 * 60 // In seconds
#define NTP_INTERVAL 60 * 1000 // In miliseconds
#define NTP_ADDRESS "pool.ntp.org" // change this to whatever pool is closest (see ntp.org)
//how many clients should be able to telnet to this ESP8266,In this case it is 2 nos.You can change it as you want.
#define MAX_SRV_CLIENTS 2
const char* ssid = "<your-ssid>";
const char* password = "<your-passwd>";
WiFiServer server(23); // --> default port for communication usign TELNET protocol | Server Instance
WiFiClient serverClients[MAX_SRV_CLIENTS]; // --> Client Instanse
// Set up the NTP UDP client
WiFiUDP ntpUDP;
NTPClient timeClient(ntpUDP, NTP_ADDRESS, NTP_OFFSET, NTP_INTERVAL);
// to display time on Serial Monitor
String date;
// to display temparature on 4-digit LED Display
String TEMP;
// as required for time,date,AM/PM
const char * days[] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"} ;
const char * months[] = {"Jan", "Feb", "Mar", "Apr", "May", "June", "July", "Aug", "Sep", "Oct", "Nov", "Dec"} ;
const char * ampm[] = {"AM", "PM"} ;
// to display time on 4-digit LED Display
byte t1 ;
byte t2 ;
String t3="";
float tempC;
const byte PIN_CLK = D6; // define CLK pin (any digital pin) for 4-digit LED Display
const byte PIN_DIO = D5; // define DIO pin (any digital pin) 4-digit LED Display
SevenSegmentExtended display(PIN_CLK, PIN_DIO);
#define ONE_WIRE_BUS D4
// Setup a oneWire instance to communicate with any OneWire devices (not just Maxim/Dallas temperature ICs)
OneWire oneWire(ONE_WIRE_BUS);
// Pass our oneWire reference to Dallas Temperature.
DallasTemperature sensors(&oneWire);
void NewClient_Check();
void ClientData_Check();
void SerialData_Check();
void SendData();
void Internet_Time();
void Temp();
uint8_t i = 0;
void setup() {
Serial.begin(115200);
WiFi.begin(ssid, password);
timeClient.begin(); // Start the NTP UDP client
Serial.print("WiFi_TelNet_to_Serial_Internet_time_Temparature_Logging_V1.0");
display.begin(); // initializes the display
display.setBacklight(100); // set the brightness to 100 %(working levels are 25%,50%,75% and 100%)
display.print("INIT"); // display "INIT" on the display
delay(1000); // wait 1000 ms
// -->Try to connect to particular host for 20 times, If still not connected then automatically resets.
Serial.print("\nConnecting to "); Serial.println(ssid);
while (WiFi.status() != WL_CONNECTED && i++ < 20){
delay(500);
Serial.print(".");
display.setBacklight(75); // set the brightness to 75 %
display.print("8888"); // display "8888" on the display
display.blink(); // blink "8888"
if(i == 21){
Serial.print("Could not connect to"); Serial.println(ssid);
while(1);
}
}
//start UART and the server
Serial.begin(115200);
server.begin();
server.setNoDelay(true); // --> Won't be storing data into buffer and wait for the ack. rather send the next data and in case nack is received, it will resend the whole data
Serial.print("Ready! Use 'telnet ");
Serial.print(WiFi.localIP());
Serial.println(" 23' to connect");
Serial.println("");
display.clear();
display.print("OK"); // display "Ok" on the display
display.blink(); // blink "Ok", this means that ESP8266 is connected to Wifi network
delay(1000);
sensors.begin(); // Initiation of temparature sensor Dallas/Maxim Ds18B20
}
void loop() {
NewClient_Check();
ClientData_Check();
SerialData_Check();
Internet_Time();
Temp();
SendData();
delay(50000);
}
void NewClient_Check(){
//check if there are any new clients
if (server.hasClient()){
for(i = 0; i < MAX_SRV_CLIENTS; i++){
//find free/disconnected spot
if (!serverClients[i] || !serverClients[i].connected()){
if(serverClients[i]) serverClients[i].stop();
serverClients[i] = server.available();
Serial.print("New client: "); Serial.println(i);
continue;
}
}
//no free/disconnected spot so reject
WiFiClient serverClient = server.available();
serverClient.stop();
}
}
void ClientData_Check(){
//check clients for data
for(i = 0; i < MAX_SRV_CLIENTS; i++){
if (serverClients[i] && serverClients[i].connected()){
if(serverClients[i].available()){
//get data from the telnet client and push it to the UART
while(serverClients[i].available()) Serial.write(serverClients[i].read());
}
}
}
}
void SerialData_Check(){
//check UART for data
if(Serial.available()){
size_t len = Serial.available();
uint8_t sbuf[len];
Serial.readBytes(sbuf, len);
//push UART data to all connected telnet clients
for(i = 0; i < MAX_SRV_CLIENTS; i++){
if (serverClients[i] && serverClients[i].connected()){
serverClients[i].write(sbuf, len);
delay(1);
}
}
}
}
void SendData(){
//push Sensor and Time data to all connected telnet clients
for(i = 0; i < MAX_SRV_CLIENTS; i++){
if (serverClients[i] && serverClients[i].connected()){
// Time
char Time_1[11];
t3.toCharArray(Time_1,11);
uint8_t s3_buf[8];
memcpy(s3_buf,&Time_1,11);
serverClients[i].write(s3_buf,11);
delay(1);
serverClients[i].write(",");
serverClients[i].flush();
delay(10);
// Temparature
char Temp[5];
dtostrf(tempC,5, 2, Temp);
uint8_t s2_buf[sizeof(Temp)];
memcpy(s2_buf,&Temp,sizeof(Temp));
serverClients[i].write(s2_buf,sizeof(Temp));
serverClients[i].flush();
serverClients[i].write("°C");
delay(1);
serverClients[i].write("\n");
serverClients[i].flush();
delay(10);
}
}
}
void Internet_Time(){
// Get the time from time servers
if (WiFi.status() == WL_CONNECTED) //Check WiFi connection status
{
date = ""; // clear the variables
t3 = "";
// update the NTP client and get the UNIX UTC timestamp
timeClient.update();
unsigned long epochTime = timeClient.getEpochTime();
// convert received time stamp to time_t object
time_t local, utc;
utc = epochTime;
// Then convert the UTC UNIX timestamp to local time
TimeChangeRule usEDT = {"EDT", Second, Sun, Mar, 2, +270}; //UTC - 5 hours - change this as needed
//TimeChangeRule usEST = {"EST", First, Sun, Nov, 2, +330}; //UTC - 6 hours - change this as needed
Timezone usEastern(usEDT);
//Timezone usEastern(usEDT, usEST);
local = usEastern.toLocal(utc);
// now format the Time variables into strings with proper names for month, day etc
date += days[weekday(local)-1];
date += ", ";
date += months[month(local)-1];
date += " ";
date += day(local);
date += ", ";
date += year(local);
//to display time on 4-digit LED Display
t1 = hourFormat12(local);
t2 = minute(local);
// format the time to 12-hour format with AM/PM with seconds
t3 += hourFormat12(local);
t3 += ":";
if(minute(local) < 10) // add a zero if minute is under 10
t3 += "0";
t3 += minute(local);
t3 += ":";
if(second(local) < 10) // add a zero if second is under 10
t3 += "0";
t3 += second(local);
t3 += " ";
t3 += ampm[isPM(local)];
}
// display time on 4-digit LED Display
display.clear();
display.printTime(t1, t2, true);
delay(2000);
display.clear();
// Display the date and time on Serial Monitor
Serial.println("");
Serial.print("Local date: ");
Serial.print(date);
Serial.println("");
Serial.print("Local time: ");
Serial.println(t3);
delay(3000); //Send a request to update every 03 sec (= 3,000 ms)
}
void Temp(){
//get temperatures from sensor
String TEMP="";
Serial.print("Requesting temperatures...");
sensors.requestTemperatures(); // Send the command to get temperatures
Serial.println("DONE");
// After we got the temperatures, we can print them here.
// We use the function ByIndex, and as an example get the temperature from the first sensor only.
tempC = sensors.getTempCByIndex(0);
// Check if reading was successful
if(tempC != DEVICE_DISCONNECTED_C)
{
Serial.print("Temperature for the device 1 (index 0) is: ");
Serial.println(tempC);
display.clear();
// Create a string to display temparature on 4-digit LED Display
float tempC1 = tempC-int(tempC);
TEMP += int(tempC);
TEMP += "c";
TEMP += int((tempC1+0.05)*10);// Accurate to one decimal place
display.print(TEMP);
display.blink(); // blink temparature value (current)
delay(2000);
display.clear();
}
else
{
Serial.println("Error: Could not read temperature data");
}
}
|
68708021c3591d0a7418bb87dd775d220d14f288 | 2a99407309904cd05fea8befaafb14b332c816dd | /d03/ex01/FragTrap.cpp | bb9083b9faa383d006fcc10ecba4d3dd4b412316 | [] | no_license | maxencealluin/cpp | ea33396c5f7aafcfa0bcb25356f1fa62a34da8db | b3442e4815a4b3f3b4b42907b8541f7ecc95f189 | refs/heads/master | 2020-07-05T05:52:46.926089 | 2020-01-28T12:55:59 | 2020-01-28T12:55:59 | 202,544,521 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,231 | cpp | FragTrap.cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* FragTrap.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: malluin <malluin@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/13 10:55:59 by malluin #+# #+# */
/* Updated: 2020/01/13 16:01:27 by malluin ### ########.fr */
/* */
/* ************************************************************************** */
#include "FragTrap.hpp"
FragTrap::FragTrap(std::string name) : _name(name)
{
this->_hitpoints = 100;
this->_max_hit_points = 100;
this->_energy_points = 100;
this->_max_energy_points = 100;
this->_level = 1;
this->_melee_attack_damage = 30;
this->_ranged_attack_damage = 20;
this->_armor_damage_reduction = 5;
std::cout << "Here I am ! The most annoying character ever created !" << std::endl;
}
FragTrap::FragTrap(FragTrap const & instance)
{
*this = instance;
std::cout << "Here I am ! A copy of the most annoying character ever created !" << std::endl;
}
FragTrap::~FragTrap()
{
std::cout << this->_name << " Bip bop. No more purpose. Autodestruction." << std::endl;
}
FragTrap & FragTrap::operator=(FragTrap const & rhs)
{
this->_hitpoints = rhs._hitpoints;
this->_max_hit_points = rhs._max_hit_points;
this->_energy_points = rhs._energy_points;
this->_max_energy_points = rhs._max_energy_points;
this->_level = rhs._level;
this->_name = rhs._name;
this->_melee_attack_damage = rhs._melee_attack_damage;
this->_ranged_attack_damage = rhs._ranged_attack_damage;
this->_armor_damage_reduction = rhs._armor_damage_reduction;
return *this;
}
void FragTrap::rangedAttack(std::string const & target)
{
std::cout << "FR4G-TP " << this->_name << " attacks " << target << " with a ranged attack !" << std::endl;
std::cout << target << " takes " << this->_ranged_attack_damage
<< " damage ! Ouch !" << std::endl;
}
void FragTrap::meleeAttack(std::string const & target)
{
std::cout << "FR4G-TP " << this->_name << " attacks " << target << " with a melee attack !" << std::endl;
std::cout << target << " takes " << this->_melee_attack_damage
<< " damage ! Ouch !" << std::endl;
}
void FragTrap::sacrifice(std::string const &target)
{
(void)target;
this->_hitpoints = 0;
std::cout << "FR4G-TP " << this->_name << " uses Sacrifice!" <<
std::endl << "Current Health: " << this->_hitpoints << "/" << this->_max_hit_points << std::endl
<< "[" << this->_name << "] For you...I commit...seppuku..." << std::endl;
return;
}
void FragTrap::rubberDucky(std::string const &target)
{
(void)target;
this->_max_hit_points = this->_max_hit_points * 1.5;
std::cout << "FR4G-TP " << this->_name << " uses Rubber Ducky! With his rubber ducky his max health has increased by 1.5x!" << std::endl <<
"New Max Health " << this->_max_hit_points << std::endl;
return;
}
void FragTrap::energyDrink(std::string const &target)
{
(void)target;
this->_energy_points = this->_energy_points += 50;
if (this->_energy_points > this->_max_energy_points)
this->_energy_points = this->_max_energy_points;
std::cout << "FR4G-TP " << this->_name << " pops an energy dink! He feels so replenished now !";
std::cout << " Current energy: " << this->_energy_points << "/" << this->_max_energy_points << std::endl;
return;
}
void FragTrap::takeDamage(unsigned int amount)
{
if (this->_armor_damage_reduction >= int(amount))
{
std::cout << "Armor is too high ! No damage inflicted" << std::endl;
return;
}
std::cout << "FR4G-TP " << this->_name << " takes " << amount << " of damage !";
if (this->_hitpoints - ((int)amount - this->_armor_damage_reduction) <= 0)
{
this->_hitpoints = 0;
}
else
this->_hitpoints -= (amount - this->_armor_damage_reduction);
std::cout << " Current Health: " << this->_hitpoints << "/" << this->_max_hit_points << std::endl;
}
void FragTrap::beRepaired(unsigned int amount)
{
if (this->_hitpoints + int(amount) > this->_max_hit_points)
this->_hitpoints = this->_max_hit_points;
else
this->_hitpoints += amount;
std::cout << "FR4G-TP " << this->_name << " is repaired for " << amount << " of damage !";
std::cout << " Current Health: " << this->_hitpoints << "/" << this->_max_hit_points << std::endl;
}
void FragTrap::vaulthunter_dot_exe(std::string const & target)
{
void (FragTrap::*ptr[5])(std::string const &) =
{
&FragTrap::rangedAttack,
&FragTrap::meleeAttack,
&FragTrap::sacrifice,
&FragTrap::rubberDucky,
&FragTrap::energyDrink
};
std::string types[5] = {
"rangedAttack",
"meleeAttack",
"sacrifice",
"rubberDucky",
"energyDrink"
};
if (this->_energy_points < 25)
std::cout << "Not enough energy points left !" << std::endl;
else
{
this->_energy_points -= 25;
(this->*ptr[std::rand() % 5])(target);
}
std::cout << std::endl;
}
|
4ddec50c914bbd560619df8df1020b5f6c56ed69 | 642b6bae7c3e99684e66e42d69c6643e962eac2d | /RaceViewer.hpp | 827b53d5651a6901c36a78d1bf7f943f34ede844 | [] | no_license | xaviermawet/EcoManager2013Experimental | 0d1e344e30525e778a6b5e22051f99d870b07d4e | 946c8b5efd7b6b00914879def22fc52b0a82ace7 | refs/heads/master | 2020-04-10T07:29:54.952610 | 2013-04-16T11:16:52 | 2013-04-16T11:16:52 | 9,435,765 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 926 | hpp | RaceViewer.hpp | #ifndef __RACEVIEWER_HPP__
#define __RACEVIEWER_HPP__
#include "ExtensibleEllipseItem.hpp"
#include "DBModule/GeoCoordinate.hpp"
#include "Map/MapView.hpp"
#include <QtGui>
class ResizableView : public QGraphicsView
{
public:
explicit ResizableView(QWidget *parent);
protected:
virtual void wheelEvent(QWheelEvent *event);
};
class RaceViewer : public QDialog
{
Q_OBJECT
public:
explicit RaceViewer(const QList<GeoCoordinate>& racePoints,
QWidget *parent = 0);
// Getter
QList< QPair<QTime, QTime> > laps(void) const;
public slots:
virtual void accept(void);
private:
void cutLaps(void);
QList<GeoCoordinate> mPoints;
QList< QPair<QTime, QTime> > mLaps;
QGraphicsScene* scene;
ResizableView* view;
QGraphicsEllipseItem* marker;
};
#endif /* __RACEVIEWER_HPP__ */
|
ec2f12027f229b88dbec0bce070e3506b42dcd03 | 8ebf49a1eac01a9757cff0444af247d66e0352c5 | /2016-ICDE-RkFN/DCCR.cpp | 588aa854e2582e718458024d09b31599cb749b60 | [] | no_license | safarisoul/ResearchProjects | 9a5f62cf9364f879e5ede27e9edfb57532c1fc76 | 7171965b07e70d73e643b82a084571ec8f8559ad | refs/heads/master | 2021-01-01T19:21:07.628414 | 2015-12-21T02:33:03 | 2015-12-21T02:33:03 | 20,355,576 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 61,906 | cpp | DCCR.cpp | #include "DCCR.h"
void DCCR::rkfn(RStarTree& fTree, RStarTree& cTree, Point& query, size_t k, Result& result, Result& notResult)
{
struct timeval start, end;
Vertex q;
q.x = query.coord[0];
q.y = query.coord[1];
RStarTree band;
gettimeofday(&start, NULL);
bool good = BBS::circularkSkyband(band, fTree, NORMALIZE_SCALE, k, query);
gettimeofday(&end, NULL);
long seconds = end.tv_sec - start.tv_sec;
long useconds = end.tv_usec - start.tv_usec;
Argument::Tbbs += seconds * 1e6 + useconds;
if(!good)
{
Argument::Sdccr++;
return;
}
KDepthContour kdc;
gettimeofday(&start, NULL);
SkyRider::kDepthContour(band, kdc, k);
gettimeofday(&end, NULL);
seconds = end.tv_sec - start.tv_sec;
useconds = end.tv_usec - start.tv_usec;
Argument::Tskyrider += seconds * 1e6 + useconds;
//kdc.print();
CandidateRegion cr;
gettimeofday(&start, NULL);
candidateRegion(fTree, band, q, k, kdc, cr);
gettimeofday(&end, NULL);
seconds = end.tv_sec - start.tv_sec;
useconds = end.tv_usec - start.tv_usec;
Argument::Tcr += seconds * 1e6 + useconds;
//cr.print();
if(cr.phi)
{
Argument::Sdccr++;
return;
}
if(k == 1)
{
gettimeofday(&start, NULL);
filterVerify(cTree, cr, result, notResult);
gettimeofday(&end, NULL);
seconds = end.tv_sec - start.tv_sec;
useconds = end.tv_usec - start.tv_usec;
Argument::Tfv += seconds * 1e6 + useconds;
}
else
{
RStarTree skirt;
RadiansPoint_V skirt_v;
gettimeofday(&start, NULL);
outerSkirt(band, skirt, skirt_v, kdc, q);
gettimeofday(&end, NULL);
seconds = end.tv_sec - start.tv_sec;
useconds = end.tv_usec - start.tv_usec;
Argument::Tsk += seconds * 1e6 + useconds;
Argument::NFband += band.root->aggregate;
Argument::NFskirt += skirt.root->aggregate;
RadiansRange_V crr;
gettimeofday(&start, NULL);
candidateRange(crr, skirt_v, k, q);
gettimeofday(&end, NULL);
seconds = end.tv_sec - start.tv_sec;
useconds = end.tv_usec - start.tv_usec;
Argument::Tcrr += seconds * 1e6 + useconds;
gettimeofday(&start, NULL);
filterVerify(skirt, cTree, query, q, k, cr, result, notResult, crr);
gettimeofday(&end, NULL);
seconds = end.tv_sec - start.tv_sec;
useconds = end.tv_usec - start.tv_usec;
Argument::Tfv += seconds * 1e6 + useconds;
}
}
void DCCR::vara(RStarTree& fTree, RStarTree& cTree, Point& query, size_t k, Result& result, Result& notResult)
{
Vertex q;
q.x = query.coord[0];
q.y = query.coord[1];
RStarTree band;
bool good = BBS::circularkSkyband(band, fTree, NORMALIZE_SCALE, k, query);
if(!good)
return;
KDepthContour kdc;
SkyRider::kDepthContour(band, kdc, k);
RStarTree skirt;
RadiansPoint_V skirt_v;
outerSkirt(band, skirt, skirt_v, kdc, q);
RadiansRange_V crr;
candidateRange(crr, skirt_v, k, q);
Coord mid = NORMALIZE_SCALE / 2;
size_t cntAR = 0, total = 1000000;
// percentage of area inside candidate range : cntAR / total
for(size_t iq = 0; iq < total; iq++)
{
while(true)
{
Coord point[DIM];
Coord diff = 0, dis = 0;
for(size_t dim = 0; dim < DIM; dim++)
{
point[dim] = 1e-3 + Util2D::getRandom() * (NORMALIZE_SCALE - 1);
diff = point[dim] - mid;
dis += diff * diff;
}
if(sqrt(dis) > mid)
continue;
Vertex p;
p.x = point[0];
p.y = point[1];
if(contain(crr, p, q) == CONTAIN_COMPLETE)
cntAR++;
break;
}
}
double v = (2 * Argument::k * M_PI) / Argument::numFacilities;
double theta1 = 0, theta2 = M_PI;
while(theta2 - theta1 > 1e-6)
{
double mid = 0.5 * (theta1 + theta2);
double value = mid - sin(mid);
if(value < v)
theta1 = mid;
else
theta2 = mid;
}
double theta = 0.5 * (theta1 + theta2);
double htheta = theta / 2;
double rprime = cos(htheta);
Vertex center;
center.x = 1;
center.y = 1;
Vertex p;
p.x = q.x / NORMALIZE_SCALE * 2;
p.y = q.y / NORMALIZE_SCALE * 2;
double d = sqrt(Util2D::distance2(center, p));
double alpha = 2 * acos(rprime/d);
double beta = alpha;
double gamma = acos(d*sin(beta/2));
double mu = Util2D::H_PI - beta/2;
double eta = gamma + mu;
double delta = Util2D::T_PI - 2 * eta;
double base = 2 * sin(delta/2);
double h = d + cos(delta/2);
double areaseg = 0.5 * (delta - sin(delta));
double areatri = 0.5 * base * h;
double area = areaseg + areatri;
double totalarea = M_PI;
if(!isnan(area/totalarea))
{
Argument::cntCM++;
Argument::cumuAR += ((double)cntAR/total);
Argument::expARperR += area/totalarea;
}
}
void DCCR::tpru(RStarTree& fTree, RStarTree& cTree, Point& query, size_t k, Result& result, Result& notResult)
{
Vertex q;
q.x = query.coord[0];
q.y = query.coord[1];
RStarTree band;
bool good = BBS::circularkSkyband(band, fTree, NORMALIZE_SCALE, k, query);
if(!good)
return;
KDepthContour kdc;
SkyRider::kDepthContour(band, kdc, k);
CandidateRegion cr;
candidateRegion(fTree, band, q, k, kdc, cr);
if(cr.phi)
return;
RStarTree skirt;
RadiansPoint_V skirt_v;
outerSkirt(band, skirt, skirt_v, kdc, q);
RadiansRange_V crr;
candidateRange(crr, skirt_v, k, q);
Argument::cntP++;
tpruFVCR(skirt, cTree, query, q, k, cr, result, notResult, crr);
tpruFVCRR(skirt, cTree, query, q, k, cr, result, notResult, crr);
tpruFVB(skirt, cTree, query, q, k, cr, result, notResult, crr);
tpruFVS(skirt, cTree, query, q, k, cr, result, notResult, crr);
}
// *****************************************************************************
// candidate region
// *****************************************************************************
void DCCR::candidateRegion(RStarTree& fTree, RStarTree& band, Vertex& q, size_t k, KDepthContour& kdc, CandidateRegion& cr)
{
if(kdc.upperHullVertex.size() == 0)
return;
else if(enclose(kdc, q))
{
cr.phi = true;
return;
}
Tangent tangents;
tangent(kdc, q, tangents);
HalfSpace hSpace1, hSpace2;
HalfSpace::halfSpace(tangents.tPoint1, q, hSpace1);
HalfSpace::halfSpace(tangents.tPoint2, q, hSpace2);
cr.init();
cr.prune(hSpace1);
cr.prune(hSpace2);
if(cr.phi)
return;
Vertex_V pruners;
initPruners(kdc, tangents, q, pruners);
updatePruners(cr, pruners, q);
while(pruners.size() > 0)
{
HalfSpace hSpace;
HalfSpace::halfSpace(pruners.at(0), q, hSpace);
pruners.erase(pruners.begin());
if(cr.prune(hSpace))
updatePruners(cr, pruners, q);
}
}
bool DCCR::enclose(KDepthContour& kdc, Vertex& q)
{
for(size_t il = 0; il < kdc.upperHullLine.size(); il++)
if(Util2D::isAboveLine(kdc.upperHullLine.at(il), q) == Util2D::STRICT_ABOVE) // q is above upper hull
return false;
for(size_t il = 0; il < kdc.lowerHullLine.size(); il++)
if(Util2D::isAboveLine(kdc.lowerHullLine.at(il), q) == Util2D::STRICT_BELOW) // q is below lower hull
return false;
return true;
}
void DCCR::tangent(KDepthContour& kdc, Vertex& q, Tangent& tangent)
{
Line line;
size_t n = 0;int cnt = 0;
Util2D::linePass(kdc.left, q, line);
if(verifyTangent(line, kdc.lowerHullVertex.at(kdc.lowerHullVertex.size() - 2), kdc.upperHullVertex.at(1)))
{
cnt++;
addTangent(tangent, kdc.left, line, n);
}
Util2D::linePass(kdc.right, q, line);
if(verifyTangent(line, kdc.upperHullVertex.at(kdc.upperHullVertex.size() - 2), kdc.lowerHullVertex.at(1)))
{
cnt++;
addTangent(tangent, kdc.right, line, n);
}
for(size_t iv = 1; iv < kdc.upperHullVertex.size() - 1; iv++)
{
Util2D::linePass(kdc.upperHullVertex.at(iv), q, line);
if(verifyTangent(line, kdc.upperHullVertex.at(iv - 1), kdc.upperHullVertex.at(iv + 1)))
{
cnt++;
addTangent(tangent, kdc.upperHullVertex.at(iv), line, n);
}
}
for(size_t iv = 1; iv < kdc.lowerHullVertex.size() - 1; iv++)
{
Util2D::linePass(kdc.lowerHullVertex.at(iv), q, line);
if(verifyTangent(line, kdc.lowerHullVertex.at(iv - 1), kdc.lowerHullVertex.at(iv + 1)))
{
cnt++;
addTangent(tangent, kdc.lowerHullVertex.at(iv), line, n);
}
}
if(n < 2)
{
addTangent(tangent, kdc.upperHullVertex.at(0), line, n);
addTangent(tangent, kdc.lowerHullVertex.at(0), line, n);
}
Util2D::linePass(tangent.tPoint1, tangent.tPoint2, tangent.connection);
}
void DCCR::initPruners(KDepthContour& kdc, Tangent& tangent, Vertex& q, Vertex_V& pruners)
{
for(size_t iv = 1; iv < kdc.upperHullVertex.size(); iv++)
pruners.push_back(kdc.upperHullVertex.at(iv));
for(size_t iv = 1; iv < kdc.lowerHullVertex.size(); iv++)
pruners.push_back(kdc.lowerHullVertex.at(iv));
}
void DCCR::updatePruners(CandidateRegion& cr, Vertex_V& pruners, Vertex& q)
{
Vertex_S vs;
cr.getVertex(vs);
Vertex_V newPruners;
for(size_t ip = 0; ip < pruners.size(); ip++)
{
bool good = false;
for(Vertex_S::iterator itvs=vs.begin(); itvs!=vs.end(); itvs++)
{
Vertex v = *itvs;
Coord dis2vq = Util2D::distance2(v, q);
Coord dis2vp = Util2D::distance2(pruners.at(ip), v);
if(dis2vp > dis2vq + EPS)
{
good = true;
break;
}
}
if(good)
newPruners.push_back(pruners.at(ip));
}
pruners.clear();
pruners.swap(newPruners);
}
void DCCR::candidateRange(RadiansRange_V& crr, RadiansPoint_V& skirt_v, size_t k, Vertex& q)
{
//ofstream error;
//error.open ("data/debug/error.txt", ios::out | ios::app );
//assert(error.is_open());
sort(skirt_v.begin(), skirt_v.end());
for(size_t isv1=0; isv1<skirt_v.size(); isv1++)
{
RadiansPoint& rp1 = skirt_v.at(isv1);
Radians ccwBound = rp1.angle + M_PI;// + EPS;
Radians cwBound = rp1.angle - M_PI;// - EPS;
for(size_t isv2=0; isv2<skirt_v.size(); isv2++)
{
if(isv2 == isv1)
{
rp1.cw++;
rp1.ccw++;
continue;
}
RadiansPoint& rp2 = skirt_v.at(isv2);
if(rp2.angle > rp1.angle)
{
if(rp2.angle < ccwBound)
rp1.ccw++;
if(rp2.angle - Util2D::T_PI > cwBound)
rp1.cw++;
}
else if(rp2.angle < rp1.angle)
{
if(rp2.angle + Util2D::T_PI < ccwBound)
rp1.ccw++;
if(rp2.angle > cwBound)
rp1.cw++;
}
else
{
rp1.cw++;
rp1.ccw++;
}
}
}
for(size_t isv1=0; isv1<skirt_v.size(); isv1++)
{
RadiansPoint& rp1 = skirt_v.at(isv1);
if(rp1.ccw == k)
{
Radians ccwBound = rp1.angle + M_PI;
size_t isv2 = isv1 + 1;
if(isv2 == skirt_v.size())
isv2 = 0;
while(isv2 != isv1)
{
RadiansPoint& rp2 = skirt_v.at(isv2);
if(rp2.angle > ccwBound || (rp2.angle < rp1.angle && rp2.angle + Util2D::T_PI > ccwBound))
{
if(rp2.cw == k)
{
RadiansRange rr;
rr.from = rp1.angle - Util2D::H_PI;
if(rr.from < 0)
rr.from += Util2D::T_PI;
rr.to = rp2.angle + Util2D::H_PI;
if(rr.to >= Util2D::T_PI)
rr.to -= Util2D::T_PI;
bool further = true;
size_t isvCheck = isv1;
while(true)
{
isvCheck++;
if(isvCheck == skirt_v.size())
isvCheck = 0;
if(isvCheck == isv2)
break;
RadiansPoint& rpCheck = skirt_v.at(isvCheck);
if(rpCheck.ccw < k || rpCheck.cw < k)
{
further = false;
break;
}
}
// not just the angle, but also the halfSpace
if(further)
{
HalfSpace::halfSpace(rp1.point, q, rr.start);
HalfSpace::halfSpace(rp2.point, q, rr.end);
rr.ok = true;
}
crr.push_back(rr);
break;
}
}
isv2++;
if(isv2 == skirt_v.size())
isv2 = 0;
}
}
}
//error.close();
}
// *****************************************************************************
// outer skirt
// *****************************************************************************
void DCCR::outerSkirt(RStarTree& band, RStarTree& skirt, RadiansPoint_V& skirt_v, KDepthContour& kdc, Vertex& q)
{
MinHeap heap;
heap.push(MinHeapEntry(1, band.root));
while(!heap.isEmpty())
{
MinHeapEntry e = heap.pop();
if(e.entryPtr)
{
Vertex data;
data.x = e.entryPtr->mbre.coord[0][0];
data.y = e.entryPtr->mbre.coord[1][0];
if(contain(kdc, data) == CONTAIN_NOT)
{
skirt.insertData(e.entryPtr);
RadiansPoint rp;
rp.angle = Util2D::angle(q.x, q.y, data.x, data.y);
rp.point = data;
skirt_v.push_back(rp);
}
}
else
{
int containment = contain(kdc, e.nodePtr->mbrn);
if(containment == CONTAIN_PARTIAL)
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(1, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
heap.push(MinHeapEntry(1, entryPtr));
}
}
}
else if(containment == CONTAIN_NOT)
insert(skirt, skirt_v, e.nodePtr, q);
}
}
}
void DCCR::insert(RStarTree& skirt, RadiansPoint_V& skirt_v, Node_P nodePtr, Vertex& q)
{
MinHeap heap;
heap.push(MinHeapEntry(1, nodePtr));
while(!heap.isEmpty())
{
MinHeapEntry e = heap.pop();
if(e.entryPtr)
{
skirt.insertData(e.entryPtr);
Vertex data;
data.x = e.entryPtr->mbre.coord[0][0];
data.y = e.entryPtr->mbre.coord[1][0];
RadiansPoint rp;
rp.angle = Util2D::angle(q.x, q.y, data.x, data.y);
rp.point = data;
skirt_v.push_back(rp);
}
else
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(1, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
skirt.insertData(entryPtr);
Vertex data;
data.x = entryPtr->mbre.coord[0][0];
data.y = entryPtr->mbre.coord[1][0];
RadiansPoint rp;
rp.angle = Util2D::angle(q.x, q.y, data.x, data.y);
rp.point = data;
skirt_v.push_back(rp);
}
}
}
}
}
int DCCR::contain(KDepthContour& kdc, Mbr& mbr)
{
Vertex corner[4];
corner[0].x = mbr.coord[0][0];
corner[0].y = mbr.coord[1][0];
corner[1].x = mbr.coord[0][0];
corner[1].y = mbr.coord[1][1];
corner[2].x = mbr.coord[0][1];
corner[2].y = mbr.coord[1][1];
corner[3].x = mbr.coord[0][1];
corner[3].y = mbr.coord[1][0];
bool out = false;
for(size_t il = 0; il < kdc.upperHullLine.size(); il++)
{
size_t cnt = 0;
for(size_t ic = 0; ic < 4; ic++)
if(Util2D::isAboveLine(kdc.upperHullLine.at(il), corner[ic]) == Util2D::STRICT_ABOVE)
{
out = true;
cnt++;
}
if(cnt == 4)
return CONTAIN_NOT;
}
for(size_t il = 0; il < kdc.lowerHullLine.size(); il++)
{
size_t cnt = 0;
for(size_t ic = 0; ic < 4; ic++)
if(Util2D::isAboveLine(kdc.lowerHullLine.at(il), corner[ic]) == Util2D::STRICT_BELOW)
{
out = true;
cnt++;
}
if(cnt == 4)
return CONTAIN_NOT;
}
if(out)
return CONTAIN_PARTIAL;
return CONTAIN_COMPLETE;
}
int DCCR::contain(KDepthContour& kdc, Vertex& p)
{
for(size_t il = 0; il < kdc.upperHullLine.size(); il++)
if(Util2D::isAboveLine(kdc.upperHullLine.at(il), p) != Util2D::STRICT_BELOW) // q is above upper hull
return CONTAIN_NOT;
for(size_t il = 0; il < kdc.lowerHullLine.size(); il++)
if(Util2D::isAboveLine(kdc.lowerHullLine.at(il), p) != Util2D::STRICT_ABOVE) // q is below lower hull
return CONTAIN_NOT;
return CONTAIN_COMPLETE;
}
// *****************************************************************************
// filtering and verification
// *****************************************************************************
void DCCR::filterVerify(RStarTree& skirt, RStarTree& cTree, Point& query, Vertex& q, size_t k, CandidateRegion& cr, Result& result, Result& notResult, RadiansRange_V& crr)
{
//ofstream log;
//log.open ("data/debug/log.txt", ios::out | ios::app );
//assert(log.is_open());
Sector_L secs;
MinHeap heap;
heap.push(MinHeapEntry(0, cTree.root));
while(!heap.isEmpty())
{
MinHeapEntry e = heap.pop();
Argument::CIOdccr++;
int incr = contain(cr, e.nodePtr);
if(incr == CONTAIN_NOT)
notResult.insert(e.nodePtr);
else
{
int incrr = contain(crr, e.nodePtr, q);
if(incrr == CONTAIN_NOT)
notResult.insert(e.nodePtr);
else
{
if(incr == CONTAIN_PARTIAL || incrr == CONTAIN_PARTIAL)
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(0, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
// data inside candidate region & candidate range
if(contain(cr, entryPtr) == CONTAIN_COMPLETE && contain(crr, entryPtr, q) == CONTAIN_COMPLETE)
{
if(contain(secs, entryPtr, q) == CONTAIN_COMPLETE)
result.insert(entryPtr);
// brute force verification
else
{
Point data(entryPtr->mbre.coord[0][0], entryPtr->mbre.coord[1][0]);
double r = data.distance2(query);// - EPS;
size_t cnt = RStarTreeUtil::rangeQuery2SmallTree(skirt, data, r, k);
if(cnt < k)
result.insert(entryPtr);
else
notResult.insert(entryPtr);
}
}
// data not inside candidate region & candidate range
else
notResult.insert(entryPtr);
}
}
}
else
{
if(contain(secs, e.nodePtr, q) == CONTAIN_COMPLETE)
addResult(result, e.nodePtr);
else
{
Mbr& mbr = e.nodePtr->mbrn;
size_t min = 0, max = 0;
minmax(skirt, query, q, mbr, min, max);
// if maximum possible fn farther than q is less than k
if(max < k)
{
addResult(result, e.nodePtr);
Sector sec;
getSector(e.nodePtr, q, sec);
addSector(secs, sec);
}
// if minimum possible fn farther than q is more than k
else if(min >= k)
notResult.insert(e.nodePtr);
// not sure about it, break down into smaller ones
else
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(0, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
// data inside candidate region & candidate range
if(contain(cr, entryPtr) == CONTAIN_COMPLETE && contain(crr, entryPtr, q) == CONTAIN_COMPLETE)
{
if(contain(secs, entryPtr, q) == CONTAIN_COMPLETE)
result.insert(entryPtr);
// brute force verification
else
{
Point data(entryPtr->mbre.coord[0][0], entryPtr->mbre.coord[1][0]);
double r = data.distance2(query);// - EPS;
size_t cnt = RStarTreeUtil::rangeQuery2SmallTree(skirt, data, r, k);
if(cnt < k)
result.insert(entryPtr);
else
notResult.insert(entryPtr);
}
}
// data not inside candidate region & candidate range
else
notResult.insert(entryPtr);
}
}
}
}
}
}
}
}
//cout << "(" << secs.size() << ")" << flush;
//log.close();
}
void DCCR::filterVerifyS(RStarTree& skirt, RStarTree& cTree, Point& query, Vertex& q, size_t k, CandidateRegion& cr, Result& result, Result& notResult, RadiansRange_V& crr)
{
//ofstream log;
//log.open ("data/debug/log.txt", ios::out | ios::app );
//assert(log.is_open());
Sector_L secs;
MinHeap heap;
heap.push(MinHeapEntry(0, cTree.root));
while(!heap.isEmpty())
{
MinHeapEntry e = heap.pop();
Argument::CIOdccr++;
int incr = contain(cr, e.nodePtr);
if(incr == CONTAIN_NOT)
notResult.insert(e.nodePtr);
else
{
int incrr = contain(crr, e.nodePtr, q);
if(incrr == CONTAIN_NOT)
notResult.insert(e.nodePtr);
else
{
if(incr == CONTAIN_PARTIAL || incrr == CONTAIN_PARTIAL)
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(0, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
// data inside candidate region & candidate range
if(contain(cr, entryPtr) == CONTAIN_COMPLETE && contain(crr, entryPtr, q) == CONTAIN_COMPLETE)
{
if(contain(secs, entryPtr, q) == CONTAIN_COMPLETE)
result.insert(entryPtr);
// brute force verification
else
{
Point data(entryPtr->mbre.coord[0][0], entryPtr->mbre.coord[1][0]);
double r = data.distance2(query);// - EPS;
size_t cnt = RStarTreeUtil::rangeQuery2SmallTree(skirt, data, r, k);
if(cnt < k)
result.insert(entryPtr);
else
notResult.insert(entryPtr);
}
}
// data not inside candidate region & candidate range
else
notResult.insert(entryPtr);
}
}
}
else
{
if(contain(secs, e.nodePtr, q) == CONTAIN_COMPLETE)
addResult(result, e.nodePtr);
else
{
Mbr& mbr = e.nodePtr->mbrn;
size_t min = 0, max = 0;
minmax(skirt, query, q, mbr, min, max);
// if maximum possible fn farther than q is less than k
if(max < k)
{
addResult(result, e.nodePtr);
Sector sec;
getSector(e.nodePtr, q, sec);
addSector(secs, sec);
}
// if minimum possible fn farther than q is more than k
else if(min >= k)
notResult.insert(e.nodePtr);
// not sure about it, break down into smaller ones
else
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(0, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
// data inside candidate region & candidate range
if(contain(cr, entryPtr) == CONTAIN_COMPLETE && contain(crr, entryPtr, q) == CONTAIN_COMPLETE)
{
if(contain(secs, entryPtr, q) == CONTAIN_COMPLETE)
result.insert(entryPtr);
// brute force verification
else
{
Point data(entryPtr->mbre.coord[0][0], entryPtr->mbre.coord[1][0]);
double r = data.distance2(query);// - EPS;
size_t cnt = RStarTreeUtil::rangeQuery2SmallTree(skirt, data, r, k);
if(cnt < k)
result.insert(entryPtr);
else
notResult.insert(entryPtr);
}
}
// data not inside candidate region & candidate range
else
notResult.insert(entryPtr);
}
}
}
}
}
}
}
}
//cout << "(" << secs.size() << ")" << flush;
//log.close();
}
void DCCR::tpruFVCR(RStarTree& skirt, RStarTree& cTree, Point& query, Vertex& q, size_t k, CandidateRegion& cr, Result& result, Result& notResult, RadiansRange_V& crr)
{
//ofstream log;
//log.open ("data/debug/log.txt", ios::out | ios::app );
//assert(log.is_open());
MinHeap heap;
heap.push(MinHeapEntry(0, cTree.root));
while(!heap.isEmpty())
{
MinHeapEntry e = heap.pop();
Argument::CIOdccr++;
int containment = contain(cr, e.nodePtr);
// node inside candidate region
if(containment == CONTAIN_COMPLETE)
;
// node intersect with candidate region & candidate range
else if(containment == CONTAIN_PARTIAL)
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(0, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
// data inside candidate region & candidate range
if(contain(cr, entryPtr) == CONTAIN_COMPLETE)
;
// data not inside candidate region & candidate range
else
Argument::cntPCR++;
}
}
}
// node outside of candidate region
else
Argument::cntPCR += e.nodePtr->aggregate;
}
//log.close();
}
void DCCR::tpruFVCRR(RStarTree& skirt, RStarTree& cTree, Point& query, Vertex& q, size_t k, CandidateRegion& cr, Result& result, Result& notResult, RadiansRange_V& crr)
{
//ofstream log;
//log.open ("data/debug/log.txt", ios::out | ios::app );
//assert(log.is_open());
MinHeap heap;
heap.push(MinHeapEntry(0, cTree.root));
while(!heap.isEmpty())
{
MinHeapEntry e = heap.pop();
Argument::CIOdccr++;
int containment = contain(crr, e.nodePtr, q);
if(containment == CONTAIN_COMPLETE)
;
// node intersect with candidate region & candidate range
else if(containment == CONTAIN_PARTIAL)
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(0, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
// data inside candidate region & candidate range
if(contain(crr, entryPtr, q) == CONTAIN_COMPLETE)
;
// data not inside candidate region & candidate range
else
Argument::cntPCRR++;
}
}
}
// node outside of candidate region
else
Argument::cntPCRR += e.nodePtr->aggregate;
}
//log.close();
}
void DCCR::tpruFVB(RStarTree& skirt, RStarTree& cTree, Point& query, Vertex& q, size_t k, CandidateRegion& cr, Result& result, Result& notResult, RadiansRange_V& crr)
{
//ofstream log;
//log.open ("data/debug/log.txt", ios::out | ios::app );
//assert(log.is_open());
MinHeap heap;
heap.push(MinHeapEntry(0, cTree.root));
while(!heap.isEmpty())
{
MinHeapEntry e = heap.pop();
Argument::CIOdccr++;
int containment = contain(cr, e.nodePtr);
// node inside candidate region
if(containment == CONTAIN_COMPLETE)
containment = contain(crr, e.nodePtr, q);
if(containment == CONTAIN_COMPLETE)
;
// node intersect with candidate region & candidate range
else if(containment == CONTAIN_PARTIAL)
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(0, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
// data inside candidate region & candidate range
if(contain(cr, entryPtr) == CONTAIN_COMPLETE && contain(crr, entryPtr, q) == CONTAIN_COMPLETE)
;
// data not inside candidate region & candidate range
else
Argument::cntPB++;
}
}
}
// node outside of candidate region
else
Argument::cntPB += e.nodePtr->aggregate;
}
//log.close();
}
void DCCR::tpruFVS(RStarTree& skirt, RStarTree& cTree, Point& query, Vertex& q, size_t k, CandidateRegion& cr, Result& result, Result& notResult, RadiansRange_V& crr)
{
Sector_L secs;
MinHeap heap;
heap.push(MinHeapEntry(0, cTree.root));
while(!heap.isEmpty())
{
MinHeapEntry e = heap.pop();
Argument::CIOdccr++;
int incr = contain(cr, e.nodePtr);
if(incr == CONTAIN_NOT)
;
else
{
int incrr = contain(crr, e.nodePtr, q);
if(incrr == CONTAIN_NOT)
;
else
{
if(incr == CONTAIN_PARTIAL || incrr == CONTAIN_PARTIAL)
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(0, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
// data inside candidate region & candidate range
if(contain(cr, entryPtr) == CONTAIN_COMPLETE && contain(crr, entryPtr, q) == CONTAIN_COMPLETE)
{
if(contain(secs, entryPtr, q) == CONTAIN_COMPLETE)
{
result.insert(entryPtr);
Argument::cntIS++;
}
// brute force verification
else
{
Point data(entryPtr->mbre.coord[0][0], entryPtr->mbre.coord[1][0]);
double r = data.distance2(query);// - EPS;
size_t cnt = RStarTreeUtil::rangeQuery2SmallTree(skirt, data, r, k);
if(cnt < k)
result.insert(entryPtr);
else
;
}
}
// data not inside candidate region & candidate range
else
;
}
}
}
else
{
if(contain(secs, e.nodePtr, q) == CONTAIN_COMPLETE)
{
addResult(result, e.nodePtr);
Argument::cntIS += e.nodePtr->aggregate;
}
else
{
Mbr& mbr = e.nodePtr->mbrn;
size_t min = 0, max = 0;
minmax(skirt, query, q, mbr, min, max);
// if maximum possible fn farther than q is less than k
if(max < k)
{
addResult(result, e.nodePtr);
Sector sec;
getSector(e.nodePtr, q, sec);
addSector(secs, sec);
}
// if minimum possible fn farther than q is more than k
else if(min >= k)
;
// not sure about it, break down into smaller ones
else
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(0, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
// data inside candidate region & candidate range
if(contain(cr, entryPtr) == CONTAIN_COMPLETE && contain(crr, entryPtr, q) == CONTAIN_COMPLETE)
{
if(contain(secs, entryPtr, q) == CONTAIN_COMPLETE)
{
result.insert(entryPtr);
Argument::cntIS++;
}
// brute force verification
else
{
Point data(entryPtr->mbre.coord[0][0], entryPtr->mbre.coord[1][0]);
double r = data.distance2(query);// - EPS;
size_t cnt = RStarTreeUtil::rangeQuery2SmallTree(skirt, data, r, k);
if(cnt < k)
result.insert(entryPtr);
else
;
}
}
// data not inside candidate region & candidate range
else
;
}
}
}
}
}
}
}
}
Argument::cntRST += result.aggregate;
}
void DCCR::filterVerify(RStarTree& cTree, CandidateRegion& cr, Result& result, Result& notResult)
{
//ofstream log;
//log.open ("data/debug/log.txt", ios::out | ios::app );
//assert(log.is_open());
MinHeap heap;
heap.push(MinHeapEntry(0, cTree.root));
while(!heap.isEmpty())
{
MinHeapEntry e = heap.pop();
Argument::CIOdccr++;
int containment = contain(cr, e.nodePtr);
// node inside candidate region
if(containment == CONTAIN_COMPLETE)
addResult(result, e.nodePtr);
// node intersect with candidate region
else if(containment == CONTAIN_PARTIAL)
{
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(0, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
// data inside candidate region
if(contain(cr, entryPtr) == CONTAIN_COMPLETE)
result.insert(entryPtr);
// data not inside candidate region
else
notResult.insert(entryPtr);
}
}
}
// node outside of candidate region
else
notResult.insert(e.nodePtr);
}
//log.close();
}
void DCCR::addResult(Result& result, Node_P nodePtr)
{
MinHeap heap;
heap.push(MinHeapEntry(1, nodePtr));
while(!heap.isEmpty())
{
MinHeapEntry e = heap.pop();
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(1, childPtr));
Argument::CIOdccr++;
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
result.insert(entryPtr);
}
}
}
}
int DCCR::contain(CandidateRegion& cr, Entry_P entryPtr)
{
Vertex client;
client.x = entryPtr->mbre.coord[0][0];
client.y = entryPtr->mbre.coord[1][0];
for(size_t ihs = 0; ihs < cr.hSpaces.size(); ihs++)
{
HalfSpace& hSpace = cr.hSpaces.at(ihs);
if(Util2D::isAboveLine(hSpace.line, client) == hSpace.isAbove)
return CONTAIN_NOT;
}
return CONTAIN_COMPLETE;
}
int DCCR::contain(CandidateRegion& cr, Node_P nodePtr)
{
Vertex clients[4];
clients[0].x = nodePtr->mbrn.coord[0][0];
clients[0].y = nodePtr->mbrn.coord[1][0];
clients[1].x = nodePtr->mbrn.coord[0][0];
clients[1].y = nodePtr->mbrn.coord[1][1];
clients[2].x = nodePtr->mbrn.coord[0][1];
clients[2].y = nodePtr->mbrn.coord[1][0];
clients[3].x = nodePtr->mbrn.coord[0][1];
clients[3].y = nodePtr->mbrn.coord[1][1];
bool inside = false, outside = false;
for(size_t ihs = 0; ihs < cr.hSpaces.size(); ihs++)
{
HalfSpace& hSpace = cr.hSpaces.at(ihs);
for(size_t ic = 0; ic < 4; ic++)
{
int status = Util2D::isAboveLine(hSpace.line, clients[ic]);
if(status == hSpace.isAbove)
outside = true;
else if(status == Util2D::AROUND)
; // ignore
else
inside = true;
}
if(outside && !inside)
return CONTAIN_NOT;
}
if(inside && !outside)
return CONTAIN_COMPLETE;
return CONTAIN_PARTIAL;
}
int DCCR::contain(RadiansRange_V& crr, Vertex& p, Vertex& q)
{
for(size_t icrr=0; icrr<crr.size(); icrr++)
{
RadiansRange& rs = crr.at(icrr);
if(rs.ok)
{
if(Util2D::isAboveLine(rs.start.line, p) != rs.start.isAbove && Util2D::isAboveLine(rs.end.line, p) != rs.end.isAbove)
return CONTAIN_COMPLETE;
}
else
{
Radians r = Util2D::angle(q.x, q.y, p.x, p.y);
if(rs.from < rs.to)
{
if(rs.from < r && r < rs.to)
return CONTAIN_COMPLETE;
}
else
{
if(rs.from < r || r < rs.to)
return CONTAIN_COMPLETE;
}
}
}
return CONTAIN_NOT;
}
int DCCR::contain(RadiansRange_V& crr, Entry_P entryPtr, Vertex& q)
{
for(size_t icrr=0; icrr<crr.size(); icrr++)
{
RadiansRange& rs = crr.at(icrr);
Vertex p;
p.x = entryPtr->mbre.coord[0][0];
p.y = entryPtr->mbre.coord[1][0];
if(rs.ok)
{
if(Util2D::isAboveLine(rs.start.line, p) != rs.start.isAbove && Util2D::isAboveLine(rs.end.line, p) != rs.end.isAbove)
return CONTAIN_COMPLETE;
}
else
{
Radians r = Util2D::angle(q.x, q.y, p.x, p.y);
if(rs.from < rs.to)
{
if(rs.from < r && r < rs.to)
return CONTAIN_COMPLETE;
}
else
{
if(rs.from < r || r < rs.to)
return CONTAIN_COMPLETE;
}
}
}
return CONTAIN_NOT;
}
int DCCR::contain(RadiansRange_V& crr, Node_P nodePtr, Vertex& q)
{
Vertex p[4];
p[0].x = nodePtr->mbrn.coord[0][0];
p[0].y = nodePtr->mbrn.coord[1][0];
p[1].x = nodePtr->mbrn.coord[0][0];
p[1].y = nodePtr->mbrn.coord[1][1];
p[2].x = nodePtr->mbrn.coord[0][1];
p[2].y = nodePtr->mbrn.coord[1][0];
p[3].x = nodePtr->mbrn.coord[0][1];
p[3].y = nodePtr->mbrn.coord[1][1];
for(size_t icrr=0; icrr<crr.size(); icrr++)
{
RadiansRange& rs = crr.at(icrr);
if(rs.ok)
{
bool s[4][2];
for(size_t ip = 0; ip < 4; ip++)
{
s[ip][0] = (Util2D::isAboveLine(rs.start.line, p[ip]) != rs.start.isAbove);
s[ip][1] = (Util2D::isAboveLine(rs.end.line, p[ip]) != rs.end.isAbove);
}
if(s[0][0] && s[0][1] && s[1][0] && s[1][1] && s[2][0] && s[2][1] && s[3][0] && s[3][1])
return CONTAIN_COMPLETE;
if( (s[0][0]^s[1][0]) || (s[0][0]^s[2][0]) || (s[0][0]^s[3][0]) || (s[1][0]^s[2][0]) || (s[1][0]^s[3][0]) || (s[2][0]^s[3][0]) )
return CONTAIN_PARTIAL;
if( (s[0][1]^s[1][1]) || (s[0][1]^s[2][1]) || (s[0][1]^s[3][1]) || (s[1][1]^s[2][1]) || (s[1][1]^s[3][1]) || (s[2][1]^s[3][1]) )
return CONTAIN_PARTIAL;
}
}
if( (nodePtr->mbrn.coord[0][0] - EPS < q.x && q.x < nodePtr->mbrn.coord[0][1] + EPS)
&& (nodePtr->mbrn.coord[1][0] - EPS < q.y && q.y < nodePtr->mbrn.coord[1][1]) + EPS )
return CONTAIN_PARTIAL;
// calculate node range
Radians r[4];
bool p1 = false, p4 = false;
for(size_t ip = 0; ip < 4; ip++)
{
r[ip] = Util2D::angle(q.x, q.y, p[ip].x, p[ip].y);
if(p[ip].x > q.x)
{
if(p[ip].y > q.y)
p1 = true;
else
p4 = true;
}
}
Radians from, to; // node range
if(p1 && p4)
{
from = Util2D::T_PI;
to = 0;
for(size_t ip = 0; ip < 4; ip++)
if(r[ip] < M_PI)
to = max(to, r[ip]);
else
from = min(from, r[ip]);
}
else
{
from = min(min(r[0], r[1]), min(r[2], r[3]));
to = max(max(r[0], r[1]), max(r[2], r[3]));
}
// check node range against candidate range
for(size_t icrr=0; icrr<crr.size(); icrr++)
{
RadiansRange& rs = crr.at(icrr);
if(!rs.ok)
{
// if node range is completely inside candidate range
if(rs.from < rs.to)
{
if( (rs.from < from && from < rs.to) && (rs.from < to && to < rs.to) )
return CONTAIN_COMPLETE;
}
else
{
if( (rs.from < from || from < rs.to) && (rs.from < to || to < rs.to) )
return CONTAIN_COMPLETE;
}
// if any one of the boundary of candidate range is inside node range => overlap
if(from < to)
{
if( (from < rs.from && rs.from < to) || (from < rs.to && rs.to < to) )
return CONTAIN_PARTIAL;
}
else
{
if( (from < rs.from || rs.from < to) || (from < rs.to || rs.to < to) )
return CONTAIN_PARTIAL;
}
}
}
return CONTAIN_NOT;
}
void DCCR::minmax(RStarTree& skirt, Point& query, Vertex& q, Mbr& mbr, size_t& min, size_t& max)
{
Coord minQ = RStarTreeUtil::minDis2(query, mbr);
Coord maxQ = RStarTreeUtil::maxDis2(query, mbr);
Vertex corner[4];
corner[0].x = mbr.coord[0][0];
corner[0].y = mbr.coord[1][0];
corner[1].x = mbr.coord[0][0];
corner[1].y = mbr.coord[1][1];
corner[2].x = mbr.coord[0][1];
corner[2].y = mbr.coord[1][0];
corner[3].x = mbr.coord[0][1];
corner[3].y = mbr.coord[1][1];
MinHeap heap;
heap.push(MinHeapEntry(1, skirt.root));
while(!heap.isEmpty())
{
MinHeapEntry e = heap.pop();
if(e.nodePtr->level)
{
Node_P_V& children = *e.nodePtr->children;
for(size_t ic = 0; ic < children.size(); ic++)
{
Node_P childPtr = children.at(ic);
heap.push(MinHeapEntry(1, childPtr));
}
}
else
{
Entry_P_V& entries = *e.nodePtr->entries;
for(size_t ie = 0; ie < entries.size(); ie++)
{
Entry_P entryPtr = entries.at(ie);
Vertex p;
p.x = entryPtr->mbre.coord[0][0];
p.y = entryPtr->mbre.coord[1][0];
HalfSpace hSpace;
HalfSpace::halfSpace(p, q, hSpace);
if(Util2D::isAboveLine(hSpace.line, corner[0]) != hSpace.isAbove
&& Util2D::isAboveLine(hSpace.line, corner[1]) != hSpace.isAbove
&& Util2D::isAboveLine(hSpace.line, corner[2]) != hSpace.isAbove
&& Util2D::isAboveLine(hSpace.line, corner[3]) != hSpace.isAbove )
continue;
Point point;
point.coord[0] = entryPtr->mbre.coord[0][0];
point.coord[1] = entryPtr->mbre.coord[1][0];
Coord minM = RStarTreeUtil::minDis2(point, mbr);
Coord maxM = RStarTreeUtil::maxDis2(point, mbr);
if(maxM > minQ + EPS)
{
max++;
if(minM > maxQ + EPS)
min++;
}
}
}
}
//if(max < 10)
//cout << "*" << flush;
//cout << min << " " << max << endl;
}
void DCCR::getSector(Node_P nodePtr, Vertex& q, Sector& sec)
{
Vertex p[4];
p[0].x = nodePtr->mbrn.coord[0][0];
p[0].y = nodePtr->mbrn.coord[1][0];
p[1].x = nodePtr->mbrn.coord[0][0];
p[1].y = nodePtr->mbrn.coord[1][1];
p[2].x = nodePtr->mbrn.coord[0][1];
p[2].y = nodePtr->mbrn.coord[1][0];
p[3].x = nodePtr->mbrn.coord[0][1];
p[3].y = nodePtr->mbrn.coord[1][1];
Radians r[4];
bool p1 = false, p4 = false;
for(size_t ip = 0; ip < 4; ip++)
{
r[ip] = Util2D::angle(q.x, q.y, p[ip].x, p[ip].y);
if(p[ip].x > q.x)
{
if(p[ip].y >= q.y)
p1 = true;
else
p4 = true;
}
}
Coord disfrom, disto;
if(p1 && p4)
{
sec.from = Util2D::T_PI + 1;
sec.to = -1;
for(size_t ip = 0; ip < 4; ip++)
if(r[ip] < M_PI && r[ip] > sec.to)
{
sec.to = r[ip];
disto = Util2D::distance2(p[ip], q);
}
else if(r[ip] >= M_PI && r[ip] < sec.from)
{
sec.from = r[ip];
disfrom = Util2D::distance2(p[ip], q);
}
}
else
{
Radians min = Util2D::T_PI + 1, max = -1;
size_t mini = 0, maxi = 0;
for(size_t ip = 0; ip < 4; ip++)
{
if(r[ip] < min)
{
min = r[ip];
mini = ip;
}
if(r[ip] > max)
{
max = r[ip];
maxi = ip;
}
}
sec.from = min;
disfrom = Util2D::distance2(p[mini], q);
sec.to = max;
disto = Util2D::distance2(p[maxi], q);
}
sec.dis = max(disfrom, disto);
}
void DCCR::addSector(Sector_L& secs, Sector& sec)
{
if(sec.from > sec.to)
{
Sector first;
first.from = sec.from;
first.to = Util2D::T_PI;
first.dis = sec.dis;
addSector(secs, first);
Sector second;
second.from = 0;
second.to = sec.to;
second.dis = sec.dis;
addSector(secs, second);
}
else
{
if(secs.size() == 0)
{
secs.push_front(sec);
}
else
{
for(Sector_L::iterator iters = secs.begin(); iters != secs.end(); iters++)
{
Sector& cur = *iters;
if(sec.from >= cur.to)
{
if(iters == secs.end()--)
{
secs.push_back(sec);
}
}
else if(sec.to <= cur.from)
{
secs.insert(iters, sec);
break;
}
// sec.to > cur.from
else
{
if(sec.from < cur.from)
{
Sector add;
add.from = sec.from;
add.to = cur.from;
add.dis = sec.dis;
secs.insert(iters, add);
if(sec.to <= cur.to)
break;
else
sec.from = cur.to;
}
// sec.from >= cur.from
else
{
if(sec.to <= cur.to)
{
break;
}
// sec.to > cur.to
else if(sec.from < cur.to)
{
sec.from = cur.to;
if(iters == --secs.end())
{
secs.push_back(sec);
break;
}
}
}
}
}
}
}
}
int DCCR::contain(Sector_L& secs, Node_P nodePtr, Vertex& q)
{
Vertex p[4];
p[0].x = nodePtr->mbrn.coord[0][0];
p[0].y = nodePtr->mbrn.coord[1][0];
p[1].x = nodePtr->mbrn.coord[0][0];
p[1].y = nodePtr->mbrn.coord[1][1];
p[2].x = nodePtr->mbrn.coord[0][1];
p[2].y = nodePtr->mbrn.coord[1][0];
p[3].x = nodePtr->mbrn.coord[0][1];
p[3].y = nodePtr->mbrn.coord[1][1];
Radians r[4];
Coord dis;
bool p1 = false, p4 = false;
for(size_t ip = 0; ip < 4; ip++)
{
r[ip] = Util2D::angle(q.x, q.y, p[ip].x, p[ip].y);
if(ip == 0)
dis = Util2D::distance2(p[ip], q);
else
dis = min(dis, Util2D::distance2(p[ip], q));
if(p[ip].x > q.x)
{
if(p[ip].y > q.y)
p1 = true;
else
p4 = true;
}
}
Radians from, to; // node range
if(p1 && p4)
{
from = Util2D::T_PI;
to = 0;
for(size_t ip = 0; ip < 4; ip++)
if(r[ip] < M_PI)
to = max(to, r[ip]);
else
from = min(from, r[ip]);
if(contain(secs, from, Util2D::T_PI, dis) == CONTAIN_COMPLETE && contain(secs, 0, to, dis) == CONTAIN_COMPLETE)
return CONTAIN_COMPLETE;
else
return CONTAIN_NOT;
}
else
{
from = min(min(r[0], r[1]), min(r[2], r[3]));
to = max(max(r[0], r[1]), max(r[2], r[3]));
return contain(secs, from, to, dis);
}
}
int DCCR::contain(Sector_L& secs, Entry_P entryPtr, Vertex& q)
{
Vertex p;
p.x = entryPtr->mbre.coord[0][0];
p.y = entryPtr->mbre.coord[1][0];
Radians angle = Util2D::angle(q.x, q.y, p.x, p.y);
Coord dis = Util2D::distance2(p, q);
for(Sector_L::iterator iters = secs.begin(); iters != secs.end(); iters++)
{
Sector& cur = *iters;
if(cur.from > angle)
break;
if(cur.from <= angle && angle <= cur.to)
{
if(dis >= cur.dis)
return CONTAIN_COMPLETE;
else
return CONTAIN_NOT;
}
}
return CONTAIN_NOT;
}
int DCCR::contain(Sector_L& secs, Radians from, Radians to, Coord dis)
{
for(Sector_L::iterator iters = secs.begin(); iters != secs.end(); iters++)
{
Sector& cur = *iters;
if(to <= cur.from)
return CONTAIN_NOT;
else
{
if(from < cur.from)
return CONTAIN_NOT;
else
{
if(to <= cur.to)
{
if(dis > cur.dis + EPS)
return CONTAIN_COMPLETE;
return CONTAIN_NOT;
}
else if(from < cur.to)
{
if(dis > cur.dis + EPS)
from = cur.to;
else
return CONTAIN_NOT;
}
}
}
}
return CONTAIN_NOT;
}
|
84b736b6dece3414785fc10eece6c439861f249c | 4d5489bca6e9e787d66fedbabaf70f80582565f4 | /Logging1/src/types/TypeMission.h | dc1f43f6ec961f7551ec2f3f5ae83b3afa817ede | [] | no_license | Dronomycom/tests-ariel | 31d7813c30d3bc03bacee8c20da58a8b2de7c356 | 426cb7406ebf36c25d5589c73ecc40005449c04d | refs/heads/master | 2020-03-17T06:07:53.884662 | 2018-09-26T15:31:44 | 2018-09-26T15:31:44 | 133,342,622 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 461 | h | TypeMission.h | //
// TypeMission.h
// Logging1
//
// Created by Ariel Malka on 30/07/2018.
//
#pragma once
#include "BaseType.h"
class TypeMission : public BaseType
{
public:
int missionType;
string username;
int siteId;
string siteName;
int locationId;
string locationName;
int getId() override { return 3; }
void encode(ofstream &stream) override;
static void process(istringstream &stream, NSMutableDictionary *data);
};
|
55f2961fc66b170694655b90b31f564b68ef2d8c | ed26633a14b79286231d8ecc69b62dfa004e9402 | /bluetooth-hardware-utils/bluetooth-hardware-utils.ino | 9662ca9cec90ac5267234c19f0d0fc3df89f090a | [] | no_license | L-K-Mist/vue-web-bluetooth-arduino-starter | ddf6b9fc614e09157ed3d9bb9b617ce7c0375447 | 6619e61f6e122bd2f07f4be3951c02ef31620416 | refs/heads/master | 2023-02-20T17:29:42.036844 | 2021-01-27T07:46:51 | 2021-01-27T07:46:51 | 330,870,191 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,082 | ino | bluetooth-hardware-utils.ino | #include <SoftwareSerial.h>
/*
This is a usefull place to start, while getting to know your bluetooth hardware-module.
Note: ble_cmd only works while there is no currently active bluetooth connection.
See comment at the end of this file for the commands for the module I was using.
If you get increasing errors at longer distances (5 meters), it might help to set the
baud rate lower with AT+BAUD.
*/
SoftwareSerial ble_device(3,4);
String str_ii = "";
int ii_0 = 0;
void setup() {
Serial.begin(115200);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
ble_device.begin(115200);
delay(100);
// ble_help(); // uncomment to print commands available for your ble hardware-module.
delay(100);
}
void loop() {
Serial.println("Hello Dee!");
ble_device.println("hi");
// Enter AT+ commands of interest here (BLE Address, UUIDs, Power settings)
ble_cmd("AT+CHAR","Char UUID: "); // printout character UUID
ble_cmd("AT+UUID", "Service UUID: ");
ble_cmd("AT+VERSION","Version: "); // module version
ble_cmd("AT+PIN","pin: ");
// ble_cmd("AT+CHAR","Char UUID: "); // printout character UUID
// ble_cmd("AT+VERSION","Version: "); // module version
// ble_cmd("AT+RST",""); // reset BLE module
delay(2000);
}
String ble_cmd(String cmd_str,String desc_str){
str_ii = "";
unsigned long t1 = millis();
ble_device.println(cmd_str);
while (true){
char in_char = ble_device.read();
if (int(in_char)==-1 or int(in_char)==42){
if ((millis()-t1)>2000){ // 2 second timeout
return "Err";
}
continue;
}
if (in_char=='\n'){
Serial.print("Bluetooth "+desc_str);
Serial.println(str_ii.substring(0,str_ii.length()));
return str_ii;
}
str_ii+=in_char;
}
}
void ble_help(){
ble_device.println("AT+HELP"); // list all AT+ commands
while (true){ // loop to print all AT+ commands
char in_char = ble_device.read();
if (int(in_char)==-1 or int(in_char)==42){continue;}
str_ii+=in_char;
if (in_char=='\n'){
if (str_ii==String('\r')+String('\n')){
if (ii_0 == 0){
ii_0 = 1;
continue;
}
break; // break after more than 1 empty carriage return and newline
}
Serial.print(str_ii);
str_ii = "";
}
}
}
/* Help result for JDY-08 CC2541 BLUETOOTH 4.0 BLE SERIAL MODULE
Command Description
----------------------------------------------------------------
AT Check if the command terminal work normally
AT+RESET Software reboot
AT+VERSION Get firmware, bluetooth, HCI and LMP version
AT+HELP List all the commands
AT+NAME Get/Set local device name
AT+PIN Get/Set pin code for pairing
AT+BAUD Get/Set baud rate
AT+LADDR Get loaal bluetooth address
AT+ADDR Get local bluetooth address
AT+DEFAULT Restore factory default
AT+RENEW Restore factory default
AT+STATE Get current state
AT+PWRM Get/Set power on mode(low power)
AT+POWE Get/Set RF transmit power
AT+SLEEP Sleep mode
AT+ROLE Get/Set current role.
AT+PARI Get/Set UART parity bit.
AT+STOP Get/Set UART stop bit.
AT+INQ Search slave model
AT+SHOW Show the searched slave model.
AT+CONN Connect the index slave model.
AT+IMME System wait for command when power on.
AT+START System start working.
AT+UUID Get/Set system SERVER_UUID .
AT+CHAR Get/Set system CHAR_UUID .
-----------------------------------------------------------------
*/
|
b1de450246709af1ec225ced23606f6688d7265a | 1cd01ed5fd01f59e1bf593076e1f1bf0f350dafb | /week-3/Введение в структуры и классы/names1.cpp | 40e18c501843fc96aaa7f3238ad3aa7f77ea3695 | [] | no_license | t-denisova/white-belt | 63fcd372c5931464666dbaa2b0a74c4d0bf58512 | d3bce8115b23de9a9a1975c245fae46238e47656 | refs/heads/master | 2020-03-25T16:56:39.597665 | 2018-09-02T16:42:24 | 2018-09-02T16:42:24 | 143,955,327 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,234 | cpp | names1.cpp | #include <map>
class Person {
public:
void ChangeFirstName(int year, const string& first_name) {
// добавить факт изменения имени на first_name в год year
full_name[year].name = first_name;
}
void ChangeLastName(int year, const string& last_name) {
// добавить факт изменения фамилии на last_name в год year
full_name[year].surname = last_name;
}
string GetFullName(int year) {
// получить имя и фамилию по состоянию на конец года year
bool flag = true;
string n = "with unknown first name";
string s = "with unknown last name";
string result = "Incognito";
for(const auto& i: full_name) {
if (i.first <= year) {
if(i.second.name != "") {
n = i.second.name;
flag = false;
}
if(i.second.surname != "") {
s = i.second.surname;
}
if (flag) {
result = s + " " + n;
} else {
result = n + " " + s;
}
}
}
return result;
}
private:
// приватные поля
struct NameSurname {
string name;
string surname;
};
map <int, NameSurname> full_name;
}; |
f3d1a7b363f0d4b6814b31ef924aa4399d1889fc | eb4c0b7cdd96ee4052c21686bc323d454980a3ae | /SWExpertAcademy/D2/(1285) 아름이의 돌 던지기.cpp | 58bcc3745f976d0bdcdcc514124e34f1b7152bf9 | [] | no_license | gospel306/Algorithm | c3963c1956cb2c13e92208e33086fc07aa164118 | dace8562cd5b1801e6aeebd525631b5f5932e1fe | refs/heads/master | 2022-05-02T15:41:47.699194 | 2022-04-04T15:09:55 | 2022-04-04T15:09:55 | 196,487,787 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 490 | cpp | (1285) 아름이의 돌 던지기.cpp | #include <iostream>
using namespace std;
int main() {
int T, x;
cin >> T;
int N, n, distance, min_distance, min_count;
for(x=1; x<=T; x++) {
cin >> N;
min_distance = 100001;
for(n=0; n<N; n++) {
cin >> distance;
distance = abs(distance);
if( distance < min_distance ) {
min_distance = distance;
min_count = 1;
continue;
}
if( distance == min_distance )
min_count++;
}
cout << "#" << x << " " << min_distance << " " << min_count << endl;
}
}
|
74d1a8a77ff7a7d2743c2c39ca6db4d9086c866a | 52f64708ba7560f5d16eef95b057a993ab73c787 | /Codeforces/1107/TaskE.cpp | 50f93e0c8d7bd3f2850b34613a57a9c8e7f6dc1e | [] | no_license | ckpiyanon/submission | 1c5709755afeba8b5087fa29b12f9c2c931c4b68 | 7b3f546e3c1e10787a24f567c9f2ec1366bbaf5a | refs/heads/master | 2022-10-28T18:42:34.937505 | 2020-06-15T22:00:19 | 2020-06-15T22:00:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,015 | cpp | TaskE.cpp | #include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
#define vi vector<int>
#define iii tuple<int, int, int>
#define long long long
#define pii pair<int, int>
#define x first
#define y second
using namespace std;
const long MOD = 1e9+7, LINF = 1e18 + 1e16;
const int INF = 1e9+1;
const double EPS = 1e-10;
const int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1};
const int N = 105;
class TaskE {
private:
int n, val[N];
long dp[N][N][N];
char A[N];
long mic(int p, int l, int r) {
if(l > r) return 0;
if(l == r) return val[p];
long &now = dp[p][l][r];
if(now) return now;
now = val[p] + mic(1, l+1, r);
for(int i = l+1; i <= r; ++i) if(A[l] == A[i]) {
now = max(now, mic(1, l+1, i-1) + mic(p+1, i, r));
}
return now;
}
public:
void solve(istream& cin, ostream& cout) {
cin >> n;
cin >> A+1;
for(int i = 1; i <= n; ++i) cin >> val[i];
cout << mic(1, 1, n) << endl;
}
}; |
cd9df55d937de29a89354c4a3194ddbd05bd5e61 | 91ac219c4cde8c08a6b23ac3d207c1b21124b627 | /common/datadecoding/DABMOT.h | d9bf156a800b34681123ccfdcb50cdd1654c180b | [] | no_license | DazDSP/hamdrm-dll | e41b78d5f5efb34f44eb3f0c366d7c1368acdbac | 287da5949fd927e1d3993706204fe4392c35b351 | refs/heads/master | 2023-04-03T16:21:12.206998 | 2008-01-05T19:48:59 | 2008-01-05T19:48:59 | 354,168,520 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,096 | h | DABMOT.h | /******************************************************************************\
* Technische Universitaet Darmstadt, Institut fuer Nachrichtentechnik
* Copyright (c) 2001
*
* Author(s):
* Volker Fischer
* Francesco Lanza
*
* Description:
* See DABMOT.cpp
*
******************************************************************************
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
\******************************************************************************/
#if !defined(DABMOT_H__3B0UBVE98732KJVEW363E7A0D31912__INCLUDED_)
#define DABMOT_H__3B0UBVE98732KJVEW363E7A0D31912__INCLUDED_
#include "../GlobalDefinitions.h"
#include "../Vector.h"
#include "../CRC.h"
/* Classes ********************************************************************/
class CMOTObjectRaw
{
public:
class CDataUnit
{
public:
CDataUnit() {Reset();}
void Reset();
void Add(CVector<_BINARY>& vecbiNewData,
const int iSegmentSize, const int iSegNum);
CVector<_BINARY> vecbiData;
_BOOLEAN bOK, bReady;
int iDataSegNum;
};
class CDataUnitRx
{
public:
CDataUnitRx() {Reset();}
void Reset();
void Add(CVector<_BINARY>& vecbiNewData,
const int iSegmentSize, const int iSegNum);
CVector<CVector<_BINARY> > vvbiSegment;
_BOOLEAN bOK, bReady;
int iDataSegNum;
int iTotSegments;
};
int iTransportID;
int iSegmentSize;
int iActSegment;
CDataUnit Header;
CDataUnit Body;
CDataUnitRx BodyRx;
};
class CMOTObject
{
public:
CMOTObject() {Reset();}
CMOTObject(const CMOTObject& NewObj) : vecbRawData(NewObj.vecbRawData),
strName(NewObj.strName) {}
inline CMOTObject& operator=(const CMOTObject& NewObj)
{
strName = NewObj.strName;
strNameandDir = NewObj.strNameandDir;
vecbRawData.Init(NewObj.vecbRawData.Size());
vecbRawData = NewObj.vecbRawData;
return *this;
}
void Reset()
{
vecbRawData.Init(0);
strName = "";
strNameandDir = "";
bIsLeader = FALSE;
}
CVector<_BYTE> vecbRawData;
string strName;
string strNameandDir;
_BOOLEAN bIsLeader;
int iTransportID;
};
/* Encoder ------------------------------------------------------------------ */
class CMOTDABEnc
{
public:
CMOTDABEnc() {}
virtual ~CMOTDABEnc() {}
void Reset(int iSegLen);
_BOOLEAN GetDataGroup(CVector<_BINARY>& vecbiNewData);
void SetMOTObject(CMOTObject& NewMOTObject,CVector<short> vecsDataIn);
int GetPicCount(void);
int GetPicSegmAct(void) { return iSegmCnt; };
int GetPicSegmTot(void) { return iTotSegm; };
protected:
class CMOTObjSegm
{
public:
CVector<CVector<_BINARY> > vvbiHeader;
CVector<CVector<_BINARY> > vvbiBody;
CVector<_BINARY> vecbiToSend;
};
void GenMOTSegments(CMOTObjSegm& MOTObjSegm);
void PartitionUnits(CVector<_BINARY>& vecbiSource,
CVector<CVector<_BINARY> >& vecbiDest,
const int iPartiSize,
int ishead);
void GenMOTObj(CVector<_BINARY>& vecbiData, CVector<_BINARY>& vecbiSeg,
const _BOOLEAN bHeader, const int iSegNum,
const int iTranspID, const _BOOLEAN bLastSeg);
CMOTObject MOTObject;
CMOTObjSegm MOTObjSegments;
int iSegmCnt;
int iTotSegm;
int iTxPictCnt;
_BOOLEAN bCurSegHeader;
int iContIndexHeader;
int iContIndexBody;
int iTransportID;
int iSegmentSize;
};
/* Decoder ------------------------------------------------------------------ */
class CMOTDABDec
{
public:
CMOTDABDec() {}
virtual ~CMOTDABDec() {}
_BOOLEAN AddDataGroup(CVector<_BINARY>& vecbiNewData);
_BOOLEAN GetActMOTSegs(CVector<_BINARY>& vSegs);
_BOOLEAN GetActMOTObject(CMOTObject& NewMOTObject);
_BOOLEAN GetActBSR(int * iNumSeg, string * bsr_name, char * path, int * iHash);
void GetMOTObject(CMOTObject& NewMOTObject)
{NewMOTObject = MOTObject; /* Simply copy object */}
int GetObjectTotSize() { return MOTObjectRaw.BodyRx.vvbiSegment.Size(); }
int GetObjectActSize()
{
if (MOTObjectRaw.BodyRx.iDataSegNum >= 0)
return MOTObjectRaw.BodyRx.iDataSegNum;
else return 0;
}
int GetObjectActPos() { return MOTObjectRaw.iActSegment; }
protected:
void DecodeObject(CMOTObjectRaw& MOTObjectRaw);
CMutex Mutex;
CMOTObject MOTObject;
CMOTObjectRaw MOTObjectRaw;
};
#endif // !defined(DABMOT_H__3B0UBVE98732KJVEW363E7A0D31912__INCLUDED_)
|
8575151b3e2f7f29c92781ce31f2008c0107fbd2 | 7a6df76d9dde307b8a0dbd2c20c5c0273a8a0d4d | /Examples/Test/Eigen_test.cpp | 24113f8e9f3e50db9383a93940d4892bb437806b | [] | no_license | tonywilliams1990/TSL | da9ea56d821603986d7748684befb9fa6df5adec | 7caa7fa565c5dfaa56903a05f2295e26aeed73c4 | refs/heads/master | 2020-05-21T20:46:37.956692 | 2018-08-24T18:03:55 | 2018-08-24T18:03:55 | 65,030,423 | 0 | 0 | null | 2017-12-08T16:28:48 | 2016-08-05T15:45:45 | C++ | UTF-8 | C++ | false | false | 1,522 | cpp | Eigen_test.cpp | // Test the Eigensystem class
#include "Eigenvalue"
using namespace std;
int main()
{
cout << "----- TESTING Eigensystem -----" << endl;
/* ----- TESTING Eigensystem class ----- */
TSL::Eigensystem<double> Eig; // Test constructor
// Test eigenvectors_computed method
if ( Eig.eigenvectors_computed() ) { cout << "Computed" << endl; }
else { cout << "Not computed" << endl; }
double N = 4.0;
double d2 = (1.0 / (N - 1.0)) * (1.0 / (N - 1.0));
TSL::Matrix<double> A_mat(4,4,0.0);
TSL::Matrix<double> B_mat(4,4,0.0);
A_mat(0,0) = 1.0;
A_mat(1,0) = 1.0/d2; A_mat(1,1) = -2.0/d2; A_mat(1,2) = 1.0/d2; A_mat(1,3) = 0.0;
A_mat(2,1) = 1.0/d2; A_mat(2,2) = -2.0/d2; A_mat(2,3) = 1.0/d2;
A_mat(3,3) = 1.0;
B_mat(0,0) = -1.0; B_mat(1,1) = -1.0; B_mat(2,2) = -1.0; B_mat(3,3) = -1.0;
cout << "A = " << endl << A_mat << endl;
cout << "B = " << endl << B_mat << endl;
// Test compute method
bool compute_eigenvectors = true;
Eig.compute( A_mat, B_mat, compute_eigenvectors );
cout << "Eigenvalues = " << endl << Eig.eigenvalues() << endl;
cout << "Alphas = " << endl << Eig.alphas() << endl;
cout << "Betas = " << endl << Eig.betas() << endl;
cout << "Eigenvectors = " << endl << Eig.eigenvector_matrix() << endl;
std::vector< TSL::Vector< std::complex<double> > > evecs;
evecs = Eig.eigenvectors();
for (std::size_t i=0; i<evecs.size(); ++i)
{
cout << "Eigenvector[" << i << "] = " << endl << evecs[i] << endl;
}
cout << "FINISHED" << endl;
}
|
afc2fee6fdb0d77ed38e989036df202ec3db74b9 | 2013049b2718bc6f77f471f7b3a0d3da7b212f03 | /347-1e.cpp | ecd0206fc161df862873d35b43e34cc1acc77af6 | [] | no_license | sky58/TopcoderSRM_AcceptedCodes | 084a9de1bb7285681f0e5128c72f2fb064d626f1 | de20a696261e56824754ba0031ab992cb6b757ea | refs/heads/master | 2020-05-20T04:45:32.935744 | 2015-04-08T03:42:24 | 2015-04-08T03:42:24 | 33,550,779 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,072 | cpp | 347-1e.cpp | //SRM347DIV1-250 Aircraft
#include<stdio.h>
#include<vector>
#include<cmath>
#include<map>
#include<cstdlib>
#include<iostream>
#include<sstream>
#include<string>
#include<algorithm>
#include<cstring>
#include<cstdio>
#include<list>
#include<set>
#include<stack>
#include<bitset>
#include<functional>
#include<cstdlib>
#include<ctime>
#include<queue>
#include<deque>
using namespace std;
class Aircraft{
public:
string Aircraft::nearMiss(vector <int> a,vector <int> b,vector <int> c,vector <int> d,int r){
double m=0,n=10e9;int i,j;
// double t1=1,d1=0;
// for(j=0;j<3;j++) d1+=(a[j]+b[j]*t1-c[j]-d[j]*t1)*(a[j]+b[j]*t1-c[j]-d[j]*t1);printf("%f\n",d1);
for(i=0;i<100000;i++){
double t1=(m*2+n)/3,t2=(m+n*2)/3;
double d1=0,d2=0;
for(j=0;j<3;j++){
d1+=(a[j]+b[j]*t1-c[j]-d[j]*t1)*(a[j]+b[j]*t1-c[j]-d[j]*t1);
d2+=(a[j]+b[j]*t2-c[j]-d[j]*t2)*(a[j]+b[j]*t2-c[j]-d[j]*t2);
}
d1=sqrt(d1);d2=sqrt(d2);
// printf("%f %f %f %f\n",d1,d2,t1,t2);
if(d1<=10e-12+r || d2<=10e-12+r) return "YES";
if(d1>d2) m=t1;else n=t2;
}
return "NO";
}
};
|
3091ce8ed2cb8ecde0145d7e05e0c36bd32b5319 | 6e0be8d8ad540cd6135557603af089ba49e5ff4b | /ProyectosNogues2019/arduino_maestro_robot_oruga_2019.ino | ea15c9903f84de51f6f54a4d6559c70e76e31db8 | [] | no_license | ShadowFighter99/Arduino | 8d554b02ec438394ac5d9b4b20dd662648801967 | 37c3547cae6c5563d95a015a354245cf4b5c1c70 | refs/heads/master | 2020-09-11T08:57:37.891411 | 2020-06-25T16:51:32 | 2020-06-25T16:51:32 | 305,183,958 | 2 | 0 | null | 2020-10-18T19:51:00 | 2020-10-18T19:50:59 | null | UTF-8 | C++ | false | false | 2,866 | ino | arduino_maestro_robot_oruga_2019.ino | #include "Wire.h"
#include <SoftwareSerial.h>
SoftwareSerial BT(A2,A3); // RX, TX
#define MPU 0x68
#define A_R 16384.0
#define G_R 131.0
#define RAD_A_DEG = 57.295779
int16_t AcX, AcY, AcZ, GyX, GyY, GyZ;//MPU-6050 da los valores en enteros de 16 bits
int gesto=0;
float Acc[2];
float Gy[3];
float Angle[3];
String valores;
long tiempo_prev;
float dt;
int gesto_buzzer=0;
void setup()
{
Wire.begin(); // D2(GPIO4)=SDA / D1(GPIO5)=SCL
Wire.beginTransmission(MPU);
Wire.write(0x6B);
Wire.write(0);
Wire.endTransmission(true);
Serial.begin(9600);
BT.begin(9600);
pinMode(13,OUTPUT);
}
void loop()
{
Wire.beginTransmission(MPU);
Wire.write(0x3B); //Pedir el registro 0x3B - corresponde al AcX
Wire.endTransmission(false);
Wire.requestFrom(MPU,6,true); //A partir del 0x3B, se piden 6 registros
AcX=Wire.read()<<8|Wire.read(); //Cada valor ocupa 2 registros
AcY=Wire.read()<<8|Wire.read();
AcZ=Wire.read()<<8|Wire.read();
Acc[1] = atan(-1*(AcX/A_R)/sqrt(pow((AcY/A_R),2) + pow((AcZ/A_R),2)))*RAD_TO_DEG;
Acc[0] = atan((AcY/A_R)/sqrt(pow((AcX/A_R),2) + pow((AcZ/A_R),2)))*RAD_TO_DEG;
Wire.beginTransmission(MPU);
Wire.write(0x43);
Wire.endTransmission(false);
Wire.requestFrom(MPU,6,true); //A partir del 0x43, se piden 6 registros
GyX=Wire.read()<<8|Wire.read(); //Cada valor ocupa 2 registros
GyY=Wire.read()<<8|Wire.read();
GyZ=Wire.read()<<8|Wire.read();
Gy[0] = GyX/G_R;
Gy[1] = GyY/G_R;
Gy[2] = GyZ/G_R;
dt = (millis() - tiempo_prev) / 1000.0;
tiempo_prev = millis();
Angle[0] = 0.98 *(Angle[0]+Gy[0]*dt) + 0.02*Acc[0];
Angle[1] = 0.98 *(Angle[1]+Gy[1]*dt) + 0.02*Acc[1];
Angle[2] = Angle[2]+Gy[2]*dt;
valores = "90, " +String(Angle[0]) + "," + String(Angle[1]) + "," + String(Angle[2]) ;
//Serial.println(valores);
if(gesto == 0){
if(Angle[0] > 45){
gesto=gesto*0+1;
}
}
if(gesto == 1){
if(Angle[0] < -45){
gesto=gesto*0+2;
}
}
if(gesto == 2){
if(gesto_buzzer == 0){
BT.write('f');
delay(500);
gesto_buzzer=gesto_buzzer+1;
}
arrancar_auto();
}
}
void arrancar_auto() {
digitalWrite(13,HIGH);
if(Angle[0] < 45 && Angle[0] > -45 && Angle[1] < 45 && Angle[1] > -45){
//estar quieto
BT.write('e');
}
else if(Angle[0] > 45 && Angle[1] < 45 && Angle[1] > -45){
// mover izquierda rotar ruedas
BT.write('c');
}
else if(Angle[0] < -45 && Angle[1] < 45 && Angle[1] > -45 ){
//moverderecha
BT.write('b');
}
else if(Angle[1] > 45 && Angle[0] < 45 && Angle[0] > -45 ){
//atras(creo)
BT.write('d');
}
else if(Angle[1] < -45 && Angle[0] < 45 && Angle[0] > -45){
//adelante(creo)
BT.write('a');
} }
|
b452100935a8245e1205b932670e29a2b5660bed | f6b5861d3c2a6091b50627925d23277f3f6a14ec | /serialSender/serialSender.ino | f6d149186e21bb3513221502383b8741977adca4 | [] | no_license | juanmrq95/ee149_104 | 5420c9a17acb8969a7dbb13632daa628e428bd48 | e26522efae1a0b3bb22fab09b31b4a734a849d15 | refs/heads/master | 2021-08-29T19:02:57.662814 | 2017-12-14T18:09:40 | 2017-12-14T18:09:40 | 105,923,041 | 1 | 0 | null | 2017-12-02T01:44:02 | 2017-10-05T18:04:02 | Arduino | UTF-8 | C++ | false | false | 1,535 | ino | serialSender.ino | /*
Emic 2 Text-to-Speech Module: Basic Demonstration
Author: Joe Grand [www.grandideastudio.com]
Contact: support@parallax.com
Program Description:
This program provides a simple demonstration of the Emic 2 Text-to-Speech
Module. Please refer to the product manual for full details of system
functionality and capabilities.
Revisions:
1.0 (February 13, 2012): Initial release
1.1 (April 29, 2014): Changed rxPin/txPin to use pins 10/11, respectively, for widest support across the Arduino family (http://arduino.cc/en/Reference/SoftwareSerial)
*/
//Sender Code
// include the SoftwareSerial library so we can use it to talk to the Emic 2 module
#include <SoftwareSerial.h>
#include <stdlib.h>
#include <string.h>
SoftwareSerial emicSerial(6, 5); // RX, TX pins work but must connect uno and nano grounds together
void setup() // Set up code called once on start-up
{
// set the data rate for the SoftwareSerial port
emicSerial.begin(9600);
Serial.begin(9600);
}
void loop() {
//Serial.print(4);
int number = 1;
emicSerial.write('h');
Serial.write('h');
delay(250);
emicSerial.write('e');
Serial.write('e');
delay(250);
emicSerial.write('l');
Serial.write('l');
delay(250);
emicSerial.write('l');
Serial.write('l');
delay(250);
emicSerial.write('o');
Serial.write('o');
delay(250);
emicSerial.write('.');
Serial.write('.');
delay(250);
}
|
409e9e80519f2d9b30e1693f3f1ee31868168236 | cb0fd7bd24243b0582f3d4ffb1826f839dd9f174 | /1232.缀点成线.cpp | ae28c6e3961cb9f4e313826d56a50b8d06803ae1 | [] | no_license | Maserhe/LeetCode | efde6e9e9e0eadc251c9e87d620986658acf4665 | 8bd29088d386df75ce4e3e0bad0a94d48799f435 | refs/heads/master | 2023-07-08T11:09:40.346412 | 2021-08-15T15:59:34 | 2021-08-15T15:59:34 | 279,108,901 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 718 | cpp | 1232.缀点成线.cpp | /*
* @lc app=leetcode.cn id=1232 lang=cpp
*
* [1232] 缀点成线
*/
// @lc code=start
class Solution {
public:
bool checkStraightLine(vector<vector<int>>& coordinates) {
// 只要 斜率 相同就行了
int n = coordinates.size();
// 比较和第一个点之间的斜率即可
int dy = coordinates[1][1] - coordinates[0][1];
int dx = coordinates[1][0] - coordinates[0][0];
for(int i=1; i<n; i++){
int dyi = coordinates[i][1] - coordinates[0][1];
int dxi = coordinates[i][0] - coordinates[0][0];
// dy/dx = dyi/dxi
if(dy * dxi != dyi * dx) return false;
}
return true;
}
};
// @lc code=end
|
7d0d86084ac741e500edbeafc9ca243a1d1728ba | 42dc821426f56e47d76b5b77c9de371741e0765d | /src/qt/lookupinfodialog.cpp | 9daddc4e1d738459347261eb7f822ac08b36404d | [
"MIT"
] | permissive | sunny-prince/shinycoin | 9758c93184f3578ec8d2765da61bbd9e19bc10b1 | 4ed46a8c60068a05cc3d519f2f520fb86bf82430 | refs/heads/master | 2016-09-06T02:57:34.651378 | 2014-07-10T22:00:44 | 2014-07-10T22:00:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,681 | cpp | lookupinfodialog.cpp | #include "lookupinfodialog.h"
#include "ui_lookupinfodialog.h"
#include "addressbookpage.h"
#include "guiutil.h"
#include <QDataWidgetMapper>
#include <QMessageBox>
LookupInfoDialog::LookupInfoDialog(AddressTableModel *addressModelIn, QWidget *parent) :
QDialog(parent),
ui(new Ui::LookupInfoDialog), model(0), proxyModel(0), address(""), addressModel(addressModelIn)
{
ui->setupUi(this);
GUIUtil::setupAddressWidget(ui->addressEdit, this);
setWindowTitle(tr("Lookup Address Info"));
ui->addressEdit->setEnabled(true);
ui->tableView->setContextMenuPolicy(Qt::CustomContextMenu);
// Context menu actions
QAction *copyValueAction = new QAction(tr("Copy Value"), this);
QAction *copyDateAction = new QAction(tr("Copy Date"), this);
QAction *copyKeyAction = new QAction(tr("Copy Key"), this);
contextMenu = new QMenu();
contextMenu->addAction(copyValueAction);
contextMenu->addAction(copyDateAction);
contextMenu->addAction(copyKeyAction);
connect(copyValueAction, SIGNAL(triggered()), this, SLOT(onCopyValueAction()));
connect(copyDateAction, SIGNAL(triggered()), this, SLOT(onCopyDateAction()));
connect(copyKeyAction, SIGNAL(triggered()), this, SLOT(onCopyKeyAction()));
connect(ui->tableView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextualMenu(QPoint)));
connect(ui->addressEdit, SIGNAL(textChanged(QString)), this, SLOT(onTextChanged(QString)));
}
LookupInfoDialog::~LookupInfoDialog()
{
if (model) {
ui->tableView->setModel(0);
delete proxyModel;
delete model;
}
delete ui;
}
void LookupInfoDialog::accept()
{
QDialog::accept();
}
QString LookupInfoDialog::getAddress() const
{
return address;
}
void LookupInfoDialog::setAddress(const QString &address)
{
this->address = address;
if (ui->addressEdit->text() != address)
{
ui->addressEdit->setText(address);
}
if (model)
{
ui->tableView->setModel(0);
delete proxyModel;
delete model;
}
model = new LookupInfoModel(address);
proxyModel = new QSortFilterProxyModel(this);
proxyModel->setSourceModel(model);
proxyModel->setDynamicSortFilter(true);
proxyModel->setSortRole(Qt::EditRole);
ui->tableView->setModel(proxyModel);
ui->tableView->horizontalHeader()->resizeSection(LookupInfoModel::Date, 160);
ui->tableView->horizontalHeader()->resizeSection(LookupInfoModel::Key, 120);
ui->tableView->horizontalHeader()->setResizeMode(LookupInfoModel::Value, QHeaderView::Stretch);
ui->tableView->sortByColumn(0, Qt::AscendingOrder);
}
void LookupInfoDialog::contextualMenu(const QPoint &point)
{
QModelIndex index = ui->tableView->indexAt(point);
if(index.isValid())
{
contextMenu->exec(QCursor::pos());
}
}
void LookupInfoDialog::on_addressBookButton_clicked()
{
if(!addressModel)
return;
AddressBookPage dlg(AddressBookPage::ForLookup, AddressBookPage::SendingTab, this);
dlg.setModel(addressModel);
if(dlg.exec())
{
setAddress(dlg.getReturnValue());
}
}
void LookupInfoDialog::onCopyValueAction()
{
GUIUtil::copyEntryData(ui->tableView, LookupInfoModel::Value, Qt::DisplayRole);
}
void LookupInfoDialog::onCopyDateAction()
{
GUIUtil::copyEntryData(ui->tableView, LookupInfoModel::Date, Qt::DisplayRole);
}
void LookupInfoDialog::onCopyKeyAction()
{
GUIUtil::copyEntryData(ui->tableView, LookupInfoModel::Key, Qt::DisplayRole);
}
void LookupInfoDialog::onTextChanged(const QString &text)
{
setAddress(text);
}
|
b5c1f18fa1f99ae00b61ac0643c9ab18f994dee2 | 2bae07914bcd383fefe415194ffb63e2b007aff2 | /engine/modules/editor/generic_data_editor/source/generic_data_editor.cpp | d94fd5db41bdca460f30611bc3a51e7d16e73e20 | [] | no_license | TikiTek/mechanica | ec4972b541bfb7dc685b0b7918785c5ca99622d2 | d151a818a279f1969b977ff7a935148b18ab9546 | refs/heads/master | 2021-10-09T07:27:23.308704 | 2021-10-08T07:42:04 | 2021-10-08T07:42:04 | 71,704,579 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,750 | cpp | generic_data_editor.cpp | #include "tiki/generic_data_editor/generic_data_editor.hpp"
#include "tiki/editor_interface/editable_file.hpp"
#include "tiki/editor_interface/editor_interface.hpp"
#include "tiki/tool_project/package.hpp"
#include "tiki/tool_project/project.hpp"
#include "generic_data_file.hpp"
#include "res_generic_data_editor.hpp"
namespace tiki
{
GenericDataEditor::GenericDataEditor( EditorInterface& editor, ResourceManager& resourceManager, GraphicsSystem& graphicsSystem )
: FileEditor( editor, getGenericDataEditorResource( GenericDataEditorResources_BrowserFileGenericData ), "Generic Data", ".generic_data" )
, m_documentCollection( m_typeCollection )
{
for( const Package& package : m_editor.getProject().getPackages() )
{
m_typeCollection.addPackage( package );
}
m_documentCollection.create( m_editor.getProject() );
TIKI_VERIFY( m_renderer.create( resourceManager, graphicsSystem ) );
}
GenericDataEditor::~GenericDataEditor()
{
m_renderer.dispose();
}
EditableFile* GenericDataEditor::openFile( const Path& fileName )
{
GenericDataFile* pFile = new GenericDataFile( fileName, *this, m_renderer );
if( !pFile->load() )
{
delete pFile;
return nullptr;
}
return pFile;
}
bool GenericDataEditor::saveEditable( Editable& editable )
{
GenericDataFile& file = static_cast< GenericDataFile& >( editable );
return file.save();
}
void GenericDataEditor::closeEditable( Editable& editable )
{
delete &editable;
}
void GenericDataEditor::update()
{
m_renderer.update();
}
void GenericDataEditor::registerView( GenericDataView& view )
{
m_renderer.registerView( view );
}
void GenericDataEditor::unregisterView( GenericDataView& view )
{
m_renderer.unregisterView( view );
}
}
|
520272f6e3aacdd8cd56523887b50daaabbfe746 | 54825a61aebae4f1bc978c74d893dfc09fcff53a | /Code/Algorithms/eval expresie/main.cpp | 1e541b57170d5e4fd7829ec41aa06bfbd4362f67 | [] | no_license | tudor199/C-CPP | 520a2e5135db51138514e3153c34120811005667 | 1dd2f3e914f73bdd4f5726e592fccf35f089fca9 | refs/heads/master | 2021-07-23T13:36:12.064200 | 2020-05-23T04:52:02 | 2020-05-23T04:52:02 | 172,348,824 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 868 | cpp | main.cpp | #include <iostream>
#include <fstream>
using namespace std;
ifstream f("evaluare.in");
ofstream g("evaluare.out");
int suma(),produs(),factor(),numar();
char e[100010],*c;
int main()
{
f>>e;
c=e;
cout<<suma();
return 0;
}
int suma()
{
int rez=produs();
while(*c=='+'||*c=='-')
{
if(*c=='+'){c++;rez+=produs();}
else {c++;rez-=produs();}
}
return rez;
}
int produs()
{
int rez=factor();
while(*c=='*'||*c=='/')
{
if(*c=='*'){c++;rez*=factor();}
else {c++;rez/=factor();}
}
return rez;
}
int factor()
{
int rez;
if(*c=='(')
{
c++;rez=suma();c++;return rez;
}
return numar();
}
int numar()
{
int rez=0;
while(isdigit(*c))
{
rez=10*rez+*c-'0';
c++;
}
return rez;
}
|
83a1f3633ba146a229f66fa9ce412bf8eb8806be | 9acd860d57bbe1357fa9d68dedb06e8131ddad02 | /Src/Particle/AMReX_ParticleContainerI.H | 320c3c49f253ee76b87bd40467f9b2bdb305a6fc | [
"MIT",
"BSD-2-Clause"
] | permissive | mzl13/Lithium | f576878c55cf1da020c9d138d817fe65abe3bf10 | 27f8ec099ec9249fc7917863d4db523e27d52052 | refs/heads/master | 2022-11-03T03:00:01.502946 | 2022-10-19T10:06:20 | 2022-10-19T10:06:20 | 235,314,205 | 10 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 138,819 | h | AMReX_ParticleContainerI.H |
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
bool
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::do_tiling = false;
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
IntVect
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::tile_size { AMREX_D_DECL(1024000,8,8) };
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt> :: SetParticleSize ()
{
num_real_comm_comps = 0;
for (int i = 0; i < NArrayReal; ++i) {
if (communicate_real_comp[i]) ++num_real_comm_comps;
}
num_int_comm_comps = 0;
for (int i = 0; i < NArrayInt; ++i) {
if (communicate_int_comp[i]) ++num_int_comm_comps;
}
particle_size = sizeof(ParticleType);
superparticle_size = particle_size +
num_real_comm_comps*sizeof(Real) + num_int_comm_comps*sizeof(int);
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt> :: Initialize ()
{
levelDirectoriesCreated = false;
usePrePost = false;
doUnlink = true;
SetParticleSize();
static bool initialized = false;
if ( ! initialized)
{
static_assert(sizeof(ParticleType)%sizeof(RealType) == 0,
"sizeof ParticleType is not a multiple of sizeof RealType");
ParmParse pp("particles");
pp.query("do_tiling", do_tiling);
Vector<int> tilesize(AMREX_SPACEDIM);
if (pp.queryarr("tile_size", tilesize, 0, AMREX_SPACEDIM)) {
for (int i=0; i<AMREX_SPACEDIM; ++i) tile_size[i] = tilesize[i];
}
if ( ( not std::is_standard_layout<ParticleType>::value ) or
( not AMREX_IS_TRIVIALLY_COPYABLE(ParticleType) ) )
{
amrex::Abort("Particle type must be standard layout and trivially copyable.");
}
pp.query("use_prepost", usePrePost);
pp.query("do_unlink", doUnlink);
initialized = true;
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
IntVect
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::Index (const ParticleType& p, int lev) const
{
IntVect iv;
const Geometry& geom = Geom(lev);
AMREX_D_TERM(iv[0]=static_cast<int>(floor((p.m_rdata.pos[0]-geom.ProbLo(0))*geom.InvCellSize(0)));,
iv[1]=static_cast<int>(floor((p.m_rdata.pos[1]-geom.ProbLo(1))*geom.InvCellSize(1)));,
iv[2]=static_cast<int>(floor((p.m_rdata.pos[2]-geom.ProbLo(2))*geom.InvCellSize(2))););
iv += geom.Domain().smallEnd();
return iv;
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
bool
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::Where (const ParticleType& p,
ParticleLocData& pld,
int lev_min,
int lev_max,
int nGrow,
int local_grid) const
{
BL_ASSERT(m_gdb != 0);
if (lev_max == -1)
lev_max = finestLevel();
BL_ASSERT(lev_max <= finestLevel());
BL_ASSERT(nGrow == 0 || (nGrow >= 0 && lev_min == lev_max));
std::vector< std::pair<int, Box> > isects;
for (int lev = lev_max; lev >= lev_min; lev--) {
const IntVect& iv = Index(p, lev);
if (lev == pld.m_lev) {
// The fact that we are here means this particle does not belong to any finer grids.
if (pld.m_grid >= 0) {
if (pld.m_grown_gridbox.contains(iv)) {
pld.m_cell = iv;
if (!pld.m_tilebox.contains(iv)) {
pld.m_tile = getTileIndex(iv, pld.m_gridbox, do_tiling, tile_size, pld.m_tilebox);
}
return true;
}
}
}
int grid;
const BoxArray& ba = ParticleBoxArray(lev);
BL_ASSERT(ba.ixType().cellCentered());
if (local_grid < 0) {
ba.intersections(Box(iv, iv), isects, true, nGrow);
grid = isects.empty() ? -1 : isects[0].first;
} else {
grid = (*redistribute_mask_ptr)[local_grid](iv, 0);
}
if (grid >= 0) {
const Box& bx = ba.getCellCenteredBox(grid);
pld.m_lev = lev;
pld.m_grid = grid;
pld.m_tile = getTileIndex(iv, bx, do_tiling, tile_size, pld.m_tilebox);
pld.m_cell = iv;
pld.m_gridbox = bx;
pld.m_grown_gridbox = amrex::grow(bx, nGrow);
return true;
}
}
return false;
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
bool
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::EnforcePeriodicWhere (ParticleType& p,
ParticleLocData& pld,
int lev_min,
int lev_max,
int local_grid) const
{
BL_ASSERT(m_gdb != 0);
if (!Geom(0).isAnyPeriodic()) return false;
if (lev_max == -1)
lev_max = finestLevel();
BL_ASSERT(lev_max <= finestLevel());
// Create a copy "dummy" particle to check for periodic outs.
ParticleType p_prime = p;
if (PeriodicShift(p_prime)) {
std::vector< std::pair<int,Box> > isects;
for (int lev = lev_max; lev >= lev_min; lev--) {
int grid;
IntVect iv;
const BoxArray& ba = ParticleBoxArray(lev);
BL_ASSERT(ba.ixType().cellCentered());
if (local_grid < 0) {
iv = Index(p_prime, lev);
ba.intersections(Box(iv, iv), isects, true, 0);
grid = isects.empty() ? -1 : isects[0].first;
} else {
iv = Index(p, lev);
grid = (*redistribute_mask_ptr)[local_grid](iv, 0);
iv = Index(p_prime, lev);
}
if (grid >= 0) {
AMREX_D_TERM(p.m_rdata.pos[0] = p_prime.m_rdata.pos[0];,
p.m_rdata.pos[1] = p_prime.m_rdata.pos[1];,
p.m_rdata.pos[2] = p_prime.m_rdata.pos[2];);
const Box& bx = ba.getCellCenteredBox(grid);
pld.m_lev = lev;
pld.m_grid = grid;
pld.m_tile = getTileIndex(iv, bx, do_tiling, tile_size, pld.m_tilebox);
pld.m_cell = iv;
pld.m_gridbox = bx;
pld.m_grown_gridbox = bx;
return true;
}
}
}
return false;
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
bool
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::PeriodicShift (ParticleType& p) const
{
BL_ASSERT(m_gdb != 0);
const Geometry& geom = Geom(0);
const Box& dmn = geom.Domain();
const IntVect& iv = Index(p, 0);
bool shifted = false;
for (int i = 0; i < AMREX_SPACEDIM; i++)
{
if (!geom.isPeriodic(i)) continue;
if (iv[i] > dmn.bigEnd(i))
{
while (p.m_rdata.pos[i] >= geom.ProbHi(i)) p.m_rdata.pos[i] -= geom.ProbLength(i);
if (p.m_rdata.pos[i] < geom.ProbLo(i)) p.m_rdata.pos[i] = geom.ProbLo(i); // clamp to avoid precision issues;
shifted = true;
}
else if (iv[i] < dmn.smallEnd(i))
{
while (p.m_rdata.pos[i] < geom.ProbLo(i)) p.m_rdata.pos[i] += geom.ProbLength(i);
// clamp to avoid precision issues
if ( p.m_rdata.pos[i] == geom.ProbHi(i)) p.m_rdata.pos[i] = geom.ProbLo(i);
if ((p.m_rdata.pos[i] > geom.ProbHi(i)))
p.m_rdata.pos[i] = geom.ProbHi(i) - std::numeric_limits<typename ParticleType::RealType>::epsilon();
shifted = true;
}
AMREX_ASSERT( (p.m_rdata.pos[i] >= geom.ProbLo(i) ) and ( p.m_rdata.pos[i] < geom.ProbHi(i) ));
}
return shifted;
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
ParticleLocData
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::
Reset (ParticleType& p,
bool update,
bool verbose,
ParticleLocData pld) const
{
BL_ASSERT(m_gdb != 0);
bool ok = Where(p, pld);
if (!ok && Geom(0).isAnyPeriodic())
{
// Attempt to shift the particle back into the domain if it
// crossed a periodic boundary.
PeriodicShift(p);
ok = Where(p, pld);
}
if (!ok) {
// invalidate the particle.
if (verbose) {
amrex::AllPrint()<< "Invalidating out-of-domain particle: " << p << '\n';
}
BL_ASSERT(p.m_idata.id > 0);
p.m_idata.id = -p.m_idata.id;
}
return pld;
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::reserveData ()
{
int nlevs = maxLevel() + 1;
m_particles.reserve(nlevs);
m_dummy_mf.reserve(nlevs);
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::resizeData ()
{
int nlevs = std::max(0, finestLevel()+1);
m_particles.resize(nlevs);
m_dummy_mf.resize(nlevs);
for (int lev = 0; lev < nlevs; ++lev) {
RedefineDummyMF(lev);
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::RedefineDummyMF (int lev)
{
if (lev > m_dummy_mf.size()-1) m_dummy_mf.resize(lev+1);
if (m_dummy_mf[lev] == nullptr ||
! BoxArray::SameRefs(m_dummy_mf[lev]->boxArray(),
ParticleBoxArray(lev)) ||
! DistributionMapping::SameRefs(m_dummy_mf[lev]->DistributionMap(),
ParticleDistributionMap(lev)))
{
m_dummy_mf[lev].reset(new MultiFab(ParticleBoxArray(lev),
ParticleDistributionMap(lev),
1,0,MFInfo().SetAlloc(false)));
};
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::locateParticle (ParticleType& p, ParticleLocData& pld,
int lev_min, int lev_max, int nGrow, int local_grid) const
{
bool outside = AMREX_D_TERM( p.m_rdata.pos[0] < Geometry::ProbLo(0)
|| p.m_rdata.pos[0] >= Geometry::ProbHi(0),
|| p.m_rdata.pos[1] < Geometry::ProbLo(1)
|| p.m_rdata.pos[1] >= Geometry::ProbHi(1),
|| p.m_rdata.pos[2] < Geometry::ProbLo(2)
|| p.m_rdata.pos[2] >= Geometry::ProbHi(2));
bool success;
if (outside)
{
// Note that EnforcePeriodicWhere may shift the particle if it is successful.
success = EnforcePeriodicWhere(p, pld, lev_min, lev_max, local_grid);
if (!success && lev_min == 0)
{
// The particle has left the domain; invalidate it.
p.m_idata.id = -p.m_idata.id;
success = true;
}
}
else
{
success = Where(p, pld, lev_min, lev_max, 0, local_grid);
}
if (!success)
{
success = (nGrow > 0) && Where(p, pld, lev_min, lev_min, nGrow);
pld.m_grown_gridbox = pld.m_gridbox; // reset grown box for subsequent calls.
}
if (!success)
{
amrex::Abort("ParticleContainer::locateParticle(): invalid particle.");
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
long
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::TotalNumberOfParticles (bool only_valid, bool only_local) const
{
long nparticles = 0;
for (int lev = 0; lev <= finestLevel(); lev++) {
nparticles += NumberOfParticlesAtLevel(lev,only_valid,true);
}
if (!only_local) {
ParallelDescriptor::ReduceLongSum(nparticles);
}
return nparticles;
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
Vector<long>
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::NumberOfParticlesInGrid (int lev, bool only_valid, bool only_local) const
{
auto ngrids = ParticleBoxArray(lev).size();
Vector<long> nparticles(ngrids, 0);
if (lev >= 0 && lev < int(m_particles.size())) {
for (const auto& kv : GetParticles(lev)) {
int gid = kv.first.first;
const auto& ptile = kv.second;
if (only_valid) {
for (int k = 0; k < ptile.GetArrayOfStructs().size(); ++k) {
const ParticleType& p = ptile.GetArrayOfStructs()[k];
if (p.m_idata.id > 0) ++nparticles[gid];
}
} else {
nparticles[gid] += ptile.numParticles();
}
}
if (!only_local) ParallelDescriptor::ReduceLongSum(&nparticles[0],ngrids);
}
return nparticles;
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
long
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::NumberOfParticlesAtLevel (int lev, bool only_valid, bool only_local) const
{
long nparticles = 0;
if (lev >= 0 && lev < int(m_particles.size())) {
for (const auto& kv : GetParticles(lev)) {
const auto& ptile = kv.second;
if (only_valid) {
for (int k = 0; k < ptile.GetArrayOfStructs().size(); ++k) {
const ParticleType& p = ptile.GetArrayOfStructs()[k];
if (p.m_idata.id > 0) ++nparticles;
}
} else {
nparticles += ptile.numParticles();
}
}
}
if (!only_local) ParallelDescriptor::ReduceLongSum(nparticles);
return nparticles;
}
//
// This includes both valid and invalid particles since invalid particles still take up space.
//
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::ByteSpread () const
{
long cnt = 0;
for (unsigned lev = 0; lev < m_particles.size(); lev++) {
const auto& pmap = m_particles[lev];
for (const auto& kv : pmap) {
const auto& ptile = kv.second;
cnt += ptile.numParticles();
}
}
long mn = cnt, mx = mn;
const int IOProc = ParallelDescriptor::IOProcessorNumber();
const std::size_t sz = sizeof(ParticleType) + NArrayReal*sizeof(Real) + NArrayInt*sizeof(int);
#ifdef BL_LAZY
Lazy::QueueReduction( [=] () mutable {
#endif
ParallelDescriptor::ReduceLongMin(mn, IOProc);
ParallelDescriptor::ReduceLongMax(mx, IOProc);
ParallelDescriptor::ReduceLongSum(cnt,IOProc);
amrex::Print() << "ParticleContainer byte spread across MPI nodes: ["
<< mn*sz
<< " (" << mn << ")"
<< " ... "
<< mx*sz
<< " (" << mx << ")"
<< "] total particles: (" << cnt << ")\n";
#ifdef BL_LAZY
});
#endif
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::MoveRandom ()
{
//
// Move particles randomly at all levels
//
for (int lev = 0; lev < int(m_particles.size()); lev++)
{
MoveRandom(lev);
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::MoveRandom (int lev)
{
BL_PROFILE("ParticleContainer::MoveRandom(lev)");
BL_ASSERT(OK());
BL_ASSERT(m_gdb != 0);
//
// Move particles up to FRAC*CellSize distance in each coordinate direction.
//
const Real FRAC = 0.25;
auto& pmap = m_particles[lev];
const Real* dx = Geom(lev).CellSize();
const Real dist[AMREX_SPACEDIM] = { AMREX_D_DECL(FRAC*dx[0], FRAC*dx[1], FRAC*dx[2]) };
for (auto& kv : pmap) {
auto& aos = kv.second.GetArrayOfStructs();
const int n = aos.size();
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < n; i++)
{
ParticleType& p = aos[i];
if (p.m_idata.id <= 0) continue;
for (int j = 0; j < AMREX_SPACEDIM; j++)
{
p.m_rdata.pos[j] += dist[j]*(2*amrex::Random()-1);
}
Reset(p, true);
}
}
Redistribute();
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::Increment (MultiFab& mf, int lev)
{
IncrementWithTotal(mf,lev);
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
long
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::IncrementWithTotal (MultiFab& mf, int lev, bool local)
{
BL_PROFILE("ParticleContainer::IncrementWithTotal(lev)");
BL_ASSERT(OK());
if (m_particles.empty()) return 0;
BL_ASSERT(lev >= 0 && lev < int(m_particles.size()));
const auto& pmap = m_particles[lev];
long num_particles_in_domain = 0;
MultiFab* mf_pointer;
if (OnSameGrids(lev, mf))
{
// If we are already working with the internal mf defined on the
// particle_box_array, then we just work with this.
mf_pointer = &mf;
}
else
{
// If mf is not defined on the particle_box_array, then we need
// to make a temporary mf_pointer here and copy it into mf at the end.
mf_pointer = new MultiFab(ParticleBoxArray(lev),
ParticleDistributionMap(lev),
mf.nComp(),mf.nGrow());
}
ParticleLocData pld;
for (auto& kv : pmap) {
int gid = kv.first.first;
const auto& pbox = kv.second.GetArrayOfStructs();
FArrayBox& fab = (*mf_pointer)[gid];
for (int k = 0; k < pbox.size(); ++ k) {
const ParticleType& p = pbox[k];
if (p.m_idata.id > 0) {
Where(p, pld);
BL_ASSERT(pld.m_grid == gid);
fab(pld.m_cell) += 1;
num_particles_in_domain += 1;
}
}
}
// If mf is not defined on the particle_box_array, then we need
// to copy here from mf_pointer into mf. I believe that we don't
// need any information in ghost cells so we don't copy those.
if (mf_pointer != &mf)
{
mf.copy(*mf_pointer,0,0,mf.nComp());
delete mf_pointer;
}
if (!local) ParallelDescriptor::ReduceLongSum(num_particles_in_domain);
return num_particles_in_domain;
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
Real
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::sumParticleMass (int rho_index, int lev, bool local) const
{
BL_PROFILE("ParticleContainer::sumParticleMass(lev)");
BL_ASSERT(NStructReal >= 1);
BL_ASSERT(lev >= 0 && lev < int(m_particles.size()));
Real msum = 0;
const auto& pmap = m_particles[lev];
for (const auto& kv : pmap) {
const auto& pbox = kv.second.GetArrayOfStructs();
for (int k = 0; k < pbox.size(); ++k) {
const ParticleType& p = pbox[k];
if (p.m_idata.id > 0) {
msum += p.m_rdata.arr[AMREX_SPACEDIM+rho_index];
}
}
}
if (!local) ParallelDescriptor::ReduceRealSum(msum);
return msum;
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::RemoveParticlesAtLevel (int level)
{
BL_PROFILE("ParticleContainer::RemoveParticlesAtLevel()");
if (level >= int(this->m_particles.size())) return;
if (!this->m_particles[level].empty())
{
ParticleLevel().swap(this->m_particles[level]);
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::RemoveParticlesNotAtFinestLevel ()
{
BL_PROFILE("ParticleContainer::RemoveParticlesNotAtFinestLevel()");
BL_ASSERT(this->finestLevel()+1 == int(this->m_particles.size()));
long cnt = 0;
for (unsigned lev = 0; lev < m_particles.size() - 1; ++lev) {
auto& pmap = m_particles[lev];
if (!pmap.empty()) {
for (auto& kv : pmap) {
const auto& pbx = kv.second;
cnt += pbx.size();
}
ParticleLevel().swap(pmap);
}
}
//
// Print how many particles removed on each processor if any were removed.
//
if (this->m_verbose > 1 && cnt > 0) {
amrex::AllPrint() << "Processor " << ParallelDescriptor::MyProc() << " removed " << cnt
<< " particles not in finest level\n";
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::CreateVirtualParticles (int level, AoS& virts) const
{
BL_PROFILE("ParticleContainer::CreateVirtualParticles()");
BL_ASSERT(level > 0);
BL_ASSERT(virts.empty());
if (level >= static_cast<int>(m_particles.size()))
return;
if (aggregation_type == "")
{
ParmParse pp("particles");
aggregation_type = "None";
pp.query("aggregation_type", aggregation_type);
aggregation_buffer = 2;
pp.query("aggregation_buffer", aggregation_buffer);
}
if (aggregation_type == "None");
else if (aggregation_type == "Cell");
else if (aggregation_type == "Flow") amrex::Abort("Flow aggregation not implemented");
else amrex::Abort("Unknown Particle Aggregation mode");
if (aggregation_type == "None")
{
const auto& pmap = m_particles[level];
for (const auto& kv : pmap)
{
const auto& pbox = kv.second.GetArrayOfStructs();
for (auto it = pbox.cbegin(); it != pbox.cend(); ++it)
{
ParticleType p = *it;
p.m_idata.id = VirtualParticleID;
virts.push_back(p);
}
}
return;
}
if (aggregation_type == "Cell")
{
BoxList bl_buffer;
bl_buffer.complementIn(Geom(level).Domain(), ParticleBoxArray(level));
BoxArray buffer(std::move(bl_buffer));
buffer.grow(aggregation_buffer);
const auto& pmap = m_particles[level];
for (const auto& kv : pmap)
{
const auto& pbox = kv.second.GetArrayOfStructs();
std::map<IntVect,ParticleType> agg_map;
for (auto it = pbox.cbegin(); it != pbox.cend(); ++it)
{
IntVect cell = Index(*it, level);
if (buffer.contains(cell))
{
// It's in the no-aggregation buffer.
// Set its id to indicate that it's a virt.
ParticleType p = *it;
p.m_idata.id = VirtualParticleID;
virts.push_back(p);
}
else
{
//
// Note that Cell aggregation assumes that p.m_rdata.arr[AMREX_SPACEDIM] is mass and
// that all other components should be combined in a mass-weighted
// average.
//
auto agg_map_it = agg_map.find(cell);
if (agg_map_it == agg_map.end())
{
//
// Add the particle.
//
ParticleType p = *it;
//
// Set its id to indicate that it's a virt.
//
p.m_idata.id = VirtualParticleID;
agg_map[cell] = p;
}
else
{
BL_ASSERT(agg_map_it != agg_map.end());
const ParticleType& pnew = *it;
ParticleType& pold = agg_map_it->second;
const Real old_mass = pold.m_rdata.arr[AMREX_SPACEDIM];
const Real new_mass = pnew.m_rdata.arr[AMREX_SPACEDIM];
const Real total_mass = old_mass + new_mass;
//
// Set the position to the center of mass.
//
for (int i = 0; i < AMREX_SPACEDIM; i++)
{
pold.m_rdata.pos[i] = (old_mass*pold.m_rdata.pos[i] + new_mass*pnew.m_rdata.pos[i])/total_mass;
}
BL_ASSERT(this->Index(pold, level) == cell);
//
// Set the metadata (presumably velocity) to the mass-weighted average.
//
for (int i = AMREX_SPACEDIM + 1; i < AMREX_SPACEDIM + NStructReal; i++)
{
pold.m_rdata.arr[i] = (old_mass*pold.m_rdata.arr[i] + new_mass*pnew.m_rdata.arr[i])/total_mass;
}
pold.m_rdata.arr[AMREX_SPACEDIM] = total_mass;
}
}
}
//
// Add the aggregated particles to the virtuals.
//
for (const auto& agg_particle : agg_map)
{
virts.push_back(agg_particle.second);
}
}
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::CreateGhostParticles (int level, int nGrow, AoS& ghosts) const
{
BL_PROFILE("ParticleContainer::CreateGhostParticles()");
BL_ASSERT(ghosts.empty());
BL_ASSERT(level < finestLevel());
if (level >= static_cast<int>(m_particles.size()))
return;
const BoxArray& fine = ParticleBoxArray(level + 1);
std::vector< std::pair<int,Box> > isects;
const auto& pmap = m_particles[level];
for (const auto& kv : pmap)
{
const auto& pbox = kv.second.GetArrayOfStructs();
for (auto it = pbox.cbegin(); it != pbox.cend(); ++it)
{
const IntVect& iv = Index(*it, level+1);
fine.intersections(Box(iv,iv),isects,false,nGrow);
for (const auto& isec : isects)
{
amrex::ignore_unused(isec);
ParticleType p = *it; // yes, make a copy
p.m_idata.id = GhostParticleID;
ghosts().push_back(p);
}
}
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::
clearParticles()
{
BL_PROFILE("ParticleContainer::clearParticles()");
for (int lev = 0; lev < static_cast<int>(m_particles.size()); ++lev)
{
for (auto& kv : m_particles[lev])
{
kv.second.resize(0);
}
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::
copyParticles(const ParticleContainerType& other, bool local)
{
BL_PROFILE("ParticleContainer::copyParticles");
clearParticles();
addParticles(other, local);
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::
addParticles(const ParticleContainerType& other, bool local)
{
BL_PROFILE("ParticleContainer::addParticles");
for (int lev = 0; lev < other.numLevels(); ++lev)
{
const auto& plevel_other = other.GetParticles(lev);
auto& plevel = GetParticles(lev);
for(MFIter mfi = other.MakeMFIter(lev); mfi.isValid(); ++mfi)
{
auto index = std::make_pair(mfi.index(), mfi.LocalTileIndex());
if(plevel_other.find(index) == plevel_other.end()) continue;
const auto& tile_other = plevel_other.at(index);
if (tile_other.numParticles() == 0) continue;
const auto& aos_other = tile_other.GetArrayOfStructs();
for (const auto& particle_struct : aos_other)
{
plevel[index].push_back(particle_struct);
}
const auto& soa_other = tile_other.GetStructOfArrays();
for (int j = 0; j < NArrayReal; ++j)
{
auto& rdata = soa_other.GetRealData(j);
for(const auto& real_attrib : rdata)
{
plevel[index].push_back_real(j, real_attrib);
}
}
for (int j = 0; j < NArrayInt; ++j)
{
auto& idata = soa_other.GetIntData(j);
for(const auto& int_attrib : idata)
{
plevel[index].push_back_int(j, int_attrib);
}
}
}
}
if (not local) Redistribute();
}
//
// This redistributes valid particles and discards invalid ones.
//
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::Redistribute (int lev_min, int lev_max, int nGrow, int local)
{
#ifdef AMREX_USE_CUDA
if (local and (lev_min == 0) and (lev_max == 0) and (nGrow == 0))
{
RedistributeGPU(lev_min, lev_max, nGrow, local);
}
else
{
RedistributeCPU(lev_min, lev_max, nGrow, local);
}
#else
RedistributeCPU(lev_min, lev_max, nGrow, local);
#endif
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::SortParticlesByCell ()
{
#ifdef AMREX_USE_CUDA
BL_PROFILE("ParticleContainer::SortParticlesByCell()");
BuildRedistributeMask(0, 1);
const int lev = 0;
const Geometry& geom = Geom(lev);
const BoxArray& ba = ParticleBoxArray(lev);
const DistributionMapping& dmap = ParticleDistributionMap(lev);
auto& plev = m_particles[lev];
// temporaries
Gpu::DeviceVector<amrex::IntVect> cells_tmp;
Gpu::DeviceVector<int> index_sequence_tmp;
ParticleVector aos_r;
RealVector rdata_r;
IntVector idata_r;
Gpu::DeviceVector<int> grids_r;
for(MFIter mfi(*redistribute_mask_ptr, false); mfi.isValid(); ++mfi)
{
int gid = mfi.index();
int tid = mfi.LocalTileIndex();
auto& ptile = plev[std::make_pair(gid, tid)];
auto& aos = ptile.GetArrayOfStructs();
auto& soa = ptile.GetStructOfArrays();
const size_t np = aos.numParticles();
cells_tmp.resize(np);
index_sequence_tmp.resize(np);
thrust::sequence(thrust::device, index_sequence_tmp.begin(), index_sequence_tmp.end());
thrust::transform(thrust::device,
aos().begin(), aos().end(), cells_tmp.begin(),
functors::assignParticleCell(geom.data()));
thrust::sort_by_key(thrust::cuda::par(Cuda::The_ThrustCachedAllocator()),
cells_tmp.begin(),
cells_tmp.end(),
index_sequence_tmp.begin());
//
// Reorder the particle data
//
{
// reorder structs
aos_r.resize(np);
thrust::gather(thrust::device,
index_sequence_tmp.begin(), index_sequence_tmp.end(),
aos().begin(), aos_r.begin());
aos().swap(aos_r);
// reorder real arrays
rdata_r.resize(np);
for (int j = 0; j < NArrayReal; ++j)
{
auto& rdata = ptile.GetStructOfArrays().GetRealData(j);
thrust::gather(thrust::device,
index_sequence_tmp.begin(), index_sequence_tmp.end(),
rdata.begin(), rdata_r.begin());
rdata.swap(rdata_r);
}
// reorder int arrays
idata_r.resize(np);
for (int j = 0; j < NArrayInt; ++j)
{
auto& idata = ptile.GetStructOfArrays().GetIntData(j);
thrust::gather(thrust::device,
index_sequence_tmp.begin(), index_sequence_tmp.end(),
idata.begin(), idata_r.begin());
idata.swap(idata_r);
}
}
}
#endif
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::
SortParticlesByBin (const ParIterBase<false,NStructReal,NStructInt,NArrayReal,NArrayInt>& pti, int ng,
Cuda::DeviceVector<int>& bin_start,
Cuda::DeviceVector<int>& bin_stop,
const IntVect& bin_size)
{
#ifdef AMREX_USE_CUDA
BL_PROFILE("ParticleContainer::SortParticlesByBin()");
#endif
}
//
// The GPU implementation of Redistribute
//
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::RedistributeGPU (int lev_min, int lev_max, int nGrow, int local)
{
#ifdef AMREX_USE_CUDA
// sanity checks
AMREX_ASSERT(local);
AMREX_ASSERT(lev_min == 0);
AMREX_ASSERT(lev_max == 0);
AMREX_ASSERT(nGrow == 0);
AMREX_ASSERT(do_tiling == false);
BL_PROFILE("ParticleContainer::RedistributeGPU()");
if (local > 0) BuildRedistributeMask(0, local);
const int lev = 0;
const Geometry& geom = Geom(lev);
const BoxArray& ba = ParticleBoxArray(lev);
const DistributionMapping& dmap = ParticleDistributionMap(lev);
auto& plev = m_particles[lev];
const auto plo = Geom(lev).ProbLoArray();
const auto dxi = Geom(lev).InvCellSizeArray();
const Box domain = Geom(lev).Domain();
if ( (ba.size() == 1) and geom.isAllPeriodic() )
{
EnforcePeriodicGPU();
AMREX_ASSERT(OK());
return;
}
// temporaries
ParticleVector aos_r;
RealVector rdata_r;
IntVector idata_r;
Gpu::DeviceVector<int> grids_r;
Gpu::DeviceVector<int> lo;
Gpu::DeviceVector<int> hi;
Gpu::DeviceVector<int> output;
Gpu::DeviceVector<int> grids_tmp;
Gpu::DeviceVector<int> index_sequence_tmp;
ParticleVector aos_to_redistribute;
std::array< RealVector, NArrayReal> real_arrays_to_redistribute;
std::array< IntVector, NArrayInt > int_arrays_to_redistribute;
Gpu::DeviceVector<int> grids_to_redistribute;
std::map<int, SendBuffer> not_ours;
//
// First pass - figure out what grid each particle should be on, and copy
// the ones that move into a temporary buffer
//
for(MFIter mfi(*redistribute_mask_ptr, false); mfi.isValid(); ++mfi)
{
int gid = mfi.index();
int tid = mfi.LocalTileIndex();
auto& ptile = plev[std::make_pair(gid, tid)];
auto& aos = ptile.GetArrayOfStructs();
auto& soa = ptile.GetStructOfArrays();
const size_t old_np = aos.numParticles();
if (old_np == 0) continue;
grids_tmp.resize(old_np);
index_sequence_tmp.resize(old_np);
constexpr bool do_custom_partition = true;
size_t old_size, new_size, new_np, num_moved;
if (do_custom_partition)
{
lo.resize(old_np);
hi.resize(old_np);
output.resize(old_np);
int* grids_ptr = thrust::raw_pointer_cast(grids_tmp.data());
int* index_ptr = thrust::raw_pointer_cast(index_sequence_tmp.data());
int* lo_ptr = thrust::raw_pointer_cast(lo.data());
int* hi_ptr = thrust::raw_pointer_cast(hi.data());
int* output_ptr = thrust::raw_pointer_cast(output.data());
BaseFab<int>* mask_ptr = redistribute_mask_ptr->fabPtr(mfi);
ParticleType* p_ptr = &(aos[0]);
//
// Partition the particle data so that particles that stay come first,
// those that move go to the end.
//
AMREX_FOR_1D ( old_np, i,
{
index_ptr[i] = i;
IntVect iv = IntVect(
AMREX_D_DECL(floor((p_ptr[i].pos(0)-plo[0])*dxi[0]),
floor((p_ptr[i].pos(1)-plo[1])*dxi[1]),
floor((p_ptr[i].pos(2)-plo[2])*dxi[2]))
);
iv += domain.smallEnd();
int grid_id = (*mask_ptr)(iv);
grids_ptr[i] = grid_id;
if (grid_id == gid)
{
lo_ptr[i] = 1; hi_ptr[i] = 0;
}
else
{
lo_ptr[i] = 0; hi_ptr[i] = 1;
}
});
thrust::exclusive_scan(thrust::cuda::par(Cuda::The_ThrustCachedAllocator()),
thrust::make_zip_iterator(thrust::make_tuple(lo.begin(), hi.begin())),
thrust::make_zip_iterator(thrust::make_tuple(lo.end(), hi.end())),
thrust::make_zip_iterator(thrust::make_tuple(lo.begin(), hi.begin())),
thrust::tuple<int, int>(0, 0), functors::tupleAdd());
if (grids_tmp[old_np-1] == gid) {
new_np = lo[old_np-1] + 1;
} else {
new_np = lo[old_np-1];
}
num_moved = old_np - new_np;
if (num_moved == 0) continue; // early exit if everything is already in right place
AMREX_FOR_1D ( old_np, i,
{
if (grids_ptr[i] == gid)
{
output_ptr[lo_ptr[i]] = index_ptr[i];
}
else
{
output_ptr[hi_ptr[i] + new_np] = index_ptr[i];
}
});
index_sequence_tmp.swap(output);
old_size = aos_to_redistribute.size();
new_size = old_size + num_moved;
}
else
{
thrust::sequence(thrust::device, index_sequence_tmp.begin(), index_sequence_tmp.end());
//
// Compute the grid each particle belongs to
//
thrust::transform(thrust::device, aos().begin(), aos().end(), grids_tmp.begin(),
functors::assignParticleGrid(geom.data(),
(*redistribute_mask_ptr)[mfi].box(),
redistribute_mask_ptr->fabPtr(mfi)));
//
// Partition the particle data so that particles that stay come first,
// those that move go to the end.
//
auto mid = thrust::partition(thrust::cuda::par(Cuda::The_ThrustCachedAllocator()),
index_sequence_tmp.begin(),
index_sequence_tmp.end(),
grids_tmp.begin(),
functors::grid_is(gid));
num_moved = thrust::distance(mid, index_sequence_tmp.end());
new_np = old_np - num_moved;
if (num_moved == 0) continue; // early exit if everything is already in right place
old_size = aos_to_redistribute.size();
new_size = old_size + num_moved;
}
aos_to_redistribute.resize(new_size);
for (int k = 0; k < NArrayReal; ++k) real_arrays_to_redistribute[k].resize(new_size);
for (int k = 0; k < NArrayInt; ++k) int_arrays_to_redistribute[k].resize(new_size);
grids_to_redistribute.resize(new_size);
//
// Reorder the particle data based on the partition we just computed
//
{
// reorder structs
aos_r.resize(old_np);
thrust::gather(thrust::device,
index_sequence_tmp.begin(), index_sequence_tmp.end(),
aos().begin(), aos_r.begin());
// reorder grids
grids_r.resize(old_np);
thrust::gather(thrust::device,
index_sequence_tmp.begin(), index_sequence_tmp.end(),
grids_tmp.begin(), grids_r.begin());
aos().swap(aos_r);
grids_tmp.swap(grids_r);
// reorder real arrays
rdata_r.resize(old_np);
for (int j = 0; j < NArrayReal; ++j)
{
auto& rdata = ptile.GetStructOfArrays().GetRealData(j);
thrust::gather(thrust::device,
index_sequence_tmp.begin(), index_sequence_tmp.end(),
rdata.begin(), rdata_r.begin());
rdata.swap(rdata_r);
}
// reorder int arrays
idata_r.resize(old_np);
for (int j = 0; j < NArrayInt; ++j)
{
auto& idata = ptile.GetStructOfArrays().GetIntData(j);
thrust::gather(thrust::device,
index_sequence_tmp.begin(), index_sequence_tmp.end(),
idata.begin(), idata_r.begin());
idata.swap(idata_r);
}
}
//
// copy the particle data to be moved into temp buffers
//
{
auto& dst = aos_to_redistribute;
thrust::copy(thrust::device,
aos().begin() + new_np, aos().begin() + old_np, dst.begin() + old_size);
}
{
thrust::copy(thrust::device,
grids_tmp.begin() + new_np,
grids_tmp.begin() + old_np,
grids_to_redistribute.begin() + old_size);
}
for (int j = 0; j < NArrayReal; ++j)
{
auto& src = soa.GetRealData(j);
auto& dst = real_arrays_to_redistribute[j];
thrust::copy(thrust::device,
src.begin() + new_np, src.begin() + old_np, dst.begin() + old_size);
}
for (int j = 0; j < NArrayInt; ++j)
{
auto& src = soa.GetIntData(j);
auto& dst = int_arrays_to_redistribute[j];
thrust::copy(thrust::device,
src.begin() + new_np, src.begin() + old_np, dst.begin() + old_size);
}
ptile.resize(new_np);
}
//
// We now have a temporary buffer that holds all the particles that need to be
// moved somewhere else. We sort those particles by their destination grid.
// Note that a negative grid id means the particle has left the domain in a non-
// periodic direction - we remove those from the simulation volume here.
//
const int num_grids = ba.size();
const int num_to_move = grids_to_redistribute.size();
if (num_to_move > 0)
{
Gpu::DeviceVector<int> grid_begin(num_grids+1);
Gpu::DeviceVector<int> grid_end(num_grids+1);
index_sequence_tmp.resize(num_to_move);
thrust::sequence(thrust::device, index_sequence_tmp.begin(), index_sequence_tmp.end());
thrust::sort_by_key(thrust::cuda::par(Cuda::The_ThrustCachedAllocator()),
grids_to_redistribute.begin(),
grids_to_redistribute.end(),
index_sequence_tmp.begin());
//
// Reorder particle data using the computed sequence
//
{
// reorder structs
auto& aos = aos_to_redistribute;
aos_r.resize(num_to_move);
thrust::gather(thrust::device,
index_sequence_tmp.begin(), index_sequence_tmp.end(),
aos.begin(), aos_r.begin());
aos.swap(aos_r);
// reorder real arrays
rdata_r.resize(num_to_move);
for (int j = 0; j < NArrayReal; ++j)
{
auto& rdata = real_arrays_to_redistribute[j];
thrust::gather(thrust::device,
index_sequence_tmp.begin(), index_sequence_tmp.end(),
rdata.begin(), rdata_r.begin());
rdata.swap(rdata_r);
}
// reorder int arrays
idata_r.resize(num_to_move);
for (int j = 0; j < NArrayInt; ++j)
{
auto& idata = int_arrays_to_redistribute[j];
thrust::gather(thrust::device,
index_sequence_tmp.begin(), index_sequence_tmp.end(),
idata.begin(), idata_r.begin());
idata.swap(idata_r);
}
}
//
// Now we compute the start and stop index in the sorted array for each grid
//
thrust::counting_iterator<int> search_begin(-1);
thrust::lower_bound(thrust::device,
grids_to_redistribute.begin(),
grids_to_redistribute.end(),
search_begin,
search_begin + num_grids + 1,
grid_begin.begin());
thrust::upper_bound(thrust::device,
grids_to_redistribute.begin(),
grids_to_redistribute.end(),
search_begin,
search_begin + num_grids + 1,
grid_end.begin());
thrust::host_vector<int> start(grid_begin);
thrust::host_vector<int> stop(grid_end);
std::map<int, size_t> grid_counts;
for (int i = 0; i < num_grids; ++i)
{
const int dest_proc = dmap[i];
const size_t num_to_add = stop[i+1] - start[i+1];
if (dest_proc != ParallelDescriptor::MyProc() and num_to_add > 0)
{
grid_counts[dest_proc] += 1;
}
}
//
// Each destination grid, copy the appropriate particle data, passing the non-local data
// into not_ours
//
for (int i = 0; i < num_grids; ++i)
{
const int tid = 0;
auto pair_index = std::make_pair(i, tid);
const size_t num_to_add = stop[i+1] - start[i+1];
if (num_to_add == 0) continue;
const int dest_proc = dmap[i];
if (dest_proc == ParallelDescriptor::MyProc()) // this is a local copy
{
auto& ptile = plev[pair_index];
const size_t old_size = ptile.numParticles();
const size_t new_size = old_size + num_to_add;
ptile.resize(new_size);
// copy structs
{
auto& src = aos_to_redistribute;
auto& dst = ptile.GetArrayOfStructs();
thrust::copy(thrust::device,
src.begin() + start[i+1], src.begin() + stop[i+1],
dst().begin() + old_size);
}
// copy real arrays
for (int j = 0; j < NArrayReal; ++j)
{
auto& src = real_arrays_to_redistribute[j];
auto& dst = ptile.GetStructOfArrays().GetRealData(j);
thrust::copy(thrust::device,
src.begin() + start[i+1], src.begin() + stop[i+1],
dst.begin() + old_size);
}
// copy int arrays
for (int j = 0; j < NArrayInt; ++j)
{
auto& src = int_arrays_to_redistribute[j];
auto& dst = ptile.GetStructOfArrays().GetIntData(j);
thrust::copy(thrust::device,
src.begin() + start[i+1], src.begin() + stop[i+1],
dst.begin() + old_size);
}
}
else // this is the non-local case
{
char* dst;
const size_t old_size = not_ours[dest_proc].size();
const size_t new_size
= old_size + num_to_add*superparticle_size + sizeof(size_t) + 2*sizeof(int);
if (old_size == 0)
{
not_ours[dest_proc].resize(new_size + sizeof(size_t));
cudaMemcpyAsync(thrust::raw_pointer_cast(not_ours[dest_proc].data()),
&grid_counts[dest_proc], sizeof(size_t), cudaMemcpyHostToHost);
dst = thrust::raw_pointer_cast(
not_ours[dest_proc].data() + old_size + sizeof(size_t));
} else
{
not_ours[dest_proc].resize(new_size);
dst = thrust::raw_pointer_cast(not_ours[dest_proc].data() + old_size);
}
cudaMemcpyAsync(thrust::raw_pointer_cast(dst),
&num_to_add, sizeof(size_t), cudaMemcpyHostToHost);
dst += sizeof(size_t);
cudaMemcpyAsync(thrust::raw_pointer_cast(dst), &i, sizeof(int), cudaMemcpyHostToHost);
dst += sizeof(int);
cudaMemcpyAsync(thrust::raw_pointer_cast(dst),
&dest_proc, sizeof(int), cudaMemcpyHostToHost);
dst += sizeof(int);
// pack structs
{
auto& aos = aos_to_redistribute;
cudaMemcpyAsync(thrust::raw_pointer_cast(dst),
thrust::raw_pointer_cast(aos.data() + start[i+1]),
num_to_add*sizeof(ParticleType), cudaMemcpyDeviceToHost);
dst += num_to_add*sizeof(ParticleType);
}
// pack real arrays
for (int j = 0; j < NArrayReal; ++j)
{
if (not communicate_real_comp[j]) continue;
auto& attrib = real_arrays_to_redistribute[j];
cudaMemcpyAsync(thrust::raw_pointer_cast(dst),
thrust::raw_pointer_cast(attrib.data() + start[i+1]),
num_to_add*sizeof(Real), cudaMemcpyDeviceToHost);
dst += num_to_add*sizeof(Real);
}
// pack int arrays
for (int j = 0; j < NArrayInt; ++j)
{
if (not communicate_int_comp[j]) continue;
auto& attrib = int_arrays_to_redistribute[j];
cudaMemcpyAsync(thrust::raw_pointer_cast(dst),
thrust::raw_pointer_cast(attrib.data() + start[i+1]),
num_to_add*sizeof(int), cudaMemcpyDeviceToHost);
dst += num_to_add*sizeof(int);
}
}
}
}
if (ParallelDescriptor::NProcs() == 1) {
BL_ASSERT(not_ours.empty());
}
else {
RedistributeMPIGPU(not_ours);
}
EnforcePeriodicGPU();
AMREX_ASSERT(OK());
#endif // AMREX_USE_CUDA
}
#ifdef AMREX_USE_CUDA
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::EnforcePeriodicGPU ()
{
BL_PROFILE("ParticleContainer::EnforcePeriodicGPU()");
const int lev = 0;
const Geometry& geom = Geom(lev);
const auto plo = Geom(lev).ProbLoArray();
const auto phi = Geom(lev).ProbHiArray();
const auto is_per = Geom(lev).isPeriodicArray();
BuildRedistributeMask(0, 1);
for (MFIter mfi(*redistribute_mask_ptr, false); mfi.isValid(); ++mfi)
{
const int grid_id = mfi.index();
const int tile_id = mfi.LocalTileIndex();
auto& particles = ParticlesAt(lev, grid_id, tile_id);
const int np = particles.size();
ParticleType* pstruct = &(particles.GetArrayOfStructs()[0]);
AMREX_FOR_1D ( np, i,
{
for (int idim = 0; idim < AMREX_SPACEDIM; ++idim) {
if (not is_per[idim]) continue;
if (pstruct[i].pos(idim) > phi[idim]) {
pstruct[i].pos(idim) -= (phi[idim] - plo[idim]);
} else if (pstruct[i].pos(idim) < plo[idim]) {
pstruct[i].pos(idim) += (phi[idim] - plo[idim]);
}
}
});
}
}
#endif //AMREX_USE_CUDA
#ifdef AMREX_USE_CUDA
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::RedistributeMPIGPU (std::map<int, SendBuffer>& not_ours)
{
BL_PROFILE("ParticleContainer::RedistributeMPIGPU()");
#if BL_USE_MPI
const int NProcs = ParallelDescriptor::NProcs();
const int lev = 0;
// We may now have particles that are rightfully owned by another CPU.
Vector<long> Snds(NProcs, 0), Rcvs(NProcs, 0); // bytes!
long NumSnds = 0;
for (const auto& kv : not_ours)
{
const size_t nbytes = kv.second.size();
Snds[kv.first] = nbytes;
NumSnds += nbytes;
}
ParallelDescriptor::ReduceLongMax(NumSnds);
if (NumSnds == 0) return;
BL_COMM_PROFILE(BLProfiler::Alltoall, sizeof(long),
ParallelDescriptor::MyProc(), BLProfiler::BeforeCall());
BL_MPI_REQUIRE( MPI_Alltoall(Snds.dataPtr(),
1,
ParallelDescriptor::Mpi_typemap<long>::type(),
Rcvs.dataPtr(),
1,
ParallelDescriptor::Mpi_typemap<long>::type(),
ParallelDescriptor::Communicator()) );
BL_ASSERT(Rcvs[ParallelDescriptor::MyProc()] == 0);
BL_COMM_PROFILE(BLProfiler::Alltoall, sizeof(long),
ParallelDescriptor::MyProc(), BLProfiler::AfterCall());
Vector<int> RcvProc;
Vector<std::size_t> rOffset; // Offset (in bytes) in the receive buffer
std::size_t TotRcvBytes = 0;
for (int i = 0; i < NProcs; ++i) {
if (Rcvs[i] > 0) {
RcvProc.push_back(i);
rOffset.push_back(TotRcvBytes);
TotRcvBytes += Rcvs[i];
}
}
const int nrcvs = RcvProc.size();
Vector<MPI_Status> stats(nrcvs);
Vector<MPI_Request> rreqs(nrcvs);
const int SeqNum = ParallelDescriptor::SeqNum();
// Allocate data for rcvs as one big chunk.
char* rcv_buffer;
if (ParallelDescriptor::UseGpuAwareMpi())
{
rcv_buffer = static_cast<char*>(amrex::The_Device_Arena()->alloc(TotRcvBytes));
}
else
{
rcv_buffer = static_cast<char*>(amrex::The_Pinned_Arena()->alloc(TotRcvBytes));
}
// Post receives.
for (int i = 0; i < nrcvs; ++i) {
const auto Who = RcvProc[i];
const auto offset = rOffset[i];
const auto Cnt = Rcvs[Who];
BL_ASSERT(Cnt > 0);
BL_ASSERT(Cnt < std::numeric_limits<int>::max());
BL_ASSERT(Who >= 0 && Who < NProcs);
rreqs[i] = ParallelDescriptor::Arecv(rcv_buffer + offset,
Cnt, Who, SeqNum).req();
}
// Send.
for (const auto& kv : not_ours) {
const auto Who = kv.first;
const auto Cnt = kv.second.size();
BL_ASSERT(Cnt > 0);
BL_ASSERT(Who >= 0 && Who < NProcs);
BL_ASSERT(Cnt < std::numeric_limits<int>::max());
ParallelDescriptor::Send(thrust::raw_pointer_cast(kv.second.data()),
Cnt, Who, SeqNum);
}
if (nrcvs > 0) {
ParallelDescriptor::Waitall(rreqs, stats);
for (int i = 0; i < nrcvs; ++i) {
const int offset = rOffset[i];
char* buffer = thrust::raw_pointer_cast(rcv_buffer + offset);
size_t num_grids, num_particles;
int gid, pid;
cudaMemcpy(&num_grids, buffer, sizeof(size_t), cudaMemcpyHostToHost);
buffer += sizeof(size_t);
for (int g = 0; g < num_grids; ++g) {
cudaMemcpyAsync(&num_particles, buffer, sizeof(size_t), cudaMemcpyHostToHost);
buffer += sizeof(size_t);
cudaMemcpyAsync(&gid, buffer, sizeof(int), cudaMemcpyHostToHost);
buffer += sizeof(int);
cudaMemcpyAsync(&pid, buffer, sizeof(int), cudaMemcpyHostToHost);
buffer += sizeof(int);
Gpu::Device::streamSynchronize();
if (num_particles == 0) continue;
AMREX_ALWAYS_ASSERT(pid == ParallelDescriptor::MyProc());
{
const int tid = 0;
auto pair_index = std::make_pair(gid, tid);
auto& ptile = m_particles[lev][pair_index];
auto& aos = ptile.GetArrayOfStructs();
auto& soa = ptile.GetStructOfArrays();
const size_t old_size = ptile.numParticles();
const size_t new_size = old_size + num_particles;
ptile.resize(new_size);
//copy structs
cudaMemcpyAsync(static_cast<ParticleType*>(aos().data()) + old_size,
buffer, num_particles*sizeof(ParticleType),
cudaMemcpyHostToDevice);
buffer += num_particles*sizeof(ParticleType);
// copy real arrays
for (int j = 0; j < NArrayReal; ++j) {
if (not communicate_real_comp[j]) continue;
auto& attrib = soa.GetRealData(j);
cudaMemcpyAsync(attrib.data() + old_size, buffer, num_particles*sizeof(Real),
cudaMemcpyHostToDevice);
buffer += num_particles*sizeof(Real);
}
// copy int arrays
for (int j = 0; j < NArrayInt; ++j) {
if (not communicate_int_comp[j]) continue;
auto& attrib = soa.GetIntData(j);
cudaMemcpyAsync(attrib.data() + old_size, buffer, num_particles*sizeof(int),
cudaMemcpyHostToDevice);
buffer += num_particles*sizeof(int);
}
}
}
}
}
if (ParallelDescriptor::UseGpuAwareMpi())
{
amrex::The_Device_Arena()->free(rcv_buffer);
} else {
amrex::The_Pinned_Arena()->free(rcv_buffer);
}
#endif // MPI
}
#endif // AMREX_USE_CUDA
//
// The CPU implementation of Redistribute
//
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::RedistributeCPU (int lev_min, int lev_max, int nGrow, int local)
{
BL_PROFILE("ParticleContainer::RedistributeCPU()");
const int MyProc = ParallelDescriptor::MyProc();
Real strttime = amrex::second();
if (local > 0) BuildRedistributeMask(0, local);
// On startup there are cases where Redistribute() could be called
// with a given finestLevel() where that AmrLevel has yet to be defined.
int theEffectiveFinestLevel = m_gdb->finestLevel();
while (!m_gdb->LevelDefined(theEffectiveFinestLevel))
theEffectiveFinestLevel--;
if (int(m_particles.size()) < theEffectiveFinestLevel+1) {
if (Verbose()) {
amrex::Print() << "ParticleContainer::Redistribute() resizing containers from "
<< m_particles.size() << " to "
<< theEffectiveFinestLevel + 1 << '\n';
}
m_particles.resize(theEffectiveFinestLevel+1);
m_dummy_mf.resize(theEffectiveFinestLevel+1);
}
// It is important to do this even if we don't have more levels because we may have changed the
// grids at this level in a regrid.
for (int lev = 0; lev < theEffectiveFinestLevel+1; ++lev)
RedefineDummyMF(lev);
int nlevs_particles;
if (lev_max == -1) {
lev_max = theEffectiveFinestLevel;
nlevs_particles = m_particles.size() - 1;
} else {
nlevs_particles = lev_max;
}
BL_ASSERT(lev_max <= finestLevel());
// This will hold the valid particles that go to another process
std::map<int, Vector<char> > not_ours;
int num_threads = 1;
#ifdef _OPENMP
#pragma omp parallel
#pragma omp single
num_threads = omp_get_num_threads();
#endif
// these are temporary buffers for each thread
std::map<int, Vector<Vector<char> > > tmp_remote;
Vector<std::map<std::pair<int, int>, Vector<ParticleVector> > > tmp_local;
Vector<std::map<std::pair<int, int>, Vector<StructOfArrays<NArrayReal, NArrayInt> > > > soa_local;
tmp_local.resize(theEffectiveFinestLevel+1);
soa_local.resize(theEffectiveFinestLevel+1);
// we resize these buffers outside the parallel region
for (int lev = lev_min; lev <= lev_max; lev++) {
for (MFIter mfi(*m_dummy_mf[lev], this->do_tiling ? this->tile_size : IntVect::TheZeroVector());
mfi.isValid(); ++mfi) {
auto index = std::make_pair(mfi.index(), mfi.LocalTileIndex());
tmp_local[lev][index].resize(num_threads);
soa_local[lev][index].resize(num_threads);
}
}
if (local) {
for (int i = 0; i < neighbor_procs.size(); ++i)
tmp_remote[neighbor_procs[i]].resize(num_threads);
} else {
for (int i = 0; i < ParallelDescriptor::NProcs(); ++i)
tmp_remote[i].resize(num_threads);
}
// first pass: for each tile in parallel, in each thread copies the particles that
// need to be moved into it's own, temporary buffer.
for (int lev = lev_min; lev <= nlevs_particles; lev++) {
auto& pmap = m_particles[lev];
Vector<std::pair<int, int> > grid_tile_ids;
Vector<ParticleTileType*> ptile_ptrs;
for (auto& kv : pmap)
{
grid_tile_ids.push_back(kv.first);
ptile_ptrs.push_back(&(kv.second));
}
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int pmap_it = 0; pmap_it < static_cast<int>(ptile_ptrs.size()); ++pmap_it)
{
#ifdef _OPENMP
int thread_num = omp_get_thread_num();
#else
int thread_num = 0;
#endif
int grid = grid_tile_ids[pmap_it].first;
int tile = grid_tile_ids[pmap_it].second;
auto& aos = ptile_ptrs[pmap_it]->GetArrayOfStructs();
auto& soa = ptile_ptrs[pmap_it]->GetStructOfArrays();
unsigned npart = aos.numParticles();
ParticleLocData pld;
if (npart != 0) {
long last = npart - 1;
unsigned pindex = 0;
while (pindex <= last) {
ParticleType& p = aos[pindex];
if (p.m_idata.id < 0)
{
aos[pindex] = aos[last];
for (int comp = 0; comp < NArrayReal; comp++)
soa.GetRealData(comp)[pindex] = soa.GetRealData(comp)[last];
for (int comp = 0; comp < NArrayInt; comp++)
soa.GetIntData(comp)[pindex] = soa.GetIntData(comp)[last];
correctCellVectors(last, pindex, grid, aos[pindex]);
--last;
continue;
}
locateParticle(p, pld, lev_min, lev_max, nGrow, local ? grid : -1);
particlePostLocate(p, pld, lev);
if (p.m_idata.id < 0)
{
aos[pindex] = aos[last];
for (int comp = 0; comp < NArrayReal; comp++)
soa.GetRealData(comp)[pindex] = soa.GetRealData(comp)[last];
for (int comp = 0; comp < NArrayInt; comp++)
soa.GetIntData(comp)[pindex] = soa.GetIntData(comp)[last];
correctCellVectors(last, pindex, grid, aos[pindex]);
--last;
continue;
}
const int who = ParticleDistributionMap(pld.m_lev)[pld.m_grid];
if (who == MyProc) {
if (pld.m_lev != lev || pld.m_grid != grid || pld.m_tile != tile) {
// We own it but must shift it to another place.
auto index = std::make_pair(pld.m_grid, pld.m_tile);
BL_ASSERT(tmp_local[pld.m_lev][index].size() == num_threads);
tmp_local[pld.m_lev][index][thread_num].push_back(p);
for (int comp = 0; comp < NArrayReal; ++comp) {
RealVector& arr = soa_local[pld.m_lev][index][thread_num].GetRealData(comp);
arr.push_back(soa.GetRealData(comp)[pindex]);
}
for (int comp = 0; comp < NArrayInt; ++comp) {
IntVector& arr = soa_local[pld.m_lev][index][thread_num].GetIntData(comp);
arr.push_back(soa.GetIntData(comp)[pindex]);
}
p.m_idata.id = -p.m_idata.id; // Invalidate the particle
}
}
else {
auto& particles_to_send = tmp_remote[who][thread_num];
auto old_size = particles_to_send.size();
auto new_size = old_size + superparticle_size;
particles_to_send.resize(new_size);
std::memcpy(&particles_to_send[old_size], &p, particle_size);
char* dst = &particles_to_send[old_size] + particle_size;
for (int comp = 0; comp < NArrayReal; comp++) {
if (communicate_real_comp[comp]) {
std::memcpy(dst, &soa.GetRealData(comp)[pindex], sizeof(Real));
dst += sizeof(Real);
}
}
for (int comp = 0; comp < NArrayInt; comp++) {
if (communicate_int_comp[comp]) {
std::memcpy(dst, &soa.GetIntData(comp)[pindex], sizeof(int));
dst += sizeof(int);
}
}
p.m_idata.id = -p.m_idata.id; // Invalidate the particle
}
if (p.m_idata.id < 0)
{
aos[pindex] = aos[last];
for (int comp = 0; comp < NArrayReal; comp++)
soa.GetRealData(comp)[pindex] = soa.GetRealData(comp)[last];
for (int comp = 0; comp < NArrayInt; comp++)
soa.GetIntData(comp)[pindex] = soa.GetIntData(comp)[last];
correctCellVectors(last, pindex, grid, aos[pindex]);
--last;
continue;
}
++pindex;
}
aos().erase(aos().begin() + last + 1, aos().begin() + npart);
for (int comp = 0; comp < NArrayReal; comp++) {
RealVector& rdata = soa.GetRealData(comp);
rdata.erase(rdata.begin() + last + 1, rdata.begin() + npart);
}
for (int comp = 0; comp < NArrayInt; comp++) {
IntVector& idata = soa.GetIntData(comp);
idata.erase(idata.begin() + last + 1, idata.begin() + npart);
}
}
}
}
for (int lev = lev_min; lev <= lev_max; lev++) {
auto& pmap = m_particles[lev];
for (auto pmap_it = pmap.begin(); pmap_it != pmap.end(); /* no ++ */) {
// Remove any map entries for which the particle container is now empty.
if (pmap_it->second.empty()) {
pmap.erase(pmap_it++);
}
else {
++pmap_it;
}
}
}
// Second pass - for each tile in parallel, collect the particles we are owed from all thread's buffers.
for (int lev = lev_min; lev <= lev_max; lev++) {
typename std::map<std::pair<int, int>, Vector<ParticleVector > >::iterator pmap_it;
Vector<std::pair<int, int> > grid_tile_ids;
Vector<Vector<ParticleVector>* > pvec_ptrs;
// we need to create any missing map entries in serial here
for (pmap_it=tmp_local[lev].begin(); pmap_it != tmp_local[lev].end(); pmap_it++)
{
m_particles[lev][pmap_it->first];
grid_tile_ids.push_back(pmap_it->first);
pvec_ptrs.push_back(&(pmap_it->second));
}
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int pit = 0; pit < static_cast<int>(pvec_ptrs.size()); ++pit)
{
auto index = grid_tile_ids[pit];
auto& aos = m_particles[lev][index].GetArrayOfStructs();
auto& soa = m_particles[lev][index].GetStructOfArrays();
auto& aos_tmp = *(pvec_ptrs[pit]);
auto& soa_tmp = soa_local[lev][index];
for (int i = 0; i < num_threads; ++i) {
aos.insert(aos.end(), aos_tmp[i].begin(), aos_tmp[i].end());
aos_tmp[i].erase(aos_tmp[i].begin(), aos_tmp[i].end());
for (int comp = 0; comp < NArrayReal; ++comp) {
RealVector& arr = soa.GetRealData(comp);
RealVector& tmp = soa_tmp[i].GetRealData(comp);
arr.insert(arr.end(), tmp.begin(), tmp.end());
tmp.erase(tmp.begin(), tmp.end());
}
for (int comp = 0; comp < NArrayInt; ++comp) {
IntVector& arr = soa.GetIntData(comp);
IntVector& tmp = soa_tmp[i].GetIntData(comp);
arr.insert(arr.end(), tmp.begin(), tmp.end());
tmp.erase(tmp.begin(), tmp.end());
}
}
}
}
for (auto& map_it : tmp_remote) {
int who = map_it.first;
not_ours[who];
}
Vector<int> dest_proc_ids;
Vector<Vector<Vector<char> >* > pbuff_ptrs;
for (auto& kv : tmp_remote)
{
dest_proc_ids.push_back(kv.first);
pbuff_ptrs.push_back(&(kv.second));
}
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int pmap_it = 0; pmap_it < static_cast<int>(pbuff_ptrs.size()); ++pmap_it)
{
int who = dest_proc_ids[pmap_it];
Vector<Vector<char> >& tmp = *(pbuff_ptrs[pmap_it]);
for (int i = 0; i < num_threads; ++i) {
not_ours[who].insert(not_ours[who].end(), tmp[i].begin(), tmp[i].end());
tmp[i].erase(tmp[i].begin(), tmp[i].end());
}
}
// remove any empty map entries from not_ours
for (auto pmap_it = not_ours.begin(); pmap_it != not_ours.end(); /* no ++ */) {
if (pmap_it->second.empty()) {
not_ours.erase(pmap_it++);
}
else {
++pmap_it;
}
}
if (int(m_particles.size()) > theEffectiveFinestLevel+1) {
// Looks like we lost an AmrLevel on a regrid.
if (m_verbose > 0) {
amrex::Print() << "ParticleContainer::Redistribute() resizing m_particles from "
<< m_particles.size() << " to " << theEffectiveFinestLevel+1 << '\n';
}
BL_ASSERT(int(m_particles.size()) >= 2);
m_particles.resize(theEffectiveFinestLevel + 1);
m_dummy_mf.resize(theEffectiveFinestLevel + 1);
}
if (ParallelDescriptor::NProcs() == 1) {
BL_ASSERT(not_ours.empty());
}
else {
RedistributeMPI(not_ours, lev_min, lev_max, nGrow, local);
}
BL_ASSERT(OK(lev_min, lev_max, nGrow));
if (m_verbose > 0) {
Real stoptime = amrex::second() - strttime;
ByteSpread();
#ifdef BL_LAZY
Lazy::QueueReduction( [=] () mutable {
#endif
ParallelDescriptor::ReduceRealMax(stoptime,ParallelDescriptor::IOProcessorNumber());
amrex::Print() << "ParticleContainer::Redistribute() time: " << stoptime << "\n\n";
#ifdef BL_LAZY
});
#endif
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::
BuildRedistributeMask (int lev, int nghost) const {
BL_PROFILE("ParticleContainer::BuildRedistributeMask");
BL_ASSERT(lev == 0);
if (redistribute_mask_ptr == nullptr ||
redistribute_mask_nghost < nghost ||
! BoxArray::SameRefs(redistribute_mask_ptr->boxArray(), this->ParticleBoxArray(lev)) ||
! DistributionMapping::SameRefs(redistribute_mask_ptr->DistributionMap(), this->ParticleDistributionMap(lev)))
{
const Geometry& geom = this->Geom(lev);
const BoxArray& ba = this->ParticleBoxArray(lev);
const DistributionMapping& dmap = this->ParticleDistributionMap(lev);
redistribute_mask_nghost = nghost;
redistribute_mask_ptr.reset(new iMultiFab(ba, dmap, 2, nghost));
redistribute_mask_ptr->setVal(-1, nghost);
#ifdef _OPENMP
#pragma omp parallel
#endif
for (MFIter mfi(*redistribute_mask_ptr, this->do_tiling ? this->tile_size : IntVect::TheZeroVector());
mfi.isValid(); ++mfi) {
const Box& box = mfi.tilebox();
const int grid_id = mfi.index();
const int tile_id = mfi.LocalTileIndex();
redistribute_mask_ptr->setVal(grid_id, box, 0, 1);
redistribute_mask_ptr->setVal(tile_id, box, 1, 1);
}
redistribute_mask_ptr->FillBoundary(geom.periodicity());
neighbor_procs.clear();
for (MFIter mfi(*redistribute_mask_ptr, this->do_tiling ? this->tile_size : IntVect::TheZeroVector());
mfi.isValid(); ++mfi) {
const Box& box = mfi.growntilebox();
for (IntVect iv = box.smallEnd(); iv <= box.bigEnd(); box.next(iv)) {
const int grid = (*redistribute_mask_ptr)[mfi](iv, 0);
if (grid >= 0) {
const int proc = this->ParticleDistributionMap(lev)[grid];
if (proc != ParallelDescriptor::MyProc())
neighbor_procs.push_back(proc);
}
}
}
RemoveDuplicates(neighbor_procs);
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::
RedistributeMPI (std::map<int, Vector<char> >& not_ours,
int lev_min, int lev_max, int nGrow, int local)
{
BL_PROFILE("ParticleContainer::RedistributeMPI()");
BL_PROFILE_VAR_NS("RedistributeMPI_locate", blp_locate);
BL_PROFILE_VAR_NS("RedistributeMPI_copy", blp_copy);
#if BL_USE_MPI
const int NProcs = ParallelDescriptor::NProcs();
const int NNeighborProcs = neighbor_procs.size();
// We may now have particles that are rightfully owned by another CPU.
Vector<long> Snds(NProcs, 0), Rcvs(NProcs, 0); // bytes!
long NumSnds = 0;
if (local > 0) {
AMREX_ALWAYS_ASSERT(lev_min == 0);
AMREX_ALWAYS_ASSERT(lev_max == 0);
BuildRedistributeMask(0, local);
NumSnds = doHandShakeLocal(not_ours, neighbor_procs, Snds, Rcvs);
}
else {
NumSnds = doHandShake(not_ours, Snds, Rcvs);
}
const int SeqNum = ParallelDescriptor::SeqNum();
if ((not local) and NumSnds == 0)
return; // There's no parallel work to do.
if (local) {
long tot_snds_this_proc = 0;
long tot_rcvs_this_proc = 0;
for (int i = 0; i < NNeighborProcs; ++i) {
tot_snds_this_proc += Snds[neighbor_procs[i]];
tot_rcvs_this_proc += Rcvs[neighbor_procs[i]];
}
if ( (tot_snds_this_proc == 0) and (tot_rcvs_this_proc == 0) ) {
return; // There's no parallel work to do.
}
}
Vector<int> RcvProc;
Vector<std::size_t> rOffset; // Offset (in bytes) in the receive buffer
std::size_t TotRcvBytes = 0;
for (int i = 0; i < NProcs; ++i) {
if (Rcvs[i] > 0) {
RcvProc.push_back(i);
rOffset.push_back(TotRcvBytes);
TotRcvBytes += Rcvs[i];
}
}
const int nrcvs = RcvProc.size();
Vector<MPI_Status> stats(nrcvs);
Vector<MPI_Request> rreqs(nrcvs);
// Allocate data for rcvs as one big chunk.
Vector<char> recvdata(TotRcvBytes);
// Post receives.
for (int i = 0; i < nrcvs; ++i) {
const auto Who = RcvProc[i];
const auto offset = rOffset[i];
const auto Cnt = Rcvs[Who];
BL_ASSERT(Cnt > 0);
BL_ASSERT(Cnt < std::numeric_limits<int>::max());
BL_ASSERT(Who >= 0 && Who < NProcs);
rreqs[i] = ParallelDescriptor::Arecv(&recvdata[offset], Cnt, Who, SeqNum).req();
}
// Send.
for (const auto& kv : not_ours) {
const auto Who = kv.first;
const auto Cnt = kv.second.size();
BL_ASSERT(Cnt > 0);
BL_ASSERT(Who >= 0 && Who < NProcs);
BL_ASSERT(Cnt < std::numeric_limits<int>::max());
ParallelDescriptor::Send(kv.second.data(), Cnt, Who, SeqNum);
}
if (nrcvs > 0) {
ParallelDescriptor::Waitall(rreqs, stats);
BL_PROFILE_VAR_START(blp_locate);
if (recvdata.size() % superparticle_size != 0) {
if (m_verbose) {
amrex::AllPrint() << "ParticleContainer::RedistributeMPI: sizes = "
<< recvdata.size() << ", " << superparticle_size << "\n";
}
amrex::Abort("ParticleContainer::RedistributeMPI: How did this happen?");
}
int npart = recvdata.size() / superparticle_size;
Vector<int> rcv_levs(npart);
Vector<int> rcv_grid(npart);
Vector<int> rcv_tile(npart);
ParticleLocData pld;
#ifdef _OPENMP
#pragma omp parallel for private(pld)
#endif
for (int i = 0; i < npart; ++i)
{
char* pbuf = recvdata.data() + i*superparticle_size;
ParticleType p;
std::memcpy(&p, pbuf, sizeof(ParticleType));
locateParticle(p, pld, lev_min, lev_max, nGrow);
rcv_levs[i] = pld.m_lev;
rcv_grid[i] = pld.m_grid;
rcv_tile[i] = pld.m_tile;
}
BL_PROFILE_VAR_STOP(blp_locate);
BL_PROFILE_VAR_START(blp_copy);
for (int j = 0; j < npart; ++j)
{
auto& ptile = m_particles[rcv_levs[j]][std::make_pair(rcv_grid[j], rcv_tile[j])];
char* pbuf = recvdata.data() + j*superparticle_size;
ParticleType p;
std::memcpy(&p, pbuf, sizeof(ParticleType));
ptile.push_back(p);
Real* rdata = (Real*)(pbuf + particle_size);
for (int comp = 0; comp < NArrayReal; ++comp) {
if (communicate_real_comp[comp]) {
ptile.push_back_real(comp, *rdata++);
} else {
ptile.push_back_real(comp, 0.0);
}
}
int* idata = (int*)(pbuf + particle_size + num_real_comm_comps*sizeof(Real));
for (int comp = 0; comp < NArrayInt; ++comp) {
if (communicate_int_comp[comp]) {
ptile.push_back_int(comp, *idata++);
} else {
ptile.push_back_int(comp, 0);
}
}
}
BL_PROFILE_VAR_STOP(blp_copy);
}
#endif /*BL_USE_MPI*/
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
bool
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::OK (int lev_min, int lev_max, int nGrow) const
{
#ifdef AMREX_USE_CUDA
if ( (finestLevel() == 0) and (nGrow == 0) )
{
return OKGPU(lev_min, lev_max, nGrow);
}
else
{
return OKCPU(lev_min, lev_max, nGrow);
}
#else
return OKCPU(lev_min, lev_max, nGrow);
#endif
}
#ifdef AMREX_USE_CUDA
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
bool
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::OKGPU (int lev_min, int lev_max, int nGrow) const
{
BL_PROFILE("ParticleContainer::OKGPU()");
if (lev_max == -1)
lev_max = finestLevel();
AMREX_ASSERT(lev_max <= finestLevel());
AMREX_ASSERT(lev_min == 0);
AMREX_ASSERT(lev_max == 0);
AMREX_ASSERT(nGrow == 0);
AMREX_ASSERT(do_tiling == false);
const int lev = 0;
const Geometry& geom = Geom(lev);
BuildRedistributeMask(0, 1);
thrust::device_vector<int> grid_indices;
long total_np = 0;
long total_wrong = 0;
for(MFIter mfi(*redistribute_mask_ptr, false); mfi.isValid(); ++mfi) {
int i = mfi.index();
const int tid = 0;
const auto& ptile = ParticlesAt(lev, i, tid);
auto& aos = ptile.GetArrayOfStructs();
const int np = ptile.numParticles();
total_np += np;
if (np == 0) continue;
grid_indices.resize(np);
thrust::transform(thrust::device,
aos().begin(), aos().begin() + np, grid_indices.begin(),
functors::assignParticleGrid(geom.data(),
(*redistribute_mask_ptr)[mfi].box(),
redistribute_mask_ptr->fabPtr(mfi)));
int count = thrust::count_if(grid_indices.begin(),
grid_indices.end(),
functors::grid_is_not(i));
total_wrong += count;
if (count != 0) {
Gpu::HostVector<ParticleType> host_particles(np);
Gpu::HostVector<int> host_grids(np);
Cuda::thrust_copy(aos().begin(),
aos().begin() + np,
host_particles.begin());
Cuda::thrust_copy(grid_indices.begin(),
grid_indices.end(),
host_grids.begin());
Gpu::Device::streamSynchronize();
for (int j = 0; j < np; ++j) {
if (grid_indices[j] != i)
amrex::AllPrint() << host_particles[j] << " ";
}
amrex::AllPrint() << "\n";
}
}
ParallelDescriptor::ReduceLongMax(total_np);
ParallelDescriptor::ReduceLongMax(total_wrong);
amrex::Print() << "I have " << total_np << " particles in OK(). \n";
amrex::Print() << "I have " << total_wrong << " particles in the wrong place. \n";
return (total_wrong == 0);
}
#endif
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
bool
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::OKCPU (int lev_min, int lev_max, int nGrow) const
{
BL_PROFILE("ParticleContainer::OKCPU()");
if (lev_max == -1)
lev_max = finestLevel();
AMREX_ASSERT(lev_max <= finestLevel());
ParticleLocData pld;
for (int lev = lev_min; lev <= lev_max; lev++)
{
const auto& pmap = m_particles[lev];
for (const auto& kv : pmap)
{
const int grid = kv.first.first;
const int tile = kv.first.second;
const auto& aos = kv.second.GetArrayOfStructs();
const auto& soa = kv.second.GetStructOfArrays();
int np = aos.numParticles();
for (int i = 0; i < NArrayReal; i++) {
BL_ASSERT(np == soa.GetRealData(i).size());
}
for (int i = 0; i < NArrayInt; i++) {
BL_ASSERT(np == soa.GetIntData(i).size());
}
const BoxArray& ba = ParticleBoxArray(lev);
BL_ASSERT(ba.ixType().cellCentered());
for (int k = 0; k < aos.size(); ++k)
{
const ParticleType& p = aos[k];
if (p.m_idata.id > 0)
{
if (grid < 0 || grid >= ba.size()) return false;
//
// First, make sure the particle COULD be in this container
//
const IntVect& iv = Index(p, lev);
const Box& gridbox = ba.getCellCenteredBox(grid);
if (!amrex::grow(gridbox, nGrow).contains(iv))
{
return false;
}
Box tbx;
if (getTileIndex(iv, gridbox, do_tiling, tile_size, tbx) != tile)
{
return false;
}
//
// Then, we need to make sure it cannot be stored in finer level
// or valid box of current level.
//
if (Where(p, pld, lev_min, lev_max))
{
if (lev != pld.m_lev || grid != pld.m_grid || tile != pld.m_tile)
{
if (m_verbose) {
amrex::AllPrint() << "PARTICLE NUMBER " << p.m_idata.id << '\n'
<< "POS " << AMREX_D_TERM(p.m_rdata.pos[0], << p.m_rdata.pos[1], << p.m_rdata.pos[2]) << "\n"
<< "LEV " << lev << " " << pld.m_lev << '\n'
<< "GRID " << grid << " " << pld.m_grid << '\n';
}
return false;
}
}
}
}
}
}
return true;
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal,NStructInt,NArrayReal, NArrayInt>::AddParticlesAtLevel (AoS& particles, int level, int nGrow)
{
BL_PROFILE("ParticleContainer::AddParticlesAtLevel()");
if (int(m_particles.size()) < level+1)
{
if (Verbose())
{
amrex::Print() << "ParticleContainer::AddParticlesAtLevel resizing m_particles from "
<< m_particles.size()
<< " to "
<< level+1 << '\n';
}
m_particles.resize(level + 1);
m_dummy_mf.resize(level+1);
for (int lev = 0; lev < level+1; ++lev) {
RedefineDummyMF(lev);
}
}
ParticleLocData pld;
for (int i = 0; i < particles.size(); ++i) {
ParticleType& p = particles[i];
if (p.id() > 0)
{
if (!Where(p, pld, level, level, nGrow))
amrex::Abort("ParticleContainerAddParticlesAtLevel(): Can't add outside of domain\n");
m_particles[pld.m_lev][std::make_pair(pld.m_grid, pld.m_tile)].push_back(p);
}
}
Redistribute(level, level, nGrow);
particles.resize(0);
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::WriteParticleRealData (void* data, size_t size,
std::ostream& os, const RealDescriptor& rd) const
{
if (sizeof(typename ParticleType::RealType) == 4) {
writeFloatData((float*) data, size, os, ParticleRealDescriptor);
}
else if (sizeof(typename ParticleType::RealType) == 8) {
writeDoubleData((double*) data, size, os, ParticleRealDescriptor);
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::ReadParticleRealData (void* data, size_t size,
std::istream& is, const RealDescriptor& rd)
{
if (sizeof(typename ParticleType::RealType) == 4) {
readFloatData((float*) data, size, is, ParticleRealDescriptor);
}
else if (sizeof(typename ParticleType::RealType) == 8) {
readDoubleData((double*) data, size, is, ParticleRealDescriptor);
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::Checkpoint (const std::string& dir, const std::string& name, bool is_checkpoint,
const Vector<std::string>& real_comp_names,
const Vector<std::string>& int_comp_names) const
{
BL_PROFILE("ParticleContainer::Checkpoint()");
BL_ASSERT(OK());
BL_ASSERT(sizeof(typename ParticleType::RealType) == 4 || sizeof(typename ParticleType::RealType) == 8);
const int NProcs = ParallelDescriptor::NProcs();
const int IOProcNumber = ParallelDescriptor::IOProcessorNumber();
const Real strttime = amrex::second();
std::string pdir = dir;
if ( not pdir.empty() and pdir[pdir.size()-1] != '/') pdir += '/';
pdir += name;
if ( ! levelDirectoriesCreated) {
if (ParallelDescriptor::IOProcessor())
if ( ! amrex::UtilCreateDirectory(pdir, 0755))
amrex::CreateDirectoryFailed(pdir);
ParallelDescriptor::Barrier();
}
std::ofstream HdrFile;
long nparticles = 0;
int maxnextid;
if(usePrePost) {
nparticles = nparticlesPrePost;
maxnextid = maxnextidPrePost;
} else {
nparticles = 0;
maxnextid = ParticleType::NextID();
for (int lev = 0; lev < m_particles.size(); lev++) {
const auto& pmap = m_particles[lev];
for (const auto& kv : pmap) {
const auto& aos = kv.second.GetArrayOfStructs();
for (int k = 0; k < aos.size(); ++k)
{
// Only count (and checkpoint) valid particles.
const ParticleType& p = aos[k];
if (p.m_idata.id > 0) nparticles++;
}
}
}
ParallelDescriptor::ReduceLongSum(nparticles, IOProcNumber);
ParticleType::NextID(maxnextid);
ParallelDescriptor::ReduceIntMax(maxnextid, IOProcNumber);
}
if (ParallelDescriptor::IOProcessor())
{
std::string HdrFileName = pdir;
if ( ! HdrFileName.empty() && HdrFileName[HdrFileName.size()-1] != '/') {
HdrFileName += '/';
}
HdrFileName += "Header";
HdrFileNamePrePost = HdrFileName;
HdrFile.open(HdrFileName.c_str(), std::ios::out|std::ios::trunc);
if ( ! HdrFile.good()) {
amrex::FileOpenFailed(HdrFileName);
}
//
// First thing written is our Checkpoint/Restart version string.
//
// We append "_single" or "_double" to the version string indicating
// whether we're using "float" or "double" floating point data in the
// particles so that we can Restart from the checkpoint files.
//
if (sizeof(typename ParticleType::RealType) == 4)
{
HdrFile << ParticleType::Version() << "_single" << '\n';
}
else
{
HdrFile << ParticleType::Version() << "_double" << '\n';
}
//
// AMREX_SPACEDIM and N for sanity checking.
//
HdrFile << AMREX_SPACEDIM << '\n';
// The number of extra real parameters
HdrFile << NStructReal + NArrayReal << '\n';
// Real component names
if (real_comp_names.size() == 0) {
for (int i = 0; i < NStructReal + NArrayReal; ++i ) {
HdrFile << "real_comp" << i << '\n';
}
} else {
BL_ASSERT(real_comp_names.size() == NStructReal + NArrayReal);
for (int i = 0; i < NStructReal + NArrayReal; ++i ) {
HdrFile << real_comp_names[i] << '\n';
}
}
// The number of extra int parameters
HdrFile << NStructInt + NArrayInt << '\n';
// int component names
if (int_comp_names.size() == 0) {
for (int i = 0; i < NStructInt + NArrayInt; ++i ) {
HdrFile << "int_comp" << i << '\n';
}
} else {
BL_ASSERT(int_comp_names.size() == NStructInt + NArrayInt);
for (int i = 0; i < NStructInt + NArrayInt; ++i ) {
HdrFile << int_comp_names[i] << '\n';
}
}
HdrFile << is_checkpoint << '\n';
//
// The total number of particles.
//
HdrFile << nparticles << '\n';
//
// The value of nextid that we need to restore on restart.
//
HdrFile << maxnextid << '\n';
//
// Then the finest level of the AMR hierarchy.
//
HdrFile << finestLevel() << '\n';
//
// Then the number of grids at each level.
//
for (int lev = 0; lev <= finestLevel(); lev++)
{
HdrFile << ParticleBoxArray(lev).size() << '\n';
}
}
//
// We want to write the data out in parallel.
//
// We'll allow up to nOutFiles active writers at a time.
//
int nOutFiles(256);
ParmParse pp("particles");
pp.query("particles_nfiles",nOutFiles);
if(nOutFiles == -1) {
nOutFiles = NProcs;
}
nOutFiles = std::max(1, std::min(nOutFiles,NProcs));
nOutFilesPrePost = nOutFiles;
for (int lev = 0; lev <= finestLevel(); lev++)
{
bool gotsome;
if(usePrePost) {
gotsome = (nParticlesAtLevelPrePost[lev] > 0);
} else {
gotsome = (NumberOfParticlesAtLevel(lev) > 0);
}
//
// We store the particles at each level in their own subdirectory.
//
std::string LevelDir = pdir;
if (gotsome)
{
if ( ! LevelDir.empty() && LevelDir[LevelDir.size()-1] != '/') {
LevelDir += '/';
}
LevelDir = amrex::Concatenate(LevelDir + "Level_", lev, 1);
if ( ! levelDirectoriesCreated) {
if (ParallelDescriptor::IOProcessor())
if ( ! amrex::UtilCreateDirectory(LevelDir, 0755))
amrex::CreateDirectoryFailed(LevelDir);
//
// Force other processors to wait until directory is built.
//
ParallelDescriptor::Barrier();
}
}
// Write out the header for each particle
if (gotsome and ParallelDescriptor::IOProcessor()) {
std::string HeaderFileName = LevelDir;
HeaderFileName += "/Particle_H";
std::ofstream ParticleHeader(HeaderFileName);
ParticleBoxArray(lev).writeOn(ParticleHeader);
ParticleHeader << '\n';
ParticleHeader.flush();
ParticleHeader.close();
}
MFInfo info;
info.SetAlloc(false);
MultiFab state(ParticleBoxArray(lev),
ParticleDistributionMap(lev),
1,0,info);
//
// We eventually want to write out the file name and the offset
// into that file into which each grid of particles is written.
//
Vector<int> which(state.size(),0);
Vector<int > count(state.size(),0);
Vector<long> where(state.size(),0);
std::string filePrefix(LevelDir);
filePrefix += '/';
filePrefix += ParticleType::DataPrefix();
if(usePrePost) {
filePrefixPrePost[lev] = filePrefix;
}
bool groupSets(false), setBuf(true);
if (gotsome)
{
for(NFilesIter nfi(nOutFiles, filePrefix, groupSets, setBuf); nfi.ReadyToWrite(); ++nfi)
{
std::ofstream& myStream = (std::ofstream&) nfi.Stream();
//
// Write out all the valid particles we own at the specified level.
// Do it grid block by grid block remembering the seek offset
// for the start of writing of each block of data.
//
WriteParticles(lev, myStream, nfi.FileNumber(), which, count, where, is_checkpoint);
}
if(usePrePost) {
whichPrePost[lev] = which;
countPrePost[lev] = count;
wherePrePost[lev] = where;
} else {
ParallelDescriptor::ReduceIntSum (which.dataPtr(), which.size(), IOProcNumber);
ParallelDescriptor::ReduceIntSum (count.dataPtr(), count.size(), IOProcNumber);
ParallelDescriptor::ReduceLongSum(where.dataPtr(), where.size(), IOProcNumber);
}
}
if (ParallelDescriptor::IOProcessor())
{
if(usePrePost) {
// ---- write to the header and unlink in CheckpointPost
} else {
for (int j = 0; j < state.size(); j++)
{
//
// We now write the which file, the particle count, and the
// file offset into which the data for each grid was written,
// to the header file.
//
HdrFile << which[j] << ' ' << count[j] << ' ' << where[j] << '\n';
}
if (gotsome && doUnlink)
{
BL_PROFILE_VAR("PC<NNNN>::Checkpoint:unlink", unlink);
//
// Unlink any zero-length data files.
//
Vector<long> cnt(nOutFiles,0);
for (int i = 0, N=count.size(); i < N; i++) {
cnt[which[i]] += count[i];
}
for (int i = 0, N=cnt.size(); i < N; i++)
{
if (cnt[i] == 0)
{
std::string FullFileName = NFilesIter::FileName(i, filePrefix);
amrex::UnlinkFile(FullFileName.c_str());
}
}
}
}
}
} // ---- end for(lev...)
if (ParallelDescriptor::IOProcessor())
{
HdrFile.flush();
HdrFile.close();
if ( ! HdrFile.good())
{
amrex::Abort("ParticleContainer::Checkpoint(): problem writing HdrFile");
}
}
if (m_verbose > 1)
{
Real stoptime = amrex::second() - strttime;
ParallelDescriptor::ReduceRealMax(stoptime, IOProcNumber);
amrex::Print() << "ParticleContainer::Checkpoint() time: " << stoptime << '\n';
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::CheckpointPre ()
{
if( ! usePrePost) {
return;
}
BL_PROFILE("ParticleContainer::CheckpointPre()");
const int IOProcNumber = ParallelDescriptor::IOProcessorNumber();
long nparticles = 0;
int maxnextid = ParticleType::NextID();
for (int lev = 0; lev < m_particles.size(); lev++) {
const auto& pmap = m_particles[lev];
for (const auto& kv : pmap) {
const auto& aos = kv.second.GetArrayOfStructs();
for (int k = 0; k < aos.size(); ++k) {
const ParticleType& p = aos[k];
if (p.m_idata.id > 0) {
//
// Only count (and checkpoint) valid particles.
//
nparticles++;
}
}
}
}
ParallelDescriptor::ReduceLongSum(nparticles, IOProcNumber);
ParticleType::NextID(maxnextid);
ParallelDescriptor::ReduceIntMax(maxnextid, IOProcNumber);
nparticlesPrePost = nparticles;
maxnextidPrePost = maxnextid;
nParticlesAtLevelPrePost.clear();
nParticlesAtLevelPrePost.resize(finestLevel() + 1, 0);
for(int lev(0); lev <= finestLevel(); ++lev) {
nParticlesAtLevelPrePost[lev] = NumberOfParticlesAtLevel(lev);
}
whichPrePost.clear();
whichPrePost.resize(finestLevel() + 1);
countPrePost.clear();
countPrePost.resize(finestLevel() + 1);
wherePrePost.clear();
wherePrePost.resize(finestLevel() + 1);
filePrefixPrePost.clear();
filePrefixPrePost.resize(finestLevel() + 1);
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::CheckpointPost ()
{
if( ! usePrePost) {
return;
}
BL_PROFILE("ParticleContainer::CheckpointPost()");
const int IOProcNumber = ParallelDescriptor::IOProcessorNumber();
std::ofstream HdrFile;
HdrFile.open(HdrFileNamePrePost.c_str(), std::ios::out | std::ios::app);
for(int lev(0); lev <= finestLevel(); ++lev) {
ParallelDescriptor::ReduceIntSum (whichPrePost[lev].dataPtr(), whichPrePost[lev].size(), IOProcNumber);
ParallelDescriptor::ReduceIntSum (countPrePost[lev].dataPtr(), countPrePost[lev].size(), IOProcNumber);
ParallelDescriptor::ReduceLongSum(wherePrePost[lev].dataPtr(), wherePrePost[lev].size(), IOProcNumber);
if(ParallelDescriptor::IOProcessor()) {
for(int j(0); j < whichPrePost[lev].size(); ++j) {
HdrFile << whichPrePost[lev][j] << ' ' << countPrePost[lev][j] << ' ' << wherePrePost[lev][j] << '\n';
}
const bool gotsome = (nParticlesAtLevelPrePost[lev] > 0);
if(gotsome && doUnlink) {
BL_PROFILE_VAR("PC<NNNN>::Checkpoint:unlink", unlink_post);
// Unlink any zero-length data files.
Vector<long> cnt(nOutFilesPrePost,0);
for(int i(0), N = countPrePost[lev].size(); i < N; ++i) {
cnt[whichPrePost[lev][i]] += countPrePost[lev][i];
}
for(int i(0), N = cnt.size(); i < N; ++i) {
if(cnt[i] == 0) {
std::string FullFileName = NFilesIter::FileName(i, filePrefixPrePost[lev]);
amrex::UnlinkFile(FullFileName.c_str());
}
}
}
}
}
if(ParallelDescriptor::IOProcessor()) {
HdrFile.flush();
HdrFile.close();
if( ! HdrFile.good()) {
amrex::Abort("ParticleContainer::CheckpointPost(): problem writing HdrFile");
}
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::
WritePlotFile ( const std::string& dir,
const std::string& name,
const Vector<std::string>& real_comp_names,
const Vector<std::string>& int_comp_names) const
{
BL_PROFILE("ParticleContainer::WritePlotFile()");
BL_ASSERT(OK());
bool is_checkpoint = false;
// For yt we need exactly the chk particle format so would need to set is_checkpoint = true
// Anyway, it's not too bad to have particle ids on disk,
// think of merger trees or backtracing of particles for nested ics
// is_checkpoint = true;
Checkpoint(dir,name,is_checkpoint,real_comp_names,int_comp_names);
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::WritePlotFilePre ()
{
CheckpointPre();
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::WritePlotFilePost ()
{
CheckpointPost();
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::WriteParticles (int lev,
std::ofstream& ofs,
int fnum,
Vector<int>& which,
Vector<int>& count,
Vector<long>& where,
bool is_checkpoint) const
{
BL_PROFILE("ParticleContainer::WriteParticles()");
// For a each grid, the tiles it contains
std::map<int, Vector<int> > tile_map;
for (const auto& kv : m_particles[lev])
{
const int grid = kv.first.first;
const int tile = kv.first.second;
tile_map[grid].push_back(tile);
// Only write out valid particles.
int cnt = 0;
for (int k = 0; k < kv.second.GetArrayOfStructs().size(); ++k)
{
const ParticleType& p = kv.second.GetArrayOfStructs()[k];
if (p.m_idata.id > 0) {
cnt++;
}
}
count[grid] += cnt;
}
MFInfo info;
info.SetAlloc(false);
MultiFab state(ParticleBoxArray(lev),
ParticleDistributionMap(lev),
1,0,info);
for (MFIter mfi(state); mfi.isValid(); ++mfi) {
const int grid = mfi.index();
which[grid] = fnum;
where[grid] = VisMF::FileOffset(ofs);
if (count[grid] == 0) {
continue;
}
if (is_checkpoint) {
// First write out the integer data in binary.
const int iChunkSize = 2 + NStructInt + NArrayInt;
Vector<int> istuff(count[grid]*iChunkSize);
int* iptr = istuff.dataPtr();
for (unsigned i = 0; i < tile_map[grid].size(); i++) {
const auto& pbox = m_particles[lev].at(std::make_pair(grid, tile_map[grid][i]));
for (int pindex = 0; pindex < pbox.GetArrayOfStructs().size(); ++pindex) {
const ParticleType& p = pbox.GetArrayOfStructs()[pindex];
if (p.m_idata.id > 0) {
for (int j = 0; j < 2 + NStructInt; j++) {
iptr[j] = p.m_idata.arr[j];
}
iptr += 2 + NStructInt;
const auto& soa = pbox.GetStructOfArrays();
for (int j = 0; j < NArrayInt; j++) {
iptr[j] = soa.GetIntData(j)[pindex];
}
iptr += NArrayInt;
}
}
}
writeIntData(istuff.dataPtr(), istuff.size(), ofs);
ofs.flush(); // Some systems require this flush() (probably due to a bug)
}
// Write the Real data in binary.
const int rChunkSize = AMREX_SPACEDIM + NStructReal + NArrayReal;
Vector<typename ParticleType::RealType> rstuff(count[grid]*rChunkSize);
typename ParticleType::RealType* rptr = rstuff.dataPtr();
for (unsigned i = 0; i < tile_map[grid].size(); i++) {
const auto& pbox = m_particles[lev].at(std::make_pair(grid, tile_map[grid][i]));
for (int pindex = 0; pindex < pbox.GetArrayOfStructs().size(); ++pindex) {
const ParticleType& p = pbox.GetArrayOfStructs()[pindex];
if (p.m_idata.id > 0) {
for (int j = 0; j < AMREX_SPACEDIM + NStructReal; j++) {
rptr[j] = p.m_rdata.arr[j];
}
rptr += AMREX_SPACEDIM + NStructReal;
const auto& soa = pbox.GetStructOfArrays();
for (int j = 0; j < NArrayReal; j++) {
rptr[j] = (typename ParticleType::RealType) soa.GetRealData(j)[pindex];
}
rptr += NArrayReal;
}
}
}
WriteParticleRealData(rstuff.dataPtr(), rstuff.size(), ofs, ParticleRealDescriptor);
ofs.flush(); // Some systems require this flush() (probably due to a bug)
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>
::Restart (const std::string& dir, const std::string& file, bool is_checkpoint)
{
BL_PROFILE("ParticleContainer::Restart()");
BL_ASSERT(!dir.empty());
BL_ASSERT(!file.empty());
const Real strttime = amrex::second();
int DATA_Digits_Read(5);
ParmParse pp("particles");
pp.query("datadigits_read",DATA_Digits_Read);
std::string fullname = dir;
if (!fullname.empty() && fullname[fullname.size()-1] != '/')
fullname += '/';
fullname += file;
std::string HdrFileName = fullname;
if (!HdrFileName.empty() && HdrFileName[HdrFileName.size()-1] != '/')
HdrFileName += '/';
HdrFileName += "Header";
Vector<char> fileCharPtr;
ParallelDescriptor::ReadAndBcastFile(HdrFileName, fileCharPtr);
std::string fileCharPtrString(fileCharPtr.dataPtr());
std::istringstream HdrFile(fileCharPtrString, std::istringstream::in);
std::string version;
HdrFile >> version;
BL_ASSERT(!version.empty());
// What do our version strings mean?
// "Version_One_Dot_Zero" -- hard-wired to write out in double precision.
// "Version_One_Dot_One" -- can write out either as either single or double precision.
// Appended to the latter version string are either "_single" or "_double" to
// indicate how the particles were written.
// "Version_Two_Dot_Zero" -- this is the AMReX particle file format
std::string how;
if (version.find("Version_One_Dot_Zero") != std::string::npos) {
how = "double";
}
else if (version.find("Version_One_Dot_One") != std::string::npos or
version.find("Version_Two_Dot_Zero") != std::string::npos) {
if (version.find("_single") != std::string::npos) {
how = "single";
}
else if (version.find("_double") != std::string::npos) {
how = "double";
}
else {
std::string msg("ParticleContainer::Restart(): bad version string: ");
msg += version;
amrex::Error(version.c_str());
}
}
else {
std::string msg("ParticleContainer::Restart(): unknown version string: ");
msg += version;
amrex::Abort(msg.c_str());
}
int dm;
HdrFile >> dm;
if (dm != AMREX_SPACEDIM)
amrex::Abort("ParticleContainer::Restart(): dm != AMREX_SPACEDIM");
int nr;
HdrFile >> nr;
if (nr != NStructReal + NArrayReal)
amrex::Abort("ParticleContainer::Restart(): nr != NStructReal + NArrayReal");
std::string comp_name;
for (int i = 0; i < nr; ++i)
HdrFile >> comp_name;
int ni;
HdrFile >> ni;
if (ni != NStructInt + NArrayInt)
amrex::Abort("ParticleContainer::Restart(): ni != NStructInt");
for (int i = 0; i < ni; ++i)
HdrFile >> comp_name;
bool checkpoint;
HdrFile >> checkpoint;
long nparticles;
HdrFile >> nparticles;
BL_ASSERT(nparticles >= 0);
int maxnextid;
HdrFile >> maxnextid;
BL_ASSERT(maxnextid > 0);
ParticleType::NextID(maxnextid);
int finest_level_in_file;
HdrFile >> finest_level_in_file;
BL_ASSERT(finest_level_in_file >= 0);
// Determine whether this is a dual-grid restart or not.
Vector<BoxArray> particle_box_arrays(finest_level_in_file + 1);
bool dual_grid = false;
for (int lev = 0; lev <= finest_level_in_file; lev++) {
std::string phdr_name = fullname;
phdr_name = amrex::Concatenate(phdr_name + "/Level_", lev, 1);
phdr_name += "/Particle_H";
if (not amrex::FileExists(phdr_name)) {
dual_grid = false;
break;
}
Vector<char> phdr_chars;
ParallelDescriptor::ReadAndBcastFile(phdr_name, phdr_chars);
std::string phdr_string(phdr_chars.dataPtr());
std::istringstream phdr_file(phdr_string, std::istringstream::in);
particle_box_arrays[lev].readFrom(phdr_file);
if (not particle_box_arrays[lev].CellEqual(ParticleBoxArray(lev))) dual_grid = true;
}
if (dual_grid) {
for (int lev = 0; lev <= finestLevel(); lev++) {
SetParticleBoxArray(lev, particle_box_arrays[lev]);
DistributionMapping pdm(particle_box_arrays[lev]);
SetParticleDistributionMap(lev, pdm);
}
}
Vector<int> ngrids(finest_level_in_file+1);
for (int lev = 0; lev <= finest_level_in_file; lev++) {
HdrFile >> ngrids[lev];
BL_ASSERT(ngrids[lev] > 0);
if (lev <= finestLevel()) {
BL_ASSERT(ngrids[lev] == int(ParticleBoxArray(lev).size()));
}
}
resizeData();
if (finest_level_in_file > finestLevel()) {
m_particles.resize(finest_level_in_file+1);
}
for (int lev = 0; lev <= finest_level_in_file; lev++) {
Vector<int> which(ngrids[lev]);
Vector<int> count(ngrids[lev]);
Vector<long> where(ngrids[lev]);
for (int i = 0; i < ngrids[lev]; i++) {
HdrFile >> which[i] >> count[i] >> where[i];
}
Vector<int> grids_to_read;
if (lev <= finestLevel()) {
for (MFIter mfi(*m_dummy_mf[lev]); mfi.isValid(); ++mfi) {
grids_to_read.push_back(mfi.index());
}
} else {
// we lost a level on restart. we still need to read in particles
// on finer levels, and put them in the right place via Redistribute()
const int rank = ParallelDescriptor::MyProc();
const int NReaders = ParticleType::MaxReaders();
if (rank >= NReaders) return;
const int Navg = ngrids[lev] / NReaders;
const int Nleft = ngrids[lev] - Navg * NReaders;
int lo, hi;
if (rank < Nleft) {
lo = rank*(Navg + 1);
hi = lo + Navg + 1;
}
else {
lo = rank * Navg + Nleft;
hi = lo + Navg;
}
for (int i = lo; i < hi; ++i) {
grids_to_read.push_back(i);
}
}
for(int igrid = 0; igrid < static_cast<int>(grids_to_read.size()); ++igrid) {
const int grid = grids_to_read[igrid];
if (count[grid] <= 0) continue;
// The file names in the header file are relative.
std::string name = fullname;
if (!name.empty() && name[name.size()-1] != '/')
name += '/';
name += "Level_";
name += amrex::Concatenate("", lev, 1);
name += '/';
name += ParticleType::DataPrefix();
name += amrex::Concatenate("", which[grid], DATA_Digits_Read);
std::ifstream ParticleFile;
ParticleFile.open(name.c_str(), std::ios::in);
if (!ParticleFile.good())
amrex::FileOpenFailed(name);
ParticleFile.seekg(where[grid], std::ios::beg);
if (how == "single") {
ReadParticles<float>(count[grid], grid, lev, is_checkpoint, ParticleFile);
}
else if (how == "double") {
ReadParticles<double>(count[grid], grid, lev, is_checkpoint, ParticleFile);
}
else {
std::string msg("ParticleContainer::Restart(): bad parameter: ");
msg += how;
amrex::Error(msg.c_str());
}
ParticleFile.close();
if (!ParticleFile.good())
amrex::Abort("ParticleContainer::Restart(): problem reading particles");
}
}
Redistribute();
BL_ASSERT(OK());
if (m_verbose > 1) {
Real stoptime = amrex::second() - strttime;
ParallelDescriptor::ReduceRealMax(stoptime, ParallelDescriptor::IOProcessorNumber());
amrex::Print() << "ParticleContainer::Restart() time: " << stoptime << '\n';
}
}
// Read a batch of particles from the checkpoint file
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
template <class RTYPE>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::ReadParticles (int cnt,
int grd,
int lev,
bool is_checkpoint,
std::ifstream& ifs)
{
BL_PROFILE("ParticleContainer::ReadParticles()");
BL_ASSERT(cnt > 0);
BL_ASSERT(lev < int(m_particles.size()));
// First read in the integer data in binary. We do not store
// the m_lev and m_grid data on disk. We can easily recreate
// that given the structure of the checkpoint file.
const int iChunkSize = 2 + NStructInt + NArrayInt;
Vector<int> istuff(cnt*iChunkSize);
if (is_checkpoint)
readIntData(istuff.dataPtr(), istuff.size(), ifs, FPC::NativeIntDescriptor());
// Then the real data in binary.
const int rChunkSize = AMREX_SPACEDIM + NStructReal + NArrayReal;
Vector<RTYPE> rstuff(cnt*rChunkSize);
ReadParticleRealData(rstuff.dataPtr(), rstuff.size(), ifs, ParticleRealDescriptor);
// Now reassemble the particles.
int* iptr = istuff.dataPtr();
RTYPE* rptr = rstuff.dataPtr();
// If we are restarting from a plotfile instead of a checkpoint file, then we do not
// read in the particle id's, so we need to reset the id counter to zero and renumber them
if (!is_checkpoint) {
int maxnextid = 1;
ParticleType::NextID(maxnextid);
}
ParticleType p;
ParticleLocData pld;
for (int i = 0; i < cnt; i++) {
if (is_checkpoint) {
p.m_idata.id = iptr[0];
p.m_idata.cpu = iptr[1];
}
else {
p.m_idata.id = ParticleType::NextID();
p.m_idata.cpu = ParallelDescriptor::MyProc();
}
BL_ASSERT(p.m_idata.id > 0);
for (int j = 0; j < NStructInt; j++)
p.m_idata.arr[2+j] = iptr[2+j];
iptr += 2 + NStructInt;
AMREX_D_TERM(p.m_rdata.pos[0] = rptr[0];,
p.m_rdata.pos[1] = rptr[1];,
p.m_rdata.pos[2] = rptr[2];);
for (int j = 0; j < NStructReal; j++)
p.m_rdata.arr[AMREX_SPACEDIM+j] = rptr[AMREX_SPACEDIM+j];
rptr += AMREX_SPACEDIM + NStructReal;
locateParticle(p, pld, 0, finestLevel(), 0);
auto& ptile = m_particles[lev][std::make_pair(grd, pld.m_tile)];
ptile.push_back(p);
for (int j = 0; j < NArrayReal; j++) {
ptile.push_back_real(j, rptr[j]);
}
rptr += NArrayReal;
for (int j = 0; j < NArrayInt; j++) {
ptile.push_back_int(j, iptr[j]);
}
iptr += NArrayInt;
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::WriteAsciiFile (const std::string& filename)
{
BL_PROFILE("ParticleContainer::WriteAsciiFile()");
BL_ASSERT(!filename.empty());
const Real strttime = amrex::second();
//
// Count # of valid particles.
//
long nparticles = 0;
for (int lev = 0; lev < m_particles.size(); lev++) {
auto& pmap = m_particles[lev];
for (const auto& kv : pmap) {
const auto& aos = kv.second.GetArrayOfStructs();
for (int k = 0; k < aos.size(); ++k) {
const ParticleType& p = aos[k];
if (p.m_idata.id > 0)
//
// Only count (and checkpoint) valid particles.
//
nparticles++;
}
}
}
//
// And send count to I/O processor.
//
ParallelDescriptor::ReduceLongSum(nparticles,ParallelDescriptor::IOProcessorNumber());
if (ParallelDescriptor::IOProcessor())
{
//
// Have I/O processor open file and write out particle metadata.
//
std::ofstream File;
File.open(filename.c_str(), std::ios::out|std::ios::trunc);
if (!File.good())
amrex::FileOpenFailed(filename);
File << nparticles << '\n';
File << NStructReal << '\n';
File << NStructInt << '\n';
File << NArrayReal << '\n';
File << NArrayInt << '\n';
File.flush();
File.close();
if (!File.good())
amrex::Abort("ParticleContainer::WriteAsciiFile(): problem writing file");
}
ParallelDescriptor::Barrier();
const int MyProc = ParallelDescriptor::MyProc();
for (int proc = 0; proc < ParallelDescriptor::NProcs(); proc++)
{
if (MyProc == proc)
{
//
// Each CPU opens the file for appending and adds its particles.
//
VisMF::IO_Buffer io_buffer(VisMF::IO_Buffer_Size);
std::ofstream File;
File.rdbuf()->pubsetbuf(io_buffer.dataPtr(), io_buffer.size());
File.open(filename.c_str(), std::ios::out|std::ios::app);
File.precision(15);
if (!File.good())
amrex::FileOpenFailed(filename);
for (int lev = 0; lev < m_particles.size(); lev++) {
auto& pmap = m_particles[lev];
for (const auto& kv : pmap) {
const auto& aos = kv.second.GetArrayOfStructs();
const auto& soa = kv.second.GetStructOfArrays();
for (int index = 0; index < aos.size(); ++index) {
const ParticleType* it = &aos[index];
if (it->m_idata.id > 0) {
// write out the particle struct first...
AMREX_D_TERM(File << it->m_rdata.pos[0] << ' ',
<< it->m_rdata.pos[1] << ' ',
<< it->m_rdata.pos[2] << ' ');
for (int i = AMREX_SPACEDIM; i < AMREX_SPACEDIM + NStructReal; i++)
File << it->m_rdata.arr[i] << ' ';
File << it->m_idata.id << ' ';
File << it->m_idata.cpu << ' ';
for (int i = 2; i < 2 + NStructInt; i++)
File << it->m_idata.arr[i] << ' ';
// then the particle attributes.
for (int i = 0; i < NArrayReal; i++)
File << soa.GetRealData(i)[index] << ' ';
for (int i = 0; i < NArrayInt; i++)
File << soa.GetIntData(i)[index] << ' ';
File << '\n';
}
}
}
}
File.flush();
File.close();
if (!File.good())
amrex::Abort("ParticleContainer::WriteAsciiFile(): problem writing file");
}
ParallelDescriptor::Barrier();
}
if (m_verbose > 1)
{
Real stoptime = amrex::second() - strttime;
ParallelDescriptor::ReduceRealMax(stoptime,ParallelDescriptor::IOProcessorNumber());
amrex::Print() << "ParticleContainer::WriteAsciiFile() time: " << stoptime << '\n';
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal,NStructInt,NArrayReal, NArrayInt>::WriteCoarsenedAsciiFile (const std::string& filename)
{
BL_PROFILE("ParticleContainer::WriteCoarsenedAsciiFile()");
BL_ASSERT(!filename.empty());
const Real strttime = amrex::second();
//
// Count # of valid particles.
//
long nparticles = 0;
for (int lev = 0; lev < m_particles.size(); lev++) {
auto& pmap = m_particles[lev];
for (const auto& kv : pmap) {
const auto& aos = kv.second.GetArrayOfStructs();
for (int k = 0; k < aos.size(); ++k) {
const ParticleType& p = aos[k];
if (p.m_idata.id > 0)
//
// Only count (and checkpoint) valid particles.
//
nparticles++;
}
}
}
//
// And send count to I/O processor.
//
ParallelDescriptor::ReduceLongSum(nparticles,ParallelDescriptor::IOProcessorNumber());
if (ParallelDescriptor::IOProcessor())
{
//
// Have I/O processor open file and write out particle count.
//
std::ofstream File;
File.open(filename.c_str(), std::ios::out|std::ios::trunc);
if (!File.good())
amrex::FileOpenFailed(filename);
File << nparticles << '\n';
File.flush();
File.close();
if (!File.good())
amrex::Abort("ParticleContainer::WriteCoarsenedAsciiFile(): problem writing file");
}
ParallelDescriptor::Barrier();
const int MyProc = ParallelDescriptor::MyProc();
for (int proc = 0; proc < ParallelDescriptor::NProcs(); proc++)
{
if (MyProc == proc)
{
//
// Each CPU opens the file for appending and adds its particles.
//
VisMF::IO_Buffer io_buffer(VisMF::IO_Buffer_Size);
std::ofstream File;
File.rdbuf()->pubsetbuf(io_buffer.dataPtr(), io_buffer.size());
File.open(filename.c_str(), std::ios::out|std::ios::app);
File.precision(15);
if (!File.good())
amrex::FileOpenFailed(filename);
for (int lev = 0; lev < m_particles.size(); lev++) {
auto& pmap = m_particles[lev];
for (auto& kv : pmap) {
auto& aos = kv.second.GetArrayOfStructs();
auto& soa = kv.second.GetStructOfArrays();
int index = 0;
ParticleLocData pld;
for (int k = 0; k < aos.size(); ++k) {
ParticleType* it = &aos[k];
locateParticle(*it, pld, 0, finestLevel(), 0);
// Only keep particles in even cells
if (it->id() > 0 &&
(pld.m_cell[0])%2 == 0 && (pld.m_cell[1])%2 == 0 && (pld.m_cell[2])%2 == 0)
{
// Only keep particles in even cells
if (it->m_idata.id > 0) {
File << it->m_idata.id << ' ';
File << it->m_idata.cpu << ' ';
AMREX_D_TERM(File << it->m_rdata.pos[0] << ' ',
<< it->m_rdata.pos[1] << ' ',
<< it->m_rdata.pos[2] << ' ');
for (int i = 0; i < NArrayReal; i++) {
File << soa.GetRealData(i)[index] << ' ';
}
index++;
for (int i = AMREX_SPACEDIM; i < AMREX_SPACEDIM + NStructReal; i++) {
char ws = (i == AMREX_SPACEDIM + NStructReal - 1) ? '\n' : ' ';
if (i == AMREX_SPACEDIM) {
// Multiply mass by 8 since we are only taking 1/8 of the
// total particles and want to keep the mass in the domain the same.
File << 8.0* it->m_rdata.arr[i] << ws;
}
else {
File << it->m_rdata.arr[i] << ws;
}
}
}
}
}
}
}
File.flush();
File.close();
if (!File.good())
amrex::Abort("ParticleContainer::WriteCoarsenedAsciiFile(): problem writing file");
}
ParallelDescriptor::Barrier();
}
if (m_verbose > 1)
{
Real stoptime = amrex::second() - strttime;
ParallelDescriptor::ReduceRealMax(stoptime,ParallelDescriptor::IOProcessorNumber());
amrex::Print() << "ParticleContainer::WriteCoarsenedAsciiFile() time: " << stoptime << '\n';
}
}
// This is the single-level version for cell-centered density
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::
AssignCellDensitySingleLevel (int rho_index,
MultiFab& mf_to_be_filled,
int lev,
int ncomp,
int particle_lvl_offset) const
{
BL_PROFILE("ParticleContainer::AssignCellDensitySingleLevel()");
if (rho_index != 0) amrex::Abort("AssignCellDensitySingleLevel only works if rho_index = 0");
MultiFab* mf_pointer;
if (OnSameGrids(lev, mf_to_be_filled)) {
// If we are already working with the internal mf defined on the
// particle_box_array, then we just work with this.
mf_pointer = &mf_to_be_filled;
}
else {
// If mf_to_be_filled is not defined on the particle_box_array, then we need
// to make a temporary here and copy into mf_to_be_filled at the end.
mf_pointer = new MultiFab(ParticleBoxArray(lev),
ParticleDistributionMap(lev),
ncomp, mf_to_be_filled.nGrow());
}
// We must have ghost cells for each FAB so that a particle in one grid can spread
// its effect to an adjacent grid by first putting the value into ghost cells of its
// own grid. The mf->sumBoundary call then adds the value from one grid's ghost cell
// to another grid's valid region.
if (mf_pointer->nGrow() < 1)
amrex::Error("Must have at least one ghost cell when in AssignCellDensitySingleLevel");
#ifdef _OPENMP
const int ng = mf_pointer->nGrow();
#endif
const Real strttime = amrex::second();
const Geometry& gm = Geom(lev);
const Real* plo = gm.ProbLo();
const Real* dx_particle = Geom(lev + particle_lvl_offset).CellSize();
const Real* dx = gm.CellSize();
if (gm.isAnyPeriodic() && ! gm.isAllPeriodic()) {
amrex::Error("AssignCellDensitySingleLevel: problem must be periodic in no or all directions");
}
for (MFIter mfi(*mf_pointer); mfi.isValid(); ++mfi) {
(*mf_pointer)[mfi].setVal(0);
}
using ParConstIter = ParConstIter<NStructReal, NStructInt, NArrayReal, NArrayInt>;
#ifdef _OPENMP
#pragma omp parallel
#endif
{
FArrayBox local_rho;
for (ParConstIter pti(*this, lev); pti.isValid(); ++pti) {
const auto& particles = pti.GetArrayOfStructs();
int nstride = particles.dataShape().first;
const long np = pti.numParticles();
FArrayBox& fab = (*mf_pointer)[pti];
Real* data_ptr;
const int *lo, *hi;
#ifdef _OPENMP
Box tile_box = pti.tilebox();
tile_box.grow(ng);
local_rho.resize(tile_box,ncomp);
local_rho = 0.0;
data_ptr = local_rho.dataPtr();
lo = tile_box.loVect();
hi = tile_box.hiVect();
#else
const Box& box = fab.box();
data_ptr = fab.dataPtr();
lo = box.loVect();
hi = box.hiVect();
#endif
if (dx == dx_particle) {
amrex_deposit_cic(particles.data(), nstride, np, ncomp,
data_ptr, lo, hi, plo, dx);
} else {
amrex_deposit_particle_dx_cic(particles.data(), nstride, np, ncomp,
data_ptr, lo, hi, plo, dx, dx_particle);
}
#ifdef _OPENMP
amrex_atomic_accumulate_fab(BL_TO_FORTRAN_3D(local_rho),
BL_TO_FORTRAN_3D(fab), ncomp);
#endif
}
}
mf_pointer->SumBoundary(gm.periodicity());
// If ncomp > 1, first divide the momenta (component n)
// by the mass (component 0) in order to get velocities.
// Be careful not to divide by zero.
for (int n = 1; n < ncomp; n++){
for (MFIter mfi(*mf_pointer); mfi.isValid(); ++mfi) {
(*mf_pointer)[mfi].protected_divide((*mf_pointer)[mfi],0,n,1);
}
}
// Only multiply the first component by (1/vol) because this converts mass
// to density. If there are additional components (like velocity), we don't
// want to divide those by volume.
const Real vol = AMREX_D_TERM(dx[0], *dx[1], *dx[2]);
mf_pointer->mult(1.0/vol, 0, 1, mf_pointer->nGrow());
// If mf_to_be_filled is not defined on the particle_box_array, then we need
// to copy here from mf_pointer into mf_to_be_filled. I believe that we don't
// need any information in ghost cells so we don't copy those.
if (mf_pointer != &mf_to_be_filled) {
mf_to_be_filled.copy(*mf_pointer,0,0,ncomp);
delete mf_pointer;
}
if (m_verbose > 1) {
Real stoptime = amrex::second() - strttime;
ParallelDescriptor::ReduceRealMax(stoptime,ParallelDescriptor::IOProcessorNumber());
amrex::Print() << "ParticleContainer::AssignCellDensitySingleLevel) time: " << stoptime << '\n';
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::Interpolate (Vector<std::unique_ptr<MultiFab> >& mesh_data,
int lev_min, int lev_max)
{
BL_PROFILE("ParticleContainer::Interpolate()");
for (int lev = lev_min; lev <= lev_max; ++lev) {
InterpolateSingleLevel(*mesh_data[lev], lev);
}
}
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::
InterpolateSingleLevel (MultiFab& mesh_data, int lev)
{
BL_PROFILE("ParticleContainer::InterpolateSingleLevel()");
if (mesh_data.nGrow() < 1)
amrex::Error("Must have at least one ghost cell when in InterpolateSingleLevel");
const Geometry& gm = Geom(lev);
const Real* plo = gm.ProbLo();
const Real* dx = gm.CellSize();
using ParIter = ParIter<NStructReal, NStructInt, NArrayReal, NArrayInt>;
#ifdef _OPENMP
#pragma omp parallel
#endif
for (ParIter pti(*this, lev); pti.isValid(); ++pti) {
auto& particles = pti.GetArrayOfStructs();
FArrayBox& fab = mesh_data[pti];
const Box& box = fab.box();
const long N = particles.size();
int nstride = particles.dataShape().first;
int nComp = fab.nComp();
amrex_interpolate_cic(particles.data(), nstride, N,
fab.dataPtr(), box.loVect(), box.hiVect(), nComp, plo, dx);
}
}
//
// This version takes as input the acceleration vector at cell centers, and has the option of
// returning the acceleration at the particle location in the data array, starting at
// component start_comp_for_accel
//
template <int NStructReal, int NStructInt, int NArrayReal, int NArrayInt>
void
ParticleContainer<NStructReal, NStructInt, NArrayReal, NArrayInt>::moveKick (MultiFab& acceleration,
int lev,
Real dt,
Real a_new,
Real a_half,
int start_comp_for_accel)
{
BL_PROFILE("ParticleContainer::moveKick()");
BL_ASSERT(NStructReal >= AMREX_SPACEDIM+1);
BL_ASSERT(lev >= 0 && lev < int(m_particles.size()));
const Real strttime = amrex::second();
const Real half_dt = Real(0.5) * dt;
const Real a_new_inv = 1 / a_new;
auto& pmap = m_particles[lev];
MultiFab* ac_pointer;
if (OnSameGrids(lev,acceleration))
{
ac_pointer = &acceleration;
}
else
{
ac_pointer = new MultiFab(ParticleBoxArray(lev),
ParticleDistributionMap(lev),
acceleration.nComp(),acceleration.nGrow());
for (MFIter mfi(*ac_pointer); mfi.isValid(); ++mfi)
ac_pointer->setVal(0.);
ac_pointer->copy(acceleration,0,0,acceleration.nComp());
ac_pointer->FillBoundary(); // DO WE NEED GHOST CELLS FILLED ???
}
for (auto& kv : pmap) {
auto& pbox = kv.second.GetArrayOfStructs();
const int grid = kv.first.first;
const int n = pbox.size();
const FArrayBox& gfab = (*ac_pointer)[grid];
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (int i = 0; i < n; i++)
{
ParticleType& p = pbox[i];
if (p.m_idata.id > 0)
{
//
// Note: rdata.arr[AMREX_SPACEDIM] is mass, AMREX_SPACEDIM+1 is v_x, ...
//
Real grav[AMREX_SPACEDIM];
ParticleType::GetGravity(gfab, m_gdb->Geom(lev), p, grav);
//
// Define (a u)^new = (a u)^half + dt/2 grav^new
//
AMREX_D_TERM(p.m_rdata.arr[AMREX_SPACEDIM+1] *= a_half;,
p.m_rdata.arr[AMREX_SPACEDIM+2] *= a_half;,
p.m_rdata.arr[AMREX_SPACEDIM+3] *= a_half;);
AMREX_D_TERM(p.m_rdata.arr[AMREX_SPACEDIM+1] += half_dt * grav[0];,
p.m_rdata.arr[AMREX_SPACEDIM+2] += half_dt * grav[1];,
p.m_rdata.arr[AMREX_SPACEDIM+3] += half_dt * grav[2];);
AMREX_D_TERM(p.m_rdata.arr[AMREX_SPACEDIM+1] *= a_new_inv;,
p.m_rdata.arr[AMREX_SPACEDIM+2] *= a_new_inv;,
p.m_rdata.arr[AMREX_SPACEDIM+3] *= a_new_inv;);
if (start_comp_for_accel > AMREX_SPACEDIM)
{
AMREX_D_TERM(p.m_rdata.arr[AMREX_SPACEDIM + start_comp_for_accel ] = grav[0];,
p.m_rdata.arr[AMREX_SPACEDIM + start_comp_for_accel+1] = grav[1];,
p.m_rdata.arr[AMREX_SPACEDIM + start_comp_for_accel+2] = grav[2];);
}
}
}
}
if (ac_pointer != &acceleration) delete ac_pointer;
if (m_verbose > 1)
{
Real stoptime = amrex::second() - strttime;
ParallelDescriptor::ReduceRealMax(stoptime,ParallelDescriptor::IOProcessorNumber());
amrex::Print() << "ParticleContainer::moveKick() time: " << stoptime << '\n';
}
}
|
9c55ac917ca6f855fc94efd3dd3c1acc747746dd | 22ee7658700691218e586d90837d491e2c64a89d | /src/fcst/include/microscale/agglomerate_ionomer_analytical.h | 770b5403785c85c14d773a14fb7f45679301e44a | [
"MIT",
"DOC"
] | permissive | Aslan-Kosakian/OpenFCSTv03 | 1099cf8468aa868d788dff334596448fe0449076 | 00a721a58341b287b52cec36bfaff741fd3a7ee3 | refs/heads/master | 2021-01-12T09:37:33.261888 | 2017-01-16T17:05:49 | 2017-01-16T17:05:49 | 76,203,415 | 0 | 0 | null | 2016-12-11T22:15:03 | 2016-12-11T22:15:03 | null | UTF-8 | C++ | false | false | 8,179 | h | agglomerate_ionomer_analytical.h | // ----------------------------------------------------------------------------
//
// FCST: Fuel Cell Simulation Toolbox
//
// Copyright (C) 2006-2013 by Energy Systems Design Laboratory, University of Alberta
//
// This software is distributed under the MIT License
// For more information, see the README file in /doc/LICENSE
//
// - Class: agglomerate_ionomer_analytical.h
// - Description: Used to solve a system of equations representing a spherical ionomer-filled agglomerate.
// - Developers: Peter Dobson <pdobson@ualberta.ca>
// Marc Secanell Gallart, University of Alberta
// - $Id: agglomerate_ionomer_analytical.h 2605 2014-08-15 03:36:44Z secanell $
//
// ----------------------------------------------------------------------------
#ifndef FUEL_CELL__IONOMER_AGGLOMERATE_ANALYTICAL__H
#define FUEL_CELL__IONOMER_AGGLOMERATE_ANALYTICAL__H
//------------------------------
// FUEL CELL DECLARATIONS
//-----------------------------
#include <microscale/agglomerate_base.h>
#include <reactions/tafel_kinetics.h>
#include <application_core/fcst_variables.h>
#include <reactions/dual_path_kinetics.h>
#include <materials/catalyst_base.h>
namespace FuelCellShop
{
namespace MicroScale
{
/**
* \brief Class that gives the analytical solution to an ionomer-filled agglomerate problem in 1D
*
* This class implements the analytical ionomer-filled agglomerate first proposed in:
* - M. Moore, P. Wardlaw, P. Dobson, R. Spiteri, J. B and M. Secanell, "", Journal of the Electrochemical Society
*
* <h3> Theory </h3>
* The volumetric current density is
*
* \f[
* \nabla \cdot \vec{i} = \frac{1}{1-\epsilon_V} 4F \bar{V}_{agg} \frac{P_{O_2}}{H_{O_2,N}}\left[\frac{1}{E_r k_c} + \frac{\delta_{agg}r_{agg}^2}{3\left(r_{agg}+\delta_{agg}\right)D_{O_2,N}}\right]^{-1}
* \f]
*
* The effectiveness factor is obtained from the analytical solution of the oxygen transport equation on the agglomerate domain,
* \f[
* E_r = \frac{1}{\phi_L}\left( \frac{1}{\tanh(3\phi_L)} - \frac{1}{3\phi_L} \right)
* \f]
* where \f$ \phi_L \f$ is Thieles modulus, which characterizes the reaction-transport process for a given geometry.
* For a sphere, the characteristic length is \f$ \frac{r_{agg}}{3} \f$, so Thiele's modulus becomes
* \f[
* \phi_L = \frac{r_{agg}}{3} \sqrt{\frac{k_c}{D^{eff}_{O_2}}}
* \f]
*
* The term \f$ \left(1-\varepsilon_V\right)\bar{V}_{agg} \f$ is an active area scaling factor.
* Typically, the active area for an electrode is given as the area per volume of catalyst layer.
* Since in the agglomerate model the platinum is only found in the core of the agglomerate, the active area
* has to be adjusted accordingly. Dividing by \f$ \left(1-\varepsilon_V\right) \f$, where \f$ \epsilon_V \f$ is
* the porosity of the electrode, gives the active area of Pt (\f$ cm^2_{Pt} \f$) per volume of agglomerate (\f$ cm^3_{agg} \f$).
* Then, dividing by \f$ \bar{V}_{agg} \f$ gives the active area of Pt (\f$ cm^2_{Pt} \f$) per volume of agglomerate core
* (\f$ cm^3_{agg, core} \f$). The variable $\bar{V}_{agg}$ is defined as
* \f[
* \bar{V}_{agg} = \frac{V_{agg}}{V_{tot}} = \frac{\frac{4\pi r_{agg}^3}{3}}{\frac{4\pi \left(r_{agg}+\delta_{agg}\right)^3}{3}} = \dfrac{r_{agg}^3}{\left(r_{agg}+\delta_{agg}\right)^3}
* \f]
* is a scaling factor determined as the ratio of the volume of the agglomerate core to the volume of the entire agglomerate.
*
* \author P. Dobson, P. Wardlaw and M. Secanell 2009-13
*
*/
class IonomerAgglomerateAnalytical : public AgglomerateBase
{
public:
static const std::string concrete_name;
/*
* Set the composition and structure of the agglomerate
*/
/**
* Main function of the class used to compute the current over the whole agglomerate
* at the local operating conditions
*/
virtual SolutionMap compute_current ( );
/**
* Function to compute the derivative of the current density at the local operating conditions;
*/
virtual std::vector<double> compute_derivative_current ();
/**
* Return name of class instance, i.e. concrete name.
*/
virtual std::string get_name(){
return concrete_name;
}
/**
* Returns extra contribution to volume of layer
*/
virtual double aux_volume_fraction(){
return 0;
}
protected:
/*
* Virtual function for returning film thickness in nano meters.
*
*/
virtual double get_film_thickness(){
return delta_agg*1e7;
}
/*
* Virtual function for returning agglomerate radius in nano meters.
*
*/
virtual double get_radius(){
return r_agg*1e7;
}
/*
* Set the composition and structure of the agglomerate
*/
virtual void set_structure ();
//name Instance Delivery (Prototype)
static IonomerAgglomerateAnalytical const* PROTOTYPE;
/**
* This member function is used to create an object of MicroScaleBase
*/
virtual boost::shared_ptr<FuelCellShop::MicroScale::MicroScaleBase> create_replica ()
{
return boost::shared_ptr<FuelCellShop::MicroScale::MicroScaleBase> (new FuelCellShop::MicroScale::IonomerAgglomerateAnalytical ());
}
/** Constructors */
IonomerAgglomerateAnalytical ();
IonomerAgglomerateAnalytical(std::string concrete_name);
/*
* Protected virtual member function for declaring parameters, pure
* in MicroScaleBase, implemented here in IonomerAgglomerateAnalytical.
* Calls parent AgglomerateBase
*/
virtual void declare_parameters (ParameterHandler ¶m) const
{
AgglomerateBase::declare_parameters(param);
param.enter_subsection(concrete_name);{
//No parameters at the moment
}
param.leave_subsection();
}
/*
* Protected virtual member function for initializing parameters, pure
* in MicroScaleBase, implemented here in IonomerAgglomerateAnalytical.
* Calls parent AgglomerateBase
*/
virtual void initialize (ParameterHandler ¶m)
{
AgglomerateBase::initialize(param);
param.enter_subsection(concrete_name);{
//No parameters at the moment
}
param.leave_subsection();
}
private:
/** Function to compute the effectiveness of the agglomerate core */
double compute_Er (const double k_c, const double D);
/** Function to compute the derivative of the effectiveness of the agglomerate core */
double compute_dEr (const double k_c,const double dk_c, const double D);
/* Private member function to check kinetics are appropriate for analytical formulation.
* Throws exception in event of inappropriate kinetic conditions.
*/
void check_kinetics();
/*bool to monitor if we have checked kinetic conditions */
bool checked_kinetics;
};// class IonomerAgglomerate2
} // namespace Layer
} // namespace FuelCellShop
#endif
|
a7c3bd313de85cc41c1b58b424f87be63a57c0ed | 381767591b2a9532ad929bf08371c0fa96a23f28 | /UVa/uva_11462_v2.cpp | 03f04b5d418e5ec52b1889720213edeb378928c8 | [] | no_license | nurakib/OJ-Problems-Solutions | 6f846f89c94b57e0a5c2dca10f1d8539d4a7c7dd | f7295f94b3c0f7c3b6e46fdb103dd8e70f486308 | refs/heads/master | 2020-04-15T14:31:23.909408 | 2018-12-19T20:48:54 | 2018-12-19T20:48:54 | 48,622,180 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 661 | cpp | uva_11462_v2.cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
int n;
while(scanf("%d", &n) == 1 && n){
int tmp;
priority_queue< int, vector<int>, greater<int> > num;
while(n--){
scanf("%d", &tmp);
num.push(tmp);
}
int i = 0;
while(!num.empty()){
if(i == 0){
tmp = num.top();
num.pop();
printf("%d", tmp);
i = 1;
}
else{
tmp = num.top();
num.pop();
printf(" %d", tmp);
}
}
printf("\n");
}
return 0;
}
|
491c09927a24cd800663cae92c2e0ffff132ea9a | 3322725784b46a45eebc17d7beb726d33a7c8d35 | /chapter06/chpater06/program06_38.cpp | df99f57a228cfc225ac80cb3615055b41e1d406f | [] | no_license | ScottYijun/CppPrimerV5 | 41632de13b088bcbd68b5f3c15be1ec640b8705e | d86a04f02ae9e61bbd44f878dc85a96480aba251 | refs/heads/master | 2021-06-23T10:47:23.271665 | 2020-11-22T12:01:08 | 2020-11-22T12:01:08 | 151,928,242 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 682 | cpp | program06_38.cpp | //
// program06_38.cpp
// chpater06
//
// Created by chenyijun on 17/3/01.
// Copyright (c) 2017年 chenyijun. All rights reserved.
//
#include <iostream>
#include <string.h>
using namespace std;
int odd[] = {1, 3, 5, 7, 9};
int even[] = {0, 2, 4, 6, 8};
//返回一个引用,该引用所引的对象是一个含有5个整数的数组
decltype(odd) &arrPtr(int i)
{
return (i % 2) ? odd : even;
}
int main()
{
for(auto od: odd)
cout << "odd=====" << od << endl;
int *a = arrPtr(1);
for(int i = 0; i < 5; ++i)
a[i] = i * 3;
for(int j = 0; j < 5; ++j)
cout << "a[" << j << "] = " << a[j] << endl;
return 0;
}
|
f1e3a5ccee5a71c38c02113e4beb4b39ca78a0ee | ee3bafe5d1d2a6c29019a26c628d457ab13bd505 | /OpenGLSandbox/src/Shader.h | 1391918466a3a1bb3b939a7b7e267cc7a2066f24 | [] | no_license | josh-teichro/opengl-sandbox | 53420126f98a06f6d74b68a9e34511e007d23455 | e45dc1e44ced14090b1f71f7992cf82f00c46552 | refs/heads/master | 2023-06-18T22:16:17.886098 | 2021-07-20T23:42:15 | 2021-07-20T23:42:15 | 384,573,451 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,113 | h | Shader.h | #pragma once
#include <unordered_map>
#include <string>
#include "glm/glm.hpp"
/**
* Stores the source code for a shader after being parsed (see Shader::ParseShader).
*/
struct ShaderProgramSource
{
std::string vertexSource;
std::string fragmentSource;
};
/**
* OpenGL Shader API.
*
* Parses a single shader file into a vertex and fragment shader and passes them on
* to OpenGL, as well as provides an API.
*/
class Shader
{
public:
Shader(const std::string& filepath);
~Shader();
void Bind() const ;
void Unbind() const;
void SetUniform1i(const std::string& name, int v);
void SetUniform1f(const std::string& name, float v);
void SetUniform4f(const std::string& name, float v1, float v2, float v3, float v4);
void SetUniformMat4f(const std::string& name, const glm::mat4& matrix);
int GetUniformLocation(const std::string& name);
private:
struct ShaderProgramSource ParseShader(const std::string& filepath);
int CompileShader(unsigned int type, const std::string& source);
unsigned int m_id;
std::string m_filepath;
std::unordered_map<std::string, int> m_uniformLocationCache;
};
|
c2418a76db8510fef1544c44aafc047d2db47a16 | 17595a20fda8aa1089fec1f0337c7401d0e21940 | /cameraconfigdlg.h | d7c8c2bc796550c0cb76ca97093b60aee20365bb | [] | no_license | JungwooYoo/LLPR_EX_Hipass_New | c18bcef2236bf88bd3c9a31305c6d4e1f0eb6f1f | 6e30f9df9d43a5355b02febf727ef00844b08da2 | refs/heads/master | 2023-06-16T03:20:10.523389 | 2021-07-07T00:26:13 | 2021-07-07T00:26:24 | 383,397,988 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 920 | h | cameraconfigdlg.h | #ifndef CAMERACONFIGDLG_H
#define CAMERACONFIGDLG_H
#include <QDialog>
#include <QButtonGroup>
#include "spinview.h"
#include "config.h"
#include "autoiris.h"
namespace Ui {
class CameraConfigDlg;
}
class CameraConfigDlg : public QDialog
{
Q_OBJECT
public:
explicit CameraConfigDlg(int channel,spinview *pcam, config *pcfg,QWidget *parent = 0);
~CameraConfigDlg();
void showEvent(QShowEvent *e);
private slots:
void on_btnShutter_clicked();
void on_btnGain_clicked();
void on_btnWhiteBalanceRed_clicked();
void on_btnWhiteBalanceBlue_clicked();
void on_btnStrobe_clicked();
void on_btnSave_clicked();
void on_btnGetsetting_clicked();
void on_btnCamStart_clicked();
void on_btnCamStop_clicked();
private:
Ui::CameraConfigDlg *ui;
int m_channel;
spinview *camera;
config *cfg;
QButtonGroup *gstrobepolarity;
};
#endif // CAMERACONFIGDLG_H
|
43db66d390e97013cfc80952f6f84f2f0fa4ee7a | 4a86874d3e740b4cd22a8bc6d439f7aba9bd52c0 | /861.翻转图像.cpp | 0f82ca91570956c1d0c58bbea60fbc13969ab701 | [] | no_license | Jassy930/leetcode_main | 4563f9634692d0b09a638114f59f6836edaa73f6 | a2e4e05f2b220702dc874718e34150d1066f6ac1 | refs/heads/master | 2020-04-28T15:35:49.448682 | 2019-09-16T03:49:23 | 2019-09-16T03:49:23 | 175,380,591 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,804 | cpp | 861.翻转图像.cpp | /*
* @lc app=leetcode.cn id=861 lang=cpp
*
* [861] 翻转图像
*
* https://leetcode-cn.com/problems/score-after-flipping-matrix/description/
*
* algorithms
* Medium (67.95%)
* Total Accepted: 1.4K
* Total Submissions: 2.1K
* Testcase Example: '[[0,0,1,1],[1,0,1,0],[1,1,0,0]]'
*
* 有一个二维矩阵 A 其中每个元素的值为 0 或 1 。
*
* 移动是指选择任一行或列,并转换该行或列中的每一个值:将所有 0 都更改为 1,将所有 1 都更改为 0。
*
* 在做出任意次数的移动后,将该矩阵的每一行都按照二进制数来解释,矩阵的得分就是这些数字的总和。
*
* 返回尽可能高的分数。
*
*
*
*
*
*
* 示例:
*
* 输入:[[0,0,1,1],[1,0,1,0],[1,1,0,0]]
* 输出:39
* 解释:
* 转换为 [[1,1,1,1],[1,0,0,1],[1,1,1,1]]
* 0b1111 + 0b1001 + 0b1111 = 15 + 9 + 15 = 39
*
*
*
* 提示:
*
*
* 1 <= A.length <= 20
* 1 <= A[0].length <= 20
* A[i][j] 是 0 或 1
*
*
*/
class Solution
{
public:
int matrixScore(vector<vector<int>> &A)
{
int out = 0;
int m = A.at(0).size() - 1;
for (int i = 0; i < A.size(); i++)
{
if (A.at(i).at(0) == 0)
{
for (int k = 0; k < A.at(0).size(); k++)
{
A.at(i).at(k) = 1 - A.at(i).at(k);
}
}
}
out += (1 << m) * A.size();
m--;
for (int k = 1; k < A.at(0).size(); k++)
{
int c = 0;
for (int i = 0; i < A.size(); i++)
{
c += A.at(i).at(k);
}
c = max(c, (int)A.size() - c);
out += (1 << m) * c;
m--;
}
return out;
}
};
|
fe2a411cf8ea1ed9fe848de728712abca485d2db | 52cfb98b672a8325a9168c43ab695c3d5aa22288 | /LearningCPP/tester.cpp | f57ad6a50c13da582d0a4abfb2faabfd32cfa7ac | [] | no_license | AdamPettinger/LearningCPP | 468d304b96972da07d30cd3da32869e7b8d60602 | dc0007df34f9e337f6de9b4edb2c430adf8cea0c | refs/heads/master | 2021-01-15T16:41:29.292139 | 2017-08-08T16:49:12 | 2017-08-08T16:49:12 | 99,715,653 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 144 | cpp | tester.cpp | //
// tester.cpp
// LearningCPP
//
// Created by Adam on 6/21/17.
// Copyright © 2017 Adam. All rights reserved.
//
#include "tester.hpp"
|
4487061b82c92a19f652644be365ee31862a2b52 | e4f6c3cf0871221f45db6d4b1de8aa94c282c9bb | /Console-Snake-Game/Console-Snake-Game.cpp | fedf8cfc1f190338d0e0e1b59a8ba1226a8c7e1c | [] | no_license | ashuvssut/Console-Snake-Game | ed63b9a65d0cc744b4075c6ad47750f73580eeed | 84cd297776bf6da45a43f16aa7367246a5711a67 | refs/heads/master | 2022-12-15T19:09:46.368888 | 2020-09-07T07:09:25 | 2020-09-07T07:09:25 | 264,318,891 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,662 | cpp | Console-Snake-Game.cpp | #include<iostream>
#include<vector>
#include<conio.h>
#include<Windows.h>
using namespace std;
bool gameOver, resume=true;
int score;
enum direction { STOP = 0, UP, LEFT, DOWN, RIGHT };
direction dir;
int h, w, x, y, fx, fy, tail=0;
vector<pair<int, int>> tacor;
void setup() {
dir = STOP;
tacor.clear();
gameOver = false;
tail = 1;
score = 0;
h = 20; w = 20;
x = w/2; y = h/2;
fx = rand() % w;
fy = rand() % h;
}
void draw(){
system("cls");
cout << "-----------VEGETARIAN SNAKE GAME-----------"<<endl<<endl<<"Feed the Snake some fruits!"<<endl<<"Press P to pause. Press direction keys for movements." << endl<< "-------a small project by @ashuvssut-------"<<endl;
for (int j = -1; j < h + 1; j++) {
for (int i = -1; i < w + 1; i++) {
if (i == -1 || i == h || j == -1 || j == w){
cout << "# ";
}
else if (i == x && j == y) { cout << "O "; }
else if (i == fx && j == fy) { cout << "F "; }
else {
if (!(find(tacor.begin(), tacor.end(), make_pair(i, j)) == tacor.end())) {
cout << "o ";
}
else cout << " ";
}
}
cout << endl;
}
cout << "SCORE:" << score << endl;
}
void input() {
if (_kbhit()) {
switch (_getch()) {
case 'p':resume = false; break;
case 72: if (dir == DOWN) { break; } else { dir = UP; break; }
case 80: if (dir == UP) { break; } else { dir = DOWN; break; }
case 75: if (dir == RIGHT) { break; } else{ dir = LEFT; break;}
case 77: if (dir == LEFT) { break; } else { dir = RIGHT; break;}
case 'c': dir = STOP; break;
case 'x': gameOver = true; break;
}
}
}
void logic() {
if (x == fx && y == fy) {
tail++;
score += 10;
fx = rand() % w;
fy = rand() % h;
}
if (tail > 0) {
tacor.insert(tacor.begin(), make_pair(x, y));
if (tacor.size() > tail) { tacor.pop_back(); }
}
switch (dir) {
case UP: y--; break;
case LEFT: x--; break;
case DOWN: y++; break;
case RIGHT: x++; break;
case STOP: tail = 1; goto exePt;
}
if (!(find(tacor.begin(), tacor.end(), make_pair(x, y)) == tacor.end())) {
gameOver = true;
}
if (x<0 || x>w - 1 || y<0 || y>h - 1) {
gameOver = true;
}
exePt:{}
}
int main() {
start:
setup();
while (!gameOver) {
if (resume) {
draw();
input();
logic();
//Sleep(10);
}
else {
_getch();
resume = true;
}
}
if (gameOver) {
cout << R"(GAME OVER)" <<endl<<"Press A or ` to Play again or else press X or / key to terminate console."<<endl;
cout << "KEEP CAPSLOCK OFF" << endl;
askKey:
switch (_getch()) {
case '`': gameOver = false; goto start;
case 'a': gameOver = false; goto start;
case '/': break;
case 'x': break;
default: goto askKey;
}
}
return 0;
} |
0ccf61e50da9c502a18a1edf1e7f441712819b57 | 2f2b80d82461e05a0fc8a209c3a7839de54835cd | /include/clang/Analysis/Support/BlkExprDeclBitVector.h | a592be815419e8ab0b1e393e83acb973000800cf | [
"NCSA"
] | permissive | bratsche/clang | e6ac7531a4ad777402e556c5d2ac043234520e07 | 77c7d34ab7344a7cb55595cdbc38bc9febe6b11f | refs/heads/master | 2021-01-06T20:42:55.564949 | 2009-04-16T06:32:38 | 2009-04-16T06:32:38 | 179,509 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,836 | h | BlkExprDeclBitVector.h | // BlkExprDeclBitVector.h - Dataflow types for Bitvector Analysis --*- C++ --*--
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file provides definition of dataflow types used by analyses such
// as LiveVariables and UninitializedValues. The underlying dataflow values
// are implemented as bitvectors, but the definitions in this file include
// the necessary boilerplate to use with our dataflow framework.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_STMTDECLBVDVAL_H
#define LLVM_CLANG_STMTDECLBVDVAL_H
#include "clang/AST/CFG.h"
#include "clang/AST/Decl.h" // for Decl* -> NamedDecl* conversion
#include "llvm/ADT/BitVector.h"
#include "llvm/ADT/DenseMap.h"
namespace clang {
class Stmt;
class ASTContext;
struct DeclBitVector_Types {
class Idx {
unsigned I;
public:
explicit Idx(unsigned i) : I(i) {}
Idx() : I(~0U) {}
bool isValid() const {
return I != ~0U;
}
operator unsigned() const {
assert (isValid());
return I;
}
};
//===--------------------------------------------------------------------===//
// AnalysisDataTy - Whole-function meta data.
//===--------------------------------------------------------------------===//
class AnalysisDataTy {
public:
typedef llvm::DenseMap<const NamedDecl*, unsigned > DMapTy;
typedef DMapTy::const_iterator decl_iterator;
protected:
DMapTy DMap;
unsigned NDecls;
public:
AnalysisDataTy() : NDecls(0) {}
virtual ~AnalysisDataTy() {}
bool isTracked(const NamedDecl* SD) { return DMap.find(SD) != DMap.end(); }
Idx getIdx(const NamedDecl* SD) const {
DMapTy::const_iterator I = DMap.find(SD);
return I == DMap.end() ? Idx() : Idx(I->second);
}
unsigned getNumDecls() const { return NDecls; }
void Register(const NamedDecl* SD) {
if (!isTracked(SD)) DMap[SD] = NDecls++;
}
decl_iterator begin_decl() const { return DMap.begin(); }
decl_iterator end_decl() const { return DMap.end(); }
};
//===--------------------------------------------------------------------===//
// ValTy - Dataflow value.
//===--------------------------------------------------------------------===//
class ValTy {
llvm::BitVector DeclBV;
public:
void resetDeclValues(AnalysisDataTy& AD) {
DeclBV.resize(AD.getNumDecls());
DeclBV.reset();
}
void setDeclValues(AnalysisDataTy& AD) {
DeclBV.resize(AD.getNumDecls());
DeclBV.set();
}
void resetValues(AnalysisDataTy& AD) {
resetDeclValues(AD);
}
bool operator==(const ValTy& RHS) const {
assert (sizesEqual(RHS));
return DeclBV == RHS.DeclBV;
}
void copyValues(const ValTy& RHS) { DeclBV = RHS.DeclBV; }
llvm::BitVector::reference getBit(unsigned i) {
return DeclBV[i];
}
bool getBit(unsigned i) const {
return DeclBV[i];
}
llvm::BitVector::reference
operator()(const NamedDecl* ND, const AnalysisDataTy& AD) {
return getBit(AD.getIdx(ND));
}
bool operator()(const NamedDecl* ND, const AnalysisDataTy& AD) const {
return getBit(AD.getIdx(ND));
}
llvm::BitVector::reference getDeclBit(unsigned i) { return DeclBV[i]; }
const llvm::BitVector::reference getDeclBit(unsigned i) const {
return const_cast<llvm::BitVector&>(DeclBV)[i];
}
ValTy& operator|=(const ValTy& RHS) {
assert (sizesEqual(RHS));
DeclBV |= RHS.DeclBV;
return *this;
}
ValTy& operator&=(const ValTy& RHS) {
assert (sizesEqual(RHS));
DeclBV &= RHS.DeclBV;
return *this;
}
ValTy& OrDeclBits(const ValTy& RHS) {
return operator|=(RHS);
}
ValTy& AndDeclBits(const ValTy& RHS) {
return operator&=(RHS);
}
bool sizesEqual(const ValTy& RHS) const {
return DeclBV.size() == RHS.DeclBV.size();
}
};
//===--------------------------------------------------------------------===//
// Some useful merge operations.
//===--------------------------------------------------------------------===//
struct Union { void operator()(ValTy& Dst, ValTy& Src) { Dst |= Src; } };
struct Intersect { void operator()(ValTy& Dst, ValTy& Src) { Dst &= Src; } };
};
struct StmtDeclBitVector_Types {
//===--------------------------------------------------------------------===//
// AnalysisDataTy - Whole-function meta data.
//===--------------------------------------------------------------------===//
class AnalysisDataTy : public DeclBitVector_Types::AnalysisDataTy {
ASTContext* ctx;
CFG* cfg;
public:
AnalysisDataTy() : ctx(0), cfg(0) {}
virtual ~AnalysisDataTy() {}
void setContext(ASTContext& c) { ctx = &c; }
ASTContext& getContext() {
assert(ctx && "ASTContext should not be NULL.");
return *ctx;
}
void setCFG(CFG& c) { cfg = &c; }
CFG& getCFG() { assert(cfg && "CFG should not be NULL."); return *cfg; }
bool isTracked(const Stmt* S) { return cfg->isBlkExpr(S); }
using DeclBitVector_Types::AnalysisDataTy::isTracked;
unsigned getIdx(const Stmt* S) const {
CFG::BlkExprNumTy I = cfg->getBlkExprNum(S);
assert(I && "Stmtession not tracked for bitvector.");
return I;
}
using DeclBitVector_Types::AnalysisDataTy::getIdx;
unsigned getNumBlkExprs() const { return cfg->getNumBlkExprs(); }
};
//===--------------------------------------------------------------------===//
// ValTy - Dataflow value.
//===--------------------------------------------------------------------===//
class ValTy : public DeclBitVector_Types::ValTy {
llvm::BitVector BlkExprBV;
typedef DeclBitVector_Types::ValTy ParentTy;
static inline ParentTy& ParentRef(ValTy& X) {
return static_cast<ParentTy&>(X);
}
static inline const ParentTy& ParentRef(const ValTy& X) {
return static_cast<const ParentTy&>(X);
}
public:
void resetBlkExprValues(AnalysisDataTy& AD) {
BlkExprBV.resize(AD.getNumBlkExprs());
BlkExprBV.reset();
}
void setBlkExprValues(AnalysisDataTy& AD) {
BlkExprBV.resize(AD.getNumBlkExprs());
BlkExprBV.set();
}
void resetValues(AnalysisDataTy& AD) {
resetDeclValues(AD);
resetBlkExprValues(AD);
}
void setValues(AnalysisDataTy& AD) {
setDeclValues(AD);
setBlkExprValues(AD);
}
bool operator==(const ValTy& RHS) const {
return ParentRef(*this) == ParentRef(RHS)
&& BlkExprBV == RHS.BlkExprBV;
}
void copyValues(const ValTy& RHS) {
ParentRef(*this).copyValues(ParentRef(RHS));
BlkExprBV = RHS.BlkExprBV;
}
llvm::BitVector::reference
operator()(const Stmt* S, const AnalysisDataTy& AD) {
return BlkExprBV[AD.getIdx(S)];
}
const llvm::BitVector::reference
operator()(const Stmt* S, const AnalysisDataTy& AD) const {
return const_cast<ValTy&>(*this)(S,AD);
}
using DeclBitVector_Types::ValTy::operator();
llvm::BitVector::reference getStmtBit(unsigned i) { return BlkExprBV[i]; }
const llvm::BitVector::reference getStmtBit(unsigned i) const {
return const_cast<llvm::BitVector&>(BlkExprBV)[i];
}
ValTy& OrBlkExprBits(const ValTy& RHS) {
BlkExprBV |= RHS.BlkExprBV;
return *this;
}
ValTy& AndBlkExprBits(const ValTy& RHS) {
BlkExprBV &= RHS.BlkExprBV;
return *this;
}
ValTy& operator|=(const ValTy& RHS) {
assert (sizesEqual(RHS));
ParentRef(*this) |= ParentRef(RHS);
BlkExprBV |= RHS.BlkExprBV;
return *this;
}
ValTy& operator&=(const ValTy& RHS) {
assert (sizesEqual(RHS));
ParentRef(*this) &= ParentRef(RHS);
BlkExprBV &= RHS.BlkExprBV;
return *this;
}
bool sizesEqual(const ValTy& RHS) const {
return ParentRef(*this).sizesEqual(ParentRef(RHS))
&& BlkExprBV.size() == RHS.BlkExprBV.size();
}
};
//===--------------------------------------------------------------------===//
// Some useful merge operations.
//===--------------------------------------------------------------------===//
struct Union { void operator()(ValTy& Dst, ValTy& Src) { Dst |= Src; } };
struct Intersect { void operator()(ValTy& Dst, ValTy& Src) { Dst &= Src; } };
};
} // end namespace clang
#endif
|
bcc5e35b350f091f568ac0a51897198a85b05544 | 30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a | /Codes/AC/30.cpp | 010fb0d97642c69b4756ca1b6b3e5f100e03761a | [] | no_license | thegamer1907/Code_Analysis | 0a2bb97a9fb5faf01d983c223d9715eb419b7519 | 48079e399321b585efc8a2c6a84c25e2e7a22a61 | refs/heads/master | 2020-05-27T01:20:55.921937 | 2019-11-20T11:15:11 | 2019-11-20T11:15:11 | 188,403,594 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 724 | cpp | 30.cpp | #include <iostream>
#include <vector>
#include <algorithm>
#include <iomanip>
using namespace std;
int main()
{cout<<fixed;
setprecision(12);
int n,l,m=-1,k;
double b;
cin>>n>>l;
vector <int> a(n);
for (int i=0;i<n;i++)
cin>>a[i];
sort(a.begin(),a.end());
m=2*a[0];
for (int i=1;i<n;i++){
k=a[i]-a[i-1];
if(k>m)
m=k;
//cout<<m<<" ";
}
//cout<<endl;
//cout<<m<<" ";
//cout<<a[n-1]<<endl;
if ((l-a[n-1])*2>m) m=(l-a[n-1])*2;
//cout<<m<<endl;
//for (int i=1;i<n;i++) cout<<a[i]<<" ";cout<<m<<" ";
b=(double)m/2;
cout<<b;
return 0;
}
|
44da48a13e6468b9db10392193e122652ff48af7 | 705fcf38cf5545456d9bf7e38427d700e6c9b516 | /test.cpp | 79e78529e78a557fc09fcebe31ed20985709f960 | [] | no_license | sunshineyam/leetcode | 4f06eedafc075ef24b9bd071309800b67925d0ba | 6bce03d2602c471b1e1fd51a1b049da7a93744fc | refs/heads/master | 2020-05-02T13:11:02.252651 | 2019-10-08T13:04:36 | 2019-10-08T13:04:36 | 177,977,591 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 998 | cpp | test.cpp | //反转从位置 m 到 n 的链表。请使用一趟扫描完成反转。
//说明 :
//1 ≤ m ≤ n ≤ 链表长度。
//示例 :
//输入 : 1->2->3->4->5->NULL, m = 2, n = 4
//输出 : 1->4->3->2->5->NULL
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
ListNode* reverseBetween(ListNode* head, int m, int n) {
ListNode* newhead = new ListNode(0);
newhead->next = head;
ListNode* rbegin = newhead->next;
ListNode* prev = newhead;
//找到第一个开始反转的节点
int M = m - 1;
while (M--)
{
prev = prev->next;
rbegin = rbegin->next;
}
//利用头插反转m-n之间的节点
for (int i = 0; i<n - m; i++)
{
//需要注意的是rbegin一直没变,而每次循环的temp不一样
ListNode* temp = rbegin->next;
rbegin->next = temp->next;
temp->next = prev->next;
prev->next = temp;
}
ListNode* curhead = newhead->next;
delete newhead;
return curhead;
}
}; |
b5e0c607bf371382da57c8a127d602a5da564dcf | 2108393c31daadedb878f3724c7e00b1ffde8be4 | /Lab1/Lab1/Source.cpp | 974cb0469a27e34a82b40a12190c3d1d546631b2 | [] | no_license | 4VV18CS047/OpenGL-Tic-tac-toe | 1fa7d9f428cbd01d7d4248cd5885528be01beda6 | 79ca120cf7d7370c2008a9c688d4ea008ee5c326 | refs/heads/main | 2023-07-17T22:58:46.626456 | 2021-08-26T07:15:33 | 2021-08-26T07:15:33 | 380,560,109 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,694 | cpp | Source.cpp | #include <GL/glut.h>
#include <iostream>
#include <math.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
int board[3][3]; // board for gameplay
int turn; // current move
int result; // Result of the game
bool over; // Is the game Over?
/*
Sets the board for Tic Tac Toe
*/
void Intialize()
{
turn = 1;
for (int i = 0;i < 3;i++)
{
for (int j = 0;j < 3;j++)
board[i][j] = 0;
}
}
/*
Called when any key from keyboard is pressed especially after game
*/
void OnKeyPress(unsigned char key, int x, int y)
{
switch (key)
{
case 'y':
if (over == true)
{
over = false;
Intialize();
}
break;
case 'n':
if (over == true)
{
exit(0);
}
break;
default:
exit(0);
}
}
/*
Called when Mouse is clicked
*/
void OnMouseClick(int button, int state, int x, int y)
{
if (over == false && button == GLUT_LEFT_BUTTON && state == GLUT_DOWN)
{
if (turn == 1)
{
if (board[(y - 50) / 100][x / 100] == 0)
{
board[(y - 50) / 100][x / 100] = 1;
turn = 2;
}
}
else if (turn == 2)
{
if (board[(y - 50) / 100][x / 100] == 0)
{
board[(y - 50) / 100][x / 100] = 2;
turn = 1;
}
}
}
}
/*
Utility function to draw string
*/
void DrawString(void* font, const char s[], float x, float y)
{
unsigned int i;
glRasterPos2f(x, y);
for (i = 0;i < strlen(s);i++)
{
glutBitmapCharacter(font, s[i]);
}
}
/*
Function to draw up the horizontal and vertical lines
*/
void DrawLines()
{
glBegin(GL_LINES);
glColor3f(0, 0, 0);
glVertex2f(100, 50);
glVertex2f(100, 340);
glVertex2f(200, 340);
glVertex2f(200, 50);
glVertex2f(0, 150);
glVertex2f(300, 150);
glVertex2f(0, 250);
glVertex2f(300, 250);
glEnd();
}
/*
Utility function to draw the circle
*/
void DrawCircle(float cx, float cy, float r, int num_segments)
{
glBegin(GL_LINE_LOOP);
for (int i = 0; i < num_segments; i++)
{
float theta = 2.0f * 3.1415926f * float(i) / float(num_segments);//get the current angle
float x = r * cosf(theta);//calculate the x component
float y = r * sinf(theta);//calculate the y component
glVertex2f(x + cx, y + cy);//output vertex
}
glEnd();
}
/*
Function to draw the cross and circle of Tic Tac Toe
*/
void DrawXO()
{
for (int i = 0;i < 3;i++)
{
for (int j = 0;j < 3;j++)
{
if (board[i][j] == 1)
{
glBegin(GL_LINES);
glVertex2f(50 + j * 100 - 25, 100 + i * 100 - 25);
glVertex2f(50 + j * 100 + 25, 100 + i * 100 + 25);
glVertex2f(50 + j * 100 - 25, 100 + i * 100 + 25);
glVertex2f(50 + j * 100 + 25, 100 + i * 100 - 25);
glEnd();
}
else if (board[i][j] == 2)
{
DrawCircle(50 + j * 100, 100 + i * 100, 25, 15);
}
}
}
}
/*
Function to check if there is any winner
*/
bool CheckWinner()
{
int i, j;
// horizontal check- checks every horizontally whether the elements are of like terms throughout horizontal axis
for (i = 0;i < 3;i++)
{
for (j = 1;j < 3;j++)
{
if (board[i][0] != 0 && board[i][0] == board[i][j])
{
if (j == 2)
{
return true;
}
}
else
break;
}
}
// vertical check - checks every horizontally whether the elements are of like terms throughout vertical axis
for (i = 0;i < 3;i++)
{
for (j = 1;j < 3;j++)
{
if (board[0][i] != 0 && board[0][i] == board[j][i])
{
if (j == 2)
return true;
}
else
break;
}
}
// Checks Diagonally the same
if ((board[0][0] != 0 && board[0][0] == board[1][1] && board[0][0] == board[2][2])
|| (board[2][0] != 0 && board[2][0] == board[1][1] && board[2][0] == board[0][2]))
return true;
return false;
}
/*
function to check if there is draw
*/
bool CheckIfDraw()
{
int i, j;
bool draw;
for (i = 0;i < 3;i++)
{
for (j = 0;j < 3;j++)
{
if (board[i][j] == 0)
return false;
}
}
return true;
}
/*
Function to display up everything
*/
void Display()
{
glClear(GL_COLOR_BUFFER_BIT);
glClearColor(0, 1, 1, 1);
glColor3f(0, 0, 0);
if (turn == 1)
DrawString(GLUT_BITMAP_HELVETICA_18, "Player1's turn", 100, 30);
else
DrawString(GLUT_BITMAP_HELVETICA_18, "Player2's turn", 100, 30);
DrawLines();
DrawXO();
if (CheckWinner() == true)
{
if (turn == 1)
{
over = true;
result = 2;
}
else
{
over = true;
result = 1;
}
}
else if (CheckIfDraw() == true)
{
over = true;
result = 0;
}
if (over == true)
{
DrawString(GLUT_BITMAP_HELVETICA_18, "Game Over", 100, 160);
if (result == 0)
DrawString(GLUT_BITMAP_HELVETICA_18, "It's a draw", 110, 185);
if (result == 1)
DrawString(GLUT_BITMAP_HELVETICA_18, "Player1 wins", 95, 185);
if (result == 2)
DrawString(GLUT_BITMAP_HELVETICA_18, "Player2 wins", 95, 185);
DrawString(GLUT_BITMAP_HELVETICA_18, "Do you want to continue (y/n)", 40, 210);
}
glutSwapBuffers();
}
/*
Function to reshape - clears the board once the game is complete
*/
void Reshape(int x, int y)
{
glViewport(0, 0, x, y);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(0, x, y, 0, 0, 1);
glMatrixMode(GL_MODELVIEW);
}
/*
Driver Function
*/
int main(int argc, char** argv)
{
Intialize();
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE);
glutInitWindowPosition(550, 200);
glutInitWindowSize(500, 550);
glutCreateWindow("Tic Tac Toe");
glutReshapeFunc(Reshape);
glutDisplayFunc(Display);
glutKeyboardFunc(OnKeyPress);
glutMouseFunc(OnMouseClick);
glutIdleFunc(Display);
glutMainLoop();
return 0;
} |
3643fa7783b4664e98fa0f00ffb3a01bb7850ddb | 53c21935d9803817b5de93a830b510d6bdd3baae | /linear/solver.cpp | 094b5347d4ebcaad276e152a115625c9dfe11e06 | [] | no_license | rayliu0605/MINLP-solver | d65dc3219c73fdac1b8a5e0c7fd92ac48e683285 | 03a7ecdefb3697c1e07a7da68e8c4d2d5bff0916 | refs/heads/main | 2023-01-13T03:05:59.535050 | 2020-11-18T15:43:36 | 2020-11-18T15:43:36 | 301,299,084 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,328 | cpp | solver.cpp | #include <iostream> // cout
#include <fstream> // ofstream
#include <random> // default_random_engine, %distribution
#include <functional> // bind, ref
#include <algorithm> // generate, max, min, abs
#include <vector>
#include <tuple> // tuple, get
#include <thread>
#include <time.h>
#include "program.h"
/*global variables related to random number generator*/
int seed = 5;
std::default_random_engine generator(seed);
/*bernoulli random number generator*/
std::bernoulli_distribution bool_distribution(0.5);
auto randombool = std::bind(bool_distribution, generator);
/*uniform random number generator*/
std::uniform_real_distribution<double> uniform_distribution(0.0, 1.0);
auto randomuni = std::bind(uniform_distribution, generator);
int move_rule(Walker& w, const Program& model) {
uniform_int_distribution<> uniindex(0, w.bits.size() - 1);
return uniindex(generator);
}
void move_walker(Walker& w, const Program& model) {
/*set the next move according to the rule*/
int k = move_rule(w, model);
/*update the variables according to the move*/
int j;
if (w.bits[k]) {
for (const auto& coeff : model.bv[k]) {
switch (std::get<0>(coeff)) {
case 'i':
j = std::get<1>(coeff);
w.penalty_bv -= w.penalty_ineq[j];
w.ineq_lhs[j] -= model.ineq_coeff[j][std::get<2>(coeff)];
w.penalty_ineq[j] = model.ineq_penalty_coeff[j] * std::max(0.0, w.ineq_lhs[j] - model.ineq_rhs[j]);
w.penalty_bv += w.penalty_ineq[j];
break;
case 'e':
j = std::get<1>(coeff);
w.penalty_bv -= w.penalty_eq[j];
w.eq_lhs[j] -= model.eq_coeff[j][std::get<2>(coeff)];
w.penalty_eq[j] = model.eq_penalty_coeff[j] * std::abs(w.eq_lhs[j] - model.eq_rhs[j]);
w.penalty_bv += w.penalty_eq[j];
break;
case'c':
j = std::get<1>(coeff);
w.cont_rhs[j] -= model.cont_coeff[j][std::get<2>(coeff)];
break;
case 'o':
w.obj_bv -= model.obj_coeff[std::get<2>(coeff)];
}
}
}
else {
for (const auto& coeff : model.bv[k]) {
switch (std::get<0>(coeff)) {
case 'i':
j = std::get<1>(coeff);
w.penalty_bv -= w.penalty_ineq[j];
w.ineq_lhs[j] += model.ineq_coeff[j][std::get<2>(coeff)];
w.penalty_ineq[j] = model.ineq_penalty_coeff[j] * std::max(0.0, w.ineq_lhs[j] - model.ineq_rhs[j]);
w.penalty_bv += w.penalty_ineq[j];
break;
case 'e':
j = std::get<1>(coeff);
w.penalty_bv -= w.penalty_eq[j];
w.eq_lhs[j] += model.eq_coeff[j][std::get<2>(coeff)];
w.penalty_eq[j] = model.eq_penalty_coeff[j] * std::abs(w.eq_lhs[j] - model.eq_rhs[j]);
w.penalty_bv += w.penalty_eq[j];
break;
case 'c':
j = std::get<1>(coeff);
w.cont_rhs[j] += model.cont_coeff[j][std::get<2>(coeff)];
break;
case 'o':
w.obj_bv += model.obj_coeff[std::get<2>(coeff)];
}
}
}
/*flip the bit and calculate the energy*/
w.bits[k] = !w.bits[k];
if (w.contvar.size() == 0) {
w.energy = w.obj_bv + w.penalty_bv;
}
else {
std::tuple<double, bool, bool> result = solve_subproblem(w.bits, w.cont_rhs, model.cont_penalty_coeff, w.contvar);
w.energy_cont = std::get<0>(result);
w.cont_feasible = std::get<1>(result);
w.energy = w.obj_bv + w.penalty_bv + w.energy_cont;
}
}
void initialize_walker(Walker& w, const Program& model) {
/*randomly initialize the bits of walker*/
const int bitsize = model.bv.size();
w.bits.resize(bitsize);
for (int k = 0; k < bitsize; ++k)
w.bits[k] = randombool();
w.ineq_lhs.resize(model.ineq_rhs.size());
w.penalty_ineq.resize(model.ineq_rhs.size());
w.eq_lhs.resize(model.eq_rhs.size());
w.penalty_eq.resize(model.eq_rhs.size());
w.cont_rhs = model.cont_rhsconst;
/*calculate the left hand side of constraints and objective functions containing only binary variables*/
/*also calculate the right hand side of constraints containing continuous variables*/
for (int k = 0; k < bitsize; ++k) {
if (w.bits[k]) {
for (const auto& coeff : model.bv[k]) {
switch (std::get<0>(coeff)) {
case 'i':
w.ineq_lhs[std::get<1>(coeff)] += model.ineq_coeff[std::get<1>(coeff)][std::get<2>(coeff)];
break;
case 'e':
w.eq_lhs[std::get<1>(coeff)] += model.eq_coeff[std::get<1>(coeff)][std::get<2>(coeff)];
break;
case 'c':
w.cont_rhs[std::get<1>(coeff)] += model.cont_coeff[std::get<1>(coeff)][std::get<2>(coeff)];
break;
case 'o':
w.obj_bv += model.obj_coeff[std::get<2>(coeff)];
}
}
}
}
/*populate initial penalties corresponding to constraints with only binary variables*/
for (int j = 0; j < model.ineq_rhs.size(); ++j) {
w.penalty_ineq[j] = model.ineq_penalty_coeff[j] * std::max(0.0, w.ineq_lhs[j] - model.ineq_rhs[j]);
w.penalty_bv += w.penalty_ineq[j];
}
for (int j = 0; j < model.eq_rhs.size(); ++j) {
w.penalty_eq[j] = model.eq_penalty_coeff[j] * std::abs(w.eq_lhs[j] - model.eq_rhs[j]);
w.penalty_bv += w.penalty_eq[j];
}
/*assign initial feasible values to continuous variables, if any*/
set_initial_contvar(w, model);
/*calculate energy*/
if (w.contvar.size() == 0) {
w.energy = w.obj_bv + w.penalty_bv;
}
else {
std::tuple<double, bool, bool> result = solve_subproblem(w.bits, w.cont_rhs, model.cont_penalty_coeff, w.contvar);
w.energy_cont = std::get<0>(result);
w.cont_feasible = std::get<1>(result);
w.energy = w.obj_bv + w.penalty_bv + w.energy_cont;
}
}
int main() {
/*populate the optimization model*/
Program model;
populate(model);
if (model.ineq_coeff.size()) {
model.ineq_penalty_coeff.resize(model.ineq_coeff.size());
std::fill(model.ineq_penalty_coeff.begin(), model.ineq_penalty_coeff.end(), 50.0);
}
if (model.eq_coeff.size()) {
model.eq_penalty_coeff.resize(model.eq_coeff.size());
std::fill(model.eq_penalty_coeff.begin(), model.eq_penalty_coeff.end(), 50.0);
}
if (model.cont_coeff.size()) {
model.cont_penalty_coeff.resize(model.cont_coeff.size());
std::fill(model.cont_penalty_coeff.begin(), model.cont_penalty_coeff.end(), 10000.0);
}
const int bitsize = model.bv.size();
/*initialize walkers*/
Walker w;
Walker w_neighbor;
initialize_walker(w, model);
/*variables related to recording and outputing the best solution discovered so far*/
int best_index = -1;
int record_interval = 1;
double best_obj = 1000000000000000.0;
time_t previous_time, current_time;
previous_time = current_time = time(NULL);
std::vector<bool> best_solution(bitsize);
std::ofstream file;
/*run the simulated annealing*/
double T{ exp(0.032 * bitsize + 9.3) };
bool moved = false;
while (T > 0.1) {
if (!moved)
w_neighbor = w;
move_walker(w_neighbor, model);
if (exp((w.energy - w_neighbor.energy) / T) >= randomuni()) {
w = w_neighbor;
/*record the new best solutions found, if any*/
if ((w.energy < best_obj) && (w.penalty_bv < 0.1) && w.cont_feasible) {
best_obj = w.energy;
std::cout << "The current objective value is " << best_obj << std::endl;
if (current_time - previous_time >= record_interval) {
previous_time = current_time = time(NULL);
file.open("solution.csv");
file << "objective value," << w.energy << "\n";
for (int k = 0; k < bitsize; ++k)
file << "b[" << k << "]," << w.bits[k] << "\n";
for (int l = 0; l < w.contvar.size(); ++l)
file << "x[" << l << "]," << w.contvar[l] << "\n";
file.close();
}
}
}
/*cooling*/
T *= 0.99;
}
} |
30be2c58a2774eda4c6aeb4e31afa05c3384908b | b085e097d32150b413d6a60fa7694ec6ccf34ad6 | /ray/RayTracer/PinholeCamera.h | 363c9d85d0fbde97e32f2cd06e4868c6c07e6363 | [] | no_license | fahall/UselessCode | 7e513a76fc733ac8461966ab008c88bea700e810 | ee700bd402f46dea4706a127a407438d82a473bb | refs/heads/master | 2021-01-23T02:34:31.421986 | 2015-03-06T21:50:47 | 2015-03-06T21:50:47 | 31,790,553 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 803 | h | PinholeCamera.h | //
// PinholeCamera.h
// RayTracer
//
// Created by Weilun Sun on 2/20/15.
// Copyright (c) 2015 UC Berkeley. All rights reserved.
//
#ifndef __RayTracer__PinholeCamera__
#define __RayTracer__PinholeCamera__
#include <stdio.h>
#include "Camera.h"
class PinholeCamera : public Camera
{
protected:
nv::vec3f orig, up, focus;
float focalLength;
public:
void place(const nv::vec3f& orig, const nv::vec3f& up, const nv::vec3f& focus)
{
this->orig = orig;
this->up = up;
this->focus = focus;
}
void setFovx(float fovx) { focalLength = 0.5 * tanf(fovx * M_PI / 360); }
PinholeCamera(Tracer* tracer) : Camera(tracer) {}
std::vector<Ray> generateRays();
std::vector<float> generateRays2();
};
#endif /* defined(__RayTracer__PinholeCamera__) */
|
5b673dbcfcab55ce3069fc686bd5fbba3b8824d9 | 4415f115ef6b00d2040b0ef4a14e38d8e08a0f8d | /XRFwx/stdafx.cpp | c0ef22bf70c1ee29507602cd98fa7c147e4d9571 | [] | no_license | mrxordi/XRFramework | ad5878ae55b3e3262df286882fab08a1508d9e75 | 6a6d9bff8cf46b1dcb8be0fdcb4b2421f525fa87 | refs/heads/master | 2021-01-10T20:39:22.522451 | 2015-08-11T00:17:07 | 2015-08-11T00:17:07 | 26,660,858 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 240 | cpp | stdafx.cpp | #include <stdafxf.h>
#ifdef _DEBUG
#pragma comment(lib, "CEGUIBase-0_d.lib")
#pragma comment(lib, "CEGUIDirect3D10Renderer-0_d.lib")
#else
#pragma comment(lib, "CEGUIBase-0.lib")
#pragma comment(lib, "CEGUIDirect3D10Renderer-0.lib")
#endif |
2740fbc7668fb1869ea2e720c300e062c98c50c3 | 496cd36aef0c69a9663f2f2e3f69b7a1db9c026e | /DiscreteMathematics2018/dijkstra.cpp | 54ebda6a80cfb7cf9449b5d8aa1b5347ea9d6a8a | [] | no_license | ckdwns9121/Programing-assignment | 682f39625e7b1aedb069d0093a3297d2a8878e4b | 84d7100b7c41b157677628971a89b22b8759f796 | refs/heads/master | 2020-06-01T11:47:04.395498 | 2019-10-28T02:32:37 | 2019-10-28T02:32:37 | 190,768,703 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,993 | cpp | dijkstra.cpp | #include <iostream>
#include <vector>
#include <queue>
#include <fstream>
#include <algorithm>
#define INF 2147483647
using namespace std;
ifstream fcin("dijkstra.inp");
ofstream fcout("dijkstra.out");
int N, M;
int u, v, w;
struct inf {
int prev, v, w, n;
};
vector<vector<inf> > vec;
vector<int> prev_vertex;
vector<vector<int> > ans;
bool operator<(inf A, inf B) { return (A.w == B.w ? A.n < B.n : A.w > B.w); }
void tracking(int n, int ans_n)
{
if (prev_vertex[n] == -INF) // dist = INF
{
ans[ans_n].push_back(0);
return;
}
if (prev_vertex[n] == -1)
return;
if (ans[prev_vertex[n]].size() > 0)
{
for (int i = 0; i < ans[prev_vertex[n]].size(); i++)
ans[ans_n].push_back(ans[prev_vertex[n]][i]);
return;
}
ans[ans_n].push_back(prev_vertex[n]);
return tracking(prev_vertex[n], ans_n);
}
void dijkstra()
{
vector<int> dist(N, INF);
vector<int> visited(N);
vector<int> prev_edge_number(N, -INF);
prev_vertex.resize(N, -INF);
ans.resize(N);
dist[0] = 0;
prev_vertex[0] = -1;
priority_queue<inf> pq; // using dijkstra
pq.push({ -1,0,0,-1 });
while (!pq.empty())
{
int prev = pq.top().prev;
int cur = pq.top().v;
int w = pq.top().w;
int n = pq.top().n;
pq.pop();
if (dist[cur] == w && prev_edge_number[cur] < n)
{
prev_edge_number[cur] = n;
prev_vertex[cur] = prev;
}
if (visited[cur]) continue;
visited[cur] = 1;
for (int i = 0; i < vec[cur].size(); i++)
{
int next = vec[cur][i].v;
if (dist[next] >= vec[cur][i].w + dist[cur])
{
dist[next] = vec[cur][i].w + dist[cur];
pq.push({ cur, next, dist[next], vec[cur][i].n });
}
}
}
for (int i = 1; i < N; i++)
{
ans[i].push_back(i);
tracking(i, i);
for (int j = ans[i].size() - 1; j >= 0; j--)
fcout << "V" << ans[i][j] << " ";
fcout << "(" << (dist[i] == INF ? -1 : dist[i]) << ")\n";
}
}
int main()
{
fcin >> N >> M;
vec.resize(N);
for (int i = 0; i < M; i++)
{
fcin >> u >> v >> w;
vec[u].push_back({ u,v,w,i });
}
dijkstra();
} |
f6b9329dd1d8c67a2785d9b94cb43fd65bfd59c5 | 9c84604a3ea2957c46b57a3e513d390b9b0606f3 | /src/board/emulator/EmulatorBoard.hpp | e6d5f7879d133bf46408dc61a5fc1e4cf9596247 | [
"MIT"
] | permissive | amsobr/iotool | ace2b8dc11dad936712e7cf8e3834a5d0680077b | a91a0d5d00136ff946a18f5584e6029ffaa3d0fe | refs/heads/master | 2022-07-10T19:51:44.428427 | 2022-06-25T10:40:56 | 2022-06-25T10:40:56 | 177,014,878 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 195 | hpp | EmulatorBoard.hpp |
#pragma once
#include <vector>
#include <common/Board.hpp>
class EmulatorBoard : public Board
{
public:
EmulatorBoard();
~EmulatorBoard() override;
}; /* class EmulatorBoard */
|
57a674f1c5ef844cf4a92ac43e999e37398a5ce4 | ce02ce3237c02d7dd26f60f01c29d4475f939722 | /1.C++/2.type,operator & exp/6.type_caasting.cpp | c7e9f1c6e22d89d8da464002f90098efe0f64825 | [] | no_license | DEVESH307/Data-structures-and-Algorithms | 0660d0bbab9915ca14fc063118eee1e430969e0d | 59147b8eadbbca782d4e8bd24a758e432df48467 | refs/heads/master | 2022-12-21T15:09:40.438594 | 2020-09-14T02:27:18 | 2020-09-14T02:27:18 | 295,277,876 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 268 | cpp | 6.type_caasting.cpp | // C++ program to demonstrate
// explicit type casting
#include<bits/stdc++.h>
using namespace std;
int main()
{
double x = 1.2;
// Explicit conversion from double to int
int sum = (int)x + 1;
cout << "Sum = " << sum;
return 0;
}
|
8d37c56c762c87be2c0c4535f87e58aaf754956e | 7f0718647279fbdd0e57938718108e0c70e3e2b8 | /Project/Prototypes/SwiftIDE/sceneeditorview.h | 0035140dfbe5eb11aa170970005490876b90d094 | [
"MIT"
] | permissive | DatZach/Swift | 26dffa7405195e38899817a915eb320c57abb33b | b0c6f9c87e8c8dfe8a19dedc4dd57081fa5cdef7 | refs/heads/master | 2022-07-06T03:23:32.575916 | 2019-12-03T15:27:14 | 2019-12-03T15:27:14 | 225,651,121 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 336 | h | sceneeditorview.h | #ifndef SCENEEDITORVIEW_H
#define SCENEEDITORVIEW_H
#include <SFML/Graphics.hpp>
#include "qsfmlcanvas.h"
class SceneEditorView : public QSFMLCanvas
{
private:
protected:
void OnInit();
void OnUpdate();
public:
SceneEditorView(QWidget* parent, const QPoint& position, const QSize& size);
};
#endif // SCENEEDITORVIEW_H
|
281911b77518ab7017cc3aad4bb325379977a6bc | 5ad57f563fcf0b7c8b8cfea8e2de9f814a3a17cf | /Task-4/WifiManager/Wifimanager_test_code.ino | 523e44732ad8d9a93cca952877505856ad5a4542 | [
"MIT"
] | permissive | arshsaluja/UMBEO-Tech. | 89cca87732803c908da74569e2a7204fb9fe3b99 | 09b3acff612dd0b2c5626fffb33abfa0fd28c6a7 | refs/heads/main | 2023-06-12T13:31:17.659337 | 2021-07-10T12:56:41 | 2021-07-10T12:56:41 | 373,620,513 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,038 | ino | Wifimanager_test_code.ino | #include <ESP8266WiFi.h> //https://github.com/esp8266/Arduino
//needed for library
#include <DNSServer.h>
#include <ESP8266WebServer.h>
#include <WiFiManager.h> //https://github.com/tzapu/WiFiManager
#define trigger D0
#define LED D2
#define power D3
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(trigger,INPUT);
pinMode(LED,OUTPUT);
pinMode(power,OUTPUT);
if(digitalRead(trigger) == HIGH){
digitalWrite(power,HIGH);
WiFiManager wifiManager;
wifiManager.resetSettings();
wifiManager.autoConnect("WiFi Manager");
Serial.println("connected :)");
}
}
void loop() {
if (WiFi.status() == WL_CONNECTED)
{
digitalWrite(power,LOW);
while(WiFi.status() == WL_CONNECTED){
digitalWrite(LED,HIGH);
delay(500);
digitalWrite(LED,LOW);
delay(200);
}
}
else {
digitalWrite(LED,LOW);
}
}
|
e9be12f297d493cc23c47729eceea9c9cab1ad49 | 44ffe14c37baf3b16932c00677d8b35575f32755 | /src/xtopcom/xvledger/src/xvcnode.cpp | 2363ca3c9e51b38d1c0a780a4cacd868029a25cb | [] | no_license | telosprotocol/TOP-chain | 199fca0a71c439a8c18ba31f16641c639575ea29 | 1f168664d1eb4175df8f1596e81acd127112414a | refs/heads/master | 2023-07-25T01:24:34.437043 | 2023-06-05T01:28:24 | 2023-06-05T01:28:24 | 312,178,439 | 13 | 46 | null | 2023-07-18T01:09:29 | 2020-11-12T05:38:44 | C++ | UTF-8 | C++ | false | false | 11,899 | cpp | xvcnode.cpp | // Copyright (c) 2018-2020 Telos Foundation & contributors
// taylor.wei@topnetwork.org
// Licensed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <cinttypes>
#include "../xvcnode.h"
#ifdef DEBUG
#include "xcrypto/xckey.h"
#endif
#include "xpbase/base/top_utils.h"
#include "xmetrics/xmetrics.h"
namespace top
{
namespace base
{
xvnode_t::xvnode_t(const std::string & account,const xvip2_t & xip2_addr,const std::string & sign_pub_key)
{
m_account = account;
m_sign_pubkey = sign_pub_key;
m_node_address.high_addr = xip2_addr.high_addr;
m_node_address.low_addr = xip2_addr.low_addr;
XMETRICS_GAUGE_DATAOBJECT(metrics::dataobject_xvnode_t, 1);
// #ifdef DEBUG // double check whether public key matched the account addresss
// if (!sign_pub_key.empty()) { // unit test might to use empty keys.
// utl::xecpubkey_t pub_key((uint8_t *)sign_pub_key.data(), (int)sign_pub_key.size());
// xassert(account == pub_key.to_address(get_addr_type(), get_ledger_id()));
// }
// #endif
}
xvnode_t::xvnode_t(const xvnode_t & obj)
{
m_sign_pubkey = obj.m_sign_pubkey;
m_node_address.high_addr = obj.m_node_address.high_addr;
m_node_address.low_addr = obj.m_node_address.low_addr;
XMETRICS_GAUGE_DATAOBJECT(metrics::dataobject_xvnode_t, 1);
}
xvnode_t::~xvnode_t()
{
XMETRICS_GAUGE_DATAOBJECT(metrics::dataobject_xvnode_t, -1);
}
xvnodegroup_t::xvnodegroup_t(const xvip2_t & group_address,const uint64_t effect_clock_height,std::vector<xvnode_t*> const & nodes)
{
m_group_address.high_addr = group_address.high_addr;
m_group_address.low_addr = group_address.low_addr;
m_start_clock_height = effect_clock_height;
m_network_height = get_network_height_from_xip2(m_group_address);
m_nodes.resize(get_group_nodes_count_from_xip2(group_address));
for(auto it : nodes)
{
if(it != NULL)
{
if(is_xip2_group_equal(m_group_address,it->get_xip2_addr()))
{
const uint32_t node_index = get_node_id_from_xip2(it->get_xip2_addr());
if(node_index < get_group_nodes_count_from_xip2(group_address))
{
it->add_ref();
m_nodes[node_index] = it;
}
else
{
xdbgassert(0);
}
}
else
{
xdbgassert(0);
}
}
}
XMETRICS_GAUGE_DATAOBJECT(metrics::dataobject_xvnodegroup, 1);
}
xvnodegroup_t::xvnodegroup_t(const xvip2_t & group_address,const uint64_t effect_clock_height,std::deque<xvnode_t*> const & nodes)
{
m_group_address.high_addr = group_address.high_addr;
m_group_address.low_addr = group_address.low_addr;
m_start_clock_height = effect_clock_height;
m_network_height = get_network_height_from_xip2(m_group_address);
m_nodes.resize(get_group_nodes_count_from_xip2(group_address));
for(auto it : nodes)
{
if(it != NULL)
{
if(is_xip2_group_equal(m_group_address,it->get_xip2_addr()))
{
const uint32_t node_slot = get_node_id_from_xip2(it->get_xip2_addr());
if(node_slot < get_group_nodes_count_from_xip2(group_address))
{
it->add_ref();
m_nodes[node_slot] = it;
}
else
{
xdbgassert(0);
}
}
else
{
xdbgassert(0);
}
}
}
XMETRICS_GAUGE_DATAOBJECT(metrics::dataobject_xvnodegroup, 1);
}
xvnodegroup_t::~xvnodegroup_t()
{
for(auto it : m_nodes)
{
if(it != NULL)
{
it->release_ref();
}
}
XMETRICS_GAUGE_DATAOBJECT(metrics::dataobject_xvnodegroup, -1);
}
xvnode_t* xvnodegroup_t::get_node(const xvip2_t & target_node_xip2) const
{
const uint32_t node_slot = get_node_id_from_xip2(target_node_xip2);
xvnode_t * target_node_obj = get_node(node_slot);
if(NULL != target_node_obj)
{
if(is_xip2_equal(target_node_xip2,target_node_obj->get_xip2_addr()))
return target_node_obj;
xwarn_err("xvnodegroup_t::get_node,fail-find target node by xip2{% " PRIu64 " : % " PRIu64 " } at gruop{% " PRIu64 " : % " PRIu64 " }",target_node_xip2.high_addr,target_node_xip2.low_addr,m_group_address.high_addr,m_group_address.low_addr);
}
return NULL;
}
xvnode_t* xvnodegroup_t::get_node(const uint32_t node_slot) const
{
if(node_slot < get_group_nodes_count_from_xip2(m_group_address))
{
xvnode_t* _target_node = m_nodes[node_slot];
return _target_node;
}
xwarn_err("xvnodegroup_t::get_node,fail-find target node by node_slot=%u vs nodes_count=%u",node_slot,get_size());
return NULL;
}
xvnodesrv_t::xvnodesrv_t()
:xdataobj_t((enum_xdata_type)enum_xobject_type_vnodesvr)
{
}
xvnodesrv_t::xvnodesrv_t(enum_xdata_type type)
:xdataobj_t(type)
{
}
xvnodesrv_t::~xvnodesrv_t()
{
}
void* xvnodesrv_t::query_interface(const int32_t _enum_xobject_type_)//caller need to cast (void*) to related ptr
{
if(_enum_xobject_type_ == enum_xobject_type_vnodesvr)
return this;
return xdataobj_t::query_interface(_enum_xobject_type_);
}
int32_t xvnodesrv_t::do_write(base::xstream_t & stream)//write whole object to binary
{
return 0;
}
int32_t xvnodesrv_t::do_read(base::xstream_t & stream) //read from binary and regeneate content
{
return 0;
}
xvnodehouse_t::xvnodehouse_t()
:xvnodesrv_t()
{
}
xvnodehouse_t::xvnodehouse_t(enum_xdata_type type)
:xvnodesrv_t(type)
{
}
xvnodehouse_t::~xvnodehouse_t()
{
m_lock.lock();
for(auto it = m_vgroups.begin(); it != m_vgroups.end(); ++it)
{
if(it->second != nullptr)
it->second->release_ref();
}
m_vgroups.clear();
m_lock.unlock();
}
xauto_ptr<xvnode_t> xvnodehouse_t::get_node(const xvip2_t & target_node) const
{
//GroupKey = [elect-height:21bit][xnetwork-id: 7-7-7 bit][zone-id:7bit|cluster-id:7bit|group-id:8bit]
const uint64_t group_key = ((target_node.low_addr << 11) >> 21) | ((target_node.high_addr & 0x1FFFFF) << 43);
std::lock_guard<std::mutex> locker(m_lock);
auto it = m_vgroups.find(group_key);
if(it != m_vgroups.end())
{
xvnode_t * node_ptr = it->second->get_node(target_node);
if(node_ptr != NULL)
node_ptr->add_ref();
return node_ptr;
}
return nullptr;
}
/*
XIP definition as total 64bit = [xaddress_domain:1bit | xaddress_type:2bit | xnetwork_type:5bit] [xnetwork_version#:3bit][xnetwork-id: 7-7-7 bit][xhost-id:32bit] =
{
//xaddress_domain is enum_xaddress_domain_xip(0) or enum_xaddress_domain_xip2(1)
//xaddress_type is enum_xip_type
//xnetwork_type refer enum_xnetwork_type
-[enum_xaddress_domain_xip:1bit | enum_xip_type:2bit | xnetwork_type:5bit]
-[xnetwork_version#:3bit] //elect round# at Chain
-[xnetwork-id: 7-7-7 bit] //A-Class,B-Class,C-Class,D-Class,E-Class Network...
-[zone-id:7bit|cluster-id:7bit|group-id:8bit|node-id:10bit]
}
//XIP2 is 128bit address like IPv6 design on top of XIP
XIP2 = [high 64bit:label data][low 64bit:XIP]
{
high 64bit for enum_xnetwork_type_xchain
-[xgroup_node_count:10bit]
-[xnetwork_round/height:54bit]
low 64bit:
-[XIP: 64bit]
}
*/
xauto_ptr<xvnodegroup_t> xvnodehouse_t::get_group(const xvip2_t & target_group) const
{
//GroupKey = [elect-height:21bit][xnetwork-id: 7-7-7 bit][zone-id:7bit|cluster-id:7bit|group-id:8bit]
const uint64_t group_key = ((target_group.low_addr << 11) >> 21) | ((target_group.high_addr & 0x1FFFFF) << 43);
std::lock_guard<std::mutex> locker(m_lock);
auto it = m_vgroups.find(group_key);
if(it != m_vgroups.end())
{
if(it->second->get_network_height() == get_network_height_from_xip2(target_group)) //double check exactly height
{
it->second->add_ref();
return it->second;
}
}
return nullptr;
}
bool xvnodehouse_t::add_group(const xvnodegroup_t* group_ptr)
{
if(NULL == group_ptr)
return false;
//GroupKey = [elect-height:21bit][xnetwork-id: 7-7-7 bit][zone-id:7bit|cluster-id:7bit|group-id:8bit]
const uint64_t group_key = ((group_ptr->get_xip2_addr().low_addr << 11) >> 21) | ((group_ptr->get_xip2_addr().high_addr & 0x1FFFFF) << 43);
((xvnodegroup_t*)group_ptr)->add_ref(); //add reference first
std::lock_guard<std::mutex> locker(m_lock);
auto it = m_vgroups.emplace(group_key,(xvnodegroup_t*)group_ptr);
if(false == it.second) //foud existing one
{
xvnodegroup_t * old_ptr = it.first->second;
it.first->second = (xvnodegroup_t*)group_ptr; //replace old one
old_ptr->release_ref();
}
return true;
}
bool xvnodehouse_t::remove_group(const xvip2_t & target_group)
{
//GroupKey = [elect-height:21bit][xnetwork-id: 7-7-7 bit][zone-id:7bit|cluster-id:7bit|group-id:8bit]
const uint64_t group_key = ((target_group.low_addr << 11) >> 21) | ((target_group.high_addr & 0x1FFFFF) << 43);
std::lock_guard<std::mutex> locker(m_lock);
auto it = m_vgroups.find(group_key);
if(it != m_vgroups.end())
{
it->second->release_ref();
m_vgroups.erase(it);
return true;
}
return false;
}
};//end of namespace of base
};//end of namespace of top
|
b6c0a42d952482ba381191dabb3abc20ebbc7243 | 5a3c7188abdea1dd8b6ced8da95679f1cf121c48 | /src/algorithms/LssLrtaStar.hpp | 486510706d257801a4df7dc223f324ecabae1a58 | [
"MIT"
] | permissive | csbence/metronome | 46d975b80fcad2ddbd013f4f83e943965c9a15b1 | eaa15c2d827dbc3f60a52a344e48ba8021ad303e | refs/heads/master | 2021-01-15T09:42:55.036297 | 2019-12-11T06:18:42 | 2019-12-11T06:18:42 | 58,943,192 | 8 | 4 | null | 2019-02-04T18:23:59 | 2016-05-16T15:22:16 | C++ | UTF-8 | C++ | false | false | 10,519 | hpp | LssLrtaStar.hpp | #pragma once
#include <fcntl.h>
#include <MemoryConfiguration.hpp>
#include <domains/SuccessorBundle.hpp>
#include <unordered_map>
#include <vector>
#include "MetronomeException.hpp"
#include "OnlinePlanner.hpp"
#include "easylogging++.h"
#include "experiment/Configuration.hpp"
#include "utils/Hash.hpp"
#include "utils/ObjectPool.hpp"
#include "utils/PriorityQueue.hpp"
#include "utils/TimeMeasurement.hpp"
namespace metronome {
template <typename Domain, typename TerminationChecker>
class LssLrtaStar final : public OnlinePlanner<Domain, TerminationChecker> {
public:
using State = typename Domain::State;
using Action = typename Domain::Action;
using Cost = typename Domain::Cost;
using Planner = metronome::Planner<Domain>;
using ActionBundle = typename Planner::ActionBundle;
LssLrtaStar(const Domain& domain, const Configuration&) : domain{domain} {
// Initialize hash table
nodes.max_load_factor(1);
nodes.reserve(Memory::NODE_LIMIT);
}
std::vector<ActionBundle> selectActions(
const State& startState,
TerminationChecker& terminationChecker) override {
if (domain.isGoal(startState)) {
// Goal is already reached
return std::vector<ActionBundle>();
}
// Learning phase
if (openList.isNotEmpty()) {
learn(terminationChecker);
}
const auto bestNode = explore(startState, terminationChecker);
return extractPath(bestNode, nodes[startState]);
}
private:
class Edge;
class Node {
public:
Node(Node* parent,
const State& state,
Action action,
Cost g,
Cost h,
bool open,
unsigned int iteration = 0)
: parent{parent},
state{state},
action{std::move(action)},
g{g},
h{h},
open{open},
iteration{iteration} {}
Cost f() const { return g + h; }
unsigned long hash() const { return state.hash(); }
bool operator==(const Node& node) const { return state == node.state; }
std::string toString() const {
std::ostringstream stream;
stream << "s: " << state << " g: " << g << " h: " << h << " f: " << f()
<< " a: " << action << " p: ";
if (parent == nullptr) {
stream << "None";
} else {
stream << parent->state;
}
stream << (open ? " Open" : " Not Open");
return stream.str();
}
/** Index used by the priority queue */
mutable unsigned int index;
/** Parent node */
Node* parent;
/** Internal state */
const State state;
/** Action that led to the current node from the parent node */
Action action;
/** Cost from the root node */
Cost g;
/** Heuristic cost of the node */
Cost h;
/** True if the node is in the open list */
bool open;
/** Last iteration when the node was updated */
unsigned int iteration;
/** List of all the predecessors that were discovered in the current
* exploration phase. */
std::vector<Edge> predecessors;
};
class Edge {
public:
Edge(Node* predecessor, Action action, Cost actionCost)
: predecessor{predecessor}, action{action}, actionCost{actionCost} {}
Node* predecessor;
const Action action;
const Cost actionCost;
};
void learn(TerminationChecker& terminationChecker) {
++iterationCounter;
// Reorder the open list based on the heuristic values
openList.reorder(hComparator);
while (!terminationChecker.reachedTermination() && openList.isNotEmpty()) {
auto currentNode = popOpenList();
currentNode->iteration = iterationCounter;
Cost currentHeuristicValue = currentNode->h;
// update heuristic actionDuration of each predecessor
for (auto predecessor : currentNode->predecessors) {
Node* predecessorNode = predecessor.predecessor;
if (predecessorNode->iteration == iterationCounter &&
!predecessorNode->open) {
// This node was already learned and closed in the current iteration
continue;
// TODO Review this. This could be incorrect if the action costs are
// not uniform
}
if (!predecessorNode->open) {
// This node is not open yet, because it was not visited in the
// current planning iteration
predecessorNode->h = currentHeuristicValue + predecessor.actionCost;
assert(predecessorNode->iteration == iterationCounter - 1);
predecessorNode->iteration = iterationCounter;
addToOpenList(*predecessorNode);
} else if (predecessorNode->h >
currentHeuristicValue + predecessor.actionCost) {
// This node was visited in this learning phase, but the current path
// is better then the previous
predecessorNode->h = currentHeuristicValue + predecessor.actionCost;
openList.update(*predecessorNode);
}
}
}
}
const Node* explore(const State& startState,
TerminationChecker& terminationChecker) {
++iterationCounter;
clearOpenList();
openList.reorder(fComparator);
Planner::incrementGeneratedNodeCount();
Node*& startNode = nodes[startState];
if (startNode == nullptr) {
startNode = nodePool.construct(Node{nullptr,
startState,
Action(),
0,
domain.heuristic(startState),
true});
} else {
startNode->g = 0;
startNode->action = Action();
startNode->predecessors.clear();
startNode->parent = nullptr;
}
startNode->iteration = iterationCounter;
addToOpenList(*startNode);
while (!terminationChecker.reachedTermination() && openList.isNotEmpty()) {
Node* const listTopNode = topOpenList();
if (domain.isGoal(listTopNode->state)) {
return listTopNode;
}
Node* const currentNode = popOpenList();
terminationChecker.notifyExpansion();
expandNode(currentNode);
}
return openList.top();
}
void expandNode(Node* sourceNode) {
Planner::incrementExpandedNodeCount();
for (auto successor : domain.successors(sourceNode->state)) {
auto successorState = successor.state;
Node*& successorNode = nodes[successorState];
if (successorNode == nullptr) {
successorNode = createNode(sourceNode, successor);
}
// If the node is outdated it should be updated.
if (successorNode->iteration != iterationCounter) {
successorNode->iteration = iterationCounter;
successorNode->predecessors.clear();
successorNode->g = std::numeric_limits<Cost>::max();
successorNode->open =
false; // It is not on the open list yet, but it will be
// parent, action, and actionCost is outdated too, but not relevant.
}
// Add the current state as the predecessor of the child state
successorNode->predecessors.emplace_back(
sourceNode, successor.action, successor.actionCost);
// Skip if we got back to the parent
if (sourceNode->parent != nullptr &&
successorState == sourceNode->parent->state) {
continue;
}
// only generate those state that are not visited yet or whose cost value
// are lower than this path
Cost successorGValueFromCurrent{sourceNode->g + successor.actionCost};
if (successorNode->g > successorGValueFromCurrent) {
successorNode->g = successorGValueFromCurrent;
successorNode->parent = sourceNode;
successorNode->action = successor.action;
if (!successorNode->open) {
addToOpenList(*successorNode);
} else {
openList.update(*successorNode);
}
}
}
}
Node* createNode(Node* sourceNode, SuccessorBundle<Domain> successor) {
Planner::incrementGeneratedNodeCount();
Node* newNode = nodePool.construct(Node{sourceNode,
successor.state,
successor.action,
std::numeric_limits<Cost>::max(),
domain.heuristic(successor.state),
true});
nodes[newNode->state] = newNode;
return newNode;
}
void clearOpenList() {
openList.forEach([](Node* node) { node->open = false; });
openList.clear();
}
Node* topOpenList() const {
if (openList.isEmpty()) {
throw MetronomeException("Open list was empty, goal not reachable");
}
return openList.top();
}
Node* popOpenList() {
if (openList.isEmpty()) {
throw MetronomeException("Open list was empty, goal not reachable.");
}
Node* node = openList.pop();
node->open = false;
return node;
}
void addToOpenList(Node& node) {
node.open = true;
openList.push(node);
}
std::vector<ActionBundle> extractPath(const Node* targetNode,
const Node* sourceNode) const {
if (targetNode == sourceNode) {
// LOG(INFO) << "We didn't move:" <<
// sourceNode->toString();
return std::vector<ActionBundle>();
}
std::vector<ActionBundle> actionBundles;
auto currentNode = targetNode;
while (currentNode != sourceNode) {
// The g difference of the child and the parent gives the action cost from
// the parent
actionBundles.emplace_back(currentNode->action,
currentNode->g - currentNode->parent->g);
currentNode = currentNode->parent;
}
std::reverse(actionBundles.begin(), actionBundles.end());
return actionBundles;
}
static int fComparator(const Node& lhs, const Node& rhs) {
if (lhs.f() < rhs.f()) return -1;
if (lhs.f() > rhs.f()) return 1;
if (lhs.g > rhs.g) return -1;
if (lhs.g < rhs.g) return 1;
return 0;
}
static int hComparator(const Node& lhs, const Node& rhs) {
if (lhs.h < rhs.h) return -1;
if (lhs.h > rhs.h) return 1;
return 0;
}
const Domain& domain;
PriorityQueue<Node> openList{Memory::OPEN_LIST_SIZE, fComparator};
std::unordered_map<State, Node*, typename metronome::Hash<State>> nodes{};
ObjectPool<Node, Memory::NODE_LIMIT> nodePool;
unsigned int iterationCounter{0};
};
} // namespace metronome
|
dcb9fca74ca2358e1ae35d8696937ab0baec8bd2 | dc477621568aa9b467c5d62a71b57e7d9c5ba953 | /Practice/Autum/C++/23. Заголовочные файлы/23.1/Header2.h | 3d6b4fb39dd1e85da291d93459567d042bba2df4 | [] | no_license | drakonorozdeniy/Programming | 880f2b570f9db5e7742abe5d769139103d3069cd | da3a555e20618b7952009df1c14a3cd80b7bec9e | refs/heads/master | 2023-05-10T07:41:01.272366 | 2021-06-11T19:02:12 | 2021-06-11T19:02:12 | 297,081,372 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 366 | h | Header2.h | #ifndef F_4
#define F_4
#include <iostream>
#include "Header.h"
using namespace std;
double sinx(double x, double k) {
int l;
double sum, m;
sum = x;
l = 1;
for (int i = 3; i < (2 * k + 1); i = i + 2) {
if (l % 2 == 0) {
m = pow(x, i) / factorial(i);
}
else {
m = -1 * (pow(x, i) / factorial(i));
}
l++;
sum = sum + m;
}
return sum;
}
#endif |
fcbcc1ec0d007feaadb4c28fe82aababff691320 | 22212b6400346c5ec3f5927703ad912566d3474f | /src/Plugins/SpinePlugin/LoaderResourceSpineAtlasDefault.cpp | d7a09d0ca42b81c73341f1f402a71fed701d8cdd | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | irov/Mengine | 673a9f35ab10ac93d42301bc34514a852c0f150d | 8118e4a4a066ffba82bda1f668c1e7a528b6b717 | refs/heads/master | 2023-09-04T03:19:23.686213 | 2023-09-03T16:05:24 | 2023-09-03T16:05:24 | 41,422,567 | 46 | 17 | MIT | 2022-09-26T18:41:33 | 2015-08-26T11:44:35 | C++ | UTF-8 | C++ | false | false | 2,484 | cpp | LoaderResourceSpineAtlasDefault.cpp | #include "LoaderResourceSpineAtlasDefault.h"
#include "Interface/ResourceBankInterface.h"
#include "ResourceSpineAtlasDefault.h"
#include "Kernel/AssertionMemoryPanic.h"
#include "Metacode/Metacode.h"
namespace Mengine
{
//////////////////////////////////////////////////////////////////////////
LoaderResourceSpineAtlasDefault::LoaderResourceSpineAtlasDefault()
{
}
//////////////////////////////////////////////////////////////////////////
LoaderResourceSpineAtlasDefault::~LoaderResourceSpineAtlasDefault()
{
}
//////////////////////////////////////////////////////////////////////////
bool LoaderResourceSpineAtlasDefault::load( const LoadableInterfacePtr & _loadable, const Metabuf::Metadata * _meta )
{
ResourceSpineAtlasDefault * resource = _loadable.getT<ResourceSpineAtlasDefault *>();
const ConstString & groupName = resource->getGroupName();
const Metacode::Meta_Data::Meta_DataBlock::Meta_ResourceSpineAtlas * metadata
= static_cast<const Metacode::Meta_Data::Meta_DataBlock::Meta_ResourceSpineAtlas *>(_meta);
const ContentInterfacePtr & content = resource->getContent();
metadata->getm_File_Path( content.get(), &ContentInterface::setFilePath );
metadata->getm_File_Converter( content.get(), &ContentInterface::setConverterType );
ResourceBankInterface * resourceBank = resource->getResourceBank();
const Metacode::Meta_Data::Meta_DataBlock::Meta_ResourceSpineAtlas::VectorMeta_Image & includes_images = metadata->get_Includes_Image();
for( const Metacode::Meta_Data::Meta_DataBlock::Meta_ResourceSpineAtlas::Meta_Image & meta_image : includes_images )
{
const ConstString & name = meta_image.get_Name();
const ConstString & resourceName = meta_image.get_Resource();
const ResourceImagePtr & resourceImage = resourceBank->getResource( groupName, resourceName );
MENGINE_ASSERTION_MEMORY_PANIC( resourceImage, "'%s' category '%s' group '%s' invalid get image resource '%s'"
, resource->getName().c_str()
, content->getFileGroup()->getName().c_str()
, resource->getGroupName().c_str()
, resourceName.c_str()
);
resource->addResourceImageDesc( name, resourceImage );
}
return true;
}
//////////////////////////////////////////////////////////////////////////
}
|
7bf41af0ae8c12eb015cdfeb8845e5bbe00c4114 | 1786f51414ac5919b4a80c7858e11f7eb12cb1a9 | /USST/7/2_std.cpp | 88d85d81a0ced66bc1647fac058c281e774e0fa1 | [] | no_license | SetsunaChyan/OI_source_code | 206c4d7a0d2587a4d09beeeb185765bca0948f27 | bb484131e02467cdccd6456ea1ecb17a72f6e3f6 | refs/heads/master | 2020-04-06T21:42:44.429553 | 2019-12-02T09:18:54 | 2019-12-02T09:18:54 | 157,811,588 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 343 | cpp | 2_std.cpp | #include <cstdio>
#include <memory.h>
long long a[1001];
long long f(int x)
{
if(a[x]) return a[x];
for(int i=0;i<=x/2;i++)
a[x]+=f(i);
return a[x];
}
int main()
{
freopen("data.in","r",stdin);
freopen("data1.out","w",stdout);
int x;
memset(a,0,sizeof(a));
a[0]=1;
while(~scanf("%d",&x))
printf("%lld\n",f(x));
return 0;
} |
83eff493cd25662539ab9436d1dc9ed5a90d63d0 | d03d02ca8e6866b22233988402abbb04aa2a69e0 | /src/RBD_Button.h | 18736692fe09a45a3ba6286a946313d0630abf2b | [
"MIT"
] | permissive | alextaujenis/RBD_Button | a487798e7a7c7dc60f7a7813c10f4fa80a42ce1a | 06c8cc1d8faf4cf2e2d3f2489e5f87b6f722e87d | refs/heads/master | 2021-07-15T03:05:12.208449 | 2020-06-07T18:24:24 | 2020-06-07T18:24:24 | 45,164,680 | 32 | 10 | MIT | 2020-06-07T18:20:05 | 2015-10-29T06:29:45 | C++ | UTF-8 | C++ | false | false | 1,055 | h | RBD_Button.h | // Arduino RBD Button Library v2.2.1 - Read and debounce buttons and switches.
// https://github.com/alextaujenis/RBD_Button
// Copyright (c) 2015 Alex Taujenis - MIT License
#ifndef RBD_BUTTON_H
#define RBD_BUTTON_H
#include <Arduino.h>
#include <RBD_Timer.h> // https://github.com/alextaujenis/RBD_Timer
namespace RBD {
class Button {
public:
Button(int pin); // constructor: input pullup enabled by default
Button(int pin, bool input_pullup); // overloaded constructor: flag available to disable input pullup
void setDebounceTimeout(unsigned long value);
bool isPressed();
bool isReleased();
bool onPressed();
bool onReleased();
void invertReading();
private:
int _pin;
bool _invert = true;
bool _state = false;
bool _temp_state = false;
bool _has_been_pressed = false;
bool _has_been_released = false;
void _inputPullup();
void _disableInputPullup();
void _updateState();
Timer _debounce_timer;
};
}
#endif
|
418ca19600ab84d74cafca61eff12ee88c1c7a0a | 177ecf47aaf03af0fcfaffd69dcefed720fd0773 | /Compiladores/Compiladores/ATWSin.cpp | 916e8de083cf26216c8195aa33799e07333962da | [] | no_license | washingtonsk8/atwcompiler | 6416781d6862915f8fae44c03b34bb10ada57a43 | c590663fef03f2f0cffe84459f5cc7c2a9c06c68 | refs/heads/master | 2016-08-07T08:20:45.838806 | 2012-11-22T16:47:07 | 2012-11-22T16:47:07 | 41,867,745 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 41,430 | cpp | ATWSin.cpp | #include "ATW_MemoryManager.h"
#include "ATWSin.h"
#include "Globals.h"
#include "FileHelper.h"
#include "ERRO_DEF.h"
#include "ARS_PrinterHelper.h"
#include <Windows.h>
#include "ATW_Helper.h"
#include "ATWLabelManager.h"
//---------------------------------------------------------------------------------------------------------------------
using namespace ARS_PRINTER_HELPER;
using namespace MemoryManager;
using namespace ATW_HELPER;
using namespace LabelController;
//---------------------------------------------------------------------------------------------------------------------
ATWSin::ATWSin(void){
}
//---------------------------------------------------------------------------------------------------------------------
ATWSin::~ATWSin(void){
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::CT(Token _Token){
if(_LexAnalyzer==NULL)
_eManager->callHandlers(this->getGroupID(), NULL_ARGUMENT, NULL);
Token _cTok = _CurrentToken._Token;
string _cLex = _CurrentToken._Lex;
int _cLexLine = _CurrentToken._LINE;
if(_cTok != _Token){
{//ERROs
void* _Param[2] = {(void*)_cLexLine,(void*)_cLex.c_str()};
if (_cTok == ENDFILE)
_eManager->callHandlers(this->getGroupID(), UNEXPECTED_FILE_END, (void**)_cLexLine);//Fim de arquivo não esperado
_eManager->callHandlers(this->getGroupID(), UNEXPECTED_TOKEN, _Param);//Erro de token não esperado
}
}
//------------------------------------------------------------
/*REF ANTERIOR PARA POUPAR VARIÁVEIS*/
_PreviousToken = _CurrentToken;
/*REF ANTERIOR PARA POUPAR VARIÁVEIS*/
//------------------------------------------------------------
if(_Parallel == PARALLEL)
_CurrentToken = _tBuffer->removeElement();
else
_CurrentToken = _LexAnalyzer->getToken();
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::initialize(int _Argc, void** _Argv){
if(_Argc < 3)
_eManager->callHandlers(this->getGroupID(), INSUFFICIENT_ARGUMENTS, NULL);
this->setGroupID(COMPILER_GROUP);
_LexAnalyzer = (ATWLex*)_Argv[0];
_Sem = (ATWSem*)_Argv[1];
_cg = new CodeGeneratorModule();
void* _args[1] = {"saida.asm"};
_cg->initialize(1, _args);
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::Run(int _Flag, NORMAL_BUNDLE* _nBundleP){
_Parallel = _Flag;
if(_LexAnalyzer==NULL)
_eManager->callHandlers(this->getGroupID(), NULL_ARGUMENT, NULL);
if(_Parallel == PARALLEL){
NORMAL_BUNDLE* _nBundle = _nBundleP;
_tBuffer = _nBundle->_tBuffer;
_CurrentToken = _tBuffer->removeElement();
}
else{
_CurrentToken = _LexAnalyzer->getToken();
}
_PreviousToken = _CurrentToken;
Start();
if(_CurrentToken._Token != ENDFILE){
void* _Param[2] = {(void*)_CurrentToken._LINE,(void*)_CurrentToken._Lex};
_eManager->callHandlers(this->getGroupID(), UNEXPECTED_TOKEN, _Param);
}
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::Start(){
while(_CurrentToken._Token == DPONTO || _CurrentToken._Token == DCOR || _CurrentToken._Token == DLUZ ||
_CurrentToken._Token == DFACE || _CurrentToken._Token == DOBJETO || _CurrentToken._Token == DVAR ||
_CurrentToken._Token == DCONST || _CurrentToken._Token == EXP_END || _CurrentToken._Token == INICIO ||
_CurrentToken._Token == ENDFILE){
switch(_CurrentToken._Token){
case DPONTO:
CT(DPONTO);
CT(EXP_END);
DPontoD();
break;
case DCOR:
CT(DCOR);
CT(EXP_END);
DColorD();
break;
case DLUZ:
CT(DLUZ);
CT(EXP_END);
DLuzD();
break;
case DFACE:
CT(DFACE);
CT(EXP_END);
DFaceD();
break;
case DOBJETO:
CT(DOBJETO);
CT(EXP_END);
DObjD();
break;
case DVAR:
CT(DVAR);
CT(EXP_END);
DVarD();
break;
case DCONST:
CT(DCONST);
CT(EXP_END);
DConstD();
break;
case EXP_END:
CT(EXP_END);
break;
case INICIO:
_cg->write("\n******************************** Commands Start ********************************\n");
_memory->GCXSetBaseTempAddress();//45
Block();
_cg->write("\n******************************** Commands Finish *******************************\n");
_cg->HLT();
_cg->flush();
_cg->flushBin();
return;
case ENDFILE:
exit (0);//Sucesso!
break;
}//end swtich
}//end while
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::DPontoD(){
do{
CT(ID);
char _IdLex[255];
strcpy_s(_IdLex, _PreviousToken._Lex);
_Sem->unicidadeAlreadyDeclared(_PreviousToken, CLASSE_PONTO);//(2) - SEMÂNTICO
CT(EQ);
CT(LPAREN);
char* _op = "";
if(_CurrentToken._Token == PLUS){
CT(PLUS);
}
else if(_CurrentToken._Token == MINUS){
CT(MINUS);
_op = "-";
}
CT(CONSTANT);
char _str[255];
strcpy_s(_str, _op);
strcat_s(_str, _PreviousToken._Lex);
if(_PreviousToken._Tipo == TIPO_INTEIRO)
{
strcat_s(_str, ".0");
}
_cg->STIF(_str, _Sem->updateIDAddress(_IdLex, _memory->ATWMalloc(TIPO_REAL)), _IdLex);//36
memset(_str, 0, sizeof(char)*255);
CT(COMMA);
_op = "";
if(_CurrentToken._Token == PLUS){
CT(PLUS);
}
else if(_CurrentToken._Token == MINUS){
CT(MINUS);
_op = "-";
}
CT(CONSTANT);
strcpy_s(_str, _op);
strcat_s(_str, _PreviousToken._Lex);
if(_PreviousToken._Tipo == TIPO_INTEIRO)
{
strcat_s(_str, ".0");
}
_cg->STIF(_str, _memory->ATWMalloc(TIPO_REAL));//37
memset(_str, 0, sizeof(char)*255);
CT(COMMA);
_op = "";
if(_CurrentToken._Token == PLUS){
CT(PLUS);
}
else if(_CurrentToken._Token == MINUS){
CT(MINUS);
_op = "-";
}
CT(CONSTANT);
strcpy_s(_str, _op);
strcat_s(_str, _PreviousToken._Lex);
if(_PreviousToken._Tipo == TIPO_INTEIRO)
{
strcat_s(_str, ".0");
}
_cg->STIF(_str, _memory->ATWMalloc(TIPO_REAL));//37
memset(_str, 0, sizeof(char)*255);
CT(RPAREN);
CT(EXP_END);
_cg->flush();
_cg->flushBin();
}while(_CurrentToken._Token == ID);
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::DLuzD(){
do{
CT(ID);
char _IdLex[255], _str[255];
strcpy_s(_IdLex, _PreviousToken._Lex);
_Sem->unicidadeAlreadyDeclared(_PreviousToken, CLASSE_LUZ);//(2) - SEMÂNTICO
CT(EQ);
CT(LPAREN);
char* _op = "";
if(_CurrentToken._Token == PLUS){
CT(PLUS);
}
else if(_CurrentToken._Token == MINUS){
CT(MINUS);
_op = "-";
}
CT(CONSTANT);
strcpy_s(_str, _op);
strcat_s(_str, _PreviousToken._Lex);
if(_PreviousToken._Tipo == TIPO_INTEIRO)
{
strcat_s(_str, ".0");
}
_cg->STIF(_str, _Sem->updateIDAddress(_IdLex, _memory->ATWMalloc(TIPO_REAL)), _IdLex);//36
CT(COMMA);
_op = "";
if(_CurrentToken._Token == PLUS){
CT(PLUS);
}
else if(_CurrentToken._Token == MINUS){
CT(MINUS);
_op = "-";
}
CT(CONSTANT);
strcpy_s(_str, _op);
strcat_s(_str, _PreviousToken._Lex);
if(_PreviousToken._Tipo == TIPO_INTEIRO)
{
strcat_s(_str, ".0");
}
_cg->STIF(_str, _memory->ATWMalloc(TIPO_REAL));//37
CT(COMMA);
_op = "";
if(_CurrentToken._Token == PLUS){
CT(PLUS);
}
else if(_CurrentToken._Token == MINUS){
CT(MINUS);
_op = "-";
}
CT(CONSTANT);
strcpy_s(_str, _op);
strcat_s(_str, _PreviousToken._Lex);
if(_PreviousToken._Tipo == TIPO_INTEIRO)
{
strcat_s(_str, ".0");
}
_cg->STIF(_str, _memory->ATWMalloc(TIPO_REAL));//37
CT(RPAREN);
CT(EXP_END);
_cg->flush();
_cg->flushBin();
}while(_CurrentToken._Token == ID);
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::DColorD(){
do{
CT(ID);
char _IdLex[255];
strcpy_s(_IdLex, _PreviousToken._Lex);
_Sem->unicidadeAlreadyDeclared(_PreviousToken, CLASSE_COR);//(2) - SEMÂNTICO
CT(EQ);
CT(CONSTANT);
_Sem->TypeVerify(_PreviousToken, _PreviousToken._Tipo, TIPO_INTEIRO);//(34) - SEMÂNTICO
_cg->STI(_PreviousToken._Lex, _Sem->updateIDAddress(_IdLex, _memory->ATWMalloc(TIPO_INTEIRO)), _IdLex);//38
CT(COMMA);
CT(CONSTANT);
_Sem->TypeVerify(_PreviousToken, _PreviousToken._Tipo, TIPO_INTEIRO);//(34) - SEMÂNTICO
_Sem->ValRestriction(_PreviousToken, 64, VR_GREATER);//(35) - SEMÂNTICO
_cg->STI(_PreviousToken._Lex, _memory->ATWMalloc(TIPO_INTEIRO));//39
CT(COMMA);
CT(CONSTANT);
_Sem->TypeVerify(_PreviousToken, _PreviousToken._Tipo, TIPO_INTEIRO);//(34) - SEMÂNTICO
_Sem->ValRestriction(_PreviousToken, 64, VR_GREATER);//(35) - SEMÂNTICO
_cg->STI(_PreviousToken._Lex, _memory->ATWMalloc(TIPO_INTEIRO));//39
CT(COMMA);
CT(CONSTANT);
_Sem->TypeVerify(_PreviousToken, _PreviousToken._Tipo, TIPO_INTEIRO);//(34) - SEMÂNTICO
_Sem->ValRestriction(_PreviousToken, 64, VR_GREATER);//(35) - SEMÂNTICO
_cg->STI(_PreviousToken._Lex, _memory->ATWMalloc(TIPO_INTEIRO));//39
CT(COMMA);
CT(CONSTANT);
_Sem->TypeVerify(_PreviousToken, _PreviousToken._Tipo, TIPO_INTEIRO);//(34) - SEMÂNTICO
_Sem->ValRestriction(_PreviousToken, 64, VR_GREATER);//(35) - SEMÂNTICO
_cg->STI(_PreviousToken._Lex, _memory->ATWMalloc(TIPO_INTEIRO));//39
CT(COMMA);
CT(CONSTANT);
_Sem->TypeVerify(_PreviousToken, _PreviousToken._Tipo, TIPO_INTEIRO);//(34) - SEMÂNTICO
_Sem->ValRestriction(_PreviousToken, 64, VR_GREATER);//(35) - SEMÂNTICO
_cg->STI(_PreviousToken._Lex, _memory->ATWMalloc(TIPO_INTEIRO));//39
CT(COMMA);
CT(CONSTANT);
_Sem->TypeVerify(_PreviousToken, _PreviousToken._Tipo, TIPO_INTEIRO);//(34) - SEMÂNTICO
_Sem->ValRestriction(_PreviousToken, 64, VR_GREATER);//(35) - SEMÂNTICO
_cg->STI(_PreviousToken._Lex, _memory->ATWMalloc(TIPO_INTEIRO));//39
CT(EXP_END);
}while(_CurrentToken._Token == ID);
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::DFaceD(){
do{
int _pointCount = -1;//40
Address* _cAddress = 0;//43
CT(ID);
_Sem->unicidadeAlreadyDeclared(_PreviousToken, CLASSE_FACE);//(2) - SEMÂNTICO
_cAddress = _cg->STI("LIXO", _Sem->updateIDAddress(_PreviousToken._Lex, _memory->ATWMalloc(TIPO_INTEIRO)), _PreviousToken._Lex);//40
CT(EQ);
CT(ID);
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->classVerify(_PreviousToken, CLASSE_COR);//(5) - SEMÂNTICO
_cg->STI(ATWgetCStr(_PreviousToken._End), _memory->ATWMalloc(TIPO_INTEIRO));//41
_pointCount++;
CT(COMMA);
CT(ID);
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->classVerify(_PreviousToken, CLASSE_PONTO);//(3) - SEMÂNTICO
_cg->STI(ATWgetCStr(_PreviousToken._End), _memory->ATWMalloc(TIPO_INTEIRO));//41
_pointCount++;
CT(COMMA);
CT(ID);
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->classVerify(_PreviousToken, CLASSE_PONTO);//(3) - SEMÂNTICO
_cg->STI(ATWgetCStr(_PreviousToken._End), _memory->ATWMalloc(TIPO_INTEIRO));//41
_pointCount++;
CT(COMMA);
CT(ID);
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->classVerify(_PreviousToken, CLASSE_PONTO);//(3) - SEMÂNTICO
_cg->STI(ATWgetCStr(_PreviousToken._End), _memory->ATWMalloc(TIPO_INTEIRO));//41
_pointCount++;
while(_CurrentToken._Token == COMMA){
CT(COMMA);
CT(ID);
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->classVerify(_PreviousToken, CLASSE_PONTO);//(3) - SEMÂNTICO
_cg->STI(ATWgetCStr(_PreviousToken._End), _memory->ATWMalloc(TIPO_INTEIRO));//41
_pointCount++;
}
CT(EXP_END);
_cg->fixCode(_cAddress[0]+1, _cAddress[1]+1, ATWgetCStr(_pointCount));//42
_cg->flush();
_cg->flushBin();
}while(_CurrentToken._Token == ID);
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::DObjD(){
do{
int _objectCount = 0;
Address* _cAddress = 0;
CT(ID);
char _IdLex[255];
strcpy_s(_IdLex, _PreviousToken._Lex);
_Sem->unicidadeAlreadyDeclared(_PreviousToken, CLASSE_OBJETO);//(2) - SEMÂNTICO
_cAddress = _cg->STI("LIXO", _Sem->updateIDAddress(_PreviousToken._Lex, _memory->ATWMalloc(TIPO_INTEIRO)), _IdLex);//43
_cg->STIF("1.0", _memory->ATWMalloc(TIPO_REAL));//43
CT(EQ);
CT(ID);
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->classVerify(_PreviousToken, CLASSE_FACE);//(6) - SEMÂNTICO
_cg->STI(ATWgetCStr(_PreviousToken._End), _memory->ATWMalloc(TIPO_INTEIRO));//41
_objectCount++;
while(_CurrentToken._Token == COMMA){
CT(COMMA);
CT(ID);
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->classVerify(_PreviousToken, CLASSE_FACE);//(6) - SEMÂNTICO
_cg->STI(ATWgetCStr(_PreviousToken._End), _memory->ATWMalloc(TIPO_INTEIRO));//41
_objectCount++;
}
CT(EXP_END);
_cg->fixCode(_cAddress[0]+1, _cAddress[1]+1, ATWgetCStr(_objectCount));//44
_cg->flush();
_cg->flushBin();
}while(_CurrentToken._Token == ID);
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::DVarD(){
while(_CurrentToken._Token == INTEIRO || _CurrentToken._Token == REAL){
Type _tipo = TIPO_VAZIO; //(10) - SEMÂNTICO
if(_CurrentToken._Token == INTEIRO){
CT(INTEIRO);
_tipo = TIPO_INTEIRO; //(10) - SEMÂNTICO
}
else{
CT(REAL);
_tipo = TIPO_REAL; //(11) - SEMÂNTICO
}
CT(ID);
_Sem->unicidadeAlreadyDeclared(_PreviousToken, CLASSE_VAR);//(2) - SEMÂNTICO
_Sem->setType(_PreviousToken, _tipo); //(12) - SEMÂNTICO
_Sem->updateIDAddress(_PreviousToken._Lex, _memory->ATWMalloc(_tipo));//12
while(_CurrentToken._Token == COMMA){
CT(COMMA);
CT(ID);
_Sem->unicidadeAlreadyDeclared(_PreviousToken, CLASSE_VAR);//(2) - SEMÂNTICO
_Sem->setType(_PreviousToken, _tipo); //(12) - SEMÂNTICO
_Sem->updateIDAddress(_PreviousToken._Lex, _memory->ATWMalloc(_tipo));//12
}
CT(EXP_END);
}
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::DConstD(){
while(_CurrentToken._Token == ID){
CT(ID);
char _IdLex[255];
strcpy_s(_IdLex, _PreviousToken._Lex);
ATW_BUFF_ELEMENT _IdRef = _PreviousToken; // (13) - SEMÂNTICO - AUXILIAR
_Sem->unicidadeAlreadyDeclared(_PreviousToken, CLASSE_CONST);//(2) - SEMÂNTICO
CT(EQ);
char* _op = "";
if(_CurrentToken._Token == PLUS){
CT(PLUS);
}
else if(_CurrentToken._Token == MINUS){
CT(MINUS);
_op = "-";
}
CT(CONSTANT);
_Sem->sSetType(_IdRef, _PreviousToken);//(13) - SEMÂNTICO
int _memDesloc = _Sem->updateIDAddress(_IdLex, _memory->ATWMalloc(_PreviousToken._Tipo));//13
char _str[255];
strcpy_s(_str, _op);
strcat_s(_str, _PreviousToken._Lex);
Type _type = _PreviousToken._Tipo;
if(_type == TIPO_INTEIRO)
_cg->STI(_str, _memDesloc, _IdLex);
else
_cg->STIF(_str, _memDesloc, _IdLex);
CT(EXP_END);
_cg->flush();
_cg->flushBin();
}
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::Block(){
if(_CurrentToken._Token == INICIO){
CT(INICIO);
CT(EXP_END);
while( _CurrentToken._Token == EXP_END || _CurrentToken._Token == ID || _CurrentToken._Token == ENQUANTO ||
_CurrentToken._Token == ESCALA || _CurrentToken._Token == PAUSA || _CurrentToken._Token == ROTTRANS ||
_CurrentToken._Token == SE || _CurrentToken._Token == LUZ){
Command();
}
CT(FIM);
CT(EXP_END);
}else{
void* _Param[2] = {(void*)_CurrentToken._LINE,(void*)_CurrentToken._Lex};
_eManager->callHandlers(this->getGroupID(), UNEXPECTED_TOKEN, _Param);
}
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::Command(){
Type _ExpType, _Exp1Type, _Exp2Type, _Exp3Type, _Exp4Type, _Exp5Type;
Address _ExpAdr = 0, _Exp1Adr = 0, _Exp2Adr = 0, _Exp3Adr = 0, _Exp4Adr = 0, _Exp5Adr = 0;//(59) - COD
ATW_BUFF_ELEMENT _idAux;//(32) - SEMÂNTICO
char* _CRotStart, *_CRotEnd, *_CRotFalse;
Address* _FixFalse = (Address*) malloc(sizeof(Address)*2);
memset(_FixFalse, 0, sizeof(Address));
Address* _FixEnd = (Address*) malloc(sizeof(Address)*2);
memset(_FixEnd, 0, sizeof(Address));
switch(_CurrentToken._Token){
case ID:
CT(ID);
_idAux = _PreviousToken;//(32) - SEMÂNTICO
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->classVerify(_PreviousToken, CLASSE_VAR);//(8) - SEMÂNTICO
CT(EQ);
_memory->ATWResetTemp();//(46) - COD
Exp(_ExpType, _ExpAdr);
//(31) - SEMÂNTICO ------------------------------------------------------------------
//(31) - COD ------------------------------------------------------------------------
_Sem->DiffTypeVerify(_PreviousToken, _ExpType, TIPO_LOGICO);//Se ExpTipo != tipo-logico entao...
if(_idAux._Tipo == TIPO_INTEIRO)
{
_Sem->TypeVerify(_PreviousToken, _ExpType, TIPO_INTEIRO);//Se ExpTipo = tipo-inteiro entao...
_cg->LOD("A", _ExpAdr, "ID = EXP");
_cg->STO("A", _idAux._End);
}//end if
else
{
if(_ExpType == TIPO_INTEIRO)
{
_cg->LOD("A", _ExpAdr, "ID = EXP");
_cg->CNV("A", "A");
_cg->STOF("A", _idAux._End);
}
else//TIPO_REAL
{
_cg->LODF("A", _ExpAdr, "ID = EXP");
_cg->STOF("A", _idAux._End);
}
}//end else
//(31) - COD ------------------------------------------------------------------------
//(31) - SEMÂNTICO ------------------------------------------------------------------
CT(EXP_END);
break;
case ENQUANTO:
CT(ENQUANTO);
//(32) - COD -------------------------------------------------------------------------
_CRotStart = ATWNovoRot();
_CRotEnd = ATWNovoRot();
_cg->writeRot(_CRotStart);
_memory->ATWResetTemp();//(46) - COD
Exp(_ExpType, _ExpAdr);//(32) - SEMÂNTICO
_Sem->TypeVerify(_PreviousToken, _ExpType, TIPO_LOGICO);//(32) - SEMÂNTICO
_cg->LOD("A", _ExpAdr);
_FixEnd = _cg->BZR("A", _CRotEnd);
//(32) - COD -------------------------------------------------------------------------
CT(FACA);
if(_CurrentToken._Token == INICIO)
Block();
else if(_CurrentToken._Token == ID || _CurrentToken._Token == ENQUANTO || _CurrentToken._Token == ESCALA ||
_CurrentToken._Token == PAUSA || _CurrentToken._Token == ROTTRANS || _CurrentToken._Token == SE)
Command();
else
{
void* _Param[2] = {(void*)_CurrentToken._LINE,(void*)_CurrentToken._Lex};
_eManager->callHandlers(this->getGroupID(), UNEXPECTED_TOKEN, _Param);
}
//(60) - COD -------------------------------------------------------------------------
_cg->JMP(_CRotStart);
_cg->writeRot(_CRotEnd, _FixEnd[1]+2);
//(60) - COD -------------------------------------------------------------------------
break;
case ESCALA:
CT(ESCALA);
CT(ID);
_idAux = _PreviousToken;//(57) - COD
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->classVerify(_PreviousToken, CLASSE_OBJETO);//(7) - SEMÂNTICO
CT(COMMA);
_memory->ATWResetTemp();//(46) - COD
Exp(_ExpType, _ExpAdr);//(33) - SEMÂNTICO
_Sem->DiffTypeVerify(_PreviousToken, _ExpType, TIPO_LOGICO);//(33) - SEMÂNTICO
//(57) - COD -------------------------------------------------------------------------
if(_ExpType == TIPO_INTEIRO)
{
_cg->LOD("B", _ExpAdr, "ESCALA ID EXP");
_cg->CNV("A", "B");
}//end if
else
{
_cg->LODF("A", _ExpAdr, "ESCALA ID EXP");
}//end else
_cg->LDI("A", ATWgetCStr(_idAux._End));
_cg->ESC("A", "A", "FIM ESCALA");
//(57) - COD -------------------------------------------------------------------------
CT(EXP_END);
break;
case PAUSA:
CT(PAUSA);
_memory->ATWResetTemp();//(46) - COD
Exp(_ExpType, _ExpAdr);//(33) - SEMÂNTICO
_Sem->DiffTypeVerify(_PreviousToken, _ExpType, TIPO_LOGICO);//(33) - SEMÂNTICO
//(58) - COD -------------------------------------------------------------------------
if(_ExpType == TIPO_INTEIRO)
{
_cg->LOD("A", _ExpAdr, "PAUSA EXP");
_cg->CNV("A", "A");
}//end if
else
{
_cg->LODF("A", _ExpAdr, "PAUSA EXP");
}//end else
_cg->TME("A", "FIM PAUSA");
//(58) - COD -------------------------------------------------------------------------
CT(EXP_END);
break;
case LUZ:
CT(LUZ);
CT(ID);
_idAux = _PreviousToken;//(56) - COD
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->classVerify(_PreviousToken, CLASSE_LUZ);//(4) - SEMÂNTICO
//(56) - SEMANTICO -------------------------------------------------------------------
//(56) - COD -------------------------------------------------------------------------
_Sem->DiffTypeVerify(_PreviousToken, _PreviousToken._Tipo, TIPO_REAL);
_cg->LDI("A", ATWgetCStr(_idAux._End), "LUZ ID");
_cg->LGT("A", "FIM LUZ");
//(56) - COD -------------------------------------------------------------------------
//(56) - SEMANTICO -------------------------------------------------------------------
CT(EXP_END);
break;
case ROTTRANS:
CT(ROTTRANS);
CT(ID);
_idAux = _PreviousToken;//(59) - COD
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->classVerify(_PreviousToken, CLASSE_OBJETO);//(7) - SEMÂNTICO
CT(COMMA);
_memory->ATWResetTemp();//(46) - COD
Exp(_ExpType, _ExpAdr);//(33) - SEMÂNTICO
_Sem->DiffTypeVerify(_PreviousToken, _ExpType, TIPO_LOGICO);//(33) - SEMÂNTICO
CT(COMMA);
Exp(_Exp1Type, _Exp1Adr);//(33) - SEMÂNTICO
_Sem->DiffTypeVerify(_PreviousToken, _Exp1Type, TIPO_LOGICO);//(33) - SEMÂNTICO
CT(COMMA);
Exp(_Exp2Type, _Exp2Adr);//(33) - SEMÂNTICO
_Sem->DiffTypeVerify(_PreviousToken, _Exp2Type, TIPO_LOGICO);//(33) - SEMÂNTICO
CT(COMMA);
Exp(_Exp3Type, _Exp3Adr);//(33) - SEMÂNTICO
_Sem->DiffTypeVerify(_PreviousToken, _Exp3Type, TIPO_LOGICO);//(33) - SEMÂNTICO
CT(COMMA);
Exp(_Exp4Type, _Exp4Adr);//(33) - SEMÂNTICO
_Sem->DiffTypeVerify(_PreviousToken, _Exp4Type, TIPO_LOGICO);//(33) - SEMÂNTICO
CT(COMMA);
Exp(_Exp5Type, _Exp5Adr);//(33) - SEMÂNTICO
_Sem->DiffTypeVerify(_PreviousToken, _Exp5Type, TIPO_LOGICO);//(33) - SEMÂNTICO
//(59) - COD -------------------------------------------------------------------------
if(_ExpType == TIPO_INTEIRO)
{
_cg->LOD("A", _ExpAdr, "ROTTRANS");
_cg->CNV("A", "A");
}
else
_cg->LODF("A", _ExpAdr, "ROTTRANS");
if(_Exp1Type == TIPO_INTEIRO)
{
_cg->LOD("B", _Exp1Adr);
_cg->CNV("B", "B");
}
else
_cg->LODF("B", _Exp1Adr);
if(_Exp2Type == TIPO_INTEIRO)
{
_cg->LOD("C", _Exp2Adr);
_cg->CNV("C", "C");
}
else
_cg->LODF("C", _Exp2Adr);
if(_Exp3Type == TIPO_INTEIRO)
{
_cg->LOD("D", _Exp3Adr);
_cg->CNV("D", "D");
}
else
_cg->LODF("D", _Exp3Adr);
if(_Exp4Type == TIPO_INTEIRO)
{
_cg->LOD("E", _Exp4Adr);
_cg->CNV("E", "E");
}
else
_cg->LODF("E", _Exp4Adr);
if(_Exp5Type == TIPO_INTEIRO)
{
_cg->LOD("F", _Exp5Adr);
_cg->CNV("F", "F");
}
else
_cg->LODF("F", _Exp5Adr);
_cg->LDI("A", ATWgetCStr(_idAux._End));
_cg->RTR("FIM ROTTRANS");
//(56) - COD -------------------------------------------------------------------------
CT(EXP_END);
break;
case SE:
CT(SE);
_memory->ATWResetTemp();//(46) - COD
Exp(_ExpType, _ExpAdr);
//(61) - COD -------------------------------------------------------------------------
_CRotFalse = ATWNovoRot();
_CRotEnd = ATWNovoRot();
_Sem->TypeVerify(_PreviousToken, _ExpType, TIPO_LOGICO);//(61) - SEMÂNTICO
_cg->LOD("A", _ExpAdr, "SE");
_FixFalse = _cg->BZR("A", _CRotFalse);
//(61) - COD -------------------------------------------------------------------------
CT(ENTAO);
if(_CurrentToken._Token == INICIO)
Block();
else if(_CurrentToken._Token == ID || _CurrentToken._Token == ENQUANTO || _CurrentToken._Token == ESCALA ||
_CurrentToken._Token == PAUSA || _CurrentToken._Token == ROTTRANS || _CurrentToken._Token == SE)
Command();
else {
void* _Param[2] = {(void*)_CurrentToken._LINE,(void*)_CurrentToken._Lex};
_eManager->callHandlers(this->getGroupID(), UNEXPECTED_TOKEN, _Param);
}
//(62) - COD -------------------------------------------------------------------------
_FixEnd = _cg->JMP(_CRotEnd);
_cg->writeRot(_CRotFalse, _FixFalse[1]+2);
//(62) - COD -------------------------------------------------------------------------
if(_CurrentToken._Token == SENAO){
CT(SENAO);
if(_CurrentToken._Token == INICIO)
Block();
else if(_CurrentToken._Token == ID || _CurrentToken._Token == ENQUANTO || _CurrentToken._Token == ESCALA ||
_CurrentToken._Token == PAUSA || _CurrentToken._Token == ROTTRANS || _CurrentToken._Token == SE)
Command();
else{
void* _Param[2] = {(void*)_CurrentToken._LINE,(void*) _CurrentToken._Lex};
_eManager->callHandlers(this->getGroupID(), UNEXPECTED_TOKEN, _Param);
}
}
//(63) - COD -------------------------------------------------------------------------
_cg->writeRot(_CRotEnd, _FixEnd[1]+1);
//(63) - COD -------------------------------------------------------------------------
break;
case EXP_END:
CT(EXP_END);
break;
}
_cg->flush();
//FlushBinRetirado
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::Exp(Type& _ExpType, Address& _ExpAdr){
Type _ExpSType, _ExpS1Type;
Address _ExpSAdr = 0, _ExpS1Adr = 0;
Address* _FixTrue = 0x00, *_FixEnd = 0x00;
EXPS(_ExpSType, _ExpSAdr);//(29) - SEMÂNTICO
_ExpType = _ExpSType;
_ExpAdr = _ExpSAdr;
if(_CurrentToken._Token == LT || _CurrentToken._Token == GT || _CurrentToken._Token == LE ||
_CurrentToken._Token == GE || _CurrentToken._Token == DEQ || _CurrentToken._Token == DIFF){
Token _ROp;
R(_ROp);
_Sem->DiffTypeVerify(_PreviousToken, _ExpType, TIPO_LOGICO);//(30) - SEMÂNTICO
EXPS(_ExpS1Type, _ExpS1Adr);
_Sem->DiffTypeVerify(_PreviousToken, _ExpS1Type, TIPO_LOGICO);//(28) - SEMÂNTICO
//(28) - COD -----------------------------------------------------------------------------
if(_ExpType == TIPO_INTEIRO)
{
_cg->LOD("A", _ExpAdr);
if(_ExpSType == TIPO_INTEIRO)
{
_cg->LOD("B", _ExpS1Adr);
_ExpType = TIPO_INTEIRO;
}
else
{
_cg->CNV("A", "A");
_cg->LODF("B", _ExpS1Adr);
_ExpType = TIPO_REAL;
}
}//end if
else
{
_cg->LODF("A", _ExpAdr);
if(_ExpSType == TIPO_INTEIRO)
{
_cg->LOD("B", _ExpS1Adr);
_cg->CNV("B", "B");
_ExpType = TIPO_REAL;
}
else
{
_cg->LODF("B", _ExpS1Adr);
_ExpType = TIPO_REAL;
}
}//end else
char* _ExpRotTrue;
if(_ExpType == TIPO_INTEIRO)
{
_cg->SUB("A","B");
_ExpRotTrue = ATWNovoRot();
switch(_ROp)
{
case LT:
_FixTrue = _cg->BNG("A", _ExpRotTrue);
break;
case GT:
_FixTrue = _cg->BPS("A", _ExpRotTrue);
break;
case LE:
_FixTrue = _cg->BNP("A", _ExpRotTrue);
break;
case GE:
_FixTrue = _cg->BNN("A", _ExpRotTrue);
break;
case DEQ:
_FixTrue = _cg->BZR("A", _ExpRotTrue);
break;
case DIFF:
_FixTrue = _cg->BNZ("A", _ExpRotTrue);
break;
}//end switch
}//end if
else
{
_cg->SUBF("A","B");
_ExpRotTrue = ATWNovoRot();
switch(_ROp)
{
case LT:
_FixTrue = _cg->BNGF("A", _ExpRotTrue);
break;
case GT:
_FixTrue = _cg->BPSF("A", _ExpRotTrue);
break;
case LE:
_FixTrue = _cg->BNPF("A", _ExpRotTrue);
break;
case GE:
_FixTrue = _cg->BNNF("A", _ExpRotTrue);
break;
case DEQ:
_FixTrue = _cg->BZRF("A", _ExpRotTrue);
break;
case DIFF:
_FixTrue = _cg->BNZF("A", _ExpRotTrue);
break;
}//end switch
}//end else
//(28) - COD -----------------------------------------------------------------------------
_cg->LDI("A", "0");
char* _ExpRotEnd = ATWNovoRot();
_FixEnd = _cg->JMP(_ExpRotEnd);
_cg->writeRot(_ExpRotTrue, _FixTrue[1]+2);
_cg->LDI("A", "1");
_cg->writeRot(_ExpRotEnd, _FixEnd[1]+1);
_ExpAdr = _memory->ATWNovoTemp(TIPO_INTEIRO);
_ExpType = TIPO_LOGICO;
_cg->STO("A", _ExpAdr);
}
_cg->flush();
//FlushBinRetirado
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::R(Token& _ROp){
switch(_CurrentToken._Token){
case LT:
CT(LT);
_ROp = LT;//(50) - COD
break;
case GT:
CT(GT);
_ROp = GT;//(51) - COD
break;
case LE:
CT(LE);
_ROp = LE;//(52) - COD
break;
case GE:
CT(GE);
_ROp = GE;//(53) - COD
break;
case DEQ:
CT(DEQ);
_ROp = DEQ;//(54) - COD
break;
case DIFF:
CT(DIFF);
_ROp = DIFF;//(55) - COD
break;
}
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::EXPS(Type& _ExpSType, Address& _ExpSAdr){
Token _ExpSOp = PLUS;
Address _TAdr = 0, _T1Adr = 0;
Type _TType, _T1Type;
if(_CurrentToken._Token == PLUS){
CT(PLUS);
}
else if(_CurrentToken._Token == MINUS){
CT(MINUS);
_ExpSOp = MINUS;
}
T(_TType, _TAdr);//(23) - SEMÂNTICO
_ExpSType = _TType;//(23) - SEMÂNTICO
//(23) - COD --------------------------------------------------------------------
if (_ExpSOp == MINUS)
{
_ExpSAdr = _memory->ATWNovoTemp(_ExpSType);
if (_TType == TIPO_INTEIRO)
{
_cg->LOD("A", _TAdr);
_cg->NEG("A");
_cg->STO("A", _ExpSAdr);
}//end if
else
{
_cg->LODF("A", _TAdr);
_cg->NEGF("A");
_cg->STOF("A", _ExpSAdr);
}//end else
}
else
_ExpSAdr = _TAdr;
//(23) - COD --------------------------------------------------------------------
while(_CurrentToken._Token == PLUS || _CurrentToken._Token == MINUS || _CurrentToken._Token == OU){
if(_CurrentToken._Token == PLUS){
CT(PLUS);
_ExpSOp = PLUS;//(24) - SEMÂNTICO
}
else if(_CurrentToken._Token == MINUS){
CT(MINUS);
_ExpSOp = MINUS;//(25) - SEMÂNTICO
}
else if(_CurrentToken._Token == OU){
CT(OU);
_ExpSOp = OU;//(26) - SEMÂNTICO
}
T(_T1Type, _T1Adr);
//(27) - SEMÂNTICO --------------------------------------------------------------------------------
//(27) - COD --------------------------------------------------------------------------------------
if(_ExpSOp == PLUS){
if(_ExpSType == TIPO_INTEIRO && _T1Type == TIPO_INTEIRO)
{
_ExpSType = TIPO_INTEIRO;
_cg->LOD("A", _ExpSAdr, "T + T");
_cg->LOD("B", _T1Adr);
_cg->ADD("A", "B");
_ExpSAdr = _memory->ATWNovoTemp(TIPO_INTEIRO);
_cg->STO("A", _ExpSAdr, "FIM");
}
else if(_ExpSType == TIPO_INTEIRO && _T1Type == TIPO_REAL)
{
_ExpSType = TIPO_REAL;
_cg->LOD("A", _ExpSAdr, "T + T");
_cg->LODF("B", _T1Adr);
_cg->CNV("A", "A");
_cg->ADDF("A", "B");
_ExpSAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _ExpSAdr, "FIM");
}
else if(_ExpSType == TIPO_REAL && _T1Type == TIPO_INTEIRO)
{
_ExpSType = TIPO_REAL;
_cg->LODF("A", _ExpSAdr, "T + T");
_cg->LOD("B", _T1Adr);
_cg->CNV("B", "B");
_cg->ADDF("A", "B");
_ExpSAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _ExpSAdr, "FIM");
}
else if(_ExpSType == TIPO_REAL && _T1Type == TIPO_REAL)
{
_ExpSType = TIPO_REAL;
_cg->LODF("A", _ExpSAdr, "T + T");
_cg->LODF("B", _T1Adr);
_cg->ADDF("A", "B");
_ExpSAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _ExpSAdr, "FIM");
}
else{
void* _Param[1] = {(void*)_PreviousToken._LINE};
_eManager->callHandlers(this->getGroupID(), INCOMPATILBE_TYPES, _Param);
}//end else
}//end if
else if (_ExpSOp == MINUS)
{
if(_ExpSType == TIPO_INTEIRO && _T1Type == TIPO_INTEIRO)
{
_ExpSType = TIPO_INTEIRO;
_cg->LOD("A", _ExpSAdr, "T - T");
_cg->LOD("B", _T1Adr);
_cg->SUB("A", "B");
_ExpSAdr = _memory->ATWNovoTemp(TIPO_INTEIRO);
_cg->STO("A", _ExpSAdr, "FIM");
}
else if(_ExpSType == TIPO_INTEIRO && _T1Type == TIPO_REAL)
{
_ExpSType = TIPO_REAL;
_cg->LOD("A", _ExpSAdr, "T - T");
_cg->LODF("B", _T1Adr);
_cg->CNV("A", "A");
_cg->SUBF("A", "B");
_ExpSAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _ExpSAdr, "FIM");
}
else if(_ExpSType == TIPO_REAL && _T1Type == TIPO_INTEIRO)
{
_ExpSType = TIPO_REAL;
_cg->LODF("A", _ExpSAdr, "T - T");
_cg->LOD("B", _T1Adr);
_cg->CNV("B", "B");
_cg->SUBF("A", "B");
_ExpSAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _ExpSAdr, "FIM");
}
else if(_ExpSType == TIPO_REAL && _T1Type == TIPO_REAL)
{
_ExpSType = TIPO_REAL;
_cg->LODF("A", _ExpSAdr, "T - T");
_cg->LODF("B", _T1Adr);
_cg->SUBF("A", "B");
_ExpSAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _ExpSAdr, "FIM");
}
else{
void* _Param[1] = {(void*)_PreviousToken._LINE};
_eManager->callHandlers(this->getGroupID(), INCOMPATILBE_TYPES, _Param);
}//end else
}//end elseif
else
{
Address* _FixExpSRot = 0x00;
if (_ExpSType == TIPO_LOGICO && _T1Type == TIPO_LOGICO)
{
_ExpSType = TIPO_LOGICO;
_cg->LOD("A", _ExpSAdr, "T E T");
_cg->LOD("B", _T1Adr);
_cg->ADD("A", "B");
char* _ExpSRot = ATWNovoRot();
_FixExpSRot = _cg->BZR("A", _ExpSRot);
_cg->LDI("A", "1", "FIM");
_cg->writeRot(_ExpSRot, _FixExpSRot[1]+2);
}
else
{
void* _Param[1] = {(void*)_PreviousToken._LINE};
_eManager->callHandlers(this->getGroupID(), INCOMPATILBE_TYPES, _Param);
}
}//end else
//(27) - COD --------------------------------------------------------------------------------------
//(27) - SEMÂNTICO --------------------------------------------------------------------------------
}//end while
_cg->flush();
//FlushBinRetirado
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::T(Type& _TType, Address& _TAdr){
Address _FAdr = 0, _F1Adr = 0;
Type _FType, _F1Type;
F(_FType, _FAdr);//(18) - SEMÂNTICO
_TType = _FType;//(18) - SEMÂNTICO
_TAdr = _FAdr;//(18) - COD
while(_CurrentToken._Token == TIMES || _CurrentToken._Token == OVER || _CurrentToken._Token == E){
Token _TOp;
if(_CurrentToken._Token == TIMES){
CT(TIMES);
_TOp = TIMES;//(19) - SEMÂNTICO
}else if(_CurrentToken._Token == OVER){
CT(OVER);
_TOp = OVER;//(20) - SEMÂNTICO
}
else{
CT(E);
_TOp = E;//(21) - SEMÂNTICO
}
F(_F1Type, _F1Adr);
//(22) - SEMÂNTICO --------------------------------------------------------------------------------
//(22) - COD -------------------------------------------------------------------------------------
if(_TOp == TIMES)
{
if(_TType == TIPO_INTEIRO && _F1Type == TIPO_INTEIRO)
{
_TType = TIPO_INTEIRO;
_cg->LOD("A", _TAdr, "F * F");
_cg->LOD("B", _F1Adr);
_cg->MUL("A", "B");
_TAdr = _memory->ATWNovoTemp(TIPO_INTEIRO);
_cg->STO("A", _TAdr, "FIM");
}
else if(_TType == TIPO_INTEIRO && _F1Type == TIPO_REAL)
{
_TType = TIPO_REAL;
_cg->LOD("A", _TAdr, "F * F");
_cg->CNV("A","A");
_cg->LODF("B", _F1Adr);
_cg->MULF("A", "B");
_TAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _TAdr, "FIM");
}
else if(_TType == TIPO_REAL && _F1Type == TIPO_INTEIRO)
{
_TType = TIPO_REAL;
_cg->LODF("A", _TAdr, "F * F");
_cg->LOD("B", _F1Adr);
_cg->CNV("B","B");
_cg->MULF("A", "B");
_TAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _TAdr, "FIM");
}
else if(_TType == TIPO_REAL && _F1Type == TIPO_REAL)
{
_TType = TIPO_REAL;
_cg->LODF("A", _TAdr, "F * F");
_cg->LODF("B", _F1Adr);
_cg->MULF("A", "B");
_TAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _TAdr, "FIM");
}
else{
void* _Param[1] = {(void*)_PreviousToken._LINE};
_eManager->callHandlers(this->getGroupID(), INCOMPATILBE_TYPES, _Param);
}
}else if(_TOp == OVER){
if(_TType == TIPO_INTEIRO && _F1Type == TIPO_INTEIRO)
{
_TType = TIPO_REAL;
_cg->LOD("A", _TAdr, "F / F");
_cg->CNV("A","A");
_cg->LOD("B", _F1Adr);
_cg->CNV("B","B");
_cg->DIV("A", "B");
_TAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _TAdr, "FIM");
}
else if(_TType == TIPO_INTEIRO && _F1Type == TIPO_REAL)
{
_TType = TIPO_REAL;
_cg->LOD("A", _TAdr, "F / F");
_cg->CNV("A","A");
_cg->LODF("B", _F1Adr);
_cg->DIV("A", "B");
_TAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _TAdr, "FIM");
}
else if(_TType == TIPO_REAL && _F1Type == TIPO_INTEIRO)
{
_TType = TIPO_REAL;
_cg->LODF("A", _TAdr, "F / F");
_cg->LOD("B", _F1Adr);
_cg->CNV("B","B");
_cg->DIV("A", "B");
_TAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _TAdr, "FIM");
}
else if(_TType == TIPO_REAL && _F1Type == TIPO_REAL)
{
_TType = TIPO_REAL;
_cg->LODF("A", _TAdr, "F / F");
_cg->LODF("B", _F1Adr);
_cg->DIV("A", "B");
_TAdr = _memory->ATWNovoTemp(TIPO_REAL);
_cg->STOF("A", _TAdr, "FIM");
}
else{
void* _Param[1] = {(void*)_PreviousToken._LINE};
_eManager->callHandlers(this->getGroupID(), INCOMPATILBE_TYPES, _Param);
}
}else{
if (_TType == TIPO_LOGICO && _F1Type == TIPO_LOGICO)
{
_TType = TIPO_LOGICO;
_cg->LOD("A", _TAdr, "F OU F");
_cg->LOD("B", _F1Adr);
_cg->MUL("A", "B");
_TAdr = _memory->ATWNovoTemp(TIPO_INTEIRO);
_cg->STO("A", _TAdr, "FIM");
}
else{
void* _Param[1] = {(void*)_PreviousToken._LINE};
_eManager->callHandlers(this->getGroupID(), INCOMPATILBE_TYPES, _Param);
}
}
//(22) - COD --------------------------------------------------------------------------------------
//(22) - SEMÂNTICO --------------------------------------------------------------------------------
}
_cg->flush();
//FlushBinRetirado
}
//---------------------------------------------------------------------------------------------------------------------
void ATWSin::F(Type& _FType, Address& _FAdr){//Fend = _FAdr
Class _class[2] = {CLASSE_CONST, CLASSE_VAR};//(9) - SEMÂNTICO
ATW_BUFF_ELEMENT _tAux = _PreviousToken;//(16) - SEMÂNTICO
Type _ExpType;
Address _ExpAdr = 0, _F1Adr = 0;
Type _F1Type;
switch(_CurrentToken._Token){
case LPAREN:
CT(LPAREN);
Exp(_ExpType, _ExpAdr);//(17) - SEMÂNTICO
_FType = _ExpType;
_FAdr = _ExpAdr;//(17) - COD
CT(RPAREN);
break;
case NAO:
CT(NAO);
F(_F1Type, _F1Adr);//(16) - SEMÂNTICO
_FType = _F1Type;//(16) - SEMÂNTICO
_Sem->TypeVerify(_tAux, _F1Type, TIPO_LOGICO);//(16) - SEMÂNTICO
//(16) - COD-------------------------------------------------------------------
_FAdr = _memory->ATWNovoTemp(_FType);
_cg->LOD("A",_F1Adr, "NAO F");
_cg->NEG("A");
_cg->ADI("A", "1");
_cg->STO("A", _FAdr, "FIM");
//(16) - COD-------------------------------------------------------------------
break;
case ID:
CT(ID);
_Sem->unicidadeNotDeclared(_PreviousToken);//(1) - SEMÂNTICO
_Sem->nClassVerify(_PreviousToken, 2, _class);//(8) - SEMÂNTICO
_FType = _Sem->getType(_PreviousToken);//(14) - SEMÂNTICO
_FAdr = _PreviousToken._End;//(14) - COD
break;
case CONSTANT:
CT(CONSTANT);
_FType = _PreviousToken._Tipo;//(15) - SEMÂNTICO
//(15) - COD-------------------------------------------------------------------
_FAdr = _memory->ATWNovoTemp(_FType);
if (_FType == TIPO_INTEIRO)
_cg->STI(_PreviousToken._Lex,_FAdr);
else
_cg->STIF(_PreviousToken._Lex,_FAdr);
//(15) - COD-------------------------------------------------------------------
break;
default:
void* _Param[2] = {(void*)_CurrentToken._LINE,(void*) _CurrentToken._Lex};
_eManager->callHandlers(this->getGroupID(), UNEXPECTED_TOKEN, _Param);
break;
}
_cg->flush();
//FlushBinRetirado
} |
688f25c4be047c38189affdda727a1b9e80063c1 | e2807ade9eebbebf0ae5996ec18a1d932410dc9f | /Cpsc 121 Programming Concepts/Townsend_KendallHW03/HW03.cpp | db23577eaf8990d967192f1246faaf079af69fab | [] | no_license | kwtownsend/Cplusplus | c3a0806a5fa0ba3a206cc32baba58c4989b46563 | d4cacf2a126f1418d3cc1347e5be5436edda9098 | refs/heads/master | 2021-01-24T11:06:06.572055 | 2017-01-22T21:08:51 | 2017-01-22T21:08:51 | 70,263,529 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,736 | cpp | HW03.cpp | //Townsend, Kendall
//894121409
//CPSC121 Section 5
//Spring 2011
//HW03.cpp
//Credits: Lisa, Elliot
#include <iostream>
#include <iomanip>
#include <string>
#include <ctime>
#include <fstream>
using namespace std;
//function proto
int GetMenuChoice(int& choice);
void ProcessUser(int ids[], string names[], double balances[], int choice, int& count);
void GetID(int &id);
void AddUser(int ids[], string names[], double balances[], int& count);
void GetName( string &name);
void PrintAll(int ids[], string names[], double balances[], int count);
void DisplayMenu();
void SearchUser(int ids[], string names[], double balances[], int choice, int count);
void GetBalance(double &balance);
const int MAX = 50;
enum{ADD = 1, SEARCH, PRINT, QUIT};
//Function Name: main
//Purpose: To call menu choice, and readfile, and writefile
//Return type: int
//Input parameters: none
//Output paramters: none
//User inputs: none
//User outputs: none
//Functions called: GetMenuChoice(), ReadFile(), WriteFile()
//Error messages: none
int main()
{
int ids[MAX], count = 0, choice;
string names[MAX];
double balances[MAX];
while( ( choice = GetMenuChoice(choice) ) !=QUIT)
ProcessUser(ids, names, balances, choice, count);
if ( choice == QUIT)
return 0;
}
//Function Name: GetMenuChoice
//Purpose: to print menu and ask for choice
//Return type: int
//Input parameters: choice
//Output paramters: choice
//User inputs: choice
//User outputs: none
//Functions called: none
//Error messages: none
int GetMenuChoice(int& choice)
{
DisplayMenu();
cout << setw(13) << left << "Enter 1-4 : ";
cin >> choice;
cout << setw(40) << setfill('=') << '\n' << setfill(' ') << endl;
return choice;
}
//Function Name: DisplayMenu
//Purpose: to display the menu
//Return type: void
//Input parameters: none
//Output paramters:none
//User inputs: none
//User outputs: none
//Functions called: none
//Error messages: none
void DisplayMenu()
{
cout << setw(40) << left << "MENU" << endl;
cout << setw(40) << setfill('-') << '\n' << setfill(' ') << endl;
cout << setw(40) << left << "1. Add User" << endl;
cout << setw(40) << left << "2. Search by ID" << endl;
cout << setw(40) << left << "3. Print All" << endl;
cout << setw(40) << left << "4. Exit" << endl;
cout << setw(40) << setfill('-') << '\n' << setfill(' ') << endl;
}
//Function Name: ProcessUser
//Purpose: void
//Return type: none
//Input parameters: ids, names, choice, count
//Output paramters: ids, names, count
//User inputs: none
//User outputs: none
//Functions called: AddUsers, PrintAll
//Error messages: none
void ProcessUser(int ids[], string names[], double balances[], int choice, int& count)
{
if (choice == ADD)
AddUser(ids, names, balances, count);
else if (choice == SEARCH)
SearchUser(ids, names, balances, choice, count);
else if (choice == PRINT)
PrintAll(ids, names, balances, count);
}
//Function Name: SearchUser
//Purpose: to search for already inputted users by ID, and print their information
//Return type: void
//Input parameters: ids, names, balances, choice, count
//Output paramters: none
//User inputs: ids[]
//User outputs: names, balances
//Functions called: none
//Error messages: Customer ID "" not found
void SearchUser(int ids[], string names[], double balances[], int choice, int count)
{
int search;
bool valid;
cout << setw(4) << left << "ID: " ;
do
{
cin >> search;
if(cin.fail())
{
cout << "Invalid ID" << endl;
cin.clear();
}
if (search < 1)
{
cout << "Invalid ID" << endl;
cout << "ID: ";
valid = false;
}
else
{
valid = true;
}
cin.ignore(1000, '\n');
}while(!valid);
for (int i = 0; i < count; i++)
{
if (search == ids[i])
{
cout << "Found Customers for ID " << search << endl;
cout << setw(40) << setfill('=') << '\n' << setfill(' ') << endl;
cout << setw(10) << left << "ID" << setw(19) << left << "Name" << setw(11) << right << "Balance" << endl;
cout << setw(40) << setfill('-') << '\n' << setfill(' ') << endl;
cout << setw(10) << left << ids[i] << setw(19) << left << names[i] << setw(4) << left << "$" << setw(10) << fixed << setprecision(2) << balances[i] << endl;
cout << setw(40) << setfill('=') << '\n' << setfill(' ') << endl;
}
else if ( i == (count - 1) )
cout << "Customer ID " << search << " not found" << endl;
}
}
//Function Name: AddUser
//Purpose: to get the ID and name for an additional user
//Return type: void
//Input parameters: ids, names, balances, count
//Output paramters: ids, names, balances, count
//User inputs: none
//User outputs: none
//Functions called: GetID, GetName, GetBalance
//Error messages: none
void AddUser(int ids[], string names[], double balances[], int& count)
{
cout << setw(40) << setfill('=') << '\n' << setfill(' ') << endl;
cout << setw(40) << left << "ADD USER" << endl;
cout << setw(40) << setfill('-') << '\n' << setfill(' ') << endl;
GetID(ids[count]);
GetName(names[count]);
GetBalance(balances[count]);
count++;
cout << setw(40) << setfill('=') << '\n' << setfill(' ') << endl;
}
//Function Name: GetBalance
//Purpose: to get the users account balance
//Return type: void
//Input parameters: balance
//Output paramters: none
//User inputs: balance
//User outputs: none
//Functions called: none
//Error messages: Invalid Balance
void GetBalance(double& balance)
{
bool valid;
cout << setw(4) << left << "Balance: ";
do
{
cin >> balance;
if(cin.fail())
{
cout << "Invalid Balance" << endl;
cin.clear();
}
if (balance < 1)
{
cout << "Invalid Balance" << endl;
cout << "Balance: ";
valid = false;
}
else
{
valid = true;
}
cin.ignore(1000, '\n');
}while(!valid);
}
//Function Name: GetID
//Purpose: to get the ID
//Return type: void
//Input parameters: id
//Output paramters: id
//User inputs: id
//User outputs: none
//Functions called: none
//Error messages: none
void GetID(int& id)
{
bool valid;
cout << setw(4) << left << "ID: " ;
do
{
cin >> id;
if(cin.fail())
{
cout << "Invalid ID" << endl;
cin.clear();
}
if (id < 1)
{
cout << "Invalid ID" << endl;
cout << "ID: ";
valid = false;
}
else
{
valid = true;
}
cin.ignore(1000, '\n');
}while(!valid);
}
//Function Name: GetName
//Purpose: Get the Name
//Return type: void
//Input parameters: names
//Output paramters: names
//User inputs: names
//User outputs: none
//Functions called: none
//Error messages: none
void GetName( string& names)
{
bool valid;
cout << setw(6) << left << "Name:" ;
getline(cin, names);
}
//Function Name: PrintAll
//Purpose: to Print all the names and ids
//Return type: void
//Input parameters:
//Output paramters:
//User inputs:
//User outputs:
//Functions called:
//Error messages:
void PrintAll(int ids[], string names[], double balances[], int count)
{
cout << setw(40) << left << "Fullerton Bank" << endl;
cout << setw(40) << setfill('=') << '\n' << setfill(' ') << endl;
cout << setw(10) << left << "ID" << setw(19) << left << "Name" << setw(11) << right << "Balance" << endl;
cout << setw(40) << setfill('-') << '\n' << setfill(' ') << endl;
for (int i = 0; i < count; i++)
{
cout << setw(10) << left << ids[i] << setw(19) << left << names[i] << setw(4) << left << "$" << setw(10) << fixed << setprecision(2) << balances[i] << endl;
}
cout << setw(40) << setfill('=') << '\n' << setfill(' ') << endl;
} |
27ad5182d03c21d0b8901aa1b88b3e5970331a17 | eee4e1d7e3bd56bd0c24da12f727017d509f919d | /Case/case7/2100/PMV | 76a99d4dfc5a9713f6d7389abdc59bc25db90b12 | [] | no_license | mamitsu2/aircond5_play5 | 35ea72345d23c5217564bf191921fbbe412b90f2 | f1974714161f5f6dad9ae6d9a77d74b6a19d5579 | refs/heads/master | 2021-10-30T08:59:18.692891 | 2019-04-26T01:48:44 | 2019-04-26T01:48:44 | 183,529,942 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,441 | PMV | /*--------------------------------*- C++ -*----------------------------------*========= |
\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\ / O peration | Website: https://openfoam.org
\ / A nd | Version: 6
\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "2100";
object PMV;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 0 0 0 0];
internalField nonuniform List<scalar>
458
(
1.4428461858264245
1.212527032244586
1.1881250198599769
1.1654965179193775
1.1512099936965148
1.1449733907293358
1.1461699194189348
1.1556335069318624
1.1725301043675658
1.1987173644972606
1.2359982377380543
1.2859068373185336
1.336787911087903
1.3348772890019056
1.338698517368045
1.377862317510746
1.3706987413728184
1.373086627477642
1.3788174422724364
1.3821603438858117
1.3826378967889852
1.3831154485703034
1.3818636674370564
1.3804052697660407
1.379889389356491
1.380222260531918
1.3810512280964649
1.3827289554784672
1.3850256444483344
1.3864582795070495
1.387890904365599
1.3902785896903238
1.4031715912364549
1.3868775324828373
1.232953265378036
1.2293976217995037
1.2088605024591859
1.1986103136823842
1.194664815321456
1.1975071118007714
1.204918131722235
1.215772895275052
1.2321662989092852
1.256018881800977
1.290236900565074
1.3356223028029384
1.339176166458256
1.336787911087903
1.3353549460004586
1.3315336625796064
1.286712844991122
1.322729133062329
1.368310828111984
1.3735642014243492
1.3812052347197443
1.3874133638818416
1.3832135457058372
1.3800973875869493
1.3773545739505317
1.3745459368105908
1.3717856746134924
1.3686775476317774
1.3667560626099904
1.3655191111508755
1.365329021234987
1.367833242216645
1.3692659966637557
1.3735642014243492
1.3558328771040142
1.4222970320510624
1.231578473558085
1.2667502873843401
1.258381591949472
1.2582987593125117
1.261064424425481
1.267165035002425
1.2713119889652686
1.2706404204269424
1.2686803157188844
1.2725580748380445
1.2872386436428473
1.3150800812447654
1.3458631486608126
1.3439526024288129
1.3410867528588006
1.3353549460004586
1.3132405146913686
1.264006472173237
1.3363898977759778
1.35635903210398
1.3686703029780807
1.3783859282277287
1.375815448410111
1.3869077193173378
1.3902785896903238
1.3855031905988173
1.3812052347197443
1.3769071883188944
1.373086627477642
1.3702211608874915
1.367355655243517
1.368310828111984
1.368788412928167
1.3648942553098546
1.2834058775037946
1.495620869370994
1.2322201074164487
1.2950900099732479
1.3088176277655845
1.3301143195735272
1.3495198112901474
1.3639719535546284
1.3577187394717625
1.3310980213408128
1.298890788491111
1.2780770369779209
1.2747475618750592
1.2923584076877288
1.3264177261283785
1.3535051705002965
1.3520723114339894
1.3472960476946618
1.3420420400637971
1.2849916663994851
1.3107269585347348
1.3451327989244204
1.3730593431248037
1.3981223412970722
1.4231331607911333
1.4395787296363345
1.4338939313382761
1.428915809259124
1.4277972590083572
1.4282287691797078
1.4291783356089658
1.4352140169445402
1.4472426302075736
1.4701698736657036
1.4480514123388193
1.4131988858916973
1.352349859535644
1.237017040924599
1.5850977087922695
1.248644413310471
1.3206826317037206
1.3572433299374125
1.41427995565235
1.4748592830435192
1.494444067955998
1.4346981366108231
1.3663094558069286
1.3054218931577553
1.2688509234535013
1.257872965371965
1.2717647174754538
1.3044942010495455
1.3467379162069897
1.367355655243517
1.367355655243517
1.35581634719855
1.3439963601147404
1.3567914233798226
1.3864558570947663
1.4221593786320665
1.4558580128003455
1.4762147539476072
1.4919649967641953
1.5034187140688
1.5124856230878223
1.5150930088853096
1.5125811031019731
1.50868802292333
1.5042991779029178
1.5009644821525363
1.496769884468813
1.4729489450355027
1.4336729795626728
1.3449622611162202
1.3363399750407419
1.3314700068477057
1.420116653385317
1.2973462609132929
1.6752299425834214
1.2887946241784312
1.3723971211845327
1.412345787203066
1.4881469012225392
1.5258463634204722
1.5051462638840682
1.4219391233122465
1.3473054597629646
1.2851919624634158
1.2469969218674406
1.2373483315670502
1.2561432308471434
1.296255104590365
1.3472748581452665
1.3869358222618504
1.3945763510236644
1.4026940878790035
1.416063729374914
1.4351615438341025
1.4571214826377004
1.4795558457340101
1.5000781355569897
1.5167802806997046
1.5306177556242395
1.541114249110945
1.5487475623442275
1.553518165544279
1.5554263594654918
1.5544722659019667
1.5497016964582728
1.5415913436296427
1.5275431711987035
1.491873532773755
1.446868370727765
1.3652840968311621
1.3505529222169521
1.3371057524032808
1.3601933689661865
1.371021604496409
1.7661404159253107
1.3851986370641427
1.5335539933223914
1.511102950481377
1.5142610572286532
1.4849067645511305
1.4306696488760668
1.3608759815530636
1.2899460006390493
1.2348945872681034
1.2080819263196532
1.2144037515290678
1.2503362115428134
1.3091867710327374
1.3806460676539631
1.4141538385969767
1.4308647113541952
1.4456644717038614
1.4623723528707575
1.4824195828927467
1.5038959335295048
1.5239377618305212
1.5415913436296427
1.5559034036950665
1.5659209361483801
1.5730758471668957
1.5773671985054056
1.579275044994152
1.5783211253284692
1.5754593234462968
1.5692599437669614
1.5592426654924048
1.5463621977398523
1.5285375105237533
1.4789961158348541
1.4103347631140317
1.3734200055613561
1.3444930790033227
1.3134475784577757
1.41883044318128
1.9021100683049708
1.7294899390261784
1.6887510176022353
1.5802925529439713
1.5250568608327615
1.4499832604796612
1.3548587986544633
1.2604456974707006
1.1874021808535518
1.151626304040267
1.157606511624059
1.2014068994159475
1.273477981736522
1.3678626825061602
1.424180545473009
1.4552120344812836
1.478601255213138
1.496260241461333
1.5134400023081422
1.5320491419583788
1.5501787609951567
1.5659209361483801
1.5783211253284692
1.5873830710797328
1.5926291604767338
1.5954905698340143
1.5954905698340143
1.5940598734846292
1.5907215173075697
1.585952281003561
1.58022895748767
1.5716448966100802
1.5597196960405497
1.5449309589435407
1.5272777978894971
1.5077136345250322
1.4953057530178329
1.472474653195784
1.3862982737621832
1.2843935997401654
2.105936544094544
1.9782858486290502
1.8158700682523916
1.6428677164123298
1.4532131419348915
1.2552843375103822
1.101412170510678
1.0143310509238885
0.9976646632259649
1.0423029825690306
1.13267498996807
1.2511530611271833
1.3740417742762867
1.4303872791470755
1.4819422969595015
1.5124856230878223
1.5320491419583788
1.5473163485988453
1.5625818431830323
1.5764132645397866
1.5892907656275972
1.5993056782693007
1.6054215028467853
1.6016339549591592
1.5961302649726725
1.5890115470003932
1.5799702824128306
1.569537869653497
1.5570297017996073
1.543050425468987
1.5273483432164594
1.5095675868141842
1.4917656781940165
1.4729642725153487
1.4510171108314627
1.4298231919620414
1.415676299143866
1.4095063657878395
1.398809881891572
1.3669992921292677
-2.867310311672685
-1.7135334276584813
-1.0737025572889927
-0.36198451368342127
0.1728860437495468
0.5925356283883719
0.9413354163617761
1.1623890264387209
1.3172033007690453
1.4146313131227541
1.4728735925801002
1.510070428700439
1.5286144359080316
1.5441430203298003
1.5575003020370342
1.5692000814238851
1.57817676345394
1.5839383852665576
1.586255429051666
1.5853657170221902
1.5822378425557873
1.5767087733933856
1.56932363656626
1.5606206280265362
1.550881752040091
1.5402354451212297
1.529603786964391
1.5196796052607475
1.511650960955907
1.5052553781954543
1.4996581116561938
1.4951451241862814
1.490107782311398
1.4885716889612475
1.4971711032114525
1.534922236102624
1.6163942265232711
1.4512526425833445
-2.350578446959958
-0.8923460726455125
0.08637467707118987
0.5749042564939705
0.8481167223035699
1.0336752912174851
1.175449853048968
1.2851527814853654
1.368585106337619
1.4269862698105225
1.4672416742627787
1.4966127042528725
1.5191509977978568
1.5359028969101276
1.5487641855515153
1.5577282021031769
1.5633699854261662
1.566492768241077
1.5673397768886401
1.567000147887344
1.564386851736105
1.5608238895198212
1.55630781344713
1.5513725685215323
1.5466014312445546
1.54166463915642
1.5372737793986906
1.5339158639457133
1.5317001722971042
1.5324507377789256
1.5373768327352388
1.5463264095242075
1.5554934248800825
1.5631316154427277
1.5727111352575223
1.6097069907406663
1.5513918618027696
1.494502952526548
-0.09550762190289575
-1.1367552682971516
-0.9019178690898636
0.2981271680876781
0.8121840623023471
1.0221009094632476
1.145949707705208
1.2405801494831907
1.3173841594417846
1.3812617244028185
1.4321953263939582
1.4713550940498759
1.499423559164056
1.5192559738204132
1.5324393698244199
1.5402540150302988
1.5436154077523094
1.5427798263337196
1.5392034002056116
1.5338392547203172
1.5273375327978322
1.5213953672878704
1.5151893697277963
1.5097940878259206
1.5057399039100494
1.502096586666739
1.5000832282884695
1.499536433481909
1.5015107413270798
1.5058134952196607
1.514353152500436
1.527578970022813
1.5504129549883048
1.5917184095018746
1.6307756612251472
1.636019826619063
1.599509486903811
1.546385204071031
1.5009182358144422
1.5161352435862887
)
;
boundaryField
{
".*"
{
type zeroGradient;
}
}
// ************************************************************************* //
| |
a295dec3902828cbc1dee2fe9d901773cef08c91 | a971dcfc10520c13a47685fc91c2a2eeeb50414a | /MyGame/Sprite.cpp | 2e5881b8ae48377f4837b7744fa015ac173f0006 | [] | no_license | davidmcherne/alien_guy_with_a_tie | fda88832caab26b7dfd9848c06530a1a099aa9d2 | cc32c49778e5c5250255567ceafe96effbe99302 | refs/heads/main | 2023-04-02T11:24:59.437927 | 2021-04-09T16:27:35 | 2021-04-09T16:27:35 | 356,331,556 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,735 | cpp | Sprite.cpp | #include "Sprite.h"
//
Sprite::Sprite()
{}
//
Sprite::~Sprite()
{}
// Initialize the sprite system for this sprite.
void Sprite::sprite_init( std::string graphic, SDL_Renderer* ren,
int frames, int frame_duration, int start_width, int start_height )
{
// Bind this sprite to the object renderer
game_renderer = ren;
// Give the object a texture / Set the sprite texture
SDL_Surface* temp = IMG_Load(graphic.c_str());
sprite_graphic = SDL_CreateTextureFromSurface(ren, temp);
SDL_FreeSurface(temp);
// Set the frames count, duration, as well as the source rectangle.
this->frame_count = frames;
this->frame_duration = frame_duration;
frame_rect.w = 30; // was 30?
frame_rect.h = 30; // was 30?
frame_rect.x = 0;
frame_rect.y = 0;
}
// Update the sprite, aka the source rectangle.
SDL_Rect Sprite::sprite_update(double obj_velocity, double y_vel)
{
int frame_time = (int) (SDL_GetTicks() / frame_duration) % frame_count;
static int last_frame_time = 0;
// If a new frame is reached,
if( last_frame_time != frame_time)
{
if( frame_time < 1 ) // Reset the sprite x position
{
frame_rect.x = 0;
}
else
{
frame_rect.x += frame_rect.w; // Move the frame rect 1 frame over.
}
}
last_frame_time = frame_time;
if( y_vel != 0) // if jumping
{
if( y_vel < 0){ frame_rect.y = 2*frame_rect.h; } // going up
if( y_vel > 0){ frame_rect.y = 3*frame_rect.h; } // going down
}
else{
if( obj_velocity == 0 ){ frame_rect.y = 0; } // Idle
else { frame_rect.y = frame_rect.h; } // Moving
}
return(frame_rect);
}
void Sprite::sprite_render( SDL_Renderer* ren )
{
// ???
}
void Sprite::sprite_quit()
{}
|
03473b5e0d3a6ddb8bd013175c0a38d66796e058 | 105eb5659ba5f8988ce0d45338e829f42cafc5dc | /Cut the sticks hackerrank problem/main.cpp | 2adc2988d106655cf0ea8159acaf1fd8e03f7ec3 | [] | no_license | hadiuzzaman524/Data_Structure_Algorith_Problem | 965ae6912fa31835f5d92e6b67cae0933972c327 | 684dda1c3ac8d5c29ee009fe168ccb004a6625a4 | refs/heads/main | 2023-08-20T12:19:32.965410 | 2021-10-20T08:27:16 | 2021-10-20T08:27:16 | 321,212,918 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 581 | cpp | main.cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
//freopen("input2.txt","r",stdin);
int n;
cin>>n;
vector<int> temp;
for(int i=0; i<n; i++)
{
int a;
cin>>a;
temp.push_back(a);
}
sort(temp.begin(),temp.end(),greater<int>());
while(!temp.empty())
{
cout<< temp.size()<<endl;
for(int i=0; i<temp.size(); i++)
{
temp[i]-=temp[temp.size()-1];
}
while(temp.back()==0&&!temp.empty())
{
temp.pop_back();
}
}
return 0;
}
|
c3ba8f62013f48ea6ea301881a9d2107760d7361 | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/squid/old_hunk_1083.cpp | 0a7106c46e4b857b68c46f0767fba6ee87140874 | [] | 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 | 419 | cpp | old_hunk_1083.cpp | blen = base64_encode_update(&ctx, loginbuf, strlen(username), reinterpret_cast<const uint8_t*>(username));
blen += base64_encode_update(&ctx, loginbuf+blen, strlen(request->peer_login +1), reinterpret_cast<const uint8_t*>(request->peer_login +1));
blen += base64_encode_final(&ctx, loginbuf+blen);
httpHeaderPutStrf(hdr_out, header, "Basic %.*s", blen, loginbuf);
return;
}
|
c4f5328c7307c882125b60e251b837c141a2006e | 614a18737c7de22f706f2f2bf8d94831f11e77a5 | /PWM.h | 61abfcdd4d619fe9375059d4f85820c2e5cdbb89 | [
"MIT"
] | permissive | sauttefk/VNWheel | a35f8df3ff68dc433a74818c3779a98cc9baeabe | 30fce7fc9cd9010616a7554359e66e8e729b8d69 | refs/heads/master | 2021-03-23T18:53:23.185398 | 2020-03-15T13:58:32 | 2020-03-15T13:58:32 | 247,476,359 | 0 | 0 | MIT | 2020-03-15T13:54:31 | 2020-03-15T13:54:31 | null | UTF-8 | C++ | false | false | 359 | h | PWM.h | #ifndef PWM_H
#define PWM_H
#include <Arduino.h>
#define PWM9 OCR1A
#define PWM10 OCR1B
#define PWM11 OCR1C
#define PWM_FREQ 20000.0f
#define MAXFORCE (F_CPU/(PWM_FREQ*2)) //16000000 is system clock of Leonardo
#define MINFORCE (-MAXFORCE)
class Pwm {
public:
Pwm(void);
~Pwm(void);
void begin();
void setPWM(int16_t force);
};
#endif
|
ff4b2e284400c514728d6216c006eabdcdc3b9a9 | 78316adcb3a1f7e8763f1bf8360c8b9701a654c5 | /Pointers/NULLPointer.cpp | 6a65a602d98de876a4579d405bd328a53548ef5e | [
"MIT"
] | permissive | Imran4424/C-Plus-Plus-Object-Oriented | 2aa02d1a9fa141b89347ae7f6e1741033cc6ad1e | b3bc433e7ef3ad587142961cca2bb70a6ac46a69 | refs/heads/master | 2022-09-08T07:00:17.217574 | 2022-08-19T09:47:20 | 2022-08-19T09:47:20 | 149,149,905 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 548 | cpp | NULLPointer.cpp | /*
The following syntax are valid in C++17
some syntax may ended up in error in previous version C++
*/
#include <iostream>
using namespace std;
int main(int argc, char const *argv[])
{
double *ptr {0}; // null pointer
/*
this is also valid
double *ptr = 0;
*/
int *ptrTwo;
ptrTwo = 0;
int *ptrThree {NULL};
/*
this is also valid
int *ptrThree = NULL;
*/
int *ptrFour;
ptrFour = NULL;
int *ptrFive { nullptr};
/*
this is also valid
int *ptrFive = nullptr;
*/
int *ptrSix;
ptrSix = nullptr;
return 0;
} |
becb284df97a7b2cd990791ff79e7f2becab032e | 52c98acab51455162deab677bfe5e211884989cf | /src/examples/source/HPLC_UV_Unknown_test.cpp | 22098e75556fa409ee7f7005521a97f379edcca6 | [
"MIT"
] | permissive | ChristopherAbram/SmartPeak | 6d997d9e5e0b4982818983a7b95b1924309aaebc | 2851c4b43ad02e436a2dfe0f102ea0ce1e303484 | refs/heads/develop | 2023-03-18T15:32:48.045226 | 2021-03-15T19:48:25 | 2021-03-15T19:48:25 | 337,477,102 | 0 | 0 | MIT | 2021-03-15T19:51:14 | 2021-02-09T17:08:24 | C++ | UTF-8 | C++ | false | false | 3,575 | cpp | HPLC_UV_Unknown_test.cpp | // TODO: Add copyright
#include <SmartPeak/test_config.h>
#include <SmartPeak/pipelines/HPLC_UV_Unknown_example.h>
#include <SmartPeak/core/Filenames.h>
#include <SmartPeak/core/Utilities.h>
using namespace SmartPeak;
using namespace std;
void test_main_HPLC_UV_Unknown()
{
const std::string main_dir = SMARTPEAK_GET_EXAMPLES_DATA_PATH("HPLC_UV_Unknowns");
const Filenames static_filenames = Filenames::getDefaultStaticFilenames(main_dir);
example_HPLC_UV_Unknowns(main_dir, static_filenames, ",");
RawDataHandler rawDataHandler;
LoadFeatures loadFeatures;
Filenames filenames;
filenames.featureXML_i = SMARTPEAK_GET_EXAMPLES_DATA_PATH("HPLC_UV_Unknowns/features/20171013_HMP_C61_ISO_P1_GA1_UV_VIS_2_1_BatchName_1900-01-01_000000.featureXML");
loadFeatures.process(rawDataHandler, {}, filenames);
OpenMS::FeatureMap fm1 = rawDataHandler.getFeatureMap();
rawDataHandler.clear();
filenames.featureXML_i = SMARTPEAK_GET_EXAMPLES_DATA_PATH("HPLC_UV_Unknowns/features/20171013_HMP_C61_ISO_P1_GA1_UV_VIS_2_test.featureXML");
loadFeatures.process(rawDataHandler, {}, filenames);
OpenMS::FeatureMap fm2 = rawDataHandler.getFeatureMap();
cout << "fm1.size(): " << fm1.size() << endl;
cout << "fm2.size(): " << fm2.size() << endl;
assert(fm1.size() == 11);
assert(fm1.size() == fm2.size());
cout << "fm1[0].getSubordinates().size(): " << fm1[0].getSubordinates().size() << endl;
cout << "fm2[0].getSubordinates().size(): " << fm2[0].getSubordinates().size() << endl;
assert(fm1[0].getSubordinates().size() == 2);
assert(fm1[0].getSubordinates().size() == fm2[0].getSubordinates().size());
const OpenMS::Feature* f1 = &fm1[0].getSubordinates()[0];
const OpenMS::Feature* f2 = &fm2[0].getSubordinates()[0];
cout << "native_id: " << f1->getMetaValue("native_id") << endl;
cout << "peak_apex_int: " << f1->getMetaValue("peak_apex_int") << endl;
cout << "getRT: " << f1->getRT() << endl;
assert(f1->getMetaValue("native_id") == "5-HTP");
assert(Utilities::assert_close((double)f1->getMetaValue("peak_apex_int"), 2.078419296154379e04));
assert(Utilities::assert_close((double)f1->getRT(), 2.02693));
assert(f1->getMetaValue("native_id") == f2->getMetaValue("native_id"));
assert(Utilities::assert_close((double)f1->getMetaValue("peak_apex_int"), (double)f2->getMetaValue("peak_apex_int")));
assert(Utilities::assert_close((double)f1->getRT(), (double)f2->getRT()));
cout << "fm1[6].getSubordinates().size(): " << fm1[6].getSubordinates().size() << endl;
cout << "fm2[6].getSubordinates().size(): " << fm2[6].getSubordinates().size() << endl;
assert(fm1[6].getSubordinates().size() == 2);
assert(fm1[6].getSubordinates().size() == fm2[6].getSubordinates().size());
f1 = &fm1[6].getSubordinates()[0];
f2 = &fm2[6].getSubordinates()[0];
cout << "native_id: " << f1->getMetaValue("native_id") << endl;
cout << "peak_apex_int: " << f1->getMetaValue("peak_apex_int") << endl;
cout << "getRT: " << f1->getRT() << endl;
assert(f1->getMetaValue("native_id") == "Melatonin");
assert(Utilities::assert_close((double)f1->getMetaValue("peak_apex_int"), 9.535993535243859e04));
assert(Utilities::assert_close((double)f1->getRT(), 6.96495));
assert(f1->getMetaValue("native_id") == f2->getMetaValue("native_id"));
assert(Utilities::assert_close((double)f1->getMetaValue("peak_apex_int"), (double)f2->getMetaValue("peak_apex_int")));
assert(Utilities::assert_close((double)f1->getRT(), (double)f2->getRT()));
}
int main()
{
test_main_HPLC_UV_Unknown();
return 0;
}
|
b953ea676f4ce876ff007817cf3c716ea29bc68a | 5ab415f696807f259b74d219488da1ac3fefe26e | /app/main.cpp | f30835908bb68658cd7cadd2bfa1672af2c23f9c | [
"MIT"
] | permissive | LuxAter/Specula | f53371c330c72e446e685856f0f3a8d1ca3dbe5a | cd76256f4f16e804eeaa99c27cac04199e34e599 | refs/heads/main | 2022-05-09T11:02:22.826454 | 2022-04-05T00:16:20 | 2022-04-05T00:16:20 | 134,640,859 | 2 | 0 | null | 2019-11-20T06:18:22 | 2018-05-24T00:41:31 | C++ | UTF-8 | C++ | false | false | 4,819 | cpp | main.cpp | #include <cstdint>
#include <cstdlib>
#include <iostream>
#if defined(_WIN32) || defined(_WIN64)
#include <io.h>
#include <windows.h>
#elif defined(__APPLE__) || defined(__unix__) || defined(__unix)
#include <unistd.h>
#endif
#include <cxxopts.hpp>
#include <spdlog/sinks/dist_sink.h>
#include <spdlog/sinks/rotating_file_sink.h>
#include <spdlog/sinks/stdout_color_sinks.h>
#include <spdlog/sinks/stdout_sinks.h>
#include <spdlog/spdlog.h>
#include <specula/common/logging.hpp>
#include <specula/specula/version.hpp>
#ifdef _WIN32
const std::string LQUOTE("\'");
const std::string RQUOTE("\'");
#else
const std::string LQUOTE("‘");
const std::string RQUOTE("’");
#endif
using namespace specula;
namespace cxxopts {
class argument_invalid_choice : public cxxopts::OptionParseException {
public:
explicit argument_invalid_choice(const std::string &option,
const std::string &arg,
const std::vector<std::string> &choices)
: OptionParseException(fmt::format(
"Option {}{}{} invalid argument {}{}{} (choose from {})", LQUOTE,
option, RQUOTE, LQUOTE, arg, RQUOTE, choices)) {}
};
} // namespace cxxopts
int main(int argc, char *argv[]) {
try {
cxxopts::Options options("Specula", "C++17 Pathtracing Renderer");
// clang-format off
options.add_options()
("h,help", "shows this help message and exits")
("v,version", "prints version information and exits")
("V,verbose", "enable additional logging verbosity");
options.add_options("Command")
("system-info", "prints system information and exits",
cxxopts::value<std::string>()->implicit_value("toml"));
// clang-format on
auto result = options.parse(argc, argv);
if (result.count("system-info")) {
static const std::vector<std::string> system_info_choices = {
"toml", "json", "yaml"};
std::string val = result["system-info"].as<std::string>();
transform(val.begin(), val.end(), val.begin(), ::tolower);
if (std::find(system_info_choices.begin(), system_info_choices.end(),
val) == system_info_choices.end())
throw cxxopts::argument_invalid_choice(
"system-info", result["system-info"].as<std::string>(),
system_info_choices);
}
if (result.count("help") != 0L) {
std::cout << options.help() << std::endl;
std::exit(0);
} else if (result.count("version") != 0L) {
std::cout << specula::version.to_string() << std::endl;
std::exit(0);
}
try {
logging::sink = std::make_shared<spdlog::sinks::dist_sink_mt>();
logging::sink->set_pattern(
"[%Y-%m-%d %H:%M:%S.%e] [%n] [%^%l%$] [%s:%#] <%t> %v");
{
#if defined(_WIN32) || defined(_WIN64)
const bool use_color = _isatty(_fileno(stdout));
#elif defined(__APPLE__) || defined(__unix__) || defined(__unix)
const bool use_color = ::isatty(fileno(stdout)) != 0;
#else
const bool use_color = false;
#endif
std::shared_ptr<spdlog::sinks::sink> new_sink = nullptr;
if (use_color)
new_sink = std::make_shared<spdlog::sinks::stdout_color_sink_mt>();
else
new_sink = std::make_shared<spdlog::sinks::stdout_sink_mt>();
switch (result.count("verbose")) {
case 0:
new_sink->set_level(spdlog::level::warn);
break;
case 1:
new_sink->set_level(spdlog::level::info);
break;
case 2:
new_sink->set_level(spdlog::level::debug);
break;
case 3:
default:
new_sink->set_level(spdlog::level::trace);
break;
}
if (use_color)
new_sink->set_pattern(
"[\033[33m%H:%M:%S.%e\033[0m] [\033[1m%n\033[0m] [%^%l%$] "
"[\033[35m%s\033[0m:\033[36m%#\033[0m:\033[90m%!\033[0m] %v");
else
new_sink->set_pattern("[%H:%M:%S.%e] [%n] [%^%l%$] [%s:%#:%!] %v");
logging::sink->add_sink(new_sink);
}
{
std::shared_ptr<spdlog::sinks::sink> new_sink =
std::make_shared<spdlog::sinks::rotating_file_sink_mt>(
"logs/specula.log", 5 * 1024 * 1024, 5);
new_sink->set_level(spdlog::level::trace);
new_sink->set_pattern(
"[%Y-%m-%d %H:%M:%S.%e] [%n] [%^%l%$] [%s:%#:%!] %v");
logging::sink->add_sink(new_sink);
}
} catch (const spdlog::spdlog_ex &err) {
std::cerr << "Log initialization failed: " << err.what() << std::endl;
std::exit(1);
}
LINFO("specula::bin", "Specula v{}", version);
return 0;
} catch (const cxxopts::OptionException &err) {
std::cerr << err.what() << std::endl;
std::exit(1);
}
}
|
97272bccb6056e0dd3ce805a4314c03295aeb89e | f6ceccf9bcabcaad1b6a5cb8e3dbb228d4bad1a6 | /测试用文件_已废弃/GAMEtest/GAMEmaster/GAMEmaster.ino | a50b62b493bd9eb1b26c7ed29c1580056cf6c343 | [
"MIT"
] | permissive | gsool/ESP8266_Multiplayer_Pong | 10a26deed6ca99d3c9f85cbe857992176836e018 | 4b24efe5785f1d7df10798b802de76538160a4fc | refs/heads/master | 2022-11-19T11:51:06.119069 | 2020-07-17T13:39:27 | 2020-07-17T13:39:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,995 | ino | GAMEmaster.ino | /**********************************************************************
项目名称/Project : 【已废弃】
程序名称/Program name : 【已废弃】
团队/Team : 太极创客团队 / Taichi-Maker (www.taichi-maker.com)
作者/Author : Blackbox114
日期/Date(YYYYMMDD) : 20200714
程序目的/Purpose :
实现pong的联机游戏游戏【已废弃,未使用定时器,卡顿严重,数据传输不稳定】
使用的第三方库/Library
Adafruit_GFX库
Adafruit_SSD1306库
下载请前往
http://www.taichi-maker.com/homepage/download/#library-download
-----------------------------------------------------------------------
接线说明::
D1(8266)<------------>SCL(oled)
D2(8266)<------------>SDA(oled)
D5(8266)<------------>按键UP引脚
D6(8266)<------------>按键DOWN引脚
3V3(8266)<----------->VCC(oled)
GND(8266)<----------->GND(oled)
备注:使用的两个按键另一端均为接地(GND)
具体链接请参照接线图
***********************************************************************/
/*代码只实现了功能,并未做优化和封装,有bug!*/
#include <SPI.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include <ESP8266WiFi.h>
#include <WiFiUdp.h>
#define AP_ssid "mastergame" //这里改成你设置的接入点名字
#define password "11111111" //这里改成你设置的接入点密码
#define UP_BUTTON 14//GOIO14=D5
#define DOWN_BUTTON 12//GOIO12=D6
const unsigned long PADDLE_RATE = 33;
const unsigned long BALL_RATE = 16;
const uint8_t PADDLE_HEIGHT = 24;
int scoreCPU = 0;
int scoreUSER = 0;
#define SCREEN_WIDTH 128 // OLED宽度像素
#define SCREEN_HEIGHT 64 // OLED高度像素
// 0.96寸SSD1306,I2C协议 (SDA, SCL 标号)
#define OLED_RESET 3 // Reset pin ,虽然用不上但是还是要设置
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);
IPAddress local_IP(192, 168, 1, 14); //手动设置的开启的网络的ip地址
IPAddress gateway(192, 168, 4, 9); //手动设置的网关IP地址
IPAddress subnet(255, 255, 255, 0); //手动设置的子网掩码
////发送给slave的消息////
String oneLine = " ";//发送给slave的信息
////合并前的信息//
int sstate = 0;//游戏状态。0为
int sclearall = 0; //清理屏幕标志位
int sball_x = 64; //球的x坐标
int sball_y = 32; //球的y坐标
int scpu_y = 16;//master玩家球拍的y坐标
int splayer_y = 16;//本地玩家球拍的y坐标
int sscoreCPU = 0;//master的分数
int sscoreUSER = 0;//本地玩家的分数
WiFiUDP Udp;//实例化WiFiUDP对象
unsigned int localUdpPort = 1234; // 自定义本地监听端口
unsigned int remoteUdpPort = 4321; // 自定义远程监听端口
char incomingPacket[4]; // 保存Udp工具发过来的消息
char char_array[30];
uint8_t ball_x = 64, ball_y = 32;
uint8_t ball_x0 = 64, ball_y0 = 32;
uint8_t ball_dir_x = 1, ball_dir_y = 1;
unsigned long ball_update;
unsigned long paddle_update;
const uint8_t CPU_X = 12;
uint8_t cpu_y = 16;
int slaverpadup = 0;
int slaverpaddown = 0;
const uint8_t PLAYER_X = 115;
uint8_t player_y = 16;
void drawCourt();
void splash();
void printScreen();
void SinglePlayer();
void getslaverdata();
void send();
void line();
void setup() {
//delay(100);
////串口初始化////
Serial.begin(115200);//打开串口
Serial.println();
display.begin(SSD1306_SWITCHCAPVCC, 0x3C);//使用I2C地址0x3C初始化(对于128x64)
display.clearDisplay();
unsigned long start = millis();
pinMode(UP_BUTTON, INPUT_PULLUP);
pinMode(DOWN_BUTTON, INPUT_PULLUP);
digitalWrite(UP_BUTTON, 1);
digitalWrite(DOWN_BUTTON, 1);
splash();
////wifiAP模式初始化////
WiFi.mode(WIFI_AP);
//启动AP,并设置账号和密码
Serial.printf("设置接入点中 ... ");
//配置接入点的IP,网关IP,子网掩码
WiFi.softAPConfig(local_IP, gateway, subnet);
//启动校验式网络(需要输入账号密码的网络)
WiFi.softAP(AP_ssid, password);
while (WiFi.softAPgetStationNum() != 1) //等待连接
{
delay(500);
Serial.print(".");
display.setTextColor(WHITE);
centerPrint("Waiting for ", 24, 1);
centerPrint("connection...", 33, 1);
display.display();
}
display.clearDisplay();
Serial.println("连接成功");
////UDP监听服务初始化////
if (Udp.begin(localUdpPort)) { //启动Udp监听服务
Serial.println("监听成功");
//打印本地的ip地址,在UDP工具中会使用到
//WiFi.localIP().toString().c_str()用于将获取的本地IP地址转化为字符串
Serial.printf("现在监听本地IP:%s, 本地UDP端口:%d\n", WiFi.softAPIP().toString().c_str(), localUdpPort);
} else {
Serial.println("监听失败");
}
drawCourt();
printScores();
while (millis() - start < 2000);
ball_update = millis();
paddle_update = ball_update;
}
void loop() {
getslaverdata();
SinglePlayer();
line();
tochar();
send(char_array);
}
void drawCourt() {
display.drawRect(0, 0, 128, 64, WHITE);
for (int i = 0; i < SCREEN_HEIGHT; i += 4) {
display.drawFastVLine(SCREEN_WIDTH / 2, i, 2, WHITE);
}
}
void splash()
{
display.clearDisplay();
display.setTextColor(WHITE);
centerPrint("PONG", 0, 3);
centerPrint("By BlackBox114", 24, 1);
centerPrint("Code by", 33, 1);
centerPrint("TaichiMacker", 42, 1);
display.fillRect(0, SCREEN_HEIGHT - 10, SCREEN_WIDTH, 10, WHITE);
display.setTextColor(BLACK);
centerPrint("Press key to start!", SCREEN_HEIGHT - 9, 1);
display.display();
while (true) {
ESP.wdtFeed();//长时间循环会触发看门狗复位,因此需要喂狗
if (digitalRead(DOWN_BUTTON) + digitalRead(UP_BUTTON) < 2) {
break;
}
display.clearDisplay();
}
// soundStart();
}
void centerPrint(char *text, int y, int size)
{
display.setTextSize(size);
display.setCursor(SCREEN_WIDTH / 2 - ((strlen(text)) * 6 * size) / 2, y);
display.print(text);
}
void printScores() {
//print scores
int SIZE = 2;
int SCORE_PADDING = 10;
//backwards indent score CPU. This is dirty, but it works ... ;)
int scoreCPUWidth = 5 * SIZE;
if (scoreCPU > 9) scoreCPUWidth += 6 * SIZE;
if (scoreCPU > 99) scoreCPUWidth += 6 * SIZE;
if (scoreCPU > 999) scoreCPUWidth += 6 * SIZE;
if (scoreCPU > 9999) scoreCPUWidth += 6 * SIZE;
display.setTextColor(WHITE);
display.setCursor(SCREEN_WIDTH / 2 - SCORE_PADDING - scoreCPUWidth, 10);
display.print(scoreCPU);
display.setCursor(SCREEN_WIDTH / 2 + SCORE_PADDING + 2, 10); //+1 because of dotted line.
display.print(scoreUSER);
display.display();
}
void SinglePlayer() {
bool update = false;
unsigned long time = millis();
static bool up_state = false;
static bool down_state = false;
static bool sup_state = false;
static bool sdown_state = false;
up_state |= (digitalRead(UP_BUTTON) == LOW);
down_state |= (digitalRead(DOWN_BUTTON) == LOW);
sup_state |= (slaverpadup == 1);
sdown_state |= (slaverpaddown == 1);
if (time > ball_update) {
uint8_t new_x = ball_x + ball_dir_x;
uint8_t new_y = ball_y + ball_dir_y;
// 如果球撞到电脑的墙
if (new_x == 0) {
display.clearDisplay();
drawCourt();
scoreUSER++;
sscoreUSER = scoreUSER;
printScores();
delay(1000);
new_x = ball_x0 + ball_dir_x;
new_y = ball_y0 + ball_dir_y;
}
// 如果球撞到玩家的墙
if (new_x == 127) {
display.clearDisplay();
drawCourt();
scoreCPU++;
sscoreCPU = scoreCPU;
printScores();
delay(1000);
new_x = ball_x0 + ball_dir_x;
new_y = ball_y0 + ball_dir_y;
}
// 如果球撞到水平的墙
if (new_y == 0 || new_y == 63) {
ball_dir_y = -ball_dir_y;
new_y += ball_dir_y + ball_dir_y;
}
//如果球撞到电脑的拍子上
if (new_x == CPU_X && new_y >= cpu_y && new_y <= cpu_y + PADDLE_HEIGHT) {
ball_dir_x = -ball_dir_x;
new_x += ball_dir_x + ball_dir_x;
}
// 如果球撞到玩家的拍子上
if (new_x == PLAYER_X
&& new_y >= player_y
&& new_y <= player_y + PADDLE_HEIGHT)
{
ball_dir_x = -ball_dir_x;
new_x += ball_dir_x + ball_dir_x;
}
sball_x = ball_x;
sball_y = ball_y;
display.drawPixel(ball_x, ball_y, BLACK);
display.drawPixel(new_x, new_y, WHITE);
ball_x = new_x;
ball_y = new_y;
ball_update += BALL_RATE;
update = true;
}
if (time > paddle_update) {
paddle_update += PADDLE_RATE;
// CPU paddle
display.drawFastVLine(CPU_X, cpu_y, PADDLE_HEIGHT, BLACK);
if (sup_state) {
cpu_y -= 2;
}
if (sdown_state) {
cpu_y += 2;
}
sup_state = sdown_state = false;
if (cpu_y < 2) cpu_y = 2;
if (cpu_y + PADDLE_HEIGHT > 63) cpu_y = 63 - PADDLE_HEIGHT;
scpu_y = cpu_y;
display.drawFastVLine(CPU_X, cpu_y, PADDLE_HEIGHT, WHITE);
slaverpadup = 0;
slaverpaddown = 0;
// Player paddle
display.drawFastVLine(PLAYER_X, player_y, PADDLE_HEIGHT, BLACK);
if (up_state) {
player_y -= 1;
}
if (down_state) {
player_y += 1;
}
up_state = down_state = false;
if (player_y < 1) player_y = 1;
if (player_y + PADDLE_HEIGHT > 63) player_y = 63 - PADDLE_HEIGHT;
splayer_y = player_y;
display.drawFastVLine(PLAYER_X, player_y, PADDLE_HEIGHT, WHITE);
update = true;
}
if (update)
display.display();
}
//udp发送消息////
void send(const char *buffer)
{
Udp.beginPacket(Udp.remoteIP(), remoteUdpPort);//配置远端ip地址和端口
Udp.write(buffer); //把数据写入发送缓冲区
Udp.endPacket(); //发送数据
// Serial.printf("本机IP:%s", WiFi.localIP().toString().c_str());
// Serial.printf("发送给远程IP:%s", Udp.remoteIP().toString().c_str());
}
////解析Udp数据包////
void getslaverdata() {
int packetSize = Udp.parsePacket();//获得解析包
if (packetSize)//解析包不为空
{
//收到Udp数据包
//Udp.remoteIP().toString().c_str()用于将获取的远端IP地址转化为字符串
// Serial.printf("收到来自远程IP:%s(远程端口:%d)的数据包字节数:%d\n", Udp.remoteIP().toString().c_str(), Udp.remotePort(), packetSize);
// 读取Udp数据包并存放在incomingPacket
int len = Udp.read(incomingPacket, 4);//返回数据包字节数
if (len > 0)
{
incomingPacket[len] = 0;//清空缓存
// Serial.printf("UDP数据包内容为: %s\n", incomingPacket);//向串口打印信息
if (strcmp(incomingPacket, "UPUP") == 0) // 收到slavepad向上的信息
{
slaverpadup = 1;
}
else if (strcmp(incomingPacket, "DOWN") == 0) //收到slavepad向下的信息
{
slaverpaddown = 1;
}
else // 如果指令错误,调用sendCallBack
{
delay(1);
Serial.printf("error");//向串口打印信息
}
}
}
}
////连接字符串////
void line() {
String string1, string2, string3, string4, string5, string6, string7, string8;
// oneLine = sstate + ';' + sclearall + ';' + sball_x + ';' + sball_y + ';' + scpu_y + ';' + splayer_y + ';' + sscoreCPU + ';' + sscoreUSER + ';' + '.' ;
string1 = sstate;
string2 = sclearall;
string3 = sball_x;
string4 = sball_y;
string5 = scpu_y;
string6 = splayer_y;
string7 = sscoreCPU;
string8 = sscoreUSER;
oneLine = string1 + ';' + string2 + ';' + string3 + ';' + string4 + ';' + string5 + ';' + string6 + ';' + string7 + ';' + string8 + ';' + '.';
// Serial.println(oneLine);
}
void tochar() {
String str = oneLine;
// Serial.println("字符串为:");
//Serial.println(oneLine);
int str_len = str.length() + 1;
char char_array[str_len];
str.toCharArray(char_array, str_len);
// Serial.println("转换后为:");
//Serial.println(char_array);
send(char_array);
}
|
b2fbb409bf72ab659f05f3fd417d0c663d4fa0ef | b0611056df16ad26cb826caaf7df89e519fc330d | /c++11/2/2-6.cpp | cbc3919541d68bce8cab082507c5240872498506 | [] | no_license | gdh55555/pratice | b00baba45ac1a9f4b65dda25d3db94a4bb3f1440 | f268844465e6de705a20fa3cb8656cf718431edd | refs/heads/master | 2021-01-10T11:17:50.979502 | 2016-02-29T14:23:51 | 2016-02-29T14:23:51 | 44,220,541 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 269 | cpp | 2-6.cpp | #include <cassert>
#include <cstdlib>
#ifdef NDEBUG
#define assert(expr) (static_cast<void> (0))
#else
#endif
using namespace std;
char* ArrayAlloc(int n){
assert(n > 0);
return (char*)malloc(sizeof (char) * n);
}
int main(){
char* a = ArrayAlloc(0);
}
|
23b083d00f990f02807b4a1f528e404aa99b5c1e | c3863155cac785dad36e2060856d4bc99c477b2a | /adjacencyList.cpp | 0cbd62e8d328ba22dafd74eff84ca9414fc9a5b3 | [] | no_license | iashtripathy/c- | 2d88109e63bee63b8ee380eb96a6aba837a7659e | b655540631e6f2ef44d5c8a64387489b0e0f8241 | refs/heads/master | 2022-12-19T23:22:43.584815 | 2020-09-26T03:49:10 | 2020-09-26T03:49:10 | 298,731,672 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 433 | cpp | adjacencyList.cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int edges,vertices;
cin>>edges>>vertices;
vector <int> v[vertices];
int arr[2*edges];
for(int i=0;i<(2*edges);i++){
cin>>arr[i];
}
for(int i=0;i<(2*edges);i+=2){
v[arr[i]].push_back(arr[i+1]);
}
for(int i=0;i<vertices;i++){
for(const auto &j:v[i]){
cout<<i<<"->"<<j<<endl;
}
}
return 0;
} |
2d23692369d89961dffcb39cea289967943fa209 | 6aada0781661525baa370e53c341e75ba2d488d7 | /DesignPatterns/BehavioralPatterns/BehavioralPatterns/Dialog.cpp | d8436867b9a1da873b49f30c31400d4b5ec6c645 | [] | no_license | Zerophase/CodeFromBooks | 2aaf50e07bce39406ad4e4723545e5f0f45c075f | fef44a217cbb33991c29157aa6f60af0b457315b | refs/heads/master | 2021-01-22T13:08:19.788541 | 2015-01-02T05:04:32 | 2015-01-02T05:04:32 | 28,703,442 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 213 | cpp | Dialog.cpp | #include "Dialog.h"
Dialog::Dialog(HelpHandler *h, Topic t)
: Widget(0)
{
SetHandler(h, t);
}
void Dialog::HandleHelp()
{
if (HasHelp())
{
//Offer help on the dialog
}
else
HelpHandler::HandleHelp();
} |
58bf2b76d4b2449b9243633effa0e0aa35801183 | 61c6d30c3bbb8fda3369d4d653cf48ca12b0cd75 | /C++/mem_del.cpp | d49fdf81247589d33efd28f9f0aeafbc3fa66128 | [] | no_license | kugoucode/program-learn | df9ff45f49c45540df81ad64414acc31d69b6e2f | d82ea6bb25d144814cd8fedfe78a294184ad9ae7 | refs/heads/master | 2021-01-10T07:57:13.880906 | 2016-11-06T16:40:26 | 2016-11-06T16:40:26 | 49,882,586 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 769 | cpp | mem_del.cpp | /*************************************************************************
> File Name: mem_del.cpp
> Author:
> Mail:
> Created Time: 日 9/11 15:08:32 2016
************************************************************************/
#include <iostream>
using namespace std;
int main()
{
// 先声明一个指针变量,然后给指针取申请内存,内存大小可以在后面按需所定义
int *p = new int[12];
if(NULL == p)
{
cout << "The mem storage value is null!" << endl;
return 0;
}
// 为申请下来的内存分配数值
*p = 20;
cout << "The mem storage value is:" << *p << endl;
// 程序最后需要回收内存空间,以及需要重置指针
delete p;
p = NULL;
return 0;
}
|
e0202433c6a2c6a0ce2dfdf46e6c7289d19c5d48 | 37b75ec931551a0ce603db5abc7c0b65bde92c6a | /lib/Generator/MandelbulbVolGen/MandelbulbVolGen.cpp | 3134720eb795f903b52f9c9ea56cd845a1533d77 | [
"MIT"
] | permissive | avr-aics-riken/HIVE | f4caf1b2b9e22240673c0b3f6964268287991136 | 3efdae843d4bdd75b43797ce591cd81ad95aed65 | refs/heads/master | 2020-04-03T20:23:09.171453 | 2018-02-04T08:35:30 | 2018-02-04T08:35:30 | 13,294,350 | 12 | 12 | null | 2018-12-12T04:57:26 | 2013-10-03T09:01:54 | JavaScript | UTF-8 | C++ | false | false | 5,057 | cpp | MandelbulbVolGen.cpp | /**
* @file MandelbulbVolGen.cpp
* Mandelbulb Volume Generator
*/
#include <stdio.h>
#include <string.h>
#include <math.h>
#include "MandelbulbVolGen.h"
/// Constructor
MandelbulbVolGen::MandelbulbVolGen()
{
m_volume = BufferVolumeData::CreateInstance();
Clear();
}
/// Destructor
MandelbulbVolGen::~MandelbulbVolGen()
{
Clear();
}
/// Clear members
void MandelbulbVolGen::Clear()
{
m_volume->Clear();
}
void mandelbulb(const float px, const float py, const float pz,
float &iterationCount, float &minDist, float &maxDist)
{
const int maxIteration = 4;
const float power = 8.;
iterationCount = 0.;
float r = 0;
float z[3] = {px, py, pz};
minDist = 99999;
maxDist = -1;
for (int i = 0; i < maxIteration; i++) {
iterationCount = i;
r = sqrt(z[0] * z[0] + z[1] * z[1] + z[2] * z[2]);
minDist = std::min(minDist, r);
maxDist = std::max(maxDist, r);
if( r > 2. ) {
minDist = 0;
maxDist = 0;
iterationCount = 0;
return;
}
float zr = pow( r, power);
float theta = acos(z[1] / r);
float phi = atan2(z[2], z[0]);
theta *= power;
phi *= power;
z[0] = zr * sin(theta)*cos(phi) + px;
z[1] = zr * cos(theta) + py;
z[2] = zr * sin(phi) * sin(theta) + pz;
}
}
float* calcMandelbulb(const int w, const int h, const int d,
const float originX, const float originY, const float originZ)
{
float* voldata = new float [w * h * d * 1];
float* p = voldata;
float bmin[3] = {-1.5, -1.5, -1.5};
float bmax[3] = {1.5, 1.5, 1.5};
float step[3] = {(bmax[0] - bmin[0]) / w,
(bmax[1] - bmin[1]) / h,
(bmax[2] - bmin[2]) / d};
float offset[3] = {step[0] / 2., step[1] / 2., step[2] / 2.};
for (int vz = 0 ; vz < d ; vz++) {
float z = step[2] * vz + bmin[2] + offset[2] + originX;
for (int vy = 0 ; vy < h ; vy++) {
float y = step[1] * vy + bmin[1] + offset[1] + originY;
for (int vx = 0 ; vx < w ; vx++) {
float x = step[0] * vx + bmin[0] + offset[0] + originZ;
float iterationCount, minDist, maxDist;
mandelbulb(x, y, z,
iterationCount, minDist, maxDist);
*p = minDist;
p++;
// *p = maxDist;
// p++;
// *p = maxDist;
// p++;
}
}
}
return voldata;
}
/**
* Generate Mandelbulb Volume
* @param size size
* @retval true 成功
* @retval false 失敗
*/
bool MandelbulbVolGen::Generate(const int size)
{
Clear();
fprintf(stderr,"size: %d\n", size);
// resolution ... size * size * size
const int w = size;
const int h = size;
const int d = size;
const float originX = 0;
const float originY = 0;
const float originZ = 0;
// Mandelbulb Volume has 1 components
// Use minDist as density
const int c = 1;
const float* buf = calcMandelbulb(w, h, d,
originX, originY, originZ);
m_volume->Create(w, h, d, c);
const int fnum = w * h * d * c;
memcpy(m_volume->Buffer()->GetBuffer(), buf, fnum * sizeof(float));
delete [] buf;
return true;
}
/**
* Generate Mandelbulb Volume
* @param size size
* @param originX originX
* @param originY originY
* @param originZ originZ
* @retval true 成功
* @retval false 失敗
*/
bool MandelbulbVolGen::Generate(const int size,
const float originX, const float originY, const float originZ)
{
Clear();
fprintf(stderr,"size: %d\n", size);
// resolution ... size * size * size
const int w = size;
const int h = size;
const int d = size;
// Mandelbulb Volume has 1 components
// Use minDist as density
const int c = 1;
const float* buf = calcMandelbulb(w, h, d,
originX, originY, originZ);
m_volume->Create(w, h, d, c);
const int fnum = w * h * d * c;
memcpy(m_volume->Buffer()->GetBuffer(), buf, fnum * sizeof(float));
delete [] buf;
return true;
}
/**
* VOLWidth取得
* @retval int Width
*/
int MandelbulbVolGen::Width()
{
return m_volume->Width();
}
/**
* VOLHeight取得
* @retval int Height
*/
int MandelbulbVolGen::Height()
{
return m_volume->Height();
}
/**
* VOLDepth取得
* @retval int Depth
*/
int MandelbulbVolGen::Depth()
{
return m_volume->Depth();
}
/**
* VOLComponent取得
* @retval int Component数
*/
int MandelbulbVolGen::Component()
{
return m_volume->Component();
}
/**
* VOLデータバッファ参照取得
* @retval FloatBuffer* FloatBufferアドレス
*/
FloatBuffer* MandelbulbVolGen::Buffer()
{
return m_volume->Buffer();
}
/**
* VolumeData参照取得
* @retval BufferVolumeData* VolumeData参照
*/
BufferVolumeData *MandelbulbVolGen::VolumeData()
{
return m_volume;
}
|
f464987a05e145750c412fbd0bb498e39dd19f0a | 3333edce8305b199431da4ed1e2bbe9bf5aef175 | /BOJ/10000~/10769/src.cpp | 0d819ea19dbd56a699d866466b21bff9a2eefba0 | [] | no_license | suhyunch/shalstd | d208ba10ab16c3f904de9148e4fa11f243148c03 | 85ede530ebe01d1fffc3b5e2df5eee1fa88feaf0 | refs/heads/master | 2021-06-07T10:45:58.181997 | 2019-08-11T13:14:48 | 2019-08-11T13:14:48 | 110,432,069 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 610 | cpp | src.cpp | //https://www.acmicpc.net/problem/10769
#include <iostream>
using namespace std;
int main(){
char str[256];
cin.getline(str, 255);
int cnt[2]={0,0};
for(int i=0; str[i]!=0; i++){
if(str[i]==':' && (str[i+1]!=0 && str[i+2]!=0)){
if(str[i+1]=='-'){
if(str[i+2]==')') cnt[0]++;
else if(str[i+2]=='(') cnt[1]++;
}
}
}
if(cnt[1]==0 && cnt[0]==0) cout <<"none";
else if(cnt[0]==cnt[1]) cout <<"unsure";
else if(cnt[0]>cnt[1]) cout <<"happy";
else cout <<"sad";
return 0;
}
|
45cc94409783c0aa4334f62722d26fb682103b2d | cdfef83c21ac672666954232a328c5bd7d91a411 | /lab-assignments/rainfall/main.cc | db6f517d0c5e26a2848f723da5717b66fdf650d1 | [] | no_license | MayZamudio/csci-40 | 35eee65e5c11b40c3a145b9c4fbc962abd852fe2 | e7eed02f88351f6bafcb6bd6df4ea2aa09415384 | refs/heads/master | 2020-09-30T05:21:56.509726 | 2019-12-11T00:41:29 | 2019-12-11T00:41:29 | 227,214,715 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,128 | cc | main.cc | #include <iostream>
#include <cmath>
#include <algorithm>
#include <numeric>
#include <vector>
#include <numeric>
using namespace std;
void die() {
cout << "BAD INPUT!" << endl;
exit(1);
}
int main() {
cout << "Please enter daily rainfall data (-1 to quit):\n";
vector<int> userVals;
int num;
int nonRainyDays = 0;
cin >> num;
if (!cin) die();
while (num != -1) {
if (num > -1) userVals.push_back(num);
if (num == 0) nonRainyDays++;
cin >> num;
if (!cin) die();
}
sort(userVals.begin(), userVals.end(), greater<>());
int average = accumulate(userVals.begin(), userVals.end(), 0.0) / userVals.size();
int numRainyDays = (userVals.size() - nonRainyDays);
int averageRainy = 0;
if (numRainyDays != 0) {
averageRainy = accumulate(userVals.begin(), userVals.end(), 0.0) / numRainyDays;
}
while (true) {
int choice = 0;
cout << "1) Average daily rainfall\n";
cout << "2) Average rainfall on rainy days\n";
cout << "3) Count of days that had rain\n";
cout << "4) Maximum rainfall\n";
cout << "5) Top 5 days of rain\n";
cout << "6) Quit\n";
cin >> choice;
if (!cin) die();
if (choice == 1) {
if (userVals.empty()) cout << "NO DATA\n";
else cout << average << endl;
} else if (choice == 2) {
if (userVals.empty() || numRainyDays == 0) cout << "NO DATA\n";
else cout << averageRainy << endl;
} else if (choice == 3) {
cout << numRainyDays << endl;
} else if (choice == 4) {
if (userVals.empty() || numRainyDays == 0) cout << "NO DATA\n";
else cout << userVals.at(0) << endl;
} else if (choice == 5) {
if (userVals.at(0) == 0) cout << "NO DATA\n";
else {
for (unsigned int i = 0; i < 5; i++) {
if (i > userVals.size() - 1 || userVals.at(i) == 0) break;
cout << userVals.at(i) << endl;
}
}
} else break;
}
} |
78196ffc6f6788a50828189a595e686821373629 | 67b91930deebf72c9c4b0a61f4111554f8079761 | /cpp/main.cpp | 115b1b33a54fd3076ffdfc149debbaad4a5b83a6 | [] | no_license | ssangx/raytracing.cuda | b9f677bbe18318788a8e58b46eea4b6660c0034f | 4faed9c4c1d19edfbe10ceff3325b58694cecb35 | refs/heads/master | 2022-04-08T13:30:34.734849 | 2020-03-25T00:33:45 | 2020-03-25T00:33:45 | 209,899,727 | 23 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 2,618 | cpp | main.cpp | #include <ctime>
#include <iostream>
#include <unistd.h>
#include "scene.h"
#include "camera.h"
#include "rectangle.h"
vec3 shade(const Ray& r, Hitable* scene, int depth){
HitRecord rec;
if(scene->hit(r, 0.001, FLT_MAX, rec)) {
Ray scattered;
vec3 attenuation;
vec3 emmited = rec.mat_ptr->emitted(rec.u, rec.v, rec.p);
if (depth < 15 && rec.mat_ptr->scatter(r, rec, attenuation, scattered)) {
return emmited + attenuation * shade(scattered, scene, depth + 1);
} else {
return emmited;
}
}
return vec3(0, 0, 0);
}
vec3 shade_nolight(const Ray& r, Hitable* scene, int depth) {
HitRecord rec;
if (scene->hit(r, 0.001, FLT_MAX, rec)) {
Ray scattered;
vec3 attenuation;
if (depth < 15 && rec.mat_ptr->scatter(r, rec, attenuation, scattered)) {
return attenuation * shade_nolight(scattered, scene, depth + 1);
} else {
return vec3(0, 0, 0);
}
} else {
return vec3(1.0, 1.0, 1.0);
}
}
int main() {
std::time_t tic = std::time(NULL);
std::cout << "Start running at " << std::asctime(std::localtime(&tic)) << std::endl;
std::string prefix = "/home/ssang/Main/Experiment/Raytracing/cpp";
std::ofstream imgWrite(prefix + "/images/image.ppm");
int nx = 800;
int ny = 1000;
int ns = 200;
imgWrite << "P3\n" << nx << " " << ny <<"\n255\n";
Context ctx;
ctx.xml_file = prefix + "/data/scenes/cornell_bunny.xml";
ctx.root = prefix;
ctx.sample = ns;
ctx.height = ny;
ctx.width = nx;
Scene* scene = new Scene(ctx);
const float gamma = 1 / 2.2;
for(int j = 0; j < ny; j ++) {
for(int i = 0; i < nx; i ++) {
vec3 col(0, 0, 0);
for(int s = 0; s < ns; s++) {
float u = float(i + drand48()) / float(nx);
float v = float(j + drand48()) / float(ny);
Ray r = scene->camera->castRay(u, v);
col += shade(r, scene, 0);
}
col /= float(ns);
// gamma correction
col = vec3(pow(col[0], gamma), pow(col[1], gamma), pow(col[2], gamma));
int ir = int(255.9 * col[0]);
int ig = int(255.9 * col[1]);
int ib = int(255.9 * col[2]);
imgWrite << ir << " " << ig << " " << ib << "\n";
}
}
std::time_t toc = std::time(NULL);
std::cout << "Finish running at " << std::asctime(std::localtime(&toc)) << std::endl;
std::cout << "Time consuming " << toc - tic << std::endl;
return 0;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.