Skip to content

Instantly share code, notes, and snippets.

@thulse
Last active November 9, 2017 02:26
Show Gist options
  • Save thulse/8b03f34005eb889d9d44d18c3a3986e0 to your computer and use it in GitHub Desktop.
Save thulse/8b03f34005eb889d9d44d18c3a3986e0 to your computer and use it in GitHub Desktop.
ITS Toggle Scatterplot v3
license: mit

Part of the video course: D3.js in Motion.

An example scatter plot with color legend using D3 and d3-legend.

This shows the "Iris" dataset. Originally published at UCI Machine Learning Repository: Iris Data Set, this small dataset from 1936 is often used for testing out machine learning algorithms and visualizations. Each row of the table represents an iris flower, including its species and dimensions of its botanical parts, sepal and petal, in centimeters.

forked from curran's block: Stylized Scatter Plot with Color Legend

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-legend/2.24.0/d3-legend.min.js"></script>
<title>Basic Scatter Plot</title>
<style>
body {
margin: 0px;
}
.domain {
display: none;
}
.tick line {
stroke: #C0C0BB;
}
.tick text, .legendCells text {
fill: #8E8883;
font-size: 12pt;
font-family: calibri;
}
.axis-label, .legend-label {
fill: #635F5D;
font-size: 20pt;
font-family: calibri;
}
</style>
</head>
<body>
<svg width="960" height="500"></svg>
<script>
const xValue = d => d.problemsCompleted;
const xLabel = 'Number of Problems Completed';
const yValue = d => d.value;
const yLabel = 'Value';
const colorValue = d => d.category;
const colorLabel = 'Learning Components';
const margin = { left: 120, right: 300, top: 20, bottom: 220 };
const svg = d3.select('svg');
const width = svg.attr('width');
const height = svg.attr('height');
const innerWidth = width - margin.left - margin.right;
const innerHeight = height - margin.top - margin.bottom;
const g = svg.append('g')
.attr('transform', `translate(${margin.left},${margin.top})`);
const xAxisG = g.append('g')
.attr('transform', `translate(0, ${innerHeight})`);
const yAxisG = g.append('g');
const colorLegendG = g.append('g')
.attr('transform', `translate(${innerWidth + 60}, 150)`);
xAxisG.append('text')
.attr('class', 'axis-label')
.attr('x', innerWidth / 2)
.attr('y', 100)
.text(xLabel);
yAxisG.append('text')
.attr('class', 'axis-label')
.attr('x', -innerHeight / 2)
.attr('y', -60)
.attr('transform', `rotate(-90)`)
.style('text-anchor', 'middle')
.text(yLabel);
colorLegendG.append('text')
.attr('class', 'legend-label')
.attr('x', -30)
.attr('y', -40)
.text(colorLabel)
.text(function(d) { return d; });
const xScale = d3.scaleLinear();
const yScale = d3.scaleLinear();
const colorScale = d3.scaleOrdinal()
.range(d3.schemeCategory10);
// .domain(["correct", "MCAS Score", "time", "attempts", "hints"])
//.range(["#ff4800", "#009933" , "#0000FF", "#ff00a9","#ffd000"]);
const xAxis = d3.axisBottom()
.scale(xScale)
.tickPadding(15)
.tickSize(-innerHeight);
const yAxis = d3.axisLeft()
.scale(yScale)
.ticks(5)
.tickPadding(15)
.tickSize(-innerWidth);
const colorLegend = d3.legendColor()
.scale(colorScale)
.shape('rect')
// .orient('horizontal')
// .labelWrap(30)
// .shapeWidth(40)
// .labelAlign("start")
// .shapePadding(15)
;
colorLegendG.append('rect')
.style ("cursor", "pointer")
;
// .on("click", function (d) {
// dot.filter(function () {
// return this.dataset.category === d;
// })
// .transition().duration(750)
// .style("opacity", function () {
// console.log(this.style.opacity);
// return (parseInt(this.style.opacity)) ? 0 : 1;
// });
// });
const row = d => {
d.problemsCompleted = +d.problemsCompleted;
d.value = +d.value;
return d;
};
d3.csv('itsLearning.csv', row, data => {
xScale
.domain(d3.extent(data, xValue))
.range([0, innerWidth])
.nice();
yScale
.domain(d3.extent(data, yValue))
.range([innerHeight, 0])
.nice();
g.selectAll('circle').data(data)
.enter().append('circle')
.attr('cx', d => xScale(xValue(d)))
.attr('cy', d => yScale(yValue(d)))
.attr('fill', d => colorScale(colorValue(d)))
.attr('fill-opacity', 0.9)
.attr('stroke', 'black')
.attr('r', 4)
;
xAxisG.call(xAxis);
yAxisG.call(yAxis);
colorLegendG.call(colorLegend)
.selectAll('.cell text')
.attr('dy', '0.1em');
});
</script>
</body>
</html>
problemsCompleted category value
97 correct 0.597938144
67 correct 0.52238806
67 correct 0.656716418
61 correct 0.639344262
61 correct 0.868852459
61 correct 0.672131148
57 correct 0.631578947
56 correct 0.785714286
55 correct 0.818181818
55 correct 0.8
51 correct 0.333333333
50 correct 0.54
50 correct 0.5
49 correct 0.775510204
48 correct 0.791666667
45 correct 0.777777778
43 correct 0.488372093
42 correct 0.642857143
41 correct 0.634146341
41 correct 0.536585366
41 correct 0.219512195
41 correct 0.43902439
40 correct 0.9
40 correct 0.65
40 correct 0.95
40 correct 0.425
40 correct 0.425
39 correct 0.512820513
38 correct 0.631578947
38 correct 0.657894737
38 correct 0.605263158
38 correct 0.394736842
37 correct 0.837837838
37 correct 0.756756757
37 correct 0.540540541
36 correct 0.833333333
36 correct 0.861111111
36 correct 0.472222222
36 correct 0.638888889
36 correct 0.527777778
36 correct 0.555555556
35 correct 0.6
35 correct 0.685714286
34 correct 0.5
34 correct 0.441176471
34 correct 0.676470588
33 correct 0.545454545
33 correct 0.636363636
33 correct 0.636363636
33 correct 0.424242424
33 correct 0.575757576
32 correct 0.875
32 correct 0.71875
32 correct 0.59375
32 correct 0.71875
32 correct 0.90625
32 correct 0.3125
32 correct 0.71875
32 correct 0.71875
32 correct 0.46875
31 correct 0.677419355
31 correct 0.451612903
31 correct 0.516129032
31 correct 0.64516129
31 correct 0.612903226
31 correct 0.387096774
31 correct 0.64516129
31 correct 0.677419355
31 correct 0.225806452
31 correct 0.516129032
30 correct 0.833333333
30 correct 0.566666667
30 correct 0.7
29 correct 0.793103448
29 correct 0.620689655
29 correct 0.448275862
29 correct 0.551724138
29 correct 0.379310345
28 correct 0.678571429
28 correct 0.535714286
28 correct 0.642857143
28 correct 0.678571429
28 correct 0.535714286
27 correct 0.481481481
27 correct 0.592592593
27 correct 0.814814815
27 correct 0.555555556
27 correct 0.518518519
27 correct 0.740740741
27 correct 0.481481481
27 correct 0.555555556
26 correct 0.5
26 correct 0.5
26 correct 0.461538462
25 correct 0.76
25 correct 0.44
25 correct 0.44
25 correct 0.32
24 correct 0.708333333
24 correct 0.416666667
24 correct 0.541666667
24 correct 0.541666667
24 correct 0.708333333
24 correct 0.583333333
24 correct 0.625
23 correct 0.695652174
23 correct 0.652173913
23 correct 0.565217391
22 correct 0.636363636
22 correct 0.727272727
22 correct 0.590909091
22 correct 0.454545455
22 correct 0.363636364
22 correct 0.227272727
21 correct 0.619047619
21 correct 0.666666667
21 correct 0.80952381
20 correct 0.85
20 correct 0.65
20 correct 0.8
20 correct 0.55
20 correct 0.45
20 correct 0.45
20 correct 0.7
19 correct 0.789473684
19 correct 0.684210526
19 correct 0.736842105
19 correct 0.684210526
19 correct 0.368421053
18 correct 0.722222222
18 correct 0.222222222
17 correct 0.588235294
17 correct 0.529411765
16 correct 0.625
16 correct 0.875
16 correct 0.625
16 correct 0.4375
16 correct 0.5
15 correct 1
15 correct 0.533333333
15 correct 0.666666667
15 correct 0.466666667
14 correct 0.785714286
14 correct 0.5
14 correct 0.5
13 correct 0.846153846
13 correct 0.615384615
13 correct 0.461538462
12 correct 0.416666667
12 correct 0.666666667
11 correct 0.363636364
9 correct 0.666666667
8 correct 0.375
73 correct 0.452054795
72 correct 0.527777778
72 correct 0.680555556
71 correct 0.563380282
67 correct 0.611940299
66 correct 0.439393939
60 correct 0.3
60 correct 0.683333333
60 correct 0.266666667
58 correct 0.482758621
54 correct 0.388888889
52 correct 0.557692308
52 correct 0.461538462
50 correct 0.46
47 correct 0.446808511
46 correct 0.391304348
45 correct 0.333333333
45 correct 0.511111111
45 correct 0.466666667
45 correct 0.288888889
45 correct 0.355555556
43 correct 0.651162791
42 correct 0.595238095
41 correct 0.414634146
41 correct 0.487804878
40 correct 0.325
39 correct 0.512820513
39 correct 0.487179487
39 correct 0.461538462
39 correct 0.461538462
39 correct 0.512820513
38 correct 0.315789474
38 correct 0.552631579
37 correct 0.378378378
37 correct 0.405405405
37 correct 0.513513514
37 correct 0.432432432
37 correct 0.297297297
36 correct 0.527777778
35 correct 0.571428571
35 correct 0.228571429
35 correct 0.257142857
34 correct 0.529411765
34 correct 0.235294118
34 correct 0.5
34 correct 0.529411765
33 correct 0.636363636
33 correct 0.575757576
33 correct 0.333333333
33 correct 0.575757576
33 correct 0.545454545
33 correct 0.454545455
33 correct 0.333333333
33 correct 0.515151515
33 correct 0.303030303
32 correct 0.34375
32 correct 0.40625
32 correct 0.40625
32 correct 0.4375
31 correct 0.580645161
30 correct 0.466666667
30 correct 0.333333333
29 correct 0.448275862
29 correct 0.344827586
29 correct 0.413793103
29 correct 0.551724138
28 correct 0.607142857
28 correct 0.464285714
28 correct 0.464285714
28 correct 0.464285714
28 correct 0.25
28 correct 0.535714286
27 correct 0.407407407
27 correct 0.481481481
27 correct 0.37037037
27 correct 0.296296296
26 correct 0.307692308
26 correct 0.769230769
26 correct 0.423076923
26 correct 0.346153846
25 correct 0.64
25 correct 0.56
25 correct 0.84
25 correct 0.52
25 correct 0.44
25 correct 0.64
25 correct 0.24
24 correct 0.625
24 correct 0.333333333
24 correct 0.333333333
24 correct 0.375
24 correct 0.416666667
23 correct 0.565217391
23 correct 0.434782609
23 correct 0.130434783
23 correct 0.608695652
22 correct 0.409090909
22 correct 0.363636364
22 correct 0.409090909
22 correct 0.454545455
22 correct 0.454545455
22 correct 0.409090909
22 correct 0.545454545
21 correct 0.523809524
21 correct 0.666666667
21 correct 0.428571429
21 correct 0.285714286
21 correct 0.523809524
20 correct 0.6
20 correct 0.6
20 correct 0.65
20 correct 0.2
20 correct 0.4
19 correct 0.105263158
19 correct 0.421052632
19 correct 0.368421053
18 correct 0.333333333
18 correct 0.444444444
18 correct 0.388888889
18 correct 0.444444444
17 correct 0.470588235
17 correct 0.352941176
17 correct 0.294117647
16 correct 0.25
16 correct 0.375
16 correct 0.0625
15 correct 0.466666667
15 correct 0.533333333
15 correct 0.333333333
14 correct 0.428571429
14 correct 0.571428571
14 correct 0.285714286
14 correct 0.5
12 correct 0.166666667
11 correct 0.272727273
11 correct 0.454545455
11 correct 0.181818182
9 correct 0.777777778
9 correct 0.666666667
8 correct 0.5
106 correct 0.235849057
87 correct 0.471264368
83 correct 0.361445783
79 correct 0.189873418
77 correct 0.298701299
74 correct 0.648648649
73 correct 0.356164384
71 correct 0.450704225
70 correct 0.457142857
70 correct 0.714285714
70 correct 0.285714286
70 correct 0.228571429
67 correct 0.597014925
64 correct 0.265625
64 correct 0.375
60 correct 0.233333333
59 correct 0.542372881
58 correct 0.344827586
58 correct 0.672413793
57 correct 0.298245614
54 correct 0.333333333
54 correct 0.240740741
53 correct 0.264150943
53 correct 0.471698113
52 correct 0.653846154
51 correct 0.137254902
50 correct 0.26
50 correct 0.16
50 correct 0.24
50 correct 0.36
48 correct 0.333333333
46 correct 0.391304348
46 correct 0.282608696
46 correct 0.304347826
46 correct 0.195652174
45 correct 0.444444444
45 correct 0.333333333
45 correct 0.333333333
45 correct 0.311111111
44 correct 0.227272727
44 correct 0.363636364
44 correct 0.454545455
44 correct 0.25
43 correct 0.441860465
43 correct 0.325581395
43 correct 0.534883721
42 correct 0.380952381
42 correct 0.285714286
42 correct 0.30952381
42 correct 0.285714286
42 correct 0.261904762
42 correct 0.285714286
41 correct 0.390243902
41 correct 0.146341463
41 correct 0.56097561
41 correct 0.219512195
40 correct 0.6
40 correct 0.375
40 correct 0.475
40 correct 0.375
39 correct 0.128205128
39 correct 0.205128205
39 correct 0.102564103
39 correct 0.641025641
38 correct 0.421052632
38 correct 0.315789474
38 correct 0.578947368
38 correct 0.157894737
38 correct 0.5
38 correct 0.394736842
38 correct 0.789473684
38 correct 0.394736842
38 correct 0.289473684
38 correct 0.631578947
38 correct 0.315789474
38 correct 0.394736842
37 correct 0.432432432
37 correct 0.567567568
37 correct 0.189189189
37 correct 0.108108108
36 correct 0.222222222
36 correct 0.444444444
36 correct 0.277777778
36 correct 0.333333333
36 correct 0.194444444
36 correct 0.472222222
36 correct 0.472222222
36 correct 0.194444444
36 correct 0.444444444
36 correct 0.222222222
36 correct 0.277777778
35 correct 0.428571429
35 correct 0.314285714
35 correct 0.371428571
35 correct 0.2
35 correct 0.514285714
35 correct 0.485714286
34 correct 0.676470588
34 correct 0.470588235
34 correct 0.588235294
34 correct 0.147058824
34 correct 0.529411765
34 correct 0.117647059
34 correct 0.264705882
33 correct 0.303030303
33 correct 0.424242424
33 correct 0.242424242
33 correct 0.303030303
33 correct 0.272727273
33 correct 0.151515152
33 correct 0.121212121
33 correct 0.363636364
33 correct 0.181818182
32 correct 0.59375
32 correct 0.21875
32 correct 0.34375
32 correct 0.25
32 correct 0.09375
32 correct 0.40625
32 correct 0.28125
32 correct 0.375
32 correct 0.28125
32 correct 0.21875
31 correct 0.322580645
31 correct 0.322580645
31 correct 0.161290323
31 correct 0.225806452
31 correct 0.612903226
31 correct 0.419354839
31 correct 0.741935484
31 correct 0.322580645
31 correct 0.419354839
31 correct 0.35483871
31 correct 0.387096774
31 correct 0.193548387
30 correct 0.266666667
30 correct 0.333333333
30 correct 0.2
30 correct 0.4
30 correct 0.266666667
30 correct 0.333333333
30 correct 0.266666667
30 correct 0.133333333
29 correct 0.24137931
29 correct 0.413793103
29 correct 0.24137931
29 correct 0.344827586
29 correct 0.344827586
29 correct 0.103448276
29 correct 0.310344828
29 correct 0.275862069
29 correct 0.275862069
29 correct 0.344827586
29 correct 0.172413793
29 correct 0.103448276
29 correct 0.068965517
28 correct 0.428571429
28 correct 0.392857143
28 correct 0.392857143
28 correct 0.535714286
28 correct 0.392857143
28 correct 0.285714286
28 correct 0.357142857
28 correct 0.607142857
28 correct 0.321428571
27 correct 0.555555556
27 correct 0.333333333
27 correct 0.444444444
27 correct 0.259259259
27 correct 0.222222222
27 correct 0.222222222
27 correct 0.407407407
26 correct 0.230769231
26 correct 0.5
26 correct 0.423076923
26 correct 0.384615385
26 correct 0.5
26 correct 0.230769231
26 correct 0.538461538
26 correct 0.269230769
26 correct 0.346153846
26 correct 0.269230769
25 correct 0.52
25 correct 0.28
25 correct 0.24
25 correct 0.44
25 correct 0.4
24 correct 0.458333333
24 correct 0.5
24 correct 0.458333333
24 correct 0.583333333
24 correct 0.166666667
24 correct 0.25
24 correct 0.416666667
24 correct 0.166666667
24 correct 0
24 correct 0.25
24 correct 0.375
24 correct 0.291666667
23 correct 0.391304348
23 correct 0.391304348
23 correct 0.173913043
23 correct 0.52173913
23 correct 0.434782609
23 correct 0.391304348
22 correct 0.272727273
22 correct 0.181818182
22 correct 0.409090909
22 correct 0.454545455
22 correct 0.181818182
22 correct 0.272727273
22 correct 0.272727273
22 correct 0.454545455
22 correct 0.272727273
21 correct 0.428571429
21 correct 0.476190476
21 correct 0.523809524
21 correct 0.142857143
21 correct 0.19047619
21 correct 0.428571429
20 correct 0.2
20 correct 0.3
20 correct 0.4
20 correct 0.4
20 correct 0.5
20 correct 0.25
20 correct 0.65
20 correct 0.35
20 correct 0.5
20 correct 0.15
20 correct 0.35
20 correct 0.35
20 correct 0.45
20 correct 0.3
19 correct 0.473684211
19 correct 0.526315789
19 correct 0.315789474
19 correct 0.157894737
19 correct 0.052631579
19 correct 0.631578947
18 correct 0.055555556
18 correct 0.5
18 correct 0.277777778
18 correct 0.5
18 correct 0.111111111
17 correct 0.352941176
17 correct 0.411764706
16 correct 0.625
16 correct 0.3125
16 correct 0.1875
16 correct 0.25
16 correct 0.25
16 correct 0.3125
16 correct 0.5625
16 correct 0.25
16 correct 0.4375
16 correct 0.25
15 correct 0.133333333
15 correct 0.2
15 correct 0.333333333
15 correct 0.466666667
15 correct 0.466666667
15 correct 0.4
15 correct 0.133333333
15 correct 0.2
14 correct 0.142857143
14 correct 0.428571429
14 correct 0.357142857
14 correct 0.142857143
13 correct 0.615384615
13 correct 0.307692308
13 correct 0.230769231
13 correct 0.538461538
12 correct 0.5
12 correct 0.333333333
12 correct 0.333333333
12 correct 0.25
12 correct 0.083333333
11 correct 0.363636364
11 correct 0.545454545
11 correct 0.272727273
11 correct 0.363636364
10 correct 0.1
9 correct 0.222222222
9 correct 0.555555556
9 correct 0.222222222
8 correct 0.25
7 correct 0.714285714
7 correct 0.142857143
98 correct 0.397959184
88 correct 0.272727273
85 correct 0.352941176
80 correct 0.375
77 correct 0.220779221
63 correct 0.238095238
60 correct 0.333333333
57 correct 0.666666667
57 correct 0.228070175
57 correct 0.438596491
55 correct 0.290909091
54 correct 0.351851852
54 correct 0.185185185
53 correct 0.320754717
53 correct 0.150943396
52 correct 0.211538462
52 correct 0.192307692
50 correct 0.06
48 correct 0.1875
47 correct 0.170212766
47 correct 0.212765957
46 correct 0.413043478
46 correct 0.217391304
46 correct 0.434782609
46 correct 0.260869565
45 correct 0.133333333
45 correct 0.4
45 correct 0.466666667
43 correct 0.651162791
42 correct 0.238095238
41 correct 0.56097561
41 correct 0.317073171
41 correct 0.463414634
41 correct 0.658536585
41 correct 0.243902439
40 correct 0.425
40 correct 0.25
40 correct 0.275
40 correct 0.2
40 correct 0.225
40 correct 0.425
40 correct 0.225
39 correct 0.333333333
39 correct 0.282051282
38 correct 0.131578947
37 correct 0.189189189
37 correct 0.081081081
37 correct 0.243243243
36 correct 0.5
36 correct 0.277777778
36 correct 0.444444444
36 correct 0.166666667
36 correct 0.222222222
36 correct 0.555555556
35 correct 0.2
35 correct 0.285714286
34 correct 0.529411765
34 correct 0.176470588
34 correct 0.117647059
34 correct 0.264705882
34 correct 0.205882353
33 correct 0.424242424
33 correct 0.424242424
33 correct 0.515151515
33 correct 0.303030303
33 correct 0.121212121
33 correct 0.272727273
32 correct 0.3125
32 correct 0.28125
31 correct 0.387096774
31 correct 0.741935484
31 correct 0.193548387
31 correct 0.290322581
30 correct 0.433333333
30 correct 0.166666667
30 correct 0.1
30 correct 0.166666667
29 correct 0.137931034
29 correct 0.344827586
29 correct 0.206896552
29 correct 0.24137931
29 correct 0.310344828
29 correct 0.206896552
29 correct 0.344827586
29 correct 0.344827586
28 correct 0.392857143
28 correct 0.285714286
28 correct 0.142857143
27 correct 0.222222222
27 correct 0.333333333
26 correct 0.307692308
26 correct 0.307692308
26 correct 0.153846154
26 correct 0.230769231
26 correct 0.076923077
26 correct 0.076923077
26 correct 0.230769231
25 correct 0.36
25 correct 0.32
25 correct 0.16
25 correct 0.24
25 correct 0.28
25 correct 0.12
25 correct 0.48
25 correct 0.36
25 correct 0.12
24 correct 0.625
24 correct 0.166666667
24 correct 0.375
24 correct 0.083333333
24 correct 0.125
24 correct 0.166666667
23 correct 0.565217391
23 correct 0.173913043
23 correct 0.260869565
23 correct 0.347826087
23 correct 0.173913043
22 correct 0.5
22 correct 0.409090909
22 correct 0.363636364
21 correct 0.380952381
21 correct 0.238095238
21 correct 0.238095238
21 correct 0.238095238
20 correct 0.45
20 correct 0.2
20 correct 0.2
20 correct 0.1
19 correct 0.578947368
19 correct 0.263157895
19 correct 0.157894737
19 correct 0.263157895
19 correct 0.157894737
19 correct 0.526315789
19 correct 0.157894737
18 correct 0.222222222
18 correct 0.055555556
18 correct 0.333333333
17 correct 0.411764706
17 correct 0.294117647
17 correct 0.411764706
17 correct 0.705882353
17 correct 0.176470588
16 correct 0.375
16 correct 0.25
16 correct 0.25
16 correct 0.125
16 correct 0.1875
16 correct 0.1875
16 correct 0.3125
15 correct 0.533333333
15 correct 0.2
15 correct 0.133333333
14 correct 0.357142857
14 correct 0.285714286
14 correct 0.428571429
14 correct 0.214285714
14 correct 0.428571429
14 correct 0.428571429
13 correct 0.615384615
13 correct 0.230769231
13 correct 0.307692308
13 correct 0.307692308
13 correct 0.384615385
11 correct 0.272727273
11 correct 0.636363636
11 correct 0.363636364
11 correct 0.454545455
11 correct 0.181818182
11 correct 0.363636364
10 correct 0
10 correct 0.1
10 correct 0.3
10 correct 0.1
10 correct 0
10 correct 0.8
9 correct 0.444444444
9 correct 0.111111111
6 correct 0.333333333
2 correct 0
1 correct 0
106 MCAS Score 21
98 MCAS Score 13
97 MCAS Score 46
88 MCAS Score 20
87 MCAS Score 28
85 MCAS Score 10
83 MCAS Score 31
80 MCAS Score 16
79 MCAS Score 22
77 MCAS Score 23
77 MCAS Score 19
74 MCAS Score 34
73 MCAS Score 39
73 MCAS Score 25
72 MCAS Score 38
72 MCAS Score 38
71 MCAS Score 35
71 MCAS Score 30
70 MCAS Score 32
70 MCAS Score 29
70 MCAS Score 24
70 MCAS Score 22
67 MCAS Score 45
67 MCAS Score 43
67 MCAS Score 35
67 MCAS Score 30
66 MCAS Score 42
64 MCAS Score 27
64 MCAS Score 21
63 MCAS Score 15
61 MCAS Score 52
61 MCAS Score 52
61 MCAS Score 49
60 MCAS Score 40
60 MCAS Score 38
60 MCAS Score 36
60 MCAS Score 23
60 MCAS Score 19
59 MCAS Score 30
58 MCAS Score 38
58 MCAS Score 33
58 MCAS Score 28
57 MCAS Score 52
57 MCAS Score 27
57 MCAS Score 16
57 MCAS Score 12
57 MCAS Score 11
56 MCAS Score 46
55 MCAS Score 52
55 MCAS Score 45
55 MCAS Score 16
54 MCAS Score 35
54 MCAS Score 28
54 MCAS Score 27
54 MCAS Score 15
54 MCAS Score 7
53 MCAS Score 30
53 MCAS Score 24
53 MCAS Score 13
53 MCAS Score 9
52 MCAS Score 38
52 MCAS Score 37
52 MCAS Score 26
52 MCAS Score 20
52 MCAS Score 16
51 MCAS Score 43
51 MCAS Score 22
50 MCAS Score 48
50 MCAS Score 43
50 MCAS Score 41
50 MCAS Score 34
50 MCAS Score 30
50 MCAS Score 30
50 MCAS Score 22
50 MCAS Score 16
49 MCAS Score 49
48 MCAS Score 53
48 MCAS Score 28
48 MCAS Score 19
47 MCAS Score 41
47 MCAS Score 19
47 MCAS Score 10
46 MCAS Score 35
46 MCAS Score 29
46 MCAS Score 29
46 MCAS Score 21
46 MCAS Score 21
46 MCAS Score 15
46 MCAS Score 14
46 MCAS Score 14
46 MCAS Score 11
45 MCAS Score 49
45 MCAS Score 40
45 MCAS Score 39
45 MCAS Score 39
45 MCAS Score 35
45 MCAS Score 35
45 MCAS Score 31
45 MCAS Score 31
45 MCAS Score 26
45 MCAS Score 25
45 MCAS Score 20
45 MCAS Score 18
45 MCAS Score 10
44 MCAS Score 31
44 MCAS Score 31
44 MCAS Score 27
44 MCAS Score 26
43 MCAS Score 43
43 MCAS Score 40
43 MCAS Score 34
43 MCAS Score 24
43 MCAS Score 24
43 MCAS Score 18
42 MCAS Score 44
42 MCAS Score 38
42 MCAS Score 30
42 MCAS Score 28
42 MCAS Score 27
42 MCAS Score 27
42 MCAS Score 22
42 MCAS Score 21
42 MCAS Score 18
41 MCAS Score 50
41 MCAS Score 49
41 MCAS Score 48
41 MCAS Score 46
41 MCAS Score 36
41 MCAS Score 35
41 MCAS Score 28
41 MCAS Score 28
41 MCAS Score 25
41 MCAS Score 25
41 MCAS Score 19
41 MCAS Score 19
41 MCAS Score 15
41 MCAS Score 13
41 MCAS Score 13
40 MCAS Score 53
40 MCAS Score 51
40 MCAS Score 49
40 MCAS Score 46
40 MCAS Score 45
40 MCAS Score 37
40 MCAS Score 31
40 MCAS Score 31
40 MCAS Score 28
40 MCAS Score 23
40 MCAS Score 19
40 MCAS Score 18
40 MCAS Score 18
40 MCAS Score 14
40 MCAS Score 12
40 MCAS Score 11
40 MCAS Score 11
39 MCAS Score 44
39 MCAS Score 41
39 MCAS Score 40
39 MCAS Score 37
39 MCAS Score 36
39 MCAS Score 36
39 MCAS Score 29
39 MCAS Score 25
39 MCAS Score 22
39 MCAS Score 21
39 MCAS Score 15
39 MCAS Score 13
38 MCAS Score 51
38 MCAS Score 47
38 MCAS Score 46
38 MCAS Score 43
38 MCAS Score 41
38 MCAS Score 40
38 MCAS Score 34
38 MCAS Score 34
38 MCAS Score 32
38 MCAS Score 31
38 MCAS Score 31
38 MCAS Score 30
38 MCAS Score 29
38 MCAS Score 27
38 MCAS Score 27
38 MCAS Score 25
38 MCAS Score 23
38 MCAS Score 21
38 MCAS Score 9
37 MCAS Score 52
37 MCAS Score 45
37 MCAS Score 44
37 MCAS Score 41
37 MCAS Score 39
37 MCAS Score 39
37 MCAS Score 39
37 MCAS Score 35
37 MCAS Score 30
37 MCAS Score 28
37 MCAS Score 23
37 MCAS Score 21
37 MCAS Score 17
37 MCAS Score 14
37 MCAS Score 12
36 MCAS Score 52
36 MCAS Score 51
36 MCAS Score 49
36 MCAS Score 49
36 MCAS Score 47
36 MCAS Score 44
36 MCAS Score 36
36 MCAS Score 34
36 MCAS Score 30
36 MCAS Score 28
36 MCAS Score 28
36 MCAS Score 27
36 MCAS Score 25
36 MCAS Score 25
36 MCAS Score 24
36 MCAS Score 23
36 MCAS Score 23
36 MCAS Score 23
36 MCAS Score 19
36 MCAS Score 18
36 MCAS Score 17
36 MCAS Score 14
36 MCAS Score 11
36 MCAS Score 10
35 MCAS Score 47
35 MCAS Score 44
35 MCAS Score 41
35 MCAS Score 39
35 MCAS Score 37
35 MCAS Score 31
35 MCAS Score 30
35 MCAS Score 28
35 MCAS Score 27
35 MCAS Score 23
35 MCAS Score 21
35 MCAS Score 12
35 MCAS Score 6
34 MCAS Score 51
34 MCAS Score 49
34 MCAS Score 45
34 MCAS Score 42
34 MCAS Score 39
34 MCAS Score 38
34 MCAS Score 36
34 MCAS Score 34
34 MCAS Score 33
34 MCAS Score 31
34 MCAS Score 27
34 MCAS Score 26
34 MCAS Score 23
34 MCAS Score 21
34 MCAS Score 20
34 MCAS Score 20
34 MCAS Score 19
34 MCAS Score 19
34 MCAS Score 16
33 MCAS Score 51
33 MCAS Score 49
33 MCAS Score 49
33 MCAS Score 47
33 MCAS Score 43
33 MCAS Score 42
33 MCAS Score 42
33 MCAS Score 41
33 MCAS Score 38
33 MCAS Score 37
33 MCAS Score 36
33 MCAS Score 36
33 MCAS Score 35
33 MCAS Score 35
33 MCAS Score 31
33 MCAS Score 29
33 MCAS Score 28
33 MCAS Score 27
33 MCAS Score 26
33 MCAS Score 25
33 MCAS Score 23
33 MCAS Score 22
33 MCAS Score 21
33 MCAS Score 18
33 MCAS Score 17
33 MCAS Score 14
33 MCAS Score 12
33 MCAS Score 8
33 MCAS Score 7
32 MCAS Score 54
32 MCAS Score 51
32 MCAS Score 50
32 MCAS Score 50
32 MCAS Score 50
32 MCAS Score 48
32 MCAS Score 48
32 MCAS Score 48
32 MCAS Score 45
32 MCAS Score 42
32 MCAS Score 41
32 MCAS Score 39
32 MCAS Score 37
32 MCAS Score 34
32 MCAS Score 33
32 MCAS Score 33
32 MCAS Score 33
32 MCAS Score 29
32 MCAS Score 27
32 MCAS Score 27
32 MCAS Score 25
32 MCAS Score 25
32 MCAS Score 24
32 MCAS Score 20
32 MCAS Score 18
31 MCAS Score 52
31 MCAS Score 50
31 MCAS Score 50
31 MCAS Score 50
31 MCAS Score 50
31 MCAS Score 48
31 MCAS Score 45
31 MCAS Score 45
31 MCAS Score 44
31 MCAS Score 43
31 MCAS Score 41
31 MCAS Score 34
31 MCAS Score 33
31 MCAS Score 33
31 MCAS Score 29
31 MCAS Score 29
31 MCAS Score 28
31 MCAS Score 27
31 MCAS Score 27
31 MCAS Score 25
31 MCAS Score 24
31 MCAS Score 24
31 MCAS Score 21
31 MCAS Score 20
31 MCAS Score 16
31 MCAS Score 15
31 MCAS Score 7
30 MCAS Score 52
30 MCAS Score 50
30 MCAS Score 49
30 MCAS Score 40
30 MCAS Score 36
30 MCAS Score 33
30 MCAS Score 28
30 MCAS Score 28
30 MCAS Score 28
30 MCAS Score 26
30 MCAS Score 26
30 MCAS Score 24
30 MCAS Score 23
30 MCAS Score 19
30 MCAS Score 12
30 MCAS Score 10
30 MCAS Score 8
29 MCAS Score 54
29 MCAS Score 50
29 MCAS Score 48
29 MCAS Score 44
29 MCAS Score 43
29 MCAS Score 41
29 MCAS Score 38
29 MCAS Score 36
29 MCAS Score 35
29 MCAS Score 33
29 MCAS Score 32
29 MCAS Score 32
29 MCAS Score 32
29 MCAS Score 29
29 MCAS Score 28
29 MCAS Score 28
29 MCAS Score 27
29 MCAS Score 27
29 MCAS Score 24
29 MCAS Score 23
29 MCAS Score 23
29 MCAS Score 22
29 MCAS Score 19
29 MCAS Score 16
29 MCAS Score 15
29 MCAS Score 13
29 MCAS Score 12
29 MCAS Score 11
29 MCAS Score 11
29 MCAS Score 6
28 MCAS Score 53
28 MCAS Score 51
28 MCAS Score 49
28 MCAS Score 49
28 MCAS Score 45
28 MCAS Score 41
28 MCAS Score 40
28 MCAS Score 38
28 MCAS Score 38
28 MCAS Score 38
28 MCAS Score 37
28 MCAS Score 33
28 MCAS Score 32
28 MCAS Score 31
28 MCAS Score 29
28 MCAS Score 28
28 MCAS Score 28
28 MCAS Score 27
28 MCAS Score 25
28 MCAS Score 23
28 MCAS Score 19
28 MCAS Score 14
28 MCAS Score 14
27 MCAS Score 53
27 MCAS Score 51
27 MCAS Score 50
27 MCAS Score 50
27 MCAS Score 50
27 MCAS Score 50
27 MCAS Score 47
27 MCAS Score 44
27 MCAS Score 41
27 MCAS Score 37
27 MCAS Score 37
27 MCAS Score 35
27 MCAS Score 33
27 MCAS Score 31
27 MCAS Score 31
27 MCAS Score 23
27 MCAS Score 22
27 MCAS Score 21
27 MCAS Score 21
27 MCAS Score 16
27 MCAS Score 15
26 MCAS Score 45
26 MCAS Score 44
26 MCAS Score 43
26 MCAS Score 42
26 MCAS Score 40
26 MCAS Score 39
26 MCAS Score 36
26 MCAS Score 34
26 MCAS Score 30
26 MCAS Score 30
26 MCAS Score 28
26 MCAS Score 28
26 MCAS Score 27
26 MCAS Score 27
26 MCAS Score 24
26 MCAS Score 23
26 MCAS Score 21
26 MCAS Score 19
26 MCAS Score 19
26 MCAS Score 17
26 MCAS Score 14
26 MCAS Score 14
26 MCAS Score 9
26 MCAS Score 9
25 MCAS Score 51
25 MCAS Score 46
25 MCAS Score 46
25 MCAS Score 45
25 MCAS Score 39
25 MCAS Score 39
25 MCAS Score 38
25 MCAS Score 36
25 MCAS Score 36
25 MCAS Score 36
25 MCAS Score 35
25 MCAS Score 34
25 MCAS Score 33
25 MCAS Score 33
25 MCAS Score 33
25 MCAS Score 29
25 MCAS Score 20
25 MCAS Score 19
25 MCAS Score 19
25 MCAS Score 18
25 MCAS Score 15
25 MCAS Score 11
25 MCAS Score 10
25 MCAS Score 10
25 MCAS Score 8
24 MCAS Score 49
24 MCAS Score 46
24 MCAS Score 45
24 MCAS Score 44
24 MCAS Score 44
24 MCAS Score 43
24 MCAS Score 43
24 MCAS Score 42
24 MCAS Score 38
24 MCAS Score 36
24 MCAS Score 35
24 MCAS Score 35
24 MCAS Score 34
24 MCAS Score 32
24 MCAS Score 31
24 MCAS Score 29
24 MCAS Score 26
24 MCAS Score 26
24 MCAS Score 25
24 MCAS Score 25
24 MCAS Score 24
24 MCAS Score 24
24 MCAS Score 22
24 MCAS Score 22
24 MCAS Score 20
24 MCAS Score 17
24 MCAS Score 17
24 MCAS Score 15
24 MCAS Score 15
24 MCAS Score 12
23 MCAS Score 48
23 MCAS Score 47
23 MCAS Score 45
23 MCAS Score 42
23 MCAS Score 41
23 MCAS Score 40
23 MCAS Score 38
23 MCAS Score 32
23 MCAS Score 31
23 MCAS Score 30
23 MCAS Score 30
23 MCAS Score 25
23 MCAS Score 22
23 MCAS Score 18
23 MCAS Score 16
23 MCAS Score 14
23 MCAS Score 13
23 MCAS Score 5
22 MCAS Score 53
22 MCAS Score 49
22 MCAS Score 44
22 MCAS Score 44
22 MCAS Score 43
22 MCAS Score 43
22 MCAS Score 41
22 MCAS Score 40
22 MCAS Score 39
22 MCAS Score 39
22 MCAS Score 39
22 MCAS Score 39
22 MCAS Score 38
22 MCAS Score 34
22 MCAS Score 32
22 MCAS Score 30
22 MCAS Score 29
22 MCAS Score 28
22 MCAS Score 27
22 MCAS Score 25
22 MCAS Score 22
22 MCAS Score 22
22 MCAS Score 20
22 MCAS Score 16
22 MCAS Score 13
21 MCAS Score 50
21 MCAS Score 50
21 MCAS Score 47
21 MCAS Score 42
21 MCAS Score 41
21 MCAS Score 38
21 MCAS Score 37
21 MCAS Score 35
21 MCAS Score 34
21 MCAS Score 33
21 MCAS Score 29
21 MCAS Score 28
21 MCAS Score 27
21 MCAS Score 26
21 MCAS Score 20
21 MCAS Score 16
21 MCAS Score 15
21 MCAS Score 6
20 MCAS Score 52
20 MCAS Score 50
20 MCAS Score 48
20 MCAS Score 47
20 MCAS Score 47
20 MCAS Score 45
20 MCAS Score 45
20 MCAS Score 40
20 MCAS Score 39
20 MCAS Score 38
20 MCAS Score 36
20 MCAS Score 36
20 MCAS Score 33
20 MCAS Score 31
20 MCAS Score 31
20 MCAS Score 29
20 MCAS Score 29
20 MCAS Score 28
20 MCAS Score 27
20 MCAS Score 27
20 MCAS Score 25
20 MCAS Score 22
20 MCAS Score 22
20 MCAS Score 22
20 MCAS Score 21
20 MCAS Score 21
20 MCAS Score 19
20 MCAS Score 11
20 MCAS Score 11
20 MCAS Score 8
19 MCAS Score 50
19 MCAS Score 47
19 MCAS Score 47
19 MCAS Score 45
19 MCAS Score 44
19 MCAS Score 40
19 MCAS Score 39
19 MCAS Score 36
19 MCAS Score 30
19 MCAS Score 29
19 MCAS Score 22
19 MCAS Score 21
19 MCAS Score 21
19 MCAS Score 21
19 MCAS Score 19
19 MCAS Score 17
19 MCAS Score 16
19 MCAS Score 15
19 MCAS Score 11
19 MCAS Score 11
19 MCAS Score 7
18 MCAS Score 54
18 MCAS Score 49
18 MCAS Score 41
18 MCAS Score 41
18 MCAS Score 40
18 MCAS Score 35
18 MCAS Score 34
18 MCAS Score 30
18 MCAS Score 26
18 MCAS Score 26
18 MCAS Score 21
18 MCAS Score 14
18 MCAS Score 9
18 MCAS Score 9
17 MCAS Score 52
17 MCAS Score 43
17 MCAS Score 40
17 MCAS Score 39
17 MCAS Score 36
17 MCAS Score 34
17 MCAS Score 32
17 MCAS Score 20
17 MCAS Score 19
17 MCAS Score 14
17 MCAS Score 12
17 MCAS Score 5
16 MCAS Score 48
16 MCAS Score 47
16 MCAS Score 44
16 MCAS Score 43
16 MCAS Score 43
16 MCAS Score 40
16 MCAS Score 37
16 MCAS Score 37
16 MCAS Score 34
16 MCAS Score 31
16 MCAS Score 30
16 MCAS Score 29
16 MCAS Score 26
16 MCAS Score 24
16 MCAS Score 22
16 MCAS Score 21
16 MCAS Score 21
16 MCAS Score 21
16 MCAS Score 19
16 MCAS Score 16
16 MCAS Score 15
16 MCAS Score 13
16 MCAS Score 12
16 MCAS Score 9
16 MCAS Score 6
15 MCAS Score 53
15 MCAS Score 48
15 MCAS Score 46
15 MCAS Score 45
15 MCAS Score 42
15 MCAS Score 37
15 MCAS Score 36
15 MCAS Score 32
15 MCAS Score 32
15 MCAS Score 28
15 MCAS Score 26
15 MCAS Score 26
15 MCAS Score 24
15 MCAS Score 22
15 MCAS Score 22
15 MCAS Score 20
15 MCAS Score 15
15 MCAS Score 10
14 MCAS Score 52
14 MCAS Score 47
14 MCAS Score 44
14 MCAS Score 42
14 MCAS Score 38
14 MCAS Score 38
14 MCAS Score 38
14 MCAS Score 27
14 MCAS Score 25
14 MCAS Score 24
14 MCAS Score 22
14 MCAS Score 20
14 MCAS Score 19
14 MCAS Score 17
14 MCAS Score 13
14 MCAS Score 12
14 MCAS Score 10
13 MCAS Score 52
13 MCAS Score 46
13 MCAS Score 45
13 MCAS Score 31
13 MCAS Score 29
13 MCAS Score 29
13 MCAS Score 28
13 MCAS Score 20
13 MCAS Score 17
13 MCAS Score 16
13 MCAS Score 12
13 MCAS Score 11
12 MCAS Score 44
12 MCAS Score 43
12 MCAS Score 39
12 MCAS Score 32
12 MCAS Score 28
12 MCAS Score 24
12 MCAS Score 22
12 MCAS Score 22
11 MCAS Score 43
11 MCAS Score 40
11 MCAS Score 37
11 MCAS Score 35
11 MCAS Score 34
11 MCAS Score 27
11 MCAS Score 22
11 MCAS Score 21
11 MCAS Score 20
11 MCAS Score 20
11 MCAS Score 18
11 MCAS Score 17
11 MCAS Score 13
11 MCAS Score 7
10 MCAS Score 23
10 MCAS Score 19
10 MCAS Score 16
10 MCAS Score 16
10 MCAS Score 9
10 MCAS Score 8
10 MCAS Score 6
9 MCAS Score 47
9 MCAS Score 41
9 MCAS Score 36
9 MCAS Score 34
9 MCAS Score 31
9 MCAS Score 25
9 MCAS Score 15
9 MCAS Score 11
8 MCAS Score 44
8 MCAS Score 41
8 MCAS Score 24
7 MCAS Score 31
7 MCAS Score 26
6 MCAS Score 14
2 MCAS Score 10
1 MCAS Score 11
106 time 0.712797619
98 time 0.698245614
97 time 0.505485232
88 time 0.65380117
87 time 0.524
85 time 0.552898551
83 time 0.440555556
80 time 1.168627451
79 time 0.752040816
77 time 0.83125
77 time 1.391071429
74 time 0.866304348
73 time 0.477108434
73 time 0.805442177
72 time 0.59974359
72 time 1.198989899
71 time 0.763
71 time 0.656214689
70 time 1.179292929
70 time 0.85035461
70 time 0.633602151
70 time 0.700606061
67 time 0.751886793
67 time 0.762179487
67 time 0.876893939
67 time 0.683908046
66 time 1.011111111
64 time 0.786333333
64 time 0.910569106
63 time 0.799666667
61 time 0.523004695
61 time 0.561190476
61 time 0.66577381
60 time 0.85942029
60 time 1.243229167
60 time 0.603535354
60 time 0.73117284
60 time 0.84037037
59 time 1.955
58 time 0.868518519
58 time 0.801360544
58 time 2.490625
57 time 0.725151515
57 time 0.555324074
57 time 1.038596491
57 time 0.9625
57 time 0.676836158
56 time 0.672033898
55 time 0.626502732
55 time 0.696428572
55 time 0.661206897
54 time 0.63655914
54 time 0.619270833
54 time 0.868115942
54 time 0.683918129
54 time 0.969512195
53 time 0.99
53 time 0.788333333
53 time 0.654166667
53 time 0.741346154
52 time 1.265053764
52 time 0.902272727
52 time 1.134761905
52 time 0.971138211
52 time 1.415740741
51 time 0.880740741
51 time 1.512
50 time 0.814965986
50 time 0.576328502
50 time 0.740880503
50 time 0.764666667
50 time 0.979583333
50 time 0.555769231
50 time 0.632275132
50 time 0.535310735
49 time 0.781372549
48 time 0.759477124
48 time 0.596464647
48 time 0.945634921
47 time 0.687202381
47 time 1.178282828
47 time 1.464492754
46 time 0.913953488
46 time 1.110648148
46 time 0.724509804
46 time 1.137745098
46 time 0.622395833
46 time 1.472839506
46 time 1.164705882
46 time 0.798780488
46 time 1.161979167
45 time 0.698181818
45 time 0.896031746
45 time 1.155729167
45 time 0.81122449
45 time 1.147979798
45 time 0.672666667
45 time 1.052631579
45 time 0.837407407
45 time 0.753125
45 time 1.041891892
45 time 0.654918033
45 time 1.305555556
45 time 1.25
44 time 2.21574074
44 time 1.799242425
44 time 0.846808511
44 time 1.325555556
43 time 0.813945578
43 time 0.737962963
43 time 1.164942529
43 time 1.036936937
43 time 1.410714286
43 time 1.421428572
42 time 0.86884058
42 time 0.826736111
42 time 1.884126983
42 time 0.829432624
42 time 1.099047619
42 time 1.017948718
42 time 2.057894737
42 time 0.779084967
42 time 1.2015625
41 time 0.86557971
41 time 0.881481482
41 time 0.463178295
41 time 0.763782051
41 time 1.051754386
41 time 1.597333333
41 time 1.172058824
41 time 1.359195402
41 time 0.985
41 time 1.236458333
41 time 1.392857143
41 time 1.615
41 time 1.537179487
41 time 0.600347222
41 time 1.949166667
40 time 0.830797102
40 time 0.658757062
40 time 0.920238095
40 time 0.661111111
40 time 0.714814815
40 time 1.168627451
40 time 1.065740741
40 time 0.94484127
40 time 1.703787878
40 time 1.097619048
40 time 1.876984127
40 time 1.2484375
40 time 1.17979798
40 time 0.999166667
40 time 5.011904762
40 time 2.087719298
40 time 1.2171875
39 time 1.131666667
39 time 0.816326531
39 time 0.92248062
39 time 0.95203252
39 time 1.073873874
39 time 1.050520833
39 time 0.733333333
39 time 1.735507247
39 time 1.400595238
39 time 1.288888889
39 time 1.370114943
39 time 2.725
38 time 1.092592593
38 time 1.023245614
38 time 0.72030303
38 time 0.88037037
38 time 1.015811966
38 time 0.952845529
38 time 0.823263889
38 time 1.615277778
38 time 1.285802469
38 time 0.694025157
38 time 0.806122449
38 time 1.331666667
38 time 2.240196078
38 time 1.880952382
38 time 2.441666667
38 time 1.314367816
38 time 1.036403509
38 time 1.045614035
38 time 1.244444445
37 time 1.160784314
37 time 0.974390244
37 time 0.882575758
37 time 1.056756757
37 time 1.153535354
37 time 0.879545455
37 time 0.924806202
37 time 1.018376068
37 time 1.294827586
37 time 0.705654762
37 time 1.285714286
37 time 1.358974359
37 time 1.046491228
37 time 1.041891892
37 time 1.07972973
36 time 1.038596491
36 time 0.947222222
36 time 0.843333333
36 time 1.203535354
36 time 1.048245614
36 time 1.107407407
36 time 1.356321839
36 time 1.067567568
36 time 1.141904762
36 time 1.076576577
36 time 1.71231884
36 time 1.193229167
36 time 1.589393939
36 time 1.011538462
36 time 1.9375
36 time 1.507333333
36 time 1.155555556
36 time 1.074774775
36 time 0.791085271
36 time 0.829078014
36 time 1.143627451
36 time 0.6625
36 time 2.45
36 time 1.02008547
35 time 1.563043478
35 time 0.891666667
35 time 1.521153846
35 time 1.663888889
35 time 0.812152778
35 time 1.404938272
35 time 0.928682171
35 time 1.475641026
35 time 1.424404762
35 time 0.96097561
35 time 1.763636363
35 time 1.076851852
35 time 1.942982457
34 time 0.984583333
34 time 0.910852713
34 time 0.802380952
34 time 0.844074074
34 time 0.912015504
34 time 0.942460318
34 time 3.459090908
34 time 1.072072072
34 time 1.043693694
34 time 1.127619048
34 time 0.98125
34 time 0.721515152
34 time 1.471604938
34 time 1.03245614
34 time 2.07631579
34 time 3.286111112
34 time 2.651111112
34 time 0.846808511
34 time 1.301666667
33 time 0.665277778
33 time 1.133809524
33 time 1.420833333
33 time 1.091203704
33 time 1.201515152
33 time 1.289247312
33 time 0.940873016
33 time 1.275268817
33 time 1.086111111
33 time 1.281182796
33 time 0.902325581
33 time 1.108796296
33 time 1.59
33 time 0.983333333
33 time 0.905681818
33 time 1.314444445
33 time 0.99
33 time 1.511538462
33 time 1.363793104
33 time 1.15245098
33 time 1.206060606
33 time 1.490384615
33 time 0.668644068
33 time 1.522435898
33 time 1.346551724
33 time 1.873809523
33 time 1.127142857
33 time 2.053703703
33 time 2.4625
32 time 1.101851852
32 time 1.051754386
32 time 0.835925926
32 time 0.901550388
32 time 1.171568628
32 time 1.414285714
32 time 1.118137255
32 time 1.096759259
32 time 1.416049383
32 time 0.828985507
32 time 2.284313725
32 time 0.995833333
32 time 1.077477478
32 time 1.265517241
32 time 2.095614035
32 time 1.718115942
32 time 1.600694445
32 time 2.238235293
32 time 1.500666667
32 time 0.991452992
32 time 1.415476191
32 time 1.47037037
32 time 1.047807018
32 time 2.192592593
32 time 1.75462963
31 time 0.929844961
31 time 1.361494253
31 time 0.943089431
31 time 0.960569106
31 time 1.012280702
31 time 1.154411765
31 time 0.951219512
31 time 1.763492063
31 time 0.843971631
31 time 0.85035461
31 time 0.862015504
31 time 1.645833333
31 time 1.086574074
31 time 1.9875
31 time 2.208333333
31 time 2.396875
31 time 1.240625
31 time 1.845238095
31 time 0.996929825
31 time 1.36091954
31 time 1.260416667
31 time 5.566666667
31 time 1.793939393
31 time 1.071171171
31 time 4.144444445
31 time 2.216666667
31 time 1.371839081
30 time 1.457407407
30 time 1.134848485
30 time 1.421428572
30 time 0.963414634
30 time 4.983333333
30 time 0.700892857
30 time 1.47962963
30 time 1.291954023
30 time 1.009210526
30 time 1.165196079
30 time 1.260714286
30 time 1.11
30 time 2.072807018
30 time 1.191919192
30 time 1.733333333
30 time 1.886507937
30 time 2.316666667
29 time 2.214814815
29 time 1.262643678
29 time 0.869202899
29 time 1.049561404
29 time 0.95462963
29 time 1.125714286
29 time 0.995
29 time 1.100462963
29 time 1.269354839
29 time 0.916666667
29 time 2.627777778
29 time 0.97
29 time 1.307471264
29 time 1.233908046
29 time 1.65625
29 time 1.124285714
29 time 1.564666667
29 time 1.422619048
29 time 1.440151515
29 time 2.353571428
29 time 0.972764228
29 time 0.933333333
29 time 3.583333333
29 time 1.23655914
29 time 1.203645833
29 time 6.572222222
29 time 1.851587302
29 time 1.868333333
29 time 6.626666667
29 time 1.887301587
28 time 1.208585859
28 time 1.001754386
28 time 0.924031008
28 time 1.011965812
28 time 0.872592593
28 time 1.85952381
28 time 1.584
28 time 1.013157895
28 time 1.244270833
28 time 1.712121212
28 time 2.329411765
28 time 1.246875
28 time 1.239583333
28 time 1.126190476
28 time 1.091203704
28 time 1.423214286
28 time 1.024561404
28 time 1.575333333
28 time 1.135714286
28 time 1.295061728
28 time 2.36875
28 time 2.187962963
28 time 0.915789474
27 time 0.99
27 time 0.969512195
27 time 1.172395833
27 time 1.370689655
27 time 1.80530303
27 time 1.261290323
27 time 0.867391304
27 time 2.210185185
27 time 1.727536232
27 time 1.427564103
27 time 1.154545455
27 time 1.046491228
27 time 1.758333333
27 time 1.240555556
27 time 1.137777778
27 time 1.674637682
27 time 1.074193548
27 time 2.194444445
27 time 1.906481482
27 time 0.815972222
27 time 2.440625
26 time 1.203125
26 time 2.091666667
26 time 1.565333333
26 time 2.966666667
26 time 1.336206897
26 time 1.211616162
26 time 1.6
26 time 1.230645161
26 time 1.542
26 time 1.751666667
26 time 1.457407407
26 time 1.530769231
26 time 1.590666667
26 time 1.722222222
26 time 1.574666667
26 time 3.631818182
26 time 1.534615385
26 time 1.378571429
26 time 1.701449275
26 time 1.521153846
26 time 3.015384615
26 time 2.064035088
26 time 1.925833333
26 time 2.709722222
25 time 1.372619048
25 time 1.321666667
25 time 1.319444445
25 time 1.096568628
25 time 1.65625
25 time 1.161616162
25 time 1.353571429
25 time 0.892424243
25 time 2.074561403
25 time 2.883333333
25 time 4.05
25 time 1.171717172
25 time 1.297126437
25 time 1.233888889
25 time 1.365517241
25 time 1.111111111
25 time 1.735833333
25 time 1.687301587
25 time 0.605084746
25 time 1.222916667
25 time 3.014102563
25 time 2.974358975
25 time 1.316666667
25 time 1.843650793
25 time 2.175
24 time 1.958333333
24 time 1.19375
24 time 1.131428572
24 time 1.2359375
24 time 1.457407407
24 time 1.166176471
24 time 1.585333333
24 time 1.443333333
24 time 1.047807018
24 time 1.875
24 time 0.946825397
24 time 1.71231884
24 time 1.994166667
24 time 0.603333333
24 time 0.860833333
24 time 1.68939394
24 time 1.985294118
24 time 1.505333333
24 time 2.256862745
24 time 2.384375
24 time 1.395333333
24 time 2.340196078
24 time 3.41060606
24 time 1.201075269
24 time 2.516666667
24 time 2.008333333
24 time 1.981666667
24 time 1.792424242
24 time 2.480208333
24 time 2.250980392
23 time 1.471604938
23 time 1.722463768
23 time 1.533974359
23 time 1.423809524
23 time 0.889772727
23 time 1.592666667
23 time 1.694202898
23 time 2.45625
23 time 1.599333333
23 time 1.136666667
23 time 1.985
23 time 1.190909091
23 time 1.060215054
23 time 1.289247312
23 time 2.104385965
23 time 2.458974358
23 time 1.379310345
23 time 1.271111111
22 time 0.992307692
22 time 1.493055556
22 time 1.221505376
22 time 1.317222222
22 time 2.386458333
22 time 1.342528736
22 time 2.551111112
22 time 1.203030303
22 time 1.074324324
22 time 1.141904762
22 time 2.060526315
22 time 1.205208333
22 time 1.495512821
22 time 1.629861111
22 time 1.507692308
22 time 1.577333333
22 time 1.215
22 time 1.595238095
22 time 1.84920635
22 time 1.080476191
22 time 1.575333333
22 time 2.075438597
22 time 1.902380952
22 time 1.843650793
22 time 3.194444445
21 time 1.70942029
21 time 1.888333333
21 time 1.409027778
21 time 1.67826087
21 time 1.193229167
21 time 1.49
21 time 0.73974359
21 time 1.443209877
21 time 2.490625
21 time 1.729545455
21 time 2.467857143
21 time 1.47962963
21 time 3.046153847
21 time 2.379166667
21 time 1.513461539
21 time 1.619047619
21 time 2.200925927
21 time 2.296078432
20 time 1.401190476
20 time 2
20 time 1.545333333
20 time 1.265591398
20 time 1.01712963
20 time 1.816666667
20 time 1.713043478
20 time 0.83125
20 time 2.388541667
20 time 1.418518519
20 time 1.370689655
20 time 1.418
20 time 1.371264368
20 time 2.048039215
20 time 1.842857143
20 time 1.546
20 time 1.08872549
20 time 1.729710145
20 time 1.456790124
20 time 1.281182796
20 time 4.745833333
20 time 2.338888888
20 time 1.378735632
20 time 1.083823529
20 time 2.32745098
20 time 1.993859648
20 time 1.336507937
20 time 1.895238095
20 time 1.759848485
20 time 1.049561404
19 time 1.51474359
19 time 1.405952381
19 time 1.47654321
19 time 1.528205128
19 time 1.680434783
19 time 3.6
19 time 2.125
19 time 2.29375
19 time 1.666666667
19 time 1.283333333
19 time 1.571527778
19 time 3.272222222
19 time 1.527564103
19 time 2.062280702
19 time 2.184313725
19 time 1.896031747
19 time 4.577083333
19 time 1.511594203
19 time 2.733333333
19 time 1.89920635
19 time 1.872222222
18 time 1.718115942
18 time 1.658333333
18 time 1.417901235
18 time 1.466049383
18 time 1.532666667
18 time 1.186979167
18 time 1.668939393
18 time 2.091666667
18 time 1.813333333
18 time 1.563043478
18 time 1.628787879
18 time 1.753787878
18 time 1.723188405
18 time 0.885606061
17 time 1.630952381
17 time 1.771212122
17 time 1.252688172
17 time 1.150980392
17 time 2.3
17 time 1.652083333
17 time 1.715151515
17 time 4.4
17 time 3.245833333
17 time 4.012962963
17 time 1.508333333
17 time 1.957017543
16 time 1.577083333
16 time 2.469791667
16 time 3.55925926
16 time 1.903174603
16 time 2.216666667
16 time 1.684057972
16 time 1.477160494
16 time 1.264444445
16 time 1.863492063
16 time 2.974358975
16 time 1.134444445
16 time 2.645555555
16 time 3.223611112
16 time 2.02037037
16 time 2.426041667
16 time 1.413095238
16 time 1.529166667
16 time 1.768253968
16 time 3.243055555
16 time 1.169117647
16 time 1.78015873
16 time 2.069444445
16 time 1.185802469
16 time 1.103703704
16 time 2.887179487
15 time 2.636666667
15 time 1.27
15 time 2.21372549
15 time 2.38452381
15 time 2.013888888
15 time 2.045614035
15 time 1.534615385
15 time 2.31372549
15 time 2.062280702
15 time 3.316666667
15 time 1.373214286
15 time 2.779761905
15 time 1.92631579
15 time 3.056410257
15 time 2.34509804
15 time 1.638888889
15 time 3.275
15 time 2.511111112
14 time 2.213888888
14 time 2.497916667
14 time 4.07962963
14 time 2.647777778
14 time 2.194444445
14 time 1.256666667
14 time 2.657777778
14 time 2.2
14 time 1.971666667
14 time 2.477083333
14 time 1.774242425
14 time 1.7525
14 time 2.725
14 time 1.248076923
14 time 2.733333333
14 time 1.981666667
14 time 2.049074073
13 time 4.37037037
13 time 3.007692308
13 time 1.823333333
13 time 2.072222222
13 time 2.366666667
13 time 0.690860215
13 time 2.18425926
13 time 1.371428572
13 time 1.691666667
13 time 1.374666667
13 time 2.18627451
13 time 3.360416667
12 time 2.637777778
12 time 3.069444445
12 time 2.161458333
12 time 1.492948718
12 time 2.425
12 time 3.276388888
12 time 2.572222222
12 time 2.647777778
11 time 5.275
11 time 2.585714285
11 time 3.831666667
11 time 2.655555555
11 time 2.834722222
11 time 3.345454545
11 time 2.843589743
11 time 6.380555555
11 time 3.612121212
11 time 2.349019608
11 time 1.673913043
11 time 1.804166667
11 time 5.756666667
11 time 3.006410257
10 time 3.330555555
10 time 2.35
10 time 3.95
10 time 2.852380952
10 time 2.392857143
10 time 2.488541667
10 time 4.407407407
9 time 2.1875
9 time 4.938095238
9 time 2.571428572
9 time 2.240196078
9 time 2.748809523
9 time 2.093859648
9 time 1.971052632
9 time 4.997916667
8 time 1.868253968
8 time 3.836666667
8 time 3.546969697
7 time 3.658333333
7 time 3.95
6 time 5.645833333
2 time 5.338888888
1 time 19.93333333
106 attempts 1.285714286
98 attempts 1.50877193
97 attempts 1.455696203
88 attempts 1.070175439
87 attempts 1.32
85 attempts 1.753623188
83 attempts 1.6
80 attempts 2.294117647
79 attempts 1.346938776
77 attempts 1.1875
77 attempts 1.785714286
74 attempts 1.391304348
73 attempts 1.192771084
73 attempts 1.551020408
72 attempts 1.430769231
72 attempts 1.484848485
71 attempts 1.52
71 attempts 2.13559322
70 attempts 2
70 attempts 1.468085106
70 attempts 1.64516129
70 attempts 1.745454545
67 attempts 1.150943396
67 attempts 1.173076923
67 attempts 1.681818182
67 attempts 1.189655172
66 attempts 1.769230769
64 attempts 1.4
64 attempts 1.87804878
63 attempts 1.36
61 attempts 1.154929577
61 attempts 1.028571429
61 attempts 1.267857143
60 attempts 1.956521739
60 attempts 1.3125
60 attempts 1.439393939
60 attempts 1.222222222
60 attempts 1.355555556
59 attempts 1
58 attempts 1.4
58 attempts 1.693877551
58 attempts 2.125
57 attempts 1.690909091
57 attempts 1.611111111
57 attempts 1.473684211
57 attempts 2.138888889
57 attempts 1.881355932
56 attempts 1.220338983
55 attempts 1.049180328
55 attempts 1.392857143
55 attempts 1.413793103
54 attempts 1.612903226
54 attempts 1.734375
54 attempts 1.673913043
54 attempts 1.649122807
54 attempts 1.512195122
53 attempts 1.675
53 attempts 1.6
53 attempts 1.566666667
53 attempts 1.403846154
52 attempts 1.483870968
52 attempts 1.522727273
52 attempts 1.285714286
52 attempts 1.365853659
52 attempts 1.888888889
51 attempts 1.911111111
51 attempts 1.72
50 attempts 1.428571429
50 attempts 1.202898551
50 attempts 1.41509434
50 attempts 1.6
50 attempts 1.3
50 attempts 1.211538462
50 attempts 1.253968254
50 attempts 1.779661017
49 attempts 1.117647059
48 attempts 1.117647059
48 attempts 1.590909091
48 attempts 1.476190476
47 attempts 1.625
47 attempts 1.818181818
47 attempts 1.782608696
46 attempts 1.348837209
46 attempts 1.472222222
46 attempts 1.68627451
46 attempts 1.558823529
46 attempts 1.375
46 attempts 1.222222222
46 attempts 1.5
46 attempts 1.853658537
46 attempts 1.75
45 attempts 1.109090909
45 attempts 1.523809524
45 attempts 1.75
45 attempts 1.489795918
45 attempts 1.151515152
45 attempts 1.62
45 attempts 1.421052632
45 attempts 1.311111111
45 attempts 1.520833333
45 attempts 1.297297297
45 attempts 1.37704918
45 attempts 1.466666667
45 attempts 1.59375
44 attempts 1.277777778
44 attempts 1.409090909
44 attempts 1.404255319
44 attempts 2
43 attempts 1.224489796
43 attempts 1.240740741
43 attempts 1.655172414
43 attempts 1.621621622
43 attempts 1.5
43 attempts 1.321428571
42 attempts 1.152173913
42 attempts 1.166666667
42 attempts 1.523809524
42 attempts 1.382978723
42 attempts 1.571428571
42 attempts 1.564102564
42 attempts 1.842105263
42 attempts 1.823529412
42 attempts 1.71875
41 attempts 0.97826087
41 attempts 1.4
41 attempts 1.197674419
41 attempts 1.384615385
41 attempts 1.526315789
41 attempts 1.68
41 attempts 1.352941176
41 attempts 1.517241379
41 attempts 1.5
41 attempts 1.15625
41 attempts 2
41 attempts 2.25
41 attempts 3
41 attempts 1.395833333
41 attempts 2.55
40 attempts 1.173913043
40 attempts 1.13559322
40 attempts 1
40 attempts 1.192982456
40 attempts 1.981481481
40 attempts 1.441176471
40 attempts 1.416666667
40 attempts 1.642857143
40 attempts 1.954545455
40 attempts 2.457142857
40 attempts 1.333333333
40 attempts 1.875
40 attempts 1.484848485
40 attempts 1.875
40 attempts 2.142857143
40 attempts 1.631578947
40 attempts 2.09375
39 attempts 1.333333333
39 attempts 1.183673469
39 attempts 1.23255814
39 attempts 1.365853659
39 attempts 1.351351351
39 attempts 1.5
39 attempts 1.32
39 attempts 2.52173913
39 attempts 1.892857143
39 attempts 1.5
39 attempts 1.931034483
39 attempts 1
38 attempts 1.055555556
38 attempts 1
38 attempts 1.2
38 attempts 1.4
38 attempts 1.512820513
38 attempts 1.243902439
38 attempts 1.229166667
38 attempts 1.791666667
38 attempts 1.37037037
38 attempts 1.396226415
38 attempts 1.040816327
38 attempts 1.5
38 attempts 1.470588235
38 attempts 1.142857143
38 attempts 1.714285714
38 attempts 1.275862069
38 attempts 1.394736842
38 attempts 1.526315789
38 attempts 1.633333333
37 attempts 1.088235294
37 attempts 1.073170732
37 attempts 1.204545455
37 attempts 0.972972973
37 attempts 1.454545455
37 attempts 1.454545455
37 attempts 1.093023256
37 attempts 1.717948718
37 attempts 1.379310345
37 attempts 1.178571429
37 attempts 1.821428571
37 attempts 1.307692308
37 attempts 1.315789474
37 attempts 1.702702703
37 attempts 1.864864865
36 attempts 1.184210526
36 attempts 0.976190476
36 attempts 1.466666667
36 attempts 1.060606061
36 attempts 1.342105263
36 attempts 1.305555556
36 attempts 1.206896552
36 attempts 1.513513514
36 attempts 1.571428571
36 attempts 1.891891892
36 attempts 1.608695652
36 attempts 1.40625
36 attempts 1.545454545
36 attempts 1.538461538
36 attempts 1.55
36 attempts 1.56
36 attempts 1.787878788
36 attempts 1.351351351
36 attempts 1.395348837
36 attempts 1.446808511
36 attempts 1.5
36 attempts 1.7
36 attempts 2.5625
36 attempts 1.820512821
35 attempts 1.739130435
35 attempts 1.047619048
35 attempts 2
35 attempts 1.375
35 attempts 1.416666667
35 attempts 1.37037037
35 attempts 1.627906977
35 attempts 1.807692308
35 attempts 1.714285714
35 attempts 1.707317073
35 attempts 1.318181818
35 attempts 2.138888889
35 attempts 1.947368421
34 attempts 1.375
34 attempts 1.279069767
34 attempts 1.12244898
34 attempts 1.2
34 attempts 1.627906977
34 attempts 1.142857143
34 attempts 1.363636364
34 attempts 1.216216216
34 attempts 1.351351351
34 attempts 1.542857143
34 attempts 1.475
34 attempts 1.381818182
34 attempts 1.333333333
34 attempts 1.947368421
34 attempts 1.526315789
34 attempts 2
34 attempts 2.333333333
34 attempts 1.595744681
34 attempts 1.833333333
33 attempts 1.033333333
33 attempts 1.542857143
33 attempts 1.785714286
33 attempts 1.583333333
33 attempts 1.878787879
33 attempts 1.709677419
33 attempts 1.238095238
33 attempts 1.548387097
33 attempts 1.416666667
33 attempts 1.451612903
33 attempts 1.697674419
33 attempts 1.416666667
33 attempts 1.68
33 attempts 1.4
33 attempts 1.5
33 attempts 1.3
33 attempts 1.075
33 attempts 1.884615385
33 attempts 1.586206897
33 attempts 1.705882353
33 attempts 1.666666667
33 attempts 1.769230769
33 attempts 1.559322034
33 attempts 1.653846154
33 attempts 1.586206897
33 attempts 1.238095238
33 attempts 1.657142857
33 attempts 3.222222222
33 attempts 2.4375
32 attempts 1
32 attempts 1.157894737
32 attempts 1.066666667
32 attempts 1.139534884
32 attempts 0.941176471
32 attempts 2.107142857
32 attempts 1.088235294
32 attempts 1.388888889
32 attempts 1.444444444
32 attempts 1.239130435
32 attempts 1.588235294
32 attempts 1.8
32 attempts 1.837837838
32 attempts 1.482758621
32 attempts 1.157894737
32 attempts 2.695652174
32 attempts 2.041666667
32 attempts 1.705882353
32 attempts 1.72
32 attempts 1.461538462
32 attempts 2.285714286
32 attempts 1.481481481
32 attempts 1.842105263
32 attempts 1.555555556
32 attempts 1.666666667
31 attempts 1.11627907
31 attempts 1.517241379
31 attempts 1.195121951
31 attempts 1.170731707
31 attempts 1.026315789
31 attempts 1.117647059
31 attempts 1.146341463
31 attempts 1.571428571
31 attempts 1.425531915
31 attempts 1.319148936
31 attempts 1.395348837
31 attempts 2.208333333
31 attempts 1.583333333
31 attempts 1.5
31 attempts 2.5
31 attempts 1.5625
31 attempts 1.5
31 attempts 1.333333333
31 attempts 1.315789474
31 attempts 1.344827586
31 attempts 2
31 attempts 2.571428571
31 attempts 1.772727273
31 attempts 1.513513514
31 attempts 1
31 attempts 1.944444444
31 attempts 1.896551724
30 attempts 1.592592593
30 attempts 1.303030303
30 attempts 1.25
30 attempts 1.219512195
30 attempts 1.625
30 attempts 1.392857143
30 attempts 1.62962963
30 attempts 1.75862069
30 attempts 1.526315789
30 attempts 1.647058824
30 attempts 1.5
30 attempts 1.628571429
30 attempts 1.631578947
30 attempts 2.333333333
30 attempts 2.130434783
30 attempts 1.952380952
30 attempts 2
29 attempts 1.777777778
29 attempts 1.75862069
29 attempts 1.130434783
29 attempts 1.5
29 attempts 1.722222222
29 attempts 1.342857143
29 attempts 1.375
29 attempts 1.388888889
29 attempts 1.64516129
29 attempts 1.674418605
29 attempts 1.333333333
29 attempts 1.05
29 attempts 1.310344828
29 attempts 1.413793103
29 attempts 1.958333333
29 attempts 1.571428571
29 attempts 1.04
29 attempts 1.821428571
29 attempts 1.136363636
29 attempts 1.642857143
29 attempts 1.414634146
29 attempts 1.615384615
29 attempts 2.181818182
29 attempts 1.290322581
29 attempts 1.90625
29 attempts 4.166666667
29 attempts 1.714285714
29 attempts 2.55
29 attempts 5.6
29 attempts 1.333333333
28 attempts 1.151515152
28 attempts 1.5
28 attempts 1.23255814
28 attempts 1.230769231
28 attempts 0.866666667
28 attempts 1.380952381
28 attempts 1.32
28 attempts 1.342105263
28 attempts 1.65625
28 attempts 1.227272727
28 attempts 1.235294118
28 attempts 1.5625
28 attempts 1.125
28 attempts 1.685714286
28 attempts 1.277777778
28 attempts 1.571428571
28 attempts 1.342105263
28 attempts 1.32
28 attempts 1.485714286
28 attempts 1.481481481
28 attempts 1.8125
28 attempts 1.888888889
28 attempts 1.605263158
27 attempts 1.375
27 attempts 1.170731707
27 attempts 0.96875
27 attempts 1.310344828
27 attempts 1.227272727
27 attempts 1.193548387
27 attempts 0.913043478
27 attempts 1.722222222
27 attempts 1.130434783
27 attempts 1.692307692
27 attempts 1.363636364
27 attempts 1.394736842
27 attempts 2
27 attempts 1.566666667
27 attempts 1.5
27 attempts 1.608695652
27 attempts 1.580645161
27 attempts 1.944444444
27 attempts 1.388888889
27 attempts 1.645833333
27 attempts 1.5625
26 attempts 1.25
26 attempts 2.0625
26 attempts 0.92
26 attempts 1.769230769
26 attempts 1.103448276
26 attempts 1.151515152
26 attempts 2.04
26 attempts 1.548387097
26 attempts 1.4
26 attempts 1.4
26 attempts 1.703703704
26 attempts 1.961538462
26 attempts 1.4
26 attempts 1.142857143
26 attempts 1.52
26 attempts 1.636363636
26 attempts 1.807692308
26 attempts 1.892857143
26 attempts 1.47826087
26 attempts 1.653846154
26 attempts 1.846153846
26 attempts 1.263157895
26 attempts 1.8
26 attempts 1.666666667
25 attempts 1.214285714
25 attempts 1.366666667
25 attempts 1.2
25 attempts 1.205882353
25 attempts 1.583333333
25 attempts 1.242424242
25 attempts 1.107142857
25 attempts 1.25
25 attempts 1.263157895
25 attempts 1.636363636
25 attempts 2.875
25 attempts 1.393939394
25 attempts 1.862068966
25 attempts 1.7
25 attempts 1.586206897
25 attempts 1.333333333
25 attempts 1.3
25 attempts 1.952380952
25 attempts 1.322033898
25 attempts 1.46875
25 attempts 1.923076923
25 attempts 2.692307692
25 attempts 1.633333333
25 attempts 1.666666667
25 attempts 1.555555556
24 attempts 1.15
24 attempts 1.0625
24 attempts 1.257142857
24 attempts 1.3125
24 attempts 1.407407407
24 attempts 1.058823529
24 attempts 1.12
24 attempts 1.2
24 attempts 1.184210526
24 attempts 1.7
24 attempts 1.047619048
24 attempts 1.304347826
24 attempts 1.4
24 attempts 1.2
24 attempts 1.5
24 attempts 1.954545455
24 attempts 2.294117647
24 attempts 1.84
24 attempts 1.470588235
24 attempts 1.5
24 attempts 1.12
24 attempts 1.647058824
24 attempts 1.363636364
24 attempts 1.516129032
24 attempts 1.2
24 attempts 2.111111111
24 attempts 2.35
24 attempts 1.818181818
24 attempts 1.25
24 attempts 1.823529412
23 attempts 1.222222222
23 attempts 1.565217391
23 attempts 1.230769231
23 attempts 1.392857143
23 attempts 1.386363636
23 attempts 1.68
23 attempts 1.47826087
23 attempts 1.4375
23 attempts 1.64
23 attempts 1.2
23 attempts 1.7
23 attempts 1.454545455
23 attempts 1.290322581
23 attempts 1.193548387
23 attempts 1.684210526
23 attempts 1.538461538
23 attempts 1.724137931
23 attempts 1.4
22 attempts 1.025641026
22 attempts 1.583333333
22 attempts 1.483870968
22 attempts 1.233333333
22 attempts 2.3125
22 attempts 1.206896552
22 attempts 1.333333333
22 attempts 1.454545455
22 attempts 1.135135135
22 attempts 1.371428571
22 attempts 2.631578947
22 attempts 1.09375
22 attempts 1.5
22 attempts 1.666666667
22 attempts 1.269230769
22 attempts 1.92
22 attempts 1.7
22 attempts 1.238095238
22 attempts 1.523809524
22 attempts 1.828571429
22 attempts 1.6
22 attempts 1.421052632
22 attempts 1.333333333
22 attempts 1.80952381
22 attempts 2.666666667
21 attempts 1.391304348
21 attempts 1.4
21 attempts 1.25
21 attempts 1.608695652
21 attempts 1.25
21 attempts 1.28
21 attempts 1.038461538
21 attempts 1.296296296
21 attempts 1.3125
21 attempts 1.181818182
21 attempts 1.5
21 attempts 1.814814815
21 attempts 1.692307692
21 attempts 1.625
21 attempts 2
21 attempts 1.619047619
21 attempts 1.777777778
21 attempts 1
20 attempts 1.178571429
20 attempts 1.25
20 attempts 1.28
20 attempts 0.935483871
20 attempts 1.222222222
20 attempts 1.363636364
20 attempts 1.304347826
20 attempts 1.104166667
20 attempts 1.375
20 attempts 1.444444444
20 attempts 1.24137931
20 attempts 1.64
20 attempts 1.620689655
20 attempts 1.705882353
20 attempts 1.428571429
20 attempts 2.24
20 attempts 1.235294118
20 attempts 1.608695652
20 attempts 1.296296296
20 attempts 1.451612903
20 attempts 2.125
20 attempts 1.466666667
20 attempts 1.310344828
20 attempts 1.5
20 attempts 2.235294118
20 attempts 2.315789474
20 attempts 1.666666667
20 attempts 0.857142857
20 attempts 1.181818182
20 attempts 1.5
19 attempts 1.115384615
19 attempts 1.142857143
19 attempts 1.148148148
19 attempts 1.192307692
19 attempts 0.869565217
19 attempts 2
19 attempts 1.277777778
19 attempts 1.4375
19 attempts 1.541666667
19 attempts 1.225806452
19 attempts 1.208333333
19 attempts 2.5
19 attempts 1.769230769
19 attempts 1.315789474
19 attempts 1.058823529
19 attempts 1.523809524
19 attempts 2.375
19 attempts 1.652173913
19 attempts 2.071428571
19 attempts 1.523809524
19 attempts 1.952380952
18 attempts 0.956521739
18 attempts 1.375
18 attempts 1.259259259
18 attempts 1.592592593
18 attempts 1.12
18 attempts 1.75
18 attempts 1.227272727
18 attempts 1.388888889
18 attempts 1.75
18 attempts 1.652173913
18 attempts 1.772727273
18 attempts 1.727272727
18 attempts 1.52173913
18 attempts 1.522727273
17 attempts 1.19047619
17 attempts 1.454545455
17 attempts 1.35483871
17 attempts 1.294117647
17 attempts 1.411764706
17 attempts 1.416666667
17 attempts 1.5
17 attempts 2.666666667
17 attempts 1.916666667
17 attempts 1.333333333
17 attempts 1.269230769
17 attempts 1.684210526
16 attempts 0.875
16 attempts 1.375
16 attempts 1.555555556
16 attempts 1.238095238
16 attempts 1.764705882
16 attempts 1.52173913
16 attempts 1.296296296
16 attempts 1.7
16 attempts 1.571428571
16 attempts 2.846153846
16 attempts 1.333333333
16 attempts 1.4
16 attempts 1.75
16 attempts 1.388888889
16 attempts 1.625
16 attempts 1.857142857
16 attempts 1.166666667
16 attempts 1.476190476
16 attempts 1.583333333
16 attempts 1.676470588
16 attempts 1.285714286
16 attempts 2
16 attempts 2.37037037
16 attempts 1.861111111
16 attempts 1.923076923
15 attempts 1
15 attempts 1.4
15 attempts 0.941176471
15 attempts 0.785714286
15 attempts 2.555555556
15 attempts 1.052631579
15 attempts 1.076923077
15 attempts 1.823529412
15 attempts 1.526315789
15 attempts 1.833333333
15 attempts 1.428571429
15 attempts 1.357142857
15 attempts 1.368421053
15 attempts 2.153846154
15 attempts 1.882352941
15 attempts 1.25
15 attempts 1.75
15 attempts 2.333333333
14 attempts 0.944444444
14 attempts 1.125
14 attempts 2.222222222
14 attempts 3.066666667
14 attempts 1.222222222
14 attempts 1.3
14 attempts 1.266666667
14 attempts 1.722222222
14 attempts 1.2
14 attempts 1.1875
14 attempts 1.863636364
14 attempts 2
14 attempts 1.214285714
14 attempts 1.192307692
14 attempts 1.5
14 attempts 1.2
14 attempts 1.222222222
13 attempts 1.222222222
13 attempts 1.615384615
13 attempts 1.2
13 attempts 1.333333333
13 attempts 2.133333333
13 attempts 1.64516129
13 attempts 1.388888889
13 attempts 1.142857143
13 attempts 1.954545455
13 attempts 1.56
13 attempts 2
13 attempts 1.25
12 attempts 1.333333333
12 attempts 1.083333333
12 attempts 1.5625
12 attempts 1.538461538
12 attempts 1.857142857
12 attempts 1.666666667
12 attempts 1
12 attempts 1.866666667
11 attempts 2.5
11 attempts 1.785714286
11 attempts 1.7
11 attempts 0.933333333
11 attempts 1.666666667
11 attempts 1.909090909
11 attempts 1.230769231
11 attempts 1
11 attempts 2.454545455
11 attempts 1.941176471
11 attempts 1.52173913
11 attempts 1.4
11 attempts 3
11 attempts 1.384615385
10 attempts 1.666666667
10 attempts 1.294117647
10 attempts 2
10 attempts 1.785714286
10 attempts 1.642857143
10 attempts 1.9375
10 attempts 1
9 attempts 1.125
9 attempts 0.857142857
9 attempts 1.928571429
9 attempts 1.764705882
9 attempts 1
9 attempts 1
9 attempts 1.736842105
9 attempts 2.75
8 attempts 1.19047619
8 attempts 1.1
8 attempts 0.818181818
7 attempts 1.2
7 attempts 1.222222222
6 attempts 1.5
2 attempts 2.166666667
1 attempts 2.5
106 hints 0.607142857
98 hints 1.01754386
97 hints 0.278481013
88 hints 2.01754386
87 hints 0.72
85 hints 0.188405797
83 hints 0.822222222
80 hints 0.676470588
79 hints 0.918367347
77 hints 0.875
77 hints 0.321428571
74 hints 0.152173913
73 hints 0.445783133
73 hints 0.857142857
72 hints 0.123076923
72 hints 0.787878788
71 hints 0.38
71 hints 0.677966102
70 hints 0.484848485
70 hints 0.212765957
70 hints 0.35483871
70 hints 0.236363636
67 hints 0.226415094
67 hints 0
67 hints 0.363636364
67 hints 0.327586207
66 hints 0.333333333
64 hints 0.36
64 hints 0.414634146
63 hints 1.58
61 hints 0.070422535
61 hints 0.028571429
61 hints 0.196428571
60 hints 0.239130435
60 hints 0.03125
60 hints 0.515151515
60 hints 0.407407407
60 hints 0.955555556
59 hints 0.5
58 hints 0.266666667
58 hints 0.693877551
58 hints 0.4375
57 hints 0.109090909
57 hints 0.333333333
57 hints 0.210526316
57 hints 0.138888889
57 hints 0.593220339
56 hints 0.033898305
55 hints 0.032786885
55 hints 0.178571429
55 hints 0.879310345
54 hints 0.129032258
54 hints 0.1875
54 hints 0.108695652
54 hints 0.526315789
54 hints 1.463414634
53 hints 0.475
53 hints 0.42
53 hints 0.366666667
53 hints 0.211538462
52 hints 0.709677419
52 hints 0.477272727
52 hints 0.228571429
52 hints 1.024390244
52 hints 0.055555556
51 hints 0.222222222
51 hints 0.8
50 hints 0.204081633
50 hints 0.101449275
50 hints 0.924528302
50 hints 0.32
50 hints 0.95
50 hints 0.25
50 hints 0.380952381
50 hints 0.152542373
49 hints 0.039215686
48 hints 0.117647059
48 hints 0.166666667
48 hints 1.285714286
47 hints 0.303571429
47 hints 0.303030303
47 hints 0.565217391
46 hints 0.302325581
46 hints 0.138888889
46 hints 0.352941176
46 hints 0.294117647
46 hints 0.234375
46 hints 0.962962963
46 hints 0.911764706
46 hints 0.048780488
46 hints 0.28125
45 hints 0.054545455
45 hints 0.5
45 hints 0.125
45 hints 0.265306122
45 hints 0.242424242
45 hints 0.16
45 hints 0.736842105
45 hints 0.4
45 hints 0.145833333
45 hints 1.027027027
45 hints 0.409836066
45 hints 0.766666667
45 hints 0.375
44 hints 1.277777778
44 hints 0.272727273
44 hints 0.234042553
44 hints 0.6
43 hints 0.346938776
43 hints 0.111111111
43 hints 0.24137931
43 hints 0.405405405
43 hints 0.392857143
43 hints 0.535714286
42 hints 0.217391304
42 hints 0.041666667
42 hints 0.714285714
42 hints 0.170212766
42 hints 0.485714286
42 hints 0.128205128
42 hints 0.421052632
42 hints 0
42 hints 0.5625
41 hints 0.108695652
41 hints 0.133333333
41 hints 1.546511628
41 hints 0.346153846
41 hints 0.236842105
41 hints 0.44
41 hints 0.323529412
41 hints 0.827586207
41 hints 0.175
41 hints 1.5
41 hints 0.178571429
41 hints 0.65
41 hints 0.346153846
41 hints 0.395833333
41 hints 1.05
40 hints 0
40 hints 0.118644068
40 hints 0
40 hints 0.035087719
40 hints 0.12962963
40 hints 0.176470588
40 hints 0.333333333
40 hints 0.166666667
40 hints 0.363636364
40 hints 0.342857143
40 hints 0.476190476
40 hints 0.96875
40 hints 0.878787879
40 hints 0.1
40 hints 0.142857143
40 hints 0.842105263
40 hints 0.90625
39 hints 0.633333333
39 hints 0.265306122
39 hints 0.162790698
39 hints 0.317073171
39 hints 0.540540541
39 hints 0.0625
39 hints 0.36
39 hints 0.652173913
39 hints 0.464285714
39 hints 0.166666667
39 hints 0.275862069
39 hints 0
38 hints 0.555555556
38 hints 0.052631579
38 hints 0.036363636
38 hints 0.4
38 hints 0.076923077
38 hints 0.243902439
38 hints 0.145833333
38 hints 0.708333333
38 hints 0.185185185
38 hints 0.547169811
38 hints 0.163265306
38 hints 0.1
38 hints 0.411764706
38 hints 0.476190476
38 hints 0.571428571
38 hints 0.137931034
38 hints 0.394736842
38 hints 0.184210526
38 hints 0.933333333
37 hints 0.235294118
37 hints 0.048780488
37 hints 0.181818182
37 hints 0.378378378
37 hints 0.515151515
37 hints 0.068181818
37 hints 0.488372093
37 hints 0.41025641
37 hints 0.275862069
37 hints 0.375
37 hints 0.464285714
37 hints 0.5
37 hints 0.868421053
37 hints 0.891891892
37 hints 0.864864865
36 hints 0.210526316
36 hints 0.119047619
36 hints 0.088888889
36 hints 0.303030303
36 hints 0.236842105
36 hints 0.277777778
36 hints 0.068965517
36 hints 0.702702703
36 hints 0.171428571
36 hints 0.351351351
36 hints 0.695652174
36 hints 0.6875
36 hints 0.363636364
36 hints 0.512820513
36 hints 0.8
36 hints 1.44
36 hints 0.696969697
36 hints 1.702702703
36 hints 0.395348837
36 hints 0.170212766
36 hints 0.5
36 hints 0.816666667
36 hints 0.5625
36 hints 0.230769231
35 hints 0.217391304
35 hints 0.047619048
35 hints 0.192307692
35 hints 1
35 hints 0.604166667
35 hints 0.444444444
35 hints 0.395348837
35 hints 0.038461538
35 hints 0.285714286
35 hints 0.926829268
35 hints 0.272727273
35 hints 0.388888889
35 hints 1.421052632
34 hints 0.3
34 hints 0.604651163
34 hints 0.081632653
34 hints 0.155555556
34 hints 0.302325581
34 hints 0.166666667
34 hints 0.727272727
34 hints 0.162162162
34 hints 0.594594595
34 hints 0.114285714
34 hints 0.4
34 hints 0.072727273
34 hints 1.185185185
34 hints 0.421052632
34 hints 0.789473684
34 hints 1.666666667
34 hints 1.066666667
34 hints 0.212765957
34 hints 0.6
33 hints 0.283333333
33 hints 0.142857143
33 hints 0.107142857
33 hints 0.361111111
33 hints 0.727272727
33 hints 0.161290323
33 hints 0.023809524
33 hints 0.258064516
33 hints 0.138888889
33 hints 0.064516129
33 hints 0.418604651
33 hints 0.25
33 hints 0.6
33 hints 0.075
33 hints 0.522727273
33 hints 0.3
33 hints 0.45
33 hints 0.615384615
33 hints 0.620689655
33 hints 0.147058824
33 hints 0.787878788
33 hints 0.884615385
33 hints 0.169491525
33 hints 0.038461538
33 hints 0.75862069
33 hints 1.238095238
33 hints 0.6
33 hints 1.111111111
33 hints 0.375
32 hints 0.111111111
32 hints 0.157894737
32 hints 0.066666667
32 hints 0.139534884
32 hints 0.176470588
32 hints 0.178571429
32 hints 0.117647059
32 hints 0.111111111
32 hints 0.111111111
32 hints 0.173913043
32 hints 0.588235294
32 hints 0.5
32 hints 0.540540541
32 hints 0.137931034
32 hints 0.894736842
32 hints 0.565217391
32 hints 0.333333333
32 hints 1.117647059
32 hints 0.4
32 hints 0.230769231
32 hints 0.607142857
32 hints 0.703703704
32 hints 0.210526316
32 hints 0.944444444
32 hints 1.055555556
31 hints 0.023255814
31 hints 0.206896552
31 hints 0.146341463
31 hints 0.048780488
31 hints 0.078947368
31 hints 0.411764706
31 hints 0.048780488
31 hints 0.19047619
31 hints 1.042553191
31 hints 0.212765957
31 hints 0.11627907
31 hints 0.25
31 hints 0.583333333
31 hints 0.65
31 hints 0.722222222
31 hints 0.8125
31 hints 0.4375
31 hints 0.571428571
31 hints 0.447368421
31 hints 0.344827586
31 hints 1.083333333
31 hints 1.285714286
31 hints 0.409090909
31 hints 0.486486486
31 hints 0.111111111
31 hints 0.555555556
31 hints 0.068965517
30 hints 0.037037037
30 hints 0.242424242
30 hints 0.214285714
30 hints 0.317073171
30 hints 0.375
30 hints 0.946428571
30 hints 0.148148148
30 hints 0.75862069
30 hints 0.526315789
30 hints 0.205882353
30 hints 0.214285714
30 hints 0.485714286
30 hints 0.263157895
30 hints 0.666666667
30 hints 0.826086957
30 hints 0.095238095
30 hints 1.352941176
29 hints 0.222222222
29 hints 0.275862069
29 hints 0.108695652
29 hints 0.157894737
29 hints 0.583333333
29 hints 0.514285714
29 hints 0.4
29 hints 0.083333333
29 hints 0.419354839
29 hints 0.837209302
29 hints 0.6
29 hints 0.225
29 hints 0.103448276
29 hints 0.172413793
29 hints 0.166666667
29 hints 0.514285714
29 hints 0.2
29 hints 0.678571429
29 hints 0.181818182
29 hints 0.5
29 hints 0.414634146
29 hints 1.205128205
29 hints 0.909090909
29 hints 0.35483871
29 hints 0.53125
29 hints 0.666666667
29 hints 0.095238095
29 hints 1.25
29 hints 1.4
29 hints 0.904761905
28 hints 0.333333333
28 hints 0.368421053
28 hints 0.069767442
28 hints 0.051282051
28 hints 0.222222222
28 hints 0.142857143
28 hints 0.24
28 hints 0.131578947
28 hints 0.1875
28 hints 0.318181818
28 hints 0.647058824
28 hints 0.34375
28 hints 0.25
28 hints 0.457142857
28 hints 0.055555556
28 hints 0.714285714
28 hints 0.368421053
28 hints 0.44
28 hints 0.6
28 hints 0.296296296
28 hints 1.0625
28 hints 1.111111111
28 hints 0.657894737
27 hints 0.175
27 hints 0.414634146
27 hints 0.03125
27 hints 0.172413793
27 hints 0.227272727
27 hints 0.032258065
27 hints 0.326086957
27 hints 1.222222222
27 hints 0.217391304
27 hints 0.346153846
27 hints 0.121212121
27 hints 0.052631579
27 hints 0.636363636
27 hints 0.133333333
27 hints 0.1
27 hints 0.391304348
27 hints 0.322580645
27 hints 0.833333333
27 hints 0.055555556
27 hints 0.145833333
27 hints 1.8125
26 hints 0.3125
26 hints 0.375
26 hints 0.24
26 hints 0.615384615
26 hints 0.103448276
26 hints 0.242424242
26 hints 0.72
26 hints 0.870967742
26 hints 0.16
26 hints 0.8
26 hints 0.518518519
26 hints 0.538461538
26 hints 0.4
26 hints 0.904761905
26 hints 0.76
26 hints 0.909090909
26 hints 0.192307692
26 hints 0.392857143
26 hints 0.043478261
26 hints 0.653846154
26 hints 0.923076923
26 hints 0.263157895
26 hints 0.6
26 hints 0.833333333
25 hints 0.25
25 hints 0.333333333
25 hints 0.233333333
25 hints 0.5
25 hints 0.041666667
25 hints 0.151515152
25 hints 0.142857143
25 hints 0.113636364
25 hints 0.157894737
25 hints 0.363636364
25 hints 0.875
25 hints 0.151515152
25 hints 0.413793103
25 hints 0.466666667
25 hints 0.206896552
25 hints 0.166666667
25 hints 0.4
25 hints 0.333333333
25 hints 1.237288136
25 hints 0.4375
25 hints 0.769230769
25 hints 1.230769231
25 hints 0
25 hints 0.857142857
25 hints 1.055555556
24 hints 0.05
24 hints 0.28125
24 hints 0.457142857
24 hints 0.4375
24 hints 0.148148148
24 hints 0.058823529
24 hints 0.12
24 hints 0.24
24 hints 0.342105263
24 hints 0.25
24 hints 0.166666667
24 hints 0.086956522
24 hints 0.75
24 hints 0.1
24 hints 0.125
24 hints 0.318181818
24 hints 0.529411765
24 hints 0.4
24 hints 0.588235294
24 hints 0.8125
24 hints 0.4
24 hints 0.176470588
24 hints 0.454545455
24 hints 0.161290323
24 hints 0.2
24 hints 0.5
24 hints 1.35
24 hints 0.227272727
24 hints 0.4375
24 hints 0.647058824
23 hints 0.037037037
23 hints 0.043478261
23 hints 0.230769231
23 hints 0.321428571
23 hints 0.045454545
23 hints 0.4
23 hints 0.260869565
23 hints 1.0625
23 hints 0.36
23 hints 1.571428571
23 hints 0.55
23 hints 0.545454545
23 hints 0.161290323
23 hints 0.258064516
23 hints 1.631578947
23 hints 0.076923077
23 hints 0.379310345
23 hints 0.133333333
22 hints 0.076923077
22 hints 0.041666667
22 hints 0.129032258
22 hints 0.066666667
22 hints 0.3125
22 hints 0.310344828
22 hints 0.266666667
22 hints 0.848484848
22 hints 0.405405405
22 hints 0.171428571
22 hints 0.421052632
22 hints 0.125
22 hints 0.153846154
22 hints 0.291666667
22 hints 0.807692308
22 hints 0.2
22 hints 0.066666667
22 hints 0.666666667
22 hints 0.952380952
22 hints 0.514285714
22 hints 0.24
22 hints 1.315789474
22 hints 0.19047619
22 hints 0.428571429
22 hints 1
21 hints 0
21 hints 0.1
21 hints 0.041666667
21 hints 0.391304348
21 hints 0
21 hints 0.24
21 hints 2
21 hints 0.074074074
21 hints 1.6875
21 hints 0.545454545
21 hints 0.642857143
21 hints 0.851851852
21 hints 0.769230769
21 hints 1
21 hints 0.192307692
21 hints 0.80952381
21 hints 0.722222222
21 hints 0.411764706
20 hints 0.071428571
20 hints 0.35
20 hints 0.04
20 hints 0.548387097
20 hints 0.027777778
20 hints 1.045454545
20 hints 0.173913043
20 hints 0.104166667
20 hints 0.3125
20 hints 0.222222222
20 hints 0.344827586
20 hints 0.56
20 hints 0.482758621
20 hints 0.529411765
20 hints 0.666666667
20 hints 0.36
20 hints 0.911764706
20 hints 0.043478261
20 hints 0
20 hints 0.419354839
20 hints 0.75
20 hints 0.933333333
20 hints 0.24137931
20 hints 0.147058824
20 hints 0.411764706
20 hints 0.842105263
20 hints 0.19047619
20 hints 1.238095238
20 hints 1.045454545
20 hints 1.684210526
19 hints 0
19 hints 0.25
19 hints 0
19 hints 0.115384615
19 hints 0.608695652
19 hints 0.818181818
19 hints 0.666666667
19 hints 0.875
19 hints 0.041666667
19 hints 0.064516129
19 hints 1.083333333
19 hints 1.333333333
19 hints 1.307692308
19 hints 1
19 hints 0.235294118
19 hints 0.142857143
19 hints 1.375
19 hints 0.217391304
19 hints 1.428571429
19 hints 0.428571429
19 hints 0.142857143
18 hints 0.043478261
18 hints 0.333333333
18 hints 0.148148148
18 hints 0.259259259
18 hints 0.32
18 hints 0.21875
18 hints 0.590909091
18 hints 0.777777778
18 hints 0.2
18 hints 0.347826087
18 hints 0.636363636
18 hints 0.818181818
18 hints 0.347826087
18 hints 0.045454545
17 hints 0.19047619
17 hints 0.090909091
17 hints 0.129032258
17 hints 0.529411765
17 hints 0
17 hints 0.375
17 hints 0.136363636
17 hints 0.444444444
17 hints 0.25
17 hints 0.777777778
17 hints 0.038461538
17 hints 1.105263158
16 hints 0.166666667
16 hints 0.1875
16 hints 0.777777778
16 hints 0.19047619
16 hints 0.529411765
16 hints 0.217391304
16 hints 0.851851852
16 hints 0.7
16 hints 0.666666667
16 hints 0.461538462
16 hints 0.2
16 hints 0.266666667
16 hints 0.833333333
16 hints 1.055555556
16 hints 0.4375
16 hints 0.821428571
16 hints 0.208333333
16 hints 0.095238095
16 hints 0.666666667
16 hints 0.294117647
16 hints 0.142857143
16 hints 1.222222222
16 hints 0.962962963
16 hints 0.833333333
16 hints 0
15 hints 0
15 hints 0.1
15 hints 0.294117647
15 hints 0.357142857
15 hints 0.277777778
15 hints 0.526315789
15 hints 0
15 hints 0.529411765
15 hints 0.210526316
15 hints 0.5
15 hints 0.178571429
15 hints 1
15 hints 0.736842105
15 hints 0.692307692
15 hints 0.588235294
15 hints 0.125
15 hints 1.583333333
15 hints 0.266666667
14 hints 0.111111111
14 hints 0.25
14 hints 0.555555556
14 hints 0.466666667
14 hints 0.333333333
14 hints 0.4
14 hints 0.466666667
14 hints 0.388888889
14 hints 0.4
14 hints 0.25
14 hints 0.363636364
14 hints 0.55
14 hints 1
14 hints 0.076923077
14 hints 0.785714286
14 hints 0.1
14 hints 0.444444444
13 hints 0.222222222
13 hints 0
13 hints 0.35
13 hints 0.5
13 hints 1.133333333
13 hints 1.032258065
13 hints 0.277777778
13 hints 0.25
13 hints 0.454545455
13 hints 0.28
13 hints 0.470588235
13 hints 0.375
12 hints 0.6
12 hints 0.083333333
12 hints 1.375
12 hints 0.846153846
12 hints 0.428571429
12 hints 0.916666667
12 hints 1.666666667
12 hints 0.533333333
11 hints 0.5
11 hints 0.357142857
11 hints 0.8
11 hints 0.666666667
11 hints 0.166666667
11 hints 0.181818182
11 hints 0.846153846
11 hints 0.5
11 hints 1.272727273
11 hints 0.058823529
11 hints 0.695652174
11 hints 0.15
11 hints 1.6
11 hints 0.461538462
10 hints 1.25
10 hints 0.411764706
10 hints 0.777777778
10 hints 1.142857143
10 hints 0.285714286
10 hints 1
10 hints 0.222222222
9 hints 0.0625
9 hints 0.142857143
9 hints 0.642857143
9 hints 1.117647059
9 hints 0
9 hints 0.210526316
9 hints 0.105263158
9 hints 1.5
8 hints 0.142857143
8 hints 0.7
8 hints 2.090909091
7 hints 0.1
7 hints 0.333333333
6 hints 0.5
2 hints 1
1 hints 0.5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment