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.108778 0.055655 0.202533
2
+ 0.115526 0.057566 0.204666
3
+ 0.122281 0.059414 0.206808
4
+ 0.129076 0.060986 0.208934
5
+ 0.135800 0.062796 0.211102
6
+ 0.142538 0.064494 0.213263
7
+ 0.149225 0.066291 0.215466
8
+ 0.155910 0.068179 0.217680
9
+ 0.162572 0.070070 0.219909
10
+ 0.169250 0.072039 0.222132
11
+ 0.175865 0.074123 0.224370
12
+ 0.182539 0.076185 0.226668
13
+ 0.189227 0.078381 0.228945
14
+ 0.195898 0.080712 0.231236
15
+ 0.202555 0.083077 0.233507
16
+ 0.209225 0.085520 0.235841
17
+ 0.215899 0.088145 0.238138
18
+ 0.222532 0.090813 0.240435
19
+ 0.229152 0.093538 0.242755
20
+ 0.235765 0.096383 0.245059
21
+ 0.242320 0.099393 0.247382
22
+ 0.248868 0.102480 0.249661
23
+ 0.255358 0.105669 0.251966
24
+ 0.261789 0.108959 0.254235
25
+ 0.268162 0.112373 0.256473
26
+ 0.274480 0.115865 0.258714
27
+ 0.280712 0.119438 0.260918
28
+ 0.286877 0.123106 0.263107
29
+ 0.292956 0.126905 0.265246
30
+ 0.298944 0.130831 0.267354
31
+ 0.304814 0.134799 0.269469
32
+ 0.310590 0.138813 0.271495
33
+ 0.316234 0.142946 0.273522
34
+ 0.321745 0.147130 0.275490
35
+ 0.327139 0.151377 0.277404
36
+ 0.332420 0.155712 0.279286
37
+ 0.337535 0.160034 0.281090
38
+ 0.342521 0.164485 0.282891
39
+ 0.347357 0.168939 0.284599
40
+ 0.352025 0.173392 0.286270
41
+ 0.356571 0.177929 0.287899
42
+ 0.360933 0.182404 0.289483
43
+ 0.365162 0.186955 0.290997
44
+ 0.369232 0.191481 0.292453
45
+ 0.373135 0.196030 0.293856
46
+ 0.376897 0.200529 0.295212
47
+ 0.380489 0.205061 0.296524
48
+ 0.383927 0.209552 0.297763
49
+ 0.387207 0.214030 0.298968
50
+ 0.390346 0.218465 0.300103
51
+ 0.393336 0.222874 0.301189
52
+ 0.396184 0.227229 0.302230
53
+ 0.398880 0.231556 0.303226
54
+ 0.401448 0.235823 0.304178
55
+ 0.403881 0.240022 0.305089
56
+ 0.406184 0.244180 0.305956
57
+ 0.408353 0.248320 0.306761
58
+ 0.410418 0.252356 0.307519
59
+ 0.412356 0.256329 0.308260
60
+ 0.414177 0.260265 0.308972
61
+ 0.415900 0.264133 0.309629
62
+ 0.417529 0.267904 0.310255
63
+ 0.419053 0.271636 0.310847
64
+ 0.420485 0.275322 0.311394
65
+ 0.421833 0.278921 0.311914
66
+ 0.423106 0.282459 0.312421
67
+ 0.424307 0.285899 0.312908
68
+ 0.425437 0.289322 0.313370
69
+ 0.426489 0.292648 0.313802
70
+ 0.427496 0.295924 0.314204
71
+ 0.428428 0.299149 0.314587
72
+ 0.429311 0.302282 0.314958
73
+ 0.430146 0.305395 0.315319
74
+ 0.430936 0.308422 0.315662
75
+ 0.431687 0.311393 0.315985
76
+ 0.432391 0.314314 0.316289
77
+ 0.433049 0.317186 0.316579
78
+ 0.433675 0.320010 0.316857
79
+ 0.434281 0.322774 0.317126
80
+ 0.434865 0.325469 0.317385
81
+ 0.435415 0.328146 0.317635
82
+ 0.435936 0.330762 0.317876
83
+ 0.436436 0.333356 0.318109
84
+ 0.436919 0.335884 0.318335
85
+ 0.437385 0.338374 0.318554
86
+ 0.437833 0.340841 0.318766
87
+ 0.438259 0.343266 0.318973
88
+ 0.438670 0.345642 0.319175
89
+ 0.439075 0.348006 0.319373
90
+ 0.439475 0.350335 0.319566
91
+ 0.439863 0.352625 0.319757
92
+ 0.440237 0.354906 0.319944
93
+ 0.440602 0.357150 0.320129
94
+ 0.440963 0.359361 0.320309
95
+ 0.441325 0.361568 0.320487
96
+ 0.441682 0.363746 0.320660
97
+ 0.442032 0.365923 0.320830
98
+ 0.442374 0.368072 0.320998
99
+ 0.442712 0.370209 0.321164
100
+ 0.443048 0.372339 0.321329
101
+ 0.443383 0.374475 0.321495
102
+ 0.443719 0.376594 0.321663
103
+ 0.444055 0.378695 0.321832
104
+ 0.444391 0.380813 0.322002
105
+ 0.444724 0.382916 0.322173
106
+ 0.445055 0.385017 0.322344
107
+ 0.445385 0.387129 0.322515
108
+ 0.445719 0.389257 0.322685
109
+ 0.446060 0.391385 0.322855
110
+ 0.446406 0.393511 0.323025
111
+ 0.446753 0.395666 0.323195
112
+ 0.447098 0.397822 0.323366
113
+ 0.447446 0.399989 0.323539
114
+ 0.447801 0.402176 0.323715
115
+ 0.448166 0.404392 0.323893
116
+ 0.448537 0.406631 0.324074
117
+ 0.448910 0.408885 0.324259
118
+ 0.449285 0.411168 0.324446
119
+ 0.449664 0.413480 0.324636
120
+ 0.450050 0.415816 0.324829
121
+ 0.450445 0.418183 0.325025
122
+ 0.450847 0.420588 0.325225
123
+ 0.451256 0.423025 0.325429
124
+ 0.451673 0.425510 0.325638
125
+ 0.452101 0.428026 0.325850
126
+ 0.452533 0.430579 0.326067
127
+ 0.452968 0.433171 0.326289
128
+ 0.453411 0.435816 0.326516
129
+ 0.453869 0.438491 0.326748
130
+ 0.454341 0.441218 0.326986
131
+ 0.454818 0.444000 0.327229
132
+ 0.455299 0.446815 0.327478
133
+ 0.455789 0.449685 0.327733
134
+ 0.456291 0.452609 0.327994
135
+ 0.456804 0.455568 0.328263
136
+ 0.457327 0.458583 0.328539
137
+ 0.457861 0.461653 0.328824
138
+ 0.458407 0.464774 0.329115
139
+ 0.458966 0.467937 0.329412
140
+ 0.459531 0.471166 0.329715
141
+ 0.460099 0.474440 0.330023
142
+ 0.460686 0.477763 0.330339
143
+ 0.461293 0.481140 0.330665
144
+ 0.461903 0.484573 0.331002
145
+ 0.462519 0.488074 0.331356
146
+ 0.463152 0.491618 0.331728
147
+ 0.463811 0.495207 0.332117
148
+ 0.464479 0.498858 0.332514
149
+ 0.465141 0.502557 0.332920
150
+ 0.465827 0.506314 0.333339
151
+ 0.466539 0.510131 0.333776
152
+ 0.467261 0.514007 0.334234
153
+ 0.467988 0.517929 0.334715
154
+ 0.468743 0.521895 0.335212
155
+ 0.469518 0.525937 0.335721
156
+ 0.470300 0.530023 0.336254
157
+ 0.471104 0.534160 0.336829
158
+ 0.471932 0.538367 0.337428
159
+ 0.472768 0.542615 0.338044
160
+ 0.473633 0.546918 0.338708
161
+ 0.474536 0.551278 0.339411
162
+ 0.475455 0.555685 0.340134
163
+ 0.476391 0.560166 0.340900
164
+ 0.477360 0.564685 0.341710
165
+ 0.478360 0.569264 0.342572
166
+ 0.479397 0.573901 0.343470
167
+ 0.480458 0.578593 0.344418
168
+ 0.481561 0.583339 0.345435
169
+ 0.482700 0.588139 0.346506
170
+ 0.483876 0.593008 0.347650
171
+ 0.485099 0.597917 0.348847
172
+ 0.486373 0.602892 0.350125
173
+ 0.487701 0.607926 0.351468
174
+ 0.489062 0.613003 0.352905
175
+ 0.490498 0.618152 0.354422
176
+ 0.491983 0.623358 0.356034
177
+ 0.493526 0.628617 0.357743
178
+ 0.495149 0.633936 0.359539
179
+ 0.496830 0.639308 0.361454
180
+ 0.498605 0.644738 0.363477
181
+ 0.500440 0.650235 0.365629
182
+ 0.502371 0.655788 0.367897
183
+ 0.504399 0.661395 0.370299
184
+ 0.506501 0.667058 0.372842
185
+ 0.508726 0.672788 0.375528
186
+ 0.511037 0.678564 0.378368
187
+ 0.513476 0.684397 0.381369
188
+ 0.516016 0.690292 0.384515
189
+ 0.518704 0.696245 0.387842
190
+ 0.521498 0.702241 0.391355
191
+ 0.524441 0.708298 0.395035
192
+ 0.527523 0.714398 0.398904
193
+ 0.530754 0.720554 0.402978
194
+ 0.534134 0.726757 0.407245
195
+ 0.537689 0.733007 0.411718
196
+ 0.541390 0.739301 0.416407
197
+ 0.545284 0.745624 0.421301
198
+ 0.549350 0.751994 0.426425
199
+ 0.553591 0.758396 0.431785
200
+ 0.558029 0.764828 0.437355
201
+ 0.562672 0.771287 0.443154
202
+ 0.567499 0.777766 0.449192
203
+ 0.572533 0.784264 0.455458
204
+ 0.577761 0.790766 0.461960
205
+ 0.583208 0.797279 0.468698
206
+ 0.588859 0.803795 0.475672
207
+ 0.594728 0.810298 0.482864
208
+ 0.600800 0.816794 0.490295
209
+ 0.607088 0.823263 0.497951
210
+ 0.613562 0.829707 0.505797
211
+ 0.620261 0.836107 0.513885
212
+ 0.627137 0.842465 0.522147
213
+ 0.634216 0.848762 0.530620
214
+ 0.641462 0.854998 0.539261
215
+ 0.648897 0.861152 0.548080
216
+ 0.656490 0.867225 0.557048
217
+ 0.664227 0.873205 0.566145
218
+ 0.672109 0.879076 0.575374
219
+ 0.680107 0.884836 0.584706
220
+ 0.688228 0.890467 0.594124
221
+ 0.696435 0.895968 0.603616
222
+ 0.704717 0.901322 0.613144
223
+ 0.713058 0.906528 0.622715
224
+ 0.721442 0.911571 0.632291
225
+ 0.729858 0.916450 0.641853
226
+ 0.738268 0.921155 0.651389
227
+ 0.746673 0.925687 0.660865
228
+ 0.755051 0.930036 0.670286
229
+ 0.763373 0.934196 0.679600
230
+ 0.771643 0.938176 0.688828
231
+ 0.779827 0.941966 0.697918
232
+ 0.787921 0.945567 0.706885
233
+ 0.795910 0.948980 0.715699
234
+ 0.803783 0.952208 0.724343
235
+ 0.811525 0.955260 0.732821
236
+ 0.819121 0.958130 0.741107
237
+ 0.826578 0.960824 0.749209
238
+ 0.833876 0.963348 0.757116
239
+ 0.841005 0.965709 0.764819
240
+ 0.847966 0.967920 0.772309
241
+ 0.854761 0.969972 0.779592
242
+ 0.861374 0.971887 0.786671
243
+ 0.867816 0.973662 0.793533
244
+ 0.874074 0.975308 0.800184
245
+ 0.880158 0.976838 0.806631
246
+ 0.886073 0.978251 0.812871
247
+ 0.891812 0.979566 0.818919
248
+ 0.897389 0.980779 0.824782
249
+ 0.902804 0.981908 0.830467
250
+ 0.908070 0.982952 0.835977
251
+ 0.913190 0.983927 0.841331
252
+ 0.918180 0.984839 0.846535
253
+ 0.923052 0.985691 0.851612
254
+ 0.927809 0.986497 0.856572
255
+ 0.932476 0.987261 0.861430
256
+ 0.937066 0.987985 0.866202
@@ -0,0 +1,256 @@
1
+ 0.000063 0.000005 0.000036
2
+ 0.007290 0.007204 0.006548
3
+ 0.014710 0.014597 0.013245
4
+ 0.021935 0.021794 0.019755
5
+ 0.029159 0.028991 0.026252
6
+ 0.036570 0.036375 0.032748
7
+ 0.043586 0.043359 0.039417
8
+ 0.050168 0.049959 0.045556
9
+ 0.056203 0.055961 0.051274
10
+ 0.061712 0.061463 0.056643
11
+ 0.066992 0.066746 0.061506
12
+ 0.071921 0.071694 0.066226
13
+ 0.076552 0.076296 0.070642
14
+ 0.081056 0.080777 0.074828
15
+ 0.085276 0.085021 0.078791
16
+ 0.089398 0.089110 0.082660
17
+ 0.093274 0.092973 0.086288
18
+ 0.097120 0.096859 0.089825
19
+ 0.101038 0.100786 0.093141
20
+ 0.104942 0.104672 0.096482
21
+ 0.108926 0.108623 0.099864
22
+ 0.112921 0.112617 0.103237
23
+ 0.116855 0.116562 0.106586
24
+ 0.120820 0.120496 0.109910
25
+ 0.124835 0.124484 0.113213
26
+ 0.128844 0.128498 0.116492
27
+ 0.132892 0.132513 0.119746
28
+ 0.136918 0.136502 0.122995
29
+ 0.140991 0.140564 0.126296
30
+ 0.145046 0.144601 0.129527
31
+ 0.149082 0.148613 0.132748
32
+ 0.153138 0.152668 0.135908
33
+ 0.157222 0.156756 0.139098
34
+ 0.161345 0.160812 0.142280
35
+ 0.165385 0.164875 0.145443
36
+ 0.169533 0.168986 0.148500
37
+ 0.173607 0.173041 0.151594
38
+ 0.177744 0.177142 0.154657
39
+ 0.181809 0.181208 0.157690
40
+ 0.185960 0.185342 0.160696
41
+ 0.190051 0.189414 0.163707
42
+ 0.194194 0.193519 0.166642
43
+ 0.198278 0.197608 0.169573
44
+ 0.202395 0.201692 0.172431
45
+ 0.206547 0.205817 0.175300
46
+ 0.210638 0.209903 0.178153
47
+ 0.214745 0.214009 0.180907
48
+ 0.218872 0.218103 0.183680
49
+ 0.222990 0.222187 0.186423
50
+ 0.227091 0.226298 0.189124
51
+ 0.231200 0.230358 0.191783
52
+ 0.235309 0.234470 0.194450
53
+ 0.239393 0.238528 0.197043
54
+ 0.243470 0.242609 0.199581
55
+ 0.247581 0.246687 0.202127
56
+ 0.251671 0.250761 0.204658
57
+ 0.255736 0.254845 0.207134
58
+ 0.259822 0.258900 0.209562
59
+ 0.263900 0.262954 0.211994
60
+ 0.267938 0.266992 0.214362
61
+ 0.271997 0.271056 0.216724
62
+ 0.276087 0.275096 0.219036
63
+ 0.280118 0.279144 0.221330
64
+ 0.284164 0.283175 0.223587
65
+ 0.288207 0.287188 0.225833
66
+ 0.292251 0.291232 0.228039
67
+ 0.296286 0.295240 0.230190
68
+ 0.300312 0.299273 0.232366
69
+ 0.304341 0.303270 0.234504
70
+ 0.308370 0.307283 0.236608
71
+ 0.312378 0.311297 0.238663
72
+ 0.316418 0.315302 0.240716
73
+ 0.320441 0.319304 0.242756
74
+ 0.324438 0.323304 0.244764
75
+ 0.328462 0.327290 0.246769
76
+ 0.332488 0.331280 0.248761
77
+ 0.336486 0.335297 0.250701
78
+ 0.340511 0.339286 0.252648
79
+ 0.344521 0.343272 0.254580
80
+ 0.348549 0.347265 0.256467
81
+ 0.352572 0.351248 0.258360
82
+ 0.356605 0.355248 0.260248
83
+ 0.360620 0.359220 0.262115
84
+ 0.364666 0.363212 0.263983
85
+ 0.368721 0.367205 0.265824
86
+ 0.372762 0.371195 0.267635
87
+ 0.376835 0.375195 0.269496
88
+ 0.380907 0.379198 0.271303
89
+ 0.384975 0.383208 0.273127
90
+ 0.389080 0.387201 0.274933
91
+ 0.393179 0.391225 0.276752
92
+ 0.397300 0.395235 0.278557
93
+ 0.401442 0.399243 0.280346
94
+ 0.405602 0.403280 0.282175
95
+ 0.409774 0.407305 0.283967
96
+ 0.413963 0.411339 0.285769
97
+ 0.418173 0.415382 0.287587
98
+ 0.422409 0.419437 0.289423
99
+ 0.426680 0.423481 0.291250
100
+ 0.430975 0.427557 0.293070
101
+ 0.435297 0.431630 0.294913
102
+ 0.439639 0.435704 0.296782
103
+ 0.444025 0.439786 0.298639
104
+ 0.448436 0.443882 0.300514
105
+ 0.452890 0.447974 0.302404
106
+ 0.457371 0.452098 0.304323
107
+ 0.461904 0.456207 0.306269
108
+ 0.466474 0.460328 0.308200
109
+ 0.471093 0.464479 0.310185
110
+ 0.475755 0.468613 0.312149
111
+ 0.480458 0.472760 0.314179
112
+ 0.485214 0.476920 0.316230
113
+ 0.490030 0.481079 0.318289
114
+ 0.494902 0.485249 0.320397
115
+ 0.499813 0.489423 0.322518
116
+ 0.504804 0.493606 0.324659
117
+ 0.509839 0.497800 0.326847
118
+ 0.514941 0.501978 0.329089
119
+ 0.520096 0.506153 0.331326
120
+ 0.525329 0.510340 0.333638
121
+ 0.530619 0.514527 0.335961
122
+ 0.535971 0.518703 0.338327
123
+ 0.541388 0.522867 0.340746
124
+ 0.546882 0.527027 0.343200
125
+ 0.552434 0.531166 0.345677
126
+ 0.558042 0.535291 0.348217
127
+ 0.563732 0.539401 0.350797
128
+ 0.569463 0.543493 0.353400
129
+ 0.575270 0.547552 0.356064
130
+ 0.581129 0.551588 0.358745
131
+ 0.587044 0.555576 0.361493
132
+ 0.593020 0.559543 0.364264
133
+ 0.599036 0.563464 0.367083
134
+ 0.605096 0.567331 0.369934
135
+ 0.611203 0.571142 0.372824
136
+ 0.617339 0.574902 0.375753
137
+ 0.623515 0.578604 0.378712
138
+ 0.629702 0.582236 0.381703
139
+ 0.635919 0.585808 0.384716
140
+ 0.642146 0.589285 0.387761
141
+ 0.648375 0.592706 0.390839
142
+ 0.654606 0.596023 0.393922
143
+ 0.660832 0.599263 0.397028
144
+ 0.667046 0.602403 0.400161
145
+ 0.673242 0.605450 0.403304
146
+ 0.679400 0.608411 0.406452
147
+ 0.685537 0.611258 0.409610
148
+ 0.691626 0.613996 0.412779
149
+ 0.697668 0.616646 0.415935
150
+ 0.703665 0.619184 0.419105
151
+ 0.709603 0.621600 0.422261
152
+ 0.715479 0.623928 0.425434
153
+ 0.721279 0.626132 0.428588
154
+ 0.727018 0.628240 0.431748
155
+ 0.732685 0.630234 0.434886
156
+ 0.738264 0.632122 0.438021
157
+ 0.743772 0.633913 0.441135
158
+ 0.749190 0.635592 0.444261
159
+ 0.754538 0.637182 0.447354
160
+ 0.759785 0.638671 0.450458
161
+ 0.764961 0.640074 0.453543
162
+ 0.770042 0.641377 0.456625
163
+ 0.775042 0.642610 0.459703
164
+ 0.779960 0.643752 0.462766
165
+ 0.784800 0.644824 0.465838
166
+ 0.789553 0.645828 0.468920
167
+ 0.794231 0.646771 0.471996
168
+ 0.798829 0.647646 0.475078
169
+ 0.803353 0.648471 0.478158
170
+ 0.807810 0.649254 0.481257
171
+ 0.812197 0.649987 0.484375
172
+ 0.816524 0.650686 0.487527
173
+ 0.820782 0.651357 0.490694
174
+ 0.824986 0.652004 0.493880
175
+ 0.829142 0.652627 0.497108
176
+ 0.833237 0.653245 0.500370
177
+ 0.837292 0.653864 0.503681
178
+ 0.841297 0.654478 0.507039
179
+ 0.845261 0.655103 0.510449
180
+ 0.849192 0.655752 0.513925
181
+ 0.853082 0.656418 0.517457
182
+ 0.856942 0.657111 0.521050
183
+ 0.860774 0.657841 0.524721
184
+ 0.864578 0.658606 0.528473
185
+ 0.868361 0.659428 0.532304
186
+ 0.872114 0.660303 0.536217
187
+ 0.875845 0.661242 0.540221
188
+ 0.879553 0.662254 0.544323
189
+ 0.883246 0.663333 0.548526
190
+ 0.886919 0.664485 0.552814
191
+ 0.890568 0.665734 0.557222
192
+ 0.894201 0.667068 0.561722
193
+ 0.897809 0.668505 0.566329
194
+ 0.901394 0.670040 0.571039
195
+ 0.904958 0.671670 0.575872
196
+ 0.908492 0.673419 0.580791
197
+ 0.911997 0.675275 0.585829
198
+ 0.915467 0.677253 0.590958
199
+ 0.918906 0.679333 0.596195
200
+ 0.922312 0.681539 0.601525
201
+ 0.925669 0.683866 0.606956
202
+ 0.928977 0.686316 0.612460
203
+ 0.932238 0.688886 0.618058
204
+ 0.935448 0.691564 0.623735
205
+ 0.938597 0.694360 0.629468
206
+ 0.941681 0.697278 0.635273
207
+ 0.944702 0.700307 0.641130
208
+ 0.947647 0.703444 0.647044
209
+ 0.950518 0.706687 0.652983
210
+ 0.953313 0.710026 0.658964
211
+ 0.956025 0.713462 0.664967
212
+ 0.958650 0.716995 0.670991
213
+ 0.961187 0.720602 0.677020
214
+ 0.963634 0.724299 0.683043
215
+ 0.965991 0.728067 0.689068
216
+ 0.968259 0.731909 0.695067
217
+ 0.970426 0.735806 0.701054
218
+ 0.972506 0.739776 0.707015
219
+ 0.974483 0.743783 0.712936
220
+ 0.976371 0.747846 0.718828
221
+ 0.978164 0.751946 0.724680
222
+ 0.979870 0.756084 0.730482
223
+ 0.981480 0.760255 0.736231
224
+ 0.983000 0.764455 0.741938
225
+ 0.984437 0.768675 0.747593
226
+ 0.985784 0.772921 0.753181
227
+ 0.987052 0.777189 0.758725
228
+ 0.988234 0.781462 0.764206
229
+ 0.989346 0.785749 0.769631
230
+ 0.990378 0.790041 0.775001
231
+ 0.991341 0.794346 0.780317
232
+ 0.992236 0.798651 0.785580
233
+ 0.993066 0.802958 0.790784
234
+ 0.993829 0.807273 0.795937
235
+ 0.994533 0.811585 0.801043
236
+ 0.995180 0.815897 0.806101
237
+ 0.995775 0.820203 0.811110
238
+ 0.996319 0.824512 0.816079
239
+ 0.996814 0.828824 0.821000
240
+ 0.997265 0.833124 0.825884
241
+ 0.997672 0.837430 0.830736
242
+ 0.998039 0.841727 0.835548
243
+ 0.998368 0.846020 0.840333
244
+ 0.998661 0.850316 0.845083
245
+ 0.998919 0.854608 0.849810
246
+ 0.999146 0.858895 0.854509
247
+ 0.999342 0.863188 0.859187
248
+ 0.999510 0.867470 0.863851
249
+ 0.999652 0.871758 0.868494
250
+ 0.999769 0.876039 0.873116
251
+ 0.999864 0.880320 0.877730
252
+ 0.999937 0.884606 0.882330
253
+ 0.999989 0.888890 0.886927
254
+ 1.000000 0.893169 0.891512
255
+ 1.000000 0.897457 0.896094
256
+ 1.000000 0.901739 0.900670