daru 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +20 -7
- data/CONTRIBUTING.md +1 -1
- data/History.md +48 -1
- data/README.md +3 -3
- data/benchmarks/statistics.rb +6 -6
- data/benchmarks/where_clause.rb +1 -1
- data/benchmarks/where_vs_filter.rb +1 -1
- data/daru.gemspec +3 -2
- data/lib/daru.rb +14 -6
- data/lib/daru/accessors/gsl_wrapper.rb +1 -1
- data/lib/daru/accessors/nmatrix_wrapper.rb +2 -0
- data/lib/daru/category.rb +1 -1
- data/lib/daru/core/group_by.rb +32 -15
- data/lib/daru/core/query.rb +4 -4
- data/lib/daru/dataframe.rb +196 -48
- data/lib/daru/date_time/index.rb +7 -5
- data/lib/daru/formatters/table.rb +1 -0
- data/lib/daru/index/index.rb +121 -33
- data/lib/daru/index/multi_index.rb +83 -3
- data/lib/daru/io/csv/converters.rb +18 -0
- data/lib/daru/io/io.rb +80 -11
- data/lib/daru/io/sql_data_source.rb +10 -0
- data/lib/daru/iruby/templates/dataframe.html.erb +3 -50
- data/lib/daru/iruby/templates/dataframe_mi.html.erb +3 -56
- data/lib/daru/iruby/templates/dataframe_mi_tbody.html.erb +35 -0
- data/lib/daru/iruby/templates/dataframe_mi_thead.html.erb +21 -0
- data/lib/daru/iruby/templates/dataframe_tbody.html.erb +28 -0
- data/lib/daru/iruby/templates/dataframe_thead.html.erb +21 -0
- data/lib/daru/iruby/templates/vector.html.erb +3 -25
- data/lib/daru/iruby/templates/vector_mi.html.erb +3 -34
- data/lib/daru/iruby/templates/vector_mi_tbody.html.erb +26 -0
- data/lib/daru/iruby/templates/vector_mi_thead.html.erb +8 -0
- data/lib/daru/iruby/templates/vector_tbody.html.erb +17 -0
- data/lib/daru/iruby/templates/vector_thead.html.erb +8 -0
- data/lib/daru/maths/statistics/dataframe.rb +9 -11
- data/lib/daru/maths/statistics/vector.rb +139 -32
- data/lib/daru/plotting/gruff/dataframe.rb +13 -15
- data/lib/daru/plotting/nyaplot/category.rb +1 -1
- data/lib/daru/plotting/nyaplot/dataframe.rb +4 -4
- data/lib/daru/plotting/nyaplot/vector.rb +1 -2
- data/lib/daru/vector.rb +169 -80
- data/lib/daru/version.rb +1 -1
- data/spec/category_spec.rb +19 -19
- data/spec/core/group_by_spec.rb +47 -0
- data/spec/core/query_spec.rb +55 -50
- data/spec/daru_spec.rb +22 -0
- data/spec/dataframe_spec.rb +118 -6
- data/spec/date_time/index_spec.rb +34 -16
- data/spec/extensions/rserve_spec.rb +1 -1
- data/spec/fixtures/boolean_converter_test.csv +5 -0
- data/spec/fixtures/eciresults.html +394 -0
- data/spec/fixtures/empty_rows_test.csv +17 -0
- data/spec/fixtures/macau.html +3691 -0
- data/spec/fixtures/macd_data.csv +150 -0
- data/spec/fixtures/moneycontrol.html +6812 -0
- data/spec/fixtures/url_test.txt~ +0 -0
- data/spec/fixtures/valid_markup.html +62 -0
- data/spec/fixtures/wiki_climate.html +1243 -0
- data/spec/fixtures/wiki_table_info.html +631 -0
- data/spec/formatters/table_formatter_spec.rb +29 -0
- data/spec/index/categorical_index_spec.rb +33 -33
- data/spec/index/index_spec.rb +134 -41
- data/spec/index/multi_index_spec.rb +115 -31
- data/spec/io/io_spec.rb +201 -0
- data/spec/io/sql_data_source_spec.rb +31 -41
- data/spec/iruby/dataframe_spec.rb +17 -19
- data/spec/iruby/vector_spec.rb +26 -28
- data/spec/maths/statistics/vector_spec.rb +136 -14
- data/spec/plotting/gruff/category_spec.rb +3 -3
- data/spec/plotting/gruff/dataframe_spec.rb +14 -4
- data/spec/plotting/gruff/vector_spec.rb +9 -9
- data/spec/plotting/nyaplot/category_spec.rb +5 -9
- data/spec/plotting/nyaplot/dataframe_spec.rb +72 -47
- data/spec/plotting/nyaplot/vector_spec.rb +5 -11
- data/spec/shared/vector_display_spec.rb +12 -14
- data/spec/spec_helper.rb +21 -0
- data/spec/support/matchers.rb +5 -0
- data/spec/vector_spec.rb +222 -72
- metadata +68 -23
- data/spec/fixtures/stock_data.csv +0 -500
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: daru
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sameer Deshmukh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-08-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: backports
|
@@ -24,20 +24,6 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: reportbuilder
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '1.4'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '1.4'
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
28
|
name: spreadsheet
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -263,7 +249,7 @@ dependencies:
|
|
263
249
|
- !ruby/object:Gem::Version
|
264
250
|
version: '4.0'
|
265
251
|
- !ruby/object:Gem::Dependency
|
266
|
-
name:
|
252
|
+
name: mechanize
|
267
253
|
requirement: !ruby/object:Gem::Requirement
|
268
254
|
requirements:
|
269
255
|
- - ">="
|
@@ -277,19 +263,33 @@ dependencies:
|
|
277
263
|
- !ruby/object:Gem::Version
|
278
264
|
version: '0'
|
279
265
|
- !ruby/object:Gem::Dependency
|
280
|
-
name:
|
266
|
+
name: sqlite3
|
281
267
|
requirement: !ruby/object:Gem::Requirement
|
282
268
|
requirements:
|
283
269
|
- - ">="
|
284
270
|
- !ruby/object:Gem::Version
|
285
|
-
version: 0
|
271
|
+
version: '0'
|
286
272
|
type: :development
|
287
273
|
prerelease: false
|
288
274
|
version_requirements: !ruby/object:Gem::Requirement
|
289
275
|
requirements:
|
290
276
|
- - ">="
|
291
277
|
- !ruby/object:Gem::Version
|
292
|
-
version: 0
|
278
|
+
version: '0'
|
279
|
+
- !ruby/object:Gem::Dependency
|
280
|
+
name: rubocop
|
281
|
+
requirement: !ruby/object:Gem::Requirement
|
282
|
+
requirements:
|
283
|
+
- - "~>"
|
284
|
+
- !ruby/object:Gem::Version
|
285
|
+
version: 0.49.0
|
286
|
+
type: :development
|
287
|
+
prerelease: false
|
288
|
+
version_requirements: !ruby/object:Gem::Requirement
|
289
|
+
requirements:
|
290
|
+
- - "~>"
|
291
|
+
- !ruby/object:Gem::Version
|
292
|
+
version: 0.49.0
|
293
293
|
- !ruby/object:Gem::Dependency
|
294
294
|
name: ruby-prof
|
295
295
|
requirement: !ruby/object:Gem::Requirement
|
@@ -332,6 +332,20 @@ dependencies:
|
|
332
332
|
- - ">="
|
333
333
|
- !ruby/object:Gem::Version
|
334
334
|
version: '0'
|
335
|
+
- !ruby/object:Gem::Dependency
|
336
|
+
name: webmock
|
337
|
+
requirement: !ruby/object:Gem::Requirement
|
338
|
+
requirements:
|
339
|
+
- - ">="
|
340
|
+
- !ruby/object:Gem::Version
|
341
|
+
version: '0'
|
342
|
+
type: :development
|
343
|
+
prerelease: false
|
344
|
+
version_requirements: !ruby/object:Gem::Requirement
|
345
|
+
requirements:
|
346
|
+
- - ">="
|
347
|
+
- !ruby/object:Gem::Version
|
348
|
+
version: '0'
|
335
349
|
- !ruby/object:Gem::Dependency
|
336
350
|
name: nokogiri
|
337
351
|
requirement: !ruby/object:Gem::Requirement
|
@@ -433,14 +447,23 @@ files:
|
|
433
447
|
- lib/daru/index/categorical_index.rb
|
434
448
|
- lib/daru/index/index.rb
|
435
449
|
- lib/daru/index/multi_index.rb
|
450
|
+
- lib/daru/io/csv/converters.rb
|
436
451
|
- lib/daru/io/io.rb
|
437
452
|
- lib/daru/io/sql_data_source.rb
|
438
453
|
- lib/daru/iruby/helpers.rb
|
439
454
|
- lib/daru/iruby/templates/dataframe.html.erb
|
440
455
|
- lib/daru/iruby/templates/dataframe_mi.html.erb
|
456
|
+
- lib/daru/iruby/templates/dataframe_mi_tbody.html.erb
|
457
|
+
- lib/daru/iruby/templates/dataframe_mi_thead.html.erb
|
458
|
+
- lib/daru/iruby/templates/dataframe_tbody.html.erb
|
459
|
+
- lib/daru/iruby/templates/dataframe_thead.html.erb
|
441
460
|
- lib/daru/iruby/templates/multi_index.html.erb
|
442
461
|
- lib/daru/iruby/templates/vector.html.erb
|
443
462
|
- lib/daru/iruby/templates/vector_mi.html.erb
|
463
|
+
- lib/daru/iruby/templates/vector_mi_tbody.html.erb
|
464
|
+
- lib/daru/iruby/templates/vector_mi_thead.html.erb
|
465
|
+
- lib/daru/iruby/templates/vector_tbody.html.erb
|
466
|
+
- lib/daru/iruby/templates/vector_thead.html.erb
|
444
467
|
- lib/daru/maths/arithmetic/dataframe.rb
|
445
468
|
- lib/daru/maths/arithmetic/vector.rb
|
446
469
|
- lib/daru/maths/statistics/dataframe.rb
|
@@ -469,22 +492,32 @@ files:
|
|
469
492
|
- spec/core/group_by_spec.rb
|
470
493
|
- spec/core/merge_spec.rb
|
471
494
|
- spec/core/query_spec.rb
|
495
|
+
- spec/daru_spec.rb
|
472
496
|
- spec/dataframe_spec.rb
|
473
497
|
- spec/date_time/data_spec.rb
|
474
498
|
- spec/date_time/index_spec.rb
|
475
499
|
- spec/date_time/offsets_spec.rb
|
476
500
|
- spec/extensions/rserve_spec.rb
|
477
501
|
- spec/fixtures/bank2.dat
|
502
|
+
- spec/fixtures/boolean_converter_test.csv
|
478
503
|
- spec/fixtures/countries.json
|
504
|
+
- spec/fixtures/eciresults.html
|
479
505
|
- spec/fixtures/empties.dat
|
506
|
+
- spec/fixtures/empty_rows_test.csv
|
507
|
+
- spec/fixtures/macau.html
|
508
|
+
- spec/fixtures/macd_data.csv
|
480
509
|
- spec/fixtures/matrix_test.csv
|
510
|
+
- spec/fixtures/moneycontrol.html
|
481
511
|
- spec/fixtures/music_data.tsv
|
482
512
|
- spec/fixtures/repeated_fields.csv
|
483
513
|
- spec/fixtures/sales-funnel.csv
|
484
514
|
- spec/fixtures/scientific_notation.csv
|
485
|
-
- spec/fixtures/stock_data.csv
|
486
515
|
- spec/fixtures/strings.dat
|
487
516
|
- spec/fixtures/test_xls.xls
|
517
|
+
- spec/fixtures/url_test.txt~
|
518
|
+
- spec/fixtures/valid_markup.html
|
519
|
+
- spec/fixtures/wiki_climate.html
|
520
|
+
- spec/fixtures/wiki_table_info.html
|
488
521
|
- spec/formatters/table_formatter_spec.rb
|
489
522
|
- spec/helpers_spec.rb
|
490
523
|
- spec/index/categorical_index_spec.rb
|
@@ -510,6 +543,7 @@ files:
|
|
510
543
|
- spec/shared/vector_display_spec.rb
|
511
544
|
- spec/spec_helper.rb
|
512
545
|
- spec/support/database_helper.rb
|
546
|
+
- spec/support/matchers.rb
|
513
547
|
- spec/vector_spec.rb
|
514
548
|
homepage: http://github.com/v0dro/daru
|
515
549
|
licenses:
|
@@ -550,7 +584,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
550
584
|
version: '0'
|
551
585
|
requirements: []
|
552
586
|
rubyforge_project:
|
553
|
-
rubygems_version: 2.
|
587
|
+
rubygems_version: 2.5.2
|
554
588
|
signing_key:
|
555
589
|
specification_version: 4
|
556
590
|
summary: Data Analysis in RUby
|
@@ -562,22 +596,32 @@ test_files:
|
|
562
596
|
- spec/core/group_by_spec.rb
|
563
597
|
- spec/core/merge_spec.rb
|
564
598
|
- spec/core/query_spec.rb
|
599
|
+
- spec/daru_spec.rb
|
565
600
|
- spec/dataframe_spec.rb
|
566
601
|
- spec/date_time/data_spec.rb
|
567
602
|
- spec/date_time/index_spec.rb
|
568
603
|
- spec/date_time/offsets_spec.rb
|
569
604
|
- spec/extensions/rserve_spec.rb
|
570
605
|
- spec/fixtures/bank2.dat
|
606
|
+
- spec/fixtures/boolean_converter_test.csv
|
571
607
|
- spec/fixtures/countries.json
|
608
|
+
- spec/fixtures/eciresults.html
|
572
609
|
- spec/fixtures/empties.dat
|
610
|
+
- spec/fixtures/empty_rows_test.csv
|
611
|
+
- spec/fixtures/macau.html
|
612
|
+
- spec/fixtures/macd_data.csv
|
573
613
|
- spec/fixtures/matrix_test.csv
|
614
|
+
- spec/fixtures/moneycontrol.html
|
574
615
|
- spec/fixtures/music_data.tsv
|
575
616
|
- spec/fixtures/repeated_fields.csv
|
576
617
|
- spec/fixtures/sales-funnel.csv
|
577
618
|
- spec/fixtures/scientific_notation.csv
|
578
|
-
- spec/fixtures/stock_data.csv
|
579
619
|
- spec/fixtures/strings.dat
|
580
620
|
- spec/fixtures/test_xls.xls
|
621
|
+
- spec/fixtures/url_test.txt~
|
622
|
+
- spec/fixtures/valid_markup.html
|
623
|
+
- spec/fixtures/wiki_climate.html
|
624
|
+
- spec/fixtures/wiki_table_info.html
|
581
625
|
- spec/formatters/table_formatter_spec.rb
|
582
626
|
- spec/helpers_spec.rb
|
583
627
|
- spec/index/categorical_index_spec.rb
|
@@ -603,4 +647,5 @@ test_files:
|
|
603
647
|
- spec/shared/vector_display_spec.rb
|
604
648
|
- spec/spec_helper.rb
|
605
649
|
- spec/support/database_helper.rb
|
650
|
+
- spec/support/matchers.rb
|
606
651
|
- spec/vector_spec.rb
|
@@ -1,500 +0,0 @@
|
|
1
|
-
17.66
|
2
|
-
17.65
|
3
|
-
17.68
|
4
|
-
17.66
|
5
|
-
17.68
|
6
|
-
17.67
|
7
|
-
17.68
|
8
|
-
17.68
|
9
|
-
17.67
|
10
|
-
17.67
|
11
|
-
17.68
|
12
|
-
17.71
|
13
|
-
17.74
|
14
|
-
17.72
|
15
|
-
17.73
|
16
|
-
17.76
|
17
|
-
17.74
|
18
|
-
17.69
|
19
|
-
17.69
|
20
|
-
17.67
|
21
|
-
17.66
|
22
|
-
17.67
|
23
|
-
17.69
|
24
|
-
17.69
|
25
|
-
17.68
|
26
|
-
17.65
|
27
|
-
17.65
|
28
|
-
17.64
|
29
|
-
17.63
|
30
|
-
17.64
|
31
|
-
17.67
|
32
|
-
17.68
|
33
|
-
17.7
|
34
|
-
17.68
|
35
|
-
17.69
|
36
|
-
17.69
|
37
|
-
17.72
|
38
|
-
17.71
|
39
|
-
17.71
|
40
|
-
17.71
|
41
|
-
17.69
|
42
|
-
17.69
|
43
|
-
17.71
|
44
|
-
17.72
|
45
|
-
17.71
|
46
|
-
17.68
|
47
|
-
17.68
|
48
|
-
17.68
|
49
|
-
17.69
|
50
|
-
17.68
|
51
|
-
17.68
|
52
|
-
17.69
|
53
|
-
17.67
|
54
|
-
17.69
|
55
|
-
17.71
|
56
|
-
17.7
|
57
|
-
17.7
|
58
|
-
17.71
|
59
|
-
17.73
|
60
|
-
17.74
|
61
|
-
17.74
|
62
|
-
17.74
|
63
|
-
17.76
|
64
|
-
17.77
|
65
|
-
17.55
|
66
|
-
17.55
|
67
|
-
17.5
|
68
|
-
17.46
|
69
|
-
17.49
|
70
|
-
17.54
|
71
|
-
17.51
|
72
|
-
17.54
|
73
|
-
17.57
|
74
|
-
17.54
|
75
|
-
17.52
|
76
|
-
17.53
|
77
|
-
17.56
|
78
|
-
17.55
|
79
|
-
17.55
|
80
|
-
17.54
|
81
|
-
17.55
|
82
|
-
17.55
|
83
|
-
17.55
|
84
|
-
17.54
|
85
|
-
17.52
|
86
|
-
17.53
|
87
|
-
17.51
|
88
|
-
17.52
|
89
|
-
17.5
|
90
|
-
17.5
|
91
|
-
17.5
|
92
|
-
17.49
|
93
|
-
17.46
|
94
|
-
17.47
|
95
|
-
17.48
|
96
|
-
17.45
|
97
|
-
17.41
|
98
|
-
17.39
|
99
|
-
17.38
|
100
|
-
17.43
|
101
|
-
17.44
|
102
|
-
17.43
|
103
|
-
17.43
|
104
|
-
17.46
|
105
|
-
17.46
|
106
|
-
17.47
|
107
|
-
17.47
|
108
|
-
17.45
|
109
|
-
17.48
|
110
|
-
17.49
|
111
|
-
17.5
|
112
|
-
17.49
|
113
|
-
17.48
|
114
|
-
17.49
|
115
|
-
17.47
|
116
|
-
17.47
|
117
|
-
17.44
|
118
|
-
17.44
|
119
|
-
17.43
|
120
|
-
17.45
|
121
|
-
17.42
|
122
|
-
17.43
|
123
|
-
17.43
|
124
|
-
17.44
|
125
|
-
17.44
|
126
|
-
17.43
|
127
|
-
17.41
|
128
|
-
17.41
|
129
|
-
17.38
|
130
|
-
17.38
|
131
|
-
17.37
|
132
|
-
17.37
|
133
|
-
17.37
|
134
|
-
17.3
|
135
|
-
17.28
|
136
|
-
17.27
|
137
|
-
17.19
|
138
|
-
16.41
|
139
|
-
16.44
|
140
|
-
16.48
|
141
|
-
16.53
|
142
|
-
16.51
|
143
|
-
16.57
|
144
|
-
16.54
|
145
|
-
16.59
|
146
|
-
16.64
|
147
|
-
16.6
|
148
|
-
16.65
|
149
|
-
16.69
|
150
|
-
16.69
|
151
|
-
16.68
|
152
|
-
16.64
|
153
|
-
16.65
|
154
|
-
16.66
|
155
|
-
16.64
|
156
|
-
16.61
|
157
|
-
16.65
|
158
|
-
16.67
|
159
|
-
16.66
|
160
|
-
16.65
|
161
|
-
16.61
|
162
|
-
16.59
|
163
|
-
16.57
|
164
|
-
16.55
|
165
|
-
16.55
|
166
|
-
16.57
|
167
|
-
16.54
|
168
|
-
16.6
|
169
|
-
16.62
|
170
|
-
16.6
|
171
|
-
16.59
|
172
|
-
16.61
|
173
|
-
16.66
|
174
|
-
16.69
|
175
|
-
16.67
|
176
|
-
16.65
|
177
|
-
16.66
|
178
|
-
16.65
|
179
|
-
16.65
|
180
|
-
16.68
|
181
|
-
16.68
|
182
|
-
16.67
|
183
|
-
16.64
|
184
|
-
16.73
|
185
|
-
16.76
|
186
|
-
16.75
|
187
|
-
16.79
|
188
|
-
16.8
|
189
|
-
16.77
|
190
|
-
16.74
|
191
|
-
16.76
|
192
|
-
16.83
|
193
|
-
16.84
|
194
|
-
16.82
|
195
|
-
16.89
|
196
|
-
16.93
|
197
|
-
16.94
|
198
|
-
16.9
|
199
|
-
16.92
|
200
|
-
16.88
|
201
|
-
16.85
|
202
|
-
16.87
|
203
|
-
16.8
|
204
|
-
16.79
|
205
|
-
16.85
|
206
|
-
16.85
|
207
|
-
16.8
|
208
|
-
16.82
|
209
|
-
16.85
|
210
|
-
16.9
|
211
|
-
16.86
|
212
|
-
16.79
|
213
|
-
16.75
|
214
|
-
16.78
|
215
|
-
17.06
|
216
|
-
17.05
|
217
|
-
17.04
|
218
|
-
17.02
|
219
|
-
17.01
|
220
|
-
17.02
|
221
|
-
17.05
|
222
|
-
17.07
|
223
|
-
17.08
|
224
|
-
17.09
|
225
|
-
17.1
|
226
|
-
17.11
|
227
|
-
17.09
|
228
|
-
17.1
|
229
|
-
17.1
|
230
|
-
17.12
|
231
|
-
17.17
|
232
|
-
17.16
|
233
|
-
17.17
|
234
|
-
17.18
|
235
|
-
17.18
|
236
|
-
17.18
|
237
|
-
17.17
|
238
|
-
17.15
|
239
|
-
17.14
|
240
|
-
17.13
|
241
|
-
17.14
|
242
|
-
17.13
|
243
|
-
17.12
|
244
|
-
17.12
|
245
|
-
17.09
|
246
|
-
17.09
|
247
|
-
17.11
|
248
|
-
17.06
|
249
|
-
17.07
|
250
|
-
17.06
|
251
|
-
17.07
|
252
|
-
17.06
|
253
|
-
17.09
|
254
|
-
17.05
|
255
|
-
17.04
|
256
|
-
17.04
|
257
|
-
16.99
|
258
|
-
17
|
259
|
-
17.03
|
260
|
-
17
|
261
|
-
16.97
|
262
|
-
16.96
|
263
|
-
16.98
|
264
|
-
16.98
|
265
|
-
16.98
|
266
|
-
17.03
|
267
|
-
17
|
268
|
-
17
|
269
|
-
17
|
270
|
-
17.02
|
271
|
-
17
|
272
|
-
17.02
|
273
|
-
17.01
|
274
|
-
17.02
|
275
|
-
17.03
|
276
|
-
17.03
|
277
|
-
17.01
|
278
|
-
17.03
|
279
|
-
17.03
|
280
|
-
17.03
|
281
|
-
17.01
|
282
|
-
17.03
|
283
|
-
17.05
|
284
|
-
17.05
|
285
|
-
17.08
|
286
|
-
17.04
|
287
|
-
17.01
|
288
|
-
17.03
|
289
|
-
17.02
|
290
|
-
17.03
|
291
|
-
17.04
|
292
|
-
17.05
|
293
|
-
17.37
|
294
|
-
17.35
|
295
|
-
17.34
|
296
|
-
17.32
|
297
|
-
17.29
|
298
|
-
17.29
|
299
|
-
17.22
|
300
|
-
17.26
|
301
|
-
17.3
|
302
|
-
17.34
|
303
|
-
17.33
|
304
|
-
17.39
|
305
|
-
17.4
|
306
|
-
17.39
|
307
|
-
17.48
|
308
|
-
17.5
|
309
|
-
17.47
|
310
|
-
17.43
|
311
|
-
17.4
|
312
|
-
17.42
|
313
|
-
17.46
|
314
|
-
17.48
|
315
|
-
17.48
|
316
|
-
17.46
|
317
|
-
17.46
|
318
|
-
17.45
|
319
|
-
17.43
|
320
|
-
17.44
|
321
|
-
17.48
|
322
|
-
17.43
|
323
|
-
17.45
|
324
|
-
17.47
|
325
|
-
17.46
|
326
|
-
17.46
|
327
|
-
17.48
|
328
|
-
17.48
|
329
|
-
17.48
|
330
|
-
17.46
|
331
|
-
17.5
|
332
|
-
17.55
|
333
|
-
17.58
|
334
|
-
17.57
|
335
|
-
17.56
|
336
|
-
17.59
|
337
|
-
17.61
|
338
|
-
17.62
|
339
|
-
17.63
|
340
|
-
17.62
|
341
|
-
17.61
|
342
|
-
17.61
|
343
|
-
17.62
|
344
|
-
17.64
|
345
|
-
17.65
|
346
|
-
17.61
|
347
|
-
17.62
|
348
|
-
17.66
|
349
|
-
17.65
|
350
|
-
17.64
|
351
|
-
17.63
|
352
|
-
17.64
|
353
|
-
17.64
|
354
|
-
17.64
|
355
|
-
17.63
|
356
|
-
17.61
|
357
|
-
17.61
|
358
|
-
17.62
|
359
|
-
17.63
|
360
|
-
17.64
|
361
|
-
17.65
|
362
|
-
17.66
|
363
|
-
17.68
|
364
|
-
17.69
|
365
|
-
17.69
|
366
|
-
17.69
|
367
|
-
17.66
|
368
|
-
17.69
|
369
|
-
17.69
|
370
|
-
17.62
|
371
|
-
17.68
|
372
|
-
17.64
|
373
|
-
17.65
|
374
|
-
17.61
|
375
|
-
17.52
|
376
|
-
17.56
|
377
|
-
17.55
|
378
|
-
17.55
|
379
|
-
17.48
|
380
|
-
17.45
|
381
|
-
17.46
|
382
|
-
17.46
|
383
|
-
17.44
|
384
|
-
17.47
|
385
|
-
17.5
|
386
|
-
17.49
|
387
|
-
17.5
|
388
|
-
17.53
|
389
|
-
17.53
|
390
|
-
17.54
|
391
|
-
17.51
|
392
|
-
17.51
|
393
|
-
17.53
|
394
|
-
17.53
|
395
|
-
17.53
|
396
|
-
17.55
|
397
|
-
17.55
|
398
|
-
17.54
|
399
|
-
17.56
|
400
|
-
17.59
|
401
|
-
17.57
|
402
|
-
17.58
|
403
|
-
17.58
|
404
|
-
17.57
|
405
|
-
17.59
|
406
|
-
17.57
|
407
|
-
17.55
|
408
|
-
17.51
|
409
|
-
17.51
|
410
|
-
17.52
|
411
|
-
17.52
|
412
|
-
17.53
|
413
|
-
17.55
|
414
|
-
17.59
|
415
|
-
17.61
|
416
|
-
17.61
|
417
|
-
17.6
|
418
|
-
17.6
|
419
|
-
17.62
|
420
|
-
17.65
|
421
|
-
17.62
|
422
|
-
17.6
|
423
|
-
17.6
|
424
|
-
17.62
|
425
|
-
17.61
|
426
|
-
17.62
|
427
|
-
17.63
|
428
|
-
17.64
|
429
|
-
17.65
|
430
|
-
17.61
|
431
|
-
17.62
|
432
|
-
17.64
|
433
|
-
17.63
|
434
|
-
17.62
|
435
|
-
17.6
|
436
|
-
17.57
|
437
|
-
17.57
|
438
|
-
17.6
|
439
|
-
17.59
|
440
|
-
17.6
|
441
|
-
17.61
|
442
|
-
17.61
|
443
|
-
17.63
|
444
|
-
17.63
|
445
|
-
17.59
|
446
|
-
17.58
|
447
|
-
17.76
|
448
|
-
17.79
|
449
|
-
17.76
|
450
|
-
17.73
|
451
|
-
17.74
|
452
|
-
17.73
|
453
|
-
17.67
|
454
|
-
17.66
|
455
|
-
17.66
|
456
|
-
17.64
|
457
|
-
17.63
|
458
|
-
17.62
|
459
|
-
17.61
|
460
|
-
17.6
|
461
|
-
17.61
|
462
|
-
17.61
|
463
|
-
17.6
|
464
|
-
17.6
|
465
|
-
17.64
|
466
|
-
17.65
|
467
|
-
17.65
|
468
|
-
17.63
|
469
|
-
17.61
|
470
|
-
17.6
|
471
|
-
17.63
|
472
|
-
17.63
|
473
|
-
17.62
|
474
|
-
17.63
|
475
|
-
17.64
|
476
|
-
17.62
|
477
|
-
17.63
|
478
|
-
17.65
|
479
|
-
17.64
|
480
|
-
17.6
|
481
|
-
17.59
|
482
|
-
17.59
|
483
|
-
17.58
|
484
|
-
17.58
|
485
|
-
17.6
|
486
|
-
17.6
|
487
|
-
17.6
|
488
|
-
17.6
|
489
|
-
17.6
|
490
|
-
17.58
|
491
|
-
17.59
|
492
|
-
17.6
|
493
|
-
17.6
|
494
|
-
17.6
|
495
|
-
17.59
|
496
|
-
17.59
|
497
|
-
17.58
|
498
|
-
17.58
|
499
|
-
17.65
|
500
|
-
17.65
|