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.870438 0.849775 0.999921
2
+ 0.859835 0.842322 0.995324
3
+ 0.849229 0.834876 0.990733
4
+ 0.838624 0.827441 0.986142
5
+ 0.828027 0.820014 0.981551
6
+ 0.817436 0.812600 0.976960
7
+ 0.806854 0.805195 0.972375
8
+ 0.796269 0.797798 0.967789
9
+ 0.785701 0.790410 0.963202
10
+ 0.775131 0.783029 0.958622
11
+ 0.764578 0.775657 0.954040
12
+ 0.754030 0.768289 0.949459
13
+ 0.743492 0.760936 0.944885
14
+ 0.732962 0.753582 0.940310
15
+ 0.722437 0.746238 0.935735
16
+ 0.711933 0.738905 0.931162
17
+ 0.701432 0.731568 0.926589
18
+ 0.690943 0.724242 0.922023
19
+ 0.680467 0.716925 0.917454
20
+ 0.670014 0.709606 0.912880
21
+ 0.659557 0.702288 0.908309
22
+ 0.649120 0.694978 0.903731
23
+ 0.638686 0.687673 0.899152
24
+ 0.628272 0.680360 0.894565
25
+ 0.617857 0.673063 0.889964
26
+ 0.607467 0.665752 0.885354
27
+ 0.597075 0.658440 0.880724
28
+ 0.586690 0.651127 0.876076
29
+ 0.576326 0.643799 0.871400
30
+ 0.565949 0.636475 0.866687
31
+ 0.555583 0.629124 0.861940
32
+ 0.545234 0.621759 0.857135
33
+ 0.534879 0.614380 0.852281
34
+ 0.524528 0.606989 0.847345
35
+ 0.514186 0.599559 0.842341
36
+ 0.503834 0.592104 0.837236
37
+ 0.493485 0.584607 0.832024
38
+ 0.483146 0.577079 0.826688
39
+ 0.472813 0.569503 0.821214
40
+ 0.462489 0.561900 0.815589
41
+ 0.452196 0.554237 0.809792
42
+ 0.441911 0.546534 0.803812
43
+ 0.431658 0.538778 0.797628
44
+ 0.421427 0.530971 0.791233
45
+ 0.411272 0.523126 0.784614
46
+ 0.401187 0.515228 0.777750
47
+ 0.391176 0.507302 0.770637
48
+ 0.381268 0.499335 0.763268
49
+ 0.371464 0.491365 0.755647
50
+ 0.361828 0.483348 0.747766
51
+ 0.352332 0.475354 0.739628
52
+ 0.343040 0.467348 0.731226
53
+ 0.333935 0.459362 0.722590
54
+ 0.325039 0.451404 0.713726
55
+ 0.316415 0.443488 0.704640
56
+ 0.308015 0.435626 0.695353
57
+ 0.299908 0.427822 0.685882
58
+ 0.292072 0.420088 0.676244
59
+ 0.284509 0.412447 0.666456
60
+ 0.277258 0.404874 0.656555
61
+ 0.270288 0.397413 0.646536
62
+ 0.263592 0.390042 0.636438
63
+ 0.257162 0.382785 0.626261
64
+ 0.251007 0.375620 0.616039
65
+ 0.245081 0.368571 0.605774
66
+ 0.239433 0.361610 0.595496
67
+ 0.233979 0.354757 0.585210
68
+ 0.228757 0.347985 0.574907
69
+ 0.223689 0.341308 0.564626
70
+ 0.218814 0.334729 0.554362
71
+ 0.214087 0.328204 0.544114
72
+ 0.209485 0.321765 0.533889
73
+ 0.205018 0.315407 0.523710
74
+ 0.200637 0.309117 0.513557
75
+ 0.196412 0.302848 0.503430
76
+ 0.192207 0.296679 0.493351
77
+ 0.188129 0.290528 0.483311
78
+ 0.184055 0.284439 0.473307
79
+ 0.180064 0.278405 0.463347
80
+ 0.176110 0.272383 0.453433
81
+ 0.172237 0.266433 0.443561
82
+ 0.168388 0.260500 0.433714
83
+ 0.164586 0.254619 0.423924
84
+ 0.160797 0.248756 0.414177
85
+ 0.157046 0.242904 0.404464
86
+ 0.153319 0.237142 0.394804
87
+ 0.149673 0.231371 0.385179
88
+ 0.146008 0.225637 0.375606
89
+ 0.142376 0.219944 0.366086
90
+ 0.138777 0.214278 0.356603
91
+ 0.135230 0.208646 0.347169
92
+ 0.131711 0.203058 0.337770
93
+ 0.128229 0.197514 0.328435
94
+ 0.124761 0.192003 0.319147
95
+ 0.121343 0.186546 0.309922
96
+ 0.118042 0.181118 0.300724
97
+ 0.114684 0.175752 0.291618
98
+ 0.111494 0.170467 0.282561
99
+ 0.108251 0.165194 0.273558
100
+ 0.105123 0.160006 0.264610
101
+ 0.102084 0.154917 0.255747
102
+ 0.099092 0.149907 0.246959
103
+ 0.096147 0.144956 0.238246
104
+ 0.093305 0.140051 0.229611
105
+ 0.090594 0.135308 0.221110
106
+ 0.087928 0.130681 0.212658
107
+ 0.085292 0.126138 0.204357
108
+ 0.082823 0.121681 0.196143
109
+ 0.080421 0.117440 0.188082
110
+ 0.078086 0.113389 0.180114
111
+ 0.075905 0.109466 0.172337
112
+ 0.073885 0.105686 0.164736
113
+ 0.071860 0.102134 0.157304
114
+ 0.069982 0.098819 0.150117
115
+ 0.068226 0.095733 0.143111
116
+ 0.066537 0.092861 0.136321
117
+ 0.064955 0.090276 0.129886
118
+ 0.063267 0.087897 0.123622
119
+ 0.061329 0.085713 0.117743
120
+ 0.059549 0.084005 0.112175
121
+ 0.057509 0.082538 0.106931
122
+ 0.055684 0.081475 0.101971
123
+ 0.053860 0.080759 0.097418
124
+ 0.052230 0.080481 0.093171
125
+ 0.050913 0.080625 0.089271
126
+ 0.049943 0.081198 0.085513
127
+ 0.049353 0.082180 0.082189
128
+ 0.049079 0.083464 0.079009
129
+ 0.049155 0.085141 0.076274
130
+ 0.049556 0.087226 0.074000
131
+ 0.050267 0.089512 0.072019
132
+ 0.051322 0.092107 0.070500
133
+ 0.052671 0.094931 0.069496
134
+ 0.054312 0.097914 0.068834
135
+ 0.056240 0.101026 0.068579
136
+ 0.058195 0.104316 0.068741
137
+ 0.060290 0.107873 0.069260
138
+ 0.062176 0.111722 0.070000
139
+ 0.063928 0.115778 0.071095
140
+ 0.065475 0.120052 0.072347
141
+ 0.066838 0.124588 0.073908
142
+ 0.068268 0.129302 0.075503
143
+ 0.069792 0.134182 0.077268
144
+ 0.071436 0.139131 0.079173
145
+ 0.073206 0.144277 0.081195
146
+ 0.075035 0.149518 0.083188
147
+ 0.076994 0.154830 0.085288
148
+ 0.079073 0.160250 0.087584
149
+ 0.081282 0.165794 0.089893
150
+ 0.083484 0.171434 0.092320
151
+ 0.085728 0.177157 0.094882
152
+ 0.088156 0.182922 0.097452
153
+ 0.090584 0.188805 0.100120
154
+ 0.093019 0.194747 0.102903
155
+ 0.095617 0.200704 0.105722
156
+ 0.098237 0.206805 0.108578
157
+ 0.100855 0.212892 0.111567
158
+ 0.103600 0.219082 0.114506
159
+ 0.106365 0.225299 0.117582
160
+ 0.109139 0.231596 0.120662
161
+ 0.111974 0.237913 0.123798
162
+ 0.114789 0.244261 0.126976
163
+ 0.117727 0.250686 0.130255
164
+ 0.120641 0.257151 0.133472
165
+ 0.123603 0.263656 0.136737
166
+ 0.126616 0.270188 0.140040
167
+ 0.129658 0.276752 0.143406
168
+ 0.132693 0.283354 0.146750
169
+ 0.135725 0.289985 0.150171
170
+ 0.138830 0.296670 0.153554
171
+ 0.141948 0.303360 0.157002
172
+ 0.145094 0.310116 0.160442
173
+ 0.148201 0.316874 0.163967
174
+ 0.151363 0.323667 0.167446
175
+ 0.154545 0.330493 0.170950
176
+ 0.157748 0.337355 0.174497
177
+ 0.160983 0.344226 0.178066
178
+ 0.164239 0.351154 0.181591
179
+ 0.167488 0.358094 0.185220
180
+ 0.170768 0.365059 0.188816
181
+ 0.174089 0.372056 0.192436
182
+ 0.177457 0.379094 0.196101
183
+ 0.180808 0.386151 0.199746
184
+ 0.184249 0.393254 0.203474
185
+ 0.187757 0.400396 0.207207
186
+ 0.191253 0.407555 0.210958
187
+ 0.194872 0.414761 0.214742
188
+ 0.198521 0.422000 0.218587
189
+ 0.202283 0.429298 0.222458
190
+ 0.206179 0.436634 0.226391
191
+ 0.210132 0.444018 0.230338
192
+ 0.214250 0.451448 0.234395
193
+ 0.218509 0.458933 0.238470
194
+ 0.222944 0.466472 0.242640
195
+ 0.227556 0.474069 0.246892
196
+ 0.232381 0.481731 0.251239
197
+ 0.237454 0.489442 0.255650
198
+ 0.242733 0.497231 0.260175
199
+ 0.248343 0.505068 0.264792
200
+ 0.254208 0.512970 0.269550
201
+ 0.260386 0.520928 0.274388
202
+ 0.266890 0.528945 0.279377
203
+ 0.273759 0.537002 0.284454
204
+ 0.280938 0.545093 0.289684
205
+ 0.288510 0.553216 0.295022
206
+ 0.296432 0.561374 0.300491
207
+ 0.304707 0.569536 0.306103
208
+ 0.313342 0.577703 0.311781
209
+ 0.322318 0.585869 0.317611
210
+ 0.331612 0.593999 0.323531
211
+ 0.341241 0.602097 0.329559
212
+ 0.351160 0.610148 0.335653
213
+ 0.361343 0.618143 0.341828
214
+ 0.371779 0.626065 0.348071
215
+ 0.382451 0.633916 0.354369
216
+ 0.393325 0.641666 0.360698
217
+ 0.404374 0.649336 0.367086
218
+ 0.415582 0.656899 0.373491
219
+ 0.426924 0.664355 0.379911
220
+ 0.438366 0.671712 0.386331
221
+ 0.449904 0.678964 0.392766
222
+ 0.461514 0.686116 0.399187
223
+ 0.473168 0.693167 0.405617
224
+ 0.484878 0.700115 0.412015
225
+ 0.496616 0.706977 0.418392
226
+ 0.508390 0.713747 0.424768
227
+ 0.520147 0.720436 0.431116
228
+ 0.531933 0.727052 0.437443
229
+ 0.543711 0.733600 0.443742
230
+ 0.555481 0.740086 0.450020
231
+ 0.567261 0.746510 0.456278
232
+ 0.579022 0.752882 0.462515
233
+ 0.590772 0.759216 0.468745
234
+ 0.602519 0.765515 0.474957
235
+ 0.614252 0.771771 0.481133
236
+ 0.625984 0.777998 0.487319
237
+ 0.637706 0.784202 0.493473
238
+ 0.649422 0.790375 0.499620
239
+ 0.661122 0.796533 0.505760
240
+ 0.672829 0.802676 0.511899
241
+ 0.684516 0.808810 0.518032
242
+ 0.696216 0.814923 0.524147
243
+ 0.707902 0.821031 0.530263
244
+ 0.719595 0.827132 0.536376
245
+ 0.731277 0.833223 0.542485
246
+ 0.742973 0.839311 0.548595
247
+ 0.754662 0.845390 0.554696
248
+ 0.766349 0.851467 0.560800
249
+ 0.778045 0.857543 0.566914
250
+ 0.789742 0.863621 0.573024
251
+ 0.801441 0.869687 0.579135
252
+ 0.813146 0.875759 0.585254
253
+ 0.824857 0.881828 0.591370
254
+ 0.836576 0.887893 0.597497
255
+ 0.848297 0.893962 0.603631
256
+ 0.860031 0.900031 0.609764
@@ -0,0 +1,256 @@
1
+ 1.000000 0.803458 0.992153
2
+ 0.993966 0.791971 0.983740
3
+ 0.987910 0.780517 0.975350
4
+ 0.981851 0.769103 0.966994
5
+ 0.975778 0.757742 0.958668
6
+ 0.969707 0.746427 0.950372
7
+ 0.963631 0.735173 0.942114
8
+ 0.957554 0.723972 0.933887
9
+ 0.951473 0.712836 0.925705
10
+ 0.945393 0.701767 0.917560
11
+ 0.939308 0.690768 0.909446
12
+ 0.933218 0.679840 0.901374
13
+ 0.927131 0.668991 0.893338
14
+ 0.921042 0.658211 0.885344
15
+ 0.914952 0.647507 0.877382
16
+ 0.908857 0.636888 0.869461
17
+ 0.902762 0.626341 0.861576
18
+ 0.896659 0.615882 0.853722
19
+ 0.890548 0.605505 0.845909
20
+ 0.884436 0.595222 0.838134
21
+ 0.878313 0.585030 0.830390
22
+ 0.872186 0.574915 0.822679
23
+ 0.866046 0.564900 0.814999
24
+ 0.859899 0.554987 0.807356
25
+ 0.853732 0.545168 0.799745
26
+ 0.847560 0.535441 0.792158
27
+ 0.841377 0.525828 0.784610
28
+ 0.835174 0.516304 0.777088
29
+ 0.828958 0.506899 0.769588
30
+ 0.822720 0.497608 0.762123
31
+ 0.816465 0.488415 0.754693
32
+ 0.810184 0.479340 0.747283
33
+ 0.803891 0.470383 0.739904
34
+ 0.797569 0.461543 0.732548
35
+ 0.791229 0.452831 0.725221
36
+ 0.784867 0.444242 0.717916
37
+ 0.778473 0.435779 0.710641
38
+ 0.772057 0.427450 0.703392
39
+ 0.765618 0.419249 0.696170
40
+ 0.759143 0.411185 0.688974
41
+ 0.752644 0.403267 0.681791
42
+ 0.746120 0.395486 0.674646
43
+ 0.739569 0.387834 0.667523
44
+ 0.732972 0.380340 0.660409
45
+ 0.726340 0.372969 0.653314
46
+ 0.719666 0.365747 0.646233
47
+ 0.712934 0.358639 0.639153
48
+ 0.706153 0.351664 0.632064
49
+ 0.699290 0.344807 0.624955
50
+ 0.692359 0.338042 0.617815
51
+ 0.685319 0.331373 0.610637
52
+ 0.678174 0.324794 0.603401
53
+ 0.670910 0.318296 0.596091
54
+ 0.663515 0.311843 0.588700
55
+ 0.655976 0.305490 0.581230
56
+ 0.648281 0.299167 0.573663
57
+ 0.640446 0.292887 0.565992
58
+ 0.632449 0.286670 0.558216
59
+ 0.624298 0.280512 0.550347
60
+ 0.615982 0.274422 0.542368
61
+ 0.607521 0.268384 0.534281
62
+ 0.598894 0.262404 0.526102
63
+ 0.590116 0.256479 0.517821
64
+ 0.581197 0.250628 0.509438
65
+ 0.572137 0.244835 0.500969
66
+ 0.562937 0.239137 0.492403
67
+ 0.553590 0.233483 0.483757
68
+ 0.544127 0.227949 0.475046
69
+ 0.534537 0.222455 0.466234
70
+ 0.524829 0.217056 0.457361
71
+ 0.515010 0.211741 0.448426
72
+ 0.505084 0.206510 0.439420
73
+ 0.495068 0.201312 0.430365
74
+ 0.484947 0.196279 0.421246
75
+ 0.474764 0.191275 0.412100
76
+ 0.464496 0.186395 0.402901
77
+ 0.454153 0.181572 0.393668
78
+ 0.443760 0.176876 0.384410
79
+ 0.433308 0.172253 0.375132
80
+ 0.422821 0.167733 0.365848
81
+ 0.412322 0.163322 0.356553
82
+ 0.401775 0.158973 0.347259
83
+ 0.391249 0.154715 0.337955
84
+ 0.380710 0.150576 0.328694
85
+ 0.370175 0.146512 0.319446
86
+ 0.359685 0.142579 0.310245
87
+ 0.349231 0.138721 0.301060
88
+ 0.338829 0.134989 0.291964
89
+ 0.328494 0.131330 0.282930
90
+ 0.318241 0.127777 0.273963
91
+ 0.308084 0.124311 0.265078
92
+ 0.298047 0.120969 0.256311
93
+ 0.288151 0.117775 0.247683
94
+ 0.278414 0.114625 0.239157
95
+ 0.268845 0.111687 0.230788
96
+ 0.259457 0.108775 0.222588
97
+ 0.250246 0.106051 0.214548
98
+ 0.241306 0.103413 0.206729
99
+ 0.232581 0.100857 0.199050
100
+ 0.224100 0.098494 0.191632
101
+ 0.215928 0.096182 0.184434
102
+ 0.207987 0.094098 0.177481
103
+ 0.200322 0.092102 0.170724
104
+ 0.192993 0.090210 0.164255
105
+ 0.185958 0.088461 0.157989
106
+ 0.179182 0.086861 0.151972
107
+ 0.172717 0.085310 0.146233
108
+ 0.166577 0.084017 0.140752
109
+ 0.160701 0.082745 0.135463
110
+ 0.155145 0.081683 0.130493
111
+ 0.149902 0.080653 0.125704
112
+ 0.144926 0.079780 0.121121
113
+ 0.140204 0.079037 0.116848
114
+ 0.135778 0.078426 0.112815
115
+ 0.131685 0.077944 0.108940
116
+ 0.127825 0.077586 0.105294
117
+ 0.124216 0.077332 0.101903
118
+ 0.120913 0.077161 0.098724
119
+ 0.117925 0.077088 0.095739
120
+ 0.115124 0.077124 0.092921
121
+ 0.112670 0.077278 0.090344
122
+ 0.110421 0.077557 0.087858
123
+ 0.108355 0.077968 0.085431
124
+ 0.106650 0.078516 0.083233
125
+ 0.105001 0.079207 0.081185
126
+ 0.103676 0.080048 0.079202
127
+ 0.102454 0.081036 0.077408
128
+ 0.101433 0.082173 0.075793
129
+ 0.100602 0.083343 0.074344
130
+ 0.099957 0.084733 0.073021
131
+ 0.099492 0.086174 0.071799
132
+ 0.099204 0.087868 0.070716
133
+ 0.099092 0.089631 0.069813
134
+ 0.099154 0.091582 0.069047
135
+ 0.099384 0.093597 0.068337
136
+ 0.099759 0.095871 0.067776
137
+ 0.100291 0.098368 0.067351
138
+ 0.100986 0.101005 0.067056
139
+ 0.101850 0.103903 0.066891
140
+ 0.102897 0.107015 0.066853
141
+ 0.104071 0.110313 0.066942
142
+ 0.105427 0.113799 0.067155
143
+ 0.107008 0.117503 0.067485
144
+ 0.108664 0.121419 0.067929
145
+ 0.110590 0.125611 0.068490
146
+ 0.112654 0.129982 0.069162
147
+ 0.114826 0.134530 0.069842
148
+ 0.117253 0.139234 0.070610
149
+ 0.119847 0.144220 0.071528
150
+ 0.122590 0.149366 0.072403
151
+ 0.125578 0.154671 0.073463
152
+ 0.128666 0.160153 0.074429
153
+ 0.131965 0.165838 0.075451
154
+ 0.135397 0.171688 0.076499
155
+ 0.138981 0.177714 0.077615
156
+ 0.142733 0.183822 0.078814
157
+ 0.146576 0.190103 0.080098
158
+ 0.150581 0.196536 0.081473
159
+ 0.154679 0.203040 0.082820
160
+ 0.158914 0.209679 0.084315
161
+ 0.163242 0.216440 0.085726
162
+ 0.167643 0.223261 0.087378
163
+ 0.172141 0.230146 0.088955
164
+ 0.176729 0.237170 0.090617
165
+ 0.181386 0.244184 0.092314
166
+ 0.186149 0.251320 0.094071
167
+ 0.190925 0.258459 0.095839
168
+ 0.195784 0.265666 0.097702
169
+ 0.200666 0.272896 0.099539
170
+ 0.205639 0.280155 0.101441
171
+ 0.210622 0.287439 0.103417
172
+ 0.215650 0.294748 0.105341
173
+ 0.220718 0.302066 0.107372
174
+ 0.225786 0.309422 0.109424
175
+ 0.230874 0.316746 0.111461
176
+ 0.235999 0.324075 0.113544
177
+ 0.241117 0.331405 0.115627
178
+ 0.246251 0.338744 0.117744
179
+ 0.251422 0.346052 0.119875
180
+ 0.256556 0.353368 0.122020
181
+ 0.261715 0.360650 0.124218
182
+ 0.266861 0.367934 0.126445
183
+ 0.272000 0.375189 0.128653
184
+ 0.277166 0.382423 0.130918
185
+ 0.282309 0.389635 0.133156
186
+ 0.287411 0.396816 0.135411
187
+ 0.292531 0.403983 0.137728
188
+ 0.297634 0.411110 0.139977
189
+ 0.302709 0.418200 0.142319
190
+ 0.307778 0.425274 0.144661
191
+ 0.312834 0.432309 0.146987
192
+ 0.317872 0.439291 0.149374
193
+ 0.322894 0.446251 0.151733
194
+ 0.327875 0.453179 0.154140
195
+ 0.332865 0.460062 0.156598
196
+ 0.337807 0.466927 0.159042
197
+ 0.342760 0.473743 0.161548
198
+ 0.347686 0.480544 0.164065
199
+ 0.352603 0.487332 0.166607
200
+ 0.357533 0.494097 0.169225
201
+ 0.362447 0.500861 0.171847
202
+ 0.367380 0.507636 0.174584
203
+ 0.372343 0.514432 0.177377
204
+ 0.377346 0.521251 0.180219
205
+ 0.382376 0.528122 0.183176
206
+ 0.387463 0.535047 0.186258
207
+ 0.392612 0.542036 0.189423
208
+ 0.397829 0.549105 0.192718
209
+ 0.403109 0.556237 0.196160
210
+ 0.408462 0.563476 0.199699
211
+ 0.413899 0.570782 0.203451
212
+ 0.419422 0.578187 0.207341
213
+ 0.425026 0.585699 0.211405
214
+ 0.430714 0.593292 0.215646
215
+ 0.436494 0.600980 0.220093
216
+ 0.442370 0.608780 0.224699
217
+ 0.448326 0.616665 0.229564
218
+ 0.454389 0.624650 0.234680
219
+ 0.460529 0.632737 0.239972
220
+ 0.466791 0.640920 0.245529
221
+ 0.473127 0.649213 0.251375
222
+ 0.479586 0.657599 0.257447
223
+ 0.486124 0.666078 0.263824
224
+ 0.492766 0.674662 0.270472
225
+ 0.499512 0.683346 0.277405
226
+ 0.506360 0.692132 0.284637
227
+ 0.513311 0.701007 0.292203
228
+ 0.520349 0.709983 0.300077
229
+ 0.527497 0.719052 0.308279
230
+ 0.534736 0.728215 0.316816
231
+ 0.542067 0.737471 0.325672
232
+ 0.549496 0.746819 0.334905
233
+ 0.557016 0.756252 0.344435
234
+ 0.564609 0.765774 0.354337
235
+ 0.572299 0.775372 0.364570
236
+ 0.580064 0.785059 0.375151
237
+ 0.587893 0.794816 0.386071
238
+ 0.595806 0.804651 0.397338
239
+ 0.603786 0.814553 0.408937
240
+ 0.611815 0.824526 0.420855
241
+ 0.619911 0.834567 0.433105
242
+ 0.628048 0.844666 0.445657
243
+ 0.636232 0.854824 0.458524
244
+ 0.644446 0.865034 0.471684
245
+ 0.652701 0.875305 0.485107
246
+ 0.660987 0.885624 0.498820
247
+ 0.669299 0.895992 0.512776
248
+ 0.677630 0.906409 0.526986
249
+ 0.685970 0.916874 0.541406
250
+ 0.694321 0.927380 0.556050
251
+ 0.702695 0.937942 0.570898
252
+ 0.711071 0.948545 0.585932
253
+ 0.719449 0.959198 0.601116
254
+ 0.727825 0.969893 0.616456
255
+ 0.736200 0.980634 0.631914
256
+ 0.744576 0.991413 0.647477