bsplot 0.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. bsplot/__init__.py +23 -0
  2. bsplot/anat.py +55 -0
  3. bsplot/animate.py +194 -0
  4. bsplot/bioicons.py +777 -0
  5. bsplot/brain.py +188 -0
  6. bsplot/colors.py +1935 -0
  7. bsplot/data/HCP_avg-SC.txt +379 -0
  8. bsplot/data/MNI152.rh.pial +0 -0
  9. bsplot/data/STN_lh.nii.gz +0 -0
  10. bsplot/data/STN_rh.nii.gz +0 -0
  11. bsplot/data/__init__.py +22 -0
  12. bsplot/data/left_electrode.ply +257270 -0
  13. bsplot/data/parcellations/HCP-MMP1.L.label.gii +442 -0
  14. bsplot/data/parcellations/HCP-MMP1.R.label.gii +442 -0
  15. bsplot/data/parcellations/code/split_hcpmmp1.sh +4 -0
  16. bsplot/data/right_electrode.ply +257270 -0
  17. bsplot/data/surface.py +112 -0
  18. bsplot/data/tpl-MNI152NLin2009b_atlas-hcpmmp1_desc-ordered_dseg.nii.gz +0 -0
  19. bsplot/figure.py +177 -0
  20. bsplot/graph/__init__.py +31 -0
  21. bsplot/graph/edges.py +312 -0
  22. bsplot/graph/flowchart.py +762 -0
  23. bsplot/graph/layout.py +201 -0
  24. bsplot/graph/network.py +974 -0
  25. bsplot/graph/nodes.py +452 -0
  26. bsplot/panels.py +110 -0
  27. bsplot/scientific_color_maps/__init__.py +0 -0
  28. bsplot/scientific_color_maps/_sync_from_zenodo_download.sh +1 -0
  29. bsplot/scientific_color_maps/batlowK.txt +256 -0
  30. bsplot/scientific_color_maps/batlowW.txt +256 -0
  31. bsplot/scientific_color_maps/cyclic/bamO.txt +256 -0
  32. bsplot/scientific_color_maps/cyclic/brocO.txt +256 -0
  33. bsplot/scientific_color_maps/cyclic/corkO.txt +256 -0
  34. bsplot/scientific_color_maps/cyclic/romaO.txt +256 -0
  35. bsplot/scientific_color_maps/cyclic/vikO.txt +256 -0
  36. bsplot/scientific_color_maps/diverging/bam.txt +256 -0
  37. bsplot/scientific_color_maps/diverging/berlin.txt +256 -0
  38. bsplot/scientific_color_maps/diverging/broc.txt +256 -0
  39. bsplot/scientific_color_maps/diverging/cork.txt +256 -0
  40. bsplot/scientific_color_maps/diverging/lisbon.txt +256 -0
  41. bsplot/scientific_color_maps/diverging/managua.txt +256 -0
  42. bsplot/scientific_color_maps/diverging/roma.txt +256 -0
  43. bsplot/scientific_color_maps/diverging/tofino.txt +256 -0
  44. bsplot/scientific_color_maps/diverging/vanimo.txt +256 -0
  45. bsplot/scientific_color_maps/diverging/vik.txt +256 -0
  46. bsplot/scientific_color_maps/multisequential/bukavu.txt +256 -0
  47. bsplot/scientific_color_maps/multisequential/fes.txt +256 -0
  48. bsplot/scientific_color_maps/multisequential/oleron.txt +256 -0
  49. bsplot/scientific_color_maps/naviaW.txt +256 -0
  50. bsplot/scientific_color_maps/sequential/acton.txt +256 -0
  51. bsplot/scientific_color_maps/sequential/bamako.txt +256 -0
  52. bsplot/scientific_color_maps/sequential/batlow.txt +256 -0
  53. bsplot/scientific_color_maps/sequential/bilbao.txt +256 -0
  54. bsplot/scientific_color_maps/sequential/buda.txt +256 -0
  55. bsplot/scientific_color_maps/sequential/davos.txt +256 -0
  56. bsplot/scientific_color_maps/sequential/devon.txt +256 -0
  57. bsplot/scientific_color_maps/sequential/glasgow.txt +256 -0
  58. bsplot/scientific_color_maps/sequential/grayC.txt +256 -0
  59. bsplot/scientific_color_maps/sequential/hawaii.txt +256 -0
  60. bsplot/scientific_color_maps/sequential/imola.txt +256 -0
  61. bsplot/scientific_color_maps/sequential/lajolla.txt +256 -0
  62. bsplot/scientific_color_maps/sequential/lapaz.txt +256 -0
  63. bsplot/scientific_color_maps/sequential/lipari.txt +256 -0
  64. bsplot/scientific_color_maps/sequential/navia.txt +256 -0
  65. bsplot/scientific_color_maps/sequential/nuuk.txt +256 -0
  66. bsplot/scientific_color_maps/sequential/oslo.txt +256 -0
  67. bsplot/scientific_color_maps/sequential/tokyo.txt +256 -0
  68. bsplot/scientific_color_maps/sequential/turku.txt +256 -0
  69. bsplot/streamlines.py +314 -0
  70. bsplot/style.py +791 -0
  71. bsplot/styles/black.mplstyle +78 -0
  72. bsplot/styles/bss.mplstyle +50 -0
  73. bsplot/styles/bwcomp.mplstyle +30 -0
  74. bsplot/styles/nature.mplstyle +57 -0
  75. bsplot/styles/transparent.mplstyle +16 -0
  76. bsplot/styles/tvbo.mplstyle +57 -0
  77. bsplot/surface.py +2370 -0
  78. bsplot/templates.py +270 -0
  79. bsplot/text.py +199 -0
  80. bsplot/text2obj.py +59 -0
  81. bsplot/timeseries.py +10 -0
  82. bsplot/utils.py +13 -0
  83. bsplot/volume.py +958 -0
  84. bsplot-0.0.2.dist-info/METADATA +60 -0
  85. bsplot-0.0.2.dist-info/RECORD +89 -0
  86. bsplot-0.0.2.dist-info/WHEEL +5 -0
  87. bsplot-0.0.2.dist-info/entry_points.txt +2 -0
  88. bsplot-0.0.2.dist-info/licenses/LICENSE +193 -0
  89. bsplot-0.0.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,256 @@
1
+ 1.000000 0.812630 0.404239
2
+ 0.995163 0.804546 0.401552
3
+ 0.990240 0.796488 0.398875
4
+ 0.985323 0.788476 0.396216
5
+ 0.980412 0.780499 0.393560
6
+ 0.975507 0.772566 0.390930
7
+ 0.970617 0.764681 0.388300
8
+ 0.965734 0.756837 0.385681
9
+ 0.960867 0.749039 0.383098
10
+ 0.956008 0.741291 0.380517
11
+ 0.951157 0.733597 0.377947
12
+ 0.946314 0.725951 0.375393
13
+ 0.941487 0.718348 0.372860
14
+ 0.936674 0.710803 0.370341
15
+ 0.931861 0.703303 0.367841
16
+ 0.927063 0.695854 0.365358
17
+ 0.922279 0.688453 0.362886
18
+ 0.917502 0.681092 0.360425
19
+ 0.912728 0.673792 0.358001
20
+ 0.907969 0.666530 0.355581
21
+ 0.903213 0.659321 0.353163
22
+ 0.898462 0.652158 0.350776
23
+ 0.893721 0.645033 0.348388
24
+ 0.888989 0.637961 0.346011
25
+ 0.884260 0.630933 0.343667
26
+ 0.879531 0.623946 0.341336
27
+ 0.874812 0.616998 0.339018
28
+ 0.870093 0.610091 0.336701
29
+ 0.865382 0.603234 0.334418
30
+ 0.860673 0.596415 0.332135
31
+ 0.855966 0.589631 0.329871
32
+ 0.851254 0.582896 0.327604
33
+ 0.846548 0.576213 0.325360
34
+ 0.841847 0.569544 0.323151
35
+ 0.837141 0.562939 0.320941
36
+ 0.832431 0.556354 0.318738
37
+ 0.827719 0.549825 0.316560
38
+ 0.823010 0.543331 0.314381
39
+ 0.818292 0.536881 0.312217
40
+ 0.813575 0.530459 0.310103
41
+ 0.808858 0.524083 0.307958
42
+ 0.804130 0.517752 0.305871
43
+ 0.799400 0.511449 0.303754
44
+ 0.794659 0.505193 0.301670
45
+ 0.789914 0.498983 0.299621
46
+ 0.785165 0.492803 0.297568
47
+ 0.780403 0.486677 0.295528
48
+ 0.775635 0.480583 0.293510
49
+ 0.770863 0.474541 0.291527
50
+ 0.766076 0.468526 0.289539
51
+ 0.761278 0.462554 0.287559
52
+ 0.756471 0.456632 0.285607
53
+ 0.751655 0.450751 0.283687
54
+ 0.746818 0.444910 0.281780
55
+ 0.741969 0.439096 0.279884
56
+ 0.737105 0.433334 0.278008
57
+ 0.732226 0.427620 0.276161
58
+ 0.727319 0.421918 0.274303
59
+ 0.722393 0.416275 0.272473
60
+ 0.717455 0.410668 0.270694
61
+ 0.712472 0.405076 0.268909
62
+ 0.707472 0.399518 0.267116
63
+ 0.702439 0.394006 0.265378
64
+ 0.697370 0.388520 0.263665
65
+ 0.692273 0.383057 0.261940
66
+ 0.687123 0.377612 0.260249
67
+ 0.681932 0.372187 0.258573
68
+ 0.676708 0.366801 0.256922
69
+ 0.671425 0.361420 0.255294
70
+ 0.666097 0.356067 0.253672
71
+ 0.660715 0.350728 0.252079
72
+ 0.655283 0.345391 0.250488
73
+ 0.649801 0.340089 0.248954
74
+ 0.644251 0.334804 0.247423
75
+ 0.638656 0.329526 0.245904
76
+ 0.633002 0.324248 0.244421
77
+ 0.627289 0.319014 0.242975
78
+ 0.621520 0.313798 0.241574
79
+ 0.615700 0.308601 0.240165
80
+ 0.609827 0.303410 0.238814
81
+ 0.603909 0.298260 0.237523
82
+ 0.597926 0.293142 0.236234
83
+ 0.591912 0.288054 0.235002
84
+ 0.585847 0.283016 0.233773
85
+ 0.579740 0.277995 0.232633
86
+ 0.573590 0.273018 0.231548
87
+ 0.567413 0.268076 0.230475
88
+ 0.561198 0.263215 0.229479
89
+ 0.554963 0.258371 0.228573
90
+ 0.548712 0.253612 0.227693
91
+ 0.542431 0.248906 0.226886
92
+ 0.536138 0.244237 0.226157
93
+ 0.529842 0.239680 0.225479
94
+ 0.523541 0.235196 0.224869
95
+ 0.517245 0.230755 0.224361
96
+ 0.510943 0.226433 0.223950
97
+ 0.504672 0.222166 0.223627
98
+ 0.498412 0.218021 0.223394
99
+ 0.492165 0.213965 0.223254
100
+ 0.485952 0.210003 0.223213
101
+ 0.479785 0.206181 0.223277
102
+ 0.473638 0.202416 0.223448
103
+ 0.467557 0.198797 0.223730
104
+ 0.461519 0.195316 0.224127
105
+ 0.455536 0.191949 0.224655
106
+ 0.449617 0.188732 0.225338
107
+ 0.443765 0.185656 0.226155
108
+ 0.437987 0.182662 0.227082
109
+ 0.432286 0.179868 0.228171
110
+ 0.426653 0.177234 0.229378
111
+ 0.421111 0.174741 0.230767
112
+ 0.415672 0.172385 0.232317
113
+ 0.410333 0.170229 0.234010
114
+ 0.405072 0.168215 0.235897
115
+ 0.399924 0.166404 0.237935
116
+ 0.394890 0.164752 0.240137
117
+ 0.389957 0.163309 0.242542
118
+ 0.385146 0.162035 0.245119
119
+ 0.380463 0.160929 0.247920
120
+ 0.375888 0.159997 0.250871
121
+ 0.371430 0.159317 0.254031
122
+ 0.367114 0.158833 0.257377
123
+ 0.362919 0.158533 0.260924
124
+ 0.358852 0.158428 0.264665
125
+ 0.354944 0.158527 0.268624
126
+ 0.351141 0.158823 0.272756
127
+ 0.347483 0.159307 0.277108
128
+ 0.343941 0.159992 0.281641
129
+ 0.340564 0.160939 0.286361
130
+ 0.337315 0.162065 0.291308
131
+ 0.334203 0.163376 0.296415
132
+ 0.331205 0.164857 0.301701
133
+ 0.328374 0.166583 0.307186
134
+ 0.325654 0.168471 0.312840
135
+ 0.323097 0.170563 0.318670
136
+ 0.320660 0.172833 0.324649
137
+ 0.318337 0.175302 0.330794
138
+ 0.316164 0.177969 0.337101
139
+ 0.314101 0.180741 0.343535
140
+ 0.312156 0.183735 0.350114
141
+ 0.310380 0.186896 0.356818
142
+ 0.308695 0.190206 0.363627
143
+ 0.307121 0.193696 0.370558
144
+ 0.305695 0.197316 0.377601
145
+ 0.304353 0.201063 0.384726
146
+ 0.303137 0.204999 0.391950
147
+ 0.302039 0.209051 0.399237
148
+ 0.301058 0.213227 0.406613
149
+ 0.300191 0.217560 0.414037
150
+ 0.299438 0.221984 0.421509
151
+ 0.298777 0.226557 0.429039
152
+ 0.298217 0.231221 0.436600
153
+ 0.297777 0.235995 0.444189
154
+ 0.297445 0.240848 0.451793
155
+ 0.297212 0.245818 0.459408
156
+ 0.297076 0.250896 0.467029
157
+ 0.297039 0.256031 0.474647
158
+ 0.297100 0.261272 0.482250
159
+ 0.297256 0.266580 0.489830
160
+ 0.297503 0.271940 0.497403
161
+ 0.297841 0.277408 0.504931
162
+ 0.298276 0.282920 0.512422
163
+ 0.298814 0.288473 0.519871
164
+ 0.299434 0.294083 0.527282
165
+ 0.300124 0.299760 0.534628
166
+ 0.300902 0.305477 0.541914
167
+ 0.301764 0.311218 0.549148
168
+ 0.302708 0.317001 0.556297
169
+ 0.303731 0.322826 0.563394
170
+ 0.304833 0.328665 0.570396
171
+ 0.306011 0.334539 0.577332
172
+ 0.307222 0.340419 0.584183
173
+ 0.308530 0.346314 0.590950
174
+ 0.309895 0.352235 0.597634
175
+ 0.311303 0.358172 0.604232
176
+ 0.312773 0.364104 0.610733
177
+ 0.314306 0.370048 0.617145
178
+ 0.315902 0.376004 0.623471
179
+ 0.317520 0.381947 0.629693
180
+ 0.319197 0.387897 0.635834
181
+ 0.320921 0.393847 0.641880
182
+ 0.322684 0.399790 0.647834
183
+ 0.324465 0.405749 0.653703
184
+ 0.326296 0.411682 0.659482
185
+ 0.328174 0.417627 0.665174
186
+ 0.330082 0.423555 0.670790
187
+ 0.332013 0.429498 0.676316
188
+ 0.333979 0.435442 0.681762
189
+ 0.335961 0.441374 0.687145
190
+ 0.337976 0.447313 0.692459
191
+ 0.340034 0.453269 0.697691
192
+ 0.342103 0.459234 0.702875
193
+ 0.344186 0.465199 0.707993
194
+ 0.346311 0.471198 0.713058
195
+ 0.348466 0.477201 0.718079
196
+ 0.350645 0.483227 0.723047
197
+ 0.352833 0.489280 0.727979
198
+ 0.355061 0.495368 0.732876
199
+ 0.357301 0.501485 0.737730
200
+ 0.359554 0.507627 0.742563
201
+ 0.361845 0.513807 0.747363
202
+ 0.364145 0.520010 0.752135
203
+ 0.366486 0.526272 0.756887
204
+ 0.368835 0.532560 0.761617
205
+ 0.371192 0.538887 0.766331
206
+ 0.373590 0.545251 0.771030
207
+ 0.376001 0.551659 0.775706
208
+ 0.378422 0.558095 0.780371
209
+ 0.380873 0.564581 0.785026
210
+ 0.383329 0.571100 0.789663
211
+ 0.385787 0.577657 0.794291
212
+ 0.388281 0.584255 0.798904
213
+ 0.390784 0.590884 0.803505
214
+ 0.393288 0.597553 0.808099
215
+ 0.395819 0.604255 0.812679
216
+ 0.398349 0.610985 0.817253
217
+ 0.400900 0.617743 0.821819
218
+ 0.403444 0.624542 0.826372
219
+ 0.406005 0.631368 0.830919
220
+ 0.408564 0.638221 0.835455
221
+ 0.411139 0.645102 0.839990
222
+ 0.413720 0.652022 0.844511
223
+ 0.416306 0.658958 0.849030
224
+ 0.418896 0.665934 0.853537
225
+ 0.421489 0.672938 0.858048
226
+ 0.424096 0.679960 0.862559
227
+ 0.426709 0.687024 0.867055
228
+ 0.429323 0.694108 0.871560
229
+ 0.431953 0.701233 0.876058
230
+ 0.434566 0.708388 0.880557
231
+ 0.437202 0.715574 0.885061
232
+ 0.439832 0.722782 0.889564
233
+ 0.442476 0.730039 0.894073
234
+ 0.445116 0.737321 0.898583
235
+ 0.447756 0.744641 0.903104
236
+ 0.450420 0.752000 0.907629
237
+ 0.453081 0.759390 0.912156
238
+ 0.455744 0.766824 0.916696
239
+ 0.458412 0.774293 0.921240
240
+ 0.461087 0.781809 0.925798
241
+ 0.463768 0.789358 0.930364
242
+ 0.466450 0.796943 0.934936
243
+ 0.469145 0.804576 0.939524
244
+ 0.471834 0.812242 0.944119
245
+ 0.474525 0.819949 0.948721
246
+ 0.477215 0.827698 0.953338
247
+ 0.479917 0.835486 0.957959
248
+ 0.482610 0.843308 0.962585
249
+ 0.485303 0.851165 0.967223
250
+ 0.488011 0.859063 0.971865
251
+ 0.490708 0.866990 0.976509
252
+ 0.493386 0.874952 0.981161
253
+ 0.496072 0.882941 0.985815
254
+ 0.498765 0.890960 0.990469
255
+ 0.501444 0.899006 0.995121
256
+ 0.504115 0.907076 0.999779
@@ -0,0 +1,256 @@
1
+ 0.492325 0.090787 0.000076
2
+ 0.496730 0.102802 0.003675
3
+ 0.501125 0.114034 0.007134
4
+ 0.505473 0.124685 0.010421
5
+ 0.509813 0.134890 0.013817
6
+ 0.514125 0.144643 0.016841
7
+ 0.518397 0.154036 0.019720
8
+ 0.522634 0.163193 0.022451
9
+ 0.526850 0.172041 0.025034
10
+ 0.531016 0.180682 0.027528
11
+ 0.535142 0.189147 0.030132
12
+ 0.539225 0.197418 0.032869
13
+ 0.543266 0.205524 0.035925
14
+ 0.547254 0.213477 0.038888
15
+ 0.551203 0.221318 0.041994
16
+ 0.555100 0.229015 0.045012
17
+ 0.558954 0.236607 0.047967
18
+ 0.562776 0.244053 0.051012
19
+ 0.566540 0.251456 0.053998
20
+ 0.570257 0.258727 0.057033
21
+ 0.573940 0.265922 0.060051
22
+ 0.577577 0.273024 0.063001
23
+ 0.581178 0.280048 0.065873
24
+ 0.584739 0.286993 0.068856
25
+ 0.588249 0.293880 0.071712
26
+ 0.591737 0.300697 0.074564
27
+ 0.595174 0.307450 0.077376
28
+ 0.598577 0.314151 0.080252
29
+ 0.601948 0.320797 0.083076
30
+ 0.605282 0.327364 0.085853
31
+ 0.608593 0.333908 0.088711
32
+ 0.611855 0.340387 0.091525
33
+ 0.615092 0.346826 0.094279
34
+ 0.618309 0.353217 0.096979
35
+ 0.621487 0.359572 0.099753
36
+ 0.624650 0.365896 0.102506
37
+ 0.627785 0.372174 0.105218
38
+ 0.630901 0.378439 0.107956
39
+ 0.633994 0.384670 0.110736
40
+ 0.637068 0.390894 0.113480
41
+ 0.640129 0.397078 0.116219
42
+ 0.643171 0.403273 0.118960
43
+ 0.646208 0.409445 0.121674
44
+ 0.649242 0.415612 0.124470
45
+ 0.652261 0.421776 0.127267
46
+ 0.655276 0.427961 0.130152
47
+ 0.658297 0.434132 0.132974
48
+ 0.661315 0.440331 0.135825
49
+ 0.664334 0.446543 0.138777
50
+ 0.667364 0.452780 0.141759
51
+ 0.670402 0.459031 0.144786
52
+ 0.673440 0.465303 0.147848
53
+ 0.676494 0.471628 0.150966
54
+ 0.679554 0.477967 0.154160
55
+ 0.682637 0.484345 0.157428
56
+ 0.685735 0.490782 0.160789
57
+ 0.688849 0.497239 0.164248
58
+ 0.691977 0.503744 0.167748
59
+ 0.695120 0.510297 0.171371
60
+ 0.698285 0.516904 0.175115
61
+ 0.701472 0.523556 0.178956
62
+ 0.704681 0.530258 0.182899
63
+ 0.707908 0.537021 0.187010
64
+ 0.711162 0.543825 0.191228
65
+ 0.714426 0.550692 0.195605
66
+ 0.717725 0.557617 0.200115
67
+ 0.721030 0.564592 0.204829
68
+ 0.724366 0.571630 0.209678
69
+ 0.727717 0.578727 0.214708
70
+ 0.731087 0.585886 0.219946
71
+ 0.734480 0.593098 0.225346
72
+ 0.737879 0.600364 0.230969
73
+ 0.741297 0.607699 0.236808
74
+ 0.744731 0.615074 0.242822
75
+ 0.748175 0.622516 0.249103
76
+ 0.751624 0.630013 0.255599
77
+ 0.755074 0.637558 0.262334
78
+ 0.758523 0.645147 0.269325
79
+ 0.761963 0.652786 0.276547
80
+ 0.765406 0.660470 0.284010
81
+ 0.768820 0.668197 0.291755
82
+ 0.772224 0.675947 0.299742
83
+ 0.775598 0.683727 0.307981
84
+ 0.778939 0.691534 0.316505
85
+ 0.782242 0.699353 0.325257
86
+ 0.785493 0.707188 0.334299
87
+ 0.788687 0.715019 0.343564
88
+ 0.791812 0.722841 0.353091
89
+ 0.794864 0.730654 0.362848
90
+ 0.797828 0.738438 0.372842
91
+ 0.800699 0.746187 0.383072
92
+ 0.803461 0.753893 0.393496
93
+ 0.806107 0.761537 0.404131
94
+ 0.808624 0.769113 0.414950
95
+ 0.810997 0.776617 0.425936
96
+ 0.813218 0.784025 0.437088
97
+ 0.815281 0.791322 0.448363
98
+ 0.817167 0.798508 0.459757
99
+ 0.818865 0.805562 0.471253
100
+ 0.820371 0.812478 0.482813
101
+ 0.821675 0.819240 0.494440
102
+ 0.822757 0.825842 0.506080
103
+ 0.823613 0.832270 0.517753
104
+ 0.824237 0.838506 0.529400
105
+ 0.824620 0.844553 0.541003
106
+ 0.824755 0.850392 0.552561
107
+ 0.824634 0.856022 0.564037
108
+ 0.824253 0.861429 0.575407
109
+ 0.823606 0.866611 0.586656
110
+ 0.822692 0.871564 0.597769
111
+ 0.821502 0.876273 0.608734
112
+ 0.820031 0.880744 0.619513
113
+ 0.818285 0.884972 0.630101
114
+ 0.816266 0.888952 0.640490
115
+ 0.813955 0.892681 0.650660
116
+ 0.811371 0.896160 0.660600
117
+ 0.808502 0.899389 0.670314
118
+ 0.805347 0.902364 0.679761
119
+ 0.801918 0.905092 0.688973
120
+ 0.798210 0.907568 0.697906
121
+ 0.794228 0.909794 0.706586
122
+ 0.789963 0.911771 0.714983
123
+ 0.785431 0.913506 0.723105
124
+ 0.780623 0.914991 0.730953
125
+ 0.775551 0.916237 0.738521
126
+ 0.770217 0.917249 0.745803
127
+ 0.764624 0.918014 0.752800
128
+ 0.758773 0.918542 0.759517
129
+ 0.752665 0.918838 0.765957
130
+ 0.746318 0.918903 0.772108
131
+ 0.739731 0.918739 0.777981
132
+ 0.732897 0.918350 0.783574
133
+ 0.725834 0.917737 0.788893
134
+ 0.718537 0.916896 0.793938
135
+ 0.711030 0.915828 0.798708
136
+ 0.703300 0.914552 0.803212
137
+ 0.695360 0.913054 0.807458
138
+ 0.687217 0.911341 0.811442
139
+ 0.678874 0.909414 0.815168
140
+ 0.670351 0.907280 0.818643
141
+ 0.661635 0.904933 0.821880
142
+ 0.652735 0.902379 0.824863
143
+ 0.643676 0.899624 0.827614
144
+ 0.634464 0.896664 0.830135
145
+ 0.625086 0.893500 0.832423
146
+ 0.615567 0.890145 0.834491
147
+ 0.605914 0.886598 0.836336
148
+ 0.596145 0.882852 0.837970
149
+ 0.586260 0.878925 0.839394
150
+ 0.576278 0.874814 0.840613
151
+ 0.566190 0.870520 0.841632
152
+ 0.556024 0.866058 0.842458
153
+ 0.545813 0.861420 0.843090
154
+ 0.535527 0.856619 0.843538
155
+ 0.525217 0.851658 0.843811
156
+ 0.514877 0.846543 0.843909
157
+ 0.504532 0.841286 0.843838
158
+ 0.494180 0.835884 0.843605
159
+ 0.483842 0.830350 0.843216
160
+ 0.473543 0.824685 0.842677
161
+ 0.463293 0.818902 0.841990
162
+ 0.453115 0.813010 0.841160
163
+ 0.443005 0.807018 0.840201
164
+ 0.432982 0.800920 0.839108
165
+ 0.423057 0.794738 0.837900
166
+ 0.413269 0.788474 0.836571
167
+ 0.403599 0.782136 0.835134
168
+ 0.394062 0.775727 0.833595
169
+ 0.384684 0.769261 0.831959
170
+ 0.375472 0.762745 0.830227
171
+ 0.366446 0.756186 0.828409
172
+ 0.357593 0.749581 0.826514
173
+ 0.348916 0.742958 0.824540
174
+ 0.340447 0.736291 0.822504
175
+ 0.332185 0.729618 0.820394
176
+ 0.324113 0.722919 0.818230
177
+ 0.316282 0.716224 0.816018
178
+ 0.308653 0.709514 0.813746
179
+ 0.301225 0.702804 0.811437
180
+ 0.294036 0.696099 0.809086
181
+ 0.287067 0.689401 0.806696
182
+ 0.280322 0.682707 0.804272
183
+ 0.273816 0.676034 0.801816
184
+ 0.267484 0.669377 0.799343
185
+ 0.261414 0.662739 0.796836
186
+ 0.255543 0.656120 0.794320
187
+ 0.249860 0.649522 0.791778
188
+ 0.244403 0.642944 0.789229
189
+ 0.239162 0.636402 0.786665
190
+ 0.234103 0.629874 0.784090
191
+ 0.229233 0.623385 0.781503
192
+ 0.224530 0.616915 0.778909
193
+ 0.220062 0.610472 0.776315
194
+ 0.215727 0.604065 0.773710
195
+ 0.211566 0.597675 0.771114
196
+ 0.207553 0.591317 0.768502
197
+ 0.203709 0.584989 0.765902
198
+ 0.199968 0.578679 0.763292
199
+ 0.196442 0.572403 0.760691
200
+ 0.192988 0.566143 0.758086
201
+ 0.189677 0.559913 0.755482
202
+ 0.186487 0.553693 0.752873
203
+ 0.183398 0.547501 0.750276
204
+ 0.180424 0.541321 0.747679
205
+ 0.177586 0.535164 0.745074
206
+ 0.174797 0.529026 0.742478
207
+ 0.172082 0.522885 0.739880
208
+ 0.169502 0.516755 0.737273
209
+ 0.166959 0.510628 0.734673
210
+ 0.164485 0.504518 0.732066
211
+ 0.162089 0.498397 0.729453
212
+ 0.159699 0.492262 0.726836
213
+ 0.157413 0.486128 0.724215
214
+ 0.155180 0.479992 0.721583
215
+ 0.152960 0.473828 0.718948
216
+ 0.150805 0.467661 0.716306
217
+ 0.148654 0.461471 0.713644
218
+ 0.146549 0.455260 0.710977
219
+ 0.144488 0.449025 0.708292
220
+ 0.142409 0.442760 0.705595
221
+ 0.140344 0.436466 0.702886
222
+ 0.138310 0.430142 0.700156
223
+ 0.136210 0.423782 0.697413
224
+ 0.134205 0.417407 0.694652
225
+ 0.132133 0.410984 0.691884
226
+ 0.130086 0.404521 0.689094
227
+ 0.127967 0.398042 0.686279
228
+ 0.125859 0.391517 0.683451
229
+ 0.123663 0.384945 0.680600
230
+ 0.121475 0.378353 0.677747
231
+ 0.119286 0.371714 0.674860
232
+ 0.117003 0.365049 0.671962
233
+ 0.114652 0.358343 0.669046
234
+ 0.112324 0.351597 0.666107
235
+ 0.109890 0.344819 0.663159
236
+ 0.107324 0.337994 0.660182
237
+ 0.104641 0.331130 0.657195
238
+ 0.101951 0.324237 0.654180
239
+ 0.099119 0.317305 0.651154
240
+ 0.096135 0.310338 0.648101
241
+ 0.093031 0.303295 0.645033
242
+ 0.089832 0.296240 0.641950
243
+ 0.086378 0.289140 0.638844
244
+ 0.082771 0.281987 0.635717
245
+ 0.078888 0.274774 0.632572
246
+ 0.074823 0.267513 0.629402
247
+ 0.070429 0.260237 0.626217
248
+ 0.065707 0.252891 0.623014
249
+ 0.060588 0.245475 0.619791
250
+ 0.054957 0.238038 0.616544
251
+ 0.048861 0.230521 0.613271
252
+ 0.041963 0.222980 0.609992
253
+ 0.034076 0.215343 0.606696
254
+ 0.026246 0.207675 0.603381
255
+ 0.018222 0.199913 0.600048
256
+ 0.009824 0.192129 0.596704