From df3bc45d5aff6021a49821c425c25faf887e4eb0 Mon Sep 17 00:00:00 2001
From: Sam Yates <yates@cscs.ch>
Date: Fri, 1 Mar 2019 18:11:58 +0100
Subject: [PATCH] Add single cell example. (#703)

Adds a small self contained example demonstrating the use of SWC and morphology specifications, to fill a void that will be left when the miniapp is removed.

* Adds `single-cell` example, together with short README and example SWC file.
* Removes redundant constructors for context objects.
* Corrects and simplifies some of the context comments.
* Add a method to `mc_segment` for calculating (approximately) a lower bound on the length constant of that segment for a given frequency, for use with a NEURON 'd-lambda' style discretization rule.
---
 arbor/execution_context.cpp        |    8 -
 arbor/execution_context.hpp        |    3 +-
 arbor/include/arbor/context.hpp    |   39 +-
 arbor/include/arbor/mc_segment.hpp |   25 +
 example/CMakeLists.txt             |    1 +
 example/single/CMakeLists.txt      |    3 +
 example/single/README.md           |   36 +
 example/single/example.swc         | 1062 ++++++++++++++++++++++++++++
 example/single/single.cpp          |  166 +++++
 9 files changed, 1311 insertions(+), 32 deletions(-)
 create mode 100644 example/single/CMakeLists.txt
 create mode 100644 example/single/README.md
 create mode 100644 example/single/example.swc
 create mode 100644 example/single/single.cpp

diff --git a/arbor/execution_context.cpp b/arbor/execution_context.cpp
index 989ef13f..2ef429f2 100644
--- a/arbor/execution_context.cpp
+++ b/arbor/execution_context.cpp
@@ -14,10 +14,6 @@
 
 namespace arb {
 
-execution_context::execution_context():
-    execution_context(proc_allocation())
-{}
-
 execution_context::execution_context(const proc_allocation& resources):
     distributed(make_local_context()),
     thread_pool(std::make_shared<threading::task_system>(resources.num_threads)),
@@ -25,10 +21,6 @@ execution_context::execution_context(const proc_allocation& resources):
                            : std::make_shared<gpu_context>())
 {}
 
-context make_context() {
-    return context(new execution_context(), [](execution_context* p){delete p;});
-}
-
 context make_context(const proc_allocation& p) {
     return context(new execution_context(p), [](execution_context* p){delete p;});
 }
diff --git a/arbor/execution_context.hpp b/arbor/execution_context.hpp
index ee1e8415..79935f75 100644
--- a/arbor/execution_context.hpp
+++ b/arbor/execution_context.hpp
@@ -24,8 +24,7 @@ struct execution_context {
     task_system_handle thread_pool;
     gpu_context_handle gpu;
 
-    execution_context();
-    execution_context(const proc_allocation& resources);
+    execution_context(const proc_allocation& resources = proc_allocation{});
 
     // Use a template for constructing with a specific distributed context.
     // Specialised implementations are implemented in execution_context.cpp.
diff --git a/arbor/include/arbor/context.hpp b/arbor/include/arbor/context.hpp
index d28b8659..b1210c3f 100644
--- a/arbor/include/arbor/context.hpp
+++ b/arbor/include/arbor/context.hpp
@@ -4,7 +4,7 @@
 
 namespace arb {
 
-/// Requested dry-run parameters
+// Requested dry-run parameters.
 struct dry_run_info {
     unsigned num_ranks;
     unsigned num_cells_per_rank;
@@ -13,17 +13,18 @@ struct dry_run_info {
             num_cells_per_rank(cells_per_rank) {}
 };
 
-/// A subset of local computation resources to use in a computation.
+// A description of local computation resources to use in a computation.
+// By default, a proc_allocation will comprise one thread and no GPU.
+
 struct proc_allocation {
     unsigned num_threads;
 
-    // The gpu id corresponds to the `int device` parameter used by CUDA API calls
-    // to identify gpu devices.
-    // Set to -1 to indicate that no GPU device is to be used.
-    // see CUDA documenation for cudaSetDevice and cudaDeviceGetAttribute 
+    // The gpu id corresponds to the `int device` parameter used by
+    // CUDA API calls to identify gpu devices.
+    // A gpud id of -1 indicates no GPU device is to be used.
+    // See CUDA documenation for cudaSetDevice and cudaDeviceGetAttribute.
     int gpu_id;
 
-    // By default use one thread and no GPU.
     proc_allocation(): proc_allocation(1, -1) {}
 
     proc_allocation(unsigned threads, int gpu):
@@ -36,30 +37,24 @@ struct proc_allocation {
     }
 };
 
-// arb::execution_context is a container defined in the implementation for state
-// related to execution resources, specifically thread pools, gpus and MPI
-// communicators.
+// arb::execution_context encapsulates the execution resources used in
+// a simulation, namely the task system thread pools, GPU handle, and
+// MPI communicator if applicable.
 
 // Forward declare execution_context.
 struct execution_context;
 
-// arb::context is an opaque handle for this container presented in the
-// public API.
-// It doesn't make sense to copy contexts, so we use a std::unique_ptr to
-// implement the handle with lifetime management.
+// arb::context is an opaque handle for the execution context for use
+// in the public API, implemented as a unique pointer.
 //
-// Because execution_context is an incomplete type, a destructor prototype must
-// be provided.
+// As execution_context is an incomplete type, an explicit deleter must be
+// provided.
 using context = std::unique_ptr<execution_context, void (*)(execution_context*)>;
 
-
 // Helpers for creating contexts. These are implemented in the back end.
 
-// Non-distributed context that uses all detected threads and one GPU if available.
-context make_context();
-
-// Non-distributed context that uses resources described by resources
-context make_context(const proc_allocation& resources);
+// Non-distributed context using the requested resources.
+context make_context(const proc_allocation& resources = proc_allocation{});
 
 // Distributed context that uses MPI communicator comm, and local resources
 // described by resources. Or dry run context that uses dry_run_info.
diff --git a/arbor/include/arbor/mc_segment.hpp b/arbor/include/arbor/mc_segment.hpp
index 7a0a7c28..ded52d54 100644
--- a/arbor/include/arbor/mc_segment.hpp
+++ b/arbor/include/arbor/mc_segment.hpp
@@ -11,6 +11,7 @@
 
 #include <arbor/assert.hpp>
 #include <arbor/common_types.hpp>
+#include <arbor/math.hpp>
 #include <arbor/morphology.hpp>
 #include <arbor/mechinfo.hpp>
 #include <arbor/point.hpp>
@@ -134,6 +135,11 @@ public:
         return false;
     }
 
+    // Approximate frequency-dependent length constant lower bound.
+    virtual value_type length_constant(value_type freq_Hz) const {
+        return 0;
+    }
+
     util::optional<mechanism_desc&> mechanism(const std::string& name) {
         auto it = std::find_if(mechanisms_.begin(), mechanisms_.end(),
             [&](mechanism_desc& m) { return m.name()==name; });
@@ -291,6 +297,25 @@ public:
         return std::accumulate(lengths_.begin(), lengths_.end(), value_type{});
     }
 
+    value_type length_constant(value_type freq_Hz) const override {
+        // Following Hine and Carnevale (2001), "NEURON: A Tool for Neuroscientists",
+        // Neuroscientist 7, pp. 123-135.
+        //
+        // λ(f) = approx. sqrt(diameter/(pi*f*rL*cm))/2.
+        //
+        // Pick smallest non-zero diameter in the segment.
+
+        value_type r_min = 0;
+        for (auto r: radii_) {
+            if (r>0 && (r_min==0 || r<r_min)) r_min = r;
+        }
+        value_type d_min = r_min*2e-6; // [m]
+        value_type rc = rL*0.01*cm;  // [s/m]
+        value_type lambda = std::sqrt(d_min/(math::pi<double>*freq_Hz*rc))/2.; // [m]
+
+        return lambda*1e6; // [µm]
+    }
+
     bool has_locations() const
     {
         return locations_.size() > 0;
diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt
index 990a5671..d1e68b39 100644
--- a/example/CMakeLists.txt
+++ b/example/CMakeLists.txt
@@ -9,3 +9,4 @@ add_subdirectory(brunel)
 add_subdirectory(bench)
 add_subdirectory(ring)
 add_subdirectory(gap_junctions)
+add_subdirectory(single)
diff --git a/example/single/CMakeLists.txt b/example/single/CMakeLists.txt
new file mode 100644
index 00000000..6b2afe48
--- /dev/null
+++ b/example/single/CMakeLists.txt
@@ -0,0 +1,3 @@
+add_executable(single-cell EXCLUDE_FROM_ALL single.cpp)
+add_dependencies(examples single-cell)
+target_link_libraries(single-cell PRIVATE arbor arborenv arbor-sup)
diff --git a/example/single/README.md b/example/single/README.md
new file mode 100644
index 00000000..64f34801
--- /dev/null
+++ b/example/single/README.md
@@ -0,0 +1,36 @@
+# 'single' example.
+
+Example of simulating a single neuron with morphology described by an SWC file.
+
+A cell is constructed from a supplied morphology with H–H channels
+on the soma and passive channels on the dendrites. A simple exponential
+synapse is added at the end of the last dendrite in the morphology,
+and is triggered at time t = 1 ms.
+
+The simulation outputs a trace of the soma membrane voltage in a simple CSV
+format.
+
+## Features
+
+The example demonstrates the use of:
+
+* Generating a morphology from an SWC file.
+* Using a morphology to construct a cable cell.
+* Injecting an artificial spike event into the simulation.
+* Adding a voltage probe to a cell and running a sampler on the simulation.
+
+## Running the example
+
+By default, `single-cell` will simulate a 'ball-and-stick' neuron for 20 ms,
+with a maxium dt of 0.025 ms and samples taken every 0.1 ms. The default
+synaptic weight is 0.01 µS.
+
+### Command line options
+
+| Option                | Effect |
+|-----------------------|--------|
+| -m, --morphology FILE | Load the morphology from FILE in SWC format |
+| -d, --dt TIME         | Set the maximum integration time step [ms] |
+| -t, --t-end TIME      | Set the simulation duration [ms] |
+| -w, --weight WEIGHT   | Set the synaptic weight [µS] |
+
diff --git a/example/single/example.swc b/example/single/example.swc
new file mode 100644
index 00000000..84addf08
--- /dev/null
+++ b/example/single/example.swc
@@ -0,0 +1,1062 @@
+#example swc file from the Allen DB
+#name C:/neuron tracing and reconstruction/vaa3d/vaa3d_bin_msvc_64bit_v2921_a/vaa3d_bin_msvc_64bit_v2921_a/Sst-IRES-Cre;Ai14(IVSCC)-173191.06.01.01.DS.swc_resampled.swc_sorted.swc_pruned.swc_pruned.swc
+#comment
+##n,type,x,y,z,radius,parent
+1 1 345.8312 346.9752 50.96 2.9744 -1
+2 3 347.2486 344.4641 52.04 0.1252 1
+3 3 347.6033 343.3762 52.0789 0.1487 2
+4 3 347.8641 342.2642 52.071 0.1853 3
+5 3 348.1409 341.1534 52.0246 0.2235 4
+6 3 348.4269 340.0551 51.688 0.262 5
+7 3 348.5734 338.942 51.1722 0.3007 6
+8 3 348.6409 337.8312 51.6947 0.3165 7
+9 3 348.9108 336.7387 52.1489 0.3178 8
+10 3 349.031 335.605 52.3401 0.2943 9
+11 3 349.0584 334.4667 52.0985 0.2805 10
+12 3 349.1797 333.3296 52.0738 0.256 11
+13 3 349.6785 332.3057 52.045 0.2305 12
+14 3 350.3752 331.4019 51.9201 0.2051 13
+15 3 351.049 330.5108 51.3243 0.1795 14
+16 3 351.8441 329.7122 50.8623 0.1658 15
+17 3 352.8199 329.1723 50.2564 0.1407 16
+18 3 353.6379 328.622 48.8471 0.1523 17
+19 3 354.4101 327.7835 48.666 0.1903 18
+20 3 355.0015 326.8088 48.4406 0.3432 19
+21 3 355.2406 326.0858 48.0054 0.2905 20
+22 3 355.5586 325.0047 48.0833 0.2134 21
+23 3 355.6399 323.9442 47.4054 0.1627 22
+24 3 355.7966 323.2361 45.3768 0.1525 23
+25 3 356.5951 322.7373 44.0163 0.1742 24
+26 3 357.1213 321.8038 44.4405 0.178 25
+27 3 357.7906 320.8931 44.8554 0.1525 26
+28 3 357.9885 320.5099 44.812 0.2397 27
+29 3 358.2047 319.5203 46.1068 0.2924 28
+30 3 358.3832 318.4873 47.1971 0.2839 29
+31 3 358.9346 317.5389 47.591 0.2536 30
+32 3 359.4311 316.5208 47.6991 0.2415 31
+33 3 359.7079 315.4294 48.1057 0.2592 32
+34 3 360.4023 314.6972 47.546 0.2781 33
+35 3 361.4617 314.4776 46.6984 0.2796 34
+36 3 362.5851 314.3495 46.9686 0.2678 35
+37 3 363.5952 313.8312 46.8367 0.2791 36
+38 3 364.1524 312.8531 46.4405 0.3049 37
+39 3 364.4258 311.7457 46.2462 0.3051 38
+40 3 364.547 311.0547 45.8128 0.1722 39
+41 3 364.5036 310.0549 44.485 0.1761 40
+42 3 364.0139 309.166 43.2284 0.1905 41
+43 3 363.6684 308.0792 43.3289 0.2288 42
+44 3 363.6501 307.4317 43.7506 0.1431 43
+45 3 363.5071 306.3152 43.2762 0.1524 44
+46 3 362.9043 305.3473 43.0903 0.1525 45
+47 3 362.8002 305.0762 41.0407 0.1518 46
+48 3 363.061 305.2192 38.3914 0.1388 47
+49 3 363.7634 304.7948 36.4557 0.1258 48
+50 3 364.4864 304.1301 35.0616 0.1144 49
+51 3 365.3067 303.4277 34.8012 0.1144 50
+52 3 365.9519 303.0101 36.7332 0.1144 51
+53 3 366.1349 302.8271 39.41 0.1144 52
+54 3 366.0468 302.5651 42.1162 0.1241 53
+55 3 365.9553 302.0126 44.0028 0.1562 54
+56 3 366.5708 301.6705 45.638 0.1848 55
+57 3 367.3407 301.4566 47.6333 0.1703 56
+58 3 368.2422 301.0047 48.862 0.1439 57
+59 3 369.2523 300.7587 50.0007 0.1181 58
+60 3 370.1504 300.4064 51.4822 0.1144 59
+61 3 371.1525 300.0334 50.6584 0.1144 60
+62 3 371.9144 300.3 48.72 0.1271 61
+63 3 362.2407 304.6163 42.6549 0.1525 46
+64 3 361.4846 303.7823 42.1585 0.1525 63
+65 3 360.749 302.9484 41.5696 0.1634 64
+66 3 360.5053 301.9382 40.88 0.2127 65
+67 3 360.3234 301.1649 42.0109 0.1525 66
+68 3 360.1312 300.1467 42.0591 0.1977 67
+69 3 360.2856 299.0267 41.8816 0.1652 68
+70 3 360.3085 297.9193 41.3322 0.1679 69
+71 3 360.2284 296.7879 40.9721 0.1722 70
+72 3 360.1484 295.6554 40.6118 0.1764 71
+73 3 359.6896 294.7173 40.8979 0.178 72
+74 3 359.4471 293.8192 40.0518 0.2634 73
+75 3 359.3773 292.7885 39.2188 0.2594 74
+76 3 358.8328 292.2886 40.4404 0.2093 75
+77 3 357.9324 291.8104 40.4524 0.2463 76
+78 3 357.5549 291.148 40.7067 0.178 77
+79 3 357.7929 290.4044 41.778 0.1509 78
+80 3 357.6052 290.2225 39.3299 0.1271 79
+81 3 357.2437 289.2375 39.1308 0.1558 80
+82 3 356.8044 288.5168 39.1642 0.115 81
+83 3 356.0128 288.1027 39.48 0.3209 82
+84 3 355.736 287.2893 38.4395 0.2196 83
+85 3 355.4339 286.6555 39.76 0.1478 84
+86 3 355.3367 285.674 38.9138 0.2157 85
+87 3 354.9832 284.753 38.18 0.2016 86
+88 3 354.3826 283.8722 38.6277 0.122 87
+89 3 353.3919 283.5164 39.3621 0.2288 88
+90 3 352.6586 283.1434 39.5105 0.1801 89
+91 3 351.9768 282.3838 38.3928 0.178 90
+92 3 351.1359 281.845 37.1064 0.1531 91
+93 3 350.1349 281.6906 37.4791 0.1555 92
+94 3 349.5858 281.1792 39.3308 0.2404 93
+95 3 348.872 280.6815 40.5969 0.2284 94
+96 3 348.3514 280.2388 39.1154 0.1628 95
+97 3 347.4042 279.7606 39.0009 0.1305 96
+98 3 346.9615 279.374 40.4776 0.2131 97
+99 3 346.1378 279.184 39.867 0.186 98
+100 3 345.1402 278.9781 40.5045 0.2239 99
+101 3 344.1003 279.128 40.4074 0.1746 100
+102 3 343.4242 278.461 39.0852 0.2288 101
+103 3 342.3283 278.4141 39.5388 0.1792 102
+104 3 341.5401 278.008 40.6 0.2003 103
+105 3 340.7141 277.4006 41.0668 0.178 104
+106 3 339.8641 276.8777 40.7912 0.2248 105
+107 3 338.8265 276.4945 40.32 0.1838 106
+108 3 338.3769 275.6148 39.7911 0.2136 107
+109 3 337.8541 274.7716 40.8598 0.1818 108
+110 3 337.8404 273.9777 39.8051 0.2612 109
+111 3 337.2775 273.2147 39.8112 0.1411 110
+112 3 336.8977 272.8737 41.4341 0.1295 111
+113 3 336.0454 272.4825 41.4882 0.1209 112
+114 3 335.4116 271.9059 41.2969 0.175 113
+115 3 334.5079 271.3396 41.1723 0.1924 114
+116 3 333.9187 270.4107 41.1289 0.1839 115
+117 3 333.4611 269.6339 40.32 0.1626 116
+118 3 333.0562 268.7107 41.0533 0.167 117
+119 3 332.5494 267.8012 40.7145 0.2142 118
+120 3 332.0334 266.8449 40.3763 0.1575 119
+121 3 331.2727 266.02 40.32 0.1652 120
+122 3 330.37 265.3302 40.32 0.1525 121
+123 3 329.4045 264.7491 40.32 0.1464 122
+124 3 328.7856 263.8739 40.32 0.1162 123
+125 3 328.7742 262.7379 40.0663 0.1756 124
+126 3 328.5007 261.6454 39.8079 0.2128 125
+127 3 328.0763 260.586 39.76 0.2415 126
+128 3 327.5867 259.5622 39.76 0.2158 127
+129 3 326.7561 258.7831 39.76 0.1597 128
+130 3 326.3489 257.789 39.9283 0.1144 129
+131 3 325.5858 257.1437 40.04 0.2602 130
+132 3 325.0344 256.1942 40.32 0.1525 131
+133 3 324.046 255.6565 40.3785 0.1557 132
+134 3 323.4523 254.7036 40.6 0.1695 133
+135 3 322.568 253.9829 40.6056 0.2288 134
+136 3 321.7168 253.2519 40.88 0.1885 135
+137 3 321.0933 252.3172 40.88 0.1241 136
+138 3 320.932 251.1915 40.88 0.1144 137
+139 3 320.3372 250.2431 40.88 0.1144 138
+140 3 319.9871 249.1746 40.88 0.1282 139
+141 3 319.788 248.113 41.4607 0.2398 140
+142 3 319.2526 247.2161 42.0 0.2024 141
+143 3 318.5537 246.3192 42.1347 0.2415 142
+144 3 317.8249 245.4566 42.4766 0.2199 143
+145 3 316.9852 244.6879 42.56 0.1938 144
+146 3 316.0163 244.1376 43.0962 0.2034 145
+147 3 315.204 243.4947 43.6257 0.2013 146
+148 3 314.3266 242.7968 43.68 0.2078 147
+149 3 313.6573 241.9754 44.24 0.1849 148
+150 3 312.86 241.1872 44.24 0.1144 149
+151 3 311.7434 241.0133 44.24 0.1493 150
+152 3 310.7493 240.4551 44.24 0.1311 151
+153 3 309.6739 240.0924 44.24 0.1332 152
+154 3 308.5906 239.7824 44.1062 0.1489 153
+155 3 307.4683 239.7824 43.6892 0.1284 154
+156 3 306.3895 239.6611 42.917 0.1144 155
+157 3 305.2993 239.3648 42.84 0.1144 156
+158 3 304.2274 239.0056 42.84 0.1144 157
+159 3 303.1325 238.7848 42.56 0.1144 158
+160 3 301.9885 238.7448 42.56 0.1144 159
+161 3 300.9132 238.4622 42.28 0.1144 160
+162 3 300.1238 237.6923 42.28 0.1144 161
+163 3 298.9993 237.5974 42.28 0.1506 162
+164 3 298.2328 236.983 42.7468 0.1678 163
+165 3 297.4228 236.2326 42.84 0.1271 164
+166 3 296.4893 235.8928 43.6498 0.1241 165
+167 3 295.4243 235.8928 44.24 0.1144 166
+168 3 294.2803 235.8928 44.24 0.1144 167
+169 3 293.1546 235.6949 44.24 0.122 168
+170 3 292.133 235.211 44.24 0.1459 169
+171 3 291.0302 234.9238 44.24 0.1398 170
+172 3 289.8896 234.8632 44.24 0.1398 171
+173 3 364.7095 307.8069 43.7424 0.1144 43
+174 3 365.6544 307.3562 44.0586 0.1144 173
+175 3 366.4346 307.1503 45.9368 0.1144 174
+176 3 366.6326 306.2625 45.729 0.1144 175
+177 3 366.819 305.3336 44.1804 0.1271 176
+178 3 367.5512 304.5774 43.0892 0.14 177
+179 3 368.2856 303.8338 41.9546 0.1525 178
+180 3 368.829 302.9037 41.0771 0.1538 179
+181 3 369.3598 302.31 39.1188 0.1798 180
+182 3 370.0748 301.4429 38.64 0.2056 181
+183 3 370.6549 300.4579 38.6392 0.2277 182
+184 3 371.403 299.5953 38.6319 0.2149 183
+185 3 372.2828 298.8643 38.5815 0.2034 184
+186 3 373.2106 298.2042 38.3443 0.2034 185
+187 3 374.1452 297.6036 37.6989 0.2034 186
+188 3 375.0856 296.9618 37.4352 0.1989 187
+189 3 375.8967 296.2194 37.1123 0.1616 188
+190 3 376.0763 295.0982 36.773 0.1353 189
+191 3 376.2959 294.0023 36.4549 0.1144 190
+192 3 376.9926 293.1134 36.3866 0.1144 191
+193 3 377.9021 292.4316 36.3026 0.1144 192
+194 3 378.4764 291.5953 35.5953 0.1144 193
+195 3 378.481 290.8117 33.556 0.1144 194
+196 3 378.5187 289.9605 31.8716 0.1342 195
+197 3 378.5908 288.852 31.3102 0.255 196
+198 3 379.4305 288.2434 30.5082 0.1525 197
+199 3 379.236 287.716 28.8344 0.1144 198
+200 3 379.2566 287.1543 26.88 0.1259 199
+201 3 379.7233 286.5995 28.4158 0.2288 200
+202 3 380.3892 286.572 27.6574 0.167 201
+203 3 381.4027 286.4073 27.8571 0.2226 202
+204 3 382.4758 286.2963 27.72 0.1433 203
+205 3 382.8648 285.7632 28.721 0.2288 204
+206 3 382.9346 284.8228 28.3332 0.1865 205
+207 3 382.9574 284.2897 26.4147 0.2317 206
+208 3 382.3534 283.7875 25.1253 0.1863 207
+209 3 381.4805 283.3677 24.3115 0.1144 208
+210 3 381.1659 282.4227 25.2 0.1966 209
+211 3 380.4944 282.3392 25.2 0.1271 210
+212 3 365.2552 311.017 46.0088 0.2215 39
+213 3 366.112 310.4713 44.8806 0.1927 212
+214 3 367.1336 310.1132 44.2781 0.178 213
+215 3 368.1415 309.5904 44.2394 0.178 214
+216 3 369.1093 308.9818 44.2361 0.1907 215
+217 3 369.9616 308.2245 44.2145 0.1805 216
+218 3 370.4558 307.2132 44.0653 0.178 217
+219 3 370.6606 306.1436 43.2916 0.1674 218
+220 3 371.3653 305.4491 42.1047 0.1652 219
+221 3 372.4235 305.615 41.3941 0.1414 220
+222 3 373.54 305.6242 41.9051 0.1277 221
+223 3 374.5181 305.0487 41.8695 0.1271 222
+224 3 375.4208 304.3772 41.3722 0.1519 223
+225 3 376.3405 303.7549 40.6969 0.1775 224
+226 3 377.2958 303.2035 39.954 0.1905 225
+227 3 378.3105 302.6818 39.7617 0.1907 226
+228 3 378.9317 302.0412 39.5111 0.1144 227
+229 3 379.7828 301.8478 40.0747 0.2103 228
+230 3 380.5413 301.3456 40.7786 0.1838 229
+231 3 381.4576 300.8869 39.9006 0.2717 230
+232 3 382.3259 300.5677 39.76 0.2175 231
+233 3 382.6977 299.5289 39.4383 0.1513 232
+234 3 383.2148 298.8437 38.603 0.2658 233
+235 3 383.677 298.1767 37.3439 0.1144 234
+236 3 384.0637 298.2133 35.9906 0.2288 235
+237 3 384.7238 298.0463 34.7432 0.197 236
+238 3 385.4948 297.6082 35.8733 0.1597 237
+239 3 386.3963 297.8679 36.4518 0.1144 238
+240 3 387.1696 297.3279 36.1043 0.2235 239
+241 3 388.078 297.2112 34.7704 0.33 240
+242 3 389.143 296.9561 34.3484 0.2261 241
+243 3 389.9907 296.701 34.4235 0.1704 242
+244 3 390.7584 296.391 33.2735 0.1525 243
+245 3 391.4036 295.6359 32.4764 0.235 244
+246 3 392.4492 295.3133 32.4433 0.2089 245
+247 3 393.5589 295.2756 32.76 0.1241 246
+248 3 394.5187 295.3076 31.8816 0.1505 247
+249 3 395.0163 294.7768 31.4815 0.1708 248
+250 3 395.4957 294.111 31.08 0.1328 249
+251 3 396.4212 293.7243 31.535 0.1694 250
+252 3 397.1762 293.4726 31.4401 0.2107 251
+253 3 397.7665 293.3685 32.48 0.1542 252
+254 3 398.6096 292.9761 32.849 0.2149 253
+255 3 399.2549 292.4087 31.6495 0.1144 254
+256 3 399.9401 291.8882 31.3869 0.1433 255
+257 3 400.4927 290.9981 31.2021 0.2555 256
+258 3 400.9125 290.0166 30.7048 0.2407 257
+259 3 401.7865 289.7374 29.524 0.1908 258
+260 3 402.4718 288.9058 29.9883 0.1398 259
+261 3 402.6983 287.9048 29.7116 0.2342 260
+262 3 402.9751 287.2367 27.804 0.1882 261
+263 3 403.4053 286.278 27.72 0.1193 262
+264 3 404.2118 285.7987 28.3139 0.1144 263
+265 3 404.0631 284.8617 27.4408 0.1401 264
+266 3 403.9933 283.9271 27.9431 0.1862 265
+267 3 403.9361 283.021 27.9697 0.1398 266
+268 3 403.8343 281.9685 27.7359 0.167 267
+269 3 404.0082 280.8829 27.2719 0.1932 268
+270 3 404.3823 280.0981 26.9817 0.1969 269
+271 3 405.0069 279.5112 27.6591 0.1144 270
+272 3 405.7082 278.8843 26.6 0.1525 271
+273 3 406.573 278.1544 26.7205 0.1727 272
+274 3 407.5203 277.5516 26.6 0.1617 273
+275 3 408.5224 277.5344 26.32 0.1271 274
+276 3 358.4083 321.2638 42.5488 0.1543 27
+277 3 359.4105 321.4137 42.0297 0.1191 276
+278 3 360.4618 321.0121 42.2167 0.1252 277
+279 3 361.5829 320.9709 41.9863 0.1387 278
+280 3 362.2384 321.0693 39.8014 0.177 279
+281 3 363.1971 320.7296 38.5496 0.203 280
+282 3 364.038 320.1736 37.2288 0.2415 281
+283 3 355.466 326.2985 48.792 0.3253 20
+284 3 356.2199 325.4703 49.3626 0.2961 283
+285 3 356.9738 324.642 49.9332 0.267 284
+286 3 357.7277 323.8138 50.5039 0.2378 285
+287 3 358.4816 322.9855 51.0745 0.2087 286
+288 3 359.2354 322.1573 51.6452 0.1795 287
+289 3 359.9893 321.329 52.2158 0.1504 288
+290 3 360.7432 320.5008 52.7864 0.1212 289
+291 3 361.0521 319.8624 54.1458 0.1144 290
+292 3 361.7431 319.7777 55.9443 0.2188 291
+293 3 361.9067 318.9827 56.7042 0.2426 292
+294 3 362.2945 318.3558 55.6928 0.1758 293
+295 3 362.9191 317.6785 55.2244 0.1642 294
+296 3 363.7714 317.3319 56.3312 0.2048 295
+297 3 364.2187 316.5848 57.6962 0.1575 296
+298 3 364.6306 315.5816 58.4942 0.3086 297
+299 3 365.1648 314.9409 58.4763 0.1491 298
+300 3 365.6064 314.5874 59.0562 0.1946 299
+301 3 366.3157 314.3609 60.8479 0.2775 300
+302 3 367.1336 313.7283 61.7156 0.2211 301
+303 3 367.5237 312.7822 62.8009 0.2266 302
+304 3 368.0122 311.8075 63.0804 0.167 303
+305 3 368.9343 311.4826 63.0781 0.2577 304
+306 3 369.544 311.3488 64.136 0.2288 305
+307 3 370.0829 310.4519 64.4 0.2619 306
+308 3 370.4524 309.4028 64.547 0.2374 307
+309 3 370.4272 308.3927 63.9136 0.1346 308
+310 3 370.5896 307.3081 64.3877 0.1678 309
+311 3 371.1067 306.5142 64.3628 0.2183 310
+312 3 371.0164 306.3174 65.3456 0.2271 311
+313 3 371.3424 305.4617 64.5406 0.1494 312
+314 3 371.3424 304.6346 64.1511 0.2542 313
+315 3 372.0288 304.4058 64.9552 0.1477 314
+316 3 372.253 304.3349 67.0298 0.2199 315
+317 3 372.7163 303.6348 65.6636 0.1159 316
+318 3 373.1122 302.858 63.9705 0.2174 317
+319 3 373.381 301.8307 64.3605 0.2051 318
+320 3 373.4016 301.2575 65.52 0.1954 319
+321 3 373.5984 300.4727 64.12 0.196 320
+322 3 373.961 299.7966 65.1804 0.1352 321
+323 3 374.088 298.7362 65.0065 0.205 322
+324 3 374.2218 297.7432 63.9178 0.2563 323
+325 3 374.3168 296.693 64.115 0.2223 324
+326 3 374.6566 296.0375 65.7544 0.1266 325
+327 3 374.517 295.0273 66.178 0.1634 326
+328 3 374.4312 293.9451 65.6037 0.1926 327
+329 3 374.66 293.1614 64.8724 0.1144 328
+330 3 374.8728 292.4007 66.3485 0.1894 329
+331 3 375.5878 291.7189 66.6305 0.2796 330
+332 3 376.5373 291.3253 67.2 0.1543 331
+333 3 377.0624 290.5257 67.8992 0.1353 332
+334 3 376.964 289.4686 67.2546 0.1324 333
+335 3 377.2912 288.8039 65.914 0.2655 334
+336 3 377.6962 288.7891 67.7656 0.1803 335
+337 3 378.3151 288.2811 67.0468 0.209 336
+338 3 378.092 287.3339 66.3874 0.1308 337
+339 3 377.8632 286.6406 66.974 0.1398 338
+340 3 378.3723 286.5766 69.1429 0.1214 339
+341 3 378.8402 285.9931 70.2859 0.1144 340
+342 3 378.934 285.2038 71.4907 0.1144 341
+343 3 379.3504 284.4785 71.9373 0.1881 342
+344 3 379.4316 283.72 69.9717 0.1155 343
+345 3 379.9224 282.8185 69.3148 0.1144 344
+346 3 380.0368 281.9102 68.2959 0.1172 345
+347 3 380.3846 281.0797 69.6867 0.1361 346
+348 3 380.626 280.0569 70.0129 0.1144 347
+349 3 380.8319 278.9907 70.2439 0.1144 348
+350 3 381.1797 277.9073 70.0 0.1144 349
+351 3 381.3284 276.8125 70.4763 0.1258 350
+352 3 381.7036 276.1055 71.8584 0.1179 351
+353 3 382.3237 275.4935 70.4136 0.1725 352
+354 3 383.2629 275.0176 70.6157 0.1144 353
+355 3 383.2869 274.2626 70.8467 0.1643 354
+356 3 383.3247 273.3313 72.1512 0.1245 355
+357 3 383.7205 272.7719 70.2926 0.1219 356
+358 3 384.1655 271.7789 70.6532 0.1567 357
+359 3 384.5167 270.7093 70.275 0.1419 358
+360 3 384.9617 269.706 70.1918 0.1264 359
+361 3 385.1459 268.7233 69.44 0.1144 360
+362 3 385.8849 267.8504 69.44 0.1144 361
+363 3 386.1 266.7442 69.44 0.1144 362
+364 3 386.5976 265.7729 69.44 0.1144 363
+365 3 386.9111 264.7022 69.44 0.1144 364
+366 3 387.2028 263.5982 69.44 0.1144 365
+367 3 387.4328 262.4794 69.44 0.1144 366
+368 3 387.4728 261.3376 69.44 0.1144 367
+369 3 387.4728 260.1936 69.44 0.1144 368
+370 3 387.5506 259.0542 69.44 0.1144 369
+371 3 387.5872 257.9114 69.44 0.1144 370
+372 3 387.5872 256.7674 69.44 0.1144 371
+373 3 387.5872 255.6234 69.44 0.1144 372
+374 3 387.5872 254.4794 69.44 0.1144 373
+375 3 387.5986 253.3354 69.44 0.1144 374
+376 3 387.9304 252.3161 69.44 0.1144 375
+377 3 387.9304 251.1721 69.44 0.1144 376
+378 3 387.9304 250.0281 69.44 0.1144 377
+379 3 387.9304 248.8841 69.44 0.1144 378
+380 3 387.9304 247.7401 69.44 0.1144 379
+381 3 388.253 246.7333 69.44 0.1144 380
+382 3 389.1533 246.0469 69.44 0.1144 381
+383 3 389.6338 245.0414 69.44 0.1144 382
+384 3 390.4609 244.3401 69.44 0.1144 383
+385 3 391.288 243.5759 69.44 0.1144 384
+386 3 392.2936 243.1984 70.0 0.1144 385
+387 3 392.7878 242.2088 70.0 0.1144 386
+388 3 393.1699 241.1449 69.9796 0.1144 387
+389 3 394.0428 240.5889 69.44 0.1144 388
+390 3 394.7715 239.8041 69.365 0.1144 389
+391 3 395.4579 238.9301 68.7117 0.1144 390
+392 3 396.2747 238.1957 68.6 0.1144 391
+393 3 397.1922 237.5791 68.6 0.1144 392
+394 3 398.0674 236.8652 68.6 0.1144 393
+395 3 399.1347 236.4614 68.5726 0.1144 394
+396 3 400.082 235.9637 68.292 0.1144 395
+397 3 400.5373 235.0176 67.4237 0.1144 396
+398 3 401.3232 234.234 67.0188 0.1144 397
+399 3 402.0382 233.3668 66.7901 0.1144 398
+400 3 402.243 232.256 66.64 0.1144 399
+401 3 403.0987 231.6348 66.1245 0.1144 400
+402 3 404.015 230.961 66.08 0.1144 401
+403 3 404.7415 230.1579 65.6054 0.1144 402
+404 3 405.4553 229.3606 65.24 0.1144 403
+405 3 406.0468 228.4076 65.0093 0.1144 404
+406 3 406.7881 227.5599 64.6951 0.1144 405
+407 3 407.391 226.5898 64.68 0.1144 406
+408 3 408.2696 225.8645 64.68 0.1144 407
+409 3 408.9606 224.9962 64.68 0.1144 408
+410 3 409.5566 224.0261 64.68 0.1144 409
+411 3 410.2956 223.3591 64.68 0.1144 410
+412 3 411.117 222.6052 64.68 0.1144 411
+413 3 412.0928 222.0504 64.4 0.1144 412
+414 3 412.563 221.2073 63.56 0.1144 413
+415 3 413.0549 220.2097 64.0354 0.1144 414
+416 3 413.5835 219.2465 64.6764 0.1144 415
+417 3 414.4426 218.552 64.68 0.1144 416
+418 3 415.4779 218.0761 64.68 0.1244 417
+419 3 416.4583 217.5327 64.68 0.1486 418
+420 3 417.5634 217.2376 64.68 0.1525 419
+421 3 418.6903 217.1312 64.68 0.165 420
+422 3 419.7862 216.9116 64.96 0.1652 421
+423 3 420.9222 216.8521 64.96 0.1365 422
+424 3 422.0182 216.5535 64.9242 0.1144 423
+425 3 422.748 215.7115 64.68 0.1412 424
+426 3 423.1564 214.6453 64.68 0.1404 425
+427 3 423.5077 213.5859 64.4143 0.1163 426
+428 3 423.8955 212.546 64.4 0.1144 427
+429 3 424.8793 212.0793 64.405 0.1794 428
+430 3 425.5039 211.2476 64.96 0.1385 429
+431 3 426.0393 210.2649 65.3974 0.1144 430
+432 3 426.5804 209.2719 65.52 0.121 431
+433 3 427.5036 208.7583 65.52 0.1393 432
+434 3 428.1203 207.8019 65.52 0.1144 433
+435 3 428.7209 206.8272 65.52 0.1144 434
+436 3 429.4473 205.9543 65.5564 0.1144 435
+437 3 429.8866 204.9384 66.0288 0.1144 436
+438 3 430.2847 203.8665 66.08 0.1144 437
+439 3 431.1507 203.2545 66.08 0.174 438
+440 3 432.2112 202.8266 66.08 0.1269 439
+441 3 433.1516 202.1871 66.08 0.1144 440
+442 3 434.2098 201.8119 66.08 0.137 441
+443 3 435.3286 201.6872 65.7185 0.1652 442
+444 3 436.2701 201.2662 66.36 0.1376 443
+445 3 437.2986 200.78 66.36 0.1153 444
+446 3 438.3797 200.4952 66.36 0.1467 445
+447 3 439.2857 199.9906 66.36 0.1378 446
+448 3 439.8989 199.0446 66.36 0.1387 447
+449 3 441.0063 198.9416 66.36 0.178 448
+450 3 442.0999 198.6648 66.36 0.1562 449
+451 3 443.125 198.1888 66.5605 0.1438 450
+452 3 444.0299 197.5322 66.64 0.1186 451
+453 3 444.8799 196.776 66.6588 0.1144 452
+454 3 445.612 196.0816 66.92 0.1498 453
+455 3 446.7549 196.0747 66.92 0.1144 454
+456 3 447.7845 195.6011 66.92 0.1144 455
+457 3 448.5235 194.7294 66.92 0.1144 456
+458 3 449.1264 193.7707 66.92 0.1144 457
+459 3 449.9638 193.0042 66.92 0.1283 458
+460 3 451.1032 192.9493 66.92 0.1924 459
+461 3 451.705 192.0204 66.64 0.1235 460
+462 3 452.0722 190.9496 66.64 0.1209 461
+463 3 453.0389 190.373 66.6389 0.1397 462
+464 3 454.0891 189.9429 66.3603 0.1145 463
+465 3 454.9173 189.3274 65.8056 0.1144 464
+466 3 455.5305 188.3859 65.5035 0.1144 465
+467 3 456.0682 187.3883 65.24 0.1173 466
+468 3 456.6219 186.4079 64.8665 0.144 467
+469 3 457.2614 185.479 64.68 0.1349 468
+470 3 457.7705 184.4608 64.68 0.1144 469
+471 3 457.9398 183.3386 64.68 0.1144 470
+472 3 457.9432 182.1969 64.8528 0.1144 471
+473 3 458.0908 181.0735 64.96 0.128 472
+474 3 458.7623 180.2063 64.5078 0.1652 473
+475 3 459.1524 179.4444 62.7278 0.1508 474
+476 3 459.6237 178.7191 61.32 0.1495 475
+477 3 460.6888 178.3496 61.04 0.1144 476
+478 3 370.9752 304.0752 65.5945 0.146 314
+479 3 370.0405 303.6565 65.8 0.1144 478
+480 3 369.5715 302.9312 64.9779 0.1144 479
+481 3 368.8931 302.3592 65.5189 0.1457 480
+482 3 368.4149 301.7403 66.5736 0.1675 481
+483 3 367.6175 301.1363 67.174 0.1759 482
+484 3 367.224 300.3538 66.2942 0.1144 483
+485 3 366.5273 299.8138 67.4946 0.1339 484
+486 3 366.0239 298.9466 68.1005 0.1144 485
+487 3 365.5663 297.9891 68.32 0.2376 486
+488 3 364.7015 297.3062 68.07 0.2039 487
+489 3 364.2416 296.2926 68.32 0.2194 488
+490 3 363.6193 295.8018 68.5468 0.1226 489
+491 3 362.982 294.9484 68.7744 0.1574 490
+492 3 362.6171 294.2196 67.4755 0.1144 491
+493 3 362.1389 293.4005 67.6127 0.2331 492
+494 3 361.7625 292.5322 68.6932 0.2952 493
+495 3 361.3942 291.7269 69.706 0.2053 494
+496 3 360.8176 291.1503 70.56 0.1657 495
+497 3 360.7295 290.425 68.922 0.2298 496
+498 3 360.2456 289.5075 69.347 0.1399 497
+499 3 359.6633 288.7433 68.6 0.1351 498
+500 3 359.216 287.8556 69.0542 0.1203 499
+501 3 358.8248 287.0754 70.6216 0.2286 500
+502 3 358.6108 286.0847 71.1564 0.2641 501
+503 3 357.7677 285.6225 70.2836 0.1907 502
+504 3 357.4085 284.8468 69.72 0.2893 503
+505 3 356.6969 284.1799 70.7395 0.1476 504
+506 3 356.1833 283.2819 70.8994 0.2188 505
+507 3 355.9339 282.1905 71.0788 0.2282 506
+508 3 355.3264 281.4366 70.8089 0.1525 507
+509 3 354.8974 280.4848 69.5677 0.2161 508
+510 3 355.0976 279.4964 68.9332 0.1398 509
+511 3 354.8494 278.8672 67.1401 0.1144 510
+512 3 354.2968 278.3501 65.2688 0.178 511
+513 3 353.8186 278.4382 63.3853 0.2276 512
+514 3 353.3976 277.4326 63.5379 0.1398 513
+515 3 353.8792 277.3376 62.3515 0.1438 514
+516 3 353.9467 276.753 60.8896 0.1702 515
+517 3 353.2798 275.9099 60.4873 0.2029 516
+518 3 352.6849 275.1469 60.2 0.1144 517
+519 3 352.3943 274.1951 60.8661 0.2545 518
+520 3 352.924 273.416 60.76 0.1907 519
+521 3 354.9363 280.5191 71.5028 0.1187 508
+522 3 354.8402 279.7778 73.5353 0.1144 521
+523 3 354.7876 279.0708 75.7347 0.1144 522
+524 3 354.505 278.2059 76.8303 0.1144 523
+525 3 354.7384 277.1832 76.8303 0.1144 524
+526 3 355.2498 276.1593 76.8303 0.1144 525
+527 3 354.9329 275.3883 77.632 0.1144 526
+528 3 354.1275 274.7648 78.9071 0.1144 527
+529 3 353.3221 274.1413 80.1825 0.1144 528
+530 3 352.5167 273.5178 81.4579 0.1144 529
+531 3 351.629 272.8246 81.632 0.1144 530
+532 3 350.9003 271.9837 81.632 0.1178 531
+533 3 350.4186 270.945 81.632 0.1261 532
+534 3 350.0548 269.889 82.1825 0.1298 533
+535 3 349.7071 268.8297 82.8108 0.1328 534
+536 3 349.3604 267.7704 83.4392 0.1359 535
+537 3 349.0127 266.711 84.0675 0.1389 536
+538 3 348.3766 265.7935 84.2514 0.1452 537
+539 3 347.649 264.9218 84.2514 0.152 538
+540 3 347.4946 263.7881 84.2514 0.1405 539
+541 3 347.0633 262.7768 84.98 0.1345 540
+542 3 346.6137 261.7747 85.7556 0.1289 541
+543 3 346.3082 260.6913 85.9975 0.121 542
+544 3 346.0875 259.5713 85.9216 0.1144 543
+545 3 345.917 258.4468 85.6254 0.1144 544
+546 3 345.7465 257.3222 85.3292 0.1144 545
+547 3 345.5761 256.1977 85.0329 0.1144 546
+548 3 345.4056 255.072 84.737 0.1144 547
+549 3 344.9103 254.0527 84.688 0.1144 548
+550 3 344.6277 252.9979 84.688 0.1181 549
+551 3 344.749 251.8608 84.688 0.1271 550
+552 3 342.3271 347.4099 52.5398 0.1818 1
+553 3 341.3238 347.3104 53.7911 0.2103 552
+554 3 340.3125 347.1468 55.0248 0.2261 553
+555 3 339.2761 347.4111 55.8202 0.2288 554
+556 3 338.2499 347.8984 55.9488 0.2392 555
+557 3 337.2615 348.4716 56.0101 0.2521 556
+558 3 336.4481 349.2323 55.482 0.2762 557
+559 3 335.6885 350.0068 54.6003 0.2796 558
+560 3 334.7047 350.5445 54.8548 0.2681 559
+561 3 333.6922 350.9666 55.6436 0.2204 560
+562 3 332.8216 351.6038 56.5544 0.1808 561
+563 3 331.7909 351.9916 57.2737 0.1538 562
+564 3 330.7418 352.0706 58.3576 0.1646 563
+565 3 329.6482 352.3623 58.702 0.1776 564
+566 3 328.5442 352.5797 58.2182 0.2028 565
+567 3 327.4734 352.9709 57.9877 0.216 566
+568 3 326.4541 353.4319 58.5626 0.2161 567
+569 3 325.4016 353.8232 58.109 0.203 568
+570 3 324.4098 353.8255 59.171 0.1907 569
+571 3 324.4384 354.4455 60.384 0.1275 570
+572 3 323.9007 355.1239 61.038 0.1703 571
+573 3 323.4877 355.6273 62.44 0.1144 572
+574 3 322.5233 356.0208 63.1148 0.2004 573
+575 3 321.8164 356.2691 65.0594 0.1568 574
+576 3 320.9378 356.6569 65.7894 0.1566 575
+577 3 319.9127 356.4384 65.1227 0.3084 576
+578 3 319.0364 356.6614 64.4311 0.1652 577
+579 3 318.5445 356.2576 66.6246 0.2034 578
+580 3 317.8341 355.7165 68.0543 0.1976 579
+581 3 317.4428 354.8379 68.3399 0.2269 580
+582 3 316.8891 353.8712 68.9727 0.1652 581
+583 3 318.5274 356.928 65.6132 0.2034 578
+584 3 318.1727 357.2575 65.8921 0.1146 583
+585 3 317.7849 357.9565 66.64 0.1144 584
+586 3 316.761 358.3008 66.6711 0.1398 585
+587 3 315.8332 358.596 65.8 0.1144 586
+588 3 315.0439 358.9403 67.2711 0.1422 587
+589 3 314.1241 358.8934 68.5908 0.1487 588
+590 3 313.4022 359.2721 69.72 0.2607 589
+591 3 312.4642 359.6736 70.6532 0.1907 590
+592 3 312.0832 360.4172 71.4588 0.1495 591
+593 3 311.5798 361.3793 71.1449 0.1245 592
+594 3 310.7848 362.0668 70.8537 0.1413 593
+595 3 310.2025 362.5862 72.5326 0.2972 594
+596 3 309.2724 362.958 73.047 0.1618 595
+597 3 308.4201 363.4728 73.4177 0.1144 596
+598 3 307.3425 363.7611 73.64 0.1144 597
+599 3 306.3094 364.2393 73.8301 0.1144 598
+600 3 305.4366 364.8205 74.7253 0.1144 599
+601 3 305.1265 365.2803 76.7869 0.1146 600
+602 3 304.2491 365.7814 77.292 0.1497 601
+603 3 303.3945 366.4804 77.7582 0.1144 602
+604 3 302.4107 366.6406 78.8567 0.1257 603
+605 3 301.3422 366.8316 78.8785 0.2523 604
+606 3 300.2931 367.1817 78.68 0.131 605
+607 3 299.4065 367.4013 79.4385 0.1144 606
+608 3 299.2704 367.9104 80.8419 0.1144 607
+609 3 298.7842 368.368 82.311 0.1144 608
+610 3 298.2156 368.5968 80.4233 0.1651 609
+611 3 297.44 368.6506 81.2146 0.1198 610
+612 3 296.5008 368.8382 81.9462 0.1144 611
+613 3 295.7217 369.2695 83.16 0.1605 612
+614 3 295.0376 369.7408 82.6 0.2161 613
+615 3 318.0652 356.7095 65.2576 0.2415 583
+616 3 317.3456 357.0824 64.2065 0.199 615
+617 3 317.3582 357.5606 61.8134 0.2018 616
+618 3 317.5012 358.2459 59.6968 0.1454 617
+619 3 317.198 358.4335 57.4846 0.1522 618
+620 3 316.2588 358.89 56.84 0.1144 619
+621 3 315.45 359.6507 57.0002 0.1362 620
+622 3 314.3895 359.9733 57.4857 0.214 621
+623 3 313.5738 360.6025 57.491 0.1209 622
+624 3 312.6426 361.0464 57.96 0.1144 623
+625 3 311.5478 361.3381 57.96 0.1366 624
+626 3 311.0925 362.1904 58.3607 0.1907 625
+627 3 310.0297 362.3025 57.7184 0.2307 626
+628 3 308.9647 362.5599 57.6629 0.1976 627
+629 3 308.2943 362.8768 56.7165 0.1185 628
+630 3 307.3059 363.3756 57.12 0.1144 629
+631 3 306.7075 364.324 57.2121 0.1524 630
+632 3 305.7923 364.7266 56.8487 0.115 631
+633 3 304.9584 365.2472 58.0611 0.2871 632
+634 3 304.2811 365.6224 56.847 0.1144 633
+635 3 303.5181 365.7231 58.5651 0.2454 634
+636 3 303.0994 366.525 59.36 0.1398 635
+637 3 302.2551 366.9952 59.6604 0.1187 636
+638 3 301.4394 367.5706 59.3569 0.1144 637
+639 3 300.7565 367.9687 57.6786 0.1209 638
+640 3 299.8447 368.3405 58.2154 0.3149 639
+641 3 298.9638 368.7329 57.4708 0.1956 640
+642 3 298.1264 369.3061 56.7725 0.1379 641
+643 3 297.9273 370.2533 55.72 0.1173 642
+644 3 297.4537 370.9992 54.88 0.1215 643
+645 3 296.4093 371.236 54.8632 0.1542 644
+646 3 295.7057 371.8412 54.8579 0.1181 645
+647 3 294.8957 372.0952 55.183 0.1525 646
+648 3 293.9119 372.3285 55.536 0.1994 647
+649 3 293.2838 372.7667 56.6826 0.235 648
+650 3 292.9738 372.4864 59.0391 0.3278 649
+651 3 292.1742 372.9875 58.1126 0.193 650
+652 3 291.2178 373.3295 57.5669 0.1271 651
+653 3 290.338 373.5926 56.6334 0.2499 652
+654 3 289.3817 373.8455 57.8357 0.2034 653
+655 3 288.288 373.9736 57.8094 0.1144 654
+656 3 287.327 374.3168 57.5165 0.1144 655
+657 3 286.4713 374.6074 57.4585 0.1191 656
+658 3 285.7209 375.2583 57.7598 0.1144 657
+659 3 285.2438 375.9733 58.4996 0.2013 658
+660 3 284.3618 376.4343 58.0605 0.1994 659
+661 3 283.4649 376.8885 58.221 0.206 660
+662 3 282.4364 377.1768 57.605 0.2009 661
+663 3 281.6185 377.5326 57.68 0.2258 662
+664 3 280.6884 377.6378 57.0945 0.1144 663
+665 3 280.0226 377.7614 56.0 0.2149 664
+666 3 279.39 378.1549 57.12 0.1144 665
+667 3 278.4702 378.688 56.84 0.1578 666
+668 3 277.5767 379.2623 57.0419 0.1965 667
+669 3 276.7382 379.8618 56.0157 0.2288 668
+670 3 275.8802 380.4166 56.0722 0.1594 669
+671 3 274.8151 380.6809 55.72 0.1765 670
+672 3 273.7009 380.9154 55.9404 0.2034 671
+673 3 272.5889 381.0584 56.28 0.19 672
+674 3 271.8144 380.8754 56.0773 0.1397 673
+675 3 270.9084 380.9474 56.1781 0.2288 674
+676 3 270.2391 380.6706 54.8092 0.1666 675
+677 3 269.277 380.2942 53.7715 0.1478 676
+678 3 268.4682 379.8114 54.0613 0.1144 677
+679 3 267.9694 379.6032 53.643 0.1144 678
+680 3 267.0302 379.5414 52.9304 0.1652 679
+681 3 266.0395 379.4648 54.1708 0.1315 680
+682 3 265.0717 379.2349 54.0044 0.1516 681
+683 3 264.3246 379.0427 54.5317 0.1576 682
+684 3 263.6005 378.7704 53.219 0.1271 683
+685 3 262.7802 378.8905 52.08 0.1658 684
+686 3 262.3764 379.6822 53.1516 0.2095 685
+687 3 262.0446 380.3594 52.577 0.1515 686
+688 3 260.9464 380.3354 51.7964 0.1485 687
+689 3 259.8482 380.3114 51.0157 0.1455 688
+690 3 258.7488 380.2873 50.2351 0.1425 689
+691 3 257.6551 380.2656 49.425 0.1398 690
+692 3 256.7033 379.8526 48.6466 0.1181 691
+693 3 255.668 379.4431 48.16 0.1144 692
+694 3 254.5926 379.1227 47.6865 0.1144 693
+695 3 253.5321 379.0072 46.8367 0.1144 694
+696 3 252.4099 378.902 46.76 0.1144 695
+697 3 251.3643 378.4592 46.76 0.1144 696
+698 3 250.2477 378.2281 46.76 0.1144 697
+699 3 249.1369 378.092 46.3086 0.1144 698
+700 3 248.2446 377.6344 45.92 0.1144 699
+701 3 247.1051 377.5623 45.92 0.1144 700
+702 3 245.9783 377.4056 45.92 0.1144 701
+703 3 244.8457 377.2775 45.92 0.1144 702
+704 3 243.7166 377.0887 45.92 0.1144 703
+705 3 242.5875 376.948 45.7836 0.1144 704
+706 3 241.4732 376.8645 45.2528 0.1144 705
+707 3 240.3681 376.8336 44.718 0.1144 706
+708 3 239.2333 376.8874 44.52 0.1144 707
+709 3 238.095 376.948 44.4836 0.1144 708
+710 3 237.2027 377.0624 43.12 0.1144 709
+711 3 236.2177 377.3873 42.56 0.1144 710
+712 3 235.1755 377.6527 42.56 0.1144 711
+713 3 234.1253 378.0359 42.56 0.1144 712
+714 3 233.0706 378.4752 42.56 0.1144 713
+715 3 232.0066 378.8905 42.56 0.1144 714
+716 3 230.9107 379.1765 42.56 0.1144 715
+717 3 229.9715 379.7565 42.3301 0.1144 716
+718 3 229.11 380.4635 42.28 0.1144 717
+719 3 227.9843 380.6088 42.28 0.1144 718
+720 3 226.8678 380.7838 42.28 0.1144 719
+721 3 225.8565 381.3021 42.28 0.1144 720
+722 3 224.9287 381.9644 42.28 0.1144 721
+723 3 223.8854 382.3946 42.28 0.1144 722
+724 3 222.7929 382.7115 42.4334 0.1144 723
+725 3 221.7907 383.2297 42.56 0.1144 724
+726 3 220.7051 383.5878 42.56 0.1144 725
+727 3 219.6331 383.9744 42.56 0.1144 726
+728 3 218.6767 384.5945 42.56 0.1144 727
+729 3 217.5545 384.813 42.56 0.1144 728
+730 3 216.4505 385.0979 42.56 0.1144 729
+731 3 215.3626 385.4456 42.56 0.1334 730
+732 3 214.2357 385.6435 42.56 0.1755 731
+733 3 213.2885 386.2178 42.2974 0.1541 732
+734 3 212.2246 386.6285 42.28 0.1171 733
+735 3 211.2041 387.0541 42.0 0.1144 734
+736 3 210.1631 387.3698 41.8799 0.1562 735
+737 3 209.6128 388.2656 41.4879 0.1399 736
+738 3 208.7514 388.8456 41.16 0.1144 737
+739 3 207.6074 388.8456 41.16 0.1144 738
+740 3 206.4966 388.9932 41.16 0.1324 739
+741 3 205.531 389.5091 40.6 0.1449 740
+742 3 204.4625 389.8512 40.6 0.1225 741
+743 3 203.3368 390.0251 40.6 0.1144 742
+744 3 202.2523 390.3488 40.32 0.1144 743
+745 3 201.1152 390.4472 40.32 0.1144 744
+746 3 199.9712 390.4472 40.32 0.1144 745
+747 3 198.8272 390.4472 40.32 0.1398 746
+748 3 343.5558 348.9635 50.2841 0.1174 1
+749 3 342.8408 349.7688 49.3497 0.1144 748
+750 3 342.2608 350.5948 48.0586 0.1144 749
+751 3 341.4554 351.3544 47.7568 0.1144 750
+752 3 340.602 352.0671 48.3414 0.1247 751
+753 3 339.5472 352.4264 48.7206 0.1482 752
+754 3 338.4181 352.5064 49.0776 0.1739 753
+755 3 337.3462 352.7902 48.5674 0.1897 754
+756 3 336.2685 352.9206 47.6994 0.1907 755
+757 3 335.1417 352.9286 48.0273 0.2034 756
+758 3 334.032 352.9572 48.6265 0.2003 757
+759 3 332.9029 353.0979 48.6223 0.1875 758
+760 3 331.8023 353.3599 48.3188 0.1845 759
+761 3 330.7121 353.496 48.1877 0.2138 760
+762 3 329.6562 353.6985 48.9614 0.2415 761
+763 3 328.5728 353.5669 48.5948 0.223 762
+764 3 327.5615 353.2111 47.6501 0.1714 763
+765 3 326.4827 353.1379 47.4138 0.1347 764
+766 3 325.3685 353.3233 47.7803 0.1377 765
+767 3 324.2302 353.3175 47.9598 0.1636 766
+768 3 323.1354 353.051 47.9984 0.1838 767
+769 3 322.2099 352.4435 47.5966 0.1846 768
+770 3 321.3965 351.7022 46.8325 0.1842 769
+771 3 320.6083 350.9231 46.1608 0.2035 770
+772 3 319.7526 350.2127 46.1202 0.2366 771
+773 3 318.8031 349.5938 46.1874 0.2542 772
+774 3 317.8329 349.2815 45.2763 0.2395 773
+775 3 316.7736 349.214 44.303 0.214 774
+776 3 315.7188 348.9463 43.5568 0.1881 775
+777 3 315.005 348.1684 43.0752 0.1699 776
+778 3 314.3129 347.8824 41.6732 0.1605 777
+779 3 313.5258 347.9945 39.6586 0.1531 778
+780 3 312.4138 348.0048 39.48 0.1525 779
+781 3 311.271 347.9854 39.48 0.1237 780
+782 3 310.9392 346.9706 39.48 0.1873 781
+783 3 310.9049 345.8278 39.48 0.2391 782
+784 3 310.8248 344.6872 39.48 0.2415 783
+785 3 310.5548 344.5728 37.7224 0.256 784
+786 3 309.8192 344.8325 36.3754 0.2669 785
+787 3 308.7381 344.6929 36.2788 0.2481 786
+788 3 307.696 344.344 35.5611 0.1976 787
+789 3 306.8036 344.6632 34.1368 0.1907 788
+790 3 305.7706 344.638 33.0019 0.2034 789
+791 3 305.5086 343.4288 32.5452 0.178 790
+792 3 305.1746 342.3798 31.8651 0.1884 791
+793 3 304.8074 341.3833 30.8367 0.1689 792
+794 3 305.0453 340.3892 29.7262 0.1652 793
+795 3 304.8977 339.3024 29.0251 0.1772 794
+796 3 304.1404 338.4718 28.7132 0.2263 795
+797 3 303.0914 338.092 29.2354 0.241 796
+798 3 302.0023 337.8255 28.7204 0.2288 797
+799 3 301.0528 337.7889 27.1617 0.1907 798
+800 3 300.5894 337.7134 26.2203 0.1907 799
+801 3 299.7372 337.0453 25.4463 0.2034 800
+802 3 299.5003 336.01 26.483 0.2163 801
+803 3 298.902 335.1199 27.3614 0.2288 802
+804 3 297.869 334.6292 27.4279 0.228 803
+805 3 296.7948 334.239 27.375 0.2132 804
+806 3 295.7297 333.8638 27.0024 0.179 805
+807 3 294.6452 333.659 27.0518 0.1652 806
+808 3 293.6316 333.3662 27.9864 0.1785 807
+809 3 292.7096 332.7702 28.3662 0.2045 808
+810 3 291.7852 332.157 27.7946 0.2161 809
+811 3 290.8471 331.5564 27.1656 0.1953 810
+812 3 289.829 331.053 27.221 0.1689 811
+813 3 288.7742 330.6686 27.2049 0.1714 812
+814 3 287.9642 330.3872 27.107 0.2089 813
+815 3 286.9232 330.1218 27.0027 0.1398 814
+816 3 286.2002 329.7603 28.2853 0.1398 815
+817 3 285.6511 328.94 28.5659 0.2145 816
+818 3 285.0905 328.1415 29.0139 0.2161 817
+819 3 284.9075 327.1714 28.3427 0.1525 818
+820 3 284.3687 326.3592 26.9867 0.1995 819
+821 3 284.1593 325.4383 27.0371 0.2288 820
+822 3 283.9866 324.4796 25.8422 0.3231 821
+823 3 283.712 323.5232 25.48 0.1907 822
+824 3 300.7301 338.4673 27.2615 0.1693 799
+825 3 300.7336 339.4992 26.453 0.1883 824
+826 3 300.3538 340.4681 25.7564 0.2034 825
+827 3 300.1055 341.5481 26.2179 0.1833 826
+828 3 300.1513 342.6669 26.7583 0.1614 827
+829 3 300.0037 343.6622 27.1081 0.1568 828
+830 3 299.0896 344.2193 27.3036 0.1652 829
+831 3 298.0944 344.5922 28.2699 0.1652 830
+832 3 297.2261 345.2272 29.155 0.1541 831
+833 3 296.6541 346.0989 30.1322 0.1339 832
+834 3 296.6701 347.0027 31.5431 0.1207 833
+835 3 296.8829 347.8504 33.3024 0.1144 834
+836 3 296.4161 348.6981 33.7834 0.1144 835
+837 3 295.9048 349.0378 31.9847 0.1144 836
+838 3 295.3373 349.0733 29.5856 0.1144 837
+839 3 294.7974 349.8455 28.7482 0.1144 838
+840 3 294.2837 350.8476 29.0651 0.1144 839
+841 3 294.0778 351.9562 29.1684 0.1247 840
+842 3 293.8524 353.0029 28.2892 0.1375 841
+843 3 293.9256 354.0966 27.6042 0.1506 842
+844 3 294.111 355.2097 27.8815 0.1415 843
+845 3 294.2082 356.2771 28.8364 0.1288 844
+846 3 294.5034 356.4704 30.3318 0.3388 845
+847 3 294.2368 357.2804 31.0341 0.2893 846
+848 3 294.2585 357.5686 28.4948 0.2037 847
+849 3 294.0343 358.2573 27.16 0.1366 848
+850 3 293.6122 358.8682 28.2612 0.1328 849
+851 3 293.1592 359.7297 29.4 0.228 850
+852 3 292.1376 360.0168 28.7507 0.2796 851
+853 3 291.5541 360.7032 28.1924 0.2495 852
+854 3 290.4559 360.8153 28.5449 0.1581 853
+855 3 289.4412 360.9514 28.5006 0.2084 854
+856 3 289.3165 360.7741 26.1286 0.1693 855
+857 3 288.4424 360.7307 24.5527 0.1975 856
+858 3 287.6016 360.8176 25.2 0.1907 857
+859 3 304.971 345.3496 33.3136 0.163 790
+860 3 303.8944 345.6539 33.3589 0.1771 859
+861 3 303.2309 345.7546 31.3135 0.19 860
+862 3 302.1876 345.4537 32.1586 0.1772 861
+863 3 301.1877 345.4708 33.5059 0.1622 862
+864 3 300.3561 345.4377 35.3553 0.1378 863
+865 3 299.6971 344.9 37.0591 0.1247 864
+866 3 298.8586 344.169 37.0468 0.117 865
+867 3 297.8839 343.8647 35.9318 0.1331 866
+868 3 296.9378 343.915 34.4523 0.1628 867
+869 3 296.0821 343.6484 32.821 0.1949 868
+870 3 295.0856 343.3281 31.7492 0.1989 869
+871 3 294.0526 343.2526 30.7614 0.1758 870
+872 3 293.1306 343.6828 30.2425 0.1414 871
+873 3 292.6958 344.5831 29.0419 0.1213 872
+874 3 292.3183 345.5235 28.0535 0.1144 873
+875 3 291.8275 346.4112 28.7932 0.1207 874
+876 3 291.4626 346.727 31.01 0.1407 875
+877 3 291.0542 346.1744 32.9952 0.1678 876
+878 3 290.5085 345.3107 32.886 0.178 877
+879 3 289.6848 345.0201 31.4353 0.1584 878
+880 3 288.757 345.5326 31.4524 0.1419 879
+881 3 288.2388 346.036 33.4625 0.1398 880
+882 3 288.3669 347.0107 34.7074 0.1631 881
+883 3 289.1883 347.7691 34.8432 0.1652 882
+884 3 290.1859 348.2496 34.1788 0.1652 883
+885 3 291.2601 348.5551 33.5835 0.1528 884
+886 3 291.8344 349.2632 31.92 0.1525 885
+887 3 347.9705 348.2565 48.7402 0.1144 1
+888 3 348.7644 349.0653 48.4392 0.1144 887
+889 3 349.4417 349.9141 47.6112 0.1144 888
+890 3 350.2882 350.588 46.7628 0.1247 889
+891 3 351.16 351.3132 46.5688 0.1684 890
+892 3 352.1163 351.9184 46.8726 0.2352 891
+893 3 353.218 352.1701 46.6066 0.2882 892
+894 3 354.322 352.471 46.5945 0.2806 893
+895 3 355.4122 352.7124 47.1786 0.2438 894
+896 3 356.2439 353.4754 47.4312 0.205 895
+897 3 356.7598 354.4364 46.6354 0.1785 896
+898 3 357.1088 354.9569 44.3078 0.1652 897
+899 3 357.2266 355.2612 43.2132 0.2415 898
+900 3 357.2941 356.1215 41.3728 0.2036 899
+901 3 357.4028 356.9543 39.4719 0.1653 900
+902 3 357.8684 357.9954 39.3666 0.1519 901
+903 3 358.4404 358.97 39.7191 0.1392 902
+904 3 358.5422 360.0969 39.503 0.1263 903
+905 3 358.1338 361.1173 38.8083 0.1155 904
+906 3 357.3364 361.933 38.6333 0.1282 905
+907 3 356.4143 362.6068 38.6042 0.141 906
+908 3 355.4179 363.1639 38.4678 0.1525 907
+909 3 354.6137 363.9075 37.6687 0.165 908
+910 3 354.0566 364.8994 37.4094 0.178 909
+911 3 353.79 365.9793 36.7727 0.1777 910
+912 3 354.0749 366.9357 35.4676 0.1519 911
+913 3 354.9443 367.6667 35.1571 0.1398 912
+914 3 355.5346 368.6231 34.6716 0.163 913
+915 3 355.6879 369.7294 35.096 0.1773 914
+916 3 355.0164 370.6331 35.2436 0.2024 915
+917 3 354.1126 371.331 35.1114 0.2034 916
+918 3 353.5269 372.2702 34.433 0.2034 917
+919 3 353.5624 373.3719 33.8596 0.1913 918
+920 3 354.3803 374.0926 33.0249 0.2034 919
+921 3 355.2028 374.8659 32.7306 0.2034 920
+922 3 355.5849 375.8784 31.9435 0.2009 921
+923 3 355.2772 376.9446 31.2841 0.1907 922
+924 3 354.521 377.7648 30.8451 0.1794 923
+925 3 353.9261 378.7349 30.8034 0.1663 924
+926 3 354.4959 379.665 30.8235 0.1529 925
+927 3 355.1525 380.6008 30.938 0.165 926
+928 3 355.4328 381.6933 31.3765 0.178 927
+929 3 355.4339 382.7241 30.1608 0.2035 928
+930 3 355.3847 383.8486 29.6794 0.2161 929
+931 3 355.093 384.9446 29.6142 0.2151 930
+932 3 355.3001 385.8826 28.4799 0.1871 931
+933 3 355.9979 386.7132 27.7468 0.1694 932
+934 3 356.9188 387.3595 27.475 0.1479 933
+935 3 357.961 387.8149 27.5579 0.1311 934
+936 3 358.9277 388.3686 28.0431 0.1271 935
+937 3 359.2515 389.3581 28.2901 0.1563 936
+938 3 358.5971 390.2001 28.4206 0.1958 937
+939 3 357.5766 390.6028 27.8796 0.2243 938
+940 3 356.8376 391.359 27.0113 0.2077 939
+941 3 355.8584 391.8383 26.3584 0.1814 940
+942 3 354.8253 392.3108 26.0669 0.1432 941
+943 3 354.6331 393.3758 25.5753 0.1278 942
+944 3 354.9832 394.108 27.44 0.1144 943
+945 3 357.2117 354.831 43.5974 0.1652 898
+946 3 358.064 354.6629 41.9924 0.1314 945
+947 3 359.1256 354.886 41.1642 0.1149 946
+948 3 359.923 354.1378 40.5308 0.1144 947
+949 3 360.7924 353.7534 38.9931 0.1272 948
+950 3 361.8701 353.3953 38.6644 0.1579 949
+951 3 362.9695 353.0864 38.8122 0.2345 950
+952 3 363.9728 352.5682 39.1765 0.2522 951
+953 3 364.9028 351.9493 38.7064 0.2326 952
+954 3 365.786 351.2343 38.5134 0.181 953
+955 3 366.5765 350.4438 38.0859 0.1398 954
+956 3 367.2995 349.5789 37.8742 0.1398 955
+957 3 367.9012 348.6363 38.2964 0.1422 956
+958 3 368.543 347.7074 37.854 0.1486 957
+959 3 369.2843 346.8562 37.863 0.1398 958
+960 3 370.2339 346.3277 37.7633 0.1469 959
+961 3 371.1777 346.5279 36.7578 0.1754 960
+962 3 372.1592 346.8025 35.6516 0.2148 961
+963 3 373.127 346.3998 35.1266 0.2372 962
+964 3 373.9656 345.6596 34.5926 0.2415 963
+965 3 374.5399 344.7135 34.7004 0.2145 964
+966 3 374.8053 343.6279 34.4537 0.1942 965
+967 3 375.3498 342.6555 34.3076 0.1814 966
+968 3 376.0042 341.7517 34.834 0.1876 967
+969 3 376.6025 340.7884 34.9367 0.1907 968
+970 3 376.9034 339.7794 34.0164 0.1907 969
+971 3 376.9674 338.7647 32.751 0.1907 970
+972 3 377.0693 337.6642 32.7894 0.1907 971
+973 3 377.5108 336.6254 32.9977 0.1804 972
+974 3 378.2636 335.7754 32.9857 0.178 973
+975 3 379.228 335.184 32.7233 0.1675 974
+976 3 380.2233 334.6314 32.4433 0.1652 975
+977 3 381.0653 333.8672 32.3792 0.154 976
+978 3 381.7436 332.9635 31.9978 0.1637 977
+979 3 382.3889 332.0208 31.9768 0.1878 978
+980 3 383.1817 331.228 32.3487 0.2161 979
+981 3 384.0442 330.5222 32.8815 0.2113 980
+982 3 384.8794 329.7603 32.6889 0.1983 981
+983 3 385.5726 328.9057 32.4954 0.1962 982
+984 3 386.0268 327.8704 32.886 0.2093 983
+985 3 386.4455 326.8099 33.0313 0.2288 984
+986 3 386.8882 325.762 32.9896 0.2288 985
+987 3 387.6147 324.8868 32.776 0.2274 986
+988 3 388.4338 324.1478 32.0754 0.2145 987
+989 3 389.3398 323.4534 31.9197 0.2017 988
+990 3 390.1909 322.6904 31.9183 0.1925 989
+991 3 390.9002 321.8026 31.9108 0.2052 990
+992 3 391.3544 320.7524 31.8763 0.2267 991
+993 3 391.9035 319.7594 31.5563 0.2517 992
+994 3 392.5201 318.8683 30.6986 0.2542 993
+995 3 393.258 318.0446 30.0087 0.2331 994
+996 3 394.1698 317.4005 30.3612 0.1968 995
+997 3 395.1079 316.7633 30.1669 0.1687 996
+998 3 396.0345 316.0964 30.0121 0.1652 997
+999 3 396.5482 315.0965 30.3355 0.2034 998
+1000 3 345.0304 344.0591 53.2339 0.1341 1
+1001 3 344.6952 342.9701 53.4204 0.1596 1000
+1002 3 344.4275 341.8913 54.0156 0.1855 1001
+1003 3 344.1999 340.8205 54.5241 0.2034 1002
+1004 3 343.7445 339.776 54.3572 0.2116 1003
+1005 3 343.2583 338.7476 54.5611 0.2246 1004
+1006 3 342.7527 337.7557 55.1253 0.2248 1005
+1007 3 342.1727 336.8062 55.62 0.2368 1006
+1008 3 341.6899 335.7697 55.6511 0.2337 1007
+1009 3 341.1671 334.7573 55.8037 0.2262 1008
+1010 3 340.6077 333.7826 55.7936 0.1873 1009
+1011 3 339.9213 332.896 55.4478 0.1489 1010
+1012 3 339.0496 332.1638 55.4803 0.1216 1011
+1013 3 338.1298 331.5015 55.7477 0.1144 1012
+1014 3 337.5246 330.6332 56.4292 0.1144 1013
+1015 3 337.0064 329.6733 57.0212 0.1209 1014
+1016 3 336.3875 328.7238 57.223 0.1408 1015
+1017 3 335.8738 327.7137 57.5308 0.1666 1016
+1018 3 335.359 326.715 58.0608 0.178 1017
+1019 3 334.7047 325.8135 58.5894 0.1632 1018
+1020 3 334.2802 324.8777 58.217 0.1492 1019
+1021 3 333.635 324.0025 58.0804 0.1911 1020
+1022 3 332.7049 323.7737 59.08 0.2613 1021
+1023 3 332.2805 323.0919 57.4272 0.1855 1022
+1024 3 331.6422 322.306 56.28 0.2161 1023
+1025 3 331.1056 321.3919 56.765 0.1953 1024
+1026 3 330.7293 320.5374 57.4535 0.176 1025
+1027 3 330.2579 319.8658 59.2088 0.165 1026
+1028 3 329.7122 319.176 59.0167 0.1144 1027
+1029 3 328.8828 319.1566 57.8206 0.1715 1028
+1030 3 327.764 319.1302 57.4392 0.2188 1029
+1031 3 326.8225 318.7184 58.24 0.1894 1030
+1032 3 325.6785 318.7184 58.24 0.2154 1031
+1033 3 325.2392 319.0616 58.8 0.2288 1032
+1034 2 346.1607 344.6334 49.8854 0.123 1
+1035 2 346.3174 343.5192 49.3741 0.1211 1034
+1036 2 346.4741 342.4061 48.8631 0.1192 1035
+1037 2 346.6309 341.2918 48.3518 0.1172 1036
+1038 2 346.7876 340.1776 47.8408 0.1153 1037
+1039 2 346.9729 339.1788 47.7985 0.1927 1038
+1040 2 347.0896 338.5496 49.3716 0.1528 1039
+1041 2 347.1971 337.8827 48.72 0.193 1040
+1042 2 347.093 336.7787 48.3546 0.126 1041
+1043 2 347.4534 335.9722 47.5096 0.2025 1042
+1044 2 347.5472 334.9003 47.4533 0.178 1043
+1045 2 347.4328 333.8501 48.3232 0.1477 1044
+1046 2 347.3573 332.9166 49.8243 0.1144 1045
+1047 2 347.3642 332.1238 51.0507 0.1402 1046
+1048 2 347.8996 331.1697 50.9404 0.2872 1047
+1049 2 348.253 330.1813 50.9463 0.1271 1048
+1050 2 348.3663 329.1322 51.0308 0.1968 1049
+1051 2 348.8239 328.7764 49.0297 0.1774 1050
+1052 2 349.1328 327.8338 49.4637 0.1833 1051
+1053 2 349.1488 326.7676 48.7676 0.2731 1052
+1054 2 349.6156 326.0583 49.28 0.1144 1053
+1055 2 350.064 325.0573 48.9135 0.1144 1054
+1056 2 350.5937 324.324 48.72 0.1144 1055
+1057 2 351.3533 323.7428 49.2282 0.2034 1056
+1058 2 351.7159 322.8746 49.3111 0.1907 1057
diff --git a/example/single/single.cpp b/example/single/single.cpp
new file mode 100644
index 00000000..9237f335
--- /dev/null
+++ b/example/single/single.cpp
@@ -0,0 +1,166 @@
+#include <fstream>
+#include <iomanip>
+#include <iostream>
+#include <stdexcept>
+#include <string>
+#include <vector>
+
+#include <arbor/load_balance.hpp>
+#include <arbor/mc_cell.hpp>
+#include <arbor/morphology.hpp>
+#include <arbor/swcio.hpp>
+#include <arbor/simulation.hpp>
+#include <arbor/simple_sampler.hpp>
+
+#include <sup/tinyopt.hpp>
+
+struct options {
+    std::string swc_file;
+    double t_end = 20;
+    double dt = 0.025;
+    float syn_weight = 0.01;
+};
+
+options parse_options(int argc, char** argv);
+arb::morphology default_morphology();
+arb::morphology read_swc(const std::string& path);
+
+struct single_recipe: public arb::recipe {
+    explicit single_recipe(arb::morphology m): morpho(m) {}
+
+    arb::cell_size_type num_cells() const override { return 1; }
+    arb::cell_size_type num_probes(arb::cell_gid_type) const override { return 1; }
+    arb::cell_size_type num_targets(arb::cell_gid_type) const override { return 1; }
+
+    arb::probe_info get_probe(arb::cell_member_type probe_id) const override {
+        arb::segment_location mid_soma = {0, 0.5};
+        arb::cell_probe_address probe = {mid_soma, arb::cell_probe_address::membrane_voltage};
+
+        // Probe info consists of: the probe id, a tag value to distinguish this probe
+        // from others for any attached sampler (unused), and the cell probe address.
+
+        return {probe_id, 0, probe};
+    }
+
+    arb::cell_kind get_cell_kind(arb::cell_gid_type) const override {
+        return arb::cell_kind::cable1d_neuron;
+    }
+
+    arb::util::unique_any get_cell_description(arb::cell_gid_type) const override {
+        arb::mc_cell c = make_mc_cell(morpho);
+
+        // Add HH mechanism to soma, passive channels to dendrites.
+        // Discretize dendrites according to the NEURON d-lambda rule.
+
+        for (auto& segment: c.segments()) {
+            if (segment->is_soma()) {
+                segment->add_mechanism("hh");
+            }
+            else {
+                segment->add_mechanism("pas");
+
+                double dx = segment->length_constant(100.)*0.3;
+                unsigned n = std::ceil(segment->as_cable()->length()/dx);
+                segment->set_compartments(n);
+
+            }
+        }
+
+        // Add synapse to last segment.
+
+        arb::cell_lid_type last_segment = morpho.components()-1;
+        arb::segment_location end_last_segment = { last_segment, 1. };
+        c.add_synapse(end_last_segment, "exp2syn");
+
+        return c;
+    }
+
+    arb::morphology morpho;
+};
+
+int main(int argc, char** argv) {
+    try {
+        options opt = parse_options(argc, argv);
+        single_recipe R(opt.swc_file.empty()? default_morphology(): read_swc(opt.swc_file));
+
+        auto context = arb::make_context();
+        arb::simulation sim(R, arb::partition_load_balance(R, context), context);
+
+        // Attach a sampler to the probe described in the recipe, sampling every 0.1 ms.
+
+        arb::trace_data<double> trace;
+        sim.add_sampler(arb::all_probes, arb::regular_schedule(0.1), arb::make_simple_sampler(trace));
+
+        // Trigger the single synapse (target is gid 0, index 0) at t = 1 ms with
+        // the given weight.
+
+        arb::spike_event spike = {{0, 0}, 1., opt.syn_weight};
+        sim.inject_events({spike});
+
+        sim.run(opt.t_end, opt.dt);
+
+        std::cout << std::fixed << std::setprecision(4);
+        for (auto entry: trace) {
+            std::cout << entry.t << ", " << entry.v << "\n";
+        }
+    }
+    catch (std::exception& e) {
+        std::cerr << "caught exception: " << e.what() << "\n";
+        return 2;
+    }
+}
+
+options parse_options(int argc, char** argv) {
+    using namespace to;
+    options opt;
+
+    char** arg = argv+1;
+    while (*arg) {
+        if (auto dt = parse_opt<double>(arg, 'd', "dt")) {
+            opt.dt = dt.value();
+        }
+        else if (auto t_end = parse_opt<double>(arg, 't', "t-end")) {
+            opt.t_end = t_end.value();
+        }
+        else if (auto weight = parse_opt<float>(arg, 'w', "weight")) {
+            opt.syn_weight = weight.value();
+        }
+        else if (auto swc = parse_opt<std::string>(arg, 'm', "morphology")) {
+            opt.swc_file = swc.value();
+        }
+        else {
+            usage(argv[0], "[-m|--morphology SWCFILE] [-d|--dt TIME] [-t|--t-end TIME] [-w|--weight WEIGHT]");
+            std::exit(1);
+        }
+    }
+    return opt;
+}
+
+// If no SWC file is given, the default morphology consists
+// of a soma of radius 6.3 µm and a single unbranched dendrite
+// of length 200 µm and radius decreasing linearly from 0.5 µm
+// to 0.2 µm.
+
+arb::morphology default_morphology() {
+    arb::morphology m;
+
+    // Points in a morphology are expressed as (x, y, z, r),
+    // with r being the radius. Units are µm.
+
+    m.soma = {0., 0., 0., 6.3};
+
+    std::vector<arb::section_point> dendrite = {
+        {6.3, 0., 0., 0.5},
+        {206.3, 0., 0., 0.2}
+    };
+    m.add_section(dendrite, 0);
+
+    return m;
+}
+
+arb::morphology read_swc(const std::string& path) {
+    std::ifstream f(path);
+    if (!f) throw std::runtime_error("unable to open SWC file: "+path);
+
+    return arb::swc_as_morphology(arb::parse_swc_file(f));
+}
-- 
GitLab