nimbus 2.2.1 → 2.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +7 -0
  2. data/CODE_OF_CONDUCT.md +7 -0
  3. data/CONTRIBUTING.md +46 -0
  4. data/MIT-LICENSE.txt +1 -1
  5. data/README.md +131 -21
  6. data/bin/nimbus +2 -2
  7. data/lib/nimbus.rb +2 -6
  8. data/lib/nimbus/classification_tree.rb +9 -12
  9. data/lib/nimbus/configuration.rb +22 -22
  10. data/lib/nimbus/forest.rb +8 -8
  11. data/lib/nimbus/loss_functions.rb +11 -0
  12. data/lib/nimbus/regression_tree.rb +8 -10
  13. data/lib/nimbus/tree.rb +54 -12
  14. data/lib/nimbus/version.rb +1 -1
  15. data/spec/classification_tree_spec.rb +47 -47
  16. data/spec/configuration_spec.rb +55 -55
  17. data/spec/fixtures/{classification_config.yml → classification/config.yml} +3 -3
  18. data/spec/fixtures/classification/random_forest.yml +1174 -0
  19. data/spec/fixtures/{classification_testing.data → classification/testing.data} +0 -0
  20. data/spec/fixtures/{classification_training.data → classification/training.data} +0 -0
  21. data/spec/fixtures/{regression_config.yml → regression/config.yml} +4 -4
  22. data/spec/fixtures/regression/random_forest.yml +2737 -0
  23. data/spec/fixtures/{regression_testing.data → regression/testing.data} +0 -0
  24. data/spec/fixtures/{regression_training.data → regression/training.data} +0 -0
  25. data/spec/forest_spec.rb +39 -39
  26. data/spec/individual_spec.rb +3 -3
  27. data/spec/loss_functions_spec.rb +31 -13
  28. data/spec/nimbus_spec.rb +2 -2
  29. data/spec/regression_tree_spec.rb +44 -44
  30. data/spec/training_set_spec.rb +3 -3
  31. data/spec/tree_spec.rb +4 -4
  32. metadata +37 -34
  33. data/spec/fixtures/classification_random_forest.yml +0 -922
  34. data/spec/fixtures/regression_random_forest.yml +0 -1741
@@ -9,8 +9,8 @@ describe Nimbus::TrainingSet do
9
9
  i3 = Nimbus::Individual.new 3, 33.0, [0,2,1,0]
10
10
  @training_set = Nimbus::TrainingSet.new [i1, i3], {i1.id => 11.0, i3.id => 33.0}
11
11
 
12
- @training_set.individuals.should == [i1, i3]
13
- @training_set.ids_fenotypes.should == {i1.id => 11.0, i3.id => 33.0}
12
+ expect(@training_set.individuals).to eq [i1, i3]
13
+ expect(@training_set.ids_fenotypes).to eq ({i1.id => 11.0, i3.id => 33.0})
14
14
  end
15
15
 
16
16
  it "keeps track of ids of all individuals in the training set" do
@@ -19,7 +19,7 @@ describe Nimbus::TrainingSet do
19
19
  i3 = Nimbus::Individual.new 3, 33.0, [0,2,1,0]
20
20
  @training_set = Nimbus::TrainingSet.new [i1, i3], {i1.id => 11.0, i3.id => 33.0}
21
21
 
22
- @training_set.all_ids.should == [1,3]
22
+ expect(@training_set.all_ids).to eq [1,3]
23
23
  end
24
24
 
25
25
  end
@@ -5,15 +5,15 @@ describe Nimbus::Tree do
5
5
 
6
6
  before(:each) do
7
7
  @config = Nimbus::Configuration.new
8
- @config.load fixture_file('regression_config.yml')
8
+ @config.load fixture_file('regression/config.yml')
9
9
 
10
10
  @tree = Nimbus::Tree.new @config.tree
11
11
  end
12
12
 
13
13
  it "is initialized with tree config info" do
14
- @tree.snp_total_count.should == 200
15
- @tree.snp_sample_size.should == 60
16
- @tree.node_min_size.should == 5
14
+ expect(@tree.snp_total_count).to eq 200
15
+ expect(@tree.snp_sample_size).to eq 60
16
+ expect(@tree.node_min_size).to eq 5
17
17
  end
18
18
 
19
19
  end
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nimbus
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
5
- prerelease:
4
+ version: 2.3.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Juanjo Bazán
@@ -10,19 +9,22 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2012-07-30 00:00:00.000000000 Z
12
+ date: 2017-07-12 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: rspec
17
- requirement: &2161078680 !ruby/object:Gem::Requirement
18
- none: false
16
+ requirement: !ruby/object:Gem::Requirement
19
17
  requirements:
20
- - - ! '>='
18
+ - - ">="
21
19
  - !ruby/object:Gem::Version
22
- version: 2.11.0
20
+ version: 3.6.0
23
21
  type: :development
24
22
  prerelease: false
25
- version_requirements: *2161078680
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: 3.6.0
26
28
  description: Nimbus is a Ruby gem to implement Random Forest in a genomic selection
27
29
  context.
28
30
  email:
@@ -32,8 +34,12 @@ executables:
32
34
  extensions: []
33
35
  extra_rdoc_files: []
34
36
  files:
37
+ - CODE_OF_CONDUCT.md
38
+ - CONTRIBUTING.md
35
39
  - MIT-LICENSE.txt
36
40
  - README.md
41
+ - bin/nimbus
42
+ - lib/nimbus.rb
37
43
  - lib/nimbus/application.rb
38
44
  - lib/nimbus/classification_tree.rb
39
45
  - lib/nimbus/configuration.rb
@@ -45,17 +51,16 @@ files:
45
51
  - lib/nimbus/training_set.rb
46
52
  - lib/nimbus/tree.rb
47
53
  - lib/nimbus/version.rb
48
- - lib/nimbus.rb
49
54
  - spec/classification_tree_spec.rb
50
55
  - spec/configuration_spec.rb
51
- - spec/fixtures/classification_config.yml
52
- - spec/fixtures/classification_random_forest.yml
53
- - spec/fixtures/classification_testing.data
54
- - spec/fixtures/classification_training.data
55
- - spec/fixtures/regression_config.yml
56
- - spec/fixtures/regression_random_forest.yml
57
- - spec/fixtures/regression_testing.data
58
- - spec/fixtures/regression_training.data
56
+ - spec/fixtures/classification/config.yml
57
+ - spec/fixtures/classification/random_forest.yml
58
+ - spec/fixtures/classification/testing.data
59
+ - spec/fixtures/classification/training.data
60
+ - spec/fixtures/regression/config.yml
61
+ - spec/fixtures/regression/random_forest.yml
62
+ - spec/fixtures/regression/testing.data
63
+ - spec/fixtures/regression/training.data
59
64
  - spec/forest_spec.rb
60
65
  - spec/individual_spec.rb
61
66
  - spec/loss_functions_spec.rb
@@ -64,45 +69,43 @@ files:
64
69
  - spec/spec_helper.rb
65
70
  - spec/training_set_spec.rb
66
71
  - spec/tree_spec.rb
67
- - bin/nimbus
68
72
  homepage: http://nimbusgem.org
69
73
  licenses: []
74
+ metadata: {}
70
75
  post_install_message:
71
76
  rdoc_options:
72
- - --main
77
+ - "--main"
73
78
  - README.rdoc
74
- - --charset=UTF-8
79
+ - "--charset=UTF-8"
75
80
  require_paths:
76
81
  - lib
77
82
  required_ruby_version: !ruby/object:Gem::Requirement
78
- none: false
79
83
  requirements:
80
- - - ! '>='
84
+ - - ">="
81
85
  - !ruby/object:Gem::Version
82
86
  version: '0'
83
87
  required_rubygems_version: !ruby/object:Gem::Requirement
84
- none: false
85
88
  requirements:
86
- - - ! '>='
89
+ - - ">="
87
90
  - !ruby/object:Gem::Version
88
91
  version: '0'
89
92
  requirements: []
90
93
  rubyforge_project:
91
- rubygems_version: 1.8.15
94
+ rubygems_version: 2.6.12
92
95
  signing_key:
93
- specification_version: 3
96
+ specification_version: 4
94
97
  summary: Random Forest algorithm for Genomics
95
98
  test_files:
96
99
  - spec/classification_tree_spec.rb
97
100
  - spec/configuration_spec.rb
98
- - spec/fixtures/classification_config.yml
99
- - spec/fixtures/classification_random_forest.yml
100
- - spec/fixtures/classification_testing.data
101
- - spec/fixtures/classification_training.data
102
- - spec/fixtures/regression_config.yml
103
- - spec/fixtures/regression_random_forest.yml
104
- - spec/fixtures/regression_testing.data
105
- - spec/fixtures/regression_training.data
101
+ - spec/fixtures/classification/config.yml
102
+ - spec/fixtures/classification/random_forest.yml
103
+ - spec/fixtures/classification/testing.data
104
+ - spec/fixtures/classification/training.data
105
+ - spec/fixtures/regression/config.yml
106
+ - spec/fixtures/regression/random_forest.yml
107
+ - spec/fixtures/regression/testing.data
108
+ - spec/fixtures/regression/training.data
106
109
  - spec/forest_spec.rb
107
110
  - spec/individual_spec.rb
108
111
  - spec/loss_functions_spec.rb
@@ -1,922 +0,0 @@
1
- ---
2
- - 26:
3
- - 60:
4
- - 31:
5
- - 23:
6
- - '1'
7
- - 86:
8
- - '1'
9
- - '0'
10
- - '1'
11
- - 21:
12
- - '1'
13
- - '0'
14
- - 5:
15
- - '0'
16
- - '1'
17
- - '0'
18
- - 89:
19
- - '1'
20
- - 64:
21
- - '1'
22
- - '1'
23
- - '0'
24
- - 64:
25
- - '1'
26
- - '0'
27
- - '1'
28
- - 12:
29
- - 80:
30
- - 57:
31
- - '1'
32
- - '0'
33
- - '1'
34
- - '1'
35
- - '0'
36
- - '1'
37
- - '0'
38
- - 93:
39
- - 97:
40
- - 47:
41
- - 32:
42
- - '1'
43
- - '1'
44
- - '0'
45
- - 23:
46
- - '0'
47
- - '1'
48
- - '1'
49
- - '0'
50
- - 64:
51
- - '1'
52
- - '0'
53
- - '1'
54
- - 12:
55
- - '0'
56
- - '0'
57
- - '1'
58
- - 51:
59
- - 91:
60
- - 7:
61
- - '0'
62
- - '0'
63
- - '1'
64
- - '1'
65
- - 2:
66
- - '0'
67
- - '0'
68
- - '1'
69
- - 79:
70
- - '1'
71
- - '1'
72
- - '0'
73
- - '1'
74
- - 29:
75
- - '1'
76
- - '1'
77
- - 4:
78
- - '0'
79
- - '1'
80
- - '1'
81
- - 54:
82
- - 48:
83
- - 83:
84
- - '0'
85
- - '0'
86
- - 4:
87
- - '1'
88
- - '1'
89
- - '0'
90
- - 17:
91
- - '1'
92
- - '1'
93
- - '0'
94
- - 1:
95
- - '1'
96
- - '0'
97
- - '0'
98
- - 38:
99
- - 79:
100
- - '1'
101
- - '0'
102
- - '0'
103
- - 32:
104
- - '0'
105
- - '1'
106
- - '1'
107
- - 11:
108
- - '0'
109
- - '1'
110
- - '0'
111
- - 97:
112
- - '1'
113
- - '1'
114
- - 38:
115
- - '1'
116
- - '0'
117
- - '1'
118
- - 54:
119
- - 57:
120
- - 41:
121
- - 65:
122
- - '0'
123
- - '1'
124
- - '0'
125
- - '0'
126
- - '0'
127
- - 74:
128
- - 30:
129
- - '0'
130
- - '1'
131
- - '1'
132
- - 5:
133
- - '0'
134
- - '1'
135
- - '1'
136
- - 8:
137
- - '0'
138
- - '0'
139
- - '1'
140
- - 98:
141
- - 9:
142
- - '1'
143
- - '1'
144
- - '0'
145
- - 20:
146
- - '0'
147
- - '0'
148
- - '1'
149
- - 8:
150
- - '0'
151
- - '0'
152
- - '1'
153
- - 42:
154
- - 76:
155
- - 28:
156
- - '1'
157
- - '0'
158
- - 11:
159
- - '1'
160
- - '0'
161
- - '0'
162
- - 75:
163
- - '1'
164
- - '0'
165
- - '1'
166
- - 41:
167
- - '1'
168
- - '1'
169
- - '0'
170
- - 29:
171
- - 10:
172
- - '0'
173
- - '1'
174
- - '1'
175
- - 31:
176
- - '0'
177
- - '0'
178
- - '1'
179
- - '0'
180
- - 100:
181
- - '1'
182
- - 27:
183
- - '1'
184
- - '1'
185
- - '0'
186
- - 51:
187
- - '0'
188
- - '0'
189
- - '1'
190
- - 67:
191
- - 71:
192
- - 97:
193
- - '1'
194
- - '1'
195
- - 36:
196
- - '1'
197
- - '0'
198
- - '0'
199
- - 29:
200
- - '1'
201
- - '0'
202
- - 3:
203
- - '0'
204
- - '0'
205
- - '1'
206
- - 73:
207
- - '1'
208
- - '0'
209
- - '0'
210
- - 87:
211
- - 82:
212
- - '0'
213
- - '1'
214
- - '0'
215
- - '1'
216
- - '1'
217
- - 98:
218
- - '1'
219
- - '1'
220
- - 44:
221
- - '0'
222
- - '1'
223
- - '0'
224
- - 71:
225
- - 41:
226
- - 44:
227
- - '1'
228
- - 16:
229
- - '1'
230
- - '0'
231
- - '0'
232
- - '1'
233
- - 18:
234
- - 89:
235
- - '0'
236
- - '0'
237
- - 2:
238
- - '1'
239
- - '1'
240
- - '0'
241
- - 45:
242
- - '1'
243
- - '1'
244
- - '0'
245
- - 50:
246
- - '0'
247
- - '1'
248
- - '1'
249
- - 58:
250
- - '0'
251
- - '0'
252
- - 39:
253
- - '0'
254
- - '1'
255
- - '1'
256
- - 93:
257
- - 31:
258
- - '0'
259
- - '0'
260
- - 2:
261
- - 7:
262
- - '1'
263
- - '0'
264
- - '0'
265
- - '0'
266
- - '1'
267
- - 94:
268
- - 54:
269
- - '1'
270
- - '0'
271
- - '1'
272
- - '0'
273
- - 60:
274
- - '0'
275
- - '1'
276
- - 4:
277
- - '1'
278
- - '0'
279
- - '1'
280
- - 18:
281
- - 23:
282
- - '0'
283
- - '1'
284
- - '0'
285
- - 94:
286
- - '0'
287
- - '0'
288
- - '1'
289
- - 50:
290
- - '1'
291
- - '1'
292
- - '1'
293
- - 45:
294
- - 91:
295
- - '0'
296
- - '0'
297
- - 81:
298
- - '1'
299
- - '0'
300
- - '1'
301
- - 67:
302
- - 41:
303
- - '1'
304
- - '0'
305
- - '0'
306
- - 5:
307
- - '0'
308
- - '0'
309
- - '0'
310
- - 72:
311
- - '1'
312
- - '1'
313
- - '0'
314
- - 84:
315
- - '0'
316
- - '0'
317
- - '0'
318
- - 71:
319
- - 93:
320
- - 31:
321
- - 86:
322
- - 98:
323
- - '1'
324
- - '1'
325
- - '0'
326
- - '0'
327
- - 47:
328
- - '1'
329
- - '0'
330
- - '0'
331
- - 78:
332
- - 2:
333
- - '1'
334
- - '0'
335
- - '1'
336
- - 23:
337
- - '1'
338
- - '1'
339
- - 3:
340
- - '0'
341
- - '1'
342
- - '0'
343
- - '0'
344
- - 55:
345
- - 25:
346
- - '0'
347
- - '1'
348
- - '1'
349
- - 78:
350
- - 12:
351
- - '0'
352
- - '1'
353
- - '1'
354
- - '0'
355
- - '1'
356
- - '0'
357
- - 54:
358
- - 25:
359
- - '0'
360
- - '0'
361
- - 84:
362
- - '0'
363
- - '0'
364
- - '1'
365
- - 46:
366
- - 61:
367
- - '1'
368
- - '1'
369
- - '0'
370
- - 97:
371
- - '1'
372
- - 50:
373
- - '0'
374
- - '1'
375
- - '1'
376
- - '0'
377
- - 41:
378
- - '1'
379
- - '1'
380
- - '0'
381
- - 17:
382
- - 13:
383
- - '0'
384
- - '1'
385
- - '0'
386
- - '1'
387
- - 33:
388
- - '1'
389
- - '1'
390
- - '1'
391
- - 22:
392
- - '1'
393
- - 67:
394
- - 3:
395
- - '1'
396
- - '0'
397
- - '1'
398
- - '1'
399
- - 5:
400
- - '0'
401
- - '0'
402
- - '1'
403
- - 30:
404
- - 88:
405
- - '1'
406
- - '0'
407
- - '1'
408
- - '1'
409
- - '1'
410
- - 93:
411
- - 5:
412
- - 22:
413
- - 21:
414
- - '0'
415
- - '0'
416
- - '1'
417
- - 2:
418
- - '1'
419
- - '1'
420
- - '0'
421
- - 70:
422
- - '1'
423
- - '0'
424
- - '0'
425
- - 33:
426
- - '0'
427
- - '1'
428
- - 47:
429
- - '1'
430
- - 1:
431
- - '1'
432
- - '0'
433
- - '0'
434
- - '1'
435
- - 42:
436
- - '0'
437
- - '0'
438
- - 66:
439
- - '0'
440
- - '0'
441
- - '1'
442
- - 27:
443
- - 8:
444
- - 11:
445
- - '1'
446
- - '0'
447
- - '0'
448
- - 90:
449
- - 19:
450
- - '1'
451
- - '1'
452
- - '0'
453
- - '1'
454
- - '0'
455
- - '1'
456
- - 59:
457
- - 79:
458
- - '0'
459
- - '0'
460
- - '1'
461
- - 66:
462
- - '0'
463
- - '1'
464
- - '0'
465
- - 57:
466
- - '1'
467
- - '1'
468
- - '0'
469
- - 12:
470
- - 74:
471
- - 70:
472
- - '1'
473
- - '0'
474
- - '0'
475
- - '0'
476
- - '1'
477
- - 97:
478
- - '1'
479
- - '0'
480
- - '0'
481
- - 5:
482
- - '0'
483
- - '1'
484
- - '1'
485
- - 25:
486
- - 13:
487
- - '1'
488
- - 82:
489
- - '0'
490
- - '1'
491
- - '1'
492
- - '1'
493
- - 40:
494
- - 7:
495
- - '1'
496
- - '0'
497
- - '1'
498
- - 27:
499
- - '0'
500
- - '0'
501
- - '1'
502
- - 26:
503
- - '1'
504
- - '1'
505
- - 15:
506
- - '0'
507
- - '0'
508
- - '1'
509
- - 29:
510
- - 27:
511
- - '0'
512
- - '1'
513
- - '1'
514
- - 64:
515
- - '1'
516
- - '0'
517
- - '0'
518
- - 69:
519
- - '0'
520
- - '0'
521
- - '1'
522
- - 8:
523
- - 38:
524
- - 65:
525
- - 30:
526
- - '0'
527
- - '0'
528
- - '1'
529
- - '1'
530
- - '0'
531
- - 18:
532
- - '0'
533
- - 75:
534
- - '0'
535
- - '1'
536
- - '1'
537
- - '0'
538
- - '0'
539
- - 97:
540
- - 17:
541
- - 22:
542
- - '1'
543
- - '0'
544
- - '1'
545
- - '0'
546
- - 4:
547
- - '1'
548
- - '0'
549
- - '1'
550
- - 6:
551
- - 73:
552
- - '0'
553
- - '1'
554
- - '0'
555
- - 20:
556
- - '0'
557
- - 2:
558
- - '1'
559
- - '0'
560
- - '1'
561
- - 22:
562
- - '1'
563
- - '0'
564
- - '0'
565
- - '1'
566
- - 26:
567
- - 30:
568
- - '1'
569
- - '0'
570
- - '1'
571
- - '0'
572
- - '0'
573
- - 14:
574
- - 50:
575
- - 59:
576
- - '1'
577
- - '1'
578
- - 30:
579
- - '0'
580
- - '1'
581
- - '0'
582
- - 27:
583
- - '0'
584
- - '0'
585
- - '1'
586
- - 88:
587
- - 10:
588
- - '0'
589
- - '1'
590
- - '1'
591
- - '1'
592
- - '0'
593
- - 84:
594
- - '0'
595
- - '0'
596
- - 16:
597
- - '1'
598
- - '0'
599
- - '1'
600
- - 6:
601
- - 55:
602
- - '1'
603
- - '1'
604
- - '0'
605
- - '1'
606
- - 18:
607
- - '0'
608
- - '0'
609
- - 11:
610
- - '1'
611
- - '0'
612
- - '1'
613
- - 54:
614
- - 71:
615
- - 8:
616
- - 89:
617
- - '0'
618
- - 5:
619
- - '0'
620
- - '1'
621
- - '0'
622
- - 7:
623
- - '0'
624
- - '1'
625
- - '1'
626
- - 40:
627
- - 45:
628
- - '1'
629
- - '0'
630
- - '0'
631
- - 18:
632
- - '1'
633
- - '1'
634
- - '0'
635
- - 1:
636
- - '1'
637
- - '0'
638
- - '0'
639
- - 48:
640
- - 61:
641
- - '1'
642
- - '0'
643
- - '1'
644
- - 26:
645
- - '1'
646
- - '1'
647
- - '0'
648
- - 7:
649
- - '1'
650
- - '0'
651
- - '1'
652
- - 8:
653
- - 26:
654
- - '1'
655
- - '0'
656
- - 59:
657
- - '1'
658
- - '0'
659
- - '0'
660
- - 14:
661
- - 1:
662
- - '1'
663
- - '0'
664
- - '1'
665
- - 30:
666
- - '1'
667
- - '0'
668
- - 2:
669
- - '1'
670
- - '0'
671
- - '0'
672
- - 9:
673
- - '0'
674
- - '0'
675
- - 24:
676
- - '1'
677
- - '1'
678
- - '0'
679
- - 78:
680
- - '1'
681
- - 74:
682
- - 12:
683
- - '0'
684
- - '0'
685
- - '1'
686
- - '1'
687
- - '0'
688
- - '1'
689
- - 8:
690
- - '0'
691
- - 28:
692
- - '0'
693
- - 47:
694
- - '1'
695
- - '0'
696
- - '0'
697
- - 22:
698
- - '0'
699
- - '0'
700
- - 27:
701
- - '1'
702
- - '1'
703
- - '0'
704
- - 24:
705
- - 76:
706
- - 14:
707
- - '0'
708
- - '0'
709
- - '1'
710
- - '1'
711
- - '0'
712
- - 15:
713
- - '1'
714
- - '0'
715
- - '1'
716
- - 37:
717
- - '0'
718
- - '0'
719
- - '1'
720
- - 72:
721
- - 94:
722
- - 91:
723
- - 97:
724
- - '0'
725
- - '1'
726
- - '0'
727
- - '0'
728
- - 25:
729
- - '1'
730
- - '1'
731
- - '0'
732
- - 67:
733
- - 83:
734
- - '0'
735
- - '0'
736
- - 4:
737
- - '1'
738
- - '0'
739
- - '1'
740
- - 6:
741
- - '0'
742
- - '1'
743
- - '0'
744
- - '0'
745
- - 31:
746
- - 8:
747
- - 57:
748
- - '0'
749
- - '0'
750
- - '1'
751
- - '0'
752
- - '1'
753
- - '1'
754
- - 1:
755
- - '1'
756
- - '0'
757
- - '1'
758
- - 97:
759
- - 36:
760
- - 75:
761
- - '1'
762
- - '0'
763
- - '1'
764
- - 48:
765
- - 20:
766
- - '0'
767
- - '1'
768
- - '0'
769
- - '1'
770
- - 47:
771
- - '0'
772
- - '1'
773
- - '0'
774
- - '1'
775
- - 46:
776
- - 21:
777
- - '0'
778
- - '1'
779
- - '1'
780
- - 45:
781
- - '1'
782
- - '1'
783
- - '0'
784
- - 31:
785
- - '0'
786
- - '1'
787
- - '0'
788
- - 93:
789
- - 5:
790
- - '0'
791
- - '1'
792
- - '0'
793
- - 4:
794
- - '0'
795
- - '1'
796
- - '0'
797
- - 5:
798
- - '1'
799
- - '1'
800
- - '1'
801
- - 71:
802
- - 21:
803
- - 20:
804
- - '1'
805
- - '0'
806
- - '1'
807
- - '1'
808
- - 92:
809
- - '0'
810
- - '0'
811
- - '1'
812
- - 78:
813
- - 56:
814
- - '1'
815
- - 16:
816
- - '1'
817
- - '0'
818
- - '1'
819
- - '0'
820
- - 30:
821
- - '0'
822
- - '0'
823
- - '1'
824
- - 40:
825
- - '1'
826
- - 6:
827
- - '0'
828
- - '0'
829
- - '1'
830
- - '0'
831
- - 60:
832
- - '0'
833
- - 65:
834
- - '0'
835
- - '1'
836
- - '1'
837
- - 3:
838
- - '0'
839
- - '0'
840
- - '1'
841
- - 98:
842
- - 9:
843
- - '1'
844
- - 99:
845
- - '1'
846
- - 25:
847
- - '1'
848
- - '0'
849
- - '1'
850
- - 17:
851
- - '0'
852
- - '0'
853
- - '1'
854
- - 61:
855
- - 18:
856
- - '0'
857
- - '1'
858
- - '1'
859
- - '1'
860
- - 21:
861
- - '1'
862
- - '1'
863
- - '1'
864
- - 3:
865
- - 1:
866
- - '1'
867
- - '1'
868
- - '1'
869
- - 52:
870
- - '1'
871
- - 7:
872
- - '0'
873
- - '1'
874
- - '0'
875
- - 21:
876
- - 13:
877
- - '0'
878
- - '1'
879
- - '0'
880
- - '1'
881
- - '0'
882
- - 71:
883
- - '1'
884
- - 17:
885
- - '0'
886
- - '0'
887
- - '1'
888
- - 27:
889
- - '1'
890
- - '0'
891
- - '1'
892
- - 31:
893
- - 35:
894
- - 6:
895
- - '1'
896
- - '0'
897
- - '1'
898
- - 14:
899
- - '1'
900
- - '0'
901
- - 100:
902
- - '0'
903
- - '1'
904
- - '0'
905
- - '0'
906
- - 39:
907
- - 32:
908
- - '0'
909
- - '1'
910
- - '0'
911
- - 37:
912
- - '0'
913
- - '0'
914
- - '1'
915
- - '1'
916
- - 18:
917
- - '0'
918
- - '1'
919
- - 4:
920
- - '1'
921
- - '0'
922
- - '1'