performance-docs/doc/source/test_results/fuel_ccp/reports/nova_150_nodes_20.html

873 lines
200 KiB
HTML

<!doctype html>
<html ng-app="App">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="Rally version 0.6.0">
<title>Rally | Rally Task Report</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.min.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.13/d3.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.min.js"></script>
<script type="text/javascript">
"use strict";
var widgetDirective = function($compile) {
var Chart = {
_render: function(node, data, chart, do_after){
nv.addGraph(function() {
d3.select(node)
.datum(data).transition().duration(0)
.call(chart);
if (typeof do_after === "function") {
do_after(node, chart)
}
nv.utils.windowResize(chart.update);
})
},
_widgets: {
Pie: "pie",
StackedArea: "stack",
Lines: "lines",
Histogram: "histogram"
},
get_chart: function(widget) {
if (widget in this._widgets) {
var name = this._widgets[widget];
return Chart[name]
}
return function() { console.log("Error: unexpected widget:", widget) }
},
pie: function(node, data, opts, do_after) {
var chart = nv.models.pieChart()
.x(function(d) { return d.key })
.y(function(d) { return d.values })
.showLabels(true)
.labelType("percent")
.donut(true)
.donutRatio(0.25)
.donutLabelsOutside(true)
.color(function(d){
if (d.data && d.data.color) { return d.data.color }
});
var colorizer = new Chart.colorizer("errors"), data_ = [];
for (var i in data) {
data_.push({key:data[i][0], values:data[i][1], color:colorizer.get_color(data[i][0])})
}
Chart._render(node, data_, chart)
},
colorizer: function(failure_key, failure_color) {
this.failure_key = failure_key || "failed_duration";
this.failure_color = failure_color || "#d62728"; // red
this.color_idx = -1;
/* NOTE(amaretskiy): this is actually a result of
d3.scale.category20().range(), excluding red color (#d62728)
which is reserved for errors */
this.colors = ["#1f77b4", "#aec7e8", "#ff7f0e", "#ffbb78", "#2ca02c",
"#98df8a", "#ff9896", "#9467bd", "#c5b0d5", "#8c564b",
"#c49c94", "#e377c2", "#f7b6d2", "#7f7f7f", "#c7c7c7",
"#bcbd22", "#dbdb8d", "#17becf", "#9edae5"];
this.get_color = function(key) {
if (key === this.failure_key) {
return this.failure_color
}
if (this.color_idx > (this.colors.length - 2)) {
this.color_idx = 0
} else {
this.color_idx++
}
return this.colors[this.color_idx]
}
},
stack: function(node, data, opts, do_after) {
var chart = nv.models.stackedAreaChart()
.x(function(d) { return d[0] })
.y(function(d) { return d[1] })
.useInteractiveGuideline(opts.guide)
.showControls(opts.controls)
.clipEdge(true);
chart.xAxis
.tickFormat(d3.format(opts.xformat || "d"))
.axisLabel(opts.xname || "")
.showMaxMin(false);
chart.yAxis
.orient("left")
.tickFormat(d3.format(opts.yformat || ",.3f"));
var colorizer = new Chart.colorizer(), data_ = [];
for (var i in data) {
data_.push({key:data[i][0], values:data[i][1], color:colorizer.get_color(data[i][0])})
}
Chart._render(node, data_, chart, do_after);
},
lines: function(node, data, opts, do_after) {
var chart = nv.models.lineChart()
.x(function(d) { return d[0] })
.y(function(d) { return d[1] })
.useInteractiveGuideline(opts.guide)
.clipEdge(true);
chart.xAxis
.tickFormat(d3.format(opts.xformat || "d"))
.axisLabel(opts.xname || "")
.showMaxMin(false);
chart.yAxis
.orient("left")
.tickFormat(d3.format(opts.yformat || ",.3f"));
var colorizer = new Chart.colorizer(), data_ = [];
for (var i in data) {
data_.push({key:data[i][0], values:data[i][1], color:colorizer.get_color(data[i][0])})
}
Chart._render(node, data_, chart, do_after)
},
histogram: function(node, data, opts) {
var chart = nv.models.multiBarChart()
.reduceXTicks(true)
.showControls(false)
.transitionDuration(0)
.groupSpacing(0.05);
chart
.legend.radioButtonMode(true);
chart.xAxis
.axisLabel("Duration (seconds)")
.tickFormat(d3.format(",.2f"));
chart.yAxis
.axisLabel("Iterations (frequency)")
.tickFormat(d3.format("d"));
Chart._render(node, data, chart)
}
};
return {
restrict: "A",
scope: { data: "=" },
link: function(scope, element, attrs) {
scope.$watch("data", function(data) {
if (! data) { return console.log("Chart has no data to render!") }
if (attrs.widget === "Table") {
var ng_class = attrs.lastrowClass ? " ng-class='{"+attrs.lastrowClass+":$last}'" : "";
var template = "<table class='striped'><thead>" +
"<tr><th ng-repeat='i in data.cols track by $index'>{{i}}<tr>" +
"</thead><tbody>" +
"<tr" + ng_class + " ng-repeat='row in data.rows track by $index'>" +
"<td ng-repeat='i in row track by $index'>{{i}}" +
"<tr>" +
"</tbody></table>";
var el = element.empty().append($compile(template)(scope)).children()[0]
} else {
var el_chart = element.addClass("chart").css({display:"block"});
var el = el_chart.html("<svg></svg>").children()[0];
var do_after = null;
if (attrs.widget in {StackedArea:0, Lines:0}) {
/* Hide widget if not enough data */
if ((! data.length) || (data[0].length < 1) || (data[0][1].length < 2)) {
return element.empty().css({display:"none"})
}
/* NOTE(amaretskiy): Dirty fix for changing chart width in case
if there are too long Y values that overlaps chart box. */
var do_after = function(node, chart){
var g_box = angular.element(el_chart[0].querySelector(".nv-y.nv-axis"));
if (g_box && g_box[0] && g_box[0].getBBox) {
try {
// 30 is padding aroung graphs
var width = g_box[0].getBBox().width + 30;
} catch (err) {
// This happens sometimes, just skip silently
return
}
// 890 is chart width (set by CSS)
if (typeof width === "number" && width > 890) {
width = (890 * 2) - width;
if (width > 0) {
angular.element(node).css({width:width+"px"});
chart.update()
}
}
}
}
}
else if (attrs.widget === "Pie") {
if (! data.length) {
return element.empty().css({display:"none"})
}
}
var options = {
xname: attrs.nameX || "",
xformat: attrs.formatX || "d",
yformat: attrs.formatY || ",.3f",
controls: attrs.controls === "true",
guide: attrs.guide === "true"
};
Chart.get_chart(attrs.widget)(el, data, options, do_after);
}
if (attrs.nameY) {
/* NOTE(amaretskiy): Dirty fix for displaying Y-axis label correctly.
I believe sometimes NVD3 will allow doing this in normal way */
var label_y = angular.element("<div>").addClass("chart-label-y").text(attrs.nameY);
angular.element(el).parent().prepend(label_y)
}
if (attrs.description) {
var desc_el = angular.element("<div>").addClass(attrs.descriptionClass || "h3").text(attrs.description);
angular.element(el).parent().prepend(desc_el)
}
if (attrs.title) {
var title_el = angular.element("<div>").addClass(attrs.titleClass || "h2").text(attrs.title);
angular.element(el).parent().prepend(title_el)
}
angular.element(el).parent().append(angular.element("<div style='clear:both'>"))
});
}
}
};
var controllerFunction = function($scope, $location) {
$scope.source = "{\n \"NovaServers.boot_and_list_server\": [\n {\n \"args\": {\n \"detailed\": true, \n \"flavor\": {\n \"name\": \"^scaletest$\"\n }, \n \"image\": {\n \"name\": \"^cirros$\"\n }\n }, \n \"context\": {\n \"quotas\": {\n \"neutron\": {\n \"network\": -1, \n \"port\": -1, \n \"router\": -1, \n \"security_group\": -1, \n \"security_group_rule\": -1, \n \"subnet\": -1\n }, \n \"nova\": {\n \"cores\": -1, \n \"floating_ips\": -1, \n \"instances\": -1, \n \"ram\": -1, \n \"security_group_rules\": -1, \n \"security_groups\": -1\n }\n }, \n \"users\": {\n \"project_domain\": \"default\", \n \"resource_management_workers\": 20, \n \"tenants\": 10, \n \"user_choice_method\": \"random\", \n \"user_domain\": \"default\", \n \"users_per_tenant\": 10\n }\n }, \n \"runner\": {\n \"concurrency\": 20, \n \"times\": 5520, \n \"type\": \"constant\"\n }, \n \"sla\": {\n \"failure_rate\": {\n \"max\": 0\n }\n }\n }\n ]\n}";
$scope.scenarios = [{"load_profile": [["parallel iterations", [[0.0, 0], [62.29679706501961, 19.96623667790737], [124.59359413003922, 19.973640238610265], [186.89039119505884, 19.98100533655372], [249.18718826007844, 19.97906626619643], [311.48398532509805, 19.981834999324317], [373.7807823901177, 19.98164209614748], [436.07757945513725, 19.982618809127644], [498.3743765201569, 19.982016233550567], [560.6711735851765, 19.98162792042], [622.9679706501961, 19.9837833772867], [685.2647677152157, 19.985118823430472], [747.5615647802354, 19.982457407142157], [809.858361845255, 19.983440503792256], [872.1551589102745, 19.985512161596134], [934.4519559752941, 19.981782265158905], [996.7487530403138, 19.98261708691455], [1059.0455501053334, 19.982869792984836], [1121.342347170353, 19.9849829982232], [1183.6391442353727, 19.984093582312045], [1245.9359413003922, 19.98336989305474], [1308.232738365412, 19.984043672576124], [1370.5295354304315, 19.982992429866766], [1432.826332495451, 19.983906887939188], [1495.1231295604707, 19.98290863344863], [1557.4199266254902, 19.984618524349234], [1619.71672369051, 19.98426882323666], [1682.0135207555295, 19.98437352231224], [1744.310317820549, 19.98425395862388], [1806.6071148855688, 19.98555129410519], [1868.9039119505883, 19.985703334905594], [1931.200709015608, 19.984617089171696], [1993.4975060806275, 19.98611246385191], [2055.794303145647, 19.983388232710777], [2118.091100210667, 19.985308760573666], [2180.3878972756866, 19.98498575376423], [2242.684694340706, 19.986178987203562], [2304.9814914057256, 19.985286008224918], [2367.2782884707453, 19.985214486628042], [2429.5750855357646, 19.98521677908491], [2491.8718826007844, 19.983920970632774], [2554.168679665804, 19.985754469326437], [2616.465476730824, 19.986028408370824], [2678.762273795843, 19.984082368790986], [2741.059070860863, 19.985412755455503], [2803.3558679258826, 19.984984812287742], [2865.652664990902, 19.986912822209586], [2927.9494620559217, 19.98624747770549], [2990.2462591209414, 19.984434350879347], [3052.5430561859607, 19.984829947057637], [3114.8398532509805, 19.985316904728094], [3177.136650316, 19.9851786492868], [3239.43344738102, 19.98636601189313], [3301.7302444460393, 19.983829593832176], [3364.027041511059, 19.985690686207146], [3426.3238385760787, 19.986166051469677], [3488.620635641098, 19.984937906856757], [3550.917432706118, 19.986179534484755], [3613.2142297711375, 19.986365824363265], [3675.511026836157, 19.9879301832463], [3737.8078239011766, 19.98621446479376], [3800.1046209661963, 19.986584101479917], [3862.401418031216, 19.985476450550593], [3924.6982150962353, 19.985337732025165], [3986.995012161255, 19.985825726850646], [4049.291809226275, 19.98631429574701], [4111.588606291294, 19.985887917879467], [4173.885403356314, 19.985052732545636], [4236.182200421334, 19.986212757889206], [4298.478997486353, 19.986508542250085], [4360.775794551373, 19.986133846084524], [4423.072591616392, 19.985452825613585], [4485.369388681412, 19.98623544134943], [4547.666185746431, 19.986188585671435], [4609.962982811451, 19.98631638919274], [4672.259779876471, 19.986246578327542], [4734.556576941491, 19.98546844417319], [4796.85337400651, 19.986021469765557], [4859.150171071529, 19.986617657845276], [4921.446968136549, 19.985477571902678], [4983.743765201569, 19.985673376051817], [5046.0405622665885, 19.986505652759202], [5108.337359331608, 19.985994775462355], [5170.634156396628, 19.98697461904325], [5232.930953461648, 19.985934532447768], [5295.227750526667, 19.98816454200614], [5357.524547591686, 19.986655018388635], [5419.821344656706, 19.985927635941053], [5482.118141721726, 19.98678059451431], [5544.414938786746, 19.987139645330558], [5606.711735851765, 19.988607112504184], [5669.008532916784, 19.985826350674213], [5731.305329981804, 19.986376448504576], [5793.602127046824, 19.985887994422406], [5855.898924111843, 19.98575406365724], [5918.195721176863, 19.988442101517787], [5980.492518241883, 19.98593663737491], [6042.789315306903, 19.986391148550247], [6105.086112371921, 15.995904013158102], [6167.382909436941, 0.03921568627451132], [6229.679706501961, 0]]]], "errors": [{"type": "ReadTimeout", "message": "HTTPConnectionPool(host='nova-api', port=8774): Read timed out. (read timeout=180.0)", "traceback": "Traceback (most recent call last):\n File \"/usr/local/lib/python2.7/dist-packages/rally/task/runner.py\", line 68, in _run_scenario_once\n getattr(scenario_inst, method_name)(**scenario_kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/rally/plugins/openstack/scenarios/nova/servers.py\", line 61, in boot_and_list_server\n self._list_servers(detailed)\n File \"/usr/local/lib/python2.7/dist-packages/rally/task/atomic.py\", line 84, in func_atomic_actions\n f = func(self, *args, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/rally/plugins/openstack/scenarios/nova/utils.py\", line 98, in _list_servers\n return self.clients(\"nova\").servers.list(detailed)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/v2/servers.py\", line 835, in list\n \"servers\")\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/base.py\", line 249, in _list\n resp, body = self.api.client.get(url)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 480, in get\n return self._cs_request(url, 'GET', **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 458, in _cs_request\n resp, body = self._time_request(url, method, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 431, in _time_request\n resp, body = self.request(url, method, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 396, in request\n **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/api.py\", line 56, in request\n return session.request(method=method, url=url, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/sessions.py\", line 475, in request\n resp = self.send(prep, **send_kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/sessions.py\", line 596, in send\n r = adapter.send(request, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/adapters.py\", line 499, in send\n raise ReadTimeout(e, request=request)\nReadTimeout: HTTPConnectionPool(host='nova-api', port=8774): Read timed out. (read timeout=180.0)\n", "iteration": 4047}, {"type": "ReadTimeout", "message": "HTTPConnectionPool(host='nova-api', port=8774): Read timed out. (read timeout=180.0)", "traceback": "Traceback (most recent call last):\n File \"/usr/local/lib/python2.7/dist-packages/rally/task/runner.py\", line 68, in _run_scenario_once\n getattr(scenario_inst, method_name)(**scenario_kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/rally/plugins/openstack/scenarios/nova/servers.py\", line 61, in boot_and_list_server\n self._list_servers(detailed)\n File \"/usr/local/lib/python2.7/dist-packages/rally/task/atomic.py\", line 84, in func_atomic_actions\n f = func(self, *args, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/rally/plugins/openstack/scenarios/nova/utils.py\", line 98, in _list_servers\n return self.clients(\"nova\").servers.list(detailed)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/v2/servers.py\", line 835, in list\n \"servers\")\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/base.py\", line 249, in _list\n resp, body = self.api.client.get(url)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 480, in get\n return self._cs_request(url, 'GET', **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 458, in _cs_request\n resp, body = self._time_request(url, method, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 431, in _time_request\n resp, body = self.request(url, method, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 396, in request\n **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/api.py\", line 56, in request\n return session.request(method=method, url=url, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/sessions.py\", line 475, in request\n resp = self.send(prep, **send_kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/sessions.py\", line 596, in send\n r = adapter.send(request, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/adapters.py\", line 499, in send\n raise ReadTimeout(e, request=request)\nReadTimeout: HTTPConnectionPool(host='nova-api', port=8774): Read timed out. (read timeout=180.0)\n", "iteration": 4778}, {"type": "ReadTimeout", "message": "HTTPConnectionPool(host='nova-api', port=8774): Read timed out. (read timeout=180.0)", "traceback": "Traceback (most recent call last):\n File \"/usr/local/lib/python2.7/dist-packages/rally/task/runner.py\", line 68, in _run_scenario_once\n getattr(scenario_inst, method_name)(**scenario_kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/rally/plugins/openstack/scenarios/nova/servers.py\", line 61, in boot_and_list_server\n self._list_servers(detailed)\n File \"/usr/local/lib/python2.7/dist-packages/rally/task/atomic.py\", line 84, in func_atomic_actions\n f = func(self, *args, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/rally/plugins/openstack/scenarios/nova/utils.py\", line 98, in _list_servers\n return self.clients(\"nova\").servers.list(detailed)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/v2/servers.py\", line 835, in list\n \"servers\")\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/base.py\", line 249, in _list\n resp, body = self.api.client.get(url)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 480, in get\n return self._cs_request(url, 'GET', **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 458, in _cs_request\n resp, body = self._time_request(url, method, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 431, in _time_request\n resp, body = self.request(url, method, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/novaclient/client.py\", line 396, in request\n **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/api.py\", line 56, in request\n return session.request(method=method, url=url, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/sessions.py\", line 475, in request\n resp = self.send(prep, **send_kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/sessions.py\", line 596, in send\n r = adapter.send(request, **kwargs)\n File \"/usr/local/lib/python2.7/dist-packages/requests/adapters.py\", line 499, in send\n raise ReadTimeout(e, request=request)\nReadTimeout: HTTPConnectionPool(host='nova-api', port=8774): Read timed out. (read timeout=180.0)\n", "iteration": 4794}], "name": "boot_and_list_server", "runner": "constant", "iterations_count": 5520, "output_errors": [], "pos": "0", "load_duration": 6107.52912402153, "sla_success": false, "met": "boot_and_list_server", "atomic": {"pie": [["nova.list_servers", 5.399403985989267], ["nova.boot_server", 16.658142525864683]], "iter": [["nova.list_servers", [[1, 0.1394390697064607], [10, 0.784321301225303], [15, 0.7623793525972228], [21, 1.1904574408047441], [26, 1.9213074393894358], [32, 2.219491198442985], [37, 1.4504227258157039], [43, 1.9490700545518296], [48, 2.0012284793715533], [54, 2.6061321548793615], [59, 1.7973096837168154], [65, 2.704866908598637], [70, 2.826562173124673], [76, 3.856911754262622], [81, 2.233699684557706], [87, 2.4081531884013776], [92, 1.681584947351096], [98, 1.1463682409645863], [103, 0.4485648939574974], [109, 2.4295016579005986], [114, 1.1842432350352239], [120, 1.0868206231490374], [125, 2.2495381071947627], [131, 1.1161361362623128], [136, 1.3975471309993635], [142, 1.2746277477430257], [148, 2.548331944838802], [153, 3.417122310486399], [159, 2.2598795424337017], [164, 1.9923394555630844], [170, 2.791896816613017], [175, 2.767120318136359], [181, 3.452744829481922], [186, 2.399294514586968], [192, 3.662803523782363], [197, 2.8765300771464464], [203, 3.077176258183908], [208, 2.9819051130958223], [214, 3.2698235114415484], [219, 3.5497643723004106], [225, 3.829509384390237], [230, 3.20696104609448], [236, 3.7103427372116977], [241, 3.7978137731552124], [247, 3.8618391320325327], [252, 3.2770777681599497], [258, 3.803944836492123], [263, 3.4281506918478706], [269, 2.240766269573266], [274, 3.297503170759782], [280, 3.1765375206435813], [286, 2.53777385103531], [291, 3.2906641199968734], [297, 4.073043460431319], [302, 3.5494946327762325], [308, 3.2869996782662216], [313, 3.6281263413636444], [319, 4.025992694108395], [324, 3.1040300700975587], [330, 3.066166373266695], [335, 3.8140154524125633], [341, 3.486877275549861], [346, 3.6498840546262437], [352, 2.9058339302090634], [357, 3.833802328593489], [363, 2.217703860739003], [368, 3.8850942694622534], [374, 3.307631133259207], [379, 2.7286274018494976], [385, 3.6587540360464565], [390, 2.640467223913773], [396, 3.8741526724635698], [401, 3.303945211396701], [407, 2.7942515006963755], [412, 3.969510254652604], [418, 4.995570334835328], [424, 3.3458957654842263], [429, 3.860210582829922], [435, 3.3409004159595646], [440, 4.168580122615997], [446, 3.1809918586758426], [451, 3.664490316225117], [457, 3.634634093961853], [462, 4.34895676633588], [468, 3.34870426032854], [473, 3.497441556142725], [479, 3.9162205457687373], [484, 4.359685222307821], [490, 5.115485877230569], [495, 3.985260025314663], [501, 4.548689992531475], [506, 4.091895151829384], [512, 3.1495225360428085], [517, 3.063464157823203], [523, 4.123278999674125], [528, 4.228213139202306], [534, 3.3912402184113217], [539, 3.372130430263022], [545, 3.3897084896115057], [550, 4.218312418979147], [556, 4.793569723765055], [562, 4.174602546553705], [567, 3.9181652293689], [573, 5.041460114976634], [578, 2.927773814270462], [584, 3.9396893045176626], [589, 3.95484383382659], [595, 4.243172844250997], [600, 3.9996483049530895], [606, 3.3723457654317217], [611, 3.9008846213852175], [617, 3.062567773072615], [622, 4.142851359602308], [628, 3.9591944977857327], [633, 5.012346606323659], [639, 3.1871555197066153], [644, 3.8036768419155425], [650, 4.58545393529146], [655, 3.98090866855953], [661, 3.516961387965989], [666, 24.003247558206752], [672, 4.270067268523589], [677, 4.311810657597999], [683, 3.922578682070193], [688, 4.053953873938407], [694, 4.24329793971515], [700, 4.13728113796403], [705, 4.530673498692718], [711, 3.52705949112986], [716, 5.554541121358488], [722, 5.143690389135579], [727, 5.3158195433409325], [733, 3.641777817753807], [738, 3.591631697571795], [744, 4.053220959677215], [749, 3.506296527558477], [755, 4.55484926527825], [760, 4.577191865962486], [766, 5.6632702557936945], [771, 3.486751620320307], [777, 3.4613977497902453], [782, 4.514919370844714], [788, 3.496310244435882], [793, 4.554347667141236], [799, 3.9729208669800706], [804, 3.968284356421316], [810, 4.01067666558252], [815, 5.075789195903836], [821, 5.6546011662137685], [826, 61.751163344450546], [832, 3.5932491741336627], [838, 2.9321615436802726], [843, 3.477256541666778], [849, 4.032593146614406], [854, 4.333157646483234], [860, 4.768674653509423], [865, 4.045630717623064], [871, 4.562620670899101], [876, 3.4559002682782594], [882, 4.079633061436638], [887, 4.652847512908604], [893, 4.018856067588361], [898, 4.101641326710801], [904, 3.691792795623583], [909, 2.2887836349182984], [915, 4.664796421493309], [920, 3.57266194405763], [926, 3.5439435986505043], [931, 8.427230945531873], [937, 5.713131714558258], [942, 5.123836525972338], [948, 5.182043702706045], [953, 5.133177486018859], [959, 4.093964904978656], [964, 3.5795142823371346], [970, 2.4887664335361412], [976, 5.7784641618314], [981, 4.049213558003521], [987, 4.092442566070005], [992, 3.5349724517352343], [998, 3.4710484483967656], [1003, 3.5779639689818654], [1009, 4.182491634202999], [1014, 3.9530731491420985], [1020, 4.023281130237858], [1025, 3.920022822808482], [1031, 3.696204285690752], [1036, 3.0170258853746934], [1042, 4.097454183343523], [1047, 3.0252972253854726], [1053, 4.076364251150603], [1058, 4.097319765367369], [1064, 3.093782101852307], [1069, 4.432201428689818], [1075, 3.2741604456003173], [1080, 3.6149796731230137], [1086, 27.546421484670777], [1091, 3.044235528379247], [1097, 5.599341376968005], [1102, 4.948040468105419], [1108, 4.117801184239593], [1114, 3.5855322817097557], [1119, 4.414330736450478], [1125, 3.841946638148812], [1130, 3.5443808928779936], [1136, 4.705654142559434], [1141, 4.163884964542116], [1147, 4.65344137903573], [1152, 3.577637280243032], [1158, 4.176283641137939], [1163, 3.5975588180016778], [1169, 4.659187246060025], [1174, 4.1698640740436055], [1180, 3.6002349024233617], [1185, 4.144352491351144], [1191, 4.476410093514866], [1196, 3.079683493876773], [1202, 3.92399710675937], [1207, 3.9287985615108827], [1213, 3.3222870533017175], [1218, 4.12617083908855], [1224, 4.877756593883849], [1229, 4.628412678621855], [1235, 5.097871576530363], [1240, 3.632539305134095], [1246, 5.04519741777055], [1252, 3.94043094006143], [1257, 5.280689184216486], [1263, 4.110615844311957], [1268, 4.036901534467522], [1274, 4.108558865560896], [1279, 4.705464257710272], [1285, 4.982282832048935], [1290, 4.33548019243324], [1296, 4.161948679150016], [1301, 4.058532606000431], [1307, 3.9249095329339965], [1312, 4.447725676108097], [1318, 4.441121543663189], [1323, 2.8361407691153957], [1329, 4.552880416745722], [1334, 5.715221726376023], [1340, 4.850985419923036], [1345, 4.668571000513764], [1351, 3.7108361220014863], [1356, 4.31308400803718], [1362, 3.8745291008464946], [1367, 3.899947798770468], [1373, 3.448088350503278], [1378, 4.635333662447786], [1384, 4.007856106412522], [1390, 4.471289893855279], [1395, 3.885241278703713], [1401, 4.539051225219898], [1406, 3.4853181061537324], [1412, 4.3111574010572005], [1417, 4.174802191015659], [1423, 4.2041728634765185], [1428, 3.278433075849562], [1434, 3.675424304561338], [1439, 4.775917324466921], [1445, 5.487324714660705], [1450, 3.139189996581146], [1456, 3.745370987532735], [1461, 3.7535245073015013], [1467, 4.47532362177746], [1472, 3.5645146680915443], [1478, 4.232892791430159], [1483, 3.7384291576302546], [1489, 4.253965661145638], [1494, 4.801929218181665], [1500, 4.53962337452426], [1505, 5.230416985525605], [1511, 4.82565216914473], [1516, 4.1022329520488165], [1522, 4.2546818135441224], [1528, 3.6689406097799697], [1533, 3.256315022275005], [1539, 4.3367769476295654], [1544, 5.115525471991381], [1550, 4.496352207833509], [1555, 4.315607024275742], [1561, 3.73385385672251], [1566, 4.308987009352534], [1572, 4.310182730356852], [1577, 5.396023589631783], [1583, 4.307784937430118], [1588, 3.2373443496400047], [1594, 4.374169480973395], [1599, 3.7526678106059195], [1605, 3.8724872098452856], [1610, 4.7785963666611115], [1616, 4.334740260373058], [1621, 4.348444639772605], [1627, 5.4479308542997975], [1632, 4.8533062053763345], [1638, 4.002027439034435], [1643, 4.604036110034888], [1649, 4.925698054009656], [1654, 3.7829974233240327], [1660, 3.5737095691155005], [1666, 5.665398342022068], [1671, 4.134076313695972], [1677, 4.586616569671156], [1682, 3.841694057851593], [1688, 4.362510563670729], [1693, 4.296912186387653], [1699, 3.826265868933304], [1704, 4.416482930598053], [1710, 5.482600872067437], [1715, 5.248064689014196], [1721, 4.552948784137194], [1726, 4.796069641044098], [1732, 5.016588632611335], [1737, 4.778639869413438], [1743, 3.9617588174516665], [1748, 4.192286054293304], [1754, 4.914782899013474], [1759, 3.76923078212185], [1765, 5.735699698544851], [1770, 27.391465834946032], [1776, 6.319547668750646], [1781, 3.8970843639926693], [1787, 4.548721325570263], [1792, 4.459052516066511], [1798, 5.260376024937204], [1804, 5.307689590730534], [1809, 21.646921893824697], [1815, 5.8257154399070235], [1820, 4.690339978190437], [1826, 3.5718816052312405], [1831, 4.652435867682822], [1837, 4.5225958202195455], [1842, 5.226634167242738], [1848, 4.127968658571663], [1853, 4.902662069901247], [1859, 4.046418694482338], [1864, 3.874224151390184], [1870, 5.150552300439286], [1875, 4.275814436484158], [1881, 4.403690825337946], [1886, 4.395418612853264], [1892, 3.8629151479058437], [1897, 4.921098308286719], [1903, 3.898206567418827], [1908, 3.86395863000898], [1914, 3.8604671194933506], [1919, 22.236017242721882], [1925, 4.467091304668481], [1930, 9.929151191227675], [1936, 3.886804660161336], [1942, 4.4005544600279505], [1947, 4.990808554317635], [1953, 3.9224862344022298], [1958, 4.393503335939024], [1964, 4.410751693490624], [1969, 3.346414198046137], [1975, 4.382391238558121], [1980, 8.170233681582088], [1986, 4.077113903087052], [1991, 3.909227459327042], [1997, 4.54761309554602], [2002, 4.362840058147137], [2008, 4.4070600253948236], [2013, 5.3900338964184975], [2019, 4.587804865146121], [2024, 4.427822384281428], [2030, 4.430640925531803], [2035, 3.4266291165697456], [2041, 4.17486051200083], [2046, 4.861403257950583], [2052, 5.206326234167817], [2057, 5.300042541130813], [2063, 5.303164782731338], [2068, 6.328845032747245], [2074, 5.624314916306736], [2080, 3.941820937654246], [2085, 4.433497064355489], [2091, 5.061072009197182], [2096, 5.377793593683015], [2102, 5.51232279901928], [2107, 4.799832072810933], [2113, 27.087458715922427], [2118, 6.0184122997782445], [2124, 4.606474314910765], [2129, 4.0861903809119], [2135, 4.494398443595223], [2140, 3.95241780903029], [2146, 5.033253690470815], [2151, 5.068642894426977], [2157, 4.501947459967244], [2162, 4.525670421296271], [2168, 5.059741319089702], [2173, 5.176670185033825], [2179, 5.0333162580711255], [2184, 4.5203527764997595], [2190, 12.861894058141182], [2195, 15.858539297964148], [2201, 5.0740332413411675], [2206, 4.2671755569568095], [2212, 4.491041584291371], [2218, 3.956771957701436], [2223, 5.952706860459372], [2229, 5.386840559434197], [2234, 5.938328283420503], [2240, 4.448240012362385], [2245, 8.4205076193465], [2251, 4.520139573276897], [2256, 3.983315818551659], [2262, 4.488608431125037], [2267, 4.500217085299282], [2273, 4.126187906748909], [2278, 5.52243112826702], [2284, 5.142770945162026], [2289, 5.476953247318998], [2295, 4.59521689967842], [2300, 5.379181951716267], [2306, 4.5819031570269315], [2311, 4.449576196463235], [2317, 3.760462342828924], [2322, 6.935134625089332], [2328, 4.543481451877651], [2333, 13.56590923019078], [2339, 4.133266778959745], [2344, 4.058640697727936], [2350, 4.833412149678104], [2356, 4.330847764360832], [2361, 5.515091839043989], [2367, 4.019321125486626], [2372, 3.983965756236638], [2378, 5.023806544317714], [2383, 5.153488456339072], [2389, 3.98439889196037], [2394, 4.089154798051585], [2400, 5.100357043570367], [2405, 4.043594819912015], [2411, 4.021469470383542], [2416, 33.83932137143778], [2422, 5.1132686155429745], [2427, 4.078386458797731], [2433, 4.509469338085337], [2438, 4.8107708191526894], [2444, 4.126635397689799], [2449, 4.203846240389232], [2455, 5.105750745621277], [2460, 4.071868533673494], [2466, 3.660994604013969], [2471, 3.994813678921132], [2477, 4.989616563354606], [2482, 4.332559466362107], [2488, 5.449165724325958], [2494, 3.780043589895965], [2499, 3.60201062499612], [2505, 5.176496702691791], [2510, 4.604168999022332], [2516, 4.115456370339771], [2521, 5.921594137730822], [2527, 5.8902170053427625], [2532, 4.473525926686613], [2538, 4.771402789198938], [2543, 3.9092532206271633], [2549, 4.802946133890126], [2554, 7.958217810892673], [2560, 5.634610518165982], [2565, 4.302366483038749], [2571, 4.650563362715902], [2576, 4.754783201908611], [2582, 5.224789928698996], [2587, 5.229052139365156], [2593, 4.867557613745872], [2598, 4.888073568758866], [2604, 9.20937881262169], [2609, 11.537623331169067], [2615, 4.206806265789525], [2620, 4.094233075777695], [2626, 4.378700900768882], [2632, 4.633101663727702], [2637, 3.4713202179342004], [2643, 3.6808098675548147], [2648, 8.35768017734307], [2654, 3.6231407998264316], [2659, 5.874895496644871], [2665, 5.03744610150655], [2670, 3.56480032291965], [2676, 3.5302068807076727], [2681, 4.527222014855533], [2687, 4.253099261850664], [2692, 4.717338109361828], [2698, 4.187387383502594], [2703, 4.7077664223269], [2709, 11.45398358503989], [2714, 4.6989285928615585], [2720, 4.261314796364709], [2725, 7.519331736841182], [2731, 16.734818676243666], [2736, 4.569759557212482], [2742, 6.0654855430990064], [2747, 5.432166628215621], [2753, 5.241540041522813], [2758, 4.7298292629960645], [2764, 4.057916477106626], [2770, 7.14634886859108], [2775, 10.496516711470123], [2781, 4.837361031684211], [2786, 4.858528125113371], [2792, 4.8513520835103225], [2797, 5.02829048599011], [2803, 5.538694818814626], [2808, 4.7395784837613775], [2814, 4.674996077150471], [2819, 4.628470287806744], [2825, 4.735521053922342], [2830, 4.109539869902797], [2836, 6.056313542352081], [2841, 8.115968455438196], [2847, 6.012814931248505], [2852, 4.609623278396592], [2858, 5.508051410965302], [2863, 4.24790260930013], [2869, 4.104616249816919], [2874, 5.750004937683325], [2880, 3.961787750755528], [2885, 3.7656511586645416], [2891, 5.898133737453517], [2896, 4.28212495990421], [2902, 3.5409112944120436], [2908, 3.3597693633340957], [2913, 4.197398864704593], [2919, 3.0537889677545595], [2924, 4.811348104822459], [2930, 4.892854303553487], [2935, 35.29022795221081], [2941, 4.258058160975357], [2946, 4.926043116528044], [2952, 5.338440140088418], [2957, 4.538427427195117], [2963, 5.240888806357016], [2968, 3.7833877508189855], [2974, 4.460916906163309], [2979, 4.676473266836399], [2985, 4.352172433466274], [2990, 4.6948475630385875], [2996, 5.640248948249383], [3001, 4.174468548401547], [3007, 5.222038592117293], [3012, 4.714289843172387], [3018, 5.414603644523067], [3023, 4.810301179471227], [3029, 4.1872368463571545], [3034, 4.774968067804969], [3040, 5.92469871907994], [3046, 5.4132329432859425], [3051, 10.964380618454884], [3057, 4.83651436411803], [3062, 5.883289371711754], [3068, 5.135608622993244], [3073, 4.821211529814668], [3079, 4.957590585169465], [3084, 5.033801866614322], [3090, 4.596258223920739], [3095, 4.481584751087808], [3101, 4.2638670396111245], [3106, 6.443835284399042], [3112, 4.947594685830972], [3117, 4.169162947198605], [3123, 4.961184558661091], [3128, 4.389883513035979], [3134, 4.310259544331104], [3139, 4.222497924514435], [3145, 5.392274695894008], [3150, 5.3447682425595575], [3156, 4.699111100556062], [3161, 4.62515399939785], [3167, 4.2639750725981145], [3172, 5.417746315831591], [3178, 5.19233635024748], [3184, 4.567482690880391], [3189, 6.578153506569236], [3195, 4.877805105154072], [3200, 5.072220558705537], [3206, 4.3828916998877], [3211, 26.704487232194438], [3217, 5.761341008587025], [3222, 4.7828168022461215], [3228, 4.289156690887775], [3233, 4.9179414476173555], [3239, 5.015395021092932], [3244, 15.825877543808893], [3250, 4.971421416255006], [3255, 4.367176173389822], [3261, 5.502527136733561], [3266, 4.892642660417427], [3272, 5.415299897608562], [3277, 4.329734722773225], [3283, 4.6060426200644145], [3288, 5.221515118212077], [3294, 3.959136420401975], [3299, 4.901440361271594], [3305, 4.353464307992496], [3310, 3.9839431237484364], [3316, 4.405826129775013], [3322, 4.9064527698185145], [3327, 4.962566391281456], [3333, 4.9490515961163295], [3338, 5.433120122854268], [3344, 4.338964039000911], [3349, 4.882694016332214], [3355, 4.9233419756958385], [3360, 4.136116166045694], [3366, 3.8469093208727343], [3371, 13.915987904521046], [3377, 11.164299424143792], [3382, 21.098702021267112], [3388, 6.738941964895825], [3393, 4.8008298856623215], [3399, 6.157340920489915], [3404, 4.9498630900313865], [3410, 5.556986364765442], [3415, 4.383584711862652], [3421, 4.834187542182809], [3426, 5.997397894444531], [3432, 4.179557599883134], [3437, 4.805103619893544], [3443, 4.736984442973482], [3448, 16.75963118283645], [3454, 4.308179152184718], [3460, 4.906553859295985], [3465, 5.27435684204085], [3471, 4.710057949674455], [3476, 5.503663714381238], [3482, 13.315291368442956], [3487, 4.292770269988314], [3493, 4.96904394937598], [3498, 4.495024964429331], [3504, 4.3736044064812045], [3509, 11.676823754241505], [3515, 4.949751945509434], [3520, 4.93259516660717], [3526, 10.454433247662982], [3531, 5.501069461089976], [3537, 4.458472137865801], [3542, 28.031872034072883], [3548, 4.630810048269191], [3553, 4.322675048441122], [3559, 5.232123041498332], [3564, 5.184631409852401], [3570, 5.007178007692688], [3575, 5.5247589453405395], [3581, 5.757010392520894], [3586, 4.131449464438613], [3592, 4.202521776807327], [3598, 5.617471009060954], [3603, 4.938330904297364], [3609, 4.434838313987295], [3614, 5.3097194761468165], [3620, 5.700384924375133], [3625, 11.844042420389517], [3631, 4.57004146126733], [3636, 10.893970254538717], [3642, 5.032576612804237], [3647, 4.945486968842137], [3653, 4.331184437309461], [3658, 4.3743294788443565], [3664, 4.484853369602256], [3669, 4.4656529392021325], [3675, 5.008713901906777], [3680, 4.91460001295875], [3686, 5.065818667411961], [3691, 5.089065306428533], [3697, 4.491869394330031], [3702, 5.056070329486458], [3708, 6.113490949506345], [3713, 5.322565830272174], [3719, 5.295606388561798], [3724, 5.88013545153798], [3730, 5.2504693667093925], [3736, 6.68613950065961], [3741, 5.54954322006391], [3747, 5.044652163118552], [3752, 5.145089393076694], [3758, 4.178177291068313], [3763, 5.890434152838125], [3769, 4.6817795314651685], [3774, 4.604668710542795], [3780, 5.01492504106053], [3785, 9.41851142351179], [3791, 5.6060404155565315], [3796, 4.658008492511252], [3802, 4.079981555109428], [3807, 15.241348978401964], [3813, 4.360806743304047], [3818, 5.451069491497024], [3824, 5.616949172987302], [3829, 4.685308285381481], [3835, 5.35041085360707], [3840, 5.5229261664375136], [3846, 5.319531470105421], [3851, 7.151625800823666], [3857, 5.6220080265102], [3862, 4.661130765210023], [3868, 4.565862068231561], [3874, 4.0975003639858665], [3879, 3.986705646998472], [3885, 5.017317545583252], [3890, 16.116280858070805], [3896, 5.394162259240093], [3901, 5.437371718710743], [3907, 4.734988243683704], [3912, 4.524522209512994], [3918, 3.6543915461802925], [3923, 5.234091370002081], [3929, 4.960300215776552], [3934, 4.0454731713170435], [3940, 5.136031211286058], [3945, 32.76964396843036], [3951, 5.090239754621467], [3956, 5.566497033920674], [3962, 5.411152245342035], [3967, 5.083244767741879], [3973, 19.19446254122085], [3978, 5.613316712172126], [3984, 5.708641309669052], [3989, 5.065580912258157], [3995, 5.1177352563196195], [4000, 5.618603319361594], [4006, 5.257225893545838], [4012, 5.004686253658067], [4017, 5.107726375262114], [4023, 4.236036504524342], [4028, 5.19233171663423], [4034, 5.319621917130292], [4039, 5.150891461234155], [4045, 9.71660478563283], [4050, 31.858306356108276], [4056, 4.501750011374984], [4061, 5.754635629446604], [4067, 4.581486313239395], [4072, 5.068960315939308], [4078, 4.521820382795474], [4083, 5.034589129945329], [4089, 9.305682548573326], [4094, 16.05546895663453], [4100, 5.788351936616758], [4105, 5.085558889568711], [4111, 4.53403881667317], [4116, 5.102934490079458], [4122, 5.18135441904482], [4127, 4.720445605291846], [4133, 3.945978968039973], [4138, 4.848761413408185], [4144, 5.216702765312741], [4150, 5.705463813698829], [4155, 5.083612666613809], [4161, 4.668255405149593], [4166, 4.597065595613011], [4172, 4.58777248859406], [4177, 4.57462079455886], [4183, 5.292425895082599], [4188, 5.110304048096103], [4194, 5.167295317718956], [4199, 4.655828000842639], [4205, 4.697616053664182], [4210, 5.271673002104657], [4216, 4.152528920035429], [4221, 6.017816089201669], [4227, 5.134014362874416], [4232, 5.340723065362416], [4238, 4.731446876042165], [4243, 4.2695581584737035], [4249, 5.441700327223615], [4254, 4.806380975073654], [4260, 4.078939902609688], [4265, 6.2813092280124545], [4271, 9.215235416440068], [4276, 5.817057058431099], [4282, 5.821953852971401], [4288, 4.801082199898324], [4293, 5.199174751406111], [4299, 4.649363350177043], [4304, 5.609742472137342], [4310, 4.694854917733578], [4315, 5.348875705746583], [4321, 6.120554348696894], [4326, 5.124490827753725], [4332, 5.394525391468293], [4337, 4.734265075213665], [4343, 4.718564112981167], [4348, 5.161929299865939], [4354, 4.826804484146052], [4359, 4.630722140920501], [4365, 5.580134948094702], [4370, 6.2554301593612625], [4376, 5.36028377560621], [4381, 5.1821000558742565], [4387, 5.24408931663071], [4392, 4.990410084309751], [4398, 5.712384586748879], [4403, 14.638381284212967], [4409, 5.880276633348615], [4414, 5.57577997877994], [4420, 4.859688019406979], [4426, 4.438605369001197], [4431, 5.390626603278578], [4437, 4.784308900003842], [4442, 5.137894338455826], [4448, 4.624243993689783], [4453, 5.176524088002824], [4459, 5.419588477715007], [4464, 5.221322415531732], [4470, 5.3750156354213106], [4475, 5.138601147610033], [4481, 6.593538557273946], [4486, 4.961454871771975], [4492, 13.753766861514935], [4497, 4.18006635748806], [4503, 5.859965611195227], [4508, 5.791958625765808], [4514, 4.314492925353673], [4519, 5.379117504410105], [4525, 5.5374967395393675], [4530, 5.744549023932499], [4536, 5.523682400800174], [4541, 5.418670806331884], [4547, 5.784280446992632], [4552, 4.026566178902132], [4558, 4.77019996746728], [4564, 5.275159706240105], [4569, 5.374438002489606], [4575, 4.37059955320479], [4580, 5.318054337432611], [4586, 5.298937343168944], [4591, 5.097132468568915], [4597, 4.907730781514031], [4602, 4.241900953693538], [4608, 5.078784154809054], [4613, 5.1768646965856195], [4619, 4.801413591357216], [4624, 4.457502790119287], [4630, 5.1387458797814975], [4635, 5.347588136576202], [4641, 4.779933056969571], [4646, 5.302911758422868], [4652, 17.196670482123896], [4657, 6.234479081803663], [4663, 5.912247863368731], [4668, 4.728237117546181], [4674, 5.40698626421501], [4679, 4.7579726257186135], [4685, 5.409262206243219], [4690, 5.022262310636403], [4696, 5.4109164735545345], [4702, 5.874327177581655], [4707, 27.788224628011296], [4713, 4.60149595011836], [4718, 5.671191502308517], [4724, 4.86882369587365], [4729, 5.648668707281141], [4735, 4.876110044078463], [4740, 5.010602050933361], [4746, 8.68812168335569], [4751, 4.950501139613166], [4757, 5.397618691126507], [4762, 7.547363191411124], [4768, 4.7879198167635], [4773, 4.431429596914754], [4779, 36.263563240783824], [4784, 5.407373720320889], [4790, 5.508315827535691], [4795, 36.88653867659369], [4801, 5.4259779988855374], [4806, 7.040372039960571], [4812, 5.2491821361626725], [4817, 4.839271275893513], [4823, 6.496725008107612], [4828, 4.8879563203756335], [4834, 5.561191470726618], [4840, 4.906266031058002], [4845, 5.425555859786886], [4851, 5.185402274131764], [4856, 6.536591448645451], [4862, 5.189950262291064], [4867, 4.9174537606860955], [4873, 4.933436924132761], [4878, 5.168645848398426], [4884, 4.180748065312912], [4889, 5.739351386609131], [4895, 5.629019695779632], [4900, 5.564212318779607], [4906, 5.568873205046961], [4911, 6.286458435265908], [4917, 5.690464849057188], [4922, 5.148396885913574], [4928, 5.680944679439908], [4933, 10.91257776384766], [4939, 5.50627599764564], [4944, 4.843989935474123], [4950, 6.8139138169910725], [4955, 4.90829158174818], [4961, 4.927658195080954], [4966, 4.876054689504119], [4972, 5.501984680908316], [4978, 5.650826424792195], [4983, 5.779172783312762], [4989, 5.888245872829089], [4994, 5.000383345977119], [5000, 7.188293688539144], [5005, 13.14792991893413], [5011, 8.72765100693824], [5016, 4.941002381020679], [5022, 4.11849625559821], [5027, 5.0278788096663], [5033, 5.49099894019141], [5038, 5.472311111463998], [5044, 5.716661548268975], [5049, 5.275065181911649], [5055, 15.151370578918119], [5060, 5.009486521499724], [5066, 14.064459945844373], [5071, 14.479595778645146], [5077, 3.8552757812583085], [5082, 6.26149488877536], [5088, 5.6751937952596725], [5093, 4.946742564007852], [5099, 5.102703301802905], [5104, 5.123626316803102], [5110, 11.237592838812363], [5116, 5.472453241763117], [5121, 5.531966516937034], [5127, 4.929927723995148], [5132, 5.608022107594282], [5138, 4.7885908648589055], [5143, 5.246428614077139], [5149, 5.737706370975747], [5154, 5.606738085332107], [5160, 5.425876427387841], [5165, 6.153337763703385], [5171, 5.579421468403044], [5176, 5.571419850639672], [5182, 10.073699750762266], [5187, 5.0397964404974775], [5193, 4.877383123273425], [5198, 5.673094067020626], [5204, 6.045078338056452], [5209, 4.625664410383795], [5215, 6.122270470080168], [5220, 5.041181512500923], [5226, 5.8700250007104335], [5231, 5.481228622837327], [5237, 4.503808653872939], [5242, 5.564348075700867], [5248, 4.766196689743911], [5254, 4.767324212668374], [5259, 5.64034543348419], [5265, 4.934786969336897], [5270, 5.474843237711053], [5276, 5.64410007691013], [5281, 5.46352748939979], [5287, 5.038642292437353], [5292, 5.461657048999175], [5298, 6.193260579869576], [5303, 5.451108441836614], [5309, 5.2523770470550115], [5314, 5.936839967533915], [5320, 6.794493761614231], [5325, 8.58902924993891], [5331, 6.258860522422439], [5336, 6.542799830436494], [5342, 6.2432722319729566], [5347, 5.1768847064695285], [5353, 13.330458832823732], [5358, 5.07693068704743], [5364, 5.6838535554167136], [5369, 6.212466224380166], [5375, 4.45515900418376], [5380, 10.528614035548841], [5386, 6.389627952508873], [5392, 6.099873960881989], [5397, 6.194921636926941], [5403, 5.6891272724538675], [5408, 6.605514450349663], [5414, 5.320461865784471], [5419, 5.151645307955466], [5425, 4.786564733671403], [5430, 4.898803097614117], [5436, 6.117255160774027], [5441, 5.006945067557724], [5447, 5.0026618104049945], [5452, 5.840945518535116], [5458, 4.9461219932722305], [5463, 5.112423236819026], [5469, 6.110866361770426], [5474, 5.165424516235222], [5480, 5.791200135065401], [5485, 5.415890140809856], [5491, 5.07872688597529], [5496, 6.193041003268697], [5502, 5.247160099554841], [5507, 5.146543285120985], [5513, 5.464881995449665], [5520, 5.4427909851076635]]], ["nova.boot_server", [[1, 8.14524101001629], [10, 8.07337190793908], [15, 9.230977754662002], [21, 7.617719327194101], [26, 8.763926715090655], [32, 7.7474117503649955], [37, 6.733751271082005], [43, 13.733644898386967], [48, 12.467559876649279], [54, 12.790159520895587], [59, 8.851964288863579], [65, 11.827484618062561], [70, 12.859852177509364], [76, 12.721574531085249], [81, 13.163912334303923], [87, 10.125808503316797], [92, 12.64804969490438], [98, 12.008029360702075], [103, 10.820263579271842], [109, 11.550700940947603], [114, 8.236688878225246], [120, 8.814618221227676], [125, 9.924782144850575], [131, 8.514368959095174], [136, 9.304020437641407], [142, 10.756984662318574], [148, 10.554129536601089], [153, 12.391555608182697], [159, 12.54790513066279], [164, 12.994858688202452], [170, 11.47038551171621], [175, 11.696916625119645], [181, 11.405538436295327], [186, 12.334420207617935], [192, 13.549076577891471], [197, 13.36130589678667], [203, 13.685999555864203], [208, 14.411573702010553], [214, 14.367610725803644], [219, 12.96117421682331], [225, 12.968300525692936], [230, 11.50870021702586], [236, 11.854735923850022], [241, 14.680320615353796], [247, 14.785968695861683], [252, 14.558972170387497], [258, 15.939945561298417], [263, 14.736592589945033], [269, 12.580031172088956], [274, 15.74591045967047], [280, 12.854187828907087], [286, 12.787471576013415], [291, 14.037382759909693], [297, 13.415410370066546], [302, 16.6897795839586], [308, 13.353639029074406], [313, 15.06755222272184], [319, 13.929385534231203], [324, 13.939621151357453], [330, 12.18653285503388], [335, 14.250228672787749], [341, 15.719196495802507], [346, 15.463553110758477], [352, 16.795472703118243], [357, 15.308492615603003], [363, 20.789665987526178], [368, 15.407444257667116], [374, 13.942439559577151], [379, 16.122113882631513], [385, 13.756462421970086], [390, 14.40190559539242], [396, 14.4888147012047], [401, 14.077778100967421], [407, 14.244748055071073], [412, 16.747872093449452], [418, 14.03892687956493], [424, 15.328708600306864], [429, 14.091254341429542], [435, 14.140200449072815], [440, 14.777831321177276], [446, 16.508616739425086], [451, 16.17345026956092], [457, 16.283687633016797], [462, 15.428707667019076], [468, 14.023863749227662], [473, 15.133279568907144], [479, 13.629442380822224], [484, 16.077579956123767], [490, 14.62871198204984], [495, 15.640598457792521], [501, 15.847396050674327], [506, 15.516899368037326], [512, 15.051538840584143], [517, 15.696619546931707], [523, 18.30332423293074], [528, 15.027671606644317], [534, 15.645061567209792], [539, 15.638414401938949], [545, 15.944136242935624], [550, 14.496717435726199], [556, 15.187406463899476], [562, 15.310491050499072], [567, 17.050495037134144], [573, 16.527414458385387], [578, 17.45414882811952], [584, 14.801006818163192], [589, 16.783628892207496], [595, 15.317189121591891], [600, 15.583213735317818], [606, 14.245113991308955], [611, 15.428755958874993], [617, 13.634037949036857], [622, 15.590120080588534], [628, 15.06250864699268], [633, 15.286085249721067], [639, 14.799066441646547], [644, 18.75047673177031], [650, 17.583946578744527], [655, 16.194083279457647], [661, 14.280510009198949], [666, 16.299763912739902], [672, 15.924534433129962], [677, 16.680491179659747], [683, 16.07125717315118], [688, 15.930984020233181], [694, 15.886985353801535], [700, 15.821660126464984], [705, 16.50690878128657], [711, 15.92877851707348], [716, 16.228203326031753], [722, 15.545557880747207], [727, 16.692352355390263], [733, 16.71036425708], [738, 16.383371810982222], [744, 15.87303091995958], [749, 16.411162020503646], [755, 16.943320210429142], [760, 15.288905515187093], [766, 17.075422995332293], [771, 17.763061599455085], [777, 16.11362112950589], [782, 15.777266229408344], [788, 18.07846898272416], [793, 15.37668045189073], [799, 14.757197941558916], [804, 15.41140607128976], [810, 16.68081359759621], [815, 14.573716379594112], [821, 16.193794957105666], [826, 16.71744811362111], [832, 15.627569646075186], [838, 16.720676771108618], [843, 18.10992285652437], [849, 16.81675180490466], [854, 15.027533985566443], [860, 15.080491586007897], [865, 14.941492839136023], [871, 15.248177419538044], [876, 16.475712473841686], [882, 17.999525521112563], [887, 15.065550868062008], [893, 15.025204979855044], [898, 16.047523265299624], [904, 16.575995443523794], [909, 16.07892984410987], [915, 17.72542057002804], [920, 16.6720598970634], [926, 16.26620001896572], [931, 15.562178245489111], [937, 17.577552671017838], [942, 17.993078401123284], [948, 15.724086726921149], [953, 14.88359771776899], [959, 16.697609832321387], [964, 15.602308452993158], [970, 15.533083798228802], [976, 15.211073923802092], [981, 14.44693018733584], [987, 15.556575690490654], [992, 16.07285486960761], [998, 15.075841905414192], [1003, 14.412270069122313], [1009, 16.796532090159392], [1014, 15.413423628046878], [1020, 17.285995160324017], [1025, 15.37440192872196], [1031, 14.635081980539418], [1036, 16.232863707818847], [1042, 16.88491915447127], [1047, 13.1872660889142], [1053, 14.23983538496322], [1058, 15.34266975824379], [1064, 17.324715068374903], [1069, 15.50072410659509], [1075, 14.353881172511935], [1080, 13.855793197949767], [1086, 14.389753044515377], [1091, 16.43332478792762], [1097, 13.882174723390339], [1102, 16.35022173584359], [1108, 16.514627263166], [1114, 16.259683361951762], [1119, 32.65842633662011], [1125, 15.323075987290746], [1130, 17.07692316476854], [1136, 17.018645110337527], [1141, 17.58544127664694], [1147, 17.117746446443846], [1152, 15.77038961044251], [1158, 15.48705725220662], [1163, 17.47359564166143], [1169, 16.28759644342515], [1174, 14.603653893954412], [1180, 17.197215855985398], [1185, 18.02520325736728], [1191, 16.37816873322364], [1196, 15.513202834820387], [1202, 13.631385455960864], [1207, 15.635346564693629], [1213, 16.67253355185196], [1218, 31.7551213554714], [1224, 17.769001883009157], [1229, 16.787309461745714], [1235, 17.121953765551254], [1240, 17.063262533450523], [1246, 15.88877659258635], [1252, 15.612406157065022], [1257, 17.112054270246862], [1263, 15.063162160956287], [1268, 15.725653216458804], [1274, 18.196833677913776], [1279, 15.470041394233759], [1285, 16.463840565819613], [1290, 14.514711473299165], [1296, 15.233180799346037], [1301, 16.55846396390937], [1307, 15.802308163781145], [1312, 18.36345503641207], [1318, 15.132221062978163], [1323, 16.612621670183874], [1329, 16.59217925348149], [1334, 14.99899044071419], [1340, 16.702540544496067], [1345, 14.97893710412841], [1351, 14.754492015078387], [1356, 15.59713073917063], [1362, 18.036958765292376], [1367, 15.853135271348897], [1373, 15.340150052222654], [1378, 17.06327506251957], [1384, 17.99491923615553], [1390, 16.47451007020657], [1395, 14.954018150550684], [1401, 17.698629617691026], [1406, 15.586712622987985], [1412, 14.019027663313905], [1417, 13.645866703296033], [1423, 16.882865542950803], [1428, 15.596314063970594], [1434, 16.849432767301362], [1439, 16.408847991971065], [1445, 15.277371475661898], [1450, 17.434267050978114], [1456, 16.12330022756604], [1461, 17.16953681862869], [1467, 17.599886161693636], [1472, 15.429842648298873], [1478, 16.401871280393742], [1483, 17.352749121361917], [1489, 16.58932925307237], [1494, 16.29205177486799], [1500, 18.272926057594468], [1505, 14.506725739741569], [1511, 16.051477420157255], [1516, 14.879673828249516], [1522, 15.080457860145017], [1528, 16.19162760610159], [1533, 15.073304653167728], [1539, 15.827166984046782], [1544, 16.21734023439705], [1550, 15.980484108993908], [1555, 17.294985183771107], [1561, 16.092316473739867], [1566, 14.424881416818366], [1572, 14.527770287748698], [1577, 16.43503856658926], [1583, 16.978477329447742], [1588, 15.20356240134305], [1594, 16.403755968895414], [1599, 29.920299625051182], [1605, 18.42672006807466], [1610, 15.765268426010714], [1616, 14.5607740395311], [1621, 17.755742828051176], [1627, 17.007927687271778], [1632, 16.541306749634057], [1638, 20.263268206430517], [1643, 18.09346153770682], [1649, 16.43737997006671], [1654, 18.71860581722813], [1660, 16.8820221786913], [1666, 15.16658870379137], [1671, 17.060354569683902], [1677, 15.963467316350998], [1682, 16.47311046158066], [1688, 18.092359812363263], [1693, 16.93978480325236], [1699, 14.147224307060315], [1704, 17.708091017128694], [1710, 16.091222198113222], [1715, 24.84454724581328], [1721, 19.14856688354344], [1726, 16.70112531599791], [1732, 15.13299134157706], [1737, 17.738231660663143], [1743, 16.319904183995977], [1748, 15.267106375832562], [1754, 15.883583265801906], [1759, 16.47288367886481], [1765, 16.140333649041075], [1770, 16.10234771776883], [1776, 17.778986004815515], [1781, 16.361663806265813], [1787, 16.31267625007063], [1792, 18.735911806424532], [1798, 15.425222991169441], [1804, 16.08022579593927], [1809, 16.212696300036743], [1815, 17.554881151171596], [1820, 15.756191756414424], [1826, 15.775089345116553], [1831, 15.152527105980871], [1837, 15.339920422305386], [1842, 16.015785129173857], [1848, 16.744254677191954], [1853, 17.94689754299504], [1859, 17.139617215032235], [1864, 16.229109187057055], [1870, 18.534987200861313], [1875, 16.520260482594583], [1881, 17.58000342223955], [1886, 17.300223564756095], [1892, 16.609561327574987], [1897, 16.429870938909147], [1903, 18.93915028502975], [1908, 17.048837127892657], [1914, 17.729186451953606], [1919, 16.50427162820022], [1925, 18.30242091503688], [1930, 16.586092731227097], [1936, 14.514544948287663], [1942, 15.363139936889263], [1947, 17.10737523479746], [1953, 15.300287956776906], [1958, 14.931764789249499], [1964, 17.454476090445123], [1969, 16.638446690379663], [1975, 15.81677308635431], [1980, 17.569074537443008], [1986, 17.098246952761563], [1991, 19.06885534093028], [1997, 16.920341507248335], [2002, 16.99423154713436], [2008, 18.039949524229844], [2013, 17.397412626639742], [2019, 16.260190507640097], [2024, 17.056220973747266], [2030, 14.649067158284579], [2035, 16.56425632428406], [2041, 17.131430936896276], [2046, 16.760561500770496], [2052, 15.09018818364641], [2057, 18.451642694680537], [2063, 22.499289001241625], [2068, 22.97615765316103], [2074, 17.83446460184835], [2080, 14.883683603742753], [2085, 17.876096459402817], [2091, 14.58305581583491], [2096, 15.11089735791293], [2102, 15.012892615968026], [2107, 15.217952386192653], [2113, 15.674074186795005], [2118, 15.634910937668527], [2124, 15.596204286036187], [2129, 20.765093784401436], [2135, 15.460011900335243], [2140, 17.733076841934782], [2146, 19.48363333163063], [2151, 16.48318660604772], [2157, 17.50977247521497], [2162, 18.12113257940255], [2168, 17.24659797246914], [2173, 18.01838060565627], [2179, 17.800932378008653], [2184, 17.24328924953083], [2190, 17.778864838074863], [2195, 17.053261556487136], [2201, 15.685186327367685], [2206, 17.8937881027441], [2212, 16.29412391738634], [2218, 17.579497223315038], [2223, 15.641072155772394], [2229, 18.06082149346698], [2234, 17.074758550395128], [2240, 17.673986723457656], [2245, 14.042173349339034], [2251, 16.836250795834115], [2256, 18.165300973947595], [2262, 17.976914566496145], [2267, 15.567665709965564], [2273, 15.108818372090479], [2278, 15.540614007175918], [2284, 15.314176405685629], [2289, 16.98643085403709], [2295, 16.98339818871549], [2300, 16.361877443133828], [2306, 17.345732913500978], [2311, 17.025509601053983], [2317, 18.31053597512476], [2322, 15.27590888479471], [2328, 17.38654502578385], [2333, 18.428934501565124], [2339, 16.98258960938118], [2344, 17.52482694646586], [2350, 13.886889988097662], [2356, 16.849971347960704], [2361, 17.92259921025549], [2367, 17.939103710478697], [2372, 17.09504282128953], [2378, 17.679665111113525], [2383, 17.29330794189287], [2389, 16.386659829512688], [2394, 16.410226611123786], [2400, 16.179310169772815], [2405, 14.875652178474159], [2411, 13.57550466233405], [2416, 14.283774565959156], [2422, 14.455939298090806], [2427, 16.11636089933084], [2433, 14.58900607841612], [2438, 15.953980012216226], [2444, 18.30782082806473], [2449, 16.962060492971666], [2455, 15.192785860835643], [2460, 14.0487116644349], [2466, 15.709282826686248], [2471, 21.052483123280783], [2477, 15.997744442760913], [2482, 16.77002659742374], [2488, 15.07076904048103], [2494, 17.392196211261897], [2499, 17.90436416950768], [2505, 17.144746270732924], [2510, 16.70593027792079], [2516, 17.094754697620367], [2521, 16.149992175724194], [2527, 16.932637895362642], [2532, 16.362259916637683], [2538, 16.718799212704255], [2543, 18.56437593439366], [2549, 14.924026504806987], [2554, 14.14285361248503], [2560, 14.949968153151802], [2565, 15.538715861845784], [2571, 16.41916730956742], [2576, 17.101203807886144], [2582, 16.525498087855325], [2587, 16.250795625258206], [2593, 17.279968875042016], [2598, 16.848546408224628], [2604, 15.336551052936523], [2609, 16.128147914789725], [2615, 15.871516258820396], [2620, 17.013429567433786], [2626, 15.391046883403467], [2632, 16.638831083325183], [2637, 15.89681552976824], [2643, 13.67505763233572], [2648, 16.496672334878234], [2654, 16.65141152990042], [2659, 18.307924963425616], [2665, 15.99422618098913], [2670, 16.206611412158715], [2676, 15.801827069641824], [2681, 17.626583697139285], [2687, 16.73946156881882], [2692, 16.148634077845905], [2698, 15.7037345775663], [2703, 14.69825634576272], [2709, 16.29621990003436], [2714, 17.998014018155413], [2720, 18.15047860663877], [2725, 17.461071472237236], [2731, 17.89375354759912], [2736, 16.201410837795496], [2742, 17.384590950565222], [2747, 14.464477552883922], [2753, 19.44606950835864], [2758, 17.06999703421128], [2764, 18.057413223860845], [2770, 16.97361654993417], [2775, 17.657635018445678], [2781, 18.65478359961837], [2786, 16.45390272486048], [2792, 15.658458732176593], [2797, 18.02593691279906], [2803, 18.15394835713981], [2808, 17.977924879046498], [2814, 17.630843338759053], [2819, 16.60595118308424], [2825, 18.30834094337755], [2830, 17.850303214529447], [2836, 17.449856215629257], [2841, 15.428808196731126], [2847, 16.45713812717481], [2852, 16.65853738612047], [2858, 16.057177657666266], [2863, 16.512808167416015], [2869, 17.490788829499678], [2874, 14.484763772591123], [2880, 16.08910436042845], [2885, 17.39136675648066], [2891, 14.007136547047217], [2896, 14.957754480666065], [2902, 18.32417141354573], [2908, 17.053495160047888], [2913, 15.882701630177374], [2919, 18.712335270384322], [2924, 15.459401175595717], [2930, 16.068314310433003], [2935, 16.022788196370477], [2941, 16.99229520472915], [2946, 16.190495086752833], [2952, 19.222329746121968], [2957, 17.027731562006352], [2963, 17.494683759799674], [2968, 16.485600030940816], [2974, 17.51063566795286], [2979, 16.824222486952024], [2985, 18.84289118345245], [2990, 17.44921029996168], [2996, 16.151710935260937], [3001, 16.947226543357537], [3007, 16.273860534032032], [3012, 17.618062608483935], [3018, 16.19566488957084], [3023, 16.778253926747084], [3029, 14.476119402526074], [3034, 17.070471551107097], [3040, 15.823902921400204], [3046, 18.23159742355321], [3051, 16.495960845463777], [3057, 16.441747682682166], [3062, 14.354659811310073], [3068, 16.267303969549108], [3073, 15.349867900212606], [3079, 15.639128035393327], [3084, 16.572004193845128], [3090, 17.291512204253024], [3095, 16.59008525765418], [3101, 16.526807905971392], [3106, 17.427233887755264], [3112, 16.50076865977161], [3117, 15.760602643524402], [3123, 16.106085639069043], [3128, 16.29089437878635], [3134, 14.586565840071316], [3139, 19.387762487798728], [3145, 17.848571758339233], [3150, 15.202976465225484], [3156, 17.2050430031789], [3161, 17.208647821260666], [3167, 15.739149231841534], [3172, 15.758612783058874], [3178, 16.001144364260266], [3184, 15.134673966877699], [3189, 16.129109634869337], [3195, 16.73979025301713], [3200, 16.517756539842306], [3206, 17.472473032232838], [3211, 16.005027947218597], [3217, 18.91898851982053], [3222, 16.679717919100895], [3228, 17.523067921831842], [3233, 16.923645230306956], [3239, 17.82277793642432], [3244, 19.966911768567403], [3250, 17.765303366425968], [3255, 18.05476268823636], [3261, 14.04000129561501], [3266, 16.02748916805651], [3272, 18.31323568026183], [3277, 17.04511390907218], [3283, 16.746156537014542], [3288, 15.078338241231474], [3294, 15.97289804963081], [3299, 17.653989366863208], [3305, 16.66235843948713], [3310, 16.13855482184357], [3316, 15.231394683105465], [3322, 17.088106614955983], [3327, 17.644004160079298], [3333, 17.552744590717776], [3338, 17.091058121211283], [3344, 17.680579924928818], [3349, 17.72857664806265], [3355, 17.009015045304288], [3360, 16.683453955511983], [3366, 15.511423655178506], [3371, 17.41444151297847], [3377, 19.0609040554017], [3382, 18.841776675072328], [3388, 15.935582648153172], [3393, 15.34046580998794], [3399, 17.519382906996487], [3404, 18.105722068012383], [3410, 16.61354158581196], [3415, 16.526939181314134], [3421, 16.311890655669142], [3426, 20.57527438281272], [3432, 15.378539394641276], [3437, 17.270938147669405], [3443, 17.79896086367944], [3448, 22.29358121968727], [3454, 20.23148237104022], [3460, 17.83430358983483], [3465, 17.83115271036175], [3471, 20.013440088949203], [3476, 20.876319791959336], [3482, 19.805090924968393], [3487, 17.478515035864017], [3493, 17.791300288145308], [3498, 18.554300880086203], [3504, 19.473902270413777], [3509, 17.792920896972884], [3515, 15.462436100710844], [3520, 16.204942489016034], [3526, 18.340363523234487], [3531, 18.56546332006866], [3537, 17.881207955056226], [3542, 17.068164360696144], [3548, 17.16294710186941], [3553, 16.59500426485922], [3559, 15.895401348238256], [3564, 19.185599190601405], [3570, 15.486810924350316], [3575, 18.800508186436947], [3581, 15.834125843600857], [3586, 18.42908581443481], [3592, 17.308215699334134], [3598, 14.237575563831706], [3603, 14.321320179579514], [3609, 18.176545892936996], [3614, 17.46354330622629], [3620, 15.231575174608256], [3625, 15.520056791927365], [3631, 18.84644780815496], [3636, 16.711818359900196], [3642, 16.069101058918665], [3647, 15.751322364461233], [3653, 15.885760286580117], [3658, 16.05359315872198], [3664, 16.699823745782716], [3669, 15.732264157654843], [3675, 17.324522911638297], [3680, 14.861167301302533], [3686, 17.795658165130064], [3691, 17.03613509993621], [3697, 16.07616148133205], [3702, 17.225093515022678], [3708, 16.475917888724744], [3713, 15.10280623470498], [3719, 17.56471327940638], [3724, 18.2866661721381], [3730, 16.45472081502285], [3736, 17.918161611626108], [3741, 15.278085895206612], [3747, 16.71743197371979], [3752, 16.152209055596497], [3758, 16.731494647868992], [3763, 18.250058073928685], [3769, 20.009705775025783], [3774, 17.670470286106717], [3780, 18.650087721105542], [3785, 18.726724393126354], [3791, 17.126854177834485], [3796, 16.944472440774735], [3802, 16.692255282747414], [3807, 16.469641678575304], [3813, 16.859237368555956], [3818, 17.958341843840415], [3824, 19.121407847472856], [3829, 19.241507782452754], [3835, 17.188548430152377], [3840, 16.511555927387523], [3846, 15.642815159714738], [3851, 15.610593436420661], [3857, 18.914896094280508], [3862, 17.129256996555853], [3868, 15.866242982339413], [3874, 13.848951275797758], [3879, 16.667077859242774], [3885, 17.331055452857882], [3890, 16.46810225645693], [3896, 18.1883023424424], [3901, 16.726282214773363], [3907, 17.71541330779792], [3912, 16.776771158412057], [3918, 18.452470010605172], [3923, 18.339515686035128], [3929, 20.098271452862225], [3934, 15.767710265906123], [3940, 16.70261163469675], [3945, 18.7231625560401], [3951, 17.181614177814428], [3956, 16.714555013007004], [3962, 16.68356813209637], [3967, 16.289371419644088], [3973, 15.914634167284028], [3978, 16.313277460526688], [3984, 17.34250309501886], [3989, 15.447862291681805], [3995, 17.607438130654987], [4000, 15.341398607129804], [4006, 17.536416556524028], [4012, 15.575851530268766], [4017, 15.379685056382211], [4023, 16.066835197849404], [4028, 16.108677869257868], [4034, 16.512178545412922], [4039, 17.165988937667926], [4045, 17.06038847868016], [4050, 14.862538762714554], [4056, 18.298508632009906], [4061, 16.64664171053056], [4067, 16.572665136792985], [4072, 16.038380944210957], [4078, 15.219415576561634], [4083, 16.044947722683784], [4089, 18.330187289610794], [4094, 15.855042585428397], [4100, 15.651165291882988], [4105, 17.008554964825443], [4111, 17.657174620075686], [4116, 18.043179389359356], [4122, 16.330335710359655], [4127, 15.61729977614655], [4133, 17.28884258304775], [4138, 17.800551656364078], [4144, 15.580029237097595], [4150, 16.240551841431515], [4155, 15.646272517632722], [4161, 17.003138219101015], [4166, 18.16291318769015], [4172, 15.479284714961954], [4177, 16.009299140045055], [4183, 18.63388336395872], [4188, 19.17822607358288], [4194, 16.74694615688902], [4199, 16.05222396574153], [4205, 19.836972893148232], [4210, 19.87441448543382], [4216, 19.755631111670226], [4221, 16.467161596685195], [4227, 16.66973522780596], [4232, 14.966818913169824], [4238, 15.13412284851071], [4243, 15.508454288261378], [4249, 16.792257001434724], [4254, 18.39602602046443], [4260, 20.387701386990475], [4265, 19.614004173140724], [4271, 17.491653952046434], [4276, 17.605260506919883], [4282, 17.327783263247692], [4288, 31.864952569422766], [4293, 16.21788291481941], [4299, 18.559866597686554], [4304, 17.513358966164397], [4310, 14.621337216833536], [4315, 16.39464143220931], [4321, 18.08663531662741], [4326, 19.969973508862427], [4332, 16.78678116763872], [4337, 15.915871748025689], [4343, 19.28463217832038], [4348, 17.840877168420576], [4354, 17.772811165754266], [4359, 18.327060229535686], [4365, 19.050678588342592], [4370, 16.248193264007654], [4376, 18.672887377116904], [4381, 17.119303430336185], [4387, 17.031990514284836], [4392, 15.936257600784973], [4398, 19.248498296391762], [4403, 17.32121497133542], [4409, 17.431067119473553], [4414, 17.51299568881203], [4420, 18.39820363383327], [4426, 18.45386879685994], [4431, 16.371540095495515], [4437, 14.605558829031219], [4442, 15.767944648645715], [4448, 17.637096223623846], [4453, 19.593326565147855], [4459, 17.070416828860544], [4464, 18.293677554614423], [4470, 19.381099234456563], [4475, 18.236869378366375], [4481, 17.169567156529077], [4486, 17.33254882736501], [4492, 15.845144975012342], [4497, 19.4717147039332], [4503, 17.267925746198898], [4508, 16.26813157226755], [4514, 18.077828122221582], [4519, 15.837700804074922], [4525, 16.778872223867896], [4530, 15.681262741917957], [4536, 16.393218189045918], [4541, 17.992655617603425], [4547, 16.550432961920244], [4552, 15.583821222402031], [4558, 14.509198193964762], [4564, 18.31879508149746], [4569, 17.143163789873768], [4575, 17.333218457042587], [4580, 17.944954930871834], [4586, 20.1022776607157], [4591, 16.25522199575468], [4597, 15.937082810677953], [4602, 20.35336274167752], [4608, 15.975630454395333], [4613, 16.932536071625478], [4619, 16.744949544685507], [4624, 19.650065216464732], [4630, 20.608027727708155], [4635, 15.857784048370437], [4641, 15.537320653597735], [4646, 19.28190046980682], [4652, 22.373817188152966], [4657, 19.28771815265453], [4663, 19.894718802493287], [4668, 17.232166186622905], [4674, 16.273029888885734], [4679, 17.549765151480262], [4685, 17.29557134794146], [4690, 16.61621154045652], [4696, 16.202428648437582], [4702, 19.14362778525402], [4707, 18.305530178374603], [4713, 18.59096065465956], [4718, 14.240354107773824], [4724, 18.327891178752278], [4729, 20.206980294076292], [4735, 16.709536961887245], [4740, 16.14627831742356], [4746, 17.38105735917042], [4751, 17.772050220033204], [4757, 18.976775141730048], [4762, 15.551819084347173], [4768, 17.270236770312042], [4773, 13.90381628015758], [4779, 15.607387316399537], [4784, 16.8501627013306], [4790, 17.834570888159455], [4795, 16.970141079115358], [4801, 16.287796920623585], [4806, 19.683697018070916], [4812, 18.251864723537476], [4817, 15.675636161928526], [4823, 16.3642984507739], [4828, 16.953884850377698], [4834, 20.747883874437083], [4840, 15.35620445099431], [4845, 15.768076953680822], [4851, 16.112004575521553], [4856, 17.934423932131285], [4862, 17.106027608332326], [4867, 17.299553558446455], [4873, 14.758483282033653], [4878, 15.932816892430615], [4884, 18.67988945435754], [4889, 18.210862691852043], [4895, 31.8971689162047], [4900, 16.901396927625743], [4906, 19.10231361527395], [4911, 19.99623986603536], [4917, 15.959655734076481], [4922, 16.72488241091993], [4928, 15.4465244265571], [4933, 15.218664393909112], [4939, 18.702091699060812], [4944, 17.184640423111208], [4950, 16.49464889194683], [4955, 17.81762759236293], [4961, 15.68282483107832], [4966, 17.779948512712878], [4972, 23.61553982375347], [4978, 20.958749328834067], [4983, 19.700132451195717], [4989, 17.879291608713444], [4994, 18.485161928162764], [5000, 18.28920382693173], [5005, 21.535647539125467], [5011, 21.068465576656145], [5016, 16.372372133143717], [5022, 18.813861309618122], [5027, 20.312573593596248], [5033, 20.94132504601367], [5038, 17.279518934264427], [5044, 18.733343837917555], [5049, 16.34559730515979], [5055, 17.851451963617954], [5060, 16.434762009675463], [5066, 18.908153162486514], [5071, 16.36177565567765], [5077, 16.810451633688253], [5082, 18.361354879710763], [5088, 19.182102935901586], [5093, 17.66462054114439], [5099, 14.73531128185406], [5104, 19.919200949045972], [5110, 18.340501063112548], [5116, 16.401986217153453], [5121, 16.8335376114083], [5127, 19.731770981913098], [5132, 16.9431068448053], [5138, 16.857874958411234], [5143, 19.615453828935784], [5149, 18.14871180748617], [5154, 19.447839066602395], [5160, 17.591376950775434], [5165, 18.777269790137833], [5171, 16.901326189870474], [5176, 19.103063759596505], [5182, 17.074678144593044], [5187, 17.473150643749936], [5193, 15.950075486431668], [5198, 17.66125885127248], [5204, 16.657047919604864], [5209, 17.437688649564834], [5215, 18.812970802403377], [5220, 16.845749495686697], [5226, 18.155367464258987], [5231, 15.977073595143558], [5237, 15.526880091515327], [5242, 17.716837941736163], [5248, 20.51906610571799], [5254, 18.863792587017677], [5259, 20.75073668749466], [5265, 17.470756841742396], [5270, 17.512573484061438], [5276, 17.61299849420356], [5281, 15.216651031936145], [5287, 17.537891501966044], [5292, 18.764594342397594], [5298, 19.1075520947359], [5303, 19.71234704273284], [5309, 17.112910478011326], [5314, 21.486295359722757], [5320, 19.66449031795319], [5325, 21.072421549020643], [5331, 17.679170928141655], [5336, 19.719623574311864], [5342, 17.575359691744797], [5347, 19.59994859971832], [5353, 22.635763978612793], [5358, 16.222305318583725], [5364, 18.874518760736223], [5369, 19.539937774339997], [5375, 19.638868247253626], [5380, 15.916213572889204], [5386, 18.37138379311231], [5392, 16.953535050585334], [5397, 17.661816923514966], [5403, 18.348560670147464], [5408, 16.833407078964196], [5414, 19.431893656219188], [5419, 16.768147921216766], [5425, 16.172127877456205], [5430, 19.33551819773686], [5436, 18.16537262045852], [5441, 17.38156446512199], [5447, 19.292645507964146], [5452, 21.01882765085813], [5458, 29.443032554958407], [5463, 17.3494119194973], [5469, 16.614036592884], [5474, 17.504231877949028], [5480, 21.22594172367145], [5485, 16.189131776491877], [5491, 17.999776435934805], [5496, 19.460100628327492], [5502, 18.705840494322047], [5507, 19.07800772570172], [5513, 16.49666400404978], [5520, 17.538465860960887]]], ["failed_duration", [[1, 0.0], [10, 0.0], [15, 0.0], [21, 0.0], [26, 0.0], [32, 0.0], [37, 0.0], [43, 0.0], [48, 0.0], [54, 0.0], [59, 0.0], [65, 0.0], [70, 0.0], [76, 0.0], [81, 0.0], [87, 0.0], [92, 0.0], [98, 0.0], [103, 0.0], [109, 0.0], [114, 0.0], [120, 0.0], [125, 0.0], [131, 0.0], [136, 0.0], [142, 0.0], [148, 0.0], [153, 0.0], [159, 0.0], [164, 0.0], [170, 0.0], [175, 0.0], [181, 0.0], [186, 0.0], [192, 0.0], [197, 0.0], [203, 0.0], [208, 0.0], [214, 0.0], [219, 0.0], [225, 0.0], [230, 0.0], [236, 0.0], [241, 0.0], [247, 0.0], [252, 0.0], [258, 0.0], [263, 0.0], [269, 0.0], [274, 0.0], [280, 0.0], [286, 0.0], [291, 0.0], [297, 0.0], [302, 0.0], [308, 0.0], [313, 0.0], [319, 0.0], [324, 0.0], [330, 0.0], [335, 0.0], [341, 0.0], [346, 0.0], [352, 0.0], [357, 0.0], [363, 0.0], [368, 0.0], [374, 0.0], [379, 0.0], [385, 0.0], [390, 0.0], [396, 0.0], [401, 0.0], [407, 0.0], [412, 0.0], [418, 0.0], [424, 0.0], [429, 0.0], [435, 0.0], [440, 0.0], [446, 0.0], [451, 0.0], [457, 0.0], [462, 0.0], [468, 0.0], [473, 0.0], [479, 0.0], [484, 0.0], [490, 0.0], [495, 0.0], [501, 0.0], [506, 0.0], [512, 0.0], [517, 0.0], [523, 0.0], [528, 0.0], [534, 0.0], [539, 0.0], [545, 0.0], [550, 0.0], [556, 0.0], [562, 0.0], [567, 0.0], [573, 0.0], [578, 0.0], [584, 0.0], [589, 0.0], [595, 0.0], [600, 0.0], [606, 0.0], [611, 0.0], [617, 0.0], [622, 0.0], [628, 0.0], [633, 0.0], [639, 0.0], [644, 0.0], [650, 0.0], [655, 0.0], [661, 0.0], [666, 0.0], [672, 0.0], [677, 0.0], [683, 0.0], [688, 0.0], [694, 0.0], [700, 0.0], [705, 0.0], [711, 0.0], [716, 0.0], [722, 0.0], [727, 0.0], [733, 0.0], [738, 0.0], [744, 0.0], [749, 0.0], [755, 0.0], [760, 0.0], [766, 0.0], [771, 0.0], [777, 0.0], [782, 0.0], [788, 0.0], [793, 0.0], [799, 0.0], [804, 0.0], [810, 0.0], [815, 0.0], [821, 0.0], [826, 0.0], [832, 0.0], [838, 0.0], [843, 0.0], [849, 0.0], [854, 0.0], [860, 0.0], [865, 0.0], [871, 0.0], [876, 0.0], [882, 0.0], [887, 0.0], [893, 0.0], [898, 0.0], [904, 0.0], [909, 0.0], [915, 0.0], [920, 0.0], [926, 0.0], [931, 0.0], [937, 0.0], [942, 0.0], [948, 0.0], [953, 0.0], [959, 0.0], [964, 0.0], [970, 0.0], [976, 0.0], [981, 0.0], [987, 0.0], [992, 0.0], [998, 0.0], [1003, 0.0], [1009, 0.0], [1014, 0.0], [1020, 0.0], [1025, 0.0], [1031, 0.0], [1036, 0.0], [1042, 0.0], [1047, 0.0], [1053, 0.0], [1058, 0.0], [1064, 0.0], [1069, 0.0], [1075, 0.0], [1080, 0.0], [1086, 0.0], [1091, 0.0], [1097, 0.0], [1102, 0.0], [1108, 0.0], [1114, 0.0], [1119, 0.0], [1125, 0.0], [1130, 0.0], [1136, 0.0], [1141, 0.0], [1147, 0.0], [1152, 0.0], [1158, 0.0], [1163, 0.0], [1169, 0.0], [1174, 0.0], [1180, 0.0], [1185, 0.0], [1191, 0.0], [1196, 0.0], [1202, 0.0], [1207, 0.0], [1213, 0.0], [1218, 0.0], [1224, 0.0], [1229, 0.0], [1235, 0.0], [1240, 0.0], [1246, 0.0], [1252, 0.0], [1257, 0.0], [1263, 0.0], [1268, 0.0], [1274, 0.0], [1279, 0.0], [1285, 0.0], [1290, 0.0], [1296, 0.0], [1301, 0.0], [1307, 0.0], [1312, 0.0], [1318, 0.0], [1323, 0.0], [1329, 0.0], [1334, 0.0], [1340, 0.0], [1345, 0.0], [1351, 0.0], [1356, 0.0], [1362, 0.0], [1367, 0.0], [1373, 0.0], [1378, 0.0], [1384, 0.0], [1390, 0.0], [1395, 0.0], [1401, 0.0], [1406, 0.0], [1412, 0.0], [1417, 0.0], [1423, 0.0], [1428, 0.0], [1434, 0.0], [1439, 0.0], [1445, 0.0], [1450, 0.0], [1456, 0.0], [1461, 0.0], [1467, 0.0], [1472, 0.0], [1478, 0.0], [1483, 0.0], [1489, 0.0], [1494, 0.0], [1500, 0.0], [1505, 0.0], [1511, 0.0], [1516, 0.0], [1522, 0.0], [1528, 0.0], [1533, 0.0], [1539, 0.0], [1544, 0.0], [1550, 0.0], [1555, 0.0], [1561, 0.0], [1566, 0.0], [1572, 0.0], [1577, 0.0], [1583, 0.0], [1588, 0.0], [1594, 0.0], [1599, 0.0], [1605, 0.0], [1610, 0.0], [1616, 0.0], [1621, 0.0], [1627, 0.0], [1632, 0.0], [1638, 0.0], [1643, 0.0], [1649, 0.0], [1654, 0.0], [1660, 0.0], [1666, 0.0], [1671, 0.0], [1677, 0.0], [1682, 0.0], [1688, 0.0], [1693, 0.0], [1699, 0.0], [1704, 0.0], [1710, 0.0], [1715, 0.0], [1721, 0.0], [1726, 0.0], [1732, 0.0], [1737, 0.0], [1743, 0.0], [1748, 0.0], [1754, 0.0], [1759, 0.0], [1765, 0.0], [1770, 0.0], [1776, 0.0], [1781, 0.0], [1787, 0.0], [1792, 0.0], [1798, 0.0], [1804, 0.0], [1809, 0.0], [1815, 0.0], [1820, 0.0], [1826, 0.0], [1831, 0.0], [1837, 0.0], [1842, 0.0], [1848, 0.0], [1853, 0.0], [1859, 0.0], [1864, 0.0], [1870, 0.0], [1875, 0.0], [1881, 0.0], [1886, 0.0], [1892, 0.0], [1897, 0.0], [1903, 0.0], [1908, 0.0], [1914, 0.0], [1919, 0.0], [1925, 0.0], [1930, 0.0], [1936, 0.0], [1942, 0.0], [1947, 0.0], [1953, 0.0], [1958, 0.0], [1964, 0.0], [1969, 0.0], [1975, 0.0], [1980, 0.0], [1986, 0.0], [1991, 0.0], [1997, 0.0], [2002, 0.0], [2008, 0.0], [2013, 0.0], [2019, 0.0], [2024, 0.0], [2030, 0.0], [2035, 0.0], [2041, 0.0], [2046, 0.0], [2052, 0.0], [2057, 0.0], [2063, 0.0], [2068, 0.0], [2074, 0.0], [2080, 0.0], [2085, 0.0], [2091, 0.0], [2096, 0.0], [2102, 0.0], [2107, 0.0], [2113, 0.0], [2118, 0.0], [2124, 0.0], [2129, 0.0], [2135, 0.0], [2140, 0.0], [2146, 0.0], [2151, 0.0], [2157, 0.0], [2162, 0.0], [2168, 0.0], [2173, 0.0], [2179, 0.0], [2184, 0.0], [2190, 0.0], [2195, 0.0], [2201, 0.0], [2206, 0.0], [2212, 0.0], [2218, 0.0], [2223, 0.0], [2229, 0.0], [2234, 0.0], [2240, 0.0], [2245, 0.0], [2251, 0.0], [2256, 0.0], [2262, 0.0], [2267, 0.0], [2273, 0.0], [2278, 0.0], [2284, 0.0], [2289, 0.0], [2295, 0.0], [2300, 0.0], [2306, 0.0], [2311, 0.0], [2317, 0.0], [2322, 0.0], [2328, 0.0], [2333, 0.0], [2339, 0.0], [2344, 0.0], [2350, 0.0], [2356, 0.0], [2361, 0.0], [2367, 0.0], [2372, 0.0], [2378, 0.0], [2383, 0.0], [2389, 0.0], [2394, 0.0], [2400, 0.0], [2405, 0.0], [2411, 0.0], [2416, 0.0], [2422, 0.0], [2427, 0.0], [2433, 0.0], [2438, 0.0], [2444, 0.0], [2449, 0.0], [2455, 0.0], [2460, 0.0], [2466, 0.0], [2471, 0.0], [2477, 0.0], [2482, 0.0], [2488, 0.0], [2494, 0.0], [2499, 0.0], [2505, 0.0], [2510, 0.0], [2516, 0.0], [2521, 0.0], [2527, 0.0], [2532, 0.0], [2538, 0.0], [2543, 0.0], [2549, 0.0], [2554, 0.0], [2560, 0.0], [2565, 0.0], [2571, 0.0], [2576, 0.0], [2582, 0.0], [2587, 0.0], [2593, 0.0], [2598, 0.0], [2604, 0.0], [2609, 0.0], [2615, 0.0], [2620, 0.0], [2626, 0.0], [2632, 0.0], [2637, 0.0], [2643, 0.0], [2648, 0.0], [2654, 0.0], [2659, 0.0], [2665, 0.0], [2670, 0.0], [2676, 0.0], [2681, 0.0], [2687, 0.0], [2692, 0.0], [2698, 0.0], [2703, 0.0], [2709, 0.0], [2714, 0.0], [2720, 0.0], [2725, 0.0], [2731, 0.0], [2736, 0.0], [2742, 0.0], [2747, 0.0], [2753, 0.0], [2758, 0.0], [2764, 0.0], [2770, 0.0], [2775, 0.0], [2781, 0.0], [2786, 0.0], [2792, 0.0], [2797, 0.0], [2803, 0.0], [2808, 0.0], [2814, 0.0], [2819, 0.0], [2825, 0.0], [2830, 0.0], [2836, 0.0], [2841, 0.0], [2847, 0.0], [2852, 0.0], [2858, 0.0], [2863, 0.0], [2869, 0.0], [2874, 0.0], [2880, 0.0], [2885, 0.0], [2891, 0.0], [2896, 0.0], [2902, 0.0], [2908, 0.0], [2913, 0.0], [2919, 0.0], [2924, 0.0], [2930, 0.0], [2935, 0.0], [2941, 0.0], [2946, 0.0], [2952, 0.0], [2957, 0.0], [2963, 0.0], [2968, 0.0], [2974, 0.0], [2979, 0.0], [2985, 0.0], [2990, 0.0], [2996, 0.0], [3001, 0.0], [3007, 0.0], [3012, 0.0], [3018, 0.0], [3023, 0.0], [3029, 0.0], [3034, 0.0], [3040, 0.0], [3046, 0.0], [3051, 0.0], [3057, 0.0], [3062, 0.0], [3068, 0.0], [3073, 0.0], [3079, 0.0], [3084, 0.0], [3090, 0.0], [3095, 0.0], [3101, 0.0], [3106, 0.0], [3112, 0.0], [3117, 0.0], [3123, 0.0], [3128, 0.0], [3134, 0.0], [3139, 0.0], [3145, 0.0], [3150, 0.0], [3156, 0.0], [3161, 0.0], [3167, 0.0], [3172, 0.0], [3178, 0.0], [3184, 0.0], [3189, 0.0], [3195, 0.0], [3200, 0.0], [3206, 0.0], [3211, 0.0], [3217, 0.0], [3222, 0.0], [3228, 0.0], [3233, 0.0], [3239, 0.0], [3244, 0.0], [3250, 0.0], [3255, 0.0], [3261, 0.0], [3266, 0.0], [3272, 0.0], [3277, 0.0], [3283, 0.0], [3288, 0.0], [3294, 0.0], [3299, 0.0], [3305, 0.0], [3310, 0.0], [3316, 0.0], [3322, 0.0], [3327, 0.0], [3333, 0.0], [3338, 0.0], [3344, 0.0], [3349, 0.0], [3355, 0.0], [3360, 0.0], [3366, 0.0], [3371, 0.0], [3377, 0.0], [3382, 0.0], [3388, 0.0], [3393, 0.0], [3399, 0.0], [3404, 0.0], [3410, 0.0], [3415, 0.0], [3421, 0.0], [3426, 0.0], [3432, 0.0], [3437, 0.0], [3443, 0.0], [3448, 0.0], [3454, 0.0], [3460, 0.0], [3465, 0.0], [3471, 0.0], [3476, 0.0], [3482, 0.0], [3487, 0.0], [3493, 0.0], [3498, 0.0], [3504, 0.0], [3509, 0.0], [3515, 0.0], [3520, 0.0], [3526, 0.0], [3531, 0.0], [3537, 0.0], [3542, 0.0], [3548, 0.0], [3553, 0.0], [3559, 0.0], [3564, 0.0], [3570, 0.0], [3575, 0.0], [3581, 0.0], [3586, 0.0], [3592, 0.0], [3598, 0.0], [3603, 0.0], [3609, 0.0], [3614, 0.0], [3620, 0.0], [3625, 0.0], [3631, 0.0], [3636, 0.0], [3642, 0.0], [3647, 0.0], [3653, 0.0], [3658, 0.0], [3664, 0.0], [3669, 0.0], [3675, 0.0], [3680, 0.0], [3686, 0.0], [3691, 0.0], [3697, 0.0], [3702, 0.0], [3708, 0.0], [3713, 0.0], [3719, 0.0], [3724, 0.0], [3730, 0.0], [3736, 0.0], [3741, 0.0], [3747, 0.0], [3752, 0.0], [3758, 0.0], [3763, 0.0], [3769, 0.0], [3774, 0.0], [3780, 0.0], [3785, 0.0], [3791, 0.0], [3796, 0.0], [3802, 0.0], [3807, 0.0], [3813, 0.0], [3818, 0.0], [3824, 0.0], [3829, 0.0], [3835, 0.0], [3840, 0.0], [3846, 0.0], [3851, 0.0], [3857, 0.0], [3862, 0.0], [3868, 0.0], [3874, 0.0], [3879, 0.0], [3885, 0.0], [3890, 0.0], [3896, 0.0], [3901, 0.0], [3907, 0.0], [3912, 0.0], [3918, 0.0], [3923, 0.0], [3929, 0.0], [3934, 0.0], [3940, 0.0], [3945, 0.0], [3951, 0.0], [3956, 0.0], [3962, 0.0], [3967, 0.0], [3973, 0.0], [3978, 0.0], [3984, 0.0], [3989, 0.0], [3995, 0.0], [4000, 0.0], [4006, 0.0], [4012, 0.0], [4017, 0.0], [4023, 0.0], [4028, 0.0], [4034, 0.0], [4039, 0.0], [4045, 3.4000562584852074e-06], [4050, 1.7850295357088844e-05], [4056, 0.0], [4061, 0.0], [4067, 0.0], [4072, 0.0], [4078, 0.0], [4083, 0.0], [4089, 0.0], [4094, 0.0], [4100, 0.0], [4105, 0.0], [4111, 0.0], [4116, 0.0], [4122, 0.0], [4127, 0.0], [4133, 0.0], [4138, 0.0], [4144, 0.0], [4150, 0.0], [4155, 0.0], [4161, 0.0], [4166, 0.0], [4172, 0.0], [4177, 0.0], [4183, 0.0], [4188, 0.0], [4194, 0.0], [4199, 0.0], [4205, 0.0], [4210, 0.0], [4216, 0.0], [4221, 0.0], [4227, 0.0], [4232, 0.0], [4238, 0.0], [4243, 0.0], [4249, 0.0], [4254, 0.0], [4260, 0.0], [4265, 0.0], [4271, 0.0], [4276, 0.0], [4282, 0.0], [4288, 0.0], [4293, 0.0], [4299, 0.0], [4304, 0.0], [4310, 0.0], [4315, 0.0], [4321, 0.0], [4326, 0.0], [4332, 0.0], [4337, 0.0], [4343, 0.0], [4348, 0.0], [4354, 0.0], [4359, 0.0], [4365, 0.0], [4370, 0.0], [4376, 0.0], [4381, 0.0], [4387, 0.0], [4392, 0.0], [4398, 0.0], [4403, 0.0], [4409, 0.0], [4414, 0.0], [4420, 0.0], [4426, 0.0], [4431, 0.0], [4437, 0.0], [4442, 0.0], [4448, 0.0], [4453, 0.0], [4459, 0.0], [4464, 0.0], [4470, 0.0], [4475, 0.0], [4481, 0.0], [4486, 0.0], [4492, 0.0], [4497, 0.0], [4503, 0.0], [4508, 0.0], [4514, 0.0], [4519, 0.0], [4525, 0.0], [4530, 0.0], [4536, 0.0], [4541, 0.0], [4547, 0.0], [4552, 0.0], [4558, 0.0], [4564, 0.0], [4569, 0.0], [4575, 0.0], [4580, 0.0], [4586, 0.0], [4591, 0.0], [4597, 0.0], [4602, 0.0], [4608, 0.0], [4613, 0.0], [4619, 0.0], [4624, 0.0], [4630, 0.0], [4635, 0.0], [4641, 0.0], [4646, 0.0], [4652, 0.0], [4657, 0.0], [4663, 0.0], [4668, 0.0], [4674, 0.0], [4679, 0.0], [4685, 0.0], [4690, 0.0], [4696, 0.0], [4702, 0.0], [4707, 0.0], [4713, 0.0], [4718, 0.0], [4724, 0.0], [4729, 0.0], [4735, 0.0], [4740, 0.0], [4746, 0.0], [4751, 0.0], [4757, 0.0], [4762, 0.0], [4768, 0.0], [4773, 0.0], [4779, 1.3259873873945597e-05], [4784, 0.0], [4790, 0.0], [4795, 1.4469243478083957e-05], [4801, 0.0], [4806, 0.0], [4812, 0.0], [4817, 0.0], [4823, 0.0], [4828, 0.0], [4834, 0.0], [4840, 0.0], [4845, 0.0], [4851, 0.0], [4856, 0.0], [4862, 0.0], [4867, 0.0], [4873, 0.0], [4878, 0.0], [4884, 0.0], [4889, 0.0], [4895, 0.0], [4900, 0.0], [4906, 0.0], [4911, 0.0], [4917, 0.0], [4922, 0.0], [4928, 0.0], [4933, 0.0], [4939, 0.0], [4944, 0.0], [4950, 0.0], [4955, 0.0], [4961, 0.0], [4966, 0.0], [4972, 0.0], [4978, 0.0], [4983, 0.0], [4989, 0.0], [4994, 0.0], [5000, 0.0], [5005, 0.0], [5011, 0.0], [5016, 0.0], [5022, 0.0], [5027, 0.0], [5033, 0.0], [5038, 0.0], [5044, 0.0], [5049, 0.0], [5055, 0.0], [5060, 0.0], [5066, 0.0], [5071, 0.0], [5077, 0.0], [5082, 0.0], [5088, 0.0], [5093, 0.0], [5099, 0.0], [5104, 0.0], [5110, 0.0], [5116, 0.0], [5121, 0.0], [5127, 0.0], [5132, 0.0], [5138, 0.0], [5143, 0.0], [5149, 0.0], [5154, 0.0], [5160, 0.0], [5165, 0.0], [5171, 0.0], [5176, 0.0], [5182, 0.0], [5187, 0.0], [5193, 0.0], [5198, 0.0], [5204, 0.0], [5209, 0.0], [5215, 0.0], [5220, 0.0], [5226, 0.0], [5231, 0.0], [5237, 0.0], [5242, 0.0], [5248, 0.0], [5254, 0.0], [5259, 0.0], [5265, 0.0], [5270, 0.0], [5276, 0.0], [5281, 0.0], [5287, 0.0], [5292, 0.0], [5298, 0.0], [5303, 0.0], [5309, 0.0], [5314, 0.0], [5320, 0.0], [5325, 0.0], [5331, 0.0], [5336, 0.0], [5342, 0.0], [5347, 0.0], [5353, 0.0], [5358, 0.0], [5364, 0.0], [5369, 0.0], [5375, 0.0], [5380, 0.0], [5386, 0.0], [5392, 0.0], [5397, 0.0], [5403, 0.0], [5408, 0.0], [5414, 0.0], [5419, 0.0], [5425, 0.0], [5430, 0.0], [5436, 0.0], [5441, 0.0], [5447, 0.0], [5452, 0.0], [5458, 0.0], [5463, 0.0], [5469, 0.0], [5474, 0.0], [5480, 0.0], [5485, 0.0], [5491, 0.0], [5496, 0.0], [5502, 0.0], [5507, 0.0], [5513, 0.0], [5520, 0.0]]]], "histogram": {"data": [[{"disabled": 0, "values": [{"y": 306, "x": 2.5046393330891927}, {"y": 3620, "x": 4.904635559717814}, {"y": 1112, "x": 7.304631786346436}, {"y": 402, "x": 9.704628012975057}, {"y": 8, "x": 12.104624239603679}, {"y": 4, "x": 14.5046204662323}, {"y": 1, "x": 16.90461669286092}, {"y": 2, "x": 19.304612919489543}, {"y": 3, "x": 21.704609146118166}, {"y": 1, "x": 24.104605372746786}, {"y": 4, "x": 26.504601599375405}, {"y": 3, "x": 28.90459782600403}, {"y": 1, "x": 31.304594052632652}, {"y": 3, "x": 33.70459027926127}, {"y": 2, "x": 36.10458650588989}, {"y": 4, "x": 38.504582732518514}, {"y": 1, "x": 40.90457895914714}, {"y": 1, "x": 43.30457518577576}, {"y": 2, "x": 45.70457141240438}, {"y": 0, "x": 48.104567639033}, {"y": 1, "x": 50.50456386566162}, {"y": 4, "x": 52.90456009229024}, {"y": 1, "x": 55.30455631891886}, {"y": 5, "x": 57.704552545547486}, {"y": 1, "x": 60.10454877217611}, {"y": 2, "x": 62.50454499880473}, {"y": 0, "x": 64.90454122543335}, {"y": 1, "x": 67.30453745206196}, {"y": 3, "x": 69.7045336786906}, {"y": 1, "x": 72.10452990531921}, {"y": 0, "x": 74.50452613194784}, {"y": 0, "x": 76.90452235857646}, {"y": 0, "x": 79.30451858520507}, {"y": 0, "x": 81.7045148118337}, {"y": 2, "x": 84.10451103846232}, {"y": 0, "x": 86.50450726509095}, {"y": 0, "x": 88.90450349171957}, {"y": 0, "x": 91.30449971834818}, {"y": 1, "x": 93.70449594497681}, {"y": 2, "x": 96.10449217160543}, {"y": 0, "x": 98.50448839823405}, {"y": 0, "x": 100.90448462486268}, {"y": 0, "x": 103.30448085149129}, {"y": 1, "x": 105.70447707811991}, {"y": 0, "x": 108.10447330474854}, {"y": 0, "x": 110.50446953137715}, {"y": 0, "x": 112.90446575800578}, {"y": 1, "x": 115.3044619846344}, {"y": 1, "x": 117.70445821126302}, {"y": 0, "x": 120.10445443789165}, {"y": 0, "x": 122.50445066452026}, {"y": 0, "x": 124.9044468911489}, {"y": 0, "x": 127.30444311777751}, {"y": 1, "x": 129.70443934440613}, {"y": 1, "x": 132.10443557103474}, {"y": 0, "x": 134.50443179766336}, {"y": 2, "x": 136.904428024292}, {"y": 0, "x": 139.30442425092062}, {"y": 1, "x": 141.70442047754923}, {"y": 0, "x": 144.10441670417785}, {"y": 0, "x": 146.50441293080647}, {"y": 0, "x": 148.9044091574351}, {"y": 0, "x": 151.30440538406373}, {"y": 1, "x": 153.70440161069234}, {"y": 0, "x": 156.10439783732096}, {"y": 0, "x": 158.50439406394958}, {"y": 1, "x": 160.90439029057822}, {"y": 0, "x": 163.30438651720684}, {"y": 1, "x": 165.70438274383545}, {"y": 1, "x": 168.10437897046407}, {"y": 0, "x": 170.50437519709268}, {"y": 1, "x": 172.90437142372133}, {"y": 0, "x": 175.30436765034995}, {"y": 0, "x": 177.70436387697856}, {"y": 3, "x": 180.10436010360718}], "key": "nova.list_servers", "view": "Square Root Choice"}, {"disabled": 1, "values": [{"y": 9, "x": 6.020770664215088}, {"y": 19, "x": 7.324640264511109}, {"y": 31, "x": 8.628509864807128}, {"y": 40, "x": 9.93237946510315}, {"y": 87, "x": 11.236249065399171}, {"y": 153, "x": 12.540118665695191}, {"y": 250, "x": 13.84398826599121}, {"y": 1627, "x": 15.147857866287232}, {"y": 224, "x": 16.451727466583254}, {"y": 1422, "x": 17.755597066879275}, {"y": 530, "x": 19.059466667175293}, {"y": 498, "x": 20.363336267471315}, {"y": 318, "x": 21.667205867767336}, {"y": 73, "x": 22.971075468063354}, {"y": 139, "x": 24.274945068359376}, {"y": 50, "x": 25.578814668655397}, {"y": 16, "x": 26.88268426895142}, {"y": 13, "x": 28.18655386924744}, {"y": 5, "x": 29.490423469543458}, {"y": 2, "x": 30.79429306983948}, {"y": 0, "x": 32.0981626701355}, {"y": 0, "x": 33.40203227043152}, {"y": 0, "x": 34.705901870727544}, {"y": 0, "x": 36.00977147102356}, {"y": 1, "x": 37.31364107131958}, {"y": 0, "x": 38.617510671615605}, {"y": 0, "x": 39.92138027191162}, {"y": 1, "x": 41.22524987220764}, {"y": 1, "x": 42.529119472503666}, {"y": 0, "x": 43.832989072799684}, {"y": 2, "x": 45.13685867309571}, {"y": 0, "x": 46.44072827339173}, {"y": 0, "x": 47.744597873687745}, {"y": 0, "x": 49.04846747398377}, {"y": 0, "x": 50.35233707427979}, {"y": 1, "x": 51.65620667457581}, {"y": 0, "x": 52.96007627487183}, {"y": 0, "x": 54.26394587516785}, {"y": 0, "x": 55.567815475463874}, {"y": 0, "x": 56.87168507575989}, {"y": 1, "x": 58.17555467605591}, {"y": 0, "x": 59.479424276351935}, {"y": 0, "x": 60.78329387664795}, {"y": 0, "x": 62.08716347694397}, {"y": 0, "x": 63.391033077239996}, {"y": 0, "x": 64.69490267753602}, {"y": 0, "x": 65.99877227783205}, {"y": 0, "x": 67.30264187812806}, {"y": 0, "x": 68.60651147842407}, {"y": 0, "x": 69.91038107872009}, {"y": 0, "x": 71.21425067901612}, {"y": 0, "x": 72.51812027931214}, {"y": 0, "x": 73.82198987960815}, {"y": 0, "x": 75.12585947990418}, {"y": 1, "x": 76.4297290802002}, {"y": 0, "x": 77.73359868049621}, {"y": 1, "x": 79.03746828079224}, {"y": 0, "x": 80.34133788108826}, {"y": 0, "x": 81.64520748138429}, {"y": 0, "x": 82.9490770816803}, {"y": 0, "x": 84.25294668197633}, {"y": 0, "x": 85.55681628227235}, {"y": 0, "x": 86.86068588256836}, {"y": 1, "x": 88.16455548286439}, {"y": 0, "x": 89.46842508316041}, {"y": 0, "x": 90.77229468345642}, {"y": 0, "x": 92.07616428375245}, {"y": 1, "x": 93.38003388404847}, {"y": 0, "x": 94.68390348434448}, {"y": 1, "x": 95.98777308464051}, {"y": 0, "x": 97.29164268493653}, {"y": 0, "x": 98.59551228523256}, {"y": 0, "x": 99.89938188552857}, {"y": 0, "x": 101.2032514858246}, {"y": 2, "x": 102.50712108612062}], "key": "nova.boot_server", "view": "Square Root Choice"}], [{"disabled": 0, "values": [{"y": 5448, "x": 12.9617657491139}, {"y": 14, "x": 25.818888391767228}, {"y": 15, "x": 38.676011034420554}, {"y": 7, "x": 51.533133677073884}, {"y": 10, "x": 64.39025631972721}, {"y": 5, "x": 77.24737896238054}, {"y": 2, "x": 90.10450160503387}, {"y": 3, "x": 102.9616242476872}, {"y": 2, "x": 115.81874689034052}, {"y": 1, "x": 128.67586953299386}, {"y": 5, "x": 141.5329921756472}, {"y": 1, "x": 154.3901148183005}, {"y": 3, "x": 167.24723746095384}, {"y": 4, "x": 180.10436010360718}], "key": "nova.list_servers", "view": "Sturges Formula"}, {"disabled": 1, "values": [{"y": 247, "x": 11.701916779790606}, {"y": 4090, "x": 18.686932495662145}, {"y": 1134, "x": 25.67194821153368}, {"y": 35, "x": 32.65696392740522}, {"y": 1, "x": 39.64197964327676}, {"y": 4, "x": 46.626995359148296}, {"y": 1, "x": 53.612011075019836}, {"y": 1, "x": 60.59702679089138}, {"y": 0, "x": 67.58204250676292}, {"y": 0, "x": 74.56705822263446}, {"y": 2, "x": 81.552073938506}, {"y": 1, "x": 88.53708965437752}, {"y": 2, "x": 95.52210537024907}, {"y": 2, "x": 102.5071210861206}], "key": "nova.boot_server", "view": "Sturges Formula"}], [{"disabled": 0, "values": [{"y": 4216, "x": 5.104635245270199}, {"y": 1225, "x": 10.104627384079826}, {"y": 12, "x": 15.104619522889454}, {"y": 3, "x": 20.10461166169908}, {"y": 6, "x": 25.10460380050871}, {"y": 4, "x": 30.104595939318337}, {"y": 5, "x": 35.10458807812796}, {"y": 6, "x": 40.10458021693759}, {"y": 3, "x": 45.10457235574722}, {"y": 1, "x": 50.10456449455685}, {"y": 5, "x": 55.10455663336647}, {"y": 6, "x": 60.1045487721761}, {"y": 2, "x": 65.10454091098573}, {"y": 4, "x": 70.10453304979535}, {"y": 1, "x": 75.10452518860498}, {"y": 0, "x": 80.10451732741461}, {"y": 2, "x": 85.10450946622424}, {"y": 0, "x": 90.10450160503387}, {"y": 2, "x": 95.10449374384349}, {"y": 1, "x": 100.10448588265312}, {"y": 0, "x": 105.10447802146275}, {"y": 1, "x": 110.10447016027237}, {"y": 1, "x": 115.104462299082}, {"y": 1, "x": 120.10445443789163}, {"y": 0, "x": 125.10444657670126}, {"y": 1, "x": 130.1044387155109}, {"y": 2, "x": 135.10443085432053}, {"y": 2, "x": 140.10442299313013}, {"y": 0, "x": 145.10441513193976}, {"y": 0, "x": 150.1044072707494}, {"y": 1, "x": 155.10439940955902}, {"y": 1, "x": 160.10439154836865}, {"y": 1, "x": 165.10438368717828}, {"y": 1, "x": 170.10437582598792}, {"y": 1, "x": 175.10436796479755}, {"y": 3, "x": 180.10436010360718}], "key": "nova.list_servers", "view": "Rice Rule"}, {"disabled": 1, "values": [{"y": 29, "x": 7.433296064535776}, {"y": 75, "x": 10.149691065152485}, {"y": 272, "x": 12.866086065769196}, {"y": 1932, "x": 15.582481066385904}, {"y": 1923, "x": 18.298876067002613}, {"y": 726, "x": 21.015271067619324}, {"y": 401, "x": 23.73166606823603}, {"y": 127, "x": 26.44806106885274}, {"y": 19, "x": 29.164456069469452}, {"y": 2, "x": 31.88085107008616}, {"y": 0, "x": 34.597246070702866}, {"y": 1, "x": 37.31364107131958}, {"y": 1, "x": 40.03003607193629}, {"y": 1, "x": 42.746431072552994}, {"y": 2, "x": 45.46282607316971}, {"y": 0, "x": 48.179221073786415}, {"y": 0, "x": 50.89561607440312}, {"y": 1, "x": 53.612011075019836}, {"y": 0, "x": 56.32840607563654}, {"y": 1, "x": 59.04480107625325}, {"y": 0, "x": 61.761196076869965}, {"y": 0, "x": 64.47759107748666}, {"y": 0, "x": 67.19398607810338}, {"y": 0, "x": 69.91038107872009}, {"y": 0, "x": 72.62677607933679}, {"y": 0, "x": 75.3431710799535}, {"y": 1, "x": 78.05956608057022}, {"y": 1, "x": 80.77596108118692}, {"y": 0, "x": 83.49235608180363}, {"y": 0, "x": 86.20875108242035}, {"y": 1, "x": 88.92514608303705}, {"y": 0, "x": 91.64154108365376}, {"y": 1, "x": 94.35793608427048}, {"y": 1, "x": 97.07433108488718}, {"y": 0, "x": 99.79072608550389}, {"y": 2, "x": 102.5071210861206}], "key": "nova.boot_server", "view": "Rice Rule"}]], "views": [{"id": 0, "name": "Square Root Choice"}, {"id": 1, "name": "Sturges Formula"}, {"id": 2, "name": "Rice Rule"}]}}, "iterations": {"pie": [["success", 5517], ["errors", 3]], "iter": [["duration", [[1, 8.284833702488223], [10, 8.857846429382546], [15, 9.993508122969365], [21, 8.808304860971976], [26, 10.68533526296201], [32, 9.967001669648765], [37, 8.184272035308503], [43, 15.682827977166657], [48, 14.468893923621247], [54, 15.39641456327577], [59, 10.649386761845017], [65, 14.532479645549392], [70, 15.686552040818809], [76, 16.578675164692644], [81, 15.397791352824886], [87, 12.534220584924674], [92, 14.329791082852122], [98, 13.154529896335331], [103, 11.268963884616243], [109, 13.980340280394621], [114, 9.421070924703633], [120, 9.901580022728957], [125, 12.174465317657026], [131, 9.630648203518087], [136, 10.701724543087717], [142, 12.031766765359519], [148, 13.102614363034563], [153, 15.80885478724603], [159, 14.80791712498321], [164, 14.987360826437016], [170, 14.262444841688959], [175, 14.464203342147508], [181, 14.858439006667199], [186, 14.733885422996854], [192, 17.212037418199614], [197, 16.238018742506043], [203, 16.76334111586862], [208, 17.393655735513434], [214, 17.637668084407192], [219, 16.511151030443724], [225, 16.798066521036457], [230, 14.715868619904995], [236, 15.565261424451636], [241, 18.478334041609283], [247, 18.648015651150008], [252, 17.836255761160377], [258, 19.74406409090843], [263, 18.164935661398847], [269, 14.820979572724607], [274, 19.0436113347178], [280, 16.030957486318513], [286, 15.325440619302832], [291, 17.328268083973192], [297, 17.488678090814243], [302, 20.239512419355076], [308, 16.640885308168937], [313, 18.695880665295373], [319, 17.955594278764035], [324, 17.043886160504996], [330, 15.252922868383111], [335, 18.06445320274515], [341, 19.206319684567674], [346, 19.11366551164269], [352, 19.701573396074586], [357, 19.142587082973407], [363, 23.007640831712383], [368, 19.29281523262247], [374, 17.250317008598973], [379, 18.851008949072483], [385, 17.415490839792334], [390, 17.04263705101566], [396, 18.36322207036224], [401, 17.38200017161993], [407, 17.039269711660303], [412, 20.717643886372645], [418, 19.03477074097897], [424, 18.67487950601439], [429, 17.951737830604333], [435, 17.48137732346854], [440, 18.946729342142756], [446, 19.68992923999175], [451, 19.83824556979582], [457, 19.918584536814997], [462, 19.77795705933506], [468, 17.37287223511848], [473, 18.631029814913653], [479, 17.54593841234843], [484, 20.437563923821887], [490, 19.744496069092737], [495, 19.626171848048322], [501, 20.396389394566622], [506, 19.609108460122247], [512, 18.201346862143378], [517, 18.76042072669318], [523, 22.426902848741285], [528, 19.256176575370457], [534, 19.036599342373858], [539, 19.01086371359618], [545, 19.33416898008704], [550, 18.715318450029322], [556, 19.98132440318232], [562, 19.485446774441282], [567, 20.968969906585805], [573, 21.56917334293971], [578, 20.38225827355321], [584, 18.741031121516542], [589, 20.738825765208926], [595, 19.5607051400171], [600, 19.583196821420067], [606, 17.617823567943347], [611, 19.32996819503063], [617, 16.696981046510775], [622, 19.733353265817605], [628, 19.022077769473015], [633, 20.29877395215232], [639, 17.986566280973157], [644, 22.554521128751283], [650, 22.169759473938875], [655, 20.175337591033053], [661, 17.79782994588216], [666, 40.303404979083794], [672, 20.19495760357901], [677, 20.9926816173222], [683, 19.994199155033467], [688, 19.985353193421318], [694, 20.13066340702162], [700, 19.959319408389163], [705, 21.037970233654598], [711, 19.456245391265178], [716, 21.783126017321713], [722, 20.68965592937196], [727, 22.008529243261826], [733, 20.35250115221831], [738, 19.97542016920839], [744, 19.926658810048863], [749, 19.917895206506735], [755, 21.498550515243906], [760, 19.866499667582367], [766, 22.739081819852128], [771, 21.250193613163006], [777, 19.575464449067056], [782, 20.29259058358007], [788, 21.575170701828576], [793, 19.931400905484768], [799, 18.730495065882558], [804, 19.38008969763054], [810, 20.691909394402433], [815, 19.64990631220997], [821, 21.848821527716044], [826, 78.46899800023988], [832, 19.2212650464947], [838, 19.653261248616168], [843, 21.58761371045873], [849, 20.849812934364095], [854, 19.361123639604322], [860, 19.8496024193971], [865, 18.987566685331082], [871, 19.81122821828589], [876, 19.932040114333663], [882, 22.079598466555314], [887, 19.718902843585916], [893, 19.044497308523717], [898, 20.14962834033417], [904, 20.268199290054458], [909, 18.368156816648337], [915, 22.390637050504306], [920, 20.245165919911994], [926, 19.81057749969376], [931, 23.989825355833815], [937, 23.29121194887851], [942, 23.117357247117653], [948, 20.90660578789914], [953, 20.01722615870885], [959, 20.79204383794812], [964, 19.182280454082722], [970, 18.022341441417055], [976, 20.990022369053115], [981, 18.49663090533097], [987, 19.649506947268655], [992, 19.608312183532206], [998, 18.5473338175511], [1003, 17.99069593954777], [1009, 20.97949632872698], [1014, 19.366943114045764], [1020, 21.309744111005845], [1025, 19.294917042704512], [1031, 18.331789574761338], [1036, 19.250356299289805], [1042, 20.982868429543334], [1047, 16.213077021681766], [1053, 18.316814064979557], [1058, 19.440481476161743], [1064, 20.419063682141562], [1069, 19.933405941811113], [1075, 17.628508901250584], [1080, 17.47129300193514], [1086, 41.936671474705534], [1091, 19.47808029340652], [1097, 19.482005988342248], [1102, 21.2988255766854], [1108, 20.632954785789362], [1114, 19.845812242963948], [1119, 37.07326731820027], [1125, 19.16555635134394], [1130, 20.621770680814596], [1136, 21.724865908207992], [1141, 21.749861936638222], [1147, 21.77172875404378], [1152, 19.348584496456596], [1158, 19.66385452470913], [1163, 21.07169891613122], [1169, 20.94734031221151], [1174, 18.774094004561835], [1180, 20.798008454018696], [1185, 22.170070093611066], [1191, 20.855146667231747], [1196, 18.59341292623156], [1202, 17.555944541226243], [1207, 19.56473458158792], [1213, 19.995367521825095], [1218, 35.881853359332986], [1224, 22.64734285119641], [1229, 21.416312278180968], [1235, 22.22043101856676], [1240, 20.69639889917517], [1246, 20.93453741764671], [1252, 19.553425591924867], [1257, 22.39332548777273], [1263, 19.174336810042874], [1268, 19.763119828873858], [1274, 22.305998194044754], [1279, 20.176073190094876], [1285, 21.446700066759906], [1290, 18.85071414795481], [1296, 19.395715552827586], [1301, 20.61757869305807], [1307, 19.72779862431517], [1312, 22.811767612678377], [1318, 19.57388962697302], [1323, 19.449349624523165], [1329, 21.145644117092793], [1334, 20.71475918396654], [1340, 21.554111548092113], [1345, 19.648095462633155], [1351, 18.465949585472327], [1356, 19.910795111587138], [1362, 21.912121035050458], [1367, 19.753681308981445], [1373, 18.788849167201768], [1378, 21.699240883191486], [1384, 22.00336996541501], [1390, 20.946453852930095], [1395, 18.83988460250523], [1401, 22.238280444905314], [1406, 19.07265152792992], [1412, 18.33078430355462], [1417, 17.821291209994914], [1423, 21.087720471879678], [1428, 18.87538994395215], [1434, 20.52553969016973], [1439, 21.18542244123376], [1445, 20.76535128337744], [1450, 20.574086633281482], [1456, 19.86929903859671], [1461, 20.92372952682387], [1467, 22.075831618861823], [1472, 18.995025232218403], [1478, 20.635441892388947], [1483, 21.091914683148513], [1489, 20.843946040540544], [1494, 21.094691763753403], [1500, 22.813204811966934], [1505, 19.737768313159016], [1511, 20.87779910840853], [1516, 18.982588228972194], [1522, 19.33585750365603], [1528, 19.861239127490823], [1533, 18.330352285633854], [1539, 20.16459222980168], [1544, 21.333555242289595], [1550, 20.47755146890447], [1555, 21.61127372755521], [1561, 19.826801538467535], [1566, 18.73453753063644], [1572, 18.83862390379975], [1577, 21.831672352293165], [1583, 21.286943015845015], [1588, 18.441636298013737], [1594, 20.77859019542076], [1599, 33.673680613006354], [1605, 22.299892893735926], [1610, 20.544510114020266], [1616, 18.896166739256554], [1621, 22.104937448017765], [1627, 22.456516663233437], [1632, 21.395318722379315], [1638, 24.265929674756627], [1643, 22.698137423266676], [1649, 21.363756736119576], [1654, 22.502256244852934], [1660, 20.456405325212206], [1666, 20.83269115116299], [1671, 21.195121409236446], [1677, 20.550777970880702], [1682, 20.31554258215262], [1688, 22.455604800279524], [1693, 21.23741005296299], [1699, 17.97425009029506], [1704, 22.125327792720448], [1710, 21.574555661367402], [1715, 30.093324512674943], [1721, 23.702249469964656], [1726, 21.4978754727736], [1732, 20.150280069613874], [1737, 22.517661210419323], [1743, 20.28234526385447], [1748, 19.460142361945064], [1754, 20.79905782747938], [1759, 20.24277439670293], [1765, 21.876724367556367], [1770, 43.49458238352563], [1776, 24.099257446720816], [1781, 20.259504186934457], [1787, 20.8621593420055], [1792, 23.195823572684102], [1798, 20.686478891234465], [1804, 21.388704356939822], [1809, 37.86050923492605], [1815, 23.3813207011291], [1820, 20.44732112815424], [1826, 19.347742386486225], [1831, 19.80572157147994], [1837, 19.86329978790844], [1842, 21.24319769852394], [1848, 20.873045193976186], [1853, 22.850410983182535], [1859, 21.186770767405488], [1864, 20.1041025372519], [1870, 23.686310920162324], [1875, 20.796820673389792], [1881, 21.984532762264855], [1886, 21.696462021357704], [1892, 20.473212549652033], [1897, 21.351730714673415], [1903, 22.838138685710263], [1908, 20.91360724663369], [1914, 21.590453286102072], [1919, 38.74099149565774], [1925, 22.77032472776322], [1930, 26.516045748323684], [1936, 18.40216090195424], [1942, 19.764463614726257], [1947, 22.099079527716782], [1953, 19.223567242207736], [1958, 19.326035380363464], [1964, 21.865985438443705], [1969, 19.98565736542572], [1975, 20.199952941009922], [1980, 25.74017191278761], [1986, 21.17617714059498], [1991, 22.97888774975515], [1997, 21.468792955080655], [2002, 21.357923163883868], [2008, 22.44782747565835], [2013, 22.78829243044922], [2019, 20.848821615827436], [2024, 21.484828966251218], [2030, 19.080521550731564], [2035, 19.99166456167223], [2041, 21.307133145954197], [2046, 21.62278918252488], [2052, 20.297339945599706], [2057, 23.752449146215504], [2063, 27.803321371905604], [2068, 29.305797468063076], [2074, 23.45961677682573], [2080, 18.826308951861524], [2085, 22.310377545978973], [2091, 19.64493388542229], [2096, 20.4895742872485], [2102, 20.526062614676093], [2107, 20.018611332644667], [2113, 42.762391784916595], [2118, 21.6541270190391], [2124, 20.20351148515497], [2129, 24.85221092942838], [2135, 19.955245976862823], [2140, 21.68638257531144], [2146, 24.517796298732016], [2151, 21.55269238568725], [2157, 22.01258794812189], [2162, 22.647720539051456], [2168, 22.307126084963574], [2173, 23.19583431879689], [2179, 22.835143757902966], [2184, 21.76445447361996], [2190, 30.6415833580286], [2195, 32.912698215335915], [2201, 20.760046825892868], [2206, 22.161771071129724], [2212, 20.786039481992546], [2218, 21.537188339924377], [2223, 21.594617586204592], [2229, 23.4485236354499], [2234, 23.01403930567312], [2240, 22.12306725806094], [2245, 22.463542869125693], [2251, 21.357291086860123], [2256, 22.149532506431456], [2262, 22.46643320892169], [2267, 20.0687944681749], [2273, 19.235869200333024], [2278, 21.063907621563523], [2284, 20.45777918290412], [2289, 22.464281790498173], [2295, 21.57950489071851], [2300, 21.741918670958214], [2306, 21.928528106730937], [2311, 21.476106809533185], [2317, 22.071927390237], [2322, 22.211929995080585], [2328, 21.930904248486208], [2333, 31.99567004044861], [2339, 21.116786412570885], [2344, 21.58442755367435], [2350, 18.72114680815441], [2356, 21.181660626245513], [2361, 23.438510333282462], [2367, 21.959316666575518], [2372, 21.079862169597146], [2378, 22.704343405322994], [2383, 22.447722709697217], [2389, 20.371996774189522], [2394, 20.500274996826825], [2400, 21.2805102959923], [2405, 18.92010066647467], [2411, 17.59791260525807], [2416, 48.124055800230366], [2422, 19.570125543552972], [2427, 20.195734143257067], [2433, 19.099370071853507], [2438, 20.76560050681005], [2444, 22.43537071131275], [2449, 21.16689118440606], [2455, 20.299457214880675], [2460, 18.12161274405504], [2466, 19.371171092641525], [2471, 25.048245791074937], [2477, 20.988283314567408], [2482, 21.10351962110273], [2488, 20.520857674488333], [2494, 21.173127753146968], [2499, 21.507291382637458], [2505, 22.322147929150457], [2510, 21.310978087825685], [2516, 21.21109395614594], [2521, 22.072499052337996], [2527, 22.823774244474095], [2532, 20.83672285425523], [2538, 21.491179849790317], [2543, 22.474534535753595], [2549, 19.727939776752557], [2554, 22.101930606191598], [2560, 20.58551240312942], [2565, 19.842039493547045], [2571, 21.070671114368587], [2576, 21.856875196747094], [2582, 21.751230645870905], [2587, 21.48074469359027], [2593, 22.148450917091925], [2598, 21.73752766761221], [2604, 24.54685569154797], [2609, 27.666823620383937], [2615, 20.079285854878783], [2620, 21.108568015305895], [2626, 19.77077200447311], [2632, 21.272947631020305], [2637, 19.36910999512348], [2643, 17.356846403384555], [2648, 24.855378095654363], [2654, 20.275443906369432], [2659, 24.18381188053991], [2665, 21.032658426658287], [2670, 19.772420326868495], [2676, 19.33293985283887], [2681, 22.154835668162843], [2687, 20.99353841940598], [2692, 20.866945797118227], [2698, 19.89216946000686], [2703, 19.40700789292642], [2709, 27.751173745030943], [2714, 22.69797452636375], [2720, 22.41272524647086], [2725, 24.9813526039541], [2731, 34.629579483598675], [2736, 20.772171834240734], [2742, 23.451003959213647], [2747, 19.89759789342471], [2753, 24.68859653196443], [2758, 21.800893275634287], [2764, 22.11632433836004], [2770, 24.12101396443176], [2775, 28.155083222665994], [2781, 23.49305852945271], [2786, 21.313420881395896], [2792, 20.510838384213805], [2797, 23.05530101665525], [2803, 23.693638848221852], [2808, 22.718473004258396], [2814, 22.30688801364616], [2819, 21.23534437020631], [2825, 23.04497292940127], [2830, 21.9608423951745], [2836, 23.50720577827409], [2841, 23.545795350834002], [2847, 22.470951938975524], [2852, 21.269183373105815], [2858, 21.566198008647717], [2863, 20.76171270142442], [2869, 21.596463868583655], [2874, 20.235781030378302], [2880, 20.05192292254908], [2885, 21.158023089602366], [2891, 19.90628329394526], [2896, 19.240857957066023], [2902, 21.86618893733906], [2908, 20.41429599126201], [2913, 20.081084355063695], [2919, 21.767183412676545], [2924, 20.271767723387565], [2930, 20.96215128207532], [2935, 51.314034194186384], [2941, 21.251384771388384], [2946, 21.117539625236926], [2952, 24.561886678571323], [2957, 21.567239040913837], [2963, 22.736655499624057], [2968, 20.269995642745158], [2974, 21.97262194191192], [2979, 21.501770987026756], [2985, 23.19617863841703], [2990, 22.145120810771097], [2996, 21.792994388635723], [3001, 21.12276352315723], [3007, 21.49691499143379], [3012, 22.33349633907941], [3018, 21.61129372880103], [3023, 21.589513916900195], [3029, 18.664376670035757], [3034, 21.846535753512498], [3040, 21.749701702076447], [3046, 23.645859001338966], [3051, 27.461328962575223], [3057, 21.279262426970714], [3062, 20.23910748958594], [3068, 21.404092199560534], [3073, 20.172230641047147], [3079, 20.597849260205702], [3084, 21.606899771137662], [3090, 21.888892852741716], [3095, 21.072798492251657], [3101, 20.791791967723682], [3106, 23.872383957323823], [3112, 21.449463272440557], [3117, 19.930877694185227], [3123, 21.06836632023687], [3128, 20.6818915104519], [3134, 18.89791802910771], [3139, 23.611336312432446], [3145, 23.242075522740564], [3150, 20.54883827506657], [3156, 21.905219027961255], [3161, 21.834901985915074], [3167, 20.004140957542024], [3172, 21.177398907965415], [3178, 21.194505133490654], [3184, 19.703266143798952], [3189, 22.708312715309248], [3195, 21.618739029635428], [3200, 21.591181146925724], [3206, 21.856515974238487], [3211, 42.71063826913427], [3217, 24.68141008978283], [3222, 21.463738346445535], [3228, 21.813260750493985], [3233, 21.842667460441454], [3239, 22.839282030644775], [3244, 35.793943636659066], [3250, 22.737898707389682], [3255, 22.42305747322454], [3261, 19.543636964715116], [3266, 20.921296152515662], [3272, 23.7296043789901], [3277, 21.37596698947615], [3283, 21.353203021961605], [3288, 20.301059119943258], [3294, 19.93320409629639], [3299, 22.55656975421351], [3305, 21.01697522833759], [3310, 20.123569193093655], [3316, 19.63831168154012], [3322, 21.995609523593544], [3327, 22.607684691746922], [3333, 22.50285096444942], [3338, 22.52527259398198], [3344, 22.020701848942146], [3349, 22.612574154052282], [3355, 21.933404708254216], [3360, 20.820716348247107], [3366, 19.359606691029004], [3371, 31.331586659818374], [3377, 30.226319662038616], [3382, 39.941811981408556], [3388, 22.67568220090203], [3393, 20.1425079470094], [3399, 23.67785621034921], [3404, 23.056830836378765], [3410, 22.171797356744033], [3415, 20.911635716756326], [3421, 21.14717961566988], [3426, 26.57386299319908], [3432, 19.559334447418426], [3437, 22.07727306303801], [3443, 22.53714873652463], [3448, 39.05437950293252], [3454, 24.540779037752305], [3460, 22.74199215052792], [3465, 23.106639001680286], [3471, 24.72466480559198], [3476, 26.381194290907146], [3482, 33.121497686358886], [3487, 21.772509149882957], [3493, 22.76146221679211], [3498, 23.050561666488257], [3504, 23.84862053912614], [3509, 29.47094947704415], [3515, 20.413320359976254], [3520, 21.1387488600138], [3526, 28.795973846877835], [3531, 24.06772933317264], [3537, 22.340857645739554], [3542, 45.10129092396186], [3548, 21.794901227605482], [3553, 20.918896887613407], [3559, 21.128758983335327], [3564, 24.371357034945834], [3570, 20.495142781216288], [3575, 24.32643060926049], [3581, 21.592315651368466], [3586, 22.561825220135933], [3592, 21.51195920895829], [3598, 19.856396307116068], [3603, 19.260793976161548], [3609, 22.612641673157583], [3614, 22.774553374967528], [3620, 20.933372685872794], [3625, 27.36537892404021], [3631, 23.417760626129326], [3636, 27.60692728256832], [3642, 21.102813423543896], [3647, 20.69800725017736], [3653, 20.218205800954976], [3658, 20.42911576533669], [3664, 21.18593039719944], [3669, 20.19906011353395], [3675, 22.334339895110045], [3680, 19.77683145239733], [3686, 22.862704698590424], [3691, 22.1265313176141], [3697, 20.569272504336574], [3702, 22.282404669816678], [3708, 22.590578046398345], [3713, 20.426568686097994], [3719, 22.86149649343627], [3724, 24.168139298756866], [3730, 21.706376435100232], [3736, 24.605534057686455], [3741, 20.828842477522027], [3747, 21.763276115707573], [3752, 21.298499731050022], [3758, 20.910789843918284], [3763, 24.14174567098234], [3769, 24.69277261305539], [3774, 22.276331141375145], [3780, 23.66643290588783], [3785, 28.146594519201], [3791, 22.7341461544453], [3796, 21.603695183560312], [3802, 20.77349102497084], [3807, 31.71217378671634], [3813, 21.221288622289496], [3818, 23.410660728164792], [3824, 24.739539222439976], [3829, 23.9280511227211], [3835, 22.540243361307045], [3840, 22.03572061787499], [3846, 20.96362068342141], [3851, 22.763454352599666], [3857, 24.538244850393575], [3862, 21.791627857996314], [3868, 20.433321470799903], [3874, 17.947711080744714], [3879, 20.65504133528542], [3885, 22.349584135452563], [3890, 32.58575753716778], [3896, 23.58369326073182], [3901, 22.164977740550867], [3907, 22.451629730238448], [3912, 21.302534602690585], [3918, 22.10810827172298], [3923, 23.574910096500197], [3929, 25.059772952743273], [3934, 19.81444852939565], [3940, 21.839919527371446], [3945, 51.494068731432606], [3951, 22.27312444603955], [3956, 22.28233274169573], [3962, 22.096063365107092], [3967, 21.37395092197094], [3973, 35.11051981172683], [3978, 21.927863770636908], [3984, 23.0524354499321], [3989, 20.514798271483322], [3995, 22.726578867953755], [4000, 20.961255956387344], [4006, 22.795119389243578], [4012, 20.581932662189892], [4017, 20.488674428152052], [4023, 20.304180978000883], [4028, 21.30234089450575], [4034, 21.833311830741888], [4039, 22.31819804682222], [4045, 21.154889224233386], [4050, 17.19913252540152], [4056, 22.801622224890263], [4061, 22.402562533600133], [4067, 21.155481495718632], [4072, 21.108635551688007], [4078, 19.742492406264592], [4083, 21.08084873358391], [4089, 27.637144237319546], [4094, 31.911771743199196], [4100, 21.440815459127055], [4105, 22.09540114195422], [4111, 22.19253753060898], [4116, 23.147474748500937], [4122, 21.5130410367164], [4127, 20.339138350625152], [4133, 21.236099282900245], [4138, 22.650695702304247], [4144, 20.79811059737551], [4150, 21.947301455165793], [4155, 20.731175279271746], [4161, 21.672668470852784], [4166, 22.76130231221492], [4172, 20.06836219455941], [4177, 20.58518240071669], [4183, 23.92775535237944], [4188, 24.289799806000623], [4194, 21.915638737056828], [4199, 20.70936827901473], [4205, 24.53594009254292], [4210, 25.147503870120772], [4216, 23.909497535747022], [4221, 22.486268091892835], [4227, 21.805096026780106], [4232, 20.308806687161795], [4238, 19.86694720689801], [4243, 19.779409738554335], [4249, 22.235238966734677], [4254, 23.203869883564664], [4260, 24.467925989109272], [4265, 25.89665000853337], [4271, 26.70813494488892], [4276, 23.423700944236778], [4282, 23.151142799335727], [4288, 36.66744237706307], [4293, 21.418440590733876], [4299, 23.210566150968805], [4304, 23.124460828477595], [4310, 19.3175845267118], [4315, 21.74483279905454], [4321, 24.20850732533814], [4326, 25.095909666323752], [4332, 22.18260556718621], [4337, 20.651480581449245], [4343, 24.004463596620404], [4348, 23.004180809726027], [4354, 22.60104306711641], [4359, 22.959193303964575], [4365, 24.63235815366173], [4370, 22.50495897859755], [4376, 24.034637278404897], [4381, 22.3027918718864], [4387, 22.277515991873877], [4392, 20.928094254024423], [4398, 24.96228332277621], [4403, 31.961137602291878], [4409, 23.312688910445456], [4414, 23.090135291003396], [4420, 23.259206433226755], [4426, 22.893873923066714], [4431, 21.763582576876495], [4437, 19.391422745110418], [4442, 20.907339284385323], [4448, 22.262730610543127], [4453, 24.771315061527627], [4459, 22.491383524908475], [4464, 23.516611802405517], [4470, 24.757607297620872], [4475, 23.37680747025242], [4481, 23.764519349388642], [4486, 22.295410367026015], [4492, 29.600131452947302], [4497, 23.653117027835556], [4503, 23.12938801102005], [4508, 22.061486857525075], [4514, 22.393645803133325], [4519, 21.218181007150587], [4525, 22.31787177617982], [4530, 21.427249929179315], [4536, 21.918242568554994], [4541, 23.412747320921568], [4547, 22.336163486260006], [4552, 19.611814811609577], [4558, 19.280900860178324], [4564, 23.59535892458878], [4569, 22.518962925759137], [4575, 21.705290246701], [4580, 23.264451871747422], [4586, 25.402712498886288], [4591, 21.35393130088195], [4597, 20.846254219179496], [4602, 24.597019981646618], [4608, 21.05582853676638], [4613, 22.110764258149917], [4619, 21.547763110934827], [4624, 24.109147413916613], [4630, 25.748211836470002], [4635, 21.206845487373183], [4641, 20.318624442902387], [4646, 24.586263967596192], [4652, 39.57193621863528], [4657, 25.52366880057552], [4663, 25.80838877394555], [4668, 21.961881639300856], [4674, 21.681441403817573], [4679, 22.309293987094794], [4685, 22.70635627145325], [4690, 21.639945857766318], [4696, 21.61480838837862], [4702, 25.019332787259646], [4707, 46.0951979125811], [4713, 23.194135337636112], [4718, 19.91296842132791], [4724, 23.19811502574046], [4729, 25.857027029646567], [4735, 21.587031798086265], [4740, 21.158395592716957], [4746, 26.07084571969702], [4751, 22.724002620448047], [4757, 24.37588821113996], [4762, 23.100605997486415], [4768, 22.05959951013763], [4773, 18.336699321649977], [4779, 16.577171356781495], [4784, 22.259115507637308], [4790, 23.344409624735178], [4795, 17.952554996463427], [4801, 21.715181670326356], [4806, 26.725636813951787], [4812, 23.502525846163838], [4817, 20.516248568244546], [4823, 22.86259344868024], [4828, 21.843499226846628], [4834, 26.310666531756244], [4840, 20.263989495194554], [4845, 21.194981422977385], [4851, 21.298962893692835], [4856, 24.47269705067539], [4862, 22.297666026198467], [4867, 22.218499249306337], [4873, 19.693353466365366], [4878, 21.103083377299114], [4884, 22.862217395201856], [4889, 23.95174233291486], [4895, 37.527773969415385], [4900, 22.467355403346637], [4906, 24.672787626584824], [4911, 26.284166482911377], [4917, 21.651672997336703], [4922, 21.874809116556992], [4928, 21.129072749096476], [4933, 26.132712614709405], [4939, 24.20989190495498], [4944, 22.030118309933123], [4950, 23.31007187953924], [4955, 22.727777228838857], [4961, 20.612086233885684], [4966, 22.65750414564968], [4972, 29.11901756127698], [4978, 26.61105251139453], [4983, 25.480735759804453], [4989, 23.76895658520644], [4994, 23.487198119577858], [5000, 25.47910129678401], [5005, 34.68528221136865], [5011, 29.797714774164607], [5016, 21.314891557761854], [5022, 22.93389315881584], [5027, 25.342186670372957], [5033, 26.433894463206993], [5038, 22.753348813541404], [5044, 24.451364461926296], [5049, 21.62202081991273], [5055, 33.00428255917368], [5060, 21.44575968514267], [5066, 32.9741959900096], [5071, 30.84282697802055], [5077, 20.667244486186753], [5082, 24.62436306303781], [5088, 24.85902507236061], [5093, 22.61283885050539], [5099, 19.83960641294307], [5104, 25.044550498325684], [5110, 29.5796641370529], [5116, 21.876066036846748], [5121, 22.367310779681894], [5127, 24.663150555845686], [5132, 22.552799323330788], [5138, 21.64800855733333], [5143, 24.863383839095377], [5149, 23.88793094089097], [5154, 25.05616817958133], [5160, 23.01924671815795], [5165, 24.932632693345802], [5171, 22.482360451117874], [5176, 24.67607980707423], [5182, 27.150017708971966], [5187, 22.514550200407268], [5193, 20.82917254904013], [5198, 23.335854891417625], [5204, 22.703654249509032], [5209, 22.06500276620865], [5215, 24.936927667562014], [5220, 21.888606904210253], [5226, 24.026874390201247], [5231, 21.460042447283445], [5237, 20.032253522803998], [5242, 23.28293926646721], [5248, 25.286763125571426], [5254, 23.632693781368754], [5259, 26.392593008885022], [5265, 22.40708369621323], [5270, 22.988979346510327], [5276, 23.258558905642733], [5281, 20.6817293564478], [5287, 22.57826624918707], [5292, 24.2281204997627], [5298, 25.30242517547346], [5303, 25.164943007454877], [5309, 22.36681252113278], [5314, 27.424865073052437], [5320, 26.460812131562967], [5325, 29.663023625593837], [5331, 23.939521920856002], [5336, 26.263998480810102], [5342, 23.820585575657365], [5347, 24.778531670570057], [5353, 35.967855479406495], [5358, 21.300910801127447], [5364, 24.55990707355975], [5369, 25.754000553186078], [5375, 24.095605015754995], [5380, 26.44641872592376], [5386, 24.762654669045393], [5392, 23.055034233175874], [5397, 23.858523330826987], [5403, 24.03945834567551], [5408, 23.440629345783357], [5414, 24.75411738001775], [5419, 21.9214491585027], [5425, 20.960205302722162], [5430, 24.23591287930782], [5436, 24.284257992454545], [5441, 22.39023892603062], [5447, 24.297004725621687], [5452, 26.86156716554073], [5458, 34.390801467757555], [5463, 22.464146728100967], [5469, 22.726601970368545], [5474, 22.671358338300486], [5480, 27.01880756495673], [5485, 21.606878980346405], [5491, 23.080216012139093], [5496, 25.654845920161783], [5502, 23.95477520555729], [5507, 24.226227855336642], [5513, 21.96333262022002], [5520, 22.983073910077405]]], ["idle_duration", [[1, 0.0], [10, 0.0], [15, 0.0], [21, 0.0], [26, 0.0], [32, 0.0], [37, 0.0], [43, 0.0], [48, 0.0], [54, 0.0], [59, 0.0], [65, 0.0], [70, 0.0], [76, 0.0], [81, 0.0], [87, 0.0], [92, 0.0], [98, 0.0], [103, 0.0], [109, 0.0], [114, 0.0], [120, 0.0], [125, 0.0], [131, 0.0], [136, 0.0], [142, 0.0], [148, 0.0], [153, 0.0], [159, 0.0], [164, 0.0], [170, 0.0], [175, 0.0], [181, 0.0], [186, 0.0], [192, 0.0], [197, 0.0], [203, 0.0], [208, 0.0], [214, 0.0], [219, 0.0], [225, 0.0], [230, 0.0], [236, 0.0], [241, 0.0], [247, 0.0], [252, 0.0], [258, 0.0], [263, 0.0], [269, 0.0], [274, 0.0], [280, 0.0], [286, 0.0], [291, 0.0], [297, 0.0], [302, 0.0], [308, 0.0], [313, 0.0], [319, 0.0], [324, 0.0], [330, 0.0], [335, 0.0], [341, 0.0], [346, 0.0], [352, 0.0], [357, 0.0], [363, 0.0], [368, 0.0], [374, 0.0], [379, 0.0], [385, 0.0], [390, 0.0], [396, 0.0], [401, 0.0], [407, 0.0], [412, 0.0], [418, 0.0], [424, 0.0], [429, 0.0], [435, 0.0], [440, 0.0], [446, 0.0], [451, 0.0], [457, 0.0], [462, 0.0], [468, 0.0], [473, 0.0], [479, 0.0], [484, 0.0], [490, 0.0], [495, 0.0], [501, 0.0], [506, 0.0], [512, 0.0], [517, 0.0], [523, 0.0], [528, 0.0], [534, 0.0], [539, 0.0], [545, 0.0], [550, 0.0], [556, 0.0], [562, 0.0], [567, 0.0], [573, 0.0], [578, 0.0], [584, 0.0], [589, 0.0], [595, 0.0], [600, 0.0], [606, 0.0], [611, 0.0], [617, 0.0], [622, 0.0], [628, 0.0], [633, 0.0], [639, 0.0], [644, 0.0], [650, 0.0], [655, 0.0], [661, 0.0], [666, 0.0], [672, 0.0], [677, 0.0], [683, 0.0], [688, 0.0], [694, 0.0], [700, 0.0], [705, 0.0], [711, 0.0], [716, 0.0], [722, 0.0], [727, 0.0], [733, 0.0], [738, 0.0], [744, 0.0], [749, 0.0], [755, 0.0], [760, 0.0], [766, 0.0], [771, 0.0], [777, 0.0], [782, 0.0], [788, 0.0], [793, 0.0], [799, 0.0], [804, 0.0], [810, 0.0], [815, 0.0], [821, 0.0], [826, 0.0], [832, 0.0], [838, 0.0], [843, 0.0], [849, 0.0], [854, 0.0], [860, 0.0], [865, 0.0], [871, 0.0], [876, 0.0], [882, 0.0], [887, 0.0], [893, 0.0], [898, 0.0], [904, 0.0], [909, 0.0], [915, 0.0], [920, 0.0], [926, 0.0], [931, 0.0], [937, 0.0], [942, 0.0], [948, 0.0], [953, 0.0], [959, 0.0], [964, 0.0], [970, 0.0], [976, 0.0], [981, 0.0], [987, 0.0], [992, 0.0], [998, 0.0], [1003, 0.0], [1009, 0.0], [1014, 0.0], [1020, 0.0], [1025, 0.0], [1031, 0.0], [1036, 0.0], [1042, 0.0], [1047, 0.0], [1053, 0.0], [1058, 0.0], [1064, 0.0], [1069, 0.0], [1075, 0.0], [1080, 0.0], [1086, 0.0], [1091, 0.0], [1097, 0.0], [1102, 0.0], [1108, 0.0], [1114, 0.0], [1119, 0.0], [1125, 0.0], [1130, 0.0], [1136, 0.0], [1141, 0.0], [1147, 0.0], [1152, 0.0], [1158, 0.0], [1163, 0.0], [1169, 0.0], [1174, 0.0], [1180, 0.0], [1185, 0.0], [1191, 0.0], [1196, 0.0], [1202, 0.0], [1207, 0.0], [1213, 0.0], [1218, 0.0], [1224, 0.0], [1229, 0.0], [1235, 0.0], [1240, 0.0], [1246, 0.0], [1252, 0.0], [1257, 0.0], [1263, 0.0], [1268, 0.0], [1274, 0.0], [1279, 0.0], [1285, 0.0], [1290, 0.0], [1296, 0.0], [1301, 0.0], [1307, 0.0], [1312, 0.0], [1318, 0.0], [1323, 0.0], [1329, 0.0], [1334, 0.0], [1340, 0.0], [1345, 0.0], [1351, 0.0], [1356, 0.0], [1362, 0.0], [1367, 0.0], [1373, 0.0], [1378, 0.0], [1384, 0.0], [1390, 0.0], [1395, 0.0], [1401, 0.0], [1406, 0.0], [1412, 0.0], [1417, 0.0], [1423, 0.0], [1428, 0.0], [1434, 0.0], [1439, 0.0], [1445, 0.0], [1450, 0.0], [1456, 0.0], [1461, 0.0], [1467, 0.0], [1472, 0.0], [1478, 0.0], [1483, 0.0], [1489, 0.0], [1494, 0.0], [1500, 0.0], [1505, 0.0], [1511, 0.0], [1516, 0.0], [1522, 0.0], [1528, 0.0], [1533, 0.0], [1539, 0.0], [1544, 0.0], [1550, 0.0], [1555, 0.0], [1561, 0.0], [1566, 0.0], [1572, 0.0], [1577, 0.0], [1583, 0.0], [1588, 0.0], [1594, 0.0], [1599, 0.0], [1605, 0.0], [1610, 0.0], [1616, 0.0], [1621, 0.0], [1627, 0.0], [1632, 0.0], [1638, 0.0], [1643, 0.0], [1649, 0.0], [1654, 0.0], [1660, 0.0], [1666, 0.0], [1671, 0.0], [1677, 0.0], [1682, 0.0], [1688, 0.0], [1693, 0.0], [1699, 0.0], [1704, 0.0], [1710, 0.0], [1715, 0.0], [1721, 0.0], [1726, 0.0], [1732, 0.0], [1737, 0.0], [1743, 0.0], [1748, 0.0], [1754, 0.0], [1759, 0.0], [1765, 0.0], [1770, 0.0], [1776, 0.0], [1781, 0.0], [1787, 0.0], [1792, 0.0], [1798, 0.0], [1804, 0.0], [1809, 0.0], [1815, 0.0], [1820, 0.0], [1826, 0.0], [1831, 0.0], [1837, 0.0], [1842, 0.0], [1848, 0.0], [1853, 0.0], [1859, 0.0], [1864, 0.0], [1870, 0.0], [1875, 0.0], [1881, 0.0], [1886, 0.0], [1892, 0.0], [1897, 0.0], [1903, 0.0], [1908, 0.0], [1914, 0.0], [1919, 0.0], [1925, 0.0], [1930, 0.0], [1936, 0.0], [1942, 0.0], [1947, 0.0], [1953, 0.0], [1958, 0.0], [1964, 0.0], [1969, 0.0], [1975, 0.0], [1980, 0.0], [1986, 0.0], [1991, 0.0], [1997, 0.0], [2002, 0.0], [2008, 0.0], [2013, 0.0], [2019, 0.0], [2024, 0.0], [2030, 0.0], [2035, 0.0], [2041, 0.0], [2046, 0.0], [2052, 0.0], [2057, 0.0], [2063, 0.0], [2068, 0.0], [2074, 0.0], [2080, 0.0], [2085, 0.0], [2091, 0.0], [2096, 0.0], [2102, 0.0], [2107, 0.0], [2113, 0.0], [2118, 0.0], [2124, 0.0], [2129, 0.0], [2135, 0.0], [2140, 0.0], [2146, 0.0], [2151, 0.0], [2157, 0.0], [2162, 0.0], [2168, 0.0], [2173, 0.0], [2179, 0.0], [2184, 0.0], [2190, 0.0], [2195, 0.0], [2201, 0.0], [2206, 0.0], [2212, 0.0], [2218, 0.0], [2223, 0.0], [2229, 0.0], [2234, 0.0], [2240, 0.0], [2245, 0.0], [2251, 0.0], [2256, 0.0], [2262, 0.0], [2267, 0.0], [2273, 0.0], [2278, 0.0], [2284, 0.0], [2289, 0.0], [2295, 0.0], [2300, 0.0], [2306, 0.0], [2311, 0.0], [2317, 0.0], [2322, 0.0], [2328, 0.0], [2333, 0.0], [2339, 0.0], [2344, 0.0], [2350, 0.0], [2356, 0.0], [2361, 0.0], [2367, 0.0], [2372, 0.0], [2378, 0.0], [2383, 0.0], [2389, 0.0], [2394, 0.0], [2400, 0.0], [2405, 0.0], [2411, 0.0], [2416, 0.0], [2422, 0.0], [2427, 0.0], [2433, 0.0], [2438, 0.0], [2444, 0.0], [2449, 0.0], [2455, 0.0], [2460, 0.0], [2466, 0.0], [2471, 0.0], [2477, 0.0], [2482, 0.0], [2488, 0.0], [2494, 0.0], [2499, 0.0], [2505, 0.0], [2510, 0.0], [2516, 0.0], [2521, 0.0], [2527, 0.0], [2532, 0.0], [2538, 0.0], [2543, 0.0], [2549, 0.0], [2554, 0.0], [2560, 0.0], [2565, 0.0], [2571, 0.0], [2576, 0.0], [2582, 0.0], [2587, 0.0], [2593, 0.0], [2598, 0.0], [2604, 0.0], [2609, 0.0], [2615, 0.0], [2620, 0.0], [2626, 0.0], [2632, 0.0], [2637, 0.0], [2643, 0.0], [2648, 0.0], [2654, 0.0], [2659, 0.0], [2665, 0.0], [2670, 0.0], [2676, 0.0], [2681, 0.0], [2687, 0.0], [2692, 0.0], [2698, 0.0], [2703, 0.0], [2709, 0.0], [2714, 0.0], [2720, 0.0], [2725, 0.0], [2731, 0.0], [2736, 0.0], [2742, 0.0], [2747, 0.0], [2753, 0.0], [2758, 0.0], [2764, 0.0], [2770, 0.0], [2775, 0.0], [2781, 0.0], [2786, 0.0], [2792, 0.0], [2797, 0.0], [2803, 0.0], [2808, 0.0], [2814, 0.0], [2819, 0.0], [2825, 0.0], [2830, 0.0], [2836, 0.0], [2841, 0.0], [2847, 0.0], [2852, 0.0], [2858, 0.0], [2863, 0.0], [2869, 0.0], [2874, 0.0], [2880, 0.0], [2885, 0.0], [2891, 0.0], [2896, 0.0], [2902, 0.0], [2908, 0.0], [2913, 0.0], [2919, 0.0], [2924, 0.0], [2930, 0.0], [2935, 0.0], [2941, 0.0], [2946, 0.0], [2952, 0.0], [2957, 0.0], [2963, 0.0], [2968, 0.0], [2974, 0.0], [2979, 0.0], [2985, 0.0], [2990, 0.0], [2996, 0.0], [3001, 0.0], [3007, 0.0], [3012, 0.0], [3018, 0.0], [3023, 0.0], [3029, 0.0], [3034, 0.0], [3040, 0.0], [3046, 0.0], [3051, 0.0], [3057, 0.0], [3062, 0.0], [3068, 0.0], [3073, 0.0], [3079, 0.0], [3084, 0.0], [3090, 0.0], [3095, 0.0], [3101, 0.0], [3106, 0.0], [3112, 0.0], [3117, 0.0], [3123, 0.0], [3128, 0.0], [3134, 0.0], [3139, 0.0], [3145, 0.0], [3150, 0.0], [3156, 0.0], [3161, 0.0], [3167, 0.0], [3172, 0.0], [3178, 0.0], [3184, 0.0], [3189, 0.0], [3195, 0.0], [3200, 0.0], [3206, 0.0], [3211, 0.0], [3217, 0.0], [3222, 0.0], [3228, 0.0], [3233, 0.0], [3239, 0.0], [3244, 0.0], [3250, 0.0], [3255, 0.0], [3261, 0.0], [3266, 0.0], [3272, 0.0], [3277, 0.0], [3283, 0.0], [3288, 0.0], [3294, 0.0], [3299, 0.0], [3305, 0.0], [3310, 0.0], [3316, 0.0], [3322, 0.0], [3327, 0.0], [3333, 0.0], [3338, 0.0], [3344, 0.0], [3349, 0.0], [3355, 0.0], [3360, 0.0], [3366, 0.0], [3371, 0.0], [3377, 0.0], [3382, 0.0], [3388, 0.0], [3393, 0.0], [3399, 0.0], [3404, 0.0], [3410, 0.0], [3415, 0.0], [3421, 0.0], [3426, 0.0], [3432, 0.0], [3437, 0.0], [3443, 0.0], [3448, 0.0], [3454, 0.0], [3460, 0.0], [3465, 0.0], [3471, 0.0], [3476, 0.0], [3482, 0.0], [3487, 0.0], [3493, 0.0], [3498, 0.0], [3504, 0.0], [3509, 0.0], [3515, 0.0], [3520, 0.0], [3526, 0.0], [3531, 0.0], [3537, 0.0], [3542, 0.0], [3548, 0.0], [3553, 0.0], [3559, 0.0], [3564, 0.0], [3570, 0.0], [3575, 0.0], [3581, 0.0], [3586, 0.0], [3592, 0.0], [3598, 0.0], [3603, 0.0], [3609, 0.0], [3614, 0.0], [3620, 0.0], [3625, 0.0], [3631, 0.0], [3636, 0.0], [3642, 0.0], [3647, 0.0], [3653, 0.0], [3658, 0.0], [3664, 0.0], [3669, 0.0], [3675, 0.0], [3680, 0.0], [3686, 0.0], [3691, 0.0], [3697, 0.0], [3702, 0.0], [3708, 0.0], [3713, 0.0], [3719, 0.0], [3724, 0.0], [3730, 0.0], [3736, 0.0], [3741, 0.0], [3747, 0.0], [3752, 0.0], [3758, 0.0], [3763, 0.0], [3769, 0.0], [3774, 0.0], [3780, 0.0], [3785, 0.0], [3791, 0.0], [3796, 0.0], [3802, 0.0], [3807, 0.0], [3813, 0.0], [3818, 0.0], [3824, 0.0], [3829, 0.0], [3835, 0.0], [3840, 0.0], [3846, 0.0], [3851, 0.0], [3857, 0.0], [3862, 0.0], [3868, 0.0], [3874, 0.0], [3879, 0.0], [3885, 0.0], [3890, 0.0], [3896, 0.0], [3901, 0.0], [3907, 0.0], [3912, 0.0], [3918, 0.0], [3923, 0.0], [3929, 0.0], [3934, 0.0], [3940, 0.0], [3945, 0.0], [3951, 0.0], [3956, 0.0], [3962, 0.0], [3967, 0.0], [3973, 0.0], [3978, 0.0], [3984, 0.0], [3989, 0.0], [3995, 0.0], [4000, 0.0], [4006, 0.0], [4012, 0.0], [4017, 0.0], [4023, 0.0], [4028, 0.0], [4034, 0.0], [4039, 0.0], [4045, 0.0], [4050, 0.0], [4056, 0.0], [4061, 0.0], [4067, 0.0], [4072, 0.0], [4078, 0.0], [4083, 0.0], [4089, 0.0], [4094, 0.0], [4100, 0.0], [4105, 0.0], [4111, 0.0], [4116, 0.0], [4122, 0.0], [4127, 0.0], [4133, 0.0], [4138, 0.0], [4144, 0.0], [4150, 0.0], [4155, 0.0], [4161, 0.0], [4166, 0.0], [4172, 0.0], [4177, 0.0], [4183, 0.0], [4188, 0.0], [4194, 0.0], [4199, 0.0], [4205, 0.0], [4210, 0.0], [4216, 0.0], [4221, 0.0], [4227, 0.0], [4232, 0.0], [4238, 0.0], [4243, 0.0], [4249, 0.0], [4254, 0.0], [4260, 0.0], [4265, 0.0], [4271, 0.0], [4276, 0.0], [4282, 0.0], [4288, 0.0], [4293, 0.0], [4299, 0.0], [4304, 0.0], [4310, 0.0], [4315, 0.0], [4321, 0.0], [4326, 0.0], [4332, 0.0], [4337, 0.0], [4343, 0.0], [4348, 0.0], [4354, 0.0], [4359, 0.0], [4365, 0.0], [4370, 0.0], [4376, 0.0], [4381, 0.0], [4387, 0.0], [4392, 0.0], [4398, 0.0], [4403, 0.0], [4409, 0.0], [4414, 0.0], [4420, 0.0], [4426, 0.0], [4431, 0.0], [4437, 0.0], [4442, 0.0], [4448, 0.0], [4453, 0.0], [4459, 0.0], [4464, 0.0], [4470, 0.0], [4475, 0.0], [4481, 0.0], [4486, 0.0], [4492, 0.0], [4497, 0.0], [4503, 0.0], [4508, 0.0], [4514, 0.0], [4519, 0.0], [4525, 0.0], [4530, 0.0], [4536, 0.0], [4541, 0.0], [4547, 0.0], [4552, 0.0], [4558, 0.0], [4564, 0.0], [4569, 0.0], [4575, 0.0], [4580, 0.0], [4586, 0.0], [4591, 0.0], [4597, 0.0], [4602, 0.0], [4608, 0.0], [4613, 0.0], [4619, 0.0], [4624, 0.0], [4630, 0.0], [4635, 0.0], [4641, 0.0], [4646, 0.0], [4652, 0.0], [4657, 0.0], [4663, 0.0], [4668, 0.0], [4674, 0.0], [4679, 0.0], [4685, 0.0], [4690, 0.0], [4696, 0.0], [4702, 0.0], [4707, 0.0], [4713, 0.0], [4718, 0.0], [4724, 0.0], [4729, 0.0], [4735, 0.0], [4740, 0.0], [4746, 0.0], [4751, 0.0], [4757, 0.0], [4762, 0.0], [4768, 0.0], [4773, 0.0], [4779, 0.0], [4784, 0.0], [4790, 0.0], [4795, 0.0], [4801, 0.0], [4806, 0.0], [4812, 0.0], [4817, 0.0], [4823, 0.0], [4828, 0.0], [4834, 0.0], [4840, 0.0], [4845, 0.0], [4851, 0.0], [4856, 0.0], [4862, 0.0], [4867, 0.0], [4873, 0.0], [4878, 0.0], [4884, 0.0], [4889, 0.0], [4895, 0.0], [4900, 0.0], [4906, 0.0], [4911, 0.0], [4917, 0.0], [4922, 0.0], [4928, 0.0], [4933, 0.0], [4939, 0.0], [4944, 0.0], [4950, 0.0], [4955, 0.0], [4961, 0.0], [4966, 0.0], [4972, 0.0], [4978, 0.0], [4983, 0.0], [4989, 0.0], [4994, 0.0], [5000, 0.0], [5005, 0.0], [5011, 0.0], [5016, 0.0], [5022, 0.0], [5027, 0.0], [5033, 0.0], [5038, 0.0], [5044, 0.0], [5049, 0.0], [5055, 0.0], [5060, 0.0], [5066, 0.0], [5071, 0.0], [5077, 0.0], [5082, 0.0], [5088, 0.0], [5093, 0.0], [5099, 0.0], [5104, 0.0], [5110, 0.0], [5116, 0.0], [5121, 0.0], [5127, 0.0], [5132, 0.0], [5138, 0.0], [5143, 0.0], [5149, 0.0], [5154, 0.0], [5160, 0.0], [5165, 0.0], [5171, 0.0], [5176, 0.0], [5182, 0.0], [5187, 0.0], [5193, 0.0], [5198, 0.0], [5204, 0.0], [5209, 0.0], [5215, 0.0], [5220, 0.0], [5226, 0.0], [5231, 0.0], [5237, 0.0], [5242, 0.0], [5248, 0.0], [5254, 0.0], [5259, 0.0], [5265, 0.0], [5270, 0.0], [5276, 0.0], [5281, 0.0], [5287, 0.0], [5292, 0.0], [5298, 0.0], [5303, 0.0], [5309, 0.0], [5314, 0.0], [5320, 0.0], [5325, 0.0], [5331, 0.0], [5336, 0.0], [5342, 0.0], [5347, 0.0], [5353, 0.0], [5358, 0.0], [5364, 0.0], [5369, 0.0], [5375, 0.0], [5380, 0.0], [5386, 0.0], [5392, 0.0], [5397, 0.0], [5403, 0.0], [5408, 0.0], [5414, 0.0], [5419, 0.0], [5425, 0.0], [5430, 0.0], [5436, 0.0], [5441, 0.0], [5447, 0.0], [5452, 0.0], [5458, 0.0], [5463, 0.0], [5469, 0.0], [5474, 0.0], [5480, 0.0], [5485, 0.0], [5491, 0.0], [5496, 0.0], [5502, 0.0], [5507, 0.0], [5513, 0.0], [5520, 0.0]]], ["failed_duration", [[1, 0.0], [10, 0.0], [15, 0.0], [21, 0.0], [26, 0.0], [32, 0.0], [37, 0.0], [43, 0.0], [48, 0.0], [54, 0.0], [59, 0.0], [65, 0.0], [70, 0.0], [76, 0.0], [81, 0.0], [87, 0.0], [92, 0.0], [98, 0.0], [103, 0.0], [109, 0.0], [114, 0.0], [120, 0.0], [125, 0.0], [131, 0.0], [136, 0.0], [142, 0.0], [148, 0.0], [153, 0.0], [159, 0.0], [164, 0.0], [170, 0.0], [175, 0.0], [181, 0.0], [186, 0.0], [192, 0.0], [197, 0.0], [203, 0.0], [208, 0.0], [214, 0.0], [219, 0.0], [225, 0.0], [230, 0.0], [236, 0.0], [241, 0.0], [247, 0.0], [252, 0.0], [258, 0.0], [263, 0.0], [269, 0.0], [274, 0.0], [280, 0.0], [286, 0.0], [291, 0.0], [297, 0.0], [302, 0.0], [308, 0.0], [313, 0.0], [319, 0.0], [324, 0.0], [330, 0.0], [335, 0.0], [341, 0.0], [346, 0.0], [352, 0.0], [357, 0.0], [363, 0.0], [368, 0.0], [374, 0.0], [379, 0.0], [385, 0.0], [390, 0.0], [396, 0.0], [401, 0.0], [407, 0.0], [412, 0.0], [418, 0.0], [424, 0.0], [429, 0.0], [435, 0.0], [440, 0.0], [446, 0.0], [451, 0.0], [457, 0.0], [462, 0.0], [468, 0.0], [473, 0.0], [479, 0.0], [484, 0.0], [490, 0.0], [495, 0.0], [501, 0.0], [506, 0.0], [512, 0.0], [517, 0.0], [523, 0.0], [528, 0.0], [534, 0.0], [539, 0.0], [545, 0.0], [550, 0.0], [556, 0.0], [562, 0.0], [567, 0.0], [573, 0.0], [578, 0.0], [584, 0.0], [589, 0.0], [595, 0.0], [600, 0.0], [606, 0.0], [611, 0.0], [617, 0.0], [622, 0.0], [628, 0.0], [633, 0.0], [639, 0.0], [644, 0.0], [650, 0.0], [655, 0.0], [661, 0.0], [666, 0.0], [672, 0.0], [677, 0.0], [683, 0.0], [688, 0.0], [694, 0.0], [700, 0.0], [705, 0.0], [711, 0.0], [716, 0.0], [722, 0.0], [727, 0.0], [733, 0.0], [738, 0.0], [744, 0.0], [749, 0.0], [755, 0.0], [760, 0.0], [766, 0.0], [771, 0.0], [777, 0.0], [782, 0.0], [788, 0.0], [793, 0.0], [799, 0.0], [804, 0.0], [810, 0.0], [815, 0.0], [821, 0.0], [826, 0.0], [832, 0.0], [838, 0.0], [843, 0.0], [849, 0.0], [854, 0.0], [860, 0.0], [865, 0.0], [871, 0.0], [876, 0.0], [882, 0.0], [887, 0.0], [893, 0.0], [898, 0.0], [904, 0.0], [909, 0.0], [915, 0.0], [920, 0.0], [926, 0.0], [931, 0.0], [937, 0.0], [942, 0.0], [948, 0.0], [953, 0.0], [959, 0.0], [964, 0.0], [970, 0.0], [976, 0.0], [981, 0.0], [987, 0.0], [992, 0.0], [998, 0.0], [1003, 0.0], [1009, 0.0], [1014, 0.0], [1020, 0.0], [1025, 0.0], [1031, 0.0], [1036, 0.0], [1042, 0.0], [1047, 0.0], [1053, 0.0], [1058, 0.0], [1064, 0.0], [1069, 0.0], [1075, 0.0], [1080, 0.0], [1086, 0.0], [1091, 0.0], [1097, 0.0], [1102, 0.0], [1108, 0.0], [1114, 0.0], [1119, 0.0], [1125, 0.0], [1130, 0.0], [1136, 0.0], [1141, 0.0], [1147, 0.0], [1152, 0.0], [1158, 0.0], [1163, 0.0], [1169, 0.0], [1174, 0.0], [1180, 0.0], [1185, 0.0], [1191, 0.0], [1196, 0.0], [1202, 0.0], [1207, 0.0], [1213, 0.0], [1218, 0.0], [1224, 0.0], [1229, 0.0], [1235, 0.0], [1240, 0.0], [1246, 0.0], [1252, 0.0], [1257, 0.0], [1263, 0.0], [1268, 0.0], [1274, 0.0], [1279, 0.0], [1285, 0.0], [1290, 0.0], [1296, 0.0], [1301, 0.0], [1307, 0.0], [1312, 0.0], [1318, 0.0], [1323, 0.0], [1329, 0.0], [1334, 0.0], [1340, 0.0], [1345, 0.0], [1351, 0.0], [1356, 0.0], [1362, 0.0], [1367, 0.0], [1373, 0.0], [1378, 0.0], [1384, 0.0], [1390, 0.0], [1395, 0.0], [1401, 0.0], [1406, 0.0], [1412, 0.0], [1417, 0.0], [1423, 0.0], [1428, 0.0], [1434, 0.0], [1439, 0.0], [1445, 0.0], [1450, 0.0], [1456, 0.0], [1461, 0.0], [1467, 0.0], [1472, 0.0], [1478, 0.0], [1483, 0.0], [1489, 0.0], [1494, 0.0], [1500, 0.0], [1505, 0.0], [1511, 0.0], [1516, 0.0], [1522, 0.0], [1528, 0.0], [1533, 0.0], [1539, 0.0], [1544, 0.0], [1550, 0.0], [1555, 0.0], [1561, 0.0], [1566, 0.0], [1572, 0.0], [1577, 0.0], [1583, 0.0], [1588, 0.0], [1594, 0.0], [1599, 0.0], [1605, 0.0], [1610, 0.0], [1616, 0.0], [1621, 0.0], [1627, 0.0], [1632, 0.0], [1638, 0.0], [1643, 0.0], [1649, 0.0], [1654, 0.0], [1660, 0.0], [1666, 0.0], [1671, 0.0], [1677, 0.0], [1682, 0.0], [1688, 0.0], [1693, 0.0], [1699, 0.0], [1704, 0.0], [1710, 0.0], [1715, 0.0], [1721, 0.0], [1726, 0.0], [1732, 0.0], [1737, 0.0], [1743, 0.0], [1748, 0.0], [1754, 0.0], [1759, 0.0], [1765, 0.0], [1770, 0.0], [1776, 0.0], [1781, 0.0], [1787, 0.0], [1792, 0.0], [1798, 0.0], [1804, 0.0], [1809, 0.0], [1815, 0.0], [1820, 0.0], [1826, 0.0], [1831, 0.0], [1837, 0.0], [1842, 0.0], [1848, 0.0], [1853, 0.0], [1859, 0.0], [1864, 0.0], [1870, 0.0], [1875, 0.0], [1881, 0.0], [1886, 0.0], [1892, 0.0], [1897, 0.0], [1903, 0.0], [1908, 0.0], [1914, 0.0], [1919, 0.0], [1925, 0.0], [1930, 0.0], [1936, 0.0], [1942, 0.0], [1947, 0.0], [1953, 0.0], [1958, 0.0], [1964, 0.0], [1969, 0.0], [1975, 0.0], [1980, 0.0], [1986, 0.0], [1991, 0.0], [1997, 0.0], [2002, 0.0], [2008, 0.0], [2013, 0.0], [2019, 0.0], [2024, 0.0], [2030, 0.0], [2035, 0.0], [2041, 0.0], [2046, 0.0], [2052, 0.0], [2057, 0.0], [2063, 0.0], [2068, 0.0], [2074, 0.0], [2080, 0.0], [2085, 0.0], [2091, 0.0], [2096, 0.0], [2102, 0.0], [2107, 0.0], [2113, 0.0], [2118, 0.0], [2124, 0.0], [2129, 0.0], [2135, 0.0], [2140, 0.0], [2146, 0.0], [2151, 0.0], [2157, 0.0], [2162, 0.0], [2168, 0.0], [2173, 0.0], [2179, 0.0], [2184, 0.0], [2190, 0.0], [2195, 0.0], [2201, 0.0], [2206, 0.0], [2212, 0.0], [2218, 0.0], [2223, 0.0], [2229, 0.0], [2234, 0.0], [2240, 0.0], [2245, 0.0], [2251, 0.0], [2256, 0.0], [2262, 0.0], [2267, 0.0], [2273, 0.0], [2278, 0.0], [2284, 0.0], [2289, 0.0], [2295, 0.0], [2300, 0.0], [2306, 0.0], [2311, 0.0], [2317, 0.0], [2322, 0.0], [2328, 0.0], [2333, 0.0], [2339, 0.0], [2344, 0.0], [2350, 0.0], [2356, 0.0], [2361, 0.0], [2367, 0.0], [2372, 0.0], [2378, 0.0], [2383, 0.0], [2389, 0.0], [2394, 0.0], [2400, 0.0], [2405, 0.0], [2411, 0.0], [2416, 0.0], [2422, 0.0], [2427, 0.0], [2433, 0.0], [2438, 0.0], [2444, 0.0], [2449, 0.0], [2455, 0.0], [2460, 0.0], [2466, 0.0], [2471, 0.0], [2477, 0.0], [2482, 0.0], [2488, 0.0], [2494, 0.0], [2499, 0.0], [2505, 0.0], [2510, 0.0], [2516, 0.0], [2521, 0.0], [2527, 0.0], [2532, 0.0], [2538, 0.0], [2543, 0.0], [2549, 0.0], [2554, 0.0], [2560, 0.0], [2565, 0.0], [2571, 0.0], [2576, 0.0], [2582, 0.0], [2587, 0.0], [2593, 0.0], [2598, 0.0], [2604, 0.0], [2609, 0.0], [2615, 0.0], [2620, 0.0], [2626, 0.0], [2632, 0.0], [2637, 0.0], [2643, 0.0], [2648, 0.0], [2654, 0.0], [2659, 0.0], [2665, 0.0], [2670, 0.0], [2676, 0.0], [2681, 0.0], [2687, 0.0], [2692, 0.0], [2698, 0.0], [2703, 0.0], [2709, 0.0], [2714, 0.0], [2720, 0.0], [2725, 0.0], [2731, 0.0], [2736, 0.0], [2742, 0.0], [2747, 0.0], [2753, 0.0], [2758, 0.0], [2764, 0.0], [2770, 0.0], [2775, 0.0], [2781, 0.0], [2786, 0.0], [2792, 0.0], [2797, 0.0], [2803, 0.0], [2808, 0.0], [2814, 0.0], [2819, 0.0], [2825, 0.0], [2830, 0.0], [2836, 0.0], [2841, 0.0], [2847, 0.0], [2852, 0.0], [2858, 0.0], [2863, 0.0], [2869, 0.0], [2874, 0.0], [2880, 0.0], [2885, 0.0], [2891, 0.0], [2896, 0.0], [2902, 0.0], [2908, 0.0], [2913, 0.0], [2919, 0.0], [2924, 0.0], [2930, 0.0], [2935, 0.0], [2941, 0.0], [2946, 0.0], [2952, 0.0], [2957, 0.0], [2963, 0.0], [2968, 0.0], [2974, 0.0], [2979, 0.0], [2985, 0.0], [2990, 0.0], [2996, 0.0], [3001, 0.0], [3007, 0.0], [3012, 0.0], [3018, 0.0], [3023, 0.0], [3029, 0.0], [3034, 0.0], [3040, 0.0], [3046, 0.0], [3051, 0.0], [3057, 0.0], [3062, 0.0], [3068, 0.0], [3073, 0.0], [3079, 0.0], [3084, 0.0], [3090, 0.0], [3095, 0.0], [3101, 0.0], [3106, 0.0], [3112, 0.0], [3117, 0.0], [3123, 0.0], [3128, 0.0], [3134, 0.0], [3139, 0.0], [3145, 0.0], [3150, 0.0], [3156, 0.0], [3161, 0.0], [3167, 0.0], [3172, 0.0], [3178, 0.0], [3184, 0.0], [3189, 0.0], [3195, 0.0], [3200, 0.0], [3206, 0.0], [3211, 0.0], [3217, 0.0], [3222, 0.0], [3228, 0.0], [3233, 0.0], [3239, 0.0], [3244, 0.0], [3250, 0.0], [3255, 0.0], [3261, 0.0], [3266, 0.0], [3272, 0.0], [3277, 0.0], [3283, 0.0], [3288, 0.0], [3294, 0.0], [3299, 0.0], [3305, 0.0], [3310, 0.0], [3316, 0.0], [3322, 0.0], [3327, 0.0], [3333, 0.0], [3338, 0.0], [3344, 0.0], [3349, 0.0], [3355, 0.0], [3360, 0.0], [3366, 0.0], [3371, 0.0], [3377, 0.0], [3382, 0.0], [3388, 0.0], [3393, 0.0], [3399, 0.0], [3404, 0.0], [3410, 0.0], [3415, 0.0], [3421, 0.0], [3426, 0.0], [3432, 0.0], [3437, 0.0], [3443, 0.0], [3448, 0.0], [3454, 0.0], [3460, 0.0], [3465, 0.0], [3471, 0.0], [3476, 0.0], [3482, 0.0], [3487, 0.0], [3493, 0.0], [3498, 0.0], [3504, 0.0], [3509, 0.0], [3515, 0.0], [3520, 0.0], [3526, 0.0], [3531, 0.0], [3537, 0.0], [3542, 0.0], [3548, 0.0], [3553, 0.0], [3559, 0.0], [3564, 0.0], [3570, 0.0], [3575, 0.0], [3581, 0.0], [3586, 0.0], [3592, 0.0], [3598, 0.0], [3603, 0.0], [3609, 0.0], [3614, 0.0], [3620, 0.0], [3625, 0.0], [3631, 0.0], [3636, 0.0], [3642, 0.0], [3647, 0.0], [3653, 0.0], [3658, 0.0], [3664, 0.0], [3669, 0.0], [3675, 0.0], [3680, 0.0], [3686, 0.0], [3691, 0.0], [3697, 0.0], [3702, 0.0], [3708, 0.0], [3713, 0.0], [3719, 0.0], [3724, 0.0], [3730, 0.0], [3736, 0.0], [3741, 0.0], [3747, 0.0], [3752, 0.0], [3758, 0.0], [3763, 0.0], [3769, 0.0], [3774, 0.0], [3780, 0.0], [3785, 0.0], [3791, 0.0], [3796, 0.0], [3802, 0.0], [3807, 0.0], [3813, 0.0], [3818, 0.0], [3824, 0.0], [3829, 0.0], [3835, 0.0], [3840, 0.0], [3846, 0.0], [3851, 0.0], [3857, 0.0], [3862, 0.0], [3868, 0.0], [3874, 0.0], [3879, 0.0], [3885, 0.0], [3890, 0.0], [3896, 0.0], [3901, 0.0], [3907, 0.0], [3912, 0.0], [3918, 0.0], [3923, 0.0], [3929, 0.0], [3934, 0.0], [3940, 0.0], [3945, 0.0], [3951, 0.0], [3956, 0.0], [3962, 0.0], [3967, 0.0], [3973, 0.0], [3978, 0.0], [3984, 0.0], [3989, 0.0], [3995, 0.0], [4000, 0.0], [4006, 0.0], [4012, 0.0], [4017, 0.0], [4023, 0.0], [4028, 0.0], [4034, 0.0], [4039, 0.0], [4045, 5.623405276854216], [4050, 29.52287770355328], [4056, 0.0], [4061, 0.0], [4067, 0.0], [4072, 0.0], [4078, 0.0], [4083, 0.0], [4089, 0.0], [4094, 0.0], [4100, 0.0], [4105, 0.0], [4111, 0.0], [4116, 0.0], [4122, 0.0], [4127, 0.0], [4133, 0.0], [4138, 0.0], [4144, 0.0], [4150, 0.0], [4155, 0.0], [4161, 0.0], [4166, 0.0], [4172, 0.0], [4177, 0.0], [4183, 0.0], [4188, 0.0], [4194, 0.0], [4199, 0.0], [4205, 0.0], [4210, 0.0], [4216, 0.0], [4221, 0.0], [4227, 0.0], [4232, 0.0], [4238, 0.0], [4243, 0.0], [4249, 0.0], [4254, 0.0], [4260, 0.0], [4265, 0.0], [4271, 0.0], [4276, 0.0], [4282, 0.0], [4288, 0.0], [4293, 0.0], [4299, 0.0], [4304, 0.0], [4310, 0.0], [4315, 0.0], [4321, 0.0], [4326, 0.0], [4332, 0.0], [4337, 0.0], [4343, 0.0], [4348, 0.0], [4354, 0.0], [4359, 0.0], [4365, 0.0], [4370, 0.0], [4376, 0.0], [4381, 0.0], [4387, 0.0], [4392, 0.0], [4398, 0.0], [4403, 0.0], [4409, 0.0], [4414, 0.0], [4420, 0.0], [4426, 0.0], [4431, 0.0], [4437, 0.0], [4442, 0.0], [4448, 0.0], [4453, 0.0], [4459, 0.0], [4464, 0.0], [4470, 0.0], [4475, 0.0], [4481, 0.0], [4486, 0.0], [4492, 0.0], [4497, 0.0], [4503, 0.0], [4508, 0.0], [4514, 0.0], [4519, 0.0], [4525, 0.0], [4530, 0.0], [4536, 0.0], [4541, 0.0], [4547, 0.0], [4552, 0.0], [4558, 0.0], [4564, 0.0], [4569, 0.0], [4575, 0.0], [4580, 0.0], [4586, 0.0], [4591, 0.0], [4597, 0.0], [4602, 0.0], [4608, 0.0], [4613, 0.0], [4619, 0.0], [4624, 0.0], [4630, 0.0], [4635, 0.0], [4641, 0.0], [4646, 0.0], [4652, 0.0], [4657, 0.0], [4663, 0.0], [4668, 0.0], [4674, 0.0], [4679, 0.0], [4685, 0.0], [4690, 0.0], [4696, 0.0], [4702, 0.0], [4707, 0.0], [4713, 0.0], [4718, 0.0], [4724, 0.0], [4729, 0.0], [4735, 0.0], [4740, 0.0], [4746, 0.0], [4751, 0.0], [4757, 0.0], [4762, 0.0], [4768, 0.0], [4773, 0.0], [4779, 35.29498533926149], [4784, 0.0], [4790, 0.0], [4795, 35.90529202551082], [4801, 0.0], [4806, 0.0], [4812, 0.0], [4817, 0.0], [4823, 0.0], [4828, 0.0], [4834, 0.0], [4840, 0.0], [4845, 0.0], [4851, 0.0], [4856, 0.0], [4862, 0.0], [4867, 0.0], [4873, 0.0], [4878, 0.0], [4884, 0.0], [4889, 0.0], [4895, 0.0], [4900, 0.0], [4906, 0.0], [4911, 0.0], [4917, 0.0], [4922, 0.0], [4928, 0.0], [4933, 0.0], [4939, 0.0], [4944, 0.0], [4950, 0.0], [4955, 0.0], [4961, 0.0], [4966, 0.0], [4972, 0.0], [4978, 0.0], [4983, 0.0], [4989, 0.0], [4994, 0.0], [5000, 0.0], [5005, 0.0], [5011, 0.0], [5016, 0.0], [5022, 0.0], [5027, 0.0], [5033, 0.0], [5038, 0.0], [5044, 0.0], [5049, 0.0], [5055, 0.0], [5060, 0.0], [5066, 0.0], [5071, 0.0], [5077, 0.0], [5082, 0.0], [5088, 0.0], [5093, 0.0], [5099, 0.0], [5104, 0.0], [5110, 0.0], [5116, 0.0], [5121, 0.0], [5127, 0.0], [5132, 0.0], [5138, 0.0], [5143, 0.0], [5149, 0.0], [5154, 0.0], [5160, 0.0], [5165, 0.0], [5171, 0.0], [5176, 0.0], [5182, 0.0], [5187, 0.0], [5193, 0.0], [5198, 0.0], [5204, 0.0], [5209, 0.0], [5215, 0.0], [5220, 0.0], [5226, 0.0], [5231, 0.0], [5237, 0.0], [5242, 0.0], [5248, 0.0], [5254, 0.0], [5259, 0.0], [5265, 0.0], [5270, 0.0], [5276, 0.0], [5281, 0.0], [5287, 0.0], [5292, 0.0], [5298, 0.0], [5303, 0.0], [5309, 0.0], [5314, 0.0], [5320, 0.0], [5325, 0.0], [5331, 0.0], [5336, 0.0], [5342, 0.0], [5347, 0.0], [5353, 0.0], [5358, 0.0], [5364, 0.0], [5369, 0.0], [5375, 0.0], [5380, 0.0], [5386, 0.0], [5392, 0.0], [5397, 0.0], [5403, 0.0], [5408, 0.0], [5414, 0.0], [5419, 0.0], [5425, 0.0], [5430, 0.0], [5436, 0.0], [5441, 0.0], [5447, 0.0], [5452, 0.0], [5458, 0.0], [5463, 0.0], [5469, 0.0], [5474, 0.0], [5480, 0.0], [5485, 0.0], [5491, 0.0], [5496, 0.0], [5502, 0.0], [5507, 0.0], [5513, 0.0], [5520, 0.0]]]], "histogram": {"data": [[{"disabled": null, "values": [{"y": 26, "x": 7.940718495051065}, {"y": 38, "x": 10.359747098286945}, {"y": 44, "x": 12.778775701522827}, {"y": 149, "x": 15.197804304758707}, {"y": 547, "x": 17.616832907994585}, {"y": 1209, "x": 20.03586151123047}, {"y": 1599, "x": 22.454890114466348}, {"y": 1029, "x": 24.873918717702228}, {"y": 497, "x": 27.292947320938108}, {"y": 216, "x": 29.711975924173988}, {"y": 72, "x": 32.13100452740987}, {"y": 15, "x": 34.55003313064575}, {"y": 5, "x": 36.96906173388163}, {"y": 2, "x": 39.38809033711751}, {"y": 4, "x": 41.80711894035339}, {"y": 1, "x": 44.22614754358927}, {"y": 4, "x": 46.64517614682515}, {"y": 3, "x": 49.06420475006103}, {"y": 4, "x": 51.48323335329691}, {"y": 3, "x": 53.90226195653279}, {"y": 5, "x": 56.32129055976867}, {"y": 0, "x": 58.74031916300455}, {"y": 2, "x": 61.15934776624043}, {"y": 2, "x": 63.57837636947632}, {"y": 2, "x": 65.99740497271219}, {"y": 0, "x": 68.41643357594808}, {"y": 4, "x": 70.83546217918395}, {"y": 1, "x": 73.25449078241984}, {"y": 3, "x": 75.67351938565571}, {"y": 1, "x": 78.0925479888916}, {"y": 3, "x": 80.51157659212747}, {"y": 0, "x": 82.93060519536336}, {"y": 1, "x": 85.34963379859924}, {"y": 1, "x": 87.76866240183512}, {"y": 2, "x": 90.187691005071}, {"y": 2, "x": 92.60671960830688}, {"y": 2, "x": 95.02574821154276}, {"y": 1, "x": 97.44477681477863}, {"y": 1, "x": 99.86380541801452}, {"y": 1, "x": 102.2828340212504}, {"y": 1, "x": 104.70186262448628}, {"y": 1, "x": 107.12089122772215}, {"y": 1, "x": 109.53991983095804}, {"y": 1, "x": 111.95894843419391}, {"y": 2, "x": 114.3779770374298}, {"y": 0, "x": 116.79700564066567}, {"y": 0, "x": 119.21603424390156}, {"y": 0, "x": 121.63506284713745}, {"y": 1, "x": 124.05409145037332}, {"y": 0, "x": 126.47312005360921}, {"y": 0, "x": 128.89214865684508}, {"y": 1, "x": 131.31117726008097}, {"y": 1, "x": 133.73020586331685}, {"y": 0, "x": 136.1492344665527}, {"y": 0, "x": 138.5682630697886}, {"y": 0, "x": 140.9872916730245}, {"y": 0, "x": 143.40632027626037}, {"y": 1, "x": 145.82534887949623}, {"y": 0, "x": 148.24437748273212}, {"y": 2, "x": 150.663406085968}, {"y": 0, "x": 153.0824346892039}, {"y": 1, "x": 155.50146329243975}, {"y": 1, "x": 157.92049189567564}, {"y": 0, "x": 160.33952049891153}, {"y": 0, "x": 162.7585491021474}, {"y": 0, "x": 165.1775777053833}, {"y": 1, "x": 167.59660630861916}, {"y": 0, "x": 170.01563491185505}, {"y": 0, "x": 172.43466351509093}, {"y": 0, "x": 174.85369211832682}, {"y": 1, "x": 177.27272072156268}, {"y": 1, "x": 179.69174932479856}, {"y": 0, "x": 182.11077792803445}, {"y": 0, "x": 184.52980653127034}, {"y": 1, "x": 186.9488351345062}], "key": "task", "view": "Square Root Choice"}], [{"disabled": null, "values": [{"y": 1436, "x": 18.480771694864544}, {"y": 3981, "x": 31.439853497913905}, {"y": 37, "x": 44.39893530096327}, {"y": 18, "x": 57.358017104012625}, {"y": 10, "x": 70.31709890706199}, {"y": 8, "x": 83.27618071011135}, {"y": 8, "x": 96.2352625131607}, {"y": 6, "x": 109.19434431621006}, {"y": 3, "x": 122.15342611925942}, {"y": 3, "x": 135.1125079223088}, {"y": 1, "x": 148.07158972535814}, {"y": 4, "x": 161.0306715284075}, {"y": 1, "x": 173.98975333145685}, {"y": 4, "x": 186.94883513450623}], "key": "task", "view": "Sturges Formula"}], [{"disabled": null, "values": [{"y": 67, "x": 10.56133281522327}, {"y": 237, "x": 15.600975738631355}, {"y": 2092, "x": 20.64061866203944}, {"y": 2424, "x": 25.680261585447525}, {"y": 579, "x": 30.71990450885561}, {"y": 43, "x": 35.759547432263695}, {"y": 8, "x": 40.79919035567178}, {"y": 6, "x": 45.838833279079864}, {"y": 6, "x": 50.878476202487946}, {"y": 8, "x": 55.918119125896034}, {"y": 3, "x": 60.95776204930412}, {"y": 5, "x": 65.9974049727122}, {"y": 5, "x": 71.03704789612028}, {"y": 3, "x": 76.07669081952838}, {"y": 4, "x": 81.11633374293646}, {"y": 1, "x": 86.15597666634454}, {"y": 5, "x": 91.19561958975262}, {"y": 2, "x": 96.2352625131607}, {"y": 3, "x": 101.2749054365688}, {"y": 2, "x": 106.31454835997688}, {"y": 1, "x": 111.35419128338496}, {"y": 3, "x": 116.39383420679306}, {"y": 0, "x": 121.43347713020114}, {"y": 1, "x": 126.47312005360922}, {"y": 1, "x": 131.5127629770173}, {"y": 1, "x": 136.55240590042538}, {"y": 0, "x": 141.59204882383347}, {"y": 1, "x": 146.63169174724158}, {"y": 2, "x": 151.67133467064966}, {"y": 1, "x": 156.71097759405774}, {"y": 1, "x": 161.75062051746582}, {"y": 1, "x": 166.7902634408739}, {"y": 0, "x": 171.82990636428198}, {"y": 1, "x": 176.86954928769006}, {"y": 1, "x": 181.90919221109814}, {"y": 2, "x": 186.94883513450623}], "key": "task", "view": "Rice Rule"}]], "views": [{"id": 0, "name": "Square Root Choice"}, {"id": 1, "name": "Sturges Formula"}, {"id": 2, "name": "Rice Rule"}]}}, "additive_output": [], "table": {"rows": [["nova.list_servers", 0.105, 4.381, 7.135, 7.69, 172.788, 5.304, "99.9%", 5520], ["nova.boot_server", 4.717, 16.931, 21.05, 22.203, 102.507, 16.659, "99.9%", 5520], ["total", 5.522, 21.027, 26.256, 28.557, 186.949, 21.964, "99.9%", 5520]], "cols": ["Action", "Min (sec)", "Median (sec)", "90%ile (sec)", "95%ile (sec)", "Max (sec)", "Avg (sec)", "Success", "Count"]}, "full_duration": 8759.49323296547, "config": "{\n \"NovaServers.boot_and_list_server\": [\n {\n \"runner\": {\n \"type\": \"constant\", \n \"concurrency\": 20, \n \"times\": 5520\n }, \n \"args\": {\n \"detailed\": true, \n \"flavor\": {\n \"name\": \"^scaletest$\"\n }, \n \"image\": {\n \"name\": \"^cirros$\"\n }\n }, \n \"sla\": {\n \"failure_rate\": {\n \"max\": 0\n }\n }, \n \"context\": {\n \"users\": {\n \"users_per_tenant\": 10, \n \"project_domain\": \"default\", \n \"user_choice_method\": \"random\", \n \"user_domain\": \"default\", \n \"tenants\": 10, \n \"resource_management_workers\": 20\n }, \n \"quotas\": {\n \"nova\": {\n \"ram\": -1, \n \"floating_ips\": -1, \n \"security_group_rules\": -1, \n \"instances\": -1, \n \"cores\": -1, \n \"security_groups\": -1\n }, \n \"neutron\": {\n \"subnet\": -1, \n \"network\": -1, \n \"security_group_rule\": -1, \n \"security_group\": -1, \n \"router\": -1, \n \"port\": -1\n }\n }\n }\n }\n ]\n}", "sla": [{"criterion": "failure_rate", "detail": "Failure rate criteria 0.00% <= 0.05% <= 0.00% - Failed", "success": false}], "complete_output": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "cls": "NovaServers"}];
$scope.location = {
/* #/path/hash/sub/div */
normalize: function(str) {
/* Remove unwanted characters from string */
if (typeof str !== "string") { return "" }
return str.replace(/[^\w\-\.]/g, "")
},
uri: function(obj) {
/* Getter/Setter */
if (! obj) {
var uri = {path: "", hash: "", sub: "", div: ""};
var arr = ["div", "sub", "hash", "path"];
angular.forEach($location.url().split("/"), function(value){
var v = $scope.location.normalize(value);
if (v) { var k = arr.pop(); if (k) { this[k] = v }}
}, uri);
return uri
}
var arr = [obj.path, obj.hash, obj.sub, obj.div], res = [];
for (var i in arr) { if (! arr[i]) { break }; res.push(arr[i]) }
return $location.url("/" + res.join("/"))
},
path: function(path, hash) {
/* Getter/Setter */
if (path === "") { return this.uri({}) }
path = this.normalize(path);
var uri = this.uri();
if (! path) { return uri.path }
uri.path = path;
var _hash = this.normalize(hash);
if (_hash || hash === "") { uri.hash = _hash }
return this.uri(uri)
},
hash: function(hash) {
/* Getter/Setter */
if (hash) { this.uri({path:this.uri().path, hash:hash}) }
return this.uri().hash
}
}
/* Dispatch */
$scope.route = function(uri) {
if (! $scope.scenarios_map) { return }
// Expand menu if there is only one menu group
if ($scope.nav.length === 1) {
$scope.nav_idx = $scope.nav[0].idx;
}
if (uri.path in $scope.scenarios_map) {
$scope.view = {is_scenario:true};
$scope.scenario = $scope.scenarios_map[uri.path];
$scope.nav_idx = $scope.nav_map[uri.path];
if ($scope.scenario.iterations.histogram.views.length) {
$scope.mainHistogram = $scope.scenario.iterations.histogram.views[0]
}
if ($scope.scenario.atomic.histogram.views.length) {
$scope.atomicHistogram = $scope.scenario.atomic.histogram.views[0]
}
$scope.outputIteration = 0;
$scope.showTab(uri);
} else {
$scope.scenario = null;
if (uri.path === "source") {
$scope.view = {is_source:true}
} else {
$scope.view = {is_main:true}
}
}
}
$scope.$on("$locationChangeSuccess", function (event, newUrl, oldUrl) {
$scope.route($scope.location.uri())
});
$scope.showNav = function(nav_idx) { $scope.nav_idx = nav_idx }
/* Tabs */
$scope.tabs = [
{
id: "overview",
name: "Overview",
visible: function(){ return !! $scope.scenario.iterations.pie.length }
},{
id: "details",
name: "Details",
visible: function(){ return !! $scope.scenario.atomic.pie.length }
},{
id: "output",
name: "Scenario Data",
visible: function(){ return $scope.scenario.output.length }
},{
id: "failures",
name: "Failures",
visible: function(){ return !! $scope.scenario.errors.length }
},{
id: "task",
name: "Input task",
visible: function(){ return !! $scope.scenario.config }
}
];
$scope.tabs_map = {};
angular.forEach($scope.tabs,
function(tab){ this[tab.id] = tab }, $scope.tabs_map);
$scope.showTab = function(uri) {
$scope.tab = uri.hash in $scope.tabs_map ? uri.hash : "overview";
if (! $scope.scenario.output) {
var has_additive = !! $scope.scenario.additive_output.length;
var has_complete = !! ($scope.scenario.complete_output.length
&& $scope.scenario.complete_output[0].length);
$scope.scenario.output = {
has_additive: has_additive,
has_complete: has_complete,
length: has_additive + has_complete,
active: has_additive ? "additive" : (has_complete ? "complete" : "")
}
}
if (uri.hash === "output") {
if (uri.sub && $scope.scenario.output["has_" + uri.sub]) {
$scope.scenario.output.active = uri.sub
}
}
}
for (var i in $scope.tabs) {
if ($scope.tabs[i].id === $scope.location.hash()) {
$scope.tab = $scope.tabs[i].id
}
$scope.tabs[i].isVisible = function() {
if ($scope.scenario) {
if (this.visible()) { return true }
/* If tab should be hidden but is selected - show another one */
if (this.id === $scope.location.hash()) {
for (var i in $scope.tabs) {
var tab = $scope.tabs[i];
if (tab.id != this.id && tab.visible()) {
$scope.tab = tab.id;
return false
}
}
}
}
return false
}
}
/* Other helpers */
$scope.showError = function(message) {
return (function (e) {
e.style.display = "block";
e.textContent = message
})(document.getElementById("page-error"))
}
$scope.compact_atomics = function() {
return ($scope.scenario && $scope.scenario.atomic.iter.length < 9)
}
/* Initialization */
angular.element(document).ready(function(){
if (! $scope.scenarios.length) {
return $scope.showError("No data...")
}
/* Compose data mapping */
$scope.nav = [];
$scope.nav_map = {};
$scope.scenarios_map = {};
var met = [], itr = 0, cls_idx = 0;
var prev_cls, prev_met;
for (var idx in $scope.scenarios) {
var sc = $scope.scenarios[idx];
if (! prev_cls) {
prev_cls = sc.cls
}
else if (prev_cls !== sc.cls) {
$scope.nav.push({cls:prev_cls, met:met, idx:cls_idx});
prev_cls = sc.cls;
met = [];
itr = 1;
cls_idx += 1
}
if (prev_met !== sc.met) { itr = 1 };
sc.ref = $scope.location.normalize(sc.cls+"."+sc.met+(itr > 1 ? "-"+itr : ""));
$scope.scenarios_map[sc.ref] = sc;
$scope.nav_map[sc.ref] = cls_idx;
met.push({name:sc.name, itr:itr, idx:idx, ref:sc.ref});
prev_met = sc.met;
itr += 1;
}
if (met.length) {
$scope.nav.push({cls:prev_cls, met:met, idx:cls_idx})
}
/* Start */
var uri = $scope.location.uri();
uri.path = $scope.location.path();
$scope.route(uri);
$scope.$digest()
})
};
if (typeof angular === "object") {
angular.module("App", [])
.controller("Controller", ["$scope", "$location", controllerFunction])
.directive("widget", widgetDirective)
}
</script>
<style>
body { margin:0; padding:0 0 50px; font-size:14px; font-family:Helvetica,Arial,sans-serif }
a, a:active, a:focus, a:visited { text-decoration:none; outline:none }
p { margin:0; padding:5px 0 }
p.thesis { padding:10px 0 }
h1 { color:#666; margin:0 0 20px; font-size:30px; font-weight:normal }
h2, .h2 { color:#666; margin:24px 0 6px; font-size:25px; font-weight:normal }
h3, .h3 { color:#777; margin:12px 0 4px; font-size:18px; font-weight:normal }
table { border-collapse:collapse; border-spacing:0; width:100%; font-size:12px; margin:0 0 10px }
table th { text-align:left; padding:8px; color:#000; border:2px solid #ddd; border-width:0 0 2px 0 }
table th.sortable { cursor:pointer }
table td { text-align:left; border-top:1px solid #ddd; padding:8px; color:#333 }
table.compact td { padding:4px 8px }
table.striped tr:nth-child(odd) td { background:#f9f9f9 }
table.linked tbody tr:hover { background:#f9f9f9; cursor:pointer }
.rich, .rich td { font-weight:bold }
.code { padding:10px; font-size:13px; color:#333; background:#f6f6f6; border:1px solid #e5e5e5; border-radius:4px }
.header { text-align:left; background:#333; font-size:18px; padding:13px 0; margin-bottom:20px; color:#fff; background-image:linear-gradient(to bottom, #444 0px, #222 100%) }
.header a, .header a:visited, .header a:focus { color:#999 }
.notify-error { padding:5px 10px; background:#fee; color:red }
.status-skip, .status-skip td { color:grey }
.status-pass, .status-pass td { color:green }
.status-fail, .status-fail td { color:red }
.capitalize { text-transform:capitalize }
.aside { margin:0 20px 0 0; display:block; width:255px; float:left }
.aside > div { margin-bottom: 15px }
.aside > div div:first-child { border-top-left-radius:4px; border-top-right-radius:4px }
.aside > div div:last-child { border-bottom-left-radius:4px; border-bottom-right-radius:4px }
.navcls { color:#678; background:#eee; border:1px solid #ddd; margin-bottom:-1px; display:block; padding:8px 9px; font-weight:bold; text-align:left; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; cursor:pointer }
.navcls.expanded { color:#469 }
.navcls.active { background:#428bca; background-image:linear-gradient(to bottom, #428bca 0px, #3278b3 100%); border-color:#3278b3; color:#fff }
.navmet { color:#555; background:#fff; border:1px solid #ddd; font-size:12px; display:block; margin-bottom:-1px; padding:8px 10px; text-align:left; text-overflow:ellipsis; white-space:nowrap; overflow:hidden; cursor:pointer }
.navmet:hover { background:#f8f8f8 }
.navmet.active, .navmet.active:hover { background:#428bca; background-image:linear-gradient(to bottom, #428bca 0px, #3278b3 100%); border-color:#3278b3; color:#fff }
.tabs { list-style:outside none none; margin:0 0 5px; padding:0; border-bottom:1px solid #ddd }
.tabs:after { clear:both }
.tabs li { float:left; margin-bottom:-1px; display:block; position:relative }
.tabs li div { border:1px solid transparent; border-radius:4px 4px 0 0; line-height:20px; margin-right:2px; padding:10px 15px; color:#428bca }
.tabs li div:hover { border-color:#eee #eee #ddd; background:#eee; cursor:pointer; }
.tabs li.active div { background:#fff; border-color:#ddd #ddd transparent; border-style:solid; border-width:1px; color:#555; cursor:default }
.failure-mesg { color:#900 }
.failure-trace { color:#333; white-space:pre; overflow:auto }
.link { color:#428BCA; padding:5px 15px 5px 5px; text-decoration:underline; cursor:pointer }
.link.active { color:#333; text-decoration:none }
.chart { padding:0; margin:0; width:890px }
.chart svg { height:300px; padding:0; margin:0; overflow:visible; float:right }
.chart.lower svg { height:180px }
.chart-label-y { font-size:12px; position:relative; top:5px; padding:0; margin:0 }
.expandable { cursor:pointer }
.clearfix { clear:both }
.sortable > .arrow { display:inline-block; width:12px; height:inherit; color:#c90 }
.content-main { margin:0 5px; display:block; float:left }
.content-wrap { margin:0 auto; padding:0 5px </%block>}
@media only screen and (min-width: 320px) { .content-wrap { width:900px } .content-main { width:600px } }
@media only screen and (min-width: 900px) { .content-wrap { width:880px } .content-main { width:590px } }
@media only screen and (min-width: 1000px) { .content-wrap { width:980px } .content-main { width:690px } }
@media only screen and (min-width: 1100px) { .content-wrap { width:1080px } .content-main { width:790px } }
@media only screen and (min-width: 1200px) { .content-wrap { width:1180px } .content-main { width:890px } }
</style>
</head>
<body ng-controller="Controller">
<div class="header">
<div class="content-wrap">
<a href="https://github.com/openstack/rally">Rally</a>&nbsp;
<span>task results</span>
</div>
</div>
<div class="content-wrap">
<p id="page-error" class="notify-error" style="display:none"></p>
<div id="content-nav" class="aside" ng-show="scenarios.length" ng-cloack>
<div>
<div class="navcls"
ng-class="{active:view.is_main}"
ng-click="location.path('')">Task overview</div>
<div class="navcls"
ng-class="{active:view.is_source}"
ng-click="location.path('source', '')">Input file</div>
</div>
<div>
<div class="navcls" title="{{n.cls}}"
ng-repeat-start="n in nav track by $index"
ng-click="showNav(n.idx)"
ng-class="{expanded:n.idx==nav_idx}">
<span ng-hide="n.idx==nav_idx">&#9658;</span>
<span ng-show="n.idx==nav_idx">&#9660;</span>
{{n.cls}}</div>
<div class="navmet" title="{{m.name}}"
ng-show="n.idx==nav_idx"
ng-class="{active:m.ref==scenario.ref}"
ng-click="location.path(m.ref)"
ng-repeat="m in n.met track by $index"
ng-repeat-end>{{m.name}}</div>
</div>
</div>
<div id="content-main" class="content-main" ng-show="scenarios.length" ng-cloak>
<div ng-show="view.is_main">
<h1>Task overview</h1>
<table class="linked compact"
ng-init="ov_srt='ref'; ov_dir=false">
<thead>
<tr>
<th class="sortable"
title="Scenario name, with optional suffix of call number"
ng-click="ov_srt='ref'; ov_dir=!ov_dir">
Scenario
<span class="arrow">
<b ng-show="ov_srt=='ref' && !ov_dir">&#x25b4;</b>
<b ng-show="ov_srt=='ref' && ov_dir">&#x25be;</b>
</span>
<th class="sortable"
title="How long the scenario run, without context duration"
ng-click="ov_srt='load_duration'; ov_dir=!ov_dir">
Load duration (s)
<span class="arrow">
<b ng-show="ov_srt=='load_duration' && !ov_dir">&#x25b4;</b>
<b ng-show="ov_srt=='load_duration' && ov_dir">&#x25be;</b>
</span>
<th class="sortable"
title="Scenario duration plus context duration"
ng-click="ov_srt='full_duration'; ov_dir=!ov_dir">
Full duration (s)
<span class="arrow">
<b ng-show="ov_srt=='full_duration' && !ov_dir">&#x25b4;</b>
<b ng-show="ov_srt=='full_duration' && ov_dir">&#x25be;</b>
</span>
<th class="sortable" title="Number of iterations"
ng-click="ov_srt='iterations_count'; ov_dir=!ov_dir">
Iterations
<span class="arrow">
<b ng-show="ov_srt=='iterations_count' && !ov_dir">&#x25b4;</b>
<b ng-show="ov_srt=='iterations_count' && ov_dir">&#x25be;</b>
</span>
<th class="sortable" title="Scenario runner type"
ng-click="ov_srt='runner'; ov_dir=!ov_dir">
Runner
<span class="arrow">
<b ng-show="ov_srt=='runner' && !ov_dir">&#x25b4;</b>
<b ng-show="ov_srt=='runner' && ov_dir">&#x25be;</b>
</span>
<th class="sortable" title="Number of errors occurred"
ng-click="ov_srt='errors.length'; ov_dir=!ov_dir">
Errors
<span class="arrow">
<b ng-show="ov_srt=='errors.length' && !ov_dir">&#x25b4;</b>
<b ng-show="ov_srt=='errors.length' && ov_dir">&#x25be;</b>
</span>
<th class="sortable" title="Whether SLA check is successful"
ng-click="ov_srt='sla_success'; ov_dir=!ov_dir">
Success (SLA)
<span class="arrow">
<b ng-show="ov_srt=='sla_success' && !ov_dir">&#x25b4;</b>
<b ng-show="ov_srt=='sla_success' && ov_dir">&#x25be;</b>
</span>
<tr>
</thead>
<tbody>
<tr ng-repeat="sc in scenarios | orderBy:ov_srt:ov_dir"
ng-click="location.path(sc.ref)">
<td>{{sc.ref}}
<td>{{sc.load_duration | number:3}}
<td>{{sc.full_duration | number:3}}
<td>{{sc.iterations_count}}
<td>{{sc.runner}}
<td>{{sc.errors.length}}
<td>
<span ng-show="sc.sla_success" class="status-pass">&#x2714;</span>
<span ng-hide="sc.sla_success" class="status-fail">&#x2716;</span>
<tr>
</tbody>
</table>
</div>
<div ng-show="view.is_source">
<h1>Input file</h1>
<pre class="code">{{source}}</pre>
</div>
<div ng-show="view.is_scenario">
<h1>{{scenario.cls}}.<wbr>{{scenario.name}} ({{scenario.full_duration | number:3}}s)</h1>
<ul class="tabs">
<li ng-repeat="t in tabs"
ng-show="t.isVisible()"
ng-class="{active:t.id == tab}"
ng-click="location.hash(t.id)">
<div>{{t.name}}</div>
</li>
<div class="clearfix"></div>
</ul>
<div ng-include="tab"></div>
<script type="text/ng-template" id="overview">
<p class="thesis">
Load duration: <b>{{scenario.load_duration | number:3}} s</b> &nbsp;
Full duration: <b>{{scenario.full_duration | number:3}} s</b> &nbsp;
Iterations: <b>{{scenario.iterations_count}}</b> &nbsp;
Failures: <b>{{scenario.errors.length}}</b>
</p>
<div ng-show="scenario.sla.length">
<h2>Service-level agreement</h2>
<table class="striped">
<thead>
<tr>
<th>Criterion
<th>Detail
<th>Success
<tr>
</thead>
<tbody>
<tr class="rich"
ng-repeat="row in scenario.sla track by $index"
ng-class="{'status-fail':!row.success, 'status-pass':row.success}">
<td>{{row.criterion}}
<td>{{row.detail}}
<td class="capitalize">{{row.success}}
<tr>
</tbody>
</table>
</div>
<div widget="Table"
data="scenario.table"
lastrow-class="rich"
title="Total durations">
</div>
<div widget="StackedArea"
data="scenario.iterations.iter"
name-x="Iteration sequence number"
controls="true"
guide="true">
</div>
<div widget="StackedArea"
data="scenario.load_profile"
title="Load Profile"
title-class="h3"
name-x="Timeline (seconds)"
format-y="d"
format-x=",.2f"
class="lower">
</div>
<div widget="Pie"
data="scenario.iterations.pie"
title="Distribution"
title-class="h3"
style="float:left; width:40%; margin-top:15px">
</div>
<div widget="Histogram"
ng-if="scenario.iterations.histogram.data.length"
data="scenario.iterations.histogram.data[mainHistogram.id]"
style="float:left; width:59%; margin-top:15px; position:relative; top:40px">
</div>
<select ng-model="mainHistogram"
ng-show="scenario.iterations.histogram.data.length"
ng-options="i.name for i in scenario.iterations.histogram.views track by i.id"
style="float:right; margin:45px 35px 0">
</select>
<div class="clearfix"></div>
</script>
<script type="text/ng-template" id="details">
<div widget="StackedArea"
data="scenario.atomic.iter"
title="Atomic Action Durations"
name-x="Iteration sequence number"
controls="true"
guide="true">
</div>
<div widget="Pie"
data="scenario.atomic.pie"
title="Distribution"
title-class="h3"
style="float:left; margin-top:15px"
ng-style="compact_atomics() ? {width:'40%'} : {}">
</div>
<div widget="Histogram" data="scenario.atomic.histogram.data[atomicHistogram.id]"
ng-if="scenario.atomic.histogram.data.length"
style="float:left; position:relative; top:40px"
ng-style="compact_atomics() ? {width:'59%', 'margin-top':'15px'} : {}">
</div>
<select ng-show="scenario.atomic.histogram.data.length"
ng-model="atomicHistogram"
ng-options="i.name for i in scenario.atomic.histogram.views track by i.id"
style="float:right; margin:45px 35px 0">
</select>
<div class="clearfix"></div>
</script>
<script type="text/ng-template" id="output">
<div style="padding:10px 0 0">
<span class="link"
ng-click="location.hash('output/additive')"
ng-class="{active:scenario.output.active === 'additive'}"
ng-if="scenario.output.has_additive">Aggregated</span>
<span class="link"
ng-click="location.hash('output/complete')"
ng-class="{active:scenario.output.active === 'complete'}"
ng-if="scenario.output.has_complete">Per iteration</span>
</div>
<div ng-repeat="chart in scenario.additive_output"
ng-if="scenario.output.active === 'additive'">
<div widget="{{chart.widget}}"
title="{{chart.title}}"
description="{{chart.description}}"
name-x="{{chart.axis_label}}"
name-y="{{chart.label}}"
data="chart.data">
</div>
</div>
<div ng-if="scenario.output.active === 'complete'" style="padding:10px 0 0">
<select ng-model="outputIteration">
<option ng-repeat="i in scenario.complete_output track by $index"
value="{{$index}}">
Iteration {{$index}}
</select>
<div ng-repeat="chart in scenario.complete_output[outputIteration]">
<div widget="{{chart.widget}}"
title="{{chart.title}}"
description="{{chart.description}}"
name-x="{{chart.axis_label}}"
name-y="{{chart.label}}"
data="chart.data">
</div>
</div>
</div>
</script>
<script type="text/ng-template" id="failures">
<h2>Task failures (<ng-pluralize
count="scenario.errors.length"
when="{'1': '1 iteration', 'other': '{} iterations'}"></ng-pluralize> failed)
</h2>
<table class="striped">
<thead>
<tr>
<th>
<th>Iteration
<th>Exception type
<th>Exception message
</tr>
</thead>
<tbody>
<tr class="expandable"
ng-repeat-start="i in scenario.errors track by $index"
ng-click="i.expanded = ! i.expanded">
<td>
<span ng-hide="i.expanded">&#9658;</span>
<span ng-show="i.expanded">&#9660;</span>
<td>{{i.iteration}}
<td>{{i.type}}
<td class="failure-mesg">{{i.message}}
</tr>
<tr ng-show="i.expanded" ng-repeat-end>
<td colspan="4" class="failure-trace">{{i.traceback}}
</tr>
</tbody>
</table>
</script>
<script type="text/ng-template" id="task">
<h2>Subtask Configuration</h2>
<pre class="code">{{scenario.config}}</pre>
</script>
</div>
</div>
<div class="clearfix"></div>
</div>
<script type="text/javascript">
if (! window.angular) {(function(f){
f(document.getElementById("content-nav"), "none");
f(document.getElementById("content-main"), "none");
f(document.getElementById("page-error"), "block").textContent = "Failed to load AngularJS framework"
})(function(e, s){e.style.display = s; return e})}
</script>
</body>
</html>