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
+ 0.000030 0.229985 0.280027
2
+ 0.001937 0.231185 0.278899
3
+ 0.003823 0.232353 0.277758
4
+ 0.005689 0.233502 0.276626
5
+ 0.007540 0.234711 0.275495
6
+ 0.009384 0.235876 0.274343
7
+ 0.011320 0.237059 0.273218
8
+ 0.013214 0.238208 0.272060
9
+ 0.015038 0.239392 0.270951
10
+ 0.016856 0.240549 0.269816
11
+ 0.018674 0.241751 0.268677
12
+ 0.020495 0.242915 0.267509
13
+ 0.022322 0.244096 0.266389
14
+ 0.024157 0.245285 0.265232
15
+ 0.026000 0.246485 0.264098
16
+ 0.027856 0.247699 0.262937
17
+ 0.029726 0.248899 0.261773
18
+ 0.031613 0.250081 0.260606
19
+ 0.033509 0.251327 0.259446
20
+ 0.035687 0.252540 0.258244
21
+ 0.037634 0.253772 0.257072
22
+ 0.039643 0.255022 0.255864
23
+ 0.041713 0.256245 0.254681
24
+ 0.043589 0.257513 0.253457
25
+ 0.045623 0.258791 0.252233
26
+ 0.047645 0.260069 0.250998
27
+ 0.049735 0.261359 0.249731
28
+ 0.051706 0.262667 0.248502
29
+ 0.053748 0.263996 0.247215
30
+ 0.055866 0.265311 0.245919
31
+ 0.057875 0.266660 0.244616
32
+ 0.060100 0.268009 0.243307
33
+ 0.062187 0.269409 0.241996
34
+ 0.064327 0.270798 0.240637
35
+ 0.066497 0.272175 0.239299
36
+ 0.068755 0.273622 0.237932
37
+ 0.070942 0.275049 0.236554
38
+ 0.073221 0.276512 0.235157
39
+ 0.075425 0.277976 0.233707
40
+ 0.077700 0.279470 0.232294
41
+ 0.080057 0.280949 0.230838
42
+ 0.082458 0.282498 0.229363
43
+ 0.084825 0.284018 0.227899
44
+ 0.087266 0.285567 0.226403
45
+ 0.089667 0.287143 0.224852
46
+ 0.092140 0.288749 0.223347
47
+ 0.094646 0.290346 0.221782
48
+ 0.097096 0.291988 0.220236
49
+ 0.099654 0.293622 0.218640
50
+ 0.102230 0.295287 0.217041
51
+ 0.104793 0.296985 0.215409
52
+ 0.107470 0.298676 0.213777
53
+ 0.110156 0.300389 0.212136
54
+ 0.112837 0.302120 0.210447
55
+ 0.115516 0.303880 0.208757
56
+ 0.118284 0.305673 0.207066
57
+ 0.120993 0.307442 0.205325
58
+ 0.123792 0.309275 0.203598
59
+ 0.126631 0.311094 0.201814
60
+ 0.129494 0.312929 0.200033
61
+ 0.132376 0.314788 0.198253
62
+ 0.135276 0.316681 0.196473
63
+ 0.138225 0.318577 0.194648
64
+ 0.141186 0.320505 0.192783
65
+ 0.144156 0.322434 0.190916
66
+ 0.147160 0.324371 0.189051
67
+ 0.150213 0.326337 0.187163
68
+ 0.153249 0.328333 0.185265
69
+ 0.156384 0.330337 0.183306
70
+ 0.159467 0.332368 0.181356
71
+ 0.162642 0.334405 0.179413
72
+ 0.165783 0.336444 0.177459
73
+ 0.169027 0.338518 0.175442
74
+ 0.172225 0.340614 0.173435
75
+ 0.175480 0.342727 0.171412
76
+ 0.178780 0.344842 0.169404
77
+ 0.182060 0.346990 0.167337
78
+ 0.185437 0.349142 0.165228
79
+ 0.188781 0.351317 0.163184
80
+ 0.192156 0.353503 0.161080
81
+ 0.195568 0.355724 0.158957
82
+ 0.198997 0.357948 0.156820
83
+ 0.202468 0.360178 0.154657
84
+ 0.205986 0.362442 0.152483
85
+ 0.209484 0.364713 0.150328
86
+ 0.213016 0.367009 0.148118
87
+ 0.216616 0.369318 0.145929
88
+ 0.220209 0.371634 0.143691
89
+ 0.223809 0.373989 0.141459
90
+ 0.227468 0.376350 0.139161
91
+ 0.231142 0.378714 0.136910
92
+ 0.234852 0.381114 0.134651
93
+ 0.238545 0.383518 0.132330
94
+ 0.242301 0.385927 0.130041
95
+ 0.246068 0.388375 0.127672
96
+ 0.249860 0.390832 0.125329
97
+ 0.253703 0.393295 0.122929
98
+ 0.257542 0.395790 0.120564
99
+ 0.261416 0.398289 0.118223
100
+ 0.265305 0.400815 0.115807
101
+ 0.269241 0.403338 0.113406
102
+ 0.273173 0.405887 0.110961
103
+ 0.277137 0.408440 0.108466
104
+ 0.281106 0.411019 0.106063
105
+ 0.285114 0.413608 0.103590
106
+ 0.289163 0.416209 0.101069
107
+ 0.293200 0.418824 0.098595
108
+ 0.297285 0.421449 0.096053
109
+ 0.301360 0.424095 0.093539
110
+ 0.305491 0.426754 0.091056
111
+ 0.309622 0.429420 0.088500
112
+ 0.313763 0.432109 0.085887
113
+ 0.317922 0.434792 0.083368
114
+ 0.322105 0.437495 0.080803
115
+ 0.326291 0.440197 0.078177
116
+ 0.330510 0.442921 0.075610
117
+ 0.334753 0.445639 0.073076
118
+ 0.338987 0.448385 0.070419
119
+ 0.343240 0.451131 0.067837
120
+ 0.347507 0.453881 0.065191
121
+ 0.351769 0.456640 0.062616
122
+ 0.356070 0.459412 0.059979
123
+ 0.360352 0.462179 0.057240
124
+ 0.364663 0.464959 0.054560
125
+ 0.368986 0.467742 0.051861
126
+ 0.373301 0.470534 0.049256
127
+ 0.377633 0.473315 0.046421
128
+ 0.381965 0.476122 0.043591
129
+ 0.386304 0.478920 0.040856
130
+ 0.390664 0.481723 0.037974
131
+ 0.395023 0.484516 0.035128
132
+ 0.399383 0.487326 0.032152
133
+ 0.403781 0.490112 0.029408
134
+ 0.408178 0.492886 0.026707
135
+ 0.412614 0.495652 0.024056
136
+ 0.417067 0.498397 0.021465
137
+ 0.421549 0.501085 0.018947
138
+ 0.426095 0.503717 0.016522
139
+ 0.430705 0.506280 0.014213
140
+ 0.435380 0.508770 0.012069
141
+ 0.440118 0.511134 0.009836
142
+ 0.444948 0.513395 0.008018
143
+ 0.449855 0.515512 0.006400
144
+ 0.454853 0.517511 0.004995
145
+ 0.459913 0.519357 0.003804
146
+ 0.465053 0.521069 0.002822
147
+ 0.470259 0.522657 0.002035
148
+ 0.475507 0.524133 0.001421
149
+ 0.480776 0.525510 0.000958
150
+ 0.486083 0.526811 0.000620
151
+ 0.491414 0.528031 0.000381
152
+ 0.496720 0.529216 0.000218
153
+ 0.502049 0.530348 0.000111
154
+ 0.507361 0.531457 0.000043
155
+ 0.512663 0.532551 0.000003
156
+ 0.517961 0.533615 0.000000
157
+ 0.523241 0.534688 0.000000
158
+ 0.528509 0.535745 0.000000
159
+ 0.533754 0.536820 0.000000
160
+ 0.539005 0.537886 0.000029
161
+ 0.544236 0.538963 0.000099
162
+ 0.549459 0.540059 0.000217
163
+ 0.554670 0.541189 0.000406
164
+ 0.559874 0.542376 0.000699
165
+ 0.565056 0.543619 0.001135
166
+ 0.570241 0.544952 0.001764
167
+ 0.575420 0.546403 0.002640
168
+ 0.580580 0.547982 0.003823
169
+ 0.585734 0.549728 0.005374
170
+ 0.590862 0.551662 0.007353
171
+ 0.595986 0.553793 0.009808
172
+ 0.601094 0.556138 0.012976
173
+ 0.606188 0.558705 0.016516
174
+ 0.611281 0.561490 0.020622
175
+ 0.616359 0.564466 0.025312
176
+ 0.621429 0.567626 0.030589
177
+ 0.626506 0.570938 0.036640
178
+ 0.631590 0.574388 0.042914
179
+ 0.636685 0.577953 0.049454
180
+ 0.641786 0.581612 0.055798
181
+ 0.646915 0.585350 0.062181
182
+ 0.652063 0.589126 0.068579
183
+ 0.657238 0.592971 0.074882
184
+ 0.662436 0.596842 0.081284
185
+ 0.667662 0.600742 0.087686
186
+ 0.672916 0.604679 0.094084
187
+ 0.678195 0.608641 0.100504
188
+ 0.683502 0.612610 0.107034
189
+ 0.688844 0.616618 0.113549
190
+ 0.694198 0.620642 0.120066
191
+ 0.699592 0.624678 0.126672
192
+ 0.705011 0.628740 0.133329
193
+ 0.710454 0.632818 0.139978
194
+ 0.715924 0.636919 0.146703
195
+ 0.721405 0.641028 0.153459
196
+ 0.726919 0.645162 0.160245
197
+ 0.732454 0.649322 0.167133
198
+ 0.737994 0.653485 0.174005
199
+ 0.743560 0.657681 0.180933
200
+ 0.749122 0.661887 0.187985
201
+ 0.754697 0.666104 0.195046
202
+ 0.760253 0.670354 0.202202
203
+ 0.765795 0.674609 0.209494
204
+ 0.771305 0.678888 0.216918
205
+ 0.776768 0.683192 0.224443
206
+ 0.782170 0.687512 0.232198
207
+ 0.787499 0.691854 0.240082
208
+ 0.792748 0.696212 0.248206
209
+ 0.797901 0.700585 0.256474
210
+ 0.802959 0.704974 0.264955
211
+ 0.807921 0.709380 0.273639
212
+ 0.812784 0.713789 0.282474
213
+ 0.817562 0.718208 0.291446
214
+ 0.822265 0.722630 0.300527
215
+ 0.826893 0.727059 0.309741
216
+ 0.831467 0.731484 0.319001
217
+ 0.835988 0.735905 0.328323
218
+ 0.840478 0.740330 0.337682
219
+ 0.844934 0.744742 0.347071
220
+ 0.849371 0.749147 0.356457
221
+ 0.853781 0.753550 0.365844
222
+ 0.858185 0.757946 0.375222
223
+ 0.862580 0.762326 0.384598
224
+ 0.866951 0.766703 0.393964
225
+ 0.871321 0.771074 0.403320
226
+ 0.875678 0.775426 0.412657
227
+ 0.880022 0.779774 0.421953
228
+ 0.884362 0.784117 0.431261
229
+ 0.888688 0.788440 0.440525
230
+ 0.893001 0.792756 0.449783
231
+ 0.897308 0.797057 0.459016
232
+ 0.901596 0.801352 0.468216
233
+ 0.905879 0.805632 0.477402
234
+ 0.910146 0.809902 0.486560
235
+ 0.914400 0.814157 0.495690
236
+ 0.918636 0.818399 0.504801
237
+ 0.922866 0.822633 0.513879
238
+ 0.927074 0.826848 0.522923
239
+ 0.931274 0.831048 0.531937
240
+ 0.935456 0.835231 0.540917
241
+ 0.939624 0.839401 0.549871
242
+ 0.943773 0.843549 0.558780
243
+ 0.947906 0.847685 0.567668
244
+ 0.952018 0.851806 0.576519
245
+ 0.956120 0.855907 0.585323
246
+ 0.960197 0.859991 0.594086
247
+ 0.964253 0.864056 0.602815
248
+ 0.968298 0.868102 0.611507
249
+ 0.972320 0.872127 0.620161
250
+ 0.976317 0.876132 0.628770
251
+ 0.980302 0.880122 0.637342
252
+ 0.984266 0.884100 0.645876
253
+ 0.988205 0.888055 0.654380
254
+ 0.992132 0.892002 0.662858
255
+ 0.996034 0.895932 0.671299
256
+ 0.999927 0.899854 0.679717
@@ -0,0 +1,256 @@
1
+ 0.005193 0.098238 0.349842
2
+ 0.009065 0.104487 0.350933
3
+ 0.012963 0.110779 0.351992
4
+ 0.016530 0.116913 0.353070
5
+ 0.019936 0.122985 0.354120
6
+ 0.023189 0.129035 0.355182
7
+ 0.026291 0.135044 0.356210
8
+ 0.029245 0.140964 0.357239
9
+ 0.032053 0.146774 0.358239
10
+ 0.034853 0.152558 0.359233
11
+ 0.037449 0.158313 0.360216
12
+ 0.039845 0.163978 0.361187
13
+ 0.042104 0.169557 0.362151
14
+ 0.044069 0.175053 0.363084
15
+ 0.045905 0.180460 0.364007
16
+ 0.047665 0.185844 0.364915
17
+ 0.049378 0.191076 0.365810
18
+ 0.050795 0.196274 0.366684
19
+ 0.052164 0.201323 0.367524
20
+ 0.053471 0.206357 0.368370
21
+ 0.054721 0.211234 0.369184
22
+ 0.055928 0.216046 0.369974
23
+ 0.057033 0.220754 0.370750
24
+ 0.058032 0.225340 0.371509
25
+ 0.059164 0.229842 0.372252
26
+ 0.060167 0.234299 0.372978
27
+ 0.061052 0.238625 0.373691
28
+ 0.062060 0.242888 0.374386
29
+ 0.063071 0.247085 0.375050
30
+ 0.063982 0.251213 0.375709
31
+ 0.064936 0.255264 0.376362
32
+ 0.065903 0.259257 0.376987
33
+ 0.066899 0.263188 0.377594
34
+ 0.067921 0.267056 0.378191
35
+ 0.069002 0.270922 0.378774
36
+ 0.070001 0.274713 0.379342
37
+ 0.071115 0.278497 0.379895
38
+ 0.072192 0.282249 0.380434
39
+ 0.073440 0.285942 0.380957
40
+ 0.074595 0.289653 0.381452
41
+ 0.075833 0.293321 0.381922
42
+ 0.077136 0.296996 0.382376
43
+ 0.078517 0.300622 0.382814
44
+ 0.079984 0.304252 0.383224
45
+ 0.081553 0.307858 0.383598
46
+ 0.083082 0.311461 0.383936
47
+ 0.084778 0.315043 0.384240
48
+ 0.086503 0.318615 0.384506
49
+ 0.088353 0.322167 0.384731
50
+ 0.090281 0.325685 0.384910
51
+ 0.092304 0.329220 0.385040
52
+ 0.094462 0.332712 0.385116
53
+ 0.096618 0.336161 0.385134
54
+ 0.099015 0.339621 0.385090
55
+ 0.101481 0.343036 0.384981
56
+ 0.104078 0.346410 0.384801
57
+ 0.106842 0.349774 0.384548
58
+ 0.109695 0.353098 0.384217
59
+ 0.112655 0.356391 0.383807
60
+ 0.115748 0.359638 0.383310
61
+ 0.118992 0.362849 0.382713
62
+ 0.122320 0.366030 0.382026
63
+ 0.125889 0.369160 0.381259
64
+ 0.129519 0.372238 0.380378
65
+ 0.133298 0.375282 0.379395
66
+ 0.137212 0.378282 0.378315
67
+ 0.141260 0.381240 0.377135
68
+ 0.145432 0.384130 0.375840
69
+ 0.149706 0.386975 0.374449
70
+ 0.154073 0.389777 0.372934
71
+ 0.158620 0.392531 0.371320
72
+ 0.163246 0.395237 0.369609
73
+ 0.167952 0.397889 0.367784
74
+ 0.172788 0.400496 0.365867
75
+ 0.177752 0.403041 0.363833
76
+ 0.182732 0.405551 0.361714
77
+ 0.187886 0.408003 0.359484
78
+ 0.193050 0.410427 0.357177
79
+ 0.198310 0.412798 0.354767
80
+ 0.203676 0.415116 0.352253
81
+ 0.209075 0.417412 0.349677
82
+ 0.214555 0.419661 0.347019
83
+ 0.220112 0.421864 0.344261
84
+ 0.225707 0.424049 0.341459
85
+ 0.231362 0.426197 0.338572
86
+ 0.237075 0.428325 0.335634
87
+ 0.242795 0.430418 0.332635
88
+ 0.248617 0.432493 0.329571
89
+ 0.254452 0.434529 0.326434
90
+ 0.260320 0.436556 0.323285
91
+ 0.266241 0.438555 0.320085
92
+ 0.272168 0.440541 0.316831
93
+ 0.278171 0.442524 0.313552
94
+ 0.284175 0.444484 0.310243
95
+ 0.290214 0.446420 0.306889
96
+ 0.296294 0.448357 0.303509
97
+ 0.302379 0.450282 0.300122
98
+ 0.308517 0.452205 0.296721
99
+ 0.314648 0.454107 0.293279
100
+ 0.320834 0.456006 0.289841
101
+ 0.327007 0.457900 0.286377
102
+ 0.333235 0.459794 0.282937
103
+ 0.339469 0.461685 0.279468
104
+ 0.345703 0.463563 0.275998
105
+ 0.351976 0.465440 0.272492
106
+ 0.358277 0.467331 0.269037
107
+ 0.364589 0.469213 0.265543
108
+ 0.370922 0.471085 0.262064
109
+ 0.377291 0.472952 0.258588
110
+ 0.383675 0.474842 0.255131
111
+ 0.390070 0.476711 0.251665
112
+ 0.396505 0.478587 0.248212
113
+ 0.402968 0.480466 0.244731
114
+ 0.409455 0.482351 0.241314
115
+ 0.415967 0.484225 0.237895
116
+ 0.422507 0.486113 0.234493
117
+ 0.429094 0.488011 0.231096
118
+ 0.435714 0.489890 0.227728
119
+ 0.442365 0.491795 0.224354
120
+ 0.449052 0.493684 0.221074
121
+ 0.455774 0.495585 0.217774
122
+ 0.462539 0.497497 0.214518
123
+ 0.469368 0.499393 0.211318
124
+ 0.476221 0.501314 0.208148
125
+ 0.483123 0.503216 0.205037
126
+ 0.490081 0.505137 0.201976
127
+ 0.497089 0.507058 0.198994
128
+ 0.504153 0.508984 0.196118
129
+ 0.511253 0.510898 0.193296
130
+ 0.518425 0.512822 0.190566
131
+ 0.525637 0.514746 0.187990
132
+ 0.532907 0.516662 0.185497
133
+ 0.540225 0.518584 0.183099
134
+ 0.547599 0.520486 0.180884
135
+ 0.555024 0.522391 0.178854
136
+ 0.562506 0.524293 0.176964
137
+ 0.570016 0.526186 0.175273
138
+ 0.577582 0.528058 0.173775
139
+ 0.585199 0.529927 0.172493
140
+ 0.592846 0.531777 0.171449
141
+ 0.600520 0.533605 0.170648
142
+ 0.608240 0.535423 0.170104
143
+ 0.615972 0.537231 0.169826
144
+ 0.623739 0.539002 0.169814
145
+ 0.631513 0.540752 0.170075
146
+ 0.639301 0.542484 0.170622
147
+ 0.647098 0.544183 0.171465
148
+ 0.654889 0.545863 0.172603
149
+ 0.662691 0.547503 0.174044
150
+ 0.670477 0.549127 0.175747
151
+ 0.678244 0.550712 0.177803
152
+ 0.685995 0.552274 0.180056
153
+ 0.693720 0.553797 0.182610
154
+ 0.701421 0.555294 0.185478
155
+ 0.709098 0.556772 0.188546
156
+ 0.716731 0.558205 0.191851
157
+ 0.724322 0.559628 0.195408
158
+ 0.731878 0.561011 0.199174
159
+ 0.739393 0.562386 0.203179
160
+ 0.746850 0.563725 0.207375
161
+ 0.754268 0.565033 0.211761
162
+ 0.761629 0.566344 0.216322
163
+ 0.768942 0.567630 0.221045
164
+ 0.776208 0.568899 0.225930
165
+ 0.783416 0.570162 0.230962
166
+ 0.790568 0.571421 0.236160
167
+ 0.797665 0.572682 0.241490
168
+ 0.804709 0.573928 0.246955
169
+ 0.811692 0.575187 0.252572
170
+ 0.818610 0.576462 0.258303
171
+ 0.825472 0.577725 0.264197
172
+ 0.832272 0.579026 0.270211
173
+ 0.838999 0.580339 0.276353
174
+ 0.845657 0.581672 0.282631
175
+ 0.852247 0.583037 0.289036
176
+ 0.858747 0.584440 0.295572
177
+ 0.865168 0.585882 0.302255
178
+ 0.871505 0.587352 0.309112
179
+ 0.877741 0.588873 0.316081
180
+ 0.883878 0.590450 0.323195
181
+ 0.889900 0.592087 0.330454
182
+ 0.895809 0.593765 0.337865
183
+ 0.901590 0.595507 0.345429
184
+ 0.907242 0.597319 0.353142
185
+ 0.912746 0.599191 0.360986
186
+ 0.918103 0.601126 0.368999
187
+ 0.923300 0.603137 0.377139
188
+ 0.928323 0.605212 0.385404
189
+ 0.933176 0.607369 0.393817
190
+ 0.937850 0.609582 0.402345
191
+ 0.942332 0.611867 0.411006
192
+ 0.946612 0.614218 0.419767
193
+ 0.950697 0.616649 0.428624
194
+ 0.954574 0.619137 0.437582
195
+ 0.958244 0.621671 0.446604
196
+ 0.961696 0.624282 0.455702
197
+ 0.964943 0.626934 0.464860
198
+ 0.967983 0.629639 0.474057
199
+ 0.970804 0.632394 0.483290
200
+ 0.973424 0.635183 0.492547
201
+ 0.975835 0.638012 0.501826
202
+ 0.978052 0.640868 0.511090
203
+ 0.980079 0.643752 0.520350
204
+ 0.981918 0.646664 0.529602
205
+ 0.983574 0.649590 0.538819
206
+ 0.985066 0.652522 0.547998
207
+ 0.986392 0.655470 0.557142
208
+ 0.987567 0.658422 0.566226
209
+ 0.988596 0.661378 0.575265
210
+ 0.989496 0.664329 0.584246
211
+ 0.990268 0.667280 0.593174
212
+ 0.990926 0.670230 0.602031
213
+ 0.991479 0.673165 0.610835
214
+ 0.991935 0.676091 0.619575
215
+ 0.992305 0.679007 0.628251
216
+ 0.992595 0.681914 0.636869
217
+ 0.992813 0.684815 0.645423
218
+ 0.992967 0.687705 0.653934
219
+ 0.993064 0.690579 0.662398
220
+ 0.993111 0.693451 0.670810
221
+ 0.993112 0.696314 0.679177
222
+ 0.993074 0.699161 0.687519
223
+ 0.993002 0.702006 0.695831
224
+ 0.992900 0.704852 0.704114
225
+ 0.992771 0.707689 0.712380
226
+ 0.992619 0.710530 0.720639
227
+ 0.992447 0.713366 0.728892
228
+ 0.992258 0.716210 0.737146
229
+ 0.992054 0.719049 0.745403
230
+ 0.991837 0.721893 0.753673
231
+ 0.991607 0.724754 0.761959
232
+ 0.991367 0.727614 0.770270
233
+ 0.991116 0.730489 0.778606
234
+ 0.990855 0.733373 0.786976
235
+ 0.990586 0.736265 0.795371
236
+ 0.990307 0.739184 0.803810
237
+ 0.990018 0.742102 0.812285
238
+ 0.989720 0.745039 0.820804
239
+ 0.989411 0.747997 0.829372
240
+ 0.989089 0.750968 0.837979
241
+ 0.988754 0.753949 0.846627
242
+ 0.988406 0.756949 0.855332
243
+ 0.988046 0.759964 0.864078
244
+ 0.987672 0.762996 0.872864
245
+ 0.987280 0.766047 0.881699
246
+ 0.986868 0.769105 0.890573
247
+ 0.986435 0.772184 0.899493
248
+ 0.985980 0.775272 0.908448
249
+ 0.985503 0.778378 0.917444
250
+ 0.985002 0.781495 0.926468
251
+ 0.984473 0.784624 0.935531
252
+ 0.983913 0.787757 0.944626
253
+ 0.983322 0.790905 0.953748
254
+ 0.982703 0.794068 0.962895
255
+ 0.982048 0.797228 0.972070
256
+ 0.981354 0.800406 0.981267