blob: f3187886da33d2d406bed9e72b29988816f839de [file] [log] [blame]
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"import logging\n",
"reload(logging)\n",
"logging.basicConfig(\n",
" format='%(asctime)-9s %(levelname)-8s: %(message)s',\n",
" datefmt='%I:%M:%S')\n",
"\n",
"# Enable logging at INFO level\n",
"logging.getLogger().setLevel(logging.INFO)\n",
"# Uncomment the following lines to enabled CGroups verbose logging\n",
"logging.getLogger('cgroups').setLevel(logging.INFO)\n",
"logging.getLogger('cgroups.cpuset').setLevel(logging.INFO)"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"import json\n",
"import operator\n",
"\n",
"import devlib\n",
"import trappy\n",
"import bart\n",
"\n",
"from bart.sched.SchedMultiAssert import SchedMultiAssert\n",
"from wlgen import RTA, Periodic"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Target connection"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"import os\n",
"os.environ['ANDROID_HOME'] = '/ext/android-sdk-linux/'"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false,
"scrolled": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"04:23:46 INFO : Target - Using base path: /home/derkling/Code/lisa\n",
"04:23:46 INFO : Target - Loading custom (inline) target configuration\n",
"04:23:46 INFO : Target - Devlib modules to load: ['bl', 'cpufreq', 'cgroups']\n",
"04:23:46 INFO : Target - Connecting linux target:\n",
"04:23:46 INFO : Target - username : root\n",
"04:23:46 INFO : Target - host : 192.168.0.1\n",
"04:23:46 INFO : Target - password : \n",
"04:23:46 INFO : Target - Connection settings:\n",
"04:23:46 INFO : Target - {'username': 'root', 'host': '192.168.0.1', 'password': ''}\n",
"04:23:50 INFO : Target - Initializing target workdir:\n",
"04:23:50 INFO : Target - /root/devlib-target\n",
"04:24:16 INFO : Target - Topology:\n",
"04:24:16 INFO : Target - [[0, 3, 4, 5], [1, 2]]\n",
"04:24:18 INFO : Platform - Loading default EM:\n",
"04:24:18 INFO : Platform - /home/derkling/Code/lisa/libs/utils/platforms/juno.json\n",
"04:24:19 INFO : FTrace - Enabled tracepoints:\n",
"04:24:19 INFO : FTrace - sched_switch\n",
"04:24:19 WARNING : Target - Using configuration provided RTApp calibration\n",
"04:24:19 INFO : Target - Using RT-App calibration values:\n",
"04:24:19 INFO : Target - {\"0\": 363, \"1\": 138, \"2\": 139, \"3\": 352, \"4\": 353, \"5\": 361}\n",
"04:24:19 INFO : HWMon - HWMON module not enabled\n",
"04:24:19 WARNING : HWMon - Energy sampling disabled by configuration\n",
"04:24:19 INFO : TestEnv - Set results folder to:\n",
"04:24:19 INFO : TestEnv - /home/derkling/Code/lisa/results/20161108_162419\n",
"04:24:19 INFO : TestEnv - Experiment results available also in:\n",
"04:24:19 INFO : TestEnv - /home/derkling/Code/lisa/results_latest\n",
"04:24:19 INFO : Connected to arm64 target\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"DONE\n"
]
}
],
"source": [
"from env import TestEnv\n",
"\n",
"my_conf = {\n",
"\n",
" # JUNO Linux\n",
" \"platform\" : \"linux\",\n",
" \"board\" : \"juno\",\n",
" \"host\" : \"192.168.0.1\",\n",
" \"username\" : \"root\",\n",
" \"password\" : \"\",\n",
" \"exclude_modules\" : [ \"hwmon\" ],\n",
"\n",
"# # JUNO Android\n",
"# \"platform\" : \"android\",\n",
"# \"board\" : \"juno\",\n",
"# \"host\" : \"192.168.0.1\",\n",
"# \"exclude_modules\" : [ \"hwmon\" ],\n",
" \n",
"\n",
" # RT-App calibration values\n",
" \"rtapp-calib\" : {\n",
" '0': 363, '1': 138, '2': 139, '3': 352, '4': 353, '5': 361\n",
" },\n",
"\n",
" # List of additional devlib modules to install \n",
" \"modules\" : ['cgroups', 'bl', 'cpufreq'],\n",
" \n",
" # List of additional binary tools to install\n",
" \"tools\" : ['rt-app', 'trace-cmd'],\n",
" \n",
" # FTrace events to collect\n",
" \"ftrace\" : {\n",
" \"events\" : [\n",
" \"sched_switch\"\n",
" ],\n",
" \"buffsize\" : 10240\n",
" }\n",
"}\n",
"\n",
"te = TestEnv(my_conf, force_new=True)\n",
"target = te.target\n",
"\n",
"# Report target connection\n",
"logging.info('Connected to %s target', target.abi)\n",
"print \"DONE\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## List available Controllers"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": false,
"scrolled": true
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"04:24:19 INFO : CGroup - Available controllers:\n",
"04:24:20 INFO : CGroup - cpuset (hierarchy id: 1) has 4 cgroups\n",
"04:24:20 INFO : CGroup - cpu (hierarchy id: 2) has 2 cgroups\n",
"04:24:20 INFO : CGroup - cpuacct (hierarchy id: 3) has 1 cgroups\n",
"04:24:20 INFO : CGroup - schedtune (hierarchy id: 4) has 1 cgroups\n",
"04:24:20 INFO : CGroup - blkio (hierarchy id: 5) has 1 cgroups\n",
"04:24:20 INFO : CGroup - memory (hierarchy id: 6) has 1 cgroups\n",
"04:24:20 INFO : CGroup - devices (hierarchy id: 7) has 1 cgroups\n",
"04:24:20 INFO : CGroup - perf_event (hierarchy id: 8) has 1 cgroups\n",
"04:24:20 INFO : CGroup - hugetlb (hierarchy id: 9) has 1 cgroups\n",
"04:24:20 INFO : CGroup - pids (hierarchy id: 10) has 1 cgroups\n"
]
}
],
"source": [
"logging.info('%14s - Available controllers:', 'CGroup')\n",
"ssys = target.cgroups.list_subsystems()\n",
"for (n,h,g,e) in ssys:\n",
" logging.info('%14s - %10s (hierarchy id: %d) has %d cgroups',\n",
" 'CGroup', n, h, g)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example of CPUSET controller usage"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"# Get a reference to the CPUSet controller\n",
"cpuset = target.cgroups.controller('cpuset')"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"04:24:20 INFO : Existing CGropups:\n",
"04:24:20 INFO : /\n",
"04:24:20 INFO : /DEVLIB_ISOL\n",
"04:24:20 INFO : /LITTLE\n",
"04:24:20 INFO : /DEVLIB_SBOX\n"
]
}
],
"source": [
"# Get the list of current configured CGroups for that controller\n",
"cgroups = cpuset.list_all()\n",
"logging.info('Existing CGropups:')\n",
"for cg in cgroups:\n",
" logging.info(' %s', cg)"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"04:24:20 INFO : cpuset:/ cpus: 0-5\n",
"04:24:21 INFO : cpuset:/DEVLIB_ISOL cpus: 0\n",
"04:24:22 INFO : cpuset:/LITTLE cpus: 0,3-5\n",
"04:24:23 INFO : cpuset:/DEVLIB_SBOX cpus: 1-5\n"
]
}
],
"source": [
"# Dump the configuraiton of each controller\n",
"for cgname in cgroups:\n",
" #print cgname\n",
" cgroup = cpuset.cgroup(cgname)\n",
" attrs = cgroup.get()\n",
" #print attrs\n",
" cpus = attrs['cpus']\n",
" logging.info('%s:%-15s cpus: %s', cpuset.kind, cgroup.name, cpus)\n",
" "
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"# Create a LITTLE partition\n",
"cpuset_littles = cpuset.cgroup('/LITTLE')"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"LITTLE:\n",
"{\n",
" \"cpu_exclusive\": \"0\", \n",
" \"memory_spread_page\": \"0\", \n",
" \"sched_load_balance\": \"1\", \n",
" \"cpus\": \"0,3-5\", \n",
" \"effective_mems\": \"0\", \n",
" \"mem_hardwall\": \"0\", \n",
" \"mem_exclusive\": \"0\", \n",
" \"memory_pressure\": \"0\", \n",
" \"effective_cpus\": \"0,3-5\", \n",
" \"mems\": \"0\", \n",
" \"sched_relax_domain_level\": \"-1\", \n",
" \"memory_migrate\": \"0\", \n",
" \"memory_spread_slab\": \"0\"\n",
"}\n"
]
}
],
"source": [
"# Check the attributes available for this control group\n",
"print \"LITTLE:\\n\", json.dumps(cpuset_littles.get(), indent=4)"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"LITTLE:\n",
"{\n",
" \"cpu_exclusive\": \"0\", \n",
" \"memory_spread_page\": \"0\", \n",
" \"sched_load_balance\": \"1\", \n",
" \"cpus\": \"0,3-5\", \n",
" \"effective_mems\": \"0\", \n",
" \"mem_hardwall\": \"0\", \n",
" \"mem_exclusive\": \"0\", \n",
" \"memory_pressure\": \"0\", \n",
" \"effective_cpus\": \"0,3-5\", \n",
" \"mems\": \"0\", \n",
" \"sched_relax_domain_level\": \"-1\", \n",
" \"memory_migrate\": \"0\", \n",
" \"memory_spread_slab\": \"0\"\n",
"}\n"
]
}
],
"source": [
"# Tune CPUs and MEMs attributes\n",
"# they must be initialize for the group to be usable\n",
"cpuset_littles.set(cpus=target.bl.littles, mems=0)\n",
"print \"LITTLE:\\n\", json.dumps(cpuset_littles.get(), indent=4)"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"04:24:25 INFO : WlGen - Setup new workload simple\n",
"04:24:25 INFO : RTApp - Workload duration defined by longest task\n",
"04:24:25 INFO : RTApp - Default policy: SCHED_OTHER\n",
"04:24:25 INFO : RTApp - ------------------------\n",
"04:24:25 INFO : RTApp - task [task0], sched: using default policy\n",
"04:24:25 INFO : RTApp - | calibration CPU: 1\n",
"04:24:25 INFO : RTApp - | loops count: 1\n",
"04:24:25 INFO : RTApp - + phase_000001: duration 5.000000 [s] (50 loops)\n",
"04:24:25 INFO : RTApp - | period 100000 [us], duty_cycle 80 %\n",
"04:24:25 INFO : RTApp - | run_time 80000 [us], sleep_time 20000 [us]\n",
"04:24:25 INFO : RTApp - ------------------------\n",
"04:24:25 INFO : RTApp - task [task1], sched: using default policy\n",
"04:24:25 INFO : RTApp - | calibration CPU: 1\n",
"04:24:25 INFO : RTApp - | loops count: 1\n",
"04:24:25 INFO : RTApp - + phase_000001: duration 5.000000 [s] (50 loops)\n",
"04:24:25 INFO : RTApp - | period 100000 [us], duty_cycle 80 %\n",
"04:24:25 INFO : RTApp - | run_time 80000 [us], sleep_time 20000 [us]\n",
"04:24:25 INFO : RTApp - ------------------------\n",
"04:24:25 INFO : RTApp - task [task2], sched: using default policy\n",
"04:24:25 INFO : RTApp - | calibration CPU: 1\n",
"04:24:25 INFO : RTApp - | loops count: 1\n",
"04:24:25 INFO : RTApp - + phase_000001: duration 5.000000 [s] (50 loops)\n",
"04:24:25 INFO : RTApp - | period 100000 [us], duty_cycle 80 %\n",
"04:24:25 INFO : RTApp - | run_time 80000 [us], sleep_time 20000 [us]\n",
"04:24:25 INFO : RTApp - ------------------------\n",
"04:24:25 INFO : RTApp - task [task3], sched: using default policy\n",
"04:24:25 INFO : RTApp - | calibration CPU: 1\n",
"04:24:25 INFO : RTApp - | loops count: 1\n",
"04:24:25 INFO : RTApp - + phase_000001: duration 5.000000 [s] (50 loops)\n",
"04:24:25 INFO : RTApp - | period 100000 [us], duty_cycle 80 %\n",
"04:24:25 INFO : RTApp - | run_time 80000 [us], sleep_time 20000 [us]\n",
"04:24:25 INFO : RTApp - ------------------------\n",
"04:24:25 INFO : RTApp - task [task4], sched: using default policy\n",
"04:24:25 INFO : RTApp - | calibration CPU: 1\n",
"04:24:25 INFO : RTApp - | loops count: 1\n",
"04:24:25 INFO : RTApp - + phase_000001: duration 5.000000 [s] (50 loops)\n",
"04:24:25 INFO : RTApp - | period 100000 [us], duty_cycle 80 %\n",
"04:24:25 INFO : RTApp - | run_time 80000 [us], sleep_time 20000 [us]\n",
"04:24:25 INFO : RTApp - ------------------------\n",
"04:24:25 INFO : RTApp - task [task5], sched: using default policy\n",
"04:24:25 INFO : RTApp - | calibration CPU: 1\n",
"04:24:25 INFO : RTApp - | loops count: 1\n",
"04:24:25 INFO : RTApp - + phase_000001: duration 5.000000 [s] (50 loops)\n",
"04:24:25 INFO : RTApp - | period 100000 [us], duty_cycle 80 %\n",
"04:24:25 INFO : RTApp - | run_time 80000 [us], sleep_time 20000 [us]\n"
]
}
],
"source": [
"# Define a periodic big (80%) task\n",
"task = Periodic(\n",
" period_ms=100,\n",
" duty_cycle_pct=80,\n",
" duration_s=5).get()\n",
"\n",
"# Create one task per each CPU in the target\n",
"tasks={}\n",
"for tid in enumerate(target.core_names):\n",
" tasks['task{}'.format(tid[0])] = task\n",
"\n",
"# Configure RTA to run all these tasks\n",
"rtapp = RTA(target, 'simple', calibration=te.calibration())\n",
"rtapp.conf(kind='profile', params=tasks, run_dir=target.working_directory);"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"04:24:30 INFO : WlGen - Workload execution START:\n",
"04:24:30 INFO : WlGen - /root/devlib-target/bin/shutils cgroups_run_into /LITTLE /root/devlib-target/bin/rt-app /root/devlib-target/simple_00.json 2>&1\n",
"04:24:46 INFO : WlGen - Pulling trace file into [/home/derkling/Code/lisa/results/20161108_162419/simple_00.dat]...\n"
]
}
],
"source": [
"# Test execution of all these tasks into the LITTLE cluster\n",
"trace = rtapp.run(ftrace=te.ftrace, cgroup=cpuset_littles.name, out_dir=te.res_dir)"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"collapsed": false,
"scrolled": false
},
"outputs": [
{
"data": {
"text/html": [
"<style>\n",
"/*\n",
" * Copyright 2015-2016 ARM Limited\n",
" *\n",
" * Licensed under the Apache License, Version 2.0 (the \"License\");\n",
" * you may not use this file except in compliance with the License.\n",
" * You may obtain a copy of the License at\n",
" *\n",
" * http://www.apache.org/licenses/LICENSE-2.0\n",
" *\n",
" * Unless required by applicable law or agreed to in writing, software\n",
" * distributed under the License is distributed on an \"AS IS\" BASIS,\n",
" * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n",
" * See the License for the specific language governing permissions and\n",
" * limitations under the License.\n",
" */\n",
"\n",
".d3-tip {\n",
" line-height: 1;\n",
" padding: 12px;\n",
" background: rgba(0, 0, 0, 0.6);\n",
" color: #fff;\n",
" border-radius: 2px;\n",
" position: absolute !important;\n",
" z-index: 99999;\n",
"}\n",
"\n",
".d3-tip:after {\n",
" box-sizing: border-box;\n",
" pointer-events: none;\n",
" display: inline;\n",
" font-size: 10px;\n",
" width: 100%;\n",
" line-height: 1;\n",
" color: rgba(0, 0, 0, 0.6);\n",
" content: \"\\25BC\";\n",
" position: absolute !important;\n",
" z-index: 99999;\n",
" text-align: center;\n",
"}\n",
"\n",
".d3-tip.n:after {\n",
" margin: -1px 0 0 0;\n",
" top: 100%;\n",
" left: 0;\n",
"}\n",
"\n",
".contextRect {\n",
" fill: lightgray;\n",
" fill-opacity: 0.5;\n",
" stroke: black;\n",
" stroke-width: 1;\n",
" stroke-opacity: 1;\n",
" pointer-events: none;\n",
" shape-rendering: crispEdges;\n",
"}\n",
"\n",
".chart {\n",
" shape-rendering: crispEdges;\n",
"}\n",
"\n",
".mini text {\n",
" font: 9px sans-serif;\n",
"}\n",
"\n",
".main text {\n",
" font: 12px sans-serif;\n",
"}\n",
"\n",
".axis line, .axis path {\n",
" stroke: black;\n",
"}\n",
"\n",
".miniItem {\n",
" stroke-width: 8;\n",
"}\n",
"\n",
".brush .extent {\n",
"\n",
" stroke: #000;\n",
" fill-opacity: .125;\n",
" shape-rendering: crispEdges;\n",
"}\n",
"</style>\n",
"<div id=\"fig_03b35f1d68ad445b845a10c17a867590\" class=\"eventplot\">\n",
"<!-- TRAPPY_PUBLISH_SOURCE_LIB = \"https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js\" -->\n",
"<!-- TRAPPY_PUBLISH_SOURCE_LIB = \"http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js\" -->\n",
"\n",
" <script>\n",
" /* TRAPPY_PUBLISH_IMPORT = \"plotter/js/EventPlot.js\" */\n",
" /* TRAPPY_PUBLISH_REMOVE_START */\n",
" var req = require.config( {\n",
"\n",
" paths: {\n",
"\n",
" \"EventPlot\": '/nbextensions/plotter_scripts/EventPlot/EventPlot',\n",
" \"d3-tip\": '/nbextensions/plotter_scripts/EventPlot/d3.tip.v0.6.3',\n",
" \"d3-plotter\": '/nbextensions/plotter_scripts/EventPlot/d3.min'\n",
" },\n",
" waitSeconds: 15,\n",
" shim: {\n",
" \"d3-plotter\" : {\n",
" \"exports\" : \"d3\"\n",
" },\n",
" \"d3-tip\": [\"d3-plotter\"],\n",
" \"EventPlot\": {\n",
"\n",
" \"deps\": [\"d3-tip\", \"d3-plotter\" ],\n",
" \"exports\": \"EventPlot\"\n",
" }\n",
" }\n",
" });\n",
" /* TRAPPY_PUBLISH_REMOVE_STOP */\n",
" \n",
" req([\"require\", \"EventPlot\"], function() { /* TRAPPY_PUBLISH_REMOVE_LINE */\n",
" EventPlot.generate('fig_03b35f1d68ad445b845a10c17a867590', '/nbextensions/', {\"lanes\": [{\"id\": 0, \"label\": \"CPU :0\"}, {\"id\": 1, \"label\": \"CPU :1\"}, {\"id\": 2, \"label\": \"CPU :2\"}, {\"id\": 3, \"label\": \"CPU :3\"}, {\"id\": 4, \"label\": \"CPU :4\"}, {\"id\": 5, \"label\": \"CPU :5\"}], \"colorMap\": null, \"keys\": [\"task4-2262\", \"task5-2263\", \"task2-2260\", \"task3-2261\", \"task0-2258\", \"task1-2259\", \"sh-2273\", \"sh-2252\", \"shutils-2253\", \"sh-2275\", \"sh-2277\", \"sudo-2273\", \"sudo-2278\", \"50default-2267\", \"shutils-2255\", \"shutils-2274\", \"sudo-2272\", \"run-parts-2265\", \"udhcpc-2264\", \"sh-2272\", \"sh-2276\", \"shutils-2254\", \"shutils-2252\", \"50default-2270\", \"default.script-2264\", \"50default-2266\", \"shutils-2256\", \"50default-2269\", \"50default-2265\", \"sudo-2276\", \"50default-2268\", \"50default-2271\", \"sudo-2249\", \"shutils-2257\", \"shutils-2273\", \"sudo-2275\", \"rt-app-2252\", \"udhcpc-1375\", \"busybox-2256\", \"grep-2268\", \"sh-2067\", \"sshd-2064\", \"run-parts-2264\", \"sshd-1737\", \"syslogd-1412\", \"rt-app-2263\", \"jbd2/sda2-8-1197\", \"sshd-1438\", \"rpcbind-1391\", \"init-1\", \"ksoftirqd/3-29\", \"rt-app-2262\", \"khugepaged-407\", \"rt-app-2260\", \"ksoftirqd/4-35\", \"ksoftirqd/1-17\", \"kworker/4:1-777\", \"ksoftirqd/5-41\", \"usb-storage-1169\", \"sudo-2277\", \"khungtaskd-401\", \"kworker/3:1-448\", \"kworker/2:1-1008\", \"ksoftirqd/2-23\", \"kworker/5:1-1007\", \"kworker/0:1-562\", \"rt-app-2258\", \"rcu_preempt-7\", \"kworker/u12:0-2003\", \"rcu_sched-8\", \"kworker/u12:2-2112\", \"kworker/1:1-1006\", \"kworker/2:1H-1200\", \"rt-app-2259\", \"kworker/u12:1-46\", \"watchdog/1-15\", \"watchdog/2-21\", \"watchdog/0-12\", \"kworker/5:1H-1251\", \"rt-app-2261\", \"sed-2267\", \"watchdog/3-27\", \"watchdog/4-33\", \"watchdog/5-39\", \"kworker/1:1H-1201\"], \"stride\": false, \"showSummary\": true, \"xDomain\": [0.0012590000001182489, 16.392704000000094], \"data\": {\"sshd-1737\": {\"1\": [[12.113659000000098, 12.113773000000037], [12.123473000000104, 12.123545000000149]]}, \"watchdog/4-33\": {\"4\": [[0.53882900000007794, 0.53883900000005269], [4.538827000000083, 4.5388350000000628], [8.5388259999999718, 8.5388330000000678], [12.538825999999972, 12.538834000000179]]}, \"shutils-2273\": {\"4\": [[15.755538999999999, 15.755563000000166], [15.755583999999999, 15.755595000000085], [15.755636999999979, 15.755647000000181], [15.755689999999959, 15.75569900000005], [15.755742000000055, 15.75575200000003], [15.756013000000166, 15.757655000000113]]}, \"shutils-2274\": {\"2\": [[15.75308700000005, 15.754136000000017]], \"5\": [[15.754221000000143, 15.756035999999995]]}, \"ksoftirqd/5-41\": {\"5\": [[15.291098000000147, 15.291149000000132], [15.291159999999991, 15.291175000000067]]}, \"udhcpc-1375\": {\"1\": [[12.89680199999998, 12.896817000000055]], \"2\": [[12.914078000000018, 12.914134000000104]], \"3\": [[12.894830000000184, 12.895144000000073], [12.896089000000075, 12.896433000000115]]}, \"sshd-1438\": {\"2\": [[10.845988000000034, 10.84608900000012], [10.848085000000083, 10.848130000000083]]}, \"rcu_preempt-7\": {\"2\": [[15.286832000000004, 15.286841000000095], [15.294904999999972, 15.294919000000164], [15.30290500000001, 15.302920000000086], [15.311004000000139, 15.311018999999987], [15.31890999999996, 15.318921000000046], [15.731058000000075, 15.731077000000141], [15.738847999999962, 15.738863000000038], [15.742977999999994, 15.742991000000075], [15.754835000000185, 15.754849000000149], [15.7588760000001, 15.75889200000006], [15.767004000000043, 15.767021999999997], [15.775065000000041, 15.775075000000015], [16.382913000000144, 16.382925000000114], [16.390839000000142, 16.39085]], \"3\": [[0.41484300000001895, 0.41485800000009476], [0.42300100000011298, 0.42303100000003724], [0.43093999999996413, 0.43097000000011576], [0.44304600000009486, 0.44306900000015048], [0.4509170000001177, 0.4509410000000571], [9.0108280000001741, 9.0108430000000226], [9.6028290000001562, 9.6028440000000046], [9.6108260000000882, 9.6108410000001641], [9.6188260000001264, 9.618844000000081], [9.6268250000000535, 9.6268420000001242], [9.6788280000000668, 9.6788430000001426], [9.6868249999999989, 9.6868400000000747], [9.6908270000001266, 9.6908450000000812], [9.6988260000000537, 9.6988440000000082], [10.434829000000036, 10.434844000000112], [10.442825999999968, 10.442841000000044], [10.446828000000096, 10.44684600000005], [10.454826000000139, 10.454840000000104], [10.458827000000156, 10.45884500000011], [10.470827000000099, 10.470841000000064], [10.474827000000005, 10.474840000000086], [10.678829000000178, 10.678843000000143], [10.68682600000011, 10.686840999999959], [12.898834999999963, 12.898850000000039], [12.906828000000132, 12.906846999999971], [12.914827000000059, 12.914846000000125], [12.922825999999986, 12.922840000000178], [12.930825000000141, 12.930843000000095], [12.938825000000179, 12.938839000000144], [12.942827000000079, 12.942845000000034], [12.950825000000123, 12.950843000000077], [12.958825000000161, 12.958842000000004], [13.398828000000094, 13.398842000000059], [13.406826000000137, 13.406842000000097], [13.410827000000154, 13.410845000000108], [13.418826000000081, 13.418840000000046], [14.134842000000162, 14.134856000000127], [14.142920000000004, 14.142935999999963], [14.146908000000167, 14.146928000000116], [14.154907000000094, 14.154923000000053], [14.162921000000097, 14.162938000000167], [14.166926000000103, 14.166941000000179], [14.174920000000157, 14.174942999999985], [14.182913000000099, 14.182928000000175], [14.190912000000026, 14.190929000000096], [15.775094999999965, 15.775119000000132], [15.783030000000053, 15.783047000000124], [16.175114000000121, 16.175130999999965], [16.182915000000094, 16.182938000000149], [16.190915000000132, 16.190937000000076], [16.198916000000054, 16.198939000000109], [16.207033000000138, 16.207055000000082], [16.214915000000019, 16.214938000000075], [16.222915000000057, 16.222933000000012]], \"4\": [[1.0268300000000181, 1.0268490000000838], [1.0348280000000614, 1.0348430000001372], [1.038827000000083, 1.0388400000001639], [1.666829000000007, 1.6668440000000828], [1.6748280000001614, 1.6748500000001059], [1.6828279999999722, 1.6828420000001643], [1.6908290000001216, 1.6908419999999751], [2.666829000000007, 2.6668429999999717], [2.6748280000001614, 2.6748430000000099], [2.678827000000183, 2.6788440000000264], [2.686828000000105, 2.6868420000000697], [2.6908260000000155, 2.6908390000000963], [3.666829000000007, 3.6668449999999666], [3.6748280000001614, 3.6748430000000099], [3.6828270000000884, 3.682845000000043], [3.6908270000001266, 3.6908410000000913], [3.6948260000001483, 3.6948390000000018], [4.666829000000007, 4.6668440000000828], [4.674837000000025, 4.6748589999999695], [4.6828270000000884, 4.6828410000000531], [4.686828000000105, 4.6868409999999585], [5.6828290000000834, 5.6828430000000481], [5.6908280000000104, 5.6908419999999751], [5.6988370000001396, 5.6988550000000942], [5.7068269999999757, 5.7068420000000515], [5.7108270000001085, 5.7108399999999619], [6.6468310000000201, 6.6468449999999848], [6.6548280000001796, 6.6548500000001241], [6.6628279999999904, 6.6628420000001825], [7.1268290000000434, 7.126843000000008], [7.678829000000178, 7.6788430000001426], [7.686828000000105, 7.6868420000000697], [7.6908280000000104, 7.6908450000000812], [7.6988280000000486, 7.6988420000000133], [7.7028259999999591, 7.7028380000001562], [8.678829000000178, 8.6788430000001426], [8.686828000000105, 8.6868430000001808], [8.6908270000001266, 8.6908450000000812], [8.6988270000001648, 8.6988420000000133], [8.7068269999999757, 8.7068400000000565], [8.9908290000000761, 8.990842000000157], [8.9988280000000032, 8.9988490000000638], [9.0068280000000414, 9.006842000000006], [10.690845000000081, 10.690864000000147], [10.698828000000049, 10.698845000000119], [11.678830000000062, 11.678844000000026], [11.686828000000105, 11.686843000000181], [11.694827000000032, 11.694844999999987], [11.70282700000007, 11.702844000000141], [12.678829000000178, 12.678843000000143], [12.686826999999994, 12.68684200000007], [12.690827000000127, 12.690845000000081], [12.698827000000165, 12.698842000000013], [12.702825999999959, 12.70283900000004], [13.422829999999976, 13.422844000000168], [13.482844999999998, 13.482860000000073], [13.490829000000076, 13.490850000000137], [13.498828000000003, 13.498841999999968], [13.502836000000116, 13.502848999999969], [13.58682900000008, 13.586844000000156], [13.594828000000007, 13.594841999999971], [13.598826000000145, 13.598844000000099], [13.606827000000067, 13.606841000000031], [13.974844999999959, 13.974868000000015], [13.982831000000033, 13.982846000000109]], \"5\": [[0.0029680000000098516, 0.0029900000001816807], [0.011083999999982552, 0.01110700000003817], [0.019081000000142012, 0.019103000000086467], [0.027080000000069049, 0.027103000000124666], [0.035051000000066779, 0.035074000000122396], [0.042916000000104759, 0.042934000000059314], [0.4588370000001305, 0.45886400000017602], [0.4668370000001687, 0.46685200000001714], [0.47084800000016003, 0.47086500000000342], [0.48282900000003792, 0.48284699999999248], [0.49082599999997001, 0.49084800000014184], [0.49882700000011937, 0.49884100000008402], [0.50282800000013594, 0.50284099999998944], [0.666829000000007, 0.66684400000008281], [0.67482600000016646, 0.67484000000013111], [0.67882600000007187, 0.67884400000002643], [0.68682499999999891, 0.68684200000006967], [1.0148280000000796, 1.0148420000000442], [1.0228260000001228, 1.0228400000000875], [6.6708290000001398, 6.6708430000001044], [6.6788280000000668, 6.6788420000000315], [6.6868260000001101, 6.6868400000000747], [6.6948250000000371, 6.6948429999999917], [6.7028250000000753, 6.7028410000000349], [7.1068300000001727, 7.1068440000001374], [7.1148259999999937, 7.1148480000001655], [7.1228260000000319, 7.1228399999999965], [13.610843000000159, 13.610857000000124], [13.666828000000123, 13.666842999999972], [13.674826000000166, 13.674848000000111], [13.682825000000093, 13.682846000000154], [13.694826000000148, 13.694846999999982], [13.706826000000092, 13.706843000000163], [13.986829000000171, 13.986848000000009], [13.994834999999966, 13.994852000000037], [14.202840000000151, 14.202854000000116], [14.210915000000114, 14.210931000000073], [14.218913000000157, 14.218935999999985], [14.226914000000079, 14.226929000000155], [14.234916999999996, 14.234935000000178], [14.654907999999978, 14.654923000000053], [14.662910000000011, 14.662934000000178], [14.670909000000165, 14.670933000000105], [14.678910000000087, 14.678932000000032], [14.686909000000014, 14.686926999999969], [15.166911000000027, 15.166926000000103], [15.202938000000131, 15.202960000000076], [15.210908000000018, 15.210925999999972], [15.783063000000084, 15.783083000000033], [15.791012000000137, 15.791034999999965], [15.798909999999978, 15.798935000000029], [15.806908000000021, 15.806925999999976], [16.166926000000103, 16.166966000000002]]}, \"sudo-2278\": {\"3\": [[16.388687000000118, 16.389335000000074]], \"4\": [[16.389433000000054, 16.392610000000104]]}, \"watchdog/0-12\": {\"0\": [[0.4229530000000068, 0.42297400000006746], [4.4228299999999763, 4.4228410000000622], [8.4228279999999813, 8.4228359999999611], [12.422829000000092, 12.422837000000072]]}, \"sudo-2272\": {\"2\": [[15.738863000000038, 15.741322999999966]], \"3\": [[15.74265800000012, 15.74269900000013], [15.757724000000053, 15.758996000000025]]}, \"sudo-2273\": {\"3\": [[15.741196000000173, 15.741905999999972]], \"5\": [[15.741929000000027, 15.745161000000053]]}, \"sudo-2275\": {\"2\": [[16.174597000000176, 16.174613000000136], [16.176415000000134, 16.177065000000084]]}, \"sudo-2276\": {\"1\": [[16.174239000000171, 16.17486800000006]], \"4\": [[16.173496999999998, 16.174218999999994]]}, \"sudo-2277\": {\"5\": [[16.39018800000008, 16.390229999999974]]}, \"busybox-2256\": {\"2\": [[0.43341600000007929, 0.43370000000004438]]}, \"sh-2067\": {\"1\": [[0.15666200000009667, 0.1567410000000109], [0.20681899999999587, 0.20698900000002141], [0.20710000000008222, 0.20719600000006722], [0.36233100000004015, 0.36248599999998987], [0.36259900000004563, 0.36270899999999529], [0.36271299999998519, 0.36273000000005595], [0.36273700000015197, 0.36275399999999536], [0.36276100000009137, 0.36277700000005098], [0.36278300000003583, 0.36280000000010659], [0.36280499999998028, 0.3628479999999854], [0.36286400000017238, 0.36288100000001577], [0.36288700000000063, 0.36290400000007139], [0.36290900000017245, 0.36292600000001585], [0.3629439999999704, 0.36296100000004117], [0.36296700000002602, 0.36298400000009678], [0.36300100000016755, 0.36301800000001094], [0.36302300000011201, 0.36304000000018277], [0.36305600000014238, 0.36307299999998577], [0.36307899999997062, 0.36309600000004139], [0.36310200000002624, 0.36311799999998584], [0.36313200000017787, 0.36314900000002126], [0.36315500000000611, 0.36317200000007688], [0.36318800000003648, 0.36320599999999104], [0.36321199999997589, 0.36322900000004665], [0.36323800000013762, 0.36325600000009217], [0.36326200000007702, 0.36327900000014779], [0.36329000000000633, 0.36330799999996088], [0.36331400000017311, 0.3633310000000165], [0.3633429999999862, 0.36336100000016813], [0.36336600000004182, 0.36338399999999638], [0.36339500000008229, 0.36341300000003685], [0.36341800000013791, 0.36343600000009246], [0.36344700000017838, 0.36346500000013293], [0.36347000000000662, 0.36348799999996118], [0.36349900000004709, 0.36351700000000164], [0.36352200000010271, 0.36354000000005726], [0.36355000000003201, 0.36356900000009773], [0.36357500000008258, 0.36359300000003714], [0.36360300000001189, 0.36362099999996644], [0.36362700000017867, 0.36364500000013322], [0.36365500000010798, 0.36367300000006253], [0.36367900000004738, 0.36369700000000194], [0.363702000000103, 0.36372100000016871], [0.36372700000015357, 0.36374500000010812], [0.36375500000008287, 0.36377300000003743], [0.36377900000002228, 0.36379699999997683], [0.36380700000017896, 0.3638260000000173], [0.36383100000011837, 0.36384900000007292], [0.36385900000004767, 0.36387800000011339], [0.36388400000009824, 0.36390200000005279], [0.36391100000014376, 0.3639299999999821], [0.36393599999996695, 0.36395500000003267], [0.36396400000012363, 0.36398299999996198], [0.36398800000006304, 0.36400700000012876], [0.36401599999999235, 0.36403600000016922], [0.36404100000004291, 0.36406000000010863], [0.36407000000008338, 0.3640890000001491], [0.36409400000002279, 0.3641130000000885], [0.36412200000017947, 0.36414100000001781], [0.36414700000000266, 0.36416600000006838], [0.36417600000004313, 0.36419500000010885], [0.36419999999998254, 0.36421900000004825], [0.36422900000002301, 0.36424800000008872], [0.36425400000007357, 0.36427300000013929], [0.36428300000011404, 0.36430200000017976], [0.36430700000005345, 0.36432700000000295], [0.36433200000010402, 0.36435100000016973], [0.36436100000014449, 0.36438100000009399], [0.36439700000005359, 0.3644170000000031], [0.36443099999996775, 0.36445000000003347], [0.36446399999999812, 0.364484000000175], [0.36449800000013965, 0.364516999999978], [0.36453000000005886, 0.36455000000000837], [0.36455500000010943, 0.36457500000005894], [0.3645840000001499, 0.3646040000000994], [0.36461000000008426, 0.36462900000014997], [0.36463900000012472, 0.36465900000007423], [0.36466400000017529, 0.3646840000001248], [0.36469400000009955, 0.36471400000004905], [0.36472000000003391, 0.36473900000009962], [0.36474500000008447, 0.36476400000015019], [0.36477400000012494, 0.36485100000004422], [0.36485500000003412, 0.36487499999998363], [0.36488600000006954, 0.36490600000001905], [0.3649120000000039, 0.36493200000018078], [0.36494200000015553, 0.36496200000010504], [0.36497700000018085, 0.36499800000001414], [0.36500900000010006, 0.36502900000004956], [0.36503500000003442, 0.36505600000009508], [0.36506499999995867, 0.36508600000001934], [0.36510100000009515, 0.36512200000015582], [0.36513200000013057, 0.36515299999996387], [0.36515800000006493, 0.3651790000001256], [0.36518500000011045, 0.36520500000005995], [0.36521400000015092, 0.36523499999998421], [0.36524099999996906, 0.36526200000002973], [0.36526700000013079, 0.3652870000000803], [0.36529800000016621, 0.36531899999999951], [0.36533299999996416, 0.36535400000002483], [0.36536399999999958, 0.36538500000006024], [0.3653910000000451, 0.36541200000010576], [0.36541699999997945, 0.36543800000004012], [0.36544700000013108, 0.36546900000007554], [0.36548100000004524, 0.36550200000010591], [0.36551700000018172, 0.36553800000001502], [0.36554799999998977, 0.3655620000001818], [15.684844999999996, 15.685838999999987], [15.735288000000082, 15.735994000000119], [15.759093000000121, 15.759277000000111], [15.912710000000061, 15.912821000000122], [15.962772000000086, 15.963040999999976], [16.117823000000044, 16.118899000000056], [16.167202999999972, 16.16791400000011], [16.177063999999973, 16.177245000000084], [16.332219000000123, 16.332783000000063], [16.382626000000073, 16.383119000000079]], \"2\": [[0.0021090000000185682, 0.0022860000001401204], [0.41239200000018172, 0.41253400000005058], [0.41264100000012149, 0.41318799999999101], [15.286293999999998, 15.286487000000079], [15.477726000000075, 15.477847000000111], [15.528156999999965, 15.528431000000182]]}, \"watchdog/1-15\": {\"1\": [[0.45483100000001286, 0.45483699999999772], [4.4549110000000383, 4.4549289999999928], [8.4549110000000383, 8.4549190000000181], [12.454909000000043, 12.454926999999998]]}, \"usb-storage-1169\": {\"1\": [[1.2510839999999916, 1.2511030000000574], [1.2514430000001084, 1.2514710000000377], [1.2518090000000939, 1.2518300000001545], [1.25286600000004, 1.2528839999999946], [1.2529360000000906, 1.25296400000002], [1.2532000000001062, 1.2532519999999749], [1.2557550000001356, 1.2557759999999689], [1.2568660000001728, 1.2568860000001223], [1.2572460000001229, 1.2572680000000673], [1.2576050000000123, 1.257633000000169], [1.2583660000000236, 1.2583859999999731], [1.2592730000001211, 1.2592910000000757], [14.307101999999986, 14.307121000000052], [14.307226000000128, 14.307249000000184], [14.307596999999987, 14.307608000000073], [14.308342000000039, 14.308352000000014], [14.308397000000014, 14.308406000000105], [14.308467000000064, 14.308481000000029], [14.30896800000005, 14.308977000000141], [14.309966000000031, 14.309973000000127]], \"3\": [[15.285873000000038, 15.285898000000088], [15.286153000000013, 15.286189000000149], [15.28668000000016, 15.286698999999999], [15.28740300000004, 15.287420999999995]], \"4\": [[15.287467000000106, 15.287491000000045], [15.287710000000061, 15.287741000000096], [15.288084000000026, 15.288097000000107], [15.288829999999962, 15.288845000000038]], \"5\": [[15.288946000000124, 15.288962000000083], [15.289081000000124, 15.289151000000174], [15.290222000000085, 15.29023600000005], [15.29108199999996, 15.291098000000147]]}, \"rpcbind-1391\": {\"2\": [[6.0353480000001127, 6.0354220000001533]]}, \"rt-app-2260\": {\"4\": [[0.45557200000007469, 0.45562900000004447]]}, \"rt-app-2261\": {\"3\": [[0.45566600000006474, 0.45568000000002939]]}, \"rt-app-2262\": {\"3\": [[0.45578500000010536, 0.45585000000005493]]}, \"rt-app-2263\": {\"3\": [[0.45589900000004491, 0.45599900000001981]]}, \"ksoftirqd/1-17\": {\"1\": [[0.4510250000000724, 0.45103600000015831], [1.2528839999999946, 1.2529360000000906], [1.2568860000001223, 1.2569310000001224], [1.2569390000001022, 1.2569550000000618], [1.2592910000000757, 1.2593320000000858], [1.2593400000000656, 1.2593550000001414], [14.308352000000014, 14.308387000000039], [14.309973000000127, 14.309989000000087], [14.309993999999961, 14.310003000000052]]}, \"kworker/u12:0-2003\": {\"1\": [[0.36259400000017195, 0.36259900000004563], [15.28655300000014, 15.286569999999983], [15.477491999999984, 15.477505000000065], [15.477866000000176, 15.477886000000126], [15.527916000000005, 15.527950000000146], [15.52828599999998, 15.528311000000031], [15.528393000000051, 15.528405000000021], [15.528414000000112, 15.528420000000096]], \"2\": [[0.36269600000014179, 0.36271299999998519], [0.36299400000007154, 0.36300000000005639], [0.36318100000016784, 0.36318700000015269], [0.36438999999995758, 0.36439600000016981], [0.36442400000009911, 0.36443000000008396], [0.36445800000001327, 0.36446300000011433], [0.36449100000004364, 0.36449700000002849], [0.36477400000012494, 0.36477800000011484], [0.36480500000016036, 0.36481500000013511], [0.36484200000018063, 0.36485300000003917], [0.36497099999996863, 0.36497600000006969], [0.36509399999999914, 0.36509999999998399], [0.36532600000009552, 0.36533200000008037], [0.3655109999999695, 0.36551600000007056], [15.684604000000036, 15.684639000000061], [15.684987000000092, 15.685026999999991], [15.685095000000047, 15.685109000000011], [15.685196000000133, 15.685208000000102], [15.685238000000027, 15.685249999999996], [15.685277000000042, 15.685289000000012], [15.685316000000057, 15.685325000000148], [15.685353999999961, 15.685365000000047], [15.685390999999981, 15.685401000000184], [15.685427000000118, 15.685437999999976], [15.685465000000022, 15.685474999999997], [15.685502000000042, 15.685511000000133], [15.685538000000179, 15.685550000000148], [15.685578000000078, 15.685588000000052], [15.685603000000128, 15.685633000000053], [15.685688000000027, 15.685705999999982], [15.685793999999987, 15.685801999999967], [15.685809000000063, 15.685812000000169], [15.685840999999982, 15.685856000000058], [15.735182000000123, 15.735215000000153], [15.735398000000032, 15.735425999999961], [15.759340000000066, 15.759357000000136], [15.91249300000004, 15.91252099999997], [15.912843000000066, 15.912862000000132], [15.962556000000177, 15.962584000000106], [15.962896000000001, 15.962930000000142], [15.962999999999965, 15.963011000000051], [15.963071000000127, 15.963085999999976], [16.117607000000135, 16.117635000000064], [16.117953000000171, 16.117991999999958], [16.118130000000065, 16.118143000000146], [16.118183000000045, 16.118191000000024]], \"3\": [[14.131994000000077, 14.132012000000032], [14.20005900000001, 14.200080000000071], [14.653015000000096, 14.653038000000151], [15.285045999999966, 15.285068000000138]], \"4\": [[0.45584000000008018, 0.4558510000001661], [0.45594500000015614, 0.45596199999999953], [0.4588370000001305, 0.45885999999995875], [0.46289000000001579, 0.46290900000008151], [0.46684700000014345, 0.46686399999998685], [0.47484600000007049, 0.47486400000002504], [3.5548300000000381, 3.5548620000001847], [8.6748290000000452, 8.6748509999999897]], \"5\": [[13.482351999999992, 13.482375000000047], [13.794829000000163, 13.794851999999992], [13.972433000000137, 13.972453000000087]]}, \"sed-2267\": {\"1\": [[12.907774000000018, 12.907787999999982]]}, \"sh-2278\": {\"1\": [[16.392704000000094, 16.392704000000094]]}, \"shutils-2252\": {\"0\": [[0.45219300000007934, 0.45490000000017972]], \"4\": [[0.42829300000016701, 0.428382000000056], [0.4296550000001389, 0.43096700000000965], [0.43353300000012496, 0.43360200000006444], [0.43370500000014545, 0.43375900000000911], [0.45186699999999291, 0.45210100000008424]]}, \"kworker/u12:1-46\": {\"1\": [[0.0022770000000491564, 0.0022930000000087603], [0.36270899999999529, 0.36271299999998519], [0.36273000000005595, 0.36273700000015197], [0.36275399999999536, 0.36276100000009137], [0.36277700000005098, 0.36278300000003583], [0.36280000000010659, 0.36280499999998028], [0.3628479999999854, 0.36286400000017238], [0.36288100000001577, 0.36288700000000063], [0.36290400000007139, 0.36290900000017245], [0.36292600000001585, 0.3629439999999704], [0.36296100000004117, 0.36296700000002602], [0.36298400000009678, 0.36300100000016755], [0.36301800000001094, 0.36302300000011201], [0.36304000000018277, 0.36305600000014238], [0.36307299999998577, 0.36307899999997062], [0.36309600000004139, 0.36310200000002624], [0.36311799999998584, 0.36313200000017787], [0.36314900000002126, 0.36315500000000611], [0.36317200000007688, 0.36318800000003648], [0.36320599999999104, 0.36321199999997589], [0.36322900000004665, 0.36323800000013762], [0.36325600000009217, 0.36326200000007702], [0.36327900000014779, 0.36329000000000633], [0.36330799999996088, 0.36331400000017311], [0.3633310000000165, 0.3633429999999862], [0.36336100000016813, 0.36336600000004182], [0.36338399999999638, 0.36339500000008229], [0.36341300000003685, 0.36341800000013791], [0.36343600000009246, 0.36344700000017838], [0.36346500000013293, 0.36347000000000662], [0.36348799999996118, 0.36349900000004709], [0.36351700000000164, 0.36352200000010271], [0.36354000000005726, 0.36355000000003201], [0.36356900000009773, 0.36357500000008258], [0.36359300000003714, 0.36360300000001189], [0.36362099999996644, 0.36362700000017867], [0.36364500000013322, 0.36365500000010798], [0.36367300000006253, 0.36367900000004738], [0.36369700000000194, 0.363702000000103], [0.36372100000016871, 0.36372700000015357], [0.36374500000010812, 0.36375500000008287], [0.36377300000003743, 0.36377900000002228], [0.36379699999997683, 0.36380700000017896], [0.3638260000000173, 0.36383100000011837], [0.36384900000007292, 0.36385900000004767], [0.36387800000011339, 0.36388400000009824], [0.36390200000005279, 0.36391100000014376], [0.3639299999999821, 0.36393599999996695], [0.36395500000003267, 0.36396400000012363], [0.36398299999996198, 0.36398800000006304], [0.36400700000012876, 0.36401599999999235], [0.36403600000016922, 0.36404100000004291], [0.36406000000010863, 0.36407000000008338], [0.3640890000001491, 0.36409400000002279], [0.3641130000000885, 0.36412200000017947], [0.36414100000001781, 0.36414700000000266], [0.36416600000006838, 0.36417600000004313], [0.36419500000010885, 0.36419999999998254], [0.36421900000004825, 0.36422900000002301], [0.36424800000008872, 0.36425400000007357], [0.36427300000013929, 0.36428300000011404], [0.36430200000017976, 0.36430700000005345], [0.36432700000000295, 0.36433200000010402], [0.36435100000016973, 0.36436100000014449], [0.36438100000009399, 0.36439700000005359], [0.3644170000000031, 0.36443099999996775], [0.36445000000003347, 0.36446399999999812], [0.364484000000175, 0.36449800000013965], [0.364516999999978, 0.36453000000005886], [0.36455000000000837, 0.36455500000010943], [0.36457500000005894, 0.3645840000001499], [0.3646040000000994, 0.36461000000008426], [0.36462900000014997, 0.36463900000012472], [0.36465900000007423, 0.36466400000017529], [0.3646840000001248, 0.36469400000009955], [0.36471400000004905, 0.36472000000003391], [0.36473900000009962, 0.36474500000008447], [0.36476400000015019, 0.36477400000012494], [0.36485100000004422, 0.36485500000003412], [0.36487499999998363, 0.36488600000006954], [0.36490600000001905, 0.3649120000000039], [0.36493200000018078, 0.36494200000015553], [0.36496200000010504, 0.36497700000018085], [0.36499800000001414, 0.36500900000010006], [0.36502900000004956, 0.36503500000003442], [0.36505600000009508, 0.36506499999995867], [0.36508600000001934, 0.36510100000009515], [0.36512200000015582, 0.36513200000013057], [0.36515299999996387, 0.36515800000006493], [0.3651790000001256, 0.36518500000011045], [0.36520500000005995, 0.36521400000015092], [0.36523499999998421, 0.36524099999996906], [0.36526200000002973, 0.36526700000013079], [0.3652870000000803, 0.36529800000016621], [0.36531899999999951, 0.36533299999996416], [0.36535400000002483, 0.36536399999999958], [0.36538500000006024, 0.3653910000000451], [0.36541200000010576, 0.36541699999997945], [0.36543800000004012, 0.36544700000013108], [0.36546900000007554, 0.36548100000004524], [0.36550200000010591, 0.36551700000018172], [0.36553800000001502, 0.36554799999998977], [0.41217500000016116, 0.41220199999997931], [0.41251299999998992, 0.41254600000002029], [0.45122100000003229, 0.45124699999996665], [0.45141300000000228, 0.45142699999996694]], \"2\": [[0.15655300000003081, 0.15656800000010662], [0.15676800000005642, 0.15678100000013728], [0.20660199999997531, 0.20662900000002082], [0.20697000000018306, 0.20700200000010227], [0.20719200000007731, 0.20720600000004197], [0.3621130000001358, 0.36214100000006511], [0.36246300000016163, 0.36249700000007579]], \"3\": [[0.45419700000002194, 0.45422700000017358], [0.45536900000001879, 0.45540300000016032], [0.45556099999998878, 0.45557900000017071], [0.45563500000002932, 0.45566600000006474]], \"5\": [[0.45576600000003964, 0.455791999999974], [0.45582000000013068, 0.45584900000017115], [15.685128999999961, 15.685186000000158], [15.685206000000107, 15.685230000000047], [15.685244000000012, 15.685259000000087], [15.685560000000123, 15.685623999999962], [15.685635000000048, 15.685649000000012], [15.685664999999972, 15.685698000000002], [15.685711999999967, 15.685724000000164], [15.685737000000017, 15.685748000000103], [15.685760000000073, 15.685771000000159], [15.685783000000129, 15.685815000000048], [16.118041000000176, 16.118081999999958], [16.118097000000034, 16.118120999999974], [16.118135000000166, 16.11815300000012], [16.118165999999974, 16.118196000000125], [16.11821000000009, 16.118229000000156], [16.118241000000125, 16.1182510000001], [16.118264000000181, 16.118274000000156], [16.118286000000126, 16.118296999999984], [16.118309000000181, 16.118321000000151], [16.118333000000121, 16.118345999999974], [16.118359000000055, 16.11836900000003], [16.118380999999999, 16.118392000000085], [16.118405000000166, 16.11841000000004], [16.118423000000121, 16.118433000000095], [16.118445000000065, 16.11845500000004], [16.11846700000001, 16.118478000000096], [16.118490000000065, 16.11850000000004], [16.11851200000001, 16.118523000000096], [16.118535000000065, 16.11854500000004], [16.11855700000001, 16.118566999999985], [16.118579000000182, 16.118589000000156], [16.118601000000126, 16.118611999999985], [16.118624000000182, 16.118637000000035], [16.118649000000005, 16.118660999999975], [16.118674000000055, 16.118687000000136], [16.118699000000106, 16.118709000000081], [16.118881999999985, 16.118911000000026], [16.332454999999982, 16.332466000000068], [16.332476000000042, 16.332492000000002], [16.332505999999967, 16.332522000000154], [16.332536000000118, 16.332546000000093], [16.332559000000174, 16.332570000000032], [16.332583000000113, 16.332593000000088], [16.332602000000179, 16.332615000000033], [16.332628000000113, 16.332638000000088], [16.332646000000068, 16.332660000000033], [16.332673000000113, 16.332683999999972], [16.332692000000179, 16.332705000000033], [16.332718000000114, 16.332728000000088], [16.332737000000179, 16.332750000000033], [16.332763000000114, 16.332773000000088], [16.332781000000068, 16.332791000000043]]}, \"sh-2275\": {\"2\": [[16.168427000000065, 16.173647000000074]], \"5\": [[16.167697999999973, 16.168323999999984]]}, \"sh-2276\": {\"1\": [[16.174886000000015, 16.176343999999972]]}, \"sh-2277\": {\"1\": [[16.383771000000024, 16.388803000000053]], \"5\": [[16.383051000000023, 16.383674000000156]]}, \"sh-2272\": {\"1\": [[15.735994000000119, 15.736170000000129]], \"2\": [[15.735706000000164, 15.735918999999967], [15.736182999999983, 15.738847999999962]]}, \"sh-2273\": {\"4\": [[15.745265000000018, 15.753108000000111]]}, \"khungtaskd-401\": {\"1\": [[13.794928000000027, 13.794968000000154]]}, \"ksoftirqd/4-35\": {\"4\": [[15.288845000000038, 15.288893000000144]]}, \"50default-2270\": {\"1\": [[12.909957999999961, 12.910317000000077]], \"2\": [[12.910330000000158, 12.911559000000125]]}, \"50default-2271\": {\"1\": [[12.912107000000105, 12.913154000000077]], \"2\": [[12.911829000000125, 12.912095000000136]]}, \"watchdog/5-39\": {\"5\": [[0.56682500000010805, 0.56683399999997164], [4.5668239999999969, 4.5668330000000878], [8.5668239999999969, 8.5668310000000929], [12.566823999999997, 12.566831999999977]]}, \"rt-app-2259\": {\"4\": [[0.45530000000007931, 0.45532500000012988]]}, \"rt-app-2258\": {\"4\": [[0.454881000000114, 0.45491700000002311]]}, \"kworker/4:1-777\": {\"4\": [[1.1228320000000167, 1.1228610000000572], [2.1148370000000796, 2.11486600000012], [3.1068270000000666, 3.1068420000001424], [4.0988270000000284, 4.0988420000001042], [5.122827000000143, 5.1228479999999763], [6.1148270000001048, 6.1148410000000695], [7.1068360000001576, 7.106851000000006], [8.0988280000001396, 8.0988420000001042], [9.122827000000143, 9.1228550000000723], [10.114827999999989, 10.114864000000125], [11.106827000000067, 11.106841000000031], [12.098836000000119, 12.098850000000084], [13.122832000000017, 13.122857000000067], [14.114827000000105, 14.114867000000004], [15.106828000000178, 15.106858999999986], [16.174846000000116, 16.174907999999959]]}, \"ksoftirqd/3-29\": {\"3\": [[15.287420999999995, 15.287490000000162]]}, \"rt-app-2252\": {\"0\": [[0.45491600000013932, 0.45498399999996764], [0.45536300000003394, 0.45542300000010982], [0.45551500000010492, 0.45570700000007491], [0.45572000000015578, 0.45581400000014582], [0.45583899999996902, 0.45590500000002976]], \"5\": [[14.65305699999999, 14.653088000000025], [15.285082999999986, 15.286207999999988], [15.286223000000064, 15.286239000000023]]}, \"kworker/1:1-1006\": {\"1\": [[12.902839000000085, 12.902856000000156], [15.738843999999972, 15.738867000000027], [16.17486800000006, 16.174886000000015]]}, \"watchdog/3-27\": {\"3\": [[0.51082900000005793, 0.51084100000002763], [4.510825000000068, 4.5108330000000478], [8.510825000000068, 8.5108330000000478], [12.510826000000179, 12.510833000000048]]}, \"task5-2263\": {\"0\": [[2.354823000000124, 2.3668210000000727], [2.3788220000001274, 2.3908209999999599], [2.4028210000001309, 2.4148199999999633], [2.4268210000000181, 2.4388209999999617], [2.4508210000001327, 2.4628210000000763], [2.4748210000000199, 2.4868209999999635], [2.4988220000000183, 2.5108210000000781], [2.5228210000000217, 2.5348209999999654], [2.5468220000000201, 2.5588210000000799], [2.5708210000000236, 2.5828209999999672], [2.5948210000001382, 2.6068210000000818], [2.6188210000000254, 2.8708220000000892], [2.8828220000000329, 2.8948219999999765], [2.9068210000000363, 2.9188209999999799], [2.9308210000001509, 2.9428210000000945], [2.9548210000000381, 2.9668220000000929], [2.9788210000001527, 2.990827999999965], [3.0028210000000399, 3.0148209999999835], [3.0268220000000383, 3.0388210000000981], [3.0508210000000417, 3.0628209999999854], [3.0748220000000401, 3.0868210000001], [3.0988210000000436, 3.110828999999967], [3.1228210000001582, 3.1348219999999856], [3.1468220000001565, 3.158820999999989], [3.1708240000000387, 3.1828199999999924], [3.1948210000000472, 3.206822000000102], [3.2188210000001618, 3.2308210000001054], [3.242821000000049, 3.2548209999999926], [3.2668210000001636, 3.6388210000000072], [3.6508210000001782, 3.6628210000001218], [3.6748230000000603, 3.6868249999999989], [3.6988220000000638, 3.7108220000000074], [3.7228210000000672, 3.7348210000000108], [3.7468210000001818, 3.7588290000001052], [3.770821000000069, 3.7828220000001238], [3.7948210000001836, 3.8068210000001272], [3.8188210000000709, 3.8308210000000145], [3.8428209999999581, 3.8548220000000128], [3.8668210000000727, 3.8788300000001072], [3.8908209999999599, 3.9028220000000147], [3.9148219999999583, 3.9268210000000181], [3.9388209999999617, 3.9508210000001327], [3.9628210000000763, 3.9748210000000199], [3.9868209999999635, 3.9988210000001345], [4.0108210000000781, 4.0228210000000217], [4.0348209999999654, 4.0468210000001363], [4.0588210000000799, 4.0708210000000236], [4.0828209999999672, 4.0948220000000219], [4.1068210000000818, 4.1188210000000254], [4.130820999999969, 4.14282100000014], [4.1548210000000836, 4.4068210000000363], [4.4188209999999799, 4.4228299999999763], [4.4228410000000622, 4.4348210000000563], [4.4468229999999949, 4.4588210000001709], [4.4708210000001145, 4.4828210000000581], [4.4948210000000017, 4.5068210000001727], [4.5188220000000001, 4.5308210000000599], [4.5428210000000036, 4.5548210000001745], [4.5668210000001181, 4.5788210000000618], [4.5908210000000054, 4.6028210000001764], [4.61482100000012, 4.6268210000000636], [4.6388210000000072, 4.650822000000062], [4.6628210000001218, 4.6748220000001766], [4.6868300000001, 4.69882100000018], [4.7108210000001236, 4.7228210000000672], [4.7348210000000108, 4.7468220000000656], [4.7588210000001254, 4.770821000000069], [4.7828300000001036, 4.7948210000001836], [9.1388240000001133, 9.150822000000062], [9.1628210000001218, 9.1748220000001766], [9.1868220000001202, 9.19882100000018], [9.2108220000000074, 9.2228210000000672], [9.2348210000000108, 9.2468220000000656], [9.2588210000001254, 9.270821000000069], [9.2828220000001238, 9.2948220000000674], [9.3068210000001272, 9.318822000000182], [9.3308210000000145, 9.3428209999999581], [9.3548210000001291, 9.3668210000000727], [9.3788220000001274, 9.3908209999999599], [9.4028210000001309, 9.7868220000000292], [9.7988219999999728, 9.8108210000000327], [9.8228209999999763, 9.8348210000001473], [9.8468210000000909, 9.8588220000001456], [9.8708209999999781, 9.8828210000001491], [9.8948210000000927, 9.9068220000001475], [9.9188209999999799, 9.9308210000001509], [9.9428210000000945, 9.9548210000000381], [9.9668209999999817, 9.9788210000001527], [9.9908219999999801, 10.00282100000004], [10.014820999999984, 10.026821000000155], [10.038821000000098, 10.050821000000042], [10.062822000000097, 10.074821000000156], [10.0868210000001, 10.098821000000044], [10.110820999999987, 10.114851000000044], [10.114872999999989, 10.126821000000064], [10.138821000000007, 10.150821000000178], [10.162822000000006, 10.174821000000065], [10.422821000000113, 10.434832000000142], [10.446822999999995, 10.458823000000166], [10.470825999999988, 10.482822000000169], [10.494822000000113, 10.506822000000057], [10.518820000000005, 10.530822000000171], [10.542828999999983, 10.554822000000058], [10.566821000000118, 10.578821000000062], [10.590821000000005, 10.60282200000006], [10.61482100000012, 10.626822000000175], [10.638822000000118, 10.650822000000062], [10.662821000000122, 10.674821000000065], [10.686824000000115, 10.698823000000175], [10.710821000000124, 10.722821000000067], [10.734822000000122, 10.746821000000182], [10.758821000000125, 10.770821000000069], [10.782821000000013, 10.794822000000067], [10.806822000000011, 10.818821000000071]], \"3\": [[0.47482500000000982, 0.48282900000003792], [0.49882200000001831, 0.50682200000005651], [0.52682100000015453, 0.53482099999996535], [0.55082100000004175, 0.55882199999996374], [0.57082200000013472, 0.83882300000004761], [0.85082000000011249, 0.86282100000016726], [0.87482100000011087, 0.88682100000005448], [0.89882200000010926, 0.91082100000016908], [0.92282100000011269, 0.9348210000000563], [0.94682099999999991, 0.9588210000001709], [0.97082100000011451, 0.98282100000005812], [0.99482100000000173, 1.0068210000001727], [1.0188230000001113, 1.0308220000001711], [1.0428229999999985, 1.0548210000001745], [1.0668210000001181, 1.1268290000000434], [1.126852000000099, 1.3508229999999912], [1.362822000000051, 1.3748210000001109], [1.3868210000000545, 1.3988209999999981], [1.4108210000001691, 1.4228210000001127], [1.4348210000000563, 1.4468209999999999], [1.4588210000001709, 1.4708210000001145], [1.4828210000000581, 1.4948210000000017], [1.5068210000001727, 1.5188210000001163], [1.5308210000000599, 1.5428200000001198], [1.5548210000001745, 1.5668210000001181], [1.5788220000001729, 1.5908210000000054], [1.6028210000001764, 1.61482100000012], [1.6268210000000636, 1.6388210000000072], [1.6508210000001782, 1.6628210000001218], [1.6748230000000603, 1.686821000000009], [1.69882100000018, 1.7108220000000074], [1.7228210000000672, 2.1148410000000695], [2.1148600000001352, 2.1268210000000636], [2.1388220000001184, 2.150822000000062], [2.1628210000001218, 2.1748210000000654], [2.186821000000009, 2.19882100000018], [2.2108210000001236, 2.2228210000000672], [2.2348210000000108, 2.2468220000000656], [2.2588210000001254, 2.270821000000069], [2.2828210000000126, 2.2948210000001836], [2.3068210000001272, 2.3188210000000709], [2.3308220000001256, 2.3428209999999581], [4.8068230000001222, 4.8188210000000709], [4.8308210000000145, 4.8428209999999581], [4.8548220000000128, 4.8668210000000727], [4.8788210000000163, 4.8908209999999599], [4.9028210000001309, 4.9148210000000745], [4.9268200000001343, 4.9388200000000779], [4.9508210000001327, 4.9628199999999651], [4.9748210000000199, 4.9868209999999635], [4.9988200000000234, 5.0108210000000781], [5.0228210000000217, 5.0348200000000816], [5.0468190000001414, 5.0588199999999688], [5.0708200000001398, 5.0828200000000834], [5.094820000000027, 5.1068199999999706], [5.1188200000001416, 5.1308220000000802], [5.14282100000014, 5.1548210000000836], [5.1668210000000272, 5.1788209999999708], [5.1908220000000256, 5.2028210000000854], [5.214821000000029, 5.2268209999999726], [5.2388210000001436, 5.2508210000000872], [5.2628210000000308, 5.2748209999999744], [5.2868210000001454, 5.5748230000001513], [5.5868210000001, 5.5988210000000436], [5.6028440000000046, 5.61482100000012], [5.6268200000001798, 5.6308260000000701], [5.64282100000014, 5.6548210000000836], [5.6668210000000272, 5.6788209999999708], [5.6908230000001367, 5.7028219999999692], [5.714823000000024, 5.7268209999999726], [5.7388210000001436, 5.7508210000000872], [5.7628210000000308, 5.7748209999999744], [5.7868210000001454, 5.7988219999999728], [5.8108220000001438, 5.8228220000000874], [5.8348210000001473, 5.8468199999999797], [5.8588200000001507, 5.8708200000000943], [5.8828200000000379, 5.8948210000000927], [5.9068200000001525, 5.9188200000000961], [5.9308200000000397, 6.2148220000001402], [6.2268220000000838, 6.2388210000001436], [6.2508210000000872, 6.2628210000000308], [6.2748209999999744, 6.2868220000000292], [6.298821000000089, 6.3108210000000327], [6.3228209999999763, 6.3348210000001473], [6.3468210000000909, 6.3588210000000345], [6.3708209999999781, 6.3828210000001491], [6.3948210000000927, 6.4068210000000363], [6.4188209999999799, 6.4308210000001509], [6.4428210000000945, 6.7268229999999676], [6.7388200000000325, 6.7508210000000872], [6.762820000000147, 6.7748200000000907], [6.7868200000000343, 6.7988199999999779], [6.8108200000001489, 6.8228209999999763], [6.8348200000000361, 6.8468210000000909], [6.8588200000001507, 6.8708209999999781], [6.8828210000001491, 6.8948210000000927], [6.9068210000000363, 6.9188209999999799], [6.9308210000001509, 6.9428219999999783], [6.9548220000001493, 7.3708209999999781], [7.3828210000001491, 7.3948210000000927], [7.4068210000000363, 7.4188209999999799], [7.4308210000001509, 7.4428210000000945], [7.4548210000000381, 7.4668209999999817], [7.4788210000001527, 7.4908290000000761], [7.5028210000000399, 7.5148209999999835], [7.5268210000001545, 7.5388210000000981], [7.5508220000001529, 7.5628209999999854], [7.5748200000000452, 7.5868210000001], [7.5988210000000436, 8.0068230000001677], [8.0188220000000001, 8.0308210000000599], [8.0428210000000036, 8.0548210000001745], [8.0668210000001181, 8.0788210000000618], [8.0908210000000054, 8.1028210000001764], [8.11482100000012, 8.1268210000000636], [8.1388210000000072, 8.150820000000067], [8.1628200000000106, 8.1748210000000654], [8.1868200000001252, 8.1988200000000688], [8.2108200000000124, 8.2228200000001834], [8.234820000000127, 8.2468200000000706], [8.2588200000000143, 8.2708199999999579], [8.2828210000000126, 8.2948210000001836], [8.3068200000000161, 8.3188199999999597], [8.3308200000001307, 8.3428200000000743], [8.3548200000000179, 8.3668199999999615], [8.3788210000000163, 8.3908220000000711], [8.6468230000000403, 8.658820999999989], [8.67082100000016, 8.6828219999999874], [8.6948220000001584, 8.7068209999999908], [8.7188210000001618, 8.7308210000001054], [8.742821000000049, 8.7548209999999926], [8.7668210000001636, 8.778821999999991], [8.7908210000000508, 8.8028209999999945], [8.8148210000001654, 8.8268210000001091], [8.8388210000000527, 8.8508209999999963], [8.8628210000001673, 8.8748219999999947], [8.8868210000000545, 8.8988209999999981], [8.9108210000001691, 8.9228210000001127], [8.9348210000000563, 8.9468209999999999], [8.9588210000001709, 8.9708210000001145], [8.9828210000000581, 8.9948220000001129], [9.0068230000001677, 9.0108280000001741], [9.022820000000138, 9.0348200000000816], [9.0468210000001363, 9.0588210000000799], [9.0708210000000236, 9.0828209999999672], [9.0948210000001382, 9.1068210000000818], [9.1188210000000254, 9.130820999999969], [10.830821000000014, 10.842820999999958], [10.854821000000129, 10.866821000000073], [10.878821000000016, 10.89082099999996], [10.902821000000131, 10.914821999999958], [10.926821000000018, 10.938820999999962], [10.950822000000016, 10.962821000000076], [10.97482100000002, 10.986820999999964], [10.998821000000135, 11.010821000000078], [11.022821000000022, 11.034822000000077], [11.046821000000136, 11.334823000000142], [11.346821999999975, 11.358821000000034], [11.370820999999978, 11.382821000000149], [11.394821000000093, 11.406821000000036], [11.418822000000091, 11.430822000000035], [11.442821999999978, 11.454821000000038], [11.466820000000098, 11.478820000000042], [11.490819999999985, 11.502820000000156], [11.5148200000001, 11.526821000000155], [11.538819999999987, 11.550820000000158], [11.562820000000102, 11.846821999999975], [11.858821000000034, 11.870820000000094], [11.882821000000149, 11.894821000000093], [11.906821000000036, 11.91882099999998], [11.930821000000151, 11.942821000000095], [11.954822000000149, 11.966822000000093], [11.978821000000153, 11.99082199999998], [12.002822000000151, 12.014820999999984], [12.026821000000155, 12.038821000000098], [12.050821000000042, 12.062820999999985], [12.074821000000156, 12.494822000000113], [12.506821000000173, 12.510826000000179], [12.510833000000048, 12.522821000000022], [12.534820999999965, 12.546821000000136], [12.558821999999964, 12.570822000000135], [12.582820999999967, 12.594821000000138], [12.606821000000082, 12.618821000000025], [12.630820999999969, 12.64282100000014], [12.654821000000084, 12.666821000000027], [12.678822000000082, 12.690821000000142], [12.702821999999969, 12.714823000000024], [12.726820999999973, 12.738821000000144], [12.750821000000087, 12.762821000000031], [12.774820999999974, 12.786821000000145], [12.798821000000089, 12.810821000000033], [12.822820999999976, 12.834821000000147], [12.846821000000091, 12.858821000000034]], \"4\": [[10.182825000000093, 10.194823000000042], [10.206822000000102, 10.218822000000046], [10.230821999999989, 10.24282200000016], [10.254822999999988, 10.266822000000047], [10.278821999999991, 10.290823000000046], [10.302822000000106, 10.31482300000016], [10.326821999999993, 10.338823000000048], [10.350822000000107, 10.362822000000051], [10.374821999999995, 10.386822000000166], [10.398822000000109, 10.410822000000053], [12.870824999999968, 12.882823000000144], [12.894823999999971, 12.906825000000026], [12.918824000000086, 12.930823000000146], [12.942823000000089, 12.954825000000028], [12.966822999999977, 12.978822000000036], [12.99082199999998, 13.002823000000035], [13.014822000000095, 13.026823000000149], [13.038821999999982, 13.050823000000037], [13.062822000000097, 13.07482200000004], [13.086823000000095, 13.098823000000039], [13.110822000000098, 13.122832000000017], [13.122857000000067, 13.422829999999976], [13.422844000000168, 13.482371000000057], [13.482496999999967, 13.482844999999998], [13.482860000000073, 13.490829000000076], [13.490850000000137, 13.498828000000003], [13.498841999999968, 13.502836000000116], [13.502848999999969, 13.58682900000008], [13.586844000000156, 13.594828000000007], [13.594841999999971, 13.598826000000145], [13.598844000000099, 13.606827000000067], [13.606841000000031, 13.638824000000113], [13.650823000000173, 13.662823000000117], [13.674824000000172, 13.686824999999999], [13.698824000000059, 13.710824000000002], [13.722823000000062, 13.734822000000122], [13.746823000000177, 13.758822000000009], [13.77082200000018, 13.782822000000124], [13.794830000000047, 13.806823000000122], [13.818824000000177, 13.830823000000009], [13.84282300000018, 13.854822000000013], [13.866823000000068, 13.972488000000112]], \"5\": [[8.4028220000000147, 8.4148210000000745], [8.4268210000000181, 8.4388209999999617], [8.4508210000001327, 8.4628210000000763], [8.4748210000000199, 8.4868209999999635], [8.4988210000001345, 8.5108219999999619], [8.5228270000000066, 8.5348209999999654], [8.5468210000001363, 8.5588210000000799], [8.5788210000000618, 8.5908220000001165], [8.6028210000001764, 8.61482100000012], [8.6268220000001747, 8.6388220000001184]]}, \"task0-2258\": {\"0\": [[11.058823000000075, 11.070822000000135], [11.082822000000078, 11.094821000000138], [11.106821000000082, 11.118822000000137], [11.130820999999969, 11.14282100000014], [11.154821000000084, 11.166821000000027], [11.182827999999972, 11.194822000000158], [11.206820999999991, 11.218821000000162], [11.230821000000105, 11.242821000000049], [11.254820999999993, 11.266821000000164], [11.278821000000107, 11.290821000000051], [11.302820999999994, 11.314821000000165], [11.326821000000109, 11.494826999999987], [11.494841000000179, 11.57482200000004], [11.586819999999989, 11.598821000000044], [11.610820000000103, 11.622820000000047], [11.634821000000102, 11.646820000000162], [11.658820000000105, 11.67082100000016], [11.682823000000099, 11.694831000000022], [11.706822000000102, 11.718820000000051], [11.730821000000105, 11.742820000000165], [11.754820000000109, 11.766820000000052], [11.778819999999996, 11.790820000000167], [11.802820000000111, 11.814821000000165], [11.826821000000109, 11.838820000000169], [12.086821999999984, 12.098821000000044], [12.110820999999987, 12.122822000000042], [12.134821999999986, 12.146821000000045], [12.158820999999989, 12.162829000000102], [12.174821000000065, 12.18682200000012], [12.198822000000064, 12.210822000000007], [12.222821000000067, 12.234820000000127], [12.246822000000066, 12.258820000000014], [12.270821000000069, 12.282820000000129], [12.294820000000072, 12.306820000000016], [12.31881999999996, 12.330821000000014], [12.342820000000074, 12.354820000000018], [12.366821000000073, 12.378820000000132], [12.390820000000076, 12.40282000000002], [12.414819999999963, 12.422829000000092], [12.422837000000072, 12.434821000000056], [12.446822000000111, 12.458822000000055], [12.470821999999998, 12.482821000000058], [12.494821000000002, 12.506821000000173], [12.518821000000116, 12.53082100000006], [12.542821000000004, 12.554822000000058], [12.566822000000002, 12.578821000000062], [12.590821000000005, 12.602821000000176], [12.614820000000009, 12.850822999999991], [12.862821000000167, 12.874821000000111], [12.886820000000171, 12.898834999999963], [12.910826000000043, 12.922821999999996], [12.934822000000167, 12.946822999999995], [12.958823000000166, 12.970820000000003], [12.982820000000174, 12.994820000000118], [13.006820000000062, 13.018820000000005], [13.03082100000006, 13.034830000000056], [13.034844000000021, 13.046821000000136], [13.05882100000008, 13.070821000000024], [13.082820999999967, 13.094830000000002], [13.106821000000082, 13.118822000000137], [13.13082200000008, 13.362823000000162], [13.374821000000111, 13.386822000000166], [13.398830999999973, 13.410829000000149], [13.422825999999986, 13.434821000000056], [13.446821, 13.458821000000171], [13.470821999999998, 13.482825000000048], [13.494822000000113, 13.506822000000057], [13.518821000000116, 13.53082100000006], [13.542821000000004, 13.554821000000175], [13.566821000000118, 13.578821000000062], [13.590822000000117, 13.602828000000045], [13.878822000000127, 13.89082099999996], [13.902821000000131, 13.914821000000074], [13.926821000000018, 13.938820999999962], [13.950821000000133, 13.962821000000076], [13.97482100000002, 14.114839999999958], [14.11486200000013, 14.434827000000041], [14.434840000000122, 14.653007000000116]], \"3\": [[1.3508229999999912, 1.362822000000051], [1.3748210000001109, 1.3868210000000545], [1.3988209999999981, 1.4108210000001691], [1.4228210000001127, 1.4348210000000563], [1.4468209999999999, 1.4588210000001709], [1.4708210000001145, 1.4828210000000581], [1.4948210000000017, 1.5068210000001727], [1.5188210000001163, 1.5308210000000599], [1.5428200000001198, 1.5548210000001745], [1.5668210000001181, 1.5788220000001729], [1.5908210000000054, 1.6028210000001764], [1.61482100000012, 1.6268210000000636], [1.6388210000000072, 1.6508210000001782], [1.6628210000001218, 1.6748230000000603], [1.686821000000009, 1.69882100000018], [1.7108220000000074, 1.7228210000000672], [2.1268210000000636, 2.1388220000001184], [2.150822000000062, 2.1628210000001218], [2.1748210000000654, 2.186821000000009], [2.19882100000018, 2.2108210000001236], [2.2228210000000672, 2.2348210000000108], [2.2468220000000656, 2.2588210000001254], [2.270821000000069, 2.2828210000000126], [2.2948210000001836, 2.3068210000001272], [2.3188210000000709, 2.3308220000001256], [2.3428209999999581, 2.6308229999999639], [2.64282100000014, 2.6548210000000836], [2.6668210000000272, 2.6788209999999708], [2.6908200000000306, 2.7028219999999692], [2.714821000000029, 2.7268209999999726], [2.7388220000000274, 2.7508210000000872], [2.7628210000000308, 2.7748209999999744], [2.7868210000001454, 2.7988219999999728], [2.8108210000000327, 2.8228209999999763], [2.8348210000001473, 2.8468210000000909], [2.8588210000000345, 3.1428230000001349], [3.1548210000000836, 3.1668210000000272], [3.1788209999999708, 3.1908210000001418], [3.2028210000000854, 3.214821000000029], [3.2268209999999726, 3.2388210000001436], [3.2508210000000872, 3.2628210000000308], [3.2748209999999744, 3.2868210000001454], [3.298821000000089, 3.3108210000000327], [3.3228209999999763, 3.3348210000001473], [3.3468210000000909, 3.3588210000000345], [3.3708209999999781, 3.3828210000001491], [3.3948219999999765, 3.4068210000000363], [3.4188209999999799, 3.4308210000001509], [3.4428210000000945, 3.4548210000000381], [3.4668200000000979, 3.4788210000001527], [3.4908210000000963, 3.5028210000000399], [3.5148280000000796, 3.5268220000000383], [8.0068230000001677, 8.0188220000000001], [8.0308210000000599, 8.0428210000000036], [8.0548210000001745, 8.0668210000001181], [8.0788210000000618, 8.0908210000000054], [8.1028210000001764, 8.11482100000012], [8.1268210000000636, 8.1388210000000072], [8.150820000000067, 8.1628200000000106], [8.1748210000000654, 8.1868200000001252], [8.1988200000000688, 8.2108200000000124], [8.2228200000001834, 8.234820000000127], [8.2468200000000706, 8.2588200000000143], [8.2708199999999579, 8.2828210000000126], [8.2948210000001836, 8.3068200000000161], [8.3188199999999597, 8.3308200000001307], [8.3428200000000743, 8.3548200000000179], [8.3668199999999615, 8.3788210000000163], [8.3908220000000711, 8.510825000000068], [8.5108330000000478, 8.6468230000000403], [8.658820999999989, 8.67082100000016], [8.6828219999999874, 8.6948220000001584], [8.7068209999999908, 8.7188210000001618], [8.7308210000001054, 8.742821000000049], [8.7548209999999926, 8.7668210000001636], [8.778821999999991, 8.7908210000000508], [8.8028209999999945, 8.8148210000001654], [8.8268210000001091, 8.8388210000000527], [8.8508209999999963, 8.8628210000001673], [8.8748219999999947, 8.8868210000000545], [8.8988209999999981, 8.9108210000001691], [8.9228210000001127, 8.9348210000000563], [8.9468209999999999, 8.9588210000001709], [8.9708210000001145, 8.9828210000000581], [8.9948220000001129, 9.0068230000001677], [9.0108430000000226, 9.022820000000138], [9.0348200000000816, 9.0468210000001363], [9.0588210000000799, 9.0708210000000236], [9.0828209999999672, 9.0948210000001382], [9.1068210000000818, 9.1188210000000254], [9.130820999999969, 9.4148219999999583], [9.4268210000000181, 9.4388209999999617], [9.4508210000001327, 9.4628210000000763], [9.4748200000001361, 9.4868209999999635], [9.4988210000001345, 9.5108210000000781], [9.5228220000001329, 9.5348209999999654], [9.5468210000001363, 9.5588210000000799], [9.5708210000000236, 9.5828209999999672], [9.5948210000001382, 9.6028290000001562], [9.6028440000000046, 9.6108260000000882], [9.618844000000081, 9.6268250000000535], [9.6388210000000072, 9.6508210000001782], [9.6628220000000056, 9.6748210000000654], [9.9268230000000131, 9.9388209999999617], [9.9508210000001327, 9.9628210000000763], [9.9748220000001311, 9.9868209999999635], [9.9988210000001345, 10.010821000000078], [10.022821000000022, 10.034820999999965], [10.046821000000136, 10.05882100000008], [10.070822000000135, 10.082820999999967], [10.094821000000138, 10.106821000000082], [10.118821000000025, 10.130820999999969], [10.14282100000014, 10.154821000000084], [10.166821000000027, 10.178820999999971], [10.190821000000142, 10.202821000000085], [10.214821000000029, 10.226820999999973], [10.238821000000144, 10.250821000000087], [10.262821000000031, 10.274820999999974], [10.286821000000145, 10.298821000000089], [10.310822000000144, 10.434829000000036], [10.434844000000112, 10.442825999999968], [10.442841000000044, 10.446828000000096], [10.44684600000005, 10.454826000000139], [10.454840000000104, 10.458827000000156], [10.45884500000011, 10.470827000000099], [10.470841000000064, 10.474827000000005], [10.474840000000086, 10.678829000000178], [10.678843000000143, 10.68682600000011], [10.686840999999959, 10.830821000000014], [10.842820999999958, 10.854821000000129], [10.866821000000073, 10.878821000000016], [10.89082099999996, 10.902821000000131], [10.914821999999958, 10.926821000000018], [10.938820999999962, 10.950822000000016], [10.962821000000076, 10.97482100000002], [10.986820999999964, 10.998821000000135], [11.010821000000078, 11.022821000000022], [11.034822000000077, 11.046821000000136], [11.846821999999975, 11.858821000000034], [11.870820000000094, 11.882821000000149], [11.894821000000093, 11.906821000000036], [11.91882099999998, 11.930821000000151], [11.942821000000095, 11.954822000000149], [11.966822000000093, 11.978821000000153], [11.99082199999998, 12.002822000000151], [12.014820999999984, 12.026821000000155], [12.038821000000098, 12.050821000000042], [12.062820999999985, 12.074821000000156]], \"4\": [[0.45523500000012973, 0.45530000000007931], [0.45548299999995834, 0.45552700000007462], [0.45597599999996419, 0.4588370000001305], [0.45895400000017617, 0.46289000000001579], [0.46299399999998059, 0.46684700000014345], [0.4669490000001133, 0.47484600000007049], [0.4749490000001515, 0.53882900000007794], [0.53883900000005269, 0.58282500000018445], [0.59482300000013311, 0.60682199999996556], [0.61882200000013654, 0.63082299999996394], [0.64282200000002376, 0.65482199999996737], [0.66682200000013836, 0.67882299999996576], [0.69082400000002053, 0.70282300000008036], [0.71482300000002397, 0.72682299999996758], [0.73882300000013856, 0.75082300000008217], [0.762822000000142, 0.77482200000008561], [0.78682300000014038, 0.79882300000008399], [0.81082200000014382, 0.82282200000008743], [0.8348230000001422, 0.84682300000008581], [1.0948250000001281, 1.1068230000000767], [1.1188220000001365, 1.1228320000000167], [1.1348230000000967, 1.1468220000001565], [1.1588229999999839, 1.1708220000000438], [1.1828219999999874, 1.1948220000001584], [1.206822000000102, 1.2188310000001366], [1.2308219999999892, 1.242823000000044], [1.2548229999999876, 1.2668230000001586], [1.278821999999991, 1.2908230000000458], [1.3028220000001056, 1.3148230000001604], [1.3268219999999928, 1.3388220000001638], [1.7348240000001169, 1.7468230000001768], [1.7588220000000092, 1.7708220000001802], [1.7828230000000076, 1.7948220000000674], [1.8068230000001222, 1.8188230000000658], [1.8308220000001256, 1.8428240000000642], [1.8548220000000128, 1.8668230000000676], [1.8788220000001274, 1.8908230000001822], [1.9028220000000147, 1.9148230000000694], [1.9268220000001293, 1.9388220000000729], [1.9508220000000165, 1.9628219999999601], [1.9748220000001311, 1.9868229999999585], [1.9988230000001295, 2.0108219999999619], [2.0228220000001329, 2.0348220000000765], [2.0468220000000201, 2.0588219999999637], [2.0708220000001347, 2.0828229999999621], [2.0948230000001331, 2.1068219999999656], [5.8308240000001206, 5.8428230000001804], [5.8548220000000128, 5.8668230000000676], [5.8788220000001274, 5.8908220000000711], [5.9028220000000147, 5.9148230000000694], [5.9268220000001293, 5.9388220000000729], [5.9508220000000165, 5.9628230000000713], [5.9748220000001311, 5.9868229999999585], [5.9988220000000183, 6.0108219999999619], [6.0228220000001329, 6.0348229999999603], [6.0468230000001313, 6.0588219999999637], [6.0708220000001347, 6.0828220000000783], [6.0948230000001331, 6.1068219999999656], [6.1268230000000585, 6.1388230000000021], [6.150822000000062, 6.1628220000000056], [6.1748230000000603, 6.186823000000004], [6.1988220000000638, 6.5988240000001497], [6.6108229999999821, 6.6228230000001531], [6.6348219999999856, 6.6468230000000403], [6.6548500000001241, 6.6628279999999904], [6.6748240000001715, 6.6868240000001151], [6.6988240000000587, 6.7108230000001186], [6.722831000000042, 6.734822000000122], [6.7468220000000656, 6.7588220000000092], [6.770823000000064, 6.7828230000000076], [6.7948220000000674, 6.8068230000001222], [6.818824000000177, 6.8308230000000094], [6.8428220000000692, 6.854823000000124], [13.638824000000113, 13.650823000000173], [13.662823000000117, 13.674824000000172], [13.686824999999999, 13.698824000000059], [13.710824000000002, 13.722823000000062], [13.734822000000122, 13.746823000000177], [13.758822000000009, 13.77082200000018], [13.782822000000124, 13.794830000000047], [13.806823000000122, 13.818824000000177], [13.830823000000009, 13.84282300000018], [13.854822000000013, 13.866823000000068]], \"5\": [[0.85082299999999123, 0.86282200000005105], [0.87482100000011087, 0.88682100000005448], [0.89882099999999809, 0.91082100000016908], [0.92282100000011269, 0.9348210000000563], [0.94682200000011107, 0.9588210000001709], [0.97082100000011451, 0.98282100000005812], [0.99482100000000173, 1.0068210000001727], [1.0228400000000875, 1.0348240000000715], [1.0468210000001363, 1.0588210000000799], [1.0708210000000236, 1.0828220000000783], [3.5388219999999819, 3.550820000000158], [3.5628209999999854, 3.5748210000001563], [3.5868219999999837, 3.5988210000000436], [3.6108209999999872, 3.622820000000047], [3.6348210000001018, 3.6468210000000454], [3.658820999999989, 3.6708220000000438], [3.6828219999999874, 3.6948280000001432], [3.7068209999999908, 3.7188210000001618], [3.7308210000001054, 3.742821000000049], [3.7548209999999926, 3.7668210000001636], [3.7788210000001072, 3.7908210000000508], [3.8028220000001056, 3.8148210000001654], [3.8268210000001091, 3.8388210000000527], [3.8508209999999963, 3.8628210000001673], [3.8748219999999947, 3.8868220000001656], [3.8988220000001093, 4.306822000000011], [4.3188210000000709, 4.3308210000000145], [4.3428200000000743, 4.3548210000001291], [4.3668210000000727, 4.3788210000000163], [4.3908209999999599, 4.4028210000001309], [4.4148210000000745, 4.4268210000000181], [4.4388209999999617, 4.4508210000001327], [4.4628210000000763, 4.4748220000001311], [4.4868209999999635, 4.4988210000001345], [4.5108219999999619, 4.5228210000000217], [4.5348209999999654, 4.5468220000000201], [4.5588199999999688, 4.5668239999999969], [4.5668330000000878, 4.5788210000000618], [4.5908220000001165, 4.6028210000001764], [4.61482100000012, 4.6268210000000636], [4.6388220000001184, 4.6508210000001782], [4.6628210000001218, 4.6748230000000603], [4.686828000000105, 4.69882100000018], [4.7108210000001236, 4.7228210000000672], [4.7348210000000108, 4.7468210000001818], [4.7588210000001254, 4.770821000000069], [4.7828210000000126, 4.7948210000001836], [4.8068210000001272, 4.8188210000000709], [4.8308200000001307, 4.8428209999999581], [4.8548210000001291, 4.8668210000000727], [4.8788210000000163, 4.8908209999999599], [4.9028210000001309, 4.9148210000000745], [4.9268210000000181, 5.4588220000000547], [5.4708210000001145, 5.4828210000000581], [5.4948210000000017, 5.5068210000001727], [5.5188210000001163, 5.5308210000000599], [5.5428210000000036, 5.5548210000001745], [5.5668210000001181, 5.5788210000000618], [5.5908210000000054, 5.6028210000001764], [5.61482100000012, 5.6268200000001798], [5.6388210000000072, 5.6508210000001782], [5.6628210000001218, 5.6748210000000654], [5.686823000000004, 5.69882100000018], [5.7108200000000124, 5.7228210000000672], [5.7348210000000108, 5.7468210000001818], [5.7588210000001254, 5.770821000000069], [5.7828210000000126, 5.7948210000001836], [5.8068210000001272, 5.8188210000000709], [6.8668220000001838, 6.8788210000000163], [6.8908220000000711, 6.9028210000001309], [6.9148210000000745, 6.9268210000000181], [6.938823000000184, 6.9508220000000165], [6.9628219999999601, 6.9748210000000199], [6.9868260000000646, 6.9988210000001345], [7.0108210000000781, 7.0228210000000217], [7.0348209999999654, 7.0468210000001363], [7.0588210000000799, 7.0708210000000236], [7.0828209999999672, 7.0948210000001382], [7.1068219999999656, 7.1068300000001727], [7.1068440000001374, 7.1148259999999937], [7.1228399999999965, 7.1348210000001018], [7.1468220000001565, 7.158820999999989], [7.17082100000016, 7.1828210000001036], [7.1948210000000472, 7.2068209999999908], [7.2188200000000506, 7.2308210000001054], [7.2428200000001652, 7.2548209999999926], [7.2668200000000525, 7.2788199999999961], [7.2908200000001671, 7.3028200000001107], [7.3148200000000543, 7.3268210000001091], [7.3388210000000527, 7.3508200000001125], [7.3628200000000561, 7.6348230000000967], [7.6468210000000454, 7.658820999999989], [7.67082100000016, 7.6828219999999874], [7.6948220000001584, 7.706822000000102], [7.7188210000001618, 7.7308210000001054], [7.7428220000001602, 7.7548269999999775], [7.7668210000001636, 7.7788210000001072], [7.7908210000000508, 7.8028209999999945], [7.8148210000001654, 7.8268219999999928], [7.8388210000000527, 7.8508220000001074], [7.8628210000001673, 7.8748210000001109], [7.8868210000000545, 7.8988209999999981], [7.9108210000001691, 7.9228210000001127], [7.9348210000000563, 7.9468209999999999], [7.9588210000001709, 7.9708210000001145], [7.9828210000000581, 7.9948210000000017], [9.686823000000004, 9.6988230000001749], [9.7108210000001236, 9.7228210000000672], [9.7348210000000108, 9.7468250000001717], [9.7588210000001254, 9.770821000000069], [9.7828210000000126, 9.7948210000001836], [9.806829000000107, 9.818822000000182], [9.8308210000000145, 9.8428209999999581], [9.8548210000001291, 9.8668210000000727], [9.8788210000000163, 9.8908209999999599], [9.9028220000000147, 9.9148210000000745], [13.610857000000124, 13.622822000000042], [13.634821000000102, 13.634834000000183]]}, \"50default-2269\": {\"1\": [[12.90854800000011, 12.909730000000081]], \"2\": [[12.908186999999998, 12.90853600000014]]}, \"50default-2268\": {\"2\": [[12.905815999999959, 12.906263999999965], [12.906284000000142, 12.907174000000168]]}, \"jbd2/sda2-8-1197\": {\"2\": [[1.2509330000000318, 1.2510630000001584], [1.2529900000001817, 1.2530070000000251], [1.2569900000000871, 1.2570560000001478], [1.2593880000001718, 1.2594260000000759], [14.306939000000057, 14.307029000000057], [14.308369000000084, 14.308404999999993], [14.309983000000102, 14.309999000000062]]}, \"shutils-2256\": {\"2\": [[0.43051000000014028, 0.43153700000016215]]}, \"shutils-2257\": {\"1\": [[0.43355600000018057, 0.43382399999995869]], \"2\": [[0.45103500000004715, 0.45123899999998685], [0.45135000000004766, 0.45142299999997704], [0.45147199999996701, 0.45180000000004839]], \"5\": [[0.43081400000005488, 0.43151600000010149]]}, \"shutils-2254\": {\"2\": [[0.42235700000014731, 0.42292900000006739]], \"5\": [[0.42823599999996986, 0.42965800000001764]]}, \"shutils-2255\": {\"1\": [[0.43015600000012455, 0.4307770000000346], [0.43079800000009527, 0.43346100000007937]]}, \"50default-2267\": {\"1\": [[12.905222000000094, 12.907736999999997]]}, \"50default-2266\": {\"1\": [[12.903718000000026, 12.904960000000074]], \"2\": [[12.903389000000061, 12.903705000000173]]}, \"50default-2265\": {\"1\": [[12.902856000000156, 12.903606999999965], [12.907736999999997, 12.907774000000018], [12.907900000000154, 12.908335999999963], [12.91155700000013, 12.911989000000176]], \"2\": [[12.904956999999968, 12.905815999999959], [12.90972899999997, 12.910135999999966], [12.913152000000082, 12.913883000000169]]}, \"grep-2268\": {\"2\": [[12.907572000000073, 12.907687000000124], [12.907721000000038, 12.907901000000038]]}, \"sh-2252\": {\"3\": [[0.41296299999999064, 0.41354799999999159]], \"4\": [[0.41363799999999173, 0.42244200000004639]]}, \"ksoftirqd/2-23\": {\"2\": [[15.758837999999969, 15.7588760000001]]}, \"run-parts-2265\": {\"1\": [[12.900149000000056, 12.902839000000085]], \"2\": [[12.900114000000031, 12.900137000000086]]}, \"run-parts-2264\": {\"1\": [[12.913882000000058, 12.914079000000129]], \"2\": [[12.900207000000137, 12.900217000000112]]}, \"kworker/5:1H-1251\": {\"5\": [[15.286207999999988, 15.286223000000064], [15.291149000000132, 15.291159999999991]]}, \"watchdog/2-21\": {\"2\": [[0.48293499999999767, 0.48294800000007854], [4.482928000000129, 4.4829369999999926], [8.4829290000000128, 8.4829380000001038], [12.482928000000129, 12.482946999999967]]}, \"kworker/2:1H-1200\": {\"2\": [[1.2510630000001584, 1.2510830000001079], [7.138934000000063, 7.1389540000000125]]}, \"task3-2261\": {\"0\": [[0.45581400000014582, 0.45583899999996902], [1.714823000000024, 1.7268209999999726], [1.7388210000001436, 1.7508199999999761], [1.762820000000147, 1.7748200000000907], [1.7868200000000343, 1.7988199999999779], [1.8108200000001489, 1.8228200000000925], [1.8348200000000361, 1.8468199999999797], [1.8588200000001507, 1.8708200000000943], [1.8828200000000379, 1.8948219999999765], [1.9068200000001525, 1.9188200000000961], [1.9308200000000397, 1.9428210000000945], [1.9548200000001543, 1.9668200000000979], [1.9788200000000415, 1.9908199999999852], [5.298823000000084, 5.3108210000000327], [5.3228220000000874, 5.3348210000001473], [5.3468210000000909, 5.3588240000001406], [5.3708209999999781, 5.3828220000000329], [5.3948210000000927, 5.4068210000000363], [5.4188220000000911, 5.4308210000001509], [5.4428219999999783, 5.4548210000000381], [5.4668209999999817, 5.4788210000001527], [5.4908210000000963, 5.5028210000000399], [5.5148209999999835, 5.5268210000001545], [5.5388210000000981, 5.5508210000000417], [5.5628209999999854, 5.9428230000000895], [5.9548200000001543, 5.9668209999999817], [5.9788210000001527, 5.9908199999999852], [6.0028200000001561, 6.0148209999999835], [6.0268200000000434, 6.0388239999999769], [6.050820000000158, 6.0628280000000814], [6.0748220000000401, 6.0868199999999888], [6.0988210000000436, 6.1108200000001034], [6.1228210000001582, 6.1348210000001018], [6.1468469999999797, 6.158820999999989], [6.17082100000016, 6.1828299999999672], [6.1948210000000472, 6.2068209999999908], [6.2188220000000456, 6.4548220000001493], [6.4668209999999817, 6.4788210000001527], [6.4908210000000963, 6.5028220000001511], [6.5148209999999835, 6.5268210000001545], [6.5388230000000931, 6.5508210000000417], [6.5628209999999854, 6.574828000000025], [6.5868210000001, 6.5988210000000436], [6.6108209999999872, 6.6228210000001582], [6.6348210000001018, 6.6468330000000151], [6.6588240000000951, 6.67082100000016], [6.6828230000000985, 6.6948210000000472], [6.706822000000102, 6.7188200000000506], [6.9668209999999817, 6.9788210000001527], [6.9908219999999801, 7.0028210000000399], [7.0148209999999835, 7.0268210000001545], [7.0388210000000981, 7.0508210000000417], [7.0628220000000965, 7.0748220000000401], [7.0868279999999686, 7.0988210000000436], [7.1108229999999821, 7.1228230000001531], [7.1348210000001018, 7.1468220000001565], [7.158820999999989, 7.1708240000000387], [7.1828219999999874, 7.1948220000001584], [7.2068209999999908, 7.2188220000000456], [7.2308210000001054, 7.6068230000000767], [7.6188210000000254, 7.630820999999969], [7.6428220000000238, 7.6548210000000836], [7.6668210000000272, 7.6788310000001729], [7.6908300000000054, 7.7028270000000703], [7.7148220000001402, 7.7268280000000686], [7.7388220000000274, 7.7508210000000872], [7.762822000000142, 7.7748209999999744], [7.7868210000001454, 7.798821000000089], [7.8108220000001438, 7.8228209999999763], [7.8348210000001473, 7.8468230000000858], [7.8588210000000345, 7.8708209999999781], [7.8828220000000329, 7.8948219999999765], [7.9068210000000363, 7.9188209999999799], [7.9308210000001509, 7.9428210000000945], [7.9548210000000381, 7.9668209999999817], [7.9788210000001527, 7.9908210000000963], [8.0028220000001511, 8.0148220000000947], [8.0268210000001545, 8.0388210000000981], [8.0508210000000417, 8.0628220000000965], [8.0748210000001563, 8.0868210000001], [8.0988200000001598, 8.1108209999999872], [8.1228210000001582, 8.3748210000001109], [8.3868220000001656, 8.3988209999999981], [8.4108210000001691, 8.4228279999999813], [8.4348210000000563, 8.4468220000001111], [8.4588210000001709, 8.4708210000001145], [8.4828220000001693, 8.4948280000000977], [8.5068220000000565, 8.5188210000001163], [8.5308210000000599, 8.5428210000000036], [8.5548220000000583, 8.5668210000001181], [8.5788210000000618, 8.5908240000001115], [8.6028210000001764, 8.61482100000012], [8.6268220000001747, 8.6388210000000072], [8.6508210000001782, 8.6628220000000056], [8.6748210000000654, 8.686823000000004], [8.6988230000001749, 8.7108220000000074], [8.7228210000000672, 8.7348210000000108], [8.7468210000001818, 8.7588210000001254], [8.770821000000069, 9.1388240000001133], [9.150822000000062, 9.1628210000001218], [9.1748220000001766, 9.1868220000001202], [9.19882100000018, 9.2108220000000074], [9.2228210000000672, 9.2348210000000108], [9.2468220000000656, 9.2588210000001254], [9.270821000000069, 9.2828220000001238], [9.2948220000000674, 9.3068210000001272], [9.318822000000182, 9.3308210000000145], [9.3428209999999581, 9.3548210000001291], [9.3668210000000727, 9.3788220000001274], [9.3908209999999599, 9.4028210000001309]], \"3\": [[0.45569500000010521, 0.45572100000003957], [0.45573800000011033, 0.45578500000010536], [3.910823000000164, 3.9228210000001127], [3.9348210000000563, 3.9468209999999999], [3.9588210000001709, 3.9708210000001145], [3.9828210000000581, 3.9948210000000017], [4.0068210000001727, 4.0188210000001163], [4.0308210000000599, 4.0428210000000036], [4.0548210000001745, 4.0668210000001181], [4.0788210000000618, 4.0908210000000054], [4.1028200000000652, 4.1148200000000088], [4.1268210000000636, 4.1388210000000072], [4.1508210000001782, 4.1628210000001218], [4.1748210000000654, 4.186821000000009], [4.19882100000018, 4.2108210000001236], [4.2228210000000672, 4.2348210000000108], [4.2468210000001818, 4.2588210000001254], [4.270821000000069, 4.2828269999999975], [4.2948220000000674, 4.510825000000068], [4.5108330000000478, 4.8068230000001222], [4.8188210000000709, 4.8308210000000145], [4.8428209999999581, 4.8548220000000128], [4.8668210000000727, 4.8788210000000163], [4.8908209999999599, 4.9028210000001309], [4.9148210000000745, 4.9268200000001343], [4.9388200000000779, 4.9508210000001327], [4.9628199999999651, 4.9748210000000199], [4.9868209999999635, 4.9988200000000234], [5.0108210000000781, 5.0228210000000217], [5.0348200000000816, 5.0468190000001414], [5.0588199999999688, 5.0708200000001398], [5.0828200000000834, 5.094820000000027], [5.1068199999999706, 5.1188200000001416], [5.1308220000000802, 5.14282100000014], [5.1548210000000836, 5.1668210000000272], [5.1788209999999708, 5.1908220000000256], [5.2028210000000854, 5.214821000000029], [5.2268209999999726, 5.2388210000001436], [5.2508210000000872, 5.2628210000000308], [5.2748209999999744, 5.2868210000001454], [6.7268229999999676, 6.7388200000000325], [6.7508210000000872, 6.762820000000147], [6.7748200000000907, 6.7868200000000343], [6.7988199999999779, 6.8108200000001489], [6.8228209999999763, 6.8348200000000361], [6.8468210000000909, 6.8588200000001507], [6.8708209999999781, 6.8828210000001491], [6.8948210000000927, 6.9068210000000363], [6.9188209999999799, 6.9308210000001509], [6.9428219999999783, 6.9548220000001493], [9.4148219999999583, 9.4268210000000181], [9.4388209999999617, 9.4508210000001327], [9.4628210000000763, 9.4748200000001361], [9.4868209999999635, 9.4988210000001345], [9.5108210000000781, 9.5228220000001329], [9.5348209999999654, 9.5468210000001363], [9.5588210000000799, 9.5708210000000236], [9.5828209999999672, 9.5948210000001382], [9.6108410000001641, 9.6188260000001264], [9.6268420000001242, 9.6388210000000072], [9.6508210000001782, 9.6628220000000056], [9.6748210000000654, 9.6788280000000668], [9.6788430000001426, 9.6868249999999989], [9.6868400000000747, 9.6908270000001266], [9.6908450000000812, 9.6988260000000537], [9.6988440000000082, 9.9268230000000131], [9.9388209999999617, 9.9508210000001327], [9.9628210000000763, 9.9748220000001311], [9.9868209999999635, 9.9988210000001345], [10.010821000000078, 10.022821000000022], [10.034820999999965, 10.046821000000136], [10.05882100000008, 10.070822000000135], [10.082820999999967, 10.094821000000138], [10.106821000000082, 10.118821000000025], [10.130820999999969, 10.14282100000014], [10.154821000000084, 10.166821000000027], [10.178820999999971, 10.190821000000142], [10.202821000000085, 10.214821000000029], [10.226820999999973, 10.238821000000144], [10.250821000000087, 10.262821000000031], [10.274820999999974, 10.286821000000145], [10.298821000000089, 10.310822000000144], [12.494822000000113, 12.506821000000173], [12.522821000000022, 12.534820999999965], [12.546821000000136, 12.558821999999964], [12.570822000000135, 12.582820999999967], [12.594821000000138, 12.606821000000082], [12.618821000000025, 12.630820999999969], [12.64282100000014, 12.654821000000084], [12.666821000000027, 12.678822000000082], [12.690821000000142, 12.702821999999969], [12.714823000000024, 12.726820999999973], [12.738821000000144, 12.750821000000087], [12.762821000000031, 12.774820999999974], [12.786821000000145, 12.798821000000089], [12.810821000000033, 12.822820999999976], [12.834821000000147, 12.846821000000091], [12.858821000000034, 12.894830000000184], [12.895144000000073, 12.896089000000075], [12.896433000000115, 12.898834999999963], [12.898850000000039, 12.906828000000132], [12.906846999999971, 12.914827000000059], [12.914846000000125, 12.922825999999986], [12.922840000000178, 12.930825000000141], [12.930843000000095, 12.938825000000179], [12.938839000000144, 12.942827000000079], [12.942845000000034, 12.950825000000123], [12.950843000000077, 12.958825000000161], [12.958842000000004, 13.122851000000082], [13.134821999999986, 13.146821000000045], [13.1588220000001, 13.17082100000016], [13.182821000000104, 13.194821000000047], [13.206820999999991, 13.218821000000162], [13.230821000000105, 13.242823000000044], [13.254822000000104, 13.266821000000164], [13.278821000000107, 13.290820000000167], [13.302820999999994, 13.314821000000165], [13.326821000000109, 13.338822000000164], [13.350820999999996, 13.362822000000051], [13.374821000000111, 13.386821000000054], [13.398820999999998, 13.398828000000094], [13.398842000000059, 13.406826000000137], [13.406842000000097, 13.410827000000154], [13.418840000000046, 13.430821000000151], [13.442821000000095, 13.454821000000038], [13.466820999999982, 13.478820000000042]], \"4\": [[2.5028250000000298, 2.5148229999999785], [2.5268220000000383, 2.5388219999999819], [2.5508230000000367, 2.5628220000000965], [2.5748230000001513, 2.5868219999999837], [2.5988220000001547, 2.6108220000000983], [2.622822000000042, 2.6348230000000967], [2.6468230000000403, 2.6588229999999839], [2.6748430000000099, 2.678827000000183], [2.6788440000000264, 2.686828000000105], [2.7028230000000804, 2.714823000000024], [2.7268229999999676, 2.7388230000001386], [2.750829000000067, 2.7628230000000258], [12.230825000000095, 12.242823000000044], [12.254822000000104, 12.266822000000047], [12.278821999999991, 12.290822000000162], [12.302822999999989, 12.314822000000049], [12.326821999999993, 12.338822000000164], [12.350828999999976, 12.362823000000162], [12.374821999999995, 12.386822000000166], [12.398822000000109, 12.410823000000164], [12.422821999999996, 12.434823000000051], [12.446822000000111, 12.458823000000166], [12.470821999999998, 12.482823000000053]], \"5\": [[0.46286699999996017, 0.4668370000001687], [0.46685200000001714, 0.4708299999999781], [0.47086500000000342, 0.4788340000000062], [0.47885199999996075, 0.48282900000003792], [0.48284699999999248, 0.48682900000017071], [0.48684500000013031, 0.49082599999997001], [0.49084800000014184, 0.49882700000011937], [0.49884100000008402, 0.50282800000013594], [0.50284099999998944, 0.56682500000010805], [0.56683399999997164, 0.666829000000007], [0.66684400000008281, 0.67482600000016646], [0.67484000000013111, 0.67882600000007187], [0.67884400000002643, 0.68682499999999891], [0.68684200000006967, 0.85082299999999123], [0.86282200000005105, 0.87482100000011087], [0.88682100000005448, 0.89882099999999809], [0.91082100000016908, 0.92282100000011269], [0.9348210000000563, 0.94682200000011107], [0.9588210000001709, 0.97082100000011451], [0.98282100000005812, 0.99482100000000173], [1.0068210000001727, 1.0148280000000796], [1.0148420000000442, 1.0228260000001228], [1.0348240000000715, 1.0468210000001363], [1.0588210000000799, 1.0708210000000236], [1.0828220000000783, 1.0908280000001014], [1.0908540000000357, 1.4908219999999801], [1.5028210000000399, 1.5148209999999835], [1.5268210000001545, 1.5388210000000981], [1.5508210000000417, 1.5628209999999854], [1.5748210000001563, 1.5868210000001], [1.5988210000000436, 1.6108260000000882], [1.6228210000001582, 1.6348210000001018], [1.6468210000000454, 1.658820999999989], [1.6708230000001549, 1.6828230000000985], [1.6948220000001584, 1.7068209999999908], [2.0028220000001511, 2.0148209999999835], [2.0268200000000434, 2.038819999999987], [2.050820000000158, 2.0628189999999904], [2.0748190000001614, 2.0828250000001844], [2.0948210000001382, 2.1068210000000818], [2.1188200000001416, 2.1308220000000802], [2.1428220000000238, 2.1548219999999674], [2.1668210000000272, 2.1788209999999708], [2.1908210000001418, 2.2028210000000854], [2.2148220000001402, 2.2268220000000838], [2.2388210000001436, 2.2508210000000872], [2.2628210000000308, 2.2748209999999744], [2.2868210000001454, 2.2988199999999779], [2.3108210000000327, 2.3228209999999763], [2.3348210000001473, 2.3468219999999747], [2.3588210000000345, 2.3708209999999781], [2.3828280000000177, 2.3948210000000927], [2.4068210000000363, 2.4188220000000911], [2.4308210000001509, 2.4428210000000945], [2.4548210000000381, 2.4668209999999817], [2.4788220000000365, 2.4908210000000963], [2.770823000000064, 2.7828210000000126], [2.7948210000001836, 2.8068210000001272], [2.8188210000000709, 2.8308210000000145], [2.8428209999999581, 2.8548210000001291], [2.8668220000001838, 2.8788210000000163], [2.8908209999999599, 2.9028210000001309], [2.9148219999999583, 2.9268210000000181], [2.9388209999999617, 2.9508210000001327], [2.9628210000000763, 2.9748230000000149], [2.9868209999999635, 2.9988210000001345], [3.0108210000000781, 3.0228210000000217], [3.0348209999999654, 3.0468210000001363], [3.0588210000000799, 3.0708220000001347], [3.0828209999999672, 3.0948210000001382], [3.1068210000000818, 3.1188210000000254], [3.130820999999969, 3.5388219999999819], [3.550820000000158, 3.5628209999999854], [3.5748210000001563, 3.5868219999999837], [3.5988210000000436, 3.6108209999999872], [3.622820000000047, 3.6348210000001018], [3.6468210000000454, 3.658820999999989], [3.6708220000000438, 3.6828219999999874], [3.6948280000001432, 3.7068209999999908], [3.7188210000001618, 3.7308210000001054], [3.742821000000049, 3.7548209999999926], [3.7668210000001636, 3.7788210000001072], [3.7908210000000508, 3.8028220000001056], [3.8148210000001654, 3.8268210000001091], [3.8388210000000527, 3.8508209999999963], [3.8628210000001673, 3.8748219999999947], [3.8868220000001656, 3.8988220000001093], [10.322822000000087, 10.334821000000147], [10.346821000000091, 10.358821000000034], [10.370820999999978, 10.382821000000149], [10.394821000000093, 10.406821000000036], [10.41882099999998, 10.430821000000151], [10.442827999999963, 10.454823000000033], [10.466822000000093, 10.478823000000148], [10.490821000000096, 10.50282100000004], [10.514820999999984, 10.526821000000155], [10.538821000000098, 10.550822000000153], [10.562822000000097, 10.574821000000156], [10.5868210000001, 10.598821000000044], [10.610820999999987, 10.622821000000158], [10.634821000000102, 10.646821000000045], [10.658820999999989, 10.670822000000044], [10.682823000000099, 10.96282199999996], [10.97482100000002, 10.986820999999964], [10.998821000000135, 11.010821000000078], [11.022821000000022, 11.034820999999965], [11.046821000000136, 11.058821999999964], [11.070822000000135, 11.082820999999967], [11.094821000000138, 11.106825000000072], [11.118821000000025, 11.130820999999969], [11.14282100000014, 11.154821000000084], [11.166821000000027, 11.178820999999971], [11.190821000000142, 11.202821000000085], [11.214821000000029, 11.226820999999973], [11.238822000000027, 11.250821000000087], [11.262821000000031, 11.274820999999974], [11.286822000000029, 11.298821000000089], [11.310821000000033, 11.322820999999976], [11.334821000000147, 11.346821999999975], [11.358821000000034, 11.370820999999978], [11.382821000000149, 11.394821000000093], [11.406821000000036, 11.41882099999998], [11.430821000000151, 11.442821000000095], [11.454821000000038, 11.858822000000146], [11.870820999999978, 11.882821000000149], [11.894821000000093, 11.906822000000147], [11.91882099999998, 11.930821000000151], [11.942821000000095, 11.954822000000149], [11.966820999999982, 11.978826000000026], [11.990821000000096, 12.002824000000146], [12.014820999999984, 12.026821000000155], [12.038821000000098, 12.050821000000042], [12.062820999999985, 12.074821000000156], [12.086821999999984, 12.098822000000155], [12.110822000000098, 12.122821000000158], [12.134821999999986, 12.146821000000045], [12.158820999999989, 12.17082100000016], [12.182819999999992, 12.194821000000047], [12.206820999999991, 12.218821000000162], [13.482848000000104, 13.610843000000159], [13.622822000000042, 13.634821000000102], [13.634853000000021, 13.666828000000123], [13.666842999999972, 13.674826000000166], [13.674848000000111, 13.682825000000093], [13.682846000000154, 13.694826000000148], [13.694846999999982, 13.706826000000092], [13.706843000000163, 13.794829000000163], [13.794851999999992, 13.972433000000137], [13.972547999999961, 13.986829000000171], [13.986848000000009, 13.994834999999966], [13.994852000000037, 14.114848000000165], [14.11487000000011, 14.200035000000071]]}, \"task4-2262\": {\"0\": [[6.4548220000001493, 6.4668209999999817], [6.4788210000001527, 6.4908210000000963], [6.5028220000001511, 6.5148209999999835], [6.5268210000001545, 6.5388230000000931], [6.5508210000000417, 6.5628209999999854], [6.574828000000025, 6.5868210000001], [6.5988210000000436, 6.6108209999999872], [6.6228210000001582, 6.6348210000001018], [6.6468330000000151, 6.6588240000000951], [6.67082100000016, 6.6828230000000985], [6.6948210000000472, 6.706822000000102], [6.7188200000000506, 6.9668209999999817], [6.9788210000001527, 6.9908219999999801], [7.0028210000000399, 7.0148209999999835], [7.0268210000001545, 7.0388210000000981], [7.0508210000000417, 7.0628220000000965], [7.0748220000000401, 7.0868279999999686], [7.0988210000000436, 7.1108229999999821], [7.1228230000001531, 7.1348210000001018], [7.1468220000001565, 7.158820999999989], [7.1708240000000387, 7.1828219999999874], [7.1948220000001584, 7.2068209999999908], [7.2188220000000456, 7.2308210000001054], [12.850822999999991, 12.862821000000167], [12.874821000000111, 12.886820000000171], [12.898834999999963, 12.910826000000043], [12.922821999999996, 12.934822000000167], [12.946822999999995, 12.958823000000166], [12.970820000000003, 12.982820000000174], [12.994820000000118, 13.006820000000062], [13.018820000000005, 13.03082100000006], [13.046821000000136, 13.05882100000008], [13.070821000000024, 13.082820999999967], [13.094830000000002, 13.106821000000082], [13.118822000000137, 13.13082200000008]], \"3\": [[0.4558590000001459, 0.45588599999996404], [0.45599900000001981, 0.46682499999997162], [0.48282900000003792, 0.49082399999997506], [0.50682200000005651, 0.51082900000005793], [0.51084100000002763, 0.51882100000011633], [0.53482099999996535, 0.54282100000000355], [0.55882199999996374, 0.57082200000013472], [6.2148220000001402, 6.2268220000000838], [6.2388210000001436, 6.2508210000000872], [6.2628210000000308, 6.2748209999999744], [6.2868220000000292, 6.298821000000089], [6.3108210000000327, 6.3228209999999763], [6.3348210000001473, 6.3468210000000909], [6.3588210000000345, 6.3708209999999781], [6.3828210000001491, 6.3948210000000927], [6.4068210000000363, 6.4188209999999799], [6.4308210000001509, 6.4428210000000945]], \"4\": [[0.58282500000018445, 0.59482300000013311], [0.60682199999996556, 0.61882200000013654], [0.63082299999996394, 0.64282200000002376], [0.65482199999996737, 0.66682200000013836], [0.67882299999996576, 0.69082400000002053], [0.70282300000008036, 0.71482300000002397], [0.72682299999996758, 0.73882300000013856], [0.75082300000008217, 0.762822000000142], [0.77482200000008561, 0.78682300000014038], [0.79882300000008399, 0.81082200000014382], [0.82282200000008743, 0.8348230000001422], [0.84682300000008581, 1.0268300000000181], [1.0268490000000838, 1.0348280000000614], [1.0348430000001372, 1.038827000000083], [1.0388400000001639, 1.0948250000001281], [1.1068230000000767, 1.1188220000001365], [1.1228610000000572, 1.1348230000000967], [1.1468220000001565, 1.1588229999999839], [1.1708220000000438, 1.1828219999999874], [1.1948220000001584, 1.206822000000102], [1.2188310000001366, 1.2308219999999892], [1.242823000000044, 1.2548229999999876], [1.2668230000001586, 1.278821999999991], [1.2908230000000458, 1.3028220000001056], [1.3148230000001604, 1.3268219999999928], [1.3388220000001638, 1.666829000000007], [1.6668440000000828, 1.6748280000001614], [1.6748500000001059, 1.6828279999999722], [1.6828420000001643, 1.6908290000001216], [1.6908419999999751, 1.7348240000001169], [1.7468230000001768, 1.7588220000000092], [1.7708220000001802, 1.7828230000000076], [1.7948220000000674, 1.8068230000001222], [1.8188230000000658, 1.8308220000001256], [1.8428240000000642, 1.8548220000000128], [1.8668230000000676, 1.8788220000001274], [1.8908230000001822, 1.9028220000000147], [1.9148230000000694, 1.9268220000001293], [1.9388220000000729, 1.9508220000000165], [1.9628219999999601, 1.9748220000001311], [1.9868229999999585, 1.9988230000001295], [2.0108219999999619, 2.0228220000001329], [2.0348220000000765, 2.0468220000000201], [2.0588219999999637, 2.0708220000001347], [2.0828229999999621, 2.0948230000001331], [2.1068219999999656, 2.1148370000000796], [2.11486600000012, 2.5028250000000298], [2.5148229999999785, 2.5268220000000383], [2.5388219999999819, 2.5508230000000367], [2.5628220000000965, 2.5748230000001513], [2.5868219999999837, 2.5988220000001547], [2.6108220000000983, 2.622822000000042], [2.6348230000000967, 2.6468230000000403], [2.6588229999999839, 2.666829000000007], [2.6668429999999717, 2.6748280000001614], [2.6868420000000697, 2.6908260000000155], [2.6908390000000963, 2.7028230000000804], [2.714823000000024, 2.7268229999999676], [2.7388230000001386, 2.750829000000067], [2.7628230000000258, 3.1068270000000666], [3.1068420000001424, 3.2748229999999694], [3.2868230000001404, 3.2988219999999728], [3.3108220000001438, 3.3228220000000874], [3.334822000000031, 3.3468219999999747], [3.3588220000001456, 3.3708220000000892], [3.3828220000000329, 3.3948310000000674], [3.4068220000001475, 3.4188229999999749], [3.4308230000001458, 3.4428230000000895], [3.4548230000000331, 3.4668240000000878], [3.4788220000000365, 3.4908219999999801], [3.5028220000001511, 3.5148220000000947], [3.5268230000001495, 3.5388219999999819], [3.5508240000001479, 3.5548300000000381], [3.5548620000001847, 3.5668230000001131], [3.5788220000001729, 3.5908220000001165], [3.6028220000000601, 3.6148220000000038], [3.6268220000001747, 3.666829000000007], [3.6668449999999666, 3.6748280000001614], [3.6748430000000099, 3.6828270000000884], [3.682845000000043, 3.6908270000001266], [3.6908410000000913, 3.6948260000001483], [3.6948390000000018, 4.0988270000000284], [4.0988420000001042, 4.1668240000001333], [4.1788229999999658, 4.1908220000000256], [4.2028230000000804, 4.214823000000024], [4.2268220000000838, 4.2388220000000274], [4.250821999999971, 4.262822000000142], [4.2748220000000856, 4.2868290000001252], [4.298823000000084, 4.3108220000001438], [4.3228229999999712, 4.334822000000031], [4.3468219999999747, 4.3588220000001456], [4.3708220000000892, 4.3828220000000329], [4.3948230000000876, 4.538827000000083], [4.5388350000000628, 4.666829000000007], [4.6668440000000828, 4.674837000000025], [4.6748589999999695, 4.6828270000000884], [4.6828410000000531, 4.686828000000105], [4.6868409999999585, 4.9348250000000462], [4.9468229999999949, 4.9588220000000547], [4.9708239999999932, 4.9828230000000531], [4.9948220000001129, 5.0068230000001677], [5.0188220000000001, 5.0308220000001711], [5.0428220000001147, 5.0548290000001543], [5.0668230000001131, 5.0788220000001729], [5.0908220000001165, 5.1028220000000601], [5.1148220000000038, 5.122827000000143], [5.1348239999999805, 5.1468230000000403], [5.1588220000001002, 5.1708220000000438], [5.1828219999999874, 5.1948220000001584], [5.206822000000102, 5.2188220000000456], [5.2308219999999892, 5.2428220000001602], [5.2548220000001038, 5.2668220000000474], [5.278821999999991, 5.290822000000162], [5.3028229999999894, 5.3148310000001402], [5.3268219999999928, 5.3388220000001638], [5.3508229999999912, 5.362822000000051], [5.3748219999999947, 5.3868220000001656], [5.3988220000001093, 5.4108220000000529], [5.4228230000001076, 5.4348230000000513], [5.4468229999999949, 5.6828290000000834], [5.6828430000000481, 5.6908280000000104], [5.6908419999999751, 5.6988370000001396], [5.6988550000000942, 5.7068269999999757], [5.7068420000000515, 5.7108270000001085], [5.7108399999999619, 5.8308240000001206], [5.8428230000001804, 5.8548220000000128], [5.8668230000000676, 5.8788220000001274], [5.8908220000000711, 5.9028220000000147], [5.9148230000000694, 5.9268220000001293], [5.9388220000000729, 5.9508220000000165], [5.9628230000000713, 5.9748220000001311], [5.9868229999999585, 5.9988220000000183], [6.0108219999999619, 6.0228220000001329], [6.0348229999999603, 6.0468230000001313], [6.0588219999999637, 6.0708220000001347], [6.0828220000000783, 6.0948230000001331], [6.1068219999999656, 6.1148270000001048], [6.1148410000000695, 6.1268230000000585], [6.1388230000000021, 6.150822000000062], [6.1628220000000056, 6.1748230000000603], [6.186823000000004, 6.1988220000000638], [7.2388250000001335, 7.2508230000000822], [7.262822000000142, 7.2748229999999694], [7.2868230000001404, 7.2988219999999728], [7.3108220000001438, 7.3228229999999712], [7.334822000000031, 7.3468219999999747], [7.3588280000001305, 7.370822999999973], [7.382823000000144, 7.3948230000000876], [7.4068230000000312, 7.4188220000000911], [7.4308230000001458, 7.4428239999999732], [7.4548230000000331, 7.4668229999999767], [7.4788220000000365, 7.4908219999999801], [7.5028220000001511, 7.5148220000000947], [7.5268220000000383, 7.5388230000000931], [7.5508220000001529, 7.5628220000000965], [7.5748240000000351, 7.5868230000000949], [7.5988220000001547, 7.6108220000000983], [7.6228230000001531, 7.678829000000178], [7.6788430000001426, 7.686828000000105], [7.6868420000000697, 7.6908280000000104], [7.6908450000000812, 7.6988280000000486], [7.6988420000000133, 7.7028259999999591], [7.7028380000001562, 8.0988280000001396], [8.0988420000001042, 8.1348239999999805], [8.1468230000000403, 8.1588220000001002], [8.1708220000000438, 8.1828219999999874], [8.1948220000001584, 8.206822000000102], [8.2188230000001568, 8.2308230000001004], [8.2428220000001602, 8.2548220000001038], [8.2668230000001586, 8.278821999999991], [8.290822000000162, 8.3028220000001056], [8.3148220000000492, 8.3268219999999928], [8.3388220000001638, 8.3508220000001074], [8.362822000000051, 8.5388259999999718], [8.5388330000000678, 8.6748290000000452], [8.6748509999999897, 8.678829000000178], [8.6788430000001426, 8.686828000000105], [8.6868430000001808, 8.6908270000001266], [8.6908450000000812, 8.6988270000001648], [8.6988420000000133, 8.7068269999999757], [8.7068400000000565, 8.7828240000001188], [8.7948230000001786, 8.8068230000001222], [8.818824000000177, 8.8308220000001256], [8.8428220000000692, 8.8548220000000128], [8.8668220000001838, 8.8788220000001274], [8.8908220000000711, 8.9028230000001258], [8.9148219999999583, 8.9268220000001293], [8.9388220000000729, 8.9508220000000165], [8.9628219999999601, 8.9748220000001311], [8.9868220000000747, 8.9908290000000761], [8.990842000000157, 8.9988280000000032], [9.006842000000006, 9.0188230000001113], [9.0308230000000549, 9.122827000000143], [9.1228550000000723, 9.5468230000001313], [9.5588230000000749, 9.5708230000000185], [9.5828229999999621, 9.5948220000000219], [9.6068239999999605, 9.6188230000000203], [9.6308240000000751, 9.6428220000000238], [9.6548230000000785, 9.6668300000001182], [9.6788229999999658, 9.6908230000001367], [9.7028230000000804, 9.7148220000001402], [9.7268229999999676, 9.7388220000000274], [9.750821999999971, 9.7628230000000258], [9.7748220000000856, 10.114827999999989], [10.114864000000125, 10.182825000000093], [10.194823000000042, 10.206822000000102], [10.218822000000046, 10.230821999999989], [10.24282200000016, 10.254822999999988], [10.266822000000047, 10.278821999999991], [10.290823000000046, 10.302822000000106], [10.31482300000016, 10.326821999999993], [10.338823000000048, 10.350822000000107], [10.362822000000051, 10.374821999999995], [10.386822000000166, 10.398822000000109], [10.410822000000053, 10.470823999999993], [10.470882000000074, 10.690845000000081], [10.698845000000119, 10.710823000000119], [10.722823000000062, 10.734823000000006], [10.746822000000066, 10.758822000000009], [10.770823000000064, 10.782823000000008], [10.794822000000067, 10.806822000000011], [10.818830000000162, 10.830823000000009], [10.842822000000069, 10.854822000000013], [10.866822000000184, 10.878822000000127], [10.890823000000182, 10.902823000000126], [10.914823000000069, 10.926823000000013], [10.938822000000073, 10.950822000000016], [11.462824000000182, 11.474822000000131], [11.486822000000075, 11.498823000000129], [11.510821999999962, 11.522823000000017], [11.534822000000077, 11.54682200000002], [11.558821999999964, 11.570822000000135], [11.582829000000174, 11.594823000000133], [11.606823000000077, 11.618822000000137], [11.63082200000008, 11.642822000000024], [11.654823000000079, 11.666823000000022], [11.678822000000082, 11.678830000000062], [11.678844000000026, 11.686828000000105], [11.694844999999987, 11.70282700000007], [11.714823000000024, 11.726822000000084], [11.738823000000139, 11.750823000000082], [11.762823000000026, 11.774822999999969], [11.78682300000014, 11.798821999999973], [11.810823000000028, 11.822822000000087], [11.834822000000031, 11.846823000000086]], \"5\": [[10.96282199999996, 10.97482100000002], [10.986820999999964, 10.998821000000135], [11.010821000000078, 11.022821000000022], [11.034820999999965, 11.046821000000136], [11.058821999999964, 11.070822000000135], [11.082820999999967, 11.094821000000138], [11.106843000000026, 11.118821000000025], [11.130820999999969, 11.14282100000014], [11.154821000000084, 11.166821000000027], [11.178820999999971, 11.190821000000142], [11.202821000000085, 11.214821000000029], [11.226820999999973, 11.238822000000027], [11.250821000000087, 11.262821000000031], [11.274820999999974, 11.286822000000029], [11.298821000000089, 11.310821000000033], [11.322820999999976, 11.334821000000147], [11.346821999999975, 11.358821000000034], [11.370820999999978, 11.382821000000149], [11.394821000000093, 11.406821000000036], [11.41882099999998, 11.430821000000151], [11.442821000000095, 11.454821000000038], [11.858822000000146, 11.870820999999978], [11.882821000000149, 11.894821000000093], [11.906822000000147, 11.91882099999998], [11.930821000000151, 11.942821000000095], [11.954822000000149, 11.966820999999982], [11.978826000000026, 11.990821000000096], [12.002824000000146, 12.014820999999984], [12.026821000000155, 12.038821000000098], [12.050821000000042, 12.062820999999985], [12.074821000000156, 12.086821999999984], [12.098822000000155, 12.110822000000098], [12.122821000000158, 12.134821999999986], [12.146821000000045, 12.158820999999989], [12.17082100000016, 12.182819999999992], [12.194821000000047, 12.206820999999991], [12.218821000000162, 12.566823999999997], [12.566831999999977, 12.626822000000175], [12.638821000000007, 12.650821000000178], [12.662821000000122, 12.674821000000065], [12.68682200000012, 12.698823000000175], [12.710823000000119, 12.722822000000178], [12.734822000000122, 12.746826000000056], [12.758821000000125, 12.770821000000069], [12.782821000000013, 12.794821000000184], [12.806821000000127, 12.81881999999996], [12.830821000000014, 12.842820999999958], [13.138822000000118, 13.150821000000178], [13.162821000000122, 13.174821000000065], [13.186821000000009, 13.19882100000018], [13.210821000000124, 13.222822000000178], [13.234822000000122, 13.246821000000182], [13.258821000000125, 13.27082200000018], [13.282821000000013, 13.294821000000184], [13.306821000000127, 13.318821000000071], [13.330821000000014, 13.342822000000069], [13.354821000000129, 13.482351999999992], [13.482375000000047, 13.482477000000017]]}, \"task1-2259\": {\"0\": [[0.4559830000000602, 0.45600300000000971], [0.45601200000010067, 0.56282299999998031], [0.57482200000004013, 0.58682199999998375], [0.59882000000015978, 0.61082000000010339], [0.622820000000047, 0.63481999999999061], [0.6468200000001616, 0.65882000000010521], [0.67082400000003872, 0.6828250000000935], [0.69482100000004721, 0.70682099999999082], [0.71882000000005064, 0.7308219999999892], [0.74282000000016524, 0.75482000000010885], [0.76682000000005246, 0.77881999999999607], [0.79082000000016706, 0.80282000000011067], [0.81482100000016544, 0.82681999999999789], [1.0788220000001729, 1.0908210000000054], [1.1028210000001764, 1.11482100000012], [1.1268210000000636, 1.1388200000001234], [1.150820000000067, 1.1548330000000533], [1.1668210000000272, 1.1788209999999708], [1.1908300000000054, 1.2028210000000854], [1.2148220000001402, 1.2268209999999726], [1.2388210000001436, 1.2508210000000872], [1.2628240000001369, 1.2748209999999744], [1.2868210000001454, 1.298821000000089], [1.3108210000000327, 1.3228209999999763], [1.3348210000001473, 1.3468210000000909], [1.3588210000000345, 1.3708209999999781], [1.3828210000001491, 1.3948210000000927], [1.4068210000000363, 1.4188209999999799], [1.4308210000001509, 1.4428210000000945], [1.4548290000000179, 1.4668209999999817], [1.4788200000000415, 1.714823000000024], [1.7268209999999726, 1.7388210000001436], [1.7508199999999761, 1.762820000000147], [1.7748200000000907, 1.7868200000000343], [1.7988199999999779, 1.8108200000001489], [1.8228200000000925, 1.8348200000000361], [1.8468199999999797, 1.8588200000001507], [1.8708200000000943, 1.8828200000000379], [1.8948219999999765, 1.9068200000001525], [1.9188200000000961, 1.9308200000000397], [1.9428210000000945, 1.9548200000001543], [1.9668200000000979, 1.9788200000000415], [1.9908199999999852, 2.354823000000124], [2.3668210000000727, 2.3788220000001274], [2.3908209999999599, 2.4028210000001309], [2.4148199999999633, 2.4268210000000181], [2.4388209999999617, 2.4508210000001327], [2.4628210000000763, 2.4748210000000199], [2.4868209999999635, 2.4988220000000183], [2.5108210000000781, 2.5228210000000217], [2.5348209999999654, 2.5468220000000201], [2.5588210000000799, 2.5708210000000236], [2.5828209999999672, 2.5948210000001382], [2.6068210000000818, 2.6188210000000254], [2.8708220000000892, 2.8828220000000329], [2.8948219999999765, 2.9068210000000363], [2.9188209999999799, 2.9308210000001509], [2.9428210000000945, 2.9548210000000381], [2.9668220000000929, 2.9788210000001527], [2.990827999999965, 3.0028210000000399], [3.0148209999999835, 3.0268220000000383], [3.0388210000000981, 3.0508210000000417], [3.0628209999999854, 3.0748220000000401], [3.0868210000001, 3.0988210000000436], [3.110828999999967, 3.1228210000001582], [3.1348219999999856, 3.1468220000001565], [3.158820999999989, 3.1708240000000387], [3.1828199999999924, 3.1948210000000472], [3.206822000000102, 3.2188210000001618], [3.2308210000001054, 3.242821000000049], [3.2548209999999926, 3.2668210000001636], [3.6388210000000072, 3.6508210000001782], [3.6628210000001218, 3.6748230000000603], [3.6868249999999989, 3.6988220000000638], [3.7108220000000074, 3.7228210000000672], [3.7348210000000108, 3.7468210000001818], [3.7588290000001052, 3.770821000000069], [3.7828220000001238, 3.7948210000001836], [3.8068210000001272, 3.8188210000000709], [3.8308210000000145, 3.8428209999999581], [3.8548220000000128, 3.8668210000000727], [3.8788300000001072, 3.8908209999999599], [3.9028220000000147, 3.9148219999999583], [3.9268210000000181, 3.9388209999999617], [3.9508210000001327, 3.9628210000000763], [3.9748210000000199, 3.9868209999999635], [3.9988210000001345, 4.0108210000000781], [4.0228210000000217, 4.0348209999999654], [4.0468210000001363, 4.0588210000000799], [4.0708210000000236, 4.0828209999999672], [4.0948220000000219, 4.1068210000000818], [4.1188210000000254, 4.130820999999969], [4.14282100000014, 4.1548210000000836], [4.4068210000000363, 4.4188209999999799], [4.4348210000000563, 4.4468229999999949], [4.4588210000001709, 4.4708210000001145], [4.4828210000000581, 4.4948210000000017], [4.5068210000001727, 4.5188220000000001], [4.5308210000000599, 4.5428210000000036], [4.5548210000001745, 4.5668210000001181], [4.5788210000000618, 4.5908210000000054], [4.6028210000001764, 4.61482100000012], [4.6268210000000636, 4.6388210000000072], [4.650822000000062, 4.6628210000001218], [4.6748220000001766, 4.6868300000001], [4.69882100000018, 4.7108210000001236], [4.7228210000000672, 4.7348210000000108], [4.7468220000000656, 4.7588210000001254], [4.770821000000069, 4.7828300000001036], [4.7948210000001836, 5.1228410000001077], [5.1228630000000521, 5.298823000000084], [5.3108210000000327, 5.3228220000000874], [5.3348210000001473, 5.3468210000000909], [5.3588240000001406, 5.3708209999999781], [5.3828220000000329, 5.3948210000000927], [5.4068210000000363, 5.4188220000000911], [5.4308210000001509, 5.4428219999999783], [5.4548210000000381, 5.4668209999999817], [5.4788210000001527, 5.4908210000000963], [5.5028210000000399, 5.5148209999999835], [5.5268210000001545, 5.5388210000000981], [5.5508210000000417, 5.5628209999999854], [5.9428230000000895, 5.9548200000001543], [5.9668209999999817, 5.9788210000001527], [5.9908199999999852, 6.0028200000001561], [6.0148209999999835, 6.0268200000000434], [6.0388239999999769, 6.050820000000158], [6.0628280000000814, 6.0748220000000401], [6.0868199999999888, 6.0988210000000436], [6.1108200000001034, 6.1228210000001582], [6.1348210000001018, 6.1468290000000252], [6.158820999999989, 6.17082100000016], [6.1828299999999672, 6.1948210000000472], [6.2068209999999908, 6.2188220000000456], [7.6068230000000767, 7.6188210000000254], [7.630820999999969, 7.6428220000000238], [7.6548210000000836, 7.6668210000000272], [7.6788310000001729, 7.6908300000000054], [7.7028270000000703, 7.7148220000001402], [7.7268280000000686, 7.7388220000000274], [7.7508210000000872, 7.762822000000142], [7.7748209999999744, 7.7868210000001454], [7.798821000000089, 7.8108220000001438], [7.8228209999999763, 7.8348210000001473], [7.8468230000000858, 7.8588210000000345], [7.8708209999999781, 7.8828220000000329], [7.8948219999999765, 7.9068210000000363], [7.9188209999999799, 7.9308210000001509], [7.9428210000000945, 7.9548210000000381], [7.9668209999999817, 7.9788210000001527], [7.9908210000000963, 8.0028220000001511], [8.0148220000000947, 8.0268210000001545], [8.0388210000000981, 8.0508210000000417], [8.0628220000000965, 8.0748210000001563], [8.0868210000001, 8.0988200000001598], [8.1108209999999872, 8.1228210000001582], [8.3748210000001109, 8.3868220000001656], [8.3988209999999981, 8.4108210000001691], [8.4228359999999611, 8.4348210000000563], [8.4468220000001111, 8.4588210000001709], [8.4708210000001145, 8.4828220000001693], [8.4948280000000977, 8.5068220000000565], [8.5188210000001163, 8.5308210000000599], [8.5428210000000036, 8.5548220000000583], [8.5668210000001181, 8.5788210000000618], [8.5908240000001115, 8.6028210000001764], [8.61482100000012, 8.6268220000001747], [8.6388210000000072, 8.6508210000001782], [8.6628220000000056, 8.6748210000000654], [8.686823000000004, 8.6988230000001749], [8.7108220000000074, 8.7228210000000672], [8.7348210000000108, 8.7468210000001818], [8.7588210000001254, 8.770821000000069], [9.7868220000000292, 9.7988219999999728], [9.8108210000000327, 9.8228209999999763], [9.8348210000001473, 9.8468210000000909], [9.8588220000001456, 9.8708209999999781], [9.8828210000001491, 9.8948210000000927], [9.9068220000001475, 9.9188209999999799], [9.9308210000001509, 9.9428210000000945], [9.9548210000000381, 9.9668209999999817], [9.9788210000001527, 9.9908219999999801], [10.00282100000004, 10.014820999999984], [10.026821000000155, 10.038821000000098], [10.050821000000042, 10.062822000000097], [10.074821000000156, 10.0868210000001], [10.098821000000044, 10.110820999999987], [10.126821000000064, 10.138821000000007], [10.150821000000178, 10.162822000000006], [10.174821000000065, 10.422821000000113], [10.434832000000142, 10.446822999999995], [10.458823000000166, 10.470825999999988], [10.482822000000169, 10.494822000000113], [10.506822000000057, 10.518820000000005], [10.530822000000171, 10.542828999999983], [10.554822000000058, 10.566821000000118], [10.578821000000062, 10.590821000000005], [10.60282200000006, 10.61482100000012], [10.626822000000175, 10.638822000000118], [10.650822000000062, 10.662821000000122], [10.674821000000065, 10.686824000000115], [10.698823000000175, 10.710821000000124], [10.722821000000067, 10.734822000000122], [10.746821000000182, 10.758821000000125], [10.770821000000069, 10.782821000000013], [10.794822000000067, 10.806822000000011], [10.818821000000071, 11.058823000000075], [11.070822000000135, 11.082822000000078], [11.094821000000138, 11.106821000000082], [11.118822000000137, 11.130820999999969], [11.14282100000014, 11.154821000000084], [11.166821000000027, 11.170830000000024], [11.170849999999973, 11.182827999999972], [11.194822000000158, 11.206820999999991], [11.218821000000162, 11.230821000000105], [11.242821000000049, 11.254820999999993], [11.266821000000164, 11.278821000000107], [11.290821000000051, 11.302820999999994], [11.314821000000165, 11.326821000000109], [11.57482200000004, 11.586819999999989], [11.598821000000044, 11.610820000000103], [11.622820000000047, 11.634821000000102], [11.646820000000162, 11.658820000000105], [11.67082100000016, 11.682823000000099], [11.694831000000022, 11.706822000000102], [11.718820000000051, 11.730821000000105], [11.742820000000165, 11.754820000000109], [11.766820000000052, 11.778819999999996], [11.790820000000167, 11.802820000000111], [11.814821000000165, 11.826821000000109], [11.838820000000169, 12.086821999999984], [12.098821000000044, 12.110820999999987], [12.122822000000042, 12.134821999999986], [12.146821000000045, 12.158820999999989], [12.162847000000056, 12.174821000000065], [12.18682200000012, 12.198822000000064], [12.210822000000007, 12.222821000000067], [12.234820000000127, 12.246822000000066], [12.258820000000014, 12.270821000000069], [12.282820000000129, 12.294820000000072], [12.306820000000016, 12.31881999999996], [12.330821000000014, 12.342820000000074], [12.354820000000018, 12.366821000000073], [12.378820000000132, 12.390820000000076], [12.40282000000002, 12.414819999999963], [12.434821000000056, 12.446822000000111], [12.458822000000055, 12.470821999999998], [12.482821000000058, 12.494821000000002], [12.506821000000173, 12.518821000000116], [12.53082100000006, 12.542821000000004], [12.554822000000058, 12.566822000000002], [12.578821000000062, 12.590821000000005], [12.602821000000176, 12.614820000000009], [13.362823000000162, 13.374821000000111], [13.386822000000166, 13.398830999999973], [13.410829000000149, 13.422825999999986], [13.434821000000056, 13.446821], [13.458821000000171, 13.470821999999998], [13.482825000000048, 13.494822000000113], [13.506822000000057, 13.518821000000116], [13.53082100000006, 13.542821000000004], [13.554821000000175, 13.566821000000118], [13.578821000000062, 13.590822000000117], [13.602828000000045, 13.706826999999976], [13.706842000000051, 13.81482700000015], [13.81483900000012, 13.878822000000127], [13.89082099999996, 13.902821000000131], [13.914821000000074, 13.926821000000018], [13.938820999999962, 13.950821000000133], [13.962821000000076, 13.97482100000002]], \"3\": [[0.83882300000004761, 0.85082000000011249], [0.86282100000016726, 0.87482100000011087], [0.88682100000005448, 0.89882200000010926], [0.91082100000016908, 0.92282100000011269], [0.9348210000000563, 0.94682099999999991], [0.9588210000001709, 0.97082100000011451], [0.98282100000005812, 0.99482100000000173], [1.0068210000001727, 1.0188230000001113], [1.0308220000001711, 1.0428229999999985], [1.0548210000001745, 1.0668210000001181], [2.6308229999999639, 2.64282100000014], [2.6548210000000836, 2.6668210000000272], [2.6788209999999708, 2.6908200000000306], [2.7028219999999692, 2.714821000000029], [2.7268209999999726, 2.7388220000000274], [2.7508210000000872, 2.7628210000000308], [2.7748209999999744, 2.7868210000001454], [2.7988219999999728, 2.8108210000000327], [2.8228209999999763, 2.8348210000001473], [2.8468210000000909, 2.8588210000000345], [5.5748230000001513, 5.5868210000001], [5.5988210000000436, 5.6028270000001612], [5.61482100000012, 5.6268200000001798], [5.6308390000001509, 5.64282100000014], [5.6548210000000836, 5.6668210000000272], [5.6788209999999708, 5.6908230000001367], [5.7028219999999692, 5.714823000000024], [5.7268209999999726, 5.7388210000001436], [5.7508210000000872, 5.7628210000000308], [5.7748209999999744, 5.7868210000001454], [5.7988219999999728, 5.8108220000001438], [5.8228220000000874, 5.8348210000001473], [5.8468199999999797, 5.8588200000001507], [5.8708200000000943, 5.8828200000000379], [5.8948210000000927, 5.9068200000001525], [5.9188200000000961, 5.9308200000000397], [7.3708209999999781, 7.3828210000001491], [7.3948210000000927, 7.4068210000000363], [7.4188209999999799, 7.4308210000001509], [7.4428210000000945, 7.4548210000000381], [7.4668209999999817, 7.4788210000001527], [7.4908290000000761, 7.5028210000000399], [7.5148209999999835, 7.5268210000001545], [7.5388210000000981, 7.5508220000001529], [7.5628209999999854, 7.5748200000000452], [7.5868210000001, 7.5988210000000436], [11.334823000000142, 11.346821999999975], [11.358821000000034, 11.370820999999978], [11.382821000000149, 11.394821000000093], [11.406821000000036, 11.418822000000091], [11.430822000000035, 11.442821999999978], [11.454821000000038, 11.466820000000098], [11.478820000000042, 11.490819999999985], [11.502820000000156, 11.5148200000001], [11.526821000000155, 11.538819999999987], [11.550820000000158, 11.562820000000102]], \"4\": [[3.2748229999999694, 3.2868230000001404], [3.2988219999999728, 3.3108220000001438], [3.3228220000000874, 3.334822000000031], [3.3468219999999747, 3.3588220000001456], [3.3708220000000892, 3.3828220000000329], [3.3948310000000674, 3.4068220000001475], [3.4188229999999749, 3.4308230000001458], [3.4428230000000895, 3.4548230000000331], [3.4668240000000878, 3.4788220000000365], [3.4908219999999801, 3.5028220000001511], [3.5148220000000947, 3.5268230000001495], [3.5388219999999819, 3.5508240000001479], [3.5668230000001131, 3.5788220000001729], [3.5908220000001165, 3.6028220000000601], [3.6148220000000038, 3.6268220000001747], [4.1668240000001333, 4.1788229999999658], [4.1908220000000256, 4.2028230000000804], [4.214823000000024, 4.2268220000000838], [4.2388220000000274, 4.250821999999971], [4.262822000000142, 4.2748220000000856], [4.2868290000001252, 4.298823000000084], [4.3108220000001438, 4.3228229999999712], [4.334822000000031, 4.3468219999999747], [4.3588220000001456, 4.3708220000000892], [4.3828220000000329, 4.3948230000000876], [8.1348239999999805, 8.1468230000000403], [8.1588220000001002, 8.1708220000000438], [8.1828219999999874, 8.1948220000001584], [8.206822000000102, 8.2188230000001568], [8.2308230000001004, 8.2428220000001602], [8.2548220000001038, 8.2668230000001586], [8.278821999999991, 8.290822000000162], [8.3028220000001056, 8.3148220000000492], [8.3268219999999928, 8.3388220000001638], [8.3508220000001074, 8.362822000000051], [8.7828240000001188, 8.7948230000001786], [8.8068230000001222, 8.818824000000177], [8.8308220000001256, 8.8428220000000692], [8.8548220000000128, 8.8668220000001838], [8.8788220000001274, 8.8908220000000711], [8.9028230000001258, 8.9148219999999583], [8.9268220000001293, 8.9388220000000729], [8.9508220000000165, 8.9628219999999601], [8.9748220000001311, 8.9868220000000747], [8.9988490000000638, 9.0068280000000414], [9.0188230000001113, 9.0308230000000549], [9.5468230000001313, 9.5588230000000749], [9.5708230000000185, 9.5828229999999621], [9.5948220000000219, 9.6068239999999605], [9.6188230000000203, 9.6308240000000751], [9.6428220000000238, 9.6548230000000785], [9.6668300000001182, 9.6788229999999658], [9.6908230000001367, 9.7028230000000804], [9.7148220000001402, 9.7268229999999676], [9.7388220000000274, 9.750821999999971], [9.7628230000000258, 9.7748220000000856], [13.978839999999991, 13.982831000000033], [13.982846000000109, 14.114827000000105], [14.114867000000004, 15.106828000000178], [15.106858999999986, 15.285031000000117]], \"5\": [[0.45545800000013514, 0.45550300000013522], [0.45553400000017064, 0.45558600000003935], [0.4555960000000141, 0.45562300000005962], [6.2308210000001054, 6.242821000000049], [6.2548209999999926, 6.2668210000001636], [6.278821999999991, 6.2908210000000508], [6.3028209999999945, 6.3148210000001654], [6.3268210000001091, 6.3388210000000527], [6.3508280000000923, 6.3628210000001673], [6.3748210000001109, 6.3868210000000545], [6.3988209999999981, 6.4108210000001691], [6.4228210000001127, 6.4348210000000563], [6.4468220000001111, 6.4588230000001658], [6.4708210000001145, 6.4828210000000581], [6.4948200000001179, 6.5068210000001727], [6.5188210000001163, 6.5308220000001711], [6.5428210000000036, 6.5548210000001745], [6.5668210000001181, 6.5788210000000618], [6.5908220000001165, 6.6708290000001398], [6.6708430000001044, 6.6788280000000668], [6.6788420000000315, 6.6868260000001101], [6.6868400000000747, 6.6948250000000371], [6.6948429999999917, 6.7028250000000753], [6.7028410000000349, 6.8668220000001838], [6.8788210000000163, 6.8908220000000711], [6.9028210000001309, 6.9148210000000745], [6.9268210000000181, 6.938823000000184], [6.9508220000000165, 6.9628219999999601], [6.9748210000000199, 6.9868260000000646], [6.9988210000001345, 7.0108210000000781], [7.0228210000000217, 7.0348209999999654], [7.0468210000001363, 7.0588210000000799], [7.0708210000000236, 7.0828209999999672], [7.0948210000001382, 7.1068219999999656], [7.1148480000001655, 7.1228260000000319], [7.1348210000001018, 7.1468220000001565], [7.158820999999989, 7.17082100000016], [7.1828210000001036, 7.1948210000000472], [7.2068209999999908, 7.2188200000000506], [7.2308210000001054, 7.2428200000001652], [7.2548209999999926, 7.2668200000000525], [7.2788199999999961, 7.2908200000001671], [7.3028200000001107, 7.3148200000000543], [7.3268210000001091, 7.3388210000000527], [7.3508200000001125, 7.3628200000000561], [9.0428220000001147, 9.0548210000001745], [9.0668210000001181, 9.0788210000000618], [9.0908210000000054, 9.1028210000001764], [9.11482100000012, 9.1268190000000686], [9.1388220000001184, 9.150822000000062], [9.1628210000001218, 9.1748210000000654], [9.186821000000009, 9.1988220000000638], [9.2108210000001236, 9.2228210000000672], [9.234822000000122, 9.2468220000000656], [9.2588210000001254, 9.270821000000069], [9.2828210000000126, 9.2948210000001836], [9.3068210000001272, 9.3188210000000709], [9.3308220000001256, 9.3428209999999581], [9.3548210000001291, 9.3668210000000727], [9.3788210000000163, 9.3908209999999599], [9.4028210000001309, 9.4148210000000745], [9.4268220000001293, 9.4388209999999617], [9.4508210000001327, 9.4628210000000763], [9.4748210000000199, 9.4868209999999635], [9.4988210000001345, 9.5108210000000781], [9.5228210000000217, 9.5348209999999654], [12.626822000000175, 12.638821000000007], [12.650821000000178, 12.662821000000122], [12.674821000000065, 12.68682200000012], [12.698823000000175, 12.710823000000119], [12.722822000000178, 12.734822000000122], [12.746826000000056, 12.758821000000125], [12.770821000000069, 12.782821000000013], [12.794821000000184, 12.806821000000127], [12.81881999999996, 12.830821000000014], [12.842820999999958, 13.138822000000118], [13.150821000000178, 13.162821000000122], [13.174821000000065, 13.186821000000009], [13.19882100000018, 13.210821000000124], [13.222822000000178, 13.234822000000122], [13.246821000000182, 13.258821000000125], [13.27082200000018, 13.282821000000013], [13.294821000000184, 13.306821000000127], [13.318821000000071, 13.330821000000014], [13.342822000000069, 13.354821000000129]]}, \"kworker/0:1-562\": {\"0\": [[1.1548330000000533, 1.1548549999999977], [5.1228410000001077, 5.1228630000000521], [6.1468290000000252, 6.1468469999999797], [10.114851000000044, 10.114872999999989], [11.170830000000024, 11.170849999999973], [11.494826999999987, 11.494841000000179], [12.162829000000102, 12.162847000000056], [13.034830000000056, 13.034844000000021], [13.706826999999976, 13.706842000000051], [13.81482700000015, 13.81483900000012], [14.114839999999958, 14.11486200000013], [14.434827000000041, 14.434840000000122], [15.170978000000105, 15.170999000000165], [16.066847000000053, 16.066868000000113], [16.162933000000066, 16.162970000000087]]}, \"kworker/u12:2-2112\": {\"4\": [[16.118294999999989, 16.118310000000065], [16.11832400000003, 16.118335000000116], [16.118347999999969, 16.118359000000055], [16.118371000000025, 16.118380999999999], [16.11839400000008, 16.118405000000166], [16.118705000000091, 16.118713000000071], [16.118727000000035, 16.11875299999997], [16.118766000000051, 16.118776000000025], [16.118789000000106, 16.118801000000076], [16.118817000000035, 16.118828000000121], [16.119005000000016, 16.119012000000112], [16.167053000000124, 16.167077000000063], [16.16743600000018, 16.167457000000013], [16.17730900000015, 16.1773290000001], [16.332122000000027, 16.332139999999981], [16.332358999999997, 16.332384000000047], [16.332393000000138, 16.332403999999997], [16.332413000000088, 16.332425000000057], [16.332434000000148, 16.332444000000123], [16.332458000000088, 16.332477000000154], [16.332647000000179, 16.332659000000149], [16.332829000000174, 16.332837000000154], [16.382522000000108, 16.382550000000037], [16.382847000000083, 16.382888999999977]]}, \"sudo-2249\": {\"1\": [[0.0013380000000324799, 0.0020380000000841392]]}, \"kworker/1:1H-1201\": {\"1\": [[1.2569310000001224, 1.2569390000001022], [1.2593320000000858, 1.2593400000000656], [14.308387000000039, 14.308397000000014], [14.309989000000087, 14.309993999999961]]}, \"udhcpc-2264\": {\"1\": [[12.896506000000045, 12.89654100000007]], \"2\": [[12.896632000000182, 12.898977000000059]]}, \"syslogd-1412\": {\"1\": [[16.172887000000173, 16.172952000000123]], \"2\": [[16.388081000000057, 16.388128000000052]], \"5\": [[15.740608000000066, 15.740741000000071]]}, \"default.script-2264\": {\"1\": [[12.898993000000019, 12.900041000000101]]}, \"kworker/3:1-448\": {\"3\": [[1.1268290000000434, 1.126852000000099], [2.1148410000000695, 2.1148600000001352], [5.6028270000001612, 5.6028440000000046], [5.6308260000000701, 5.6308390000001509], [13.122851000000082, 13.122873000000027], [14.114827000000105, 14.114845000000059], [15.106924000000163, 15.106956999999966], [16.167001000000027, 16.167030000000068]]}, \"khugepaged-407\": {\"4\": [[0.4556880000000092, 0.45572900000001937], [0.45574099999998907, 0.4557710000001407], [10.470823999999993, 10.470882000000074]]}, \"kworker/5:1-1007\": {\"5\": [[1.0908280000001014, 1.0908540000000357], [2.0828250000001844, 2.082843000000139], [10.114859000000024, 10.114880000000085], [11.106825000000072, 11.106843000000026], [14.114848000000165, 14.11487000000011], [15.202919000000065, 15.202938000000131], [16.17491300000006, 16.174938000000111]]}, \"init-1\": {\"1\": [[0.056854000000157612, 0.056884999999965657], [5.0619040000001405, 5.0619560000000092], [10.066964999999982, 10.067015999999967], [15.072090000000117, 15.072133000000122]]}, \"kworker/2:1-1008\": {\"2\": [[1.1549509999999827, 1.1549780000000283], [2.1149390000000494, 2.1149680000000899], [3.3949320000001535, 3.3949540000000979], [13.122929000000113, 13.122954000000163], [14.370935000000145, 14.370949999999993], [16.175038000000086, 16.175054000000046]]}, \"task2-2260\": {\"0\": [[0.56282299999998031, 0.57482200000004013], [0.58682199999998375, 0.59882000000015978], [0.61082000000010339, 0.622820000000047], [0.63481999999999061, 0.6468200000001616], [0.65882000000010521, 0.67082400000003872], [0.6828250000000935, 0.69482100000004721], [0.70682099999999082, 0.71882000000005064], [0.7308219999999892, 0.74282000000016524], [0.75482000000010885, 0.76682000000005246], [0.77881999999999607, 0.79082000000016706], [0.80282000000011067, 0.81482100000016544], [0.82681999999999789, 1.0788220000001729], [1.0908210000000054, 1.1028210000001764], [1.11482100000012, 1.1268210000000636], [1.1388200000001234, 1.150820000000067], [1.1548549999999977, 1.1668210000000272], [1.1788209999999708, 1.1908300000000054], [1.2028210000000854, 1.2148220000001402], [1.2268209999999726, 1.2388210000001436], [1.2508210000000872, 1.2628240000001369], [1.2748209999999744, 1.2868210000001454], [1.298821000000089, 1.3108210000000327], [1.3228209999999763, 1.3348210000001473], [1.3468210000000909, 1.3588210000000345], [1.3708209999999781, 1.3828210000001491], [1.3948210000000927, 1.4068210000000363], [1.4188209999999799, 1.4308210000001509], [1.4428210000000945, 1.4548290000000179], [1.4668209999999817, 1.4788200000000415]], \"3\": [[0.46682499999997162, 0.47482500000000982], [0.49082399999997506, 0.49882200000001831], [0.51882100000011633, 0.52682100000015453], [0.54282100000000355, 0.55082100000004175], [3.1428230000001349, 3.1548210000000836], [3.1668210000000272, 3.1788209999999708], [3.1908210000001418, 3.2028210000000854], [3.214821000000029, 3.2268209999999726], [3.2388210000001436, 3.2508210000000872], [3.2628210000000308, 3.2748209999999744], [3.2868210000001454, 3.298821000000089], [3.3108210000000327, 3.3228209999999763], [3.3348210000001473, 3.3468210000000909], [3.3588210000000345, 3.3708209999999781], [3.3828210000001491, 3.3948219999999765], [3.4068210000000363, 3.4188209999999799], [3.4308210000001509, 3.4428210000000945], [3.4548210000000381, 3.4668200000000979], [3.4788210000001527, 3.4908210000000963], [3.5028210000000399, 3.5148280000000796], [3.5268220000000383, 3.910823000000164], [3.9228210000001127, 3.9348210000000563], [3.9468209999999999, 3.9588210000001709], [3.9708210000001145, 3.9828210000000581], [3.9948210000000017, 4.0068210000001727], [4.0188210000001163, 4.0308210000000599], [4.0428210000000036, 4.0548210000001745], [4.0668210000001181, 4.0788210000000618], [4.0908210000000054, 4.1028200000000652], [4.1148200000000088, 4.1268210000000636], [4.1388210000000072, 4.1508210000001782], [4.1628210000001218, 4.1748210000000654], [4.186821000000009, 4.19882100000018], [4.2108210000001236, 4.2228210000000672], [4.2348210000000108, 4.2468210000001818], [4.2588210000001254, 4.270821000000069], [4.2828269999999975, 4.2948220000000674], [13.122873000000027, 13.134821999999986], [13.146821000000045, 13.1588220000001], [13.17082100000016, 13.182821000000104], [13.194821000000047, 13.206820999999991], [13.218821000000162, 13.230821000000105], [13.242823000000044, 13.254822000000104], [13.266821000000164, 13.278821000000107], [13.290820000000167, 13.302820999999994], [13.314821000000165, 13.326821000000109], [13.338822000000164, 13.350820999999996], [13.362822000000051, 13.374821000000111], [13.386821000000054, 13.398820999999998], [13.410845000000108, 13.418826000000081], [13.430821000000151, 13.442821000000095], [13.454821000000038, 13.466820999999982], [13.478820000000042, 14.114827000000105], [14.114845000000059, 14.131994000000077], [14.132106000000022, 14.132172999999966]], \"4\": [[0.45563900000001922, 0.45566800000005969], [4.9348250000000462, 4.9468229999999949], [4.9588220000000547, 4.9708239999999932], [4.9828230000000531, 4.9948220000001129], [5.0068230000001677, 5.0188220000000001], [5.0308220000001711, 5.0428220000001147], [5.0548290000001543, 5.0668230000001131], [5.0788220000001729, 5.0908220000001165], [5.1028220000000601, 5.1148220000000038], [5.1228479999999763, 5.1348239999999805], [5.1468230000000403, 5.1588220000001002], [5.1708220000000438, 5.1828219999999874], [5.1948220000001584, 5.206822000000102], [5.2188220000000456, 5.2308219999999892], [5.2428220000001602, 5.2548220000001038], [5.2668220000000474, 5.278821999999991], [5.290822000000162, 5.3028229999999894], [5.3148310000001402, 5.3268219999999928], [5.3388220000001638, 5.3508229999999912], [5.362822000000051, 5.3748219999999947], [5.3868220000001656, 5.3988220000001093], [5.4108220000000529, 5.4228230000001076], [5.4348230000000513, 5.4468229999999949], [6.5988240000001497, 6.6108229999999821], [6.6228230000001531, 6.6348219999999856], [6.6468230000000403, 6.6468310000000201], [6.6468449999999848, 6.6548280000001796], [6.6628420000001825, 6.6748240000001715], [6.6868240000001151, 6.6988240000000587], [6.7108230000001186, 6.722831000000042], [6.734822000000122, 6.7468220000000656], [6.7588220000000092, 6.770823000000064], [6.7828230000000076, 6.7948220000000674], [6.8068230000001222, 6.818824000000177], [6.8308230000000094, 6.8428220000000692], [6.854823000000124, 7.1068360000001576], [7.106851000000006, 7.1268290000000434], [7.126843000000008, 7.2388250000001335], [7.2508230000000822, 7.262822000000142], [7.2748229999999694, 7.2868230000001404], [7.2988219999999728, 7.3108220000001438], [7.3228229999999712, 7.334822000000031], [7.3468219999999747, 7.3588280000001305], [7.370822999999973, 7.382823000000144], [7.3948230000000876, 7.4068230000000312], [7.4188220000000911, 7.4308230000001458], [7.4428239999999732, 7.4548230000000331], [7.4668229999999767, 7.4788220000000365], [7.4908219999999801, 7.5028220000001511], [7.5148220000000947, 7.5268220000000383], [7.5388230000000931, 7.5508220000001529], [7.5628220000000965, 7.5748240000000351], [7.5868230000000949, 7.5988220000001547], [7.6108220000000983, 7.6228230000001531], [10.690864000000147, 10.698828000000049], [10.710823000000119, 10.722823000000062], [10.734823000000006, 10.746822000000066], [10.758822000000009, 10.770823000000064], [10.782823000000008, 10.794822000000067], [10.806822000000011, 10.818830000000162], [10.830823000000009, 10.842822000000069], [10.854822000000013, 10.866822000000184], [10.878822000000127, 10.890823000000182], [10.902823000000126, 10.914823000000069], [10.926823000000013, 10.938822000000073], [10.950822000000016, 11.106827000000067], [11.106841000000031, 11.462824000000182], [11.474822000000131, 11.486822000000075], [11.498823000000129, 11.510821999999962], [11.522823000000017, 11.534822000000077], [11.54682200000002, 11.558821999999964], [11.570822000000135, 11.582829000000174], [11.594823000000133, 11.606823000000077], [11.618822000000137, 11.63082200000008], [11.642822000000024, 11.654823000000079], [11.666823000000022, 11.678822000000082], [11.686843000000181, 11.694827000000032], [11.702844000000141, 11.714823000000024], [11.726822000000084, 11.738823000000139], [11.750823000000082, 11.762823000000026], [11.774822999999969, 11.78682300000014], [11.798821999999973, 11.810823000000028], [11.822822000000087, 11.834822000000031], [11.846823000000086, 12.098836000000119], [12.098850000000084, 12.230825000000095], [12.242823000000044, 12.254822000000104], [12.266822000000047, 12.278821999999991], [12.290822000000162, 12.302822999999989], [12.314822000000049, 12.326821999999993], [12.338822000000164, 12.350828999999976], [12.362823000000162, 12.374821999999995], [12.386822000000166, 12.398822000000109], [12.410823000000164, 12.422821999999996], [12.434823000000051, 12.446822000000111], [12.458823000000166, 12.470821999999998], [12.482823000000053, 12.538825999999972], [12.538834000000179, 12.678829000000178], [12.678843000000143, 12.686826999999994], [12.68684200000007, 12.690827000000127], [12.690845000000081, 12.698827000000165], [12.698842000000013, 12.702825999999959], [12.70283900000004, 12.870824999999968], [12.882823000000144, 12.894823999999971], [12.906825000000026, 12.918824000000086], [12.930823000000146, 12.942823000000089], [12.954825000000028, 12.966822999999977], [12.978822000000036, 12.99082199999998], [13.002823000000035, 13.014822000000095], [13.026823000000149, 13.038821999999982], [13.050823000000037, 13.062822000000097], [13.07482200000004, 13.086823000000095], [13.098823000000039, 13.110822000000098]], \"5\": [[1.4908219999999801, 1.5028210000000399], [1.5148209999999835, 1.5268210000001545], [1.5388210000000981, 1.5508210000000417], [1.5628209999999854, 1.5748210000001563], [1.5868210000001, 1.5988210000000436], [1.6108260000000882, 1.6228210000001582], [1.6348210000001018, 1.6468210000000454], [1.658820999999989, 1.6708230000001549], [1.6828230000000985, 1.6948220000001584], [1.7068209999999908, 2.0028220000001511], [2.0148209999999835, 2.0268200000000434], [2.038819999999987, 2.050820000000158], [2.0628189999999904, 2.0748190000001614], [2.082843000000139, 2.0948210000001382], [2.1068210000000818, 2.1188200000001416], [2.1308220000000802, 2.1428220000000238], [2.1548219999999674, 2.1668210000000272], [2.1788209999999708, 2.1908210000001418], [2.2028210000000854, 2.2148220000001402], [2.2268220000000838, 2.2388210000001436], [2.2508210000000872, 2.2628210000000308], [2.2748209999999744, 2.2868210000001454], [2.2988199999999779, 2.3108210000000327], [2.3228209999999763, 2.3348210000001473], [2.3468219999999747, 2.3588210000000345], [2.3708209999999781, 2.3828280000000177], [2.3948210000000927, 2.4068210000000363], [2.4188220000000911, 2.4308210000001509], [2.4428210000000945, 2.4548210000000381], [2.4668209999999817, 2.4788220000000365], [2.4908210000000963, 2.770823000000064], [2.7828210000000126, 2.7948210000001836], [2.8068210000001272, 2.8188210000000709], [2.8308210000000145, 2.8428209999999581], [2.8548210000001291, 2.8668220000001838], [2.8788210000000163, 2.8908209999999599], [2.9028210000001309, 2.9148219999999583], [2.9268210000000181, 2.9388209999999617], [2.9508210000001327, 2.9628210000000763], [2.9748230000000149, 2.9868209999999635], [2.9988210000001345, 3.0108210000000781], [3.0228210000000217, 3.0348209999999654], [3.0468210000001363, 3.0588210000000799], [3.0708220000001347, 3.0828209999999672], [3.0948210000001382, 3.1068210000000818], [3.1188210000000254, 3.130820999999969], [4.306822000000011, 4.3188210000000709], [4.3308210000000145, 4.3428200000000743], [4.3548210000001291, 4.3668210000000727], [4.3788210000000163, 4.3908209999999599], [4.4028210000001309, 4.4148210000000745], [4.4268210000000181, 4.4388209999999617], [4.4508210000001327, 4.4628210000000763], [4.4748220000001311, 4.4868209999999635], [4.4988210000001345, 4.5108219999999619], [4.5228210000000217, 4.5348209999999654], [4.5468220000000201, 4.5588199999999688], [4.5788210000000618, 4.5908220000001165], [4.6028210000001764, 4.61482100000012], [4.6268210000000636, 4.6388220000001184], [4.6508210000001782, 4.6628210000001218], [4.6748230000000603, 4.686828000000105], [4.69882100000018, 4.7108210000001236], [4.7228210000000672, 4.7348210000000108], [4.7468210000001818, 4.7588210000001254], [4.770821000000069, 4.7828210000000126], [4.7948210000001836, 4.8068210000001272], [4.8188210000000709, 4.8308200000001307], [4.8428209999999581, 4.8548210000001291], [4.8668210000000727, 4.8788210000000163], [4.8908209999999599, 4.9028210000001309], [4.9148210000000745, 4.9268210000000181], [5.4588220000000547, 5.4708210000001145], [5.4828210000000581, 5.4948210000000017], [5.5068210000001727, 5.5188210000001163], [5.5308210000000599, 5.5428210000000036], [5.5548210000001745, 5.5668210000001181], [5.5788210000000618, 5.5908210000000054], [5.6028210000001764, 5.61482100000012], [5.6268200000001798, 5.6388210000000072], [5.6508210000001782, 5.6628210000001218], [5.6748210000000654, 5.686823000000004], [5.69882100000018, 5.7108200000000124], [5.7228210000000672, 5.7348210000000108], [5.7468210000001818, 5.7588210000001254], [5.770821000000069, 5.7828210000000126], [5.7948210000001836, 5.8068210000001272], [5.8188210000000709, 6.2308210000001054], [6.242821000000049, 6.2548209999999926], [6.2668210000001636, 6.278821999999991], [6.2908210000000508, 6.3028209999999945], [6.3148210000001654, 6.3268210000001091], [6.3388210000000527, 6.3508280000000923], [6.3628210000001673, 6.3748210000001109], [6.3868210000000545, 6.3988209999999981], [6.4108210000001691, 6.4228210000001127], [6.4348210000000563, 6.4468220000001111], [6.4588230000001658, 6.4708210000001145], [6.4828210000000581, 6.4948200000001179], [6.5068210000001727, 6.5188210000001163], [6.5308220000001711, 6.5428210000000036], [6.5548210000001745, 6.5668210000001181], [6.5788210000000618, 6.5908220000001165], [7.6348230000000967, 7.6468210000000454], [7.658820999999989, 7.67082100000016], [7.6828219999999874, 7.6948220000001584], [7.706822000000102, 7.7188210000001618], [7.7308210000001054, 7.7428220000001602], [7.7548269999999775, 7.7668210000001636], [7.7788210000001072, 7.7908210000000508], [7.8028209999999945, 7.8148210000001654], [7.8268219999999928, 7.8388210000000527], [7.8508220000001074, 7.8628210000001673], [7.8748210000001109, 7.8868210000000545], [7.8988209999999981, 7.9108210000001691], [7.9228210000001127, 7.9348210000000563], [7.9468209999999999, 7.9588210000001709], [7.9708210000001145, 7.9828210000000581], [7.9948210000000017, 8.4028220000000147], [8.4148210000000745, 8.4268210000000181], [8.4388209999999617, 8.4508210000001327], [8.4628210000000763, 8.4748210000000199], [8.4868209999999635, 8.4988210000001345], [8.5108219999999619, 8.5228270000000066], [8.5348209999999654, 8.5468210000001363], [8.5588210000000799, 8.5668239999999969], [8.5668310000000929, 8.5788210000000618], [8.5908220000001165, 8.6028210000001764], [8.61482100000012, 8.6268220000001747], [8.6388220000001184, 9.0428220000001147], [9.0548210000001745, 9.0668210000001181], [9.0788210000000618, 9.0908210000000054], [9.1028210000001764, 9.11482100000012], [9.1268190000000686, 9.1388220000001184], [9.150822000000062, 9.1628210000001218], [9.1748210000000654, 9.186821000000009], [9.1988220000000638, 9.2108210000001236], [9.2228210000000672, 9.234822000000122], [9.2468220000000656, 9.2588210000001254], [9.270821000000069, 9.2828210000000126], [9.2948210000001836, 9.3068210000001272], [9.3188210000000709, 9.3308220000001256], [9.3428209999999581, 9.3548210000001291], [9.3668210000000727, 9.3788210000000163], [9.3908209999999599, 9.4028210000001309], [9.4148210000000745, 9.4268220000001293], [9.4388209999999617, 9.4508210000001327], [9.4628210000000763, 9.4748210000000199], [9.4868209999999635, 9.4988210000001345], [9.5108210000000781, 9.5228210000000217], [9.5348209999999654, 9.686823000000004], [9.6988230000001749, 9.7108210000001236], [9.7228210000000672, 9.7348210000000108], [9.7468250000001717, 9.7588210000001254], [9.770821000000069, 9.7828210000000126], [9.7948210000001836, 9.806829000000107], [9.818822000000182, 9.8308210000000145], [9.8428209999999581, 9.8548210000001291], [9.8668210000000727, 9.8788210000000163], [9.8908209999999599, 9.9028220000000147], [9.9148210000000745, 10.114859000000024], [10.114880000000085, 10.322822000000087], [10.334821000000147, 10.346821000000091], [10.358821000000034, 10.370820999999978], [10.382821000000149, 10.394821000000093], [10.406821000000036, 10.41882099999998], [10.430821000000151, 10.442827999999963], [10.454823000000033, 10.466822000000093], [10.478823000000148, 10.490821000000096], [10.50282100000004, 10.514820999999984], [10.526821000000155, 10.538821000000098], [10.550822000000153, 10.562822000000097], [10.574821000000156, 10.5868210000001], [10.598821000000044, 10.610820999999987], [10.622821000000158, 10.634821000000102], [10.646821000000045, 10.658820999999989], [10.670822000000044, 10.682823000000099]]}, \"rcu_sched-8\": {\"1\": [[0.43483200000014222, 0.43484200000011697], [0.44690800000012132, 0.44692200000008597], [0.45103600000015831, 0.45105000000012296]], \"4\": [[0.45108800000002702, 0.45110399999998663], [0.45484800000008363, 0.4548650000001544]], \"5\": [[0.46283200000016222, 0.46286699999996017], [0.4708299999999781, 0.47084800000016003], [0.4788340000000062, 0.47885199999996075], [0.48682900000017071, 0.48684500000013031]]}, \"shutils-2253\": {\"1\": [[0.42204400000014175, 0.42280500000015309]], \"5\": [[0.42292100000008759, 0.42823599999996986]]}, \"sshd-2064\": {\"1\": [[0.0022930000000087603, 0.0024009999999634601], [0.1564210000001367, 0.15649200000007113], [0.1570160000001124, 0.1571360000000368], [0.20629200000007586, 0.20640800000001036], [0.20698900000002141, 0.20710000000008222], [0.20720700000015313, 0.20725500000003194], [0.36180100000001403, 0.36191900000017085], [0.36248599999998987, 0.36259400000017195], [15.528311000000031, 15.528393000000051], [15.528405000000021, 15.528414000000112], [15.528420000000096, 15.528494000000137], [15.684258, 15.684390000000121], [15.685861000000159, 15.685912000000144], [15.734842000000071, 15.734969000000092], [15.759445000000142, 15.759544000000005], [15.912184000000025, 15.912299999999959], [15.913049000000001, 15.913169000000153], [15.962247000000161, 15.962363000000096], [15.963287000000037, 15.963390000000118], [16.117298000000119, 16.11741300000017]], \"2\": [[0.36271299999998519, 0.36285599999996521], [0.36286600000016733, 0.36293700000010176], [0.36294500000008156, 0.36299400000007154], [0.36300000000005639, 0.36304900000004636], [0.36305700000002616, 0.36312500000008185], [0.36313300000006166, 0.36318100000016784], [0.36318700000015269, 0.3632310000000416], [0.36323900000002141, 0.36328400000002148], [0.36329200000000128, 0.36333600000011756], [0.36334400000009737, 0.36338799999998628], [0.36339500000008229, 0.36344000000008236], [0.36344800000006217, 0.36349200000017845], [0.36350000000015825, 0.36354400000004716], [0.36355100000014318, 0.36359700000002704], [0.36360400000012305, 0.36364900000012312], [0.36365599999999176, 0.36374799999998686], [0.36375599999996666, 0.36380099999996673], [0.36380800000006275, 0.36385300000006282], [0.36386000000015883, 0.36390500000015891], [0.36391200000002755, 0.36395600000014383], [0.36396400000012363, 0.36400900000012371], [0.36401599999999235, 0.36406200000010358], [0.36407000000008338, 0.36411500000008346], [0.36412200000017947, 0.36416800000006333], [0.36417600000004313, 0.3642210000000432], [0.36422900000002301, 0.36427500000013424], [0.36428300000011404, 0.36435400000004847], [0.36436100000014449, 0.36438999999995758], [0.36439600000016981, 0.36442400000009911], [0.36443000000008396, 0.36445800000001327], [0.36446300000011433, 0.36449100000004364], [0.36449700000002849, 0.36452299999996285], [0.36453100000017002, 0.36457700000005389], [0.3645840000001499, 0.36463100000014492], [0.36463900000012472, 0.36468600000011975], [0.36469400000009955, 0.36477400000012494], [0.36477800000011484, 0.36480500000016036], [0.36481500000013511, 0.36484200000018063], [0.36485300000003917, 0.36488000000008469], [0.36488800000006449, 0.36493400000017573], [0.36494200000015553, 0.36497099999996863], [0.36497600000006969, 0.36500200000000405], [0.36500999999998385, 0.36505800000009003], [0.36506499999995867, 0.36509399999999914], [0.36509999999998399, 0.36512600000014572], [0.36513400000012552, 0.36520800000016607], [0.36521600000014587, 0.36528999999995904], [0.36529800000016621, 0.36532600000009552], [0.36533200000008037, 0.36535800000001473], [0.36536599999999453, 0.36544000000003507], [0.36544800000001487, 0.3654740000001766], [0.3654820000001564, 0.3655109999999695], [0.36551600000007056, 0.36554200000000492], [0.36554999999998472, 0.3655900000001111], [0.4118660000001455, 0.41198099999996884], [0.41253400000005058, 0.41264100000012149], [0.45123899999998685, 0.45135000000004766], [0.45142299999997704, 0.45147199999996701], [15.2865690000001, 15.286653999999999], [15.477356999999984, 15.47743000000014], [15.478089000000182, 15.47822199999996], [15.527578000000176, 15.527704000000085], [15.685026999999991, 15.685095000000047], [15.685109000000011, 15.685196000000133], [15.685208000000102, 15.685238000000027], [15.685249999999996, 15.685277000000042], [15.685289000000012, 15.685316000000057], [15.685325000000148, 15.685353999999961], [15.685365000000047, 15.685390999999981], [15.685401000000184, 15.685427000000118], [15.685437999999976, 15.685465000000022], [15.685474999999997, 15.685502000000042], [15.685511000000133, 15.685538000000179], [15.685550000000148, 15.685578000000078], [15.685633000000053, 15.685662000000093], [15.685705999999982, 15.685793999999987], [15.685812000000169, 15.685840999999982], [15.735918999999967, 15.736035000000129], [15.962930000000142, 15.962999999999965], [15.963011000000051, 15.963071000000127], [16.117991999999958, 16.118130000000065], [16.118143000000146, 16.118171999999959]], \"3\": [[0.45557900000017071, 0.45563500000002932], [14.132012000000032, 14.132106000000022], [14.653038000000151, 14.653130000000147], [16.118306000000075, 16.118881999999985], [16.119102999999996, 16.119181000000026], [16.166768000000047, 16.167001000000027], [16.167523999999958, 16.167654999999968], [16.177396000000044, 16.177490000000034], [16.331975000000057, 16.332076000000143], [16.332466000000068, 16.332845000000134], [16.382283000000143, 16.382475999999997], [16.383051000000023, 16.383256999999958]], \"4\": [[0.45422400000006746, 0.45435500000007778], [0.45538600000008955, 0.45548299999995834], [0.45578100000011545, 0.45584000000008018], [0.4558510000001661, 0.45592299999998431], [0.45885999999995875, 0.45895400000017617], [0.46290900000008151, 0.46299399999998059], [0.46686399999998685, 0.4669490000001133], [0.47486400000002504, 0.4749490000001515], [13.482371000000057, 13.482496999999967], [15.285064000000148, 15.285156000000143]], \"5\": [[0.45565400000009504, 0.45573800000011033], [0.4559590000001208, 0.45600800000011077], [13.972453000000087, 13.972547999999961], [14.200076999999965, 14.200166000000081]]}}});\n",
" }); /* TRAPPY_PUBLISH_REMOVE_LINE */\n",
" </script>\n",
" </div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# Check tasks residency on little clsuter\n",
"trappy.plotter.plot_trace(trace)"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{\n",
" \"2258\": {\n",
" \"residency\": 100.0, \n",
" \"task_name\": \"rt-app\"\n",
" }, \n",
" \"2259\": {\n",
" \"residency\": 100.0, \n",
" \"task_name\": \"rt-app\"\n",
" }, \n",
" \"2260\": {\n",
" \"residency\": 100.0, \n",
" \"task_name\": \"rt-app\"\n",
" }, \n",
" \"2261\": {\n",
" \"residency\": 100.0, \n",
" \"task_name\": \"rt-app\"\n",
" }, \n",
" \"2262\": {\n",
" \"residency\": 100.0, \n",
" \"task_name\": \"rt-app\"\n",
" }, \n",
" \"2263\": {\n",
" \"residency\": 100.0, \n",
" \"task_name\": \"rt-app\"\n",
" }\n",
"}\n"
]
}
],
"source": [
"# Compute and visualize tasks residencies on LITTLE clusterh CPUs\n",
"s = SchedMultiAssert(trappy.FTrace(trace), te.topology, execnames=tasks.keys())\n",
"residencies = s.getResidency('cluster', target.bl.littles, percent=True)\n",
"print json.dumps(residencies, indent=4)"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"True"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Assert that ALL tasks have always executed only on LITTLE cluster\n",
"s.assertResidency('cluster', target.bl.littles,\n",
" 99.9, operator.ge, percent=True, rank=len(residencies))"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"## Example of CPU controller usage"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# Get a reference to the CPU controller\n",
"cpu = target.cgroups.controller('cpu')"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"# Create a big partition on that CPUS\n",
"cpu_littles = cpu.cgroup('/LITTLE')"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"LITTLE:\n",
"{\n",
" \"shares\": \"512\"\n",
"}\n"
]
}
],
"source": [
"# Check the attributes available for this control group\n",
"print \"LITTLE:\\n\", json.dumps(cpu_littles.get(), indent=4)"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"LITTLE:\n",
"{\n",
" \"shares\": \"512\"\n",
"}\n"
]
}
],
"source": [
"# Set a 1CPU equivalent bandwidth for that CGroup\n",
"# cpu_littles.set(cfs_period_us=100000, cfs_quota_us=50000)\n",
"cpu_littles.set(shares=512)\n",
"print \"LITTLE:\\n\", json.dumps(cpu_littles.get(), indent=4)"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"04:24:57 INFO : WlGen - Workload execution START:\n",
"04:24:57 INFO : WlGen - /root/devlib-target/bin/shutils cgroups_run_into /LITTLE /root/devlib-target/bin/rt-app /root/devlib-target/simple_00.json 2>&1\n",
"04:25:13 INFO : WlGen - Pulling trace file into [.//simple_00.dat]...\n"
]
}
],
"source": [
"# Test execution of all these tasks into the LITTLE cluster\n",
"trace = rtapp.run(ftrace=te.ftrace, cgroup=cpu_littles.name)"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"<style>\n",
"/*\n",
" * Copyright 2015-2016 ARM Limited\n",
" *\n",
" * Licensed under the Apache License, Version 2.0 (the \"License\");\n",
" * you may not use this file except in compliance with the License.\n",
" * You may obtain a copy of the License at\n",
" *\n",
" * http://www.apache.org/licenses/LICENSE-2.0\n",
" *\n",
" * Unless required by applicable law or agreed to in writing, software\n",
" * distributed under the License is distributed on an \"AS IS\" BASIS,\n",
" * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n",
" * See the License for the specific language governing permissions and\n",
" * limitations under the License.\n",
" */\n",
"\n",
".d3-tip {\n",
" line-height: 1;\n",
" padding: 12px;\n",
" background: rgba(0, 0, 0, 0.6);\n",
" color: #fff;\n",
" border-radius: 2px;\n",
" position: absolute !important;\n",
" z-index: 99999;\n",
"}\n",
"\n",
".d3-tip:after {\n",
" box-sizing: border-box;\n",
" pointer-events: none;\n",
" display: inline;\n",
" font-size: 10px;\n",
" width: 100%;\n",
" line-height: 1;\n",
" color: rgba(0, 0, 0, 0.6);\n",
" content: \"\\25BC\";\n",
" position: absolute !important;\n",
" z-index: 99999;\n",
" text-align: center;\n",
"}\n",
"\n",
".d3-tip.n:after {\n",
" margin: -1px 0 0 0;\n",
" top: 100%;\n",
" left: 0;\n",
"}\n",
"\n",
".contextRect {\n",
" fill: lightgray;\n",
" fill-opacity: 0.5;\n",
" stroke: black;\n",
" stroke-width: 1;\n",
" stroke-opacity: 1;\n",
" pointer-events: none;\n",
" shape-rendering: crispEdges;\n",
"}\n",
"\n",
".chart {\n",
" shape-rendering: crispEdges;\n",
"}\n",
"\n",
".mini text {\n",
" font: 9px sans-serif;\n",
"}\n",
"\n",
".main text {\n",
" font: 12px sans-serif;\n",
"}\n",
"\n",
".axis line, .axis path {\n",
" stroke: black;\n",
"}\n",
"\n",
".miniItem {\n",
" stroke-width: 8;\n",
"}\n",
"\n",
".brush .extent {\n",
"\n",
" stroke: #000;\n",
" fill-opacity: .125;\n",
" shape-rendering: crispEdges;\n",
"}\n",
"</style>\n",
"<div id=\"fig_453929b77e334df8a1ffce10fd81b9a7\" class=\"eventplot\">\n",
"<!-- TRAPPY_PUBLISH_SOURCE_LIB = \"https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js\" -->\n",
"<!-- TRAPPY_PUBLISH_SOURCE_LIB = \"http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js\" -->\n",
"\n",
" <script>\n",
" /* TRAPPY_PUBLISH_IMPORT = \"plotter/js/EventPlot.js\" */\n",
" /* TRAPPY_PUBLISH_REMOVE_START */\n",
" var req = require.config( {\n",
"\n",
" paths: {\n",
"\n",
" \"EventPlot\": '/nbextensions/plotter_scripts/EventPlot/EventPlot',\n",
" \"d3-tip\": '/nbextensions/plotter_scripts/EventPlot/d3.tip.v0.6.3',\n",
" \"d3-plotter\": '/nbextensions/plotter_scripts/EventPlot/d3.min'\n",
" },\n",
" waitSeconds: 15,\n",
" shim: {\n",
" \"d3-plotter\" : {\n",
" \"exports\" : \"d3\"\n",
" },\n",
" \"d3-tip\": [\"d3-plotter\"],\n",
" \"EventPlot\": {\n",
"\n",
" \"deps\": [\"d3-tip\", \"d3-plotter\" ],\n",
" \"exports\": \"EventPlot\"\n",
" }\n",
" }\n",
" });\n",
" /* TRAPPY_PUBLISH_REMOVE_STOP */\n",
" \n",
" req([\"require\", \"EventPlot\"], function() { /* TRAPPY_PUBLISH_REMOVE_LINE */\n",
" EventPlot.generate('fig_453929b77e334df8a1ffce10fd81b9a7', '/nbextensions/', {\"lanes\": [{\"id\": 0, \"label\": \"CPU :0\"}, {\"id\": 1, \"label\": \"CPU :1\"}, {\"id\": 2, \"label\": \"CPU :2\"}, {\"id\": 3, \"label\": \"CPU :3\"}, {\"id\": 4, \"label\": \"CPU :4\"}, {\"id\": 5, \"label\": \"CPU :5\"}], \"colorMap\": null, \"keys\": [\"task2-2322\", \"task0-2320\", \"task4-2324\", \"task5-2325\", \"task1-2321\", \"task3-2323\", \"sh-2326\", \"shutils-2315\", \"sh-2327\", \"sh-2331\", \"sh-2329\", \"sh-2314\", \"shutils-2317\", \"sudo-2327\", \"sudo-2330\", \"shutils-2328\", \"sudo-2332\", \"shutils-2314\", \"shutils-2316\", \"sudo-2326\", \"shutils-2318\", \"sudo-2311\", \"sh-2332\", \"busybox-2316\", \"shutils-2319\", \"shutils-2327\", \"sudo-2329\", \"busybox-2318\", \"sh-2067\", \"rt-app-2314\", \"sshd-2064\", \"jbd2/sda2-8-1197\", \"rt-app-2320\", \"sshd-1438\", \"syslogd-1412\", \"init-1\", \"sshd-1737\", \"khugepaged-407\", \"kworker/u12:1-46\", \"ksoftirqd/3-29\", \"ksoftirqd/5-41\", \"ksoftirqd/4-35\", \"kworker/4:1-777\", \"usb-storage-1169\", \"kworker/0:1-562\", \"kworker/5:1-1007\", \"kworker/3:1-448\", \"rt-app-2321\", \"rcu_preempt-7\", \"kworker/u12:2-2112\", \"ksoftirqd/0-3\", \"rcu_sched-8\", \"kworker/1:1-1006\", \"kworker/4:1H-1196\", \"watchdog/1-15\", \"kworker/2:1-1008\", \"watchdog/2-21\", \"sudo-2331\", \"rt-app-2323\", \"kworker/3:1H-1260\", \"ksoftirqd/2-23\", \"ksoftirqd/1-17\", \"kworker/5:1H-1251\", \"kworker/0:1H-1195\", \"rt-app-2324\", \"watchdog/0-12\", \"watchdog/5-39\", \"watchdog/3-27\", \"watchdog/4-33\", \"rt-app-2322\", \"rt-app-2325\"], \"stride\": false, \"showSummary\": true, \"xDomain\": [0.0012409999999363208, 16.103290999999899], \"data\": {\"sshd-1737\": {\"1\": [[14.868632999999818, 14.86871199999996], [14.871717999999873, 14.871758999999884]]}, \"watchdog/4-33\": {\"4\": [[1.2512369999999464, 1.2512469999999212], [5.2512359999998353, 5.2512429999999313], [9.2512359999998353, 9.2512429999999313], [13.251235999999835, 13.251244999999926]]}, \"shutils-2319\": {\"2\": [[0.43130699999983335, 0.43155799999999545], [0.45145299999990129, 0.4516439999999875], [0.4517639999999119, 0.45192099999985658], [0.45196999999984655, 0.45220299999982672]], \"5\": [[0.4282269999998789, 0.42879999999991014]]}, \"shutils-2318\": {\"1\": [[0.42857099999991988, 0.42887099999984457]], \"4\": [[0.42782299999998941, 0.42855199999985416]]}, \"shutils-2317\": {\"2\": [[0.4285259999999198, 0.43126599999982318]], \"3\": [[0.42743699999982709, 0.42842199999995501]]}, \"shutils-2316\": {\"2\": [[0.4222069999998439, 0.42284699999981967]], \"4\": [[0.42142399999988811, 0.422106999999869]]}, \"shutils-2315\": {\"4\": [[0.42029499999989639, 0.42138999999997395]], \"5\": [[0.42149699999981749, 0.42671999999993204]]}, \"shutils-2314\": {\"0\": [[0.45227999999997337, 0.45254099999988284]], \"1\": [[0.42682700000000295, 0.42688399999997273], [0.42701799999986179, 0.42835900000000038]], \"2\": [[0.43126599999982318, 0.43130699999983335], [0.43155799999999545, 0.43158900000003086]], \"3\": [[0.4526260000000093, 0.45506599999998798]]}, \"ksoftirqd/1-17\": {\"1\": [[4.9392989999998917, 4.9393159999999625]]}, \"ksoftirqd/0-3\": {\"0\": [[0.45614999999997963, 0.45617300000003524], [5.9272409999998672, 5.9272670000000289]]}, \"kworker/4:1H-1196\": {\"4\": [[0.03259000000002743, 0.032613999999966836], [14.929230999999845, 14.929253999999901]]}, \"ksoftirqd/5-41\": {\"5\": [[14.927124999999933, 14.927179000000024], [14.927191999999877, 14.927208999999948], [14.936371000000008, 14.936424999999872], [14.936436999999842, 14.936453000000029]]}, \"task4-2324\": {\"0\": [[0.45583699999997407, 0.45584599999983766], [0.45598999999992884, 0.45606099999986327], [3.5072339999999258, 3.5192329999999856], [3.5312349999999242, 3.543233999999984], [3.5552319999999327, 3.5672339999998712], [3.5792329999999311, 3.5912339999999858], [3.6032329999998183, 3.615235999999868], [3.6272369999999228, 3.6392339999999876], [3.6512339999999313, 3.6632329999999911], [3.6752329999999347, 3.6872329999998783], [3.6992329999998219, 3.7112329999999929], [3.7232339999998203, 3.7352329999998801], [3.7472349999998187, 3.7592329999999947], [3.7712329999999383, 3.7832329999998819], [3.7952319999999418, 3.8072329999999965], [3.819231999999829, 3.831232], [3.8432319999999436, 3.8552319999998872], [3.867232999999942, 3.8792320000000018], [3.8912339999999404, 4.2752349999998387], [4.2872330000000147, 4.2992329999999583], [4.3112320000000182, 4.3232329999998456], [4.3352330000000165, 4.3472329999999602], [4.3592329999999038, 4.3712329999998474], [4.3832330000000184, 4.395232999999962], [4.4072340000000167, 4.4192329999998492], [4.4312359999998989, 4.4432369999999537], [4.4552389999998923, 4.467232999999851], [4.479233000000022, 4.4912329999999656], [4.5032329999999092, 4.5152329999998528], [4.5272429999999986, 4.5392359999998462], [4.551232999999911, 4.5632329999998547], [4.5752330000000256, 4.5872329999999693], [4.5992329999999129, 4.6112419999999474], [4.6232350000000224, 4.6352339999998549], [4.6472329999999147, 4.6592339999999695], [9.3952359999998407, 9.4072349999999005], [9.4192359999999553, 9.4312350000000151], [9.4432329999999638, 9.4552329999999074], [9.467232999999851, 9.479233000000022], [9.4912329999999656, 9.5032329999999092], [9.5152329999998528, 9.5272419999998874], [9.5392349999999624, 9.551232999999911], [9.5632329999998547, 9.5752330000000256], [9.5872329999999693, 9.5992329999999129], [9.6112329999998565, 9.6232330000000275], [9.6352329999999711, 9.6472429999998894], [9.6592329999998583, 9.8352499999998599], [9.8352720000000318, 10.03523499999983], [10.047233999999889, 10.059233999999833], [10.071234000000004, 10.083233999999948], [10.095233999999891, 10.107232999999951], [10.119232999999895, 10.131232999999838], [10.143233999999893, 10.155232999999953], [10.167232999999896, 10.179233999999951], [10.191233000000011, 10.203232999999955], [10.215232999999898, 10.227232999999842], [10.239233999999897, 10.25123399999984], [10.2632329999999, 10.275232999999844], [10.287231999999904, 10.299232999999958], [10.311232999999902, 10.551234000000022], [10.563232999999855, 10.575233999999909], [10.587232999999969, 10.599232999999913], [10.611232999999856, 10.623233000000027], [10.635232999999971, 10.647232999999915], [10.659232999999858, 10.671239999999898], [10.683233999999857, 10.695232999999917], [10.707233999999971, 10.719233000000031], [10.731232999999975, 10.743232999999918], [10.755232999999862, 10.767233000000033], [10.779232999999977, 10.79123299999992], [10.803233999999975, 10.815233000000035], [10.827233999999862, 10.839232999999922], [10.851234999999861, 10.8632419999999], [10.87523299999998, 10.887232999999924], [10.899232999999867, 10.911233000000038], [10.923232999999982, 10.935234000000037], [10.947231999999985, 10.95923300000004], [10.971232999999984, 10.983234000000039], [10.995232999999871, 11.007233000000042], [11.019232999999986, 11.031232999999929], [11.043234999999868, 11.055235000000039], [11.067235999999866, 11.079232999999931], [11.827234999999973, 11.839234000000033], [11.851233999999977, 11.863233000000037], [11.87523299999998, 11.887232999999924], [11.899232999999867, 11.911233000000038], [11.923242999999957, 11.935234999999921], [11.947239999999965, 11.95923300000004], [11.971231999999873, 11.983234000000039], [11.995233999999982, 12.007233000000042], [12.019232999999986, 12.031232999999929], [12.043232999999873, 12.055232999999816], [12.067233999999871, 12.079232999999931], [12.091232999999875, 12.467234999999846], [12.479235000000017, 12.491232999999966], [12.503232999999909, 12.515232999999853], [12.527242999999999, 12.539234999999962], [12.551234000000022, 12.563232999999855], [12.575233000000026, 12.587233999999853], [12.599232999999913, 12.611232999999856], [12.623233999999911, 12.635232999999971], [12.647232999999915, 12.659232999999858], [12.671233999999913, 12.683232999999973], [12.695232999999917, 12.70723299999986], [12.719241000000011, 12.73123499999997]], \"3\": [[3.2672370000000228, 3.2792349999999715], [3.2912349999999151, 3.3032349999998587], [3.3152350000000297, 3.3272349999999733], [3.3392349999999169, 3.3512339999999767], [3.3632350000000315, 3.3752349999999751], [3.3872349999999187, 3.3992349999998623], [3.4112339999999222, 3.4232349999999769], [3.4352349999999205, 3.4472349999998642], [3.459233999999924, 3.4712349999999788], [3.4832340000000386, 3.495234999999866], [9.2832369999998718, 9.2952349999998205], [9.3072339999998803, 9.3192349999999351], [9.3312349999998787, 9.3432339999999385], [9.3552349999999933, 9.3672349999999369], [9.3792359999999917, 9.383241999999882], [12.7352699999999, 12.743240999999898], [12.751254000000017, 12.755237999999963], [12.767235000000028, 12.779234999999971], [12.791234999999915, 12.803234999999859], [12.811273000000028, 12.823234999999841], [12.835235000000011, 12.847234999999955], [12.859234999999899, 12.871234999999842], [12.883235000000013, 12.895234999999957], [12.907234999999901, 12.911239999999907], [12.911253999999872, 12.919239999999945], [12.931253999999853, 12.939239000000043], [12.943250999999918, 12.955234999999902], [12.967234999999846, 13.223240999999916], [13.223250000000007, 13.251236999999946], [13.263234999999895, 13.275233999999955], [13.28723500000001, 13.299234999999953], [13.311234999999897, 13.323234999999841], [13.335235000000011, 13.347234999999955], [13.359234999999899, 13.371234999999842], [13.383237000000008, 13.395235999999841], [13.407234999999901, 13.415240999999924], [13.415255999999999, 13.423238999999967], [13.435236999999915, 13.447234999999864], [13.459235000000035, 13.471233999999868], [13.483234000000039, 13.699241000000029], [13.699259999999867, 13.707238999999845], [13.707253999999921, 13.711238999999978], [13.711251999999831, 13.727239999999938], [13.727253999999903, 13.735238999999865], [13.735259999999926, 13.743238999999903], [13.743252999999868, 13.747239000000036], [13.747251000000006, 13.76323699999989], [13.775234999999839, 13.78723500000001], [13.799234999999953, 13.811234999999897], [13.823234999999841, 13.835239000000001], [13.846540000000005, 13.85923600000001], [13.871236999999837, 13.883241999999882], [13.895234999999957, 13.907234999999901], [13.919234999999844, 13.931235000000015], [13.943234999999959, 13.955234999999902], [13.967233999999962, 13.979235000000017], [13.991234999999961, 14.120105999999851]], \"4\": [[0.46331199999985984, 0.47124099999996361], [0.47125699999992321, 0.4792410000000018], [0.47925899999995636, 0.48723999999992884], [0.48725399999989349, 0.4912419999998292], [0.49125899999989997, 0.49923899999998866], [0.49925999999982196, 0.50723999999991065], [0.5072539999998753, 0.51123999999981606], [0.51125799999999799, 0.51923799999985931], [0.51925499999993008, 0.52723999999989246], [0.52725299999997333, 0.53523799999993571], [0.53525100000001657, 0.53923799999984112], [0.53925600000002305, 0.54723799999987932], [0.54725199999984397, 0.5512389999998959], [0.5512509999998656, 0.5952350000000024], [0.60723299999995106, 0.61923400000000584], [0.63123299999983828, 0.64323300000000927], [0.65523299999995288, 0.66723299999989649], [0.6792329999998401, 0.69123300000001109], [0.7032329999999547, 0.71523499999989326], [0.72723299999984192, 0.73923300000001291], [0.75123299999995652, 0.76323299999990013], [0.77125999999998385, 0.77923799999985022], [0.79123200000003635, 0.80323199999997996], [0.81128199999989192, 0.82323299999984556], [0.83523399999990033, 0.8472399999998288], [0.85923200000001998, 0.86323999999990519], [0.86325399999986985, 0.87123799999994844], [0.87925499999983003, 0.88723899999990863], [0.89525099999991653, 0.9072320000000218], [0.9192329999998492, 0.93123199999990902], [0.94323199999985263, 0.95523299999990741], [0.96723299999985102, 0.97923399999990579], [0.99123299999996561, 1.0032329999999092], [1.0152329999998528, 1.0272330000000238], [1.0392329999999674, 1.051232999999911], [1.0632329999998547, 1.0752330000000256], [3.0272350000000188, 3.0392329999999674], [3.051232999999911, 3.0632329999998547], [3.0752330000000256, 3.0872319999998581], [3.0992329999999129, 3.1112319999999727], [3.1232359999999062, 3.135234999999966], [3.1472329999999147, 3.1592329999998583], [3.1712330000000293, 3.1832349999999678], [3.1952340000000277, 3.2072329999998601], [3.2192330000000311, 3.2312329999999747], [3.2432329999999183, 3.2552329999998619], [8.0192349999999806, 8.0312329999999292], [8.0432329999998728, 8.0552329999998165], [8.0672329999999874, 8.0792329999999311], [8.0912339999999858, 8.1032329999998183], [8.1152329999999893, 8.1272329999999329], [8.1392329999998765, 8.1512329999998201], [8.1632329999999911, 8.1752329999999347], [8.1872329999998783, 8.1992329999998219], [8.2112329999999929, 8.2192399999998997], [8.2312589999999091, 8.2392379999998866], [8.2512319999998454, 8.2632329999999001], [8.27523199999996, 8.2872319999999036], [8.2992319999998472, 8.3112320000000182], [8.3232319999999618, 8.3352330000000165], [8.347231999999849, 8.3472399999998288], [8.3472540000000208, 8.355237999999872], [8.363254999999981, 8.3752369999999701], [11.09123499999987, 11.103232999999818], [11.115231999999878, 11.127231999999822], [11.139231999999993, 11.151231999999936], [11.163232999999991, 11.175231999999824], [11.187232999999878, 11.199232999999822], [11.211232999999993, 11.22323399999982], [11.235234999999875, 11.247233999999935], [11.259240999999975, 11.271232999999938], [11.283233999999993, 11.295232999999826], [11.307232999999997, 11.603235000000041], [11.615231999999878, 11.627233999999817], [11.639233999999988, 11.65123299999982], [11.663232999999991, 11.675232999999935], [11.687232999999878, 11.699232999999822], [11.711232999999993, 11.72323399999982], [11.735233999999991, 11.747234999999819], [11.759232999999995, 11.771232999999938], [11.783232999999882, 11.795232999999826], [11.807232999999997, 11.819238000000041]], \"5\": [[1.087235999999848, 1.0992329999999129], [1.1112329999998565, 1.1232330000000275], [1.1352329999999711, 1.1472349999999096], [1.1592379999999594, 1.1712350000000242], [1.1832359999998516, 1.1952349999999115], [1.2072409999998399, 1.2192339999999149], [1.2312329999999747, 1.2432329999999183], [1.2552329999998619, 1.2672330000000329], [1.2792469999999412, 1.2912329999999201], [1.3032329999998638, 1.3152330000000347], [1.3272329999999783, 1.3392340000000331], [1.3512329999998656, 1.6032339999999294], [1.615233999999873, 1.6272329999999329], [1.6392329999998765, 1.6512329999998201], [1.6632329999999911, 1.6752329999999347], [1.6872329999998783, 1.6992329999998219], [1.7112339999998767, 1.7232420000000275], [1.7352339999999913, 1.7472339999999349], [1.7592329999999947, 1.7712329999999383], [1.7832339999999931, 1.7952329999998256], [1.8032559999999194, 1.8152330000000347], [1.8272329999999783, 1.8392340000000331], [1.8512339999999767, 2.1112339999999676], [2.1232330000000275, 2.1352329999999711], [2.1472320000000309, 2.1592329999998583], [2.1712330000000293, 2.1832339999998567], [2.1952340000000277, 2.2072329999998601], [2.2192339999999149, 2.2312329999999747], [2.2432329999999183, 2.2552339999999731], [2.2672330000000329, 2.2792329999999765], [2.2912329999999201, 2.3032329999998638], [2.3152330000000347, 2.3272329999999783], [2.339232999999922, 2.3512329999998656], [2.3632330000000366, 2.5392409999999472], [2.539260000000013, 2.5472379999998793], [2.5472529999999551, 2.5512389999998959], [2.5512519999999768, 2.6072549999998955], [2.6072689999998602, 2.615237999999863], [2.6152519999998276, 2.6232379999999011], [2.6232569999999669, 2.6312369999998282], [2.6312510000000202, 2.6352399999998397], [2.6352529999999206, 2.7512339999998403], [2.7632329999999001, 2.7752329999998437], [2.7872330000000147, 2.7992329999999583], [2.8112329999999019, 2.8232329999998456], [2.8352330000000165, 2.8472339999998439], [2.8592329999999038, 2.8712329999998474], [2.8832330000000184, 2.895232999999962], [2.9072329999999056, 2.9192329999998492], [2.9312330000000202, 2.9432329999999638], [2.9552340000000186, 2.967232999999851], [2.979233000000022, 2.9912329999999656], [3.0032329999999092, 3.0152329999998528], [4.6712350000000242, 4.6832329999999729], [4.6952340000000277, 4.7072329999998601], [4.7192339999999149, 4.7192419999998947], [4.7192549999999756, 4.7272389999998268], [4.7352549999998246, 4.7432380000000194], [4.7552329999998619, 4.7672330000000329], [4.7792329999999765, 4.7912329999999201], [4.8032329999998638, 4.8152330000000347], [4.8272329999999783, 4.839232999999922], [4.8512329999998656, 4.8632330000000366], [4.8752329999999802, 4.8872329999999238], [4.8992339999999786, 4.9112330000000384], [4.9192519999999149, 4.931233999999904], [4.9432349999999587, 4.9552340000000186], [4.967232999999851, 4.9792319999999108], [4.9912319999998545, 5.0032320000000254], [5.015231999999969, 5.0272319999999127], [5.0392329999999674, 5.0512400000000071], [5.0632319999999709, 5.2792369999999664], [5.27924599999983, 5.3112349999998969], [5.3232329999998456, 5.3352339999999003], [5.3472349999999551, 5.3592329999999038], [5.3712339999999585, 5.3832330000000184], [5.395232999999962, 5.4072329999999056], [5.4192339999999604, 5.431241], [5.4432339999998476, 5.4552349999999024], [5.467234999999846, 5.4792319999999108], [5.4912329999999656, 5.5032329999999092], [5.5152329999998528, 5.5272339999999076], [5.5392339999998512, 5.551234999999906], [5.5632339999999658, 5.7352409999998599], [5.7352599999999256, 5.7432380000000194], [5.7432549999998628, 5.9112410000000182], [5.9112549999999828, 5.9192379999999503], [5.9192530000000261, 5.9272369999998773], [5.9272549999998319, 5.9352389999999104], [5.9352529999998751, 5.9512349999999969], [5.9632409999999254, 5.9752340000000004], [5.9872329999998328, 5.9992339999998876], [6.0112329999999474, 6.023232999999891], [6.0352329999998346, 6.0472330000000056], [6.0592329999999492, 6.0712329999998929], [6.0832319999999527, 6.0952330000000075], [6.1072329999999511, 6.1192329999998947], [6.1312329999998383, 6.1432330000000093], [6.1552329999999529, 6.1672340000000077], [6.1792329999998401, 6.1912330000000111], [6.2032329999999547, 6.4632349999999406], [6.4752329999998892, 6.4872329999998328], [6.4992330000000038, 6.5112329999999474], [6.523232999999891, 6.5352349999998296], [6.5472339999998894, 6.559233999999833], [6.5712329999998929, 6.5832389999998213], [6.5952330000000075, 6.6072339999998349], [6.6192340000000058, 6.6312329999998383], [6.6432330000000093, 6.6552329999999529], [6.6672329999998965, 6.6792329999998401], [6.6912330000000111, 6.7032329999999547], [6.7152329999998983, 6.9552400000000034], [6.9552539999999681, 6.9752340000000004], [6.9872329999998328, 6.9992330000000038], [7.0112329999999474, 7.023232999999891], [7.0352329999998346, 7.0472319999998945], [7.0592329999999492, 7.0712329999998929], [7.0832329999998365, 7.0952330000000075], [7.1072329999999511, 7.1192329999998947], [7.1312329999998383, 7.1432330000000093], [7.1552329999999529, 7.1672329999998965], [7.1792329999998401, 7.1912330000000111], [7.2032329999999547, 7.2152329999998983], [7.2272329999998419, 7.34724099999994], [7.3472549999999046, 7.3552459999998518], [7.3552680000000237, 7.367238000000043], [7.3672549999998864, 7.3752399999998488], [7.3752540000000408, 7.3832379999998921], [7.3832529999999679, 7.3912390000000414], [7.3912559999998848, 7.403238999999985], [7.4032549999999446, 7.5272399999998925], [7.5272539999998571, 7.5352379999999357], [7.5352519999999004, 7.5392389999999523], [7.5392560000000231, 7.5472369999999955], [7.5472509999999602, 7.5512389999998959], [7.5512519999999768, 7.6192329999998947], [7.6312329999998383, 7.6432330000000093], [7.6552329999999529, 7.6672329999998965], [7.6792329999998401, 7.6912330000000111], [7.7032329999999547, 7.7152329999998983], [7.7272329999998419, 7.7392399999998815], [7.7512329999999565, 7.7632329999999001], [7.7752329999998437, 7.7872330000000147], [7.7992329999999583, 7.8112329999999019], [7.8232319999999618, 7.8352330000000165], [7.8472329999999602, 7.8472399999998288], [7.8472540000000208, 7.855237999999872], [7.8552519999998367, 7.8672349999999369], [7.8792329999998856, 7.8912339999999404], [7.9032330000000002, 7.9152329999999438], [7.9272329999998874, 7.9392319999999472], [7.9512349999999969, 7.9632349999999406], [7.9752329999998892, 7.9872329999998328], [7.9992349999999988, 8.0112329999999474], [8.3832339999999022, 8.3952319999998508], [8.4072320000000218, 8.4192319999999654], [8.431233999999904, 8.4432339999998476], [8.4552320000000236, 8.467232999999851], [8.479233000000022, 8.4912319999998545], [8.5032389999998941, 8.515231999999969], [8.5272330000000238, 8.5392339999998512], [8.5512340000000222, 8.5632349999998496], [8.5752330000000256, 8.5872329999999693], [8.5992329999999129, 8.6112339999999676], [8.6232330000000275, 8.6352329999999711], [8.6472329999999147, 8.9112410000000182], [8.9112599999998565, 8.9192379999999503], [8.9192519999999149, 8.9232399999998506], [8.9232569999999214, 8.9352380000000267], [8.93525899999986, 8.9432369999999537], [8.9432540000000245, 9.023234999999886], [9.0352329999998346, 9.0472330000000056], [9.0592329999999492, 9.0712329999998929], [9.0832339999999476, 9.0952330000000075], [9.1072329999999511, 9.1192329999998947], [9.1312329999998383, 9.1432330000000093], [9.1552329999999529, 9.1672329999998965], [9.1792329999998401, 9.1912330000000111], [9.2032339999998385, 9.2152329999998983], [9.2192569999999705, 9.227237999999943], [9.2352509999998347, 9.2472339999999349], [9.2592339999998785, 9.2712409999999181]]}, \"sshd-1438\": {\"2\": [[13.593824000000041, 13.593943999999965], [13.596608999999944, 13.596652999999833]]}, \"rcu_preempt-7\": {\"1\": [[16.095245999999861, 16.095255999999836], [16.103251, 16.103263999999854]], \"3\": [[1.1872409999998581, 1.1872559999999339], [1.1912399999998797, 1.1912539999998444], [1.1992399999999179, 1.1992619999998624], [1.207238999999845, 1.2072599999999056], [1.215253999999959, 1.2152710000000297], [1.5272399999998925, 1.5272539999998571], [1.5352389999998195, 1.5352609999999913], [1.5432389999998577, 1.5432539999999335], [1.5472379999998793, 1.5472529999999551], [1.7072419999999511, 1.7072559999999157], [1.7152389999998832, 1.7152609999998276], [1.7232389999999214, 1.723252999999886], [1.7272409999998217, 1.7272539999999026], [1.8632410000000164, 1.863254999999981], [1.8712399999999434, 1.8712619999998878], [1.8792389999998704, 1.8792539999999462], [1.8832379999998921, 1.8832509999999729], [2.1792409999998199, 2.1792550000000119], [2.1872389999998632, 2.187261000000035], [2.1952389999999014, 2.1952539999999772], [2.2032409999999345, 2.2032540000000154], [2.5272399999998925, 2.5272549999999683], [2.5352389999998195, 2.5352539999998953], [3.1912409999999909, 3.1912599999998292], [3.1992390000000341, 3.1992559999998775], [3.5272410000000036, 3.5272549999999683], [3.5352389999998195, 3.5352530000000115], [3.5432379999999739, 3.5432559999999285], [3.5512389999998959, 3.5512529999998605], [3.5552390000000287, 3.5552519999998822], [3.6112409999998363, 3.6112550000000283], [3.6192399999999907, 3.6192529999998442], [3.6232379999999011, 3.6232559999998557], [3.6312389999998231, 3.6312530000000152], [3.6352389999999559, 3.6352520000000368], [3.9512399999998706, 3.9512539999998353], [3.959239000000025, 3.9592539999998735], [3.9672409999998308, 3.9672590000000127], [3.9752389999998741, 3.9752529999998387], [3.9792370000000119, 3.9792499999998654], [4.1072399999998197, 4.1072540000000117], [4.1152389999999741, 4.1152529999999388], [4.1192379999999957, 4.1192559999999503], [4.1272389999999177, 4.1272529999998824], [4.1352379999998448, 4.1352560000000267], [4.1432389999999941, 4.1432559999998375], [4.4232429999999567, 4.4232569999999214], [4.431239000000005, 4.4312609999999495], [4.4392390000000432, 4.4392599999998765], [4.4472389999998541, 4.4472529999998187], [4.9232409999999618, 4.9232589999999163], [4.9312399999998888, 4.9312549999999646], [4.9392369999998209, 4.9392550000000028], [4.9472389999998541, 4.9472599999999147], [4.9552389999998923, 4.9552529999998569], [4.9632409999999254, 4.9632540000000063], [5.3232419999999365, 5.3232559999999012], [5.3312389999998686, 5.3312610000000404], [5.3392389999999068, 5.3392529999998715], [5.3432390000000396, 5.3432519999998931], [5.4152400000000398, 5.4152540000000045], [5.4232389999999668, 5.4232600000000275], [5.4312379999998939, 5.4312519999998585], [5.4352460000000065, 5.435263999999961], [5.4432399999998324, 5.4432540000000245], [5.6312409999998181, 5.6312550000000101], [5.7192399999998997, 5.7192529999999806], [5.7272389999998268, 5.7272539999999026], [5.9392410000000382, 5.9392589999999927], [5.9472389999998541, 5.9472529999998187], [5.9512499999998454, 5.9512680000000273], [5.9592379999999139, 5.9592529999999897], [5.9632520000000113, 5.9632649999998648], [6.5272399999998925, 6.5272549999999683], [6.5352399999999307, 6.5352539999998953], [6.5392379999998411, 6.5392560000000231], [6.5472389999999905, 6.5472529999999551], [6.5512389999998959, 6.5512519999999768], [6.6112409999998363, 6.6112539999999171], [6.6192389999998795, 6.6192599999999402], [6.6272380000000339, 6.6272549999998773], [6.9272399999999834, 6.9272539999999481], [6.9352389999999104, 6.9352539999999863], [6.9392379999999321, 6.9392559999998866], [6.9472389999998541, 6.9472539999999299], [7.8592409999998836, 7.8592599999999493], [7.8672389999999268, 7.8672559999999976], [7.9272409999998672, 7.9272539999999481], [7.9352389999999104, 7.9352529999998751], [7.9432399999998324, 7.9432580000000144], [7.9512389999999868, 7.9512519999998403], [9.383241999999882, 9.3832609999999477], [9.3912390000000414, 9.3912629999999808], [9.4152409999999236, 9.4152540000000045], [9.4232389999999668, 9.4232600000000275], [9.4312379999998939, 9.4312549999999646], [9.5272399999998925, 9.5272539999998571], [9.5352379999999357, 9.5352599999998802], [9.5432399999999689, 9.5432570000000396], [9.8472419999998237, 9.8472560000000158], [9.8552389999999832, 9.8552539999998316], [10.547241999999869, 10.547255999999834], [10.84724099999994, 10.847254999999905], [10.855238999999983, 10.855260999999928], [10.863239000000021, 10.863254999999981], [11.039239999999836, 11.039254000000028], [11.04723899999999, 11.047259999999824], [11.055239000000029, 11.055253999999877], [11.063240999999834, 11.063253999999915], [11.227239999999938, 11.227253999999903], [11.235238999999865, 11.235253999999941], [11.243238000000019, 11.243255999999974], [11.25123799999983, 11.251252999999906], [11.259240999999975, 11.259253999999828], [11.527239999999892, 11.527253999999857], [11.535238999999819, 11.535253999999895], [11.935240999999905, 11.935259999999971], [11.943238999999949, 11.943252999999913], [11.94723799999997, 11.947250999999824], [12.227239999999938, 12.227255000000014], [12.235239999999976, 12.235261999999921], [12.243238999999903, 12.243255999999974], [12.423241999999846, 12.423256000000038], [12.431239000000005, 12.43125299999997], [12.435238000000027, 12.435255999999981], [12.443238999999949, 12.443252999999913], [12.539240999999947, 12.539260000000013], [12.54723899999999, 12.547255999999834], [12.727240999999822, 12.727255000000014], [12.735254999999825, 12.7352699999999], [12.743240999999898, 12.743258999999853], [12.751238999999941, 12.751254000000017], [12.755237999999963, 12.755250999999816], [12.911239999999907, 12.911253999999872], [12.919239999999945, 12.919255000000021], [12.923237999999856, 12.923256000000038], [12.931239000000005, 12.931253999999853], [12.939239000000043, 12.939253000000008], [12.943237999999837, 12.943250999999918], [13.415240999999924, 13.415255999999999], [13.423238999999967, 13.423254000000043], [13.699241000000029, 13.699259999999867], [13.707238999999845, 13.707253999999921], [13.711238999999978, 13.711251999999831], [13.727239999999938, 13.727253999999903], [13.735238999999865, 13.735259999999926], [13.743238999999903, 13.743252999999868], [13.747239000000036, 13.747251000000006], [14.123257999999851, 14.123272000000043], [14.131245999999919, 14.131259999999884], [14.13524399999983, 14.135262000000012], [14.143319999999903, 14.143335999999863], [14.151323999999931, 14.151341000000002]], \"4\": [[0.45536399999991772, 0.45539099999996324], [0.46327699999983452, 0.46331199999985984], [0.47124099999996361, 0.47125699999992321], [0.4792410000000018, 0.47925899999995636], [0.48723999999992884, 0.48725399999989349], [0.4912419999998292, 0.49125899999989997], [0.49923899999998866, 0.49925999999982196], [0.50723999999991065, 0.5072539999998753], [0.51123999999981606, 0.51125799999999799], [0.51923799999985931, 0.51925499999993008], [0.52723999999989246, 0.52725299999997333], [0.53523799999993571, 0.53525100000001657], [0.53923799999984112, 0.53925600000002305], [0.54723799999987932, 0.54725199999984397], [0.5512389999998959, 0.5512509999998656], [0.76324099999987993, 0.7632539999999608], [0.77123800000003939, 0.77125999999998385], [0.77923799999985022, 0.77925400000003719], [0.86323999999990519, 0.86325399999986985], [0.87123799999994844, 0.8712519999999131], [0.87923699999987548, 0.87925499999983003], [0.88723899999990863, 0.88725299999987328], [0.89523699999995188, 0.89525099999991653], [1.1432409999999891, 1.1432549999999537], [1.1512390000000323, 1.151252999999997], [1.1592369999998482, 1.1592550000000301], [1.1672379999999976, 1.1672519999999622], [1.1752380000000358, 1.175258999999869], [1.1832379999998466, 1.1832509999999274], [5.447240999999849, 5.4472599999999147], [5.4552539999999681, 5.4552689999998165], [5.4632379999998193, 5.4632509999999002], [5.5272399999998925, 5.5272529999999733], [5.5352379999999357, 5.5352530000000115], [5.5392389999999523, 5.5392569999999068], [5.5472379999998793, 5.5472539999998389], [5.6112399999999525, 5.6112530000000334], [5.6192369999998846, 5.619258999999829], [5.6272380000000339, 5.6272519999999986], [7.9552400000000034, 7.9552549999998519], [8.2192399999998997, 8.2192549999999756], [8.2312379999998484, 8.2312589999999091], [8.2392379999998866, 8.2392539999998462], [8.3472399999998288, 8.3472540000000208], [8.355237999999872, 8.3552519999998367], [8.3632370000000265, 8.363254999999981], [8.3752369999999701, 8.3752540000000408], [8.4232399999998506, 8.4232540000000427], [8.4312379999998939, 8.4312519999998585], [8.4352389999999104, 8.4352559999999812], [8.4432369999999537, 8.4432509999999183], [8.4472389999998541, 8.4472509999998238], [8.5272410000000036, 8.5272539999998571], [8.5352379999999357, 8.5352519999999004], [8.5432369999998627, 8.5432549999998173], [8.5552379999999175, 8.5552549999999883], [8.8472399999998288, 8.8472540000000208], [8.855237999999872, 8.8552599999998165], [8.8632370000000265, 8.8632539999998698], [8.8992429999998421, 8.899255999999923], [8.9072380000000067, 8.9072519999999713], [9.2392409999999927, 9.2392549999999574], [9.3712409999998272, 9.3712550000000192], [9.3792379999999866, 9.3792529999998351], [9.8592399999999998, 9.8592589999998381], [9.867238000000043, 9.8672549999998864], [10.527241000000004, 10.527254999999968], [10.535237999999936, 10.53525999999988], [10.543238999999858, 10.543253999999934], [12.447240999999849, 12.44725399999993], [12.527239999999892, 12.527253999999857], [12.535237999999936, 12.5352519999999], [13.847248000000036, 13.847262999999884], [13.855237999999872, 13.855259999999817], [13.863239000000021, 13.863252999999986], [13.867240000000038, 13.867254000000003], [14.067247999999836, 14.067262999999912], [14.075237999999899, 14.075259999999844], [14.083238999999821, 14.083255000000008], [14.927257999999938, 14.927271000000019], [14.935383000000002, 14.93540599999983], [14.943315999999868, 14.943338999999924], [14.951332999999977, 14.951356000000033], [14.959419999999909, 14.959442999999965], [14.967386999999917, 14.967409999999973], [14.975404000000026, 14.975435999999945], [15.135399000000007, 15.135430999999926], [15.143368999999893, 15.143403999999919], [15.151323999999931, 15.151348999999982], [15.159445000000005, 15.159480999999914], [15.343335000000025, 15.343356999999969], [15.351360999999997, 15.351394999999911], [15.35936300000003, 15.359393999999838], [15.367252999999891, 15.367279999999937], [15.37547799999993, 15.375500999999986], [15.383520999999973, 15.383542999999918], [15.391329000000042, 15.391352999999981], [15.399325999999974, 15.399343999999928], [15.527327000000014, 15.527341999999862], [15.535327999999936, 15.535351999999875], [15.543427999999949, 15.543447999999898], [15.635323999999855, 15.635338999999931], [15.643326999999999, 15.643349999999828], [15.651427000000012, 15.651444999999967], [15.775406999999859, 15.775437000000011], [15.783447999999908, 15.783486000000039], [15.79141699999991, 15.791445999999951], [15.791457999999921, 15.791478999999981], [15.799413999999842, 15.799451999999974], [15.807412999999997, 15.807450999999901], [15.815425000000005, 15.815447999999833], [15.823376999999937, 15.823401999999987]], \"5\": [[0.0074839999999767315, 0.0075079999999161373], [0.015489999999999782, 0.015512999999828025], [0.023449000000027809, 0.023471999999856052], [0.031473999999889202, 0.031488999999965017], [0.039430999999922278, 0.039452999999866734], [0.047319999999899665, 0.047338999999965381], [0.41539199999988341, 0.41541899999992893], [0.42725499999983185, 0.42728899999997338], [0.43931399999996756, 0.43933999999990192], [0.44731999999999061, 0.44734299999981886], [2.5392409999999472, 2.539260000000013], [2.5472379999998793, 2.5472529999999551], [2.5512389999998959, 2.5512519999999768], [2.6072549999998955, 2.6072689999998602], [2.615237999999863, 2.6152519999998276], [2.6232379999999011, 2.6232569999999669], [2.6312369999998282, 2.6312510000000202], [2.6352399999998397, 2.6352529999999206], [3.1112409999998363, 3.1112550000000283], [3.1192379999999957, 3.1192529999998442], [3.1272449999999026, 3.1272639999999683], [3.1352379999998448, 3.1352560000000267], [3.1792399999999361, 3.1792539999999008], [3.1872389999998632, 3.1872529999998278], [4.4512399999998706, 4.4512599999998201], [4.4592370000000301, 4.4592539999998735], [4.5272410000000036, 4.5272539999998571], [4.5352369999998245, 4.5352579999998852], [4.5432379999999739, 4.5432549999998173], [4.6112399999999525, 4.6112539999999171], [4.6192389999998795, 4.6192529999998442], [4.6232390000000123, 4.6232569999999669], [4.6312379999999393, 4.631253999999899], [4.7192419999998947, 4.7192549999999756], [4.7272389999998268, 4.7272539999999026], [4.73523699999987, 4.7352549999998246], [4.7432380000000194, 4.743253999999979], [4.911248999999998, 4.9112619999998515], [4.9192379999999503, 4.9192519999999149], [5.7352409999998599, 5.7352599999999256], [5.7432380000000194, 5.7432549999998628], [5.9112410000000182, 5.9112549999999828], [5.9192379999999503, 5.9192530000000261], [5.9272369999998773, 5.9272549999998319], [5.9352389999999104, 5.9352529999998751], [6.9552400000000034, 6.9552539999999681], [7.34724099999994, 7.3472549999999046], [7.3552459999998518, 7.3552680000000237], [7.367238000000043, 7.3672549999998864], [7.3752399999998488, 7.3752540000000408], [7.3832379999998921, 7.3832529999999679], [7.3912390000000414, 7.3912559999998848], [7.403238999999985, 7.4032549999999446], [7.5272399999998925, 7.5272539999998571], [7.5352379999999357, 7.5352519999999004], [7.5392389999999523, 7.5392560000000231], [7.5472369999999955, 7.5472509999999602], [7.5512389999998959, 7.5512519999999768], [7.8472399999998288, 7.8472540000000208], [7.855237999999872, 7.8552519999998367], [8.9112410000000182, 8.9112599999998565], [8.9192379999999503, 8.9192519999999149], [8.9232399999998506, 8.9232569999999214], [8.9352380000000267, 8.93525899999986], [8.9432369999999537, 8.9432540000000245], [9.2192430000000058, 9.2192569999999705], [9.227237999999943, 9.2272599999998874], [9.2352379999999812, 9.2352509999998347], [11.543240999999853, 11.543259000000035], [11.551238000000012, 11.551253999999972], [11.727242999999817, 11.727257000000009], [11.735237999999981, 11.735251999999946], [11.739238999999998, 11.739256999999952], [11.747237999999925, 11.747251999999889], [11.751238999999941, 11.751252000000022], [11.923240999999962, 11.923254999999926], [11.931237999999894, 11.93125299999997], [13.431241, 13.431258999999955], [13.439237999999932, 13.439255000000003], [13.507241000000022, 13.507254999999986], [13.515237999999954, 13.515251999999919], [13.523237999999992, 13.523254999999835], [13.53123800000003, 13.531252999999879], [13.539237999999841, 13.539252000000033], [13.543238999999858, 13.54325700000004], [13.551238000000012, 13.551258999999845], [13.559237999999823, 13.559252000000015], [13.56323899999984, 13.56325199999992], [13.687239999999974, 13.687254999999823], [13.695238000000018, 13.695251999999982], [14.491254000000026, 14.49126699999988], [14.499245999999857, 14.499268000000029], [14.507325999999921, 14.50734199999988], [14.515329999999949, 14.515347999999904], [14.527338999999984, 14.527353999999832], [14.535322999999835, 14.535337999999911], [14.543327999999974, 14.54335100000003], [14.551322000000027, 14.551337999999987], [14.559320999999954, 14.559338999999909], [14.63533799999982, 14.635352999999895], [14.643323000000009, 14.643338999999969], [14.651327999999921, 14.651350999999977], [14.659321999999975, 14.659337999999934], [14.667324000000008, 14.667341999999962], [14.723338000000012, 14.723352999999861], [14.731407999999874, 14.73143099999993], [14.739252999999962, 14.739274999999907], [14.747319999999945, 14.747343000000001], [14.755320999999867, 14.755338999999822]]}, \"kworker/5:1H-1251\": {\"5\": [[14.927179000000024, 14.927191999999877], [14.936424999999872, 14.936436999999842]]}, \"init-1\": {\"1\": [[2.7998430000000099, 2.7998969999998735], [7.8049059999998462, 7.8049589999998261], [12.809968000000026, 12.81002199999989]]}, \"sudo-2330\": {\"1\": [[15.780702999999903, 15.782759999999826]], \"5\": [[15.779931999999917, 15.780675999999858]]}, \"ksoftirqd/2-23\": {\"2\": [[0.44744599999989987, 0.44746599999984937]]}, \"sudo-2311\": {\"2\": [[0.001312999999981912, 0.0019949999998516432]]}, \"syslogd-1412\": {\"1\": [[15.350817000000006, 15.350893000000042], [16.099258999999847, 16.099324999999908]], \"2\": [[15.779287999999951, 15.77933599999983]]}, \"kworker/u12:1-46\": {\"0\": [[0.36356799999998657, 0.36362599999984013], [0.3640139999999974, 0.36407399999984591], [0.36443399999984649, 0.36449199999992743], [0.45530299999995805, 0.45532000000002881]], \"1\": [[14.9285789999999, 14.928596999999854], [15.083403999999973, 15.083417999999938], [15.083676999999852, 15.083689999999933], [15.133765999999923, 15.133797999999842], [15.134139000000005, 15.134172999999919], [15.13438199999996, 15.134397999999919], [15.29135099999985, 15.291384999999991], [15.291733000000022, 15.291772999999921], [15.291990999999825, 15.292001000000027], [15.292169999999942, 15.292187000000013], [15.292566999999963, 15.292575999999826], [15.292743999999857, 15.292757999999822], [15.341952999999876, 15.341969999999947], [15.342147999999952, 15.342167999999901], [15.365289999999959, 15.365305999999919], [15.518569999999954, 15.518597], [15.518910000000005, 15.51892799999996], [15.568635999999969, 15.568663000000015], [15.568970000000036, 15.569002999999839], [15.569193999999925, 15.569207000000006], [15.723353999999972, 15.723381999999901], [15.723696999999902, 15.723718999999846], [15.724124999999958, 15.724132999999938], [15.724300999999969, 15.724320999999918], [15.724488999999949, 15.724504999999908], [16.043054999999868, 16.043061999999964]], \"2\": [[16.043234999999868, 16.043253999999934], [16.043421999999964, 16.043443000000025], [16.043627999999899, 16.043635999999879], [16.043962999999849, 16.04398900000001], [16.093208000000004, 16.093235999999933], [16.093548999999939, 16.093580999999858]], \"3\": [[0.45602299999995921, 0.45604099999991377], [0.45609699999999975, 0.45610699999997451], [0.4592489999999998, 0.45926999999983309], [0.46325999999999112, 0.46327699999983452], [0.46336699999983466, 0.46338599999990038], [0.47525999999993473, 0.4752770000000055], [1.8712619999998878, 1.871309999999994], [6.9872399999999288, 6.9872969999998986], [12.10723999999982, 12.107428999999911], [12.199546999999939, 12.199952999999823], [14.48852399999987, 14.488544999999931], [14.738585999999941, 14.738607999999886], [14.926107999999886, 14.92612599999984]], \"4\": [[13.846393000000035, 13.846416999999974], [14.06621999999993, 14.06623999999988], [14.120057999999972, 14.120075000000043]], \"5\": [[0.45583599999986291, 0.45585800000003474]]}, \"task0-2320\": {\"0\": [[0.45617300000003524, 0.87524499999994987], [0.87526899999988927, 0.94723499999986416], [0.95923399999992398, 0.97123199999987264], [0.98323299999992742, 0.99523299999987103], [1.007233000000042, 1.0192329999999856], [1.0312329999999292, 1.0432329999998728], [1.0552329999998165, 1.0672329999999874], [1.0792329999999311, 1.0912329999998747], [1.1032329999998183, 1.1152329999999893], [1.1272329999999329, 1.1352459999998246], [1.1352589999999054, 1.1472369999999046], [1.1592339999999695, 1.1712339999999131], [1.1832349999999678, 1.1952369999999064], [1.20723699999985, 1.5952339999998912], [1.6072329999999511, 1.6192340000000058], [1.6312329999998383, 1.6432330000000093], [1.6552329999999529, 1.6672329999998965], [1.6792329999998401, 1.6912330000000111], [1.7032329999999547, 1.7152349999998933], [1.7272429999998167, 1.7392339999998967], [1.7512329999999565, 1.7632329999999001], [1.7752329999998437, 1.7872330000000147], [1.7992329999999583, 1.8112320000000182], [1.8232329999998456, 1.8352319999999054], [1.8472329999999602, 1.85923200000002], [1.8672639999999774, 2.0992349999999078], [2.1112329999998565, 2.1232330000000275], [2.1352399999998397, 2.1472320000000309], [2.1592329999998583, 2.1712330000000293], [2.1832359999998516, 2.1952340000000277], [2.2072339999999713, 2.2192339999999149], [2.2312329999999747, 2.2432320000000345], [2.2552339999999731, 2.2672330000000329], [2.2792329999999765, 2.2912329999999201], [2.3032329999998638, 2.3152330000000347], [2.3272329999999783, 2.339232999999922], [2.3512409999998454, 2.3632330000000366], [2.3752329999999802, 2.6112359999999626], [2.6232390000000123, 2.6352319999998599], [2.6472329999999147, 2.6592319999999745], [2.6712319999999181, 2.6832319999998617], [2.6952320000000327, 2.7072319999999763], [2.7192319999999199, 2.7312319999998635], [2.7432329999999183, 2.7552319999999781], [2.7672330000000329, 2.7792329999999765], [2.7912329999999201, 2.8032329999998638], [2.8152330000000347, 2.8272329999999783], [2.839232999999922, 2.8512329999998656], [2.8592609999998331, 2.8712329999998474], [2.8832330000000184, 2.8952339999998458], [2.9072329999999056, 2.9192329999998492], [2.9312330000000202, 2.9432329999999638], [2.9552340000000186, 2.967232999999851], [2.9792339999999058, 2.9912399999998343], [3.0032329999999092, 3.015231999999969], [3.0272339999999076, 3.0392329999999674], [3.051232999999911, 3.0632329999998547], [3.0752330000000256, 3.0872319999998581], [3.0992329999999129, 3.1112429999998312], [3.1232339999999112, 3.135234999999966], [3.1472340000000258, 3.1592339999999695], [3.1712330000000293, 3.1832349999999678], [3.1952369999999064, 3.2072339999999713], [3.2192330000000311, 3.2312329999999747], [3.2432329999999183, 3.2552329999998619], [4.2752349999998387, 4.2872330000000147], [4.2992329999999583, 4.3112320000000182], [4.3232329999998456, 4.3352330000000165], [4.3472329999999602, 4.3592329999999038], [4.3712329999998474, 4.3832330000000184], [4.395232999999962, 4.4072340000000167], [4.4192329999998492, 4.4312359999998989], [4.4432369999999537, 4.4552389999998923], [4.467232999999851, 4.479233000000022], [4.4912329999999656, 4.5032329999999092], [4.5152329999998528, 4.5272429999999986], [4.5392359999998462, 4.551232999999911], [4.5632329999998547, 4.5752330000000256], [4.5872329999999693, 4.5992329999999129], [4.6112419999999474, 4.6232350000000224], [4.6352339999998549, 4.6472329999999147], [4.6592339999999695, 4.8152519999998731], [4.8152729999999337, 4.9392450000000281], [4.9392619999998715, 5.1352409999999509], [5.1352500000000418, 5.1752339999998185], [5.1872329999998783, 5.1992329999998219], [5.2112339999998767, 5.2232319999998253], [5.2352329999998801, 5.2472329999998237], [5.2592329999999947, 5.2712329999999383], [5.2832339999999931, 5.2952410000000327], [5.3072329999999965, 5.3192339999998239], [5.3312349999998787, 5.3432319999999436], [5.3552329999999984, 5.367232999999942], [5.3792329999998856, 5.3912329999998292], [5.403233999999884, 5.4152420000000347], [5.4272339999999986, 5.439234999999826], [5.4512359999998807, 5.8112349999998969], [5.8232339999999567, 5.8352330000000165], [5.8472329999999602, 5.8592329999999038], [5.8672589999998763, 5.8792329999998856], [5.8912329999998292, 5.9032330000000002], [5.9152349999999387, 5.9272409999998672], [5.939234999999826, 5.9512409999999818], [5.9632329999999456, 5.9752340000000004], [5.9872329999998328, 5.9992330000000038], [6.0112329999999474, 6.023232999999891], [6.0352339999999458, 6.0472330000000056], [6.0592329999999492, 6.0712349999998878], [6.0832319999999527, 6.0952339999998912], [6.1072329999999511, 6.1192329999998947], [6.1312329999998383, 6.1432330000000093], [6.1552329999999529, 6.1672329999998965], [6.1792329999998401, 6.1912449999999808], [6.2032329999999547, 6.2152320000000145], [6.2272329999998419, 6.2392339999998967], [6.2512329999999565, 6.2632329999999001], [6.2752329999998437, 6.2872330000000147], [6.2992329999999583, 6.3112329999999019], [6.3232329999998456, 6.3352330000000165], [6.3472339999998439, 6.579234999999926], [6.5912329999998747, 6.6032329999998183], [6.615235999999868, 6.6272349999999278], [6.6392339999999876, 6.6512329999998201], [6.6632329999999911, 6.6752329999999347], [6.6872329999998783, 6.6992329999998219], [6.7112329999999929, 6.7232319999998253], [6.7352329999998801, 6.7472329999998237], [6.7592329999999947, 6.7712329999999383], [6.7832329999998819, 6.7952329999998256], [6.8072329999999965, 6.8192329999999401], [6.831232, 6.8432319999999436], [6.8552329999999984, 7.0912349999998696], [7.1032339999999294, 7.1152329999999893], [7.1272329999999329, 7.1392329999998765], [7.1512339999999313, 7.1632329999999911], [7.1752339999998185, 7.1872329999998783], [7.1992329999998219, 7.2112329999999929], [7.2232329999999365, 7.2352319999999963], [7.2472329999998237, 7.2592329999999947], [7.2712329999999383, 7.2832359999999881], [7.2952329999998256, 7.3072329999999965], [7.3192339999998239, 7.3312329999998838], [7.3432419999999183, 7.3552349999999933], [7.3672349999999369, 7.3792359999999917], [7.3912410000000364, 7.4032330000000002], [7.4152329999999438, 7.4272329999998874], [7.439232999999831, 7.451233000000002], [7.4632329999999456, 7.4752329999998892], [7.487231999999949, 7.4992339999998876], [9.0112349999999424, 9.0232340000000022], [9.0352329999998346, 9.0472330000000056], [9.0592329999999492, 9.0712329999998929], [9.0832339999999476, 9.0952330000000075], [9.1072329999999511, 9.1192340000000058], [9.1312329999998383, 9.1352500000000418], [9.1472329999999147, 9.1592339999999695], [9.1712330000000293, 9.1832329999999729], [9.1952329999999165, 9.2072329999998601], [9.2192459999998846, 9.2312359999998534], [9.2432349999999133, 9.2552339999999731], [9.2672350000000279, 9.2792329999999765], [9.2912329999999201, 9.3952359999998407], [9.4072349999999005, 9.4192359999999553], [9.4312350000000151, 9.4432329999999638], [9.4552329999999074, 9.467232999999851], [9.479233000000022, 9.4912329999999656], [9.5032329999999092, 9.5152329999998528], [9.5272419999998874, 9.5392349999999624], [9.551232999999911, 9.5632329999998547], [9.5752330000000256, 9.5872329999999693], [9.5992329999999129, 9.6112329999998565], [9.6232330000000275, 9.6352329999999711], [9.6472429999998894, 9.6592329999998583], [10.03523499999983, 10.047233999999889], [10.059233999999833, 10.071234000000004], [10.083233999999948, 10.095233999999891], [10.107232999999951, 10.119232999999895], [10.131232999999838, 10.143233999999893], [10.155232999999953, 10.167232999999896], [10.179233999999951, 10.191233000000011], [10.203232999999955, 10.215232999999898], [10.227232999999842, 10.239233999999897], [10.25123399999984, 10.2632329999999], [10.275232999999844, 10.287231999999904], [10.299232999999958, 10.311232999999902]], \"3\": [[9.6672369999998864, 9.6792349999998351], [9.691235000000006, 9.7032339999998385], [9.7152349999998933, 9.7272339999999531], [9.7392350000000079, 9.7512349999999515], [9.7632349999998951, 9.7752349999998387], [9.7872339999998985, 9.7992349999999533], [9.8112349999998969, 9.8232339999999567], [9.8352350000000115, 9.8472339999998439], [9.8672359999998207, 9.8792349999998805], [9.8912349999998241, 9.903233999999884], [9.9152349999999387, 9.9272349999998823], [9.9392339999999422, 9.9512339999998858], [9.9632349999999406, 9.9752340000000004], [9.9872349999998278, 9.9992349999999988], [10.011234999999942, 10.023234000000002], [10.951234999999997, 10.963234999999941], [10.975234, 10.987233999999944], [10.999234999999999, 11.011233999999831], [11.023234999999886, 11.03523499999983], [11.047259999999824, 11.055239000000029], [11.063253999999915, 11.075235999999904], [11.087233999999853, 11.099234999999908], [11.111234999999851, 11.123235999999906], [11.135233999999855, 11.14723499999991], [11.159234999999853, 11.171235000000024], [11.183233999999857, 11.227239999999938], [11.227253999999903, 11.235238999999865], [11.235253999999941, 11.243238000000019], [11.243255999999974, 11.25123799999983], [11.251252999999906, 11.259240999999975], [11.259253999999828, 11.463235999999824], [11.475234999999884, 11.487234999999828], [11.499234999999999, 11.511233999999831], [11.523234000000002, 11.527239999999892], [11.527253999999857, 11.535238999999819], [11.547236999999996, 11.559234999999944], [11.571234000000004, 11.583243000000039], [11.595235000000002, 11.607234999999946], [11.61923499999989, 11.631234999999833], [11.643233999999893, 11.655233999999837], [11.667234000000008, 11.679234999999835], [11.691235000000006, 11.703233999999838]], \"4\": [[7.5072339999999258, 7.5192329999999856], [7.5312349999999242, 7.543233999999984], [7.5552350000000388, 7.5672329999999874], [7.5792319999998199, 7.5912329999998747], [7.6032319999999345, 7.615233999999873], [7.6272329999999329, 7.6392329999998765], [7.6512329999998201, 7.6632329999999911], [7.6752329999999347, 7.6872329999998783], [7.6992329999998219, 7.7112329999999929], [7.7232329999999365, 7.8192380000000412], [7.8192529999998897, 7.9552400000000034], [7.9552549999998519, 8.0192349999999806], [8.0312329999999292, 8.0432329999998728], [8.0552329999998165, 8.0672329999999874], [8.0792329999999311, 8.0912339999999858], [8.1032329999998183, 8.1152329999999893], [8.1272329999999329, 8.1392329999998765], [8.1512329999998201, 8.1632329999999911], [8.1752329999999347, 8.1872329999998783], [8.1992329999998219, 8.2112329999999929], [8.2192549999999756, 8.2312379999998484], [8.2392539999998462, 8.2512319999998454], [8.2632329999999001, 8.27523199999996], [8.2872319999999036, 8.2992319999998472], [8.3112320000000182, 8.3232319999999618], [8.3352330000000165, 8.347231999999849], [8.3552519999998367, 8.3632370000000265], [8.3752540000000408, 8.4232399999998506], [8.4232540000000427, 8.4312379999998939], [8.4312519999998585, 8.4352389999999104], [8.4352559999999812, 8.4432369999999537], [8.4432509999999183, 8.4472389999998541], [8.4472509999998238, 8.5272410000000036], [8.5272539999998571, 8.5352379999999357], [8.5352519999999004, 8.5432369999998627], [8.5432549999998173, 8.5552379999999175], [8.5552549999999883, 8.6592349999998532], [8.6712330000000293, 8.6832329999999729], [8.6952329999999165, 8.7072329999998601], [8.7192330000000311, 8.7312329999999747], [8.7432329999999183, 8.7552329999998619], [8.7672339999999167, 8.7792329999999765], [8.7912329999999201, 8.8032329999998638], [8.8152509999999893, 8.8272329999999783], [8.839232999999922, 8.8472399999998288], [8.8472540000000208, 8.855237999999872], [8.8632539999998698, 8.8752329999999802], [8.8872329999999238, 8.8992329999998674], [8.9192349999998441, 8.9312350000000151], [8.9432329999999638, 8.9552340000000186], [8.9672319999999672, 8.979233000000022], [8.9912319999998545, 9.0032320000000254], [10.323234999999841, 10.335233000000017], [10.347231999999849, 10.359234000000015], [10.371232999999847, 10.383233000000018], [10.395232999999962, 10.407234000000017], [10.419232999999849, 10.431231999999909], [10.443232999999964, 10.455232999999907], [10.467232999999851, 10.479233000000022], [10.491232999999966, 10.503232999999909], [10.515232999999853, 10.527233000000024], [10.543253999999934, 10.555232999999816], [10.567232999999987, 10.579234000000042], [10.591233999999986, 10.603232999999818], [10.615232999999989, 10.627232999999933], [10.639232999999876, 10.65123299999982], [10.663232999999991, 10.675232999999935], [12.243236000000024, 12.255233999999973], [12.267233000000033, 12.279231999999865], [12.29123299999992, 12.303232999999864], [12.315233000000035, 12.327232999999978], [12.339232999999922, 12.351231999999982], [12.363233000000037, 12.37523299999998], [12.387232999999924, 12.399232999999867], [12.411233000000038, 12.423232999999982], [12.435232000000042, 12.447240999999849], [12.459231999999929, 12.471232999999984], [12.483231999999816, 12.495232999999871], [12.507233000000042, 12.519232999999986], [12.5352519999999, 12.547233999999889], [12.559232999999949, 12.571232999999893], [12.583232999999836, 12.595233000000007], [13.395234999999957, 13.407232999999906], [13.41923399999996, 13.43123300000002], [13.443233999999848, 13.455232999999907], [13.467232999999851, 13.479233000000022], [13.491232999999966, 13.50323400000002], [13.515234999999848, 13.527235000000019], [13.539232999999967, 13.551236000000017], [13.563233999999966, 13.575233000000026], [13.587233999999853, 13.599232999999913], [13.611232999999856, 13.623233999999911]], \"5\": [[3.2632349999998951, 3.2752329999998437], [3.2872330000000147, 3.2992329999999583], [3.3112329999999019, 3.3232329999998456], [3.3352330000000165, 3.3472329999999602], [3.3592329999999038, 3.3712329999998474], [3.3832330000000184, 3.3952319999998508], [3.4072329999999056, 3.4192329999998492], [3.4312330000000202, 3.4432329999999638], [3.4552329999999074, 3.467232999999851], [3.479233000000022, 3.4912329999999656], [3.5032329999999092, 3.5152329999998528], [3.5272330000000238, 3.903233999999884], [3.9152329999999438, 3.9272320000000036], [3.9392319999999472, 3.951233000000002], [3.9632319999998344, 3.9752340000000004], [3.9872329999998328, 3.9992330000000038], [4.0112329999999474, 4.023232999999891], [4.0352329999998346, 4.0472330000000056], [4.0592329999999492, 4.0712329999998929], [4.0832329999998365, 4.0952330000000075], [4.1072329999999511, 4.1192320000000109], [4.1312319999999545, 4.1432350000000042], [4.1552329999999529, 4.1672329999998965], [4.1792329999998401, 4.1912330000000111], [4.2032329999999547, 4.2152329999998983], [4.2272329999998419, 4.2392339999998967], [4.2512329999999565, 4.2632329999999001], [10.687234999999873, 10.699233999999933], [10.711232999999993, 10.723232999999937], [10.73523299999988, 10.747232999999824], [10.759232999999995, 10.771232999999938], [10.783231999999998, 10.795237000000043], [10.807238999999981, 10.819231999999829], [10.831232999999884, 10.843232999999827], [10.855234999999993, 10.867232999999942], [10.879232999999886, 10.891232999999829], [10.903233, 10.915232999999944], [10.927232999999887, 10.939232999999831], [11.711234999999988, 11.723232999999937], [11.735251999999946, 11.739238999999998], [11.747251999999889, 11.751238999999941], [11.751252000000022, 11.7632329999999], [11.775232999999844, 11.787233000000015], [11.799232999999958, 11.811232000000018], [11.823231999999962, 11.835240999999996], [11.847233999999844, 11.859234000000015], [11.871232999999847, 11.883233000000018], [11.895232999999962, 11.907232999999906], [11.91923399999996, 11.923240999999962], [11.93125299999997, 11.943234999999959], [11.955232999999907, 11.967232999999851], [11.979233000000022, 11.991233999999849], [12.003232999999909, 12.015232999999853], [12.027233999999908, 12.039232999999967], [12.051232999999911, 12.063232999999855], [12.075233999999909, 12.087232999999969], [12.099232000000029, 12.111232999999856], [12.123233000000027, 12.13523199999986], [12.147232000000031, 12.159232999999858], [12.171231999999918, 12.183231999999862], [12.195230999999922, 12.20723299999986], [12.219233000000031, 12.23123499999997], [12.607233999999835, 12.619234000000006], [12.631233999999949, 12.643233000000009], [12.655232999999953, 12.667232999999896], [12.67923299999984, 12.691233000000011], [12.703232999999955, 12.715232999999898], [12.727237999999943, 12.739233000000013], [12.751234999999951, 12.7632329999999], [12.775232999999844, 12.787233000000015], [12.799232999999958, 12.811232999999902], [12.823232999999846, 12.835233000000017], [12.84723299999996, 12.859232999999904], [12.871233999999959, 13.123233999999911], [13.135233999999855, 13.147232999999915], [13.159232999999858, 13.171233000000029], [13.183232999999973, 13.195234999999911], [13.20723299999986, 13.219233000000031], [13.231232999999975, 13.243240000000014], [13.255232999999862, 13.267231999999922], [13.279243999999835, 13.291232000000036], [13.30323199999998, 13.315231999999924], [13.327232999999978, 13.339232000000038], [13.351231999999982, 13.363231999999925], [13.375231999999869, 13.387232999999924], [13.635232999999971, 13.647232999999915], [13.659233999999969, 13.671233000000029], [13.683232999999973, 13.687239999999974], [13.695251999999982, 13.707234999999855], [13.719233000000031, 13.731233999999858], [13.743234000000029, 13.755240999999842], [13.767233000000033, 13.779231999999865], [13.791232000000036, 13.80323199999998], [13.815231999999924, 13.827231999999867], [13.839232999999922, 14.488526999999976]]}, \"sh-2326\": {\"3\": [[15.343260999999984, 15.352084999999988]], \"5\": [[15.342527000000018, 15.343153000000029]]}, \"watchdog/0-12\": {\"0\": [[1.1352459999998246, 1.1352589999999054], [5.1352409999999509, 5.1352500000000418], [9.1352500000000418, 9.1352569999999105], [13.135240999999951, 13.135248999999931]]}, \"sh-2327\": {\"1\": [[15.355777999999873, 15.359928999999966]]}, \"sudo-2331\": {\"2\": [[16.101226999999881, 16.101248999999825]]}, \"task1-2321\": {\"0\": [[0.45518500000002859, 0.45529299999998329], [0.45538399999986723, 0.45540800000003401], [0.94723499999986416, 0.95923399999992398], [0.97123199999987264, 0.98323299999992742], [0.99523299999987103, 1.007233000000042], [1.0192329999999856, 1.0312329999999292], [1.0432329999998728, 1.0552329999998165], [1.0672329999999874, 1.0792329999999311], [1.0912329999998747, 1.1032329999998183], [1.1152329999999893, 1.1272329999999329], [1.1472369999999046, 1.1592339999999695], [1.1712339999999131, 1.1832349999999678], [1.1952369999999064, 1.20723699999985], [1.5952339999998912, 1.6072329999999511], [1.6192340000000058, 1.6312329999998383], [1.6432330000000093, 1.6552329999999529], [1.6672329999998965, 1.6792329999998401], [1.6912330000000111, 1.7032329999999547], [1.7152349999998933, 1.7272429999998167], [1.7392339999998967, 1.7512329999999565], [1.7632329999999001, 1.7752329999998437], [1.7872330000000147, 1.7992329999999583], [1.8112320000000182, 1.8232329999998456], [1.8352319999999054, 1.8472329999999602], [1.85923200000002, 1.8672429999999167], [2.6112359999999626, 2.6232390000000123], [2.6352319999998599, 2.6472329999999147], [2.6592319999999745, 2.6712319999999181], [2.6832319999998617, 2.6952320000000327], [2.7072319999999763, 2.7192319999999199], [2.7312319999998635, 2.7432329999999183], [2.7552319999999781, 2.7672330000000329], [2.7792329999999765, 2.7912329999999201], [2.8032329999998638, 2.8152330000000347], [2.8272329999999783, 2.839232999999922], [2.8512329999998656, 2.8592419999999947], [2.8712329999998474, 2.8832330000000184], [2.8952339999998458, 2.9072329999999056], [2.9192329999998492, 2.9312330000000202], [2.9432329999999638, 2.9552340000000186], [2.967232999999851, 2.9792339999999058], [2.9912399999998343, 3.0032329999999092], [3.015231999999969, 3.0272339999999076], [3.0392329999999674, 3.051232999999911], [3.0632329999998547, 3.0752330000000256], [3.0872319999998581, 3.0992329999999129], [3.1112429999998312, 3.1232339999999112], [3.135234999999966, 3.1472340000000258], [3.1592339999999695, 3.1712330000000293], [3.1832349999999678, 3.1952369999999064], [3.2072339999999713, 3.2192330000000311], [3.2312329999999747, 3.2432329999999183], [3.2552329999998619, 3.5072339999999258], [3.5192329999999856, 3.5312349999999242], [3.543233999999984, 3.5552319999999327], [3.5672339999998712, 3.5792329999999311], [3.5912339999999858, 3.6032329999998183], [3.615235999999868, 3.6272369999999228], [3.6392339999999876, 3.6512339999999313], [3.6632329999999911, 3.6752329999999347], [3.6872329999998783, 3.6992329999998219], [3.7112329999999929, 3.7232339999998203], [3.7352329999998801, 3.7472349999998187], [3.7592329999999947, 3.7712329999999383], [3.7832329999998819, 3.7952319999999418], [3.8072329999999965, 3.819231999999829], [3.831232, 3.8432319999999436], [3.8552319999998872, 3.867232999999942], [3.8792320000000018, 3.8912339999999404], [5.8112349999998969, 5.8232339999999567], [5.8352330000000165, 5.8472329999999602], [5.8592329999999038, 5.8672409999999218], [5.8792329999998856, 5.8912329999998292], [5.9032330000000002, 5.9152349999999387], [5.9272670000000289, 5.939234999999826], [5.9512409999999818, 5.9632329999999456], [5.9752340000000004, 5.9872329999998328], [5.9992330000000038, 6.0112329999999474], [6.023232999999891, 6.0352339999999458], [6.0472330000000056, 6.0592329999999492], [6.0712349999998878, 6.0832319999999527], [6.0952339999998912, 6.1072329999999511], [6.1192329999998947, 6.1312329999998383], [6.1432330000000093, 6.1552329999999529], [6.1672329999998965, 6.1792329999998401], [6.1912449999999808, 6.2032329999999547], [6.2152320000000145, 6.2272329999998419], [6.2392339999998967, 6.2512329999999565], [6.2632329999999001, 6.2752329999998437], [6.2872330000000147, 6.2992329999999583], [6.3112329999999019, 6.3232329999998456], [6.3352330000000165, 6.3472339999998439], [7.0912349999998696, 7.1032339999999294], [7.1152329999999893, 7.1272329999999329], [7.1392329999998765, 7.1512339999999313], [7.1632329999999911, 7.1752339999998185], [7.1872329999998783, 7.1992329999998219], [7.2112329999999929, 7.2232329999999365], [7.2352319999999963, 7.2472329999998237], [7.2592329999999947, 7.2712329999999383], [7.2832359999999881, 7.2952329999998256], [7.3072329999999965, 7.3192339999998239], [7.3312329999998838, 7.3432419999999183], [7.3552349999999933, 7.3672349999999369], [7.3792359999999917, 7.3912410000000364], [7.4032330000000002, 7.4152329999999438], [7.4272329999998874, 7.439232999999831], [7.451233000000002, 7.4632329999999456], [7.4752329999998892, 7.487231999999949], [7.4992339999998876, 7.7312349999999697], [7.7432329999999183, 7.7552329999998619], [7.7672330000000329, 7.7792329999999765], [7.7912329999999201, 7.80323199999998], [7.8152330000000347, 7.8272339999998621], [7.839232999999922, 7.8512349999998605], [7.8632370000000265, 7.8752329999999802], [7.8872329999999238, 7.8992329999998674], [7.9112330000000384, 7.923232999999982], [7.9352340000000368, 7.9472359999999753], [7.9592350000000351, 7.9712329999999838], [7.9832329999999274, 7.995232999999871], [8.007233000000042, 8.0192339999998694], [8.0312329999999292, 8.0432329999998728], [8.0552329999998165, 8.0672339999998712], [8.0792329999999311, 8.0912359999999808], [8.1032329999998183, 8.115233999999873], [8.1272319999998217, 8.4992349999999988], [8.5112329999999474, 8.523232999999891], [8.5352349999998296, 8.5472359999998844], [8.5592349999999442, 8.5712329999998929], [8.5832329999998365, 8.5952330000000075], [8.6072329999999511, 8.6192329999998947], [8.6312329999998383, 8.6432330000000093], [8.6552329999999529, 8.6672329999998965], [8.6792329999998401, 8.6912330000000111], [8.7032329999999547, 8.7152329999998983], [8.7272329999998419, 8.7392319999999017], [8.7512329999999565, 8.7632340000000113], [12.467234999999846, 12.479235000000017], [12.491232999999966, 12.503232999999909], [12.515232999999853, 12.527242999999999], [12.539234999999962, 12.551234000000022], [12.563232999999855, 12.575233000000026], [12.587233999999853, 12.599232999999913], [12.611232999999856, 12.623233999999911], [12.635232999999971, 12.647232999999915], [12.659232999999858, 12.671233999999913], [12.683232999999973, 12.695232999999917], [12.70723299999986, 12.719241000000011], [12.73123499999997, 12.979233999999906], [12.991233999999849, 13.00323400000002], [13.015233999999964, 13.027233000000024], [13.039232999999967, 13.051232999999911], [13.063232999999855, 13.075233000000026], [13.087232999999969, 13.099232999999913], [13.111232999999856, 13.123231999999916], [13.135248999999931, 13.147232999999915], [13.159233999999969, 13.171231999999918], [13.183232999999973, 13.195234000000028], [13.20723299999986, 13.219233000000031], [13.231232999999975, 13.243232999999918], [13.491234999999961, 13.50323400000002], [13.515234999999848, 13.527235999999903], [13.539233999999851, 13.551234999999906], [13.563232999999855, 13.575233999999909], [13.587233999999853, 13.599236000000019], [13.611232999999856, 13.623233000000027], [13.635232999999971, 13.647232999999915], [13.659233999999969, 13.671233000000029], [13.683232999999973, 13.695234999999911], [13.707234999999855, 13.719233000000031], [13.73123499999997, 13.743234999999913], [13.755233999999973, 14.003234999999904], [14.015232999999853, 14.027233000000024], [14.039232999999967, 14.051232999999911], [14.063232999999855, 14.411241000000018], [14.411254999999983, 14.738578999999845]], \"3\": [[0.45613600000001497, 0.4592489999999998], [0.45926999999983309, 0.46325999999999112], [0.46345699999983481, 0.47523699999987912], [0.48723899999981768, 0.4992379999998775], [0.51123599999982616, 0.52323599999999715], [0.53523599999994076, 0.54723599999988437], [0.55923499999994419, 0.5712349999998878], [0.58323499999983142, 0.5952350000000024], [0.60723399999983485, 0.61923400000000584], [0.63123399999994945, 0.64323500000000422], [0.65523499999994783, 0.66723499999989144], [0.67923499999983505, 0.69123399999989488], [0.7032449999999244, 0.71523499999989326], [0.72723499999983687, 0.7392339999998967], [0.75123499999995147, 0.76323499999989508], [0.77523599999994985, 0.78723599999989347], [0.79923599999983708, 0.8112349999998969], [0.82323399999995672, 0.8352350000000115], [0.85523499999999331, 0.86723599999982071], [0.87923499999988053, 0.89123499999982414], [0.90323499999999513, 0.91523399999982757], [0.92723499999988235, 0.93923399999994217], [1.2152710000000297, 1.2232420000000275], [1.2352349999998751, 1.2472349999998187], [1.2592349999999897, 1.2712339999998221], [1.2832339999999931, 1.2952339999999367], [1.3072349999999915, 1.3192339999998239], [1.3312349999998787, 1.3432439999999133], [1.3552349999999933, 1.3672339999998258], [1.3792339999999967, 1.3912349999998241], [1.403233999999884, 1.4152339999998276], [1.4272339999999986, 1.439234999999826], [1.4512339999998858, 1.4632339999998294], [1.4752340000000004, 1.487233999999944], [1.4992339999998876, 1.5112339999998312], [1.5232340000000022, 1.5272399999998925], [1.5272539999998571, 1.5352389999998195], [1.5472529999999551, 1.5592349999999442], [1.571234000000004, 1.5832359999999426], [5.5752350000000206, 5.5872349999999642], [5.5992349999999078, 5.6112349999998514], [5.6232359999999062, 5.6312409999998181], [5.6432350000000042, 5.6552339999998367], [5.6672349999998914, 5.6792339999999513], [5.691235000000006, 5.7032349999999497], [5.7152349999998933, 5.7192399999998997], [5.7192529999999806, 5.7272389999998268], [5.7392359999998916, 5.7512349999999515], [5.7632349999998951, 5.7752339999999549], [5.7872339999998985, 5.7992349999999533], [8.7712359999998171, 8.7832349999998769], [8.7952339999999367, 8.8072349999999915], [8.8192349999999351, 8.8312359999999899], [8.8432349999998223, 8.8552359999998771], [8.8672359999998207, 8.8792339999999967], [8.8912410000000364, 8.9032359999998789], [8.9152359999998225, 8.9272369999998773], [8.9392359999999371, 8.9512349999999969], [8.9632349999999406, 8.9752340000000004], [8.9872349999998278, 8.9992339999998876], [9.0112349999999424, 9.0352399999999307], [9.0352550000000065, 9.2232409999999163], [9.2232489999998961, 9.2832369999998718], [9.2952349999998205, 9.3072339999998803], [9.3192349999999351, 9.3312349999998787], [9.3432339999999385, 9.3552349999999933], [9.3672349999999369, 9.3792359999999917], [9.3832609999999477, 9.3912390000000414], [9.3912629999999808, 9.4152409999999236], [9.4152540000000045, 9.4232389999999668], [9.4232600000000275, 9.4312379999998939], [9.4312549999999646, 9.5272399999998925], [9.5272539999998571, 9.5352379999999357], [9.5352599999998802, 9.5432399999999689], [9.5432570000000396, 9.6672369999998864], [9.6792349999998351, 9.691235000000006], [9.7032339999998385, 9.7152349999998933], [9.7272339999999531, 9.7392350000000079], [9.7512349999999515, 9.7632349999998951], [9.7752349999998387, 9.7872339999998985], [9.7992349999999533, 9.8112349999998969], [9.8232339999999567, 9.8352350000000115], [9.8472339999998439, 9.8472419999998237], [9.8472560000000158, 9.8552389999999832], [9.8552539999998316, 9.8672359999998207], [9.8792349999998805, 9.8912349999998241], [9.903233999999884, 9.9152349999999387], [9.9272349999998823, 9.9392339999999422], [9.9512339999998858, 9.9632349999999406], [9.9752340000000004, 9.9872349999998278], [9.9992349999999988, 10.011234999999942], [10.023234000000002, 10.311236000000008], [10.323234999999841, 10.3352339999999], [10.347235999999839, 10.359234000000015], [10.371234999999842, 10.383235000000013], [10.395234999999957, 10.407234000000017], [10.419234999999844, 10.431242999999995], [10.443234999999959, 10.455234000000019], [10.467233999999962, 10.479233999999906], [10.491234999999961, 10.503234999999904], [10.515234999999848, 10.527233999999908], [10.539235999999846, 10.547241999999869], [10.547255999999834, 10.827266000000009], [10.827286999999842, 10.84724099999994], [10.847254999999905, 10.855238999999983], [10.855260999999928, 10.863239000000021], [10.863254999999981, 10.951234999999997], [10.963234999999941, 10.975234], [10.987233999999944, 10.999234999999999], [11.011233999999831, 11.023234999999886], [11.03523499999983, 11.039239999999836], [11.039254000000028, 11.04723899999999], [11.055253999999877, 11.063240999999834], [11.075235999999904, 11.087233999999853], [11.099234999999908, 11.111234999999851], [11.123235999999906, 11.135233999999855], [11.14723499999991, 11.159234999999853], [11.171235000000024, 11.183233999999857], [11.463235999999824, 11.475234999999884], [11.487234999999828, 11.499234999999999], [11.511233999999831, 11.523234000000002], [11.535253999999895, 11.547236999999996], [11.559234999999944, 11.571234000000004], [11.583243000000039, 11.595235000000002], [11.607234999999946, 11.61923499999989], [11.631234999999833, 11.643233999999893], [11.655233999999837, 11.667234000000008], [11.679234999999835, 11.691235000000006], [11.703233999999838, 11.819238999999925], [11.81925699999988, 11.851239999999962], [11.85125099999982, 11.935240999999905], [11.935259999999971, 11.943238999999949], [11.943252999999913, 11.94723799999997], [11.947250999999824, 12.099236000000019], [12.107461999999941, 12.107514000000037], [12.107543999999962, 12.119236999999885], [12.131234999999833, 12.143235000000004], [12.155235999999832, 12.167234999999891], [12.179234999999835, 12.191233999999895], [12.199977999999874, 12.20012799999995], [12.200182000000041, 12.206016999999974], [12.219235000000026, 12.227239999999938], [12.235261999999921, 12.243238999999903], [12.255234999999857, 12.267235000000028], [12.279234999999971, 12.291234999999915], [12.303234999999859, 12.31523500000003], [12.327234999999973, 12.339234999999917], [12.351234999999861, 12.36323399999992], [12.375234999999975, 12.387234000000035], [12.399234999999862, 12.411233999999922], [12.423234999999977, 12.423241999999846], [12.423256000000038, 12.431239000000005], [12.43125299999997, 12.435238000000027], [12.443252999999913, 12.455236000000014], [13.251236999999946, 13.263234999999895], [13.275233999999955, 13.28723500000001], [13.299234999999953, 13.311234999999897], [13.323234999999841, 13.335235000000011], [13.347234999999955, 13.359234999999899], [13.371234999999842, 13.383237000000008], [13.395235999999841, 13.407234999999901], [13.423254000000043, 13.435236999999915], [13.447234999999864, 13.459235000000035], [13.471233999999868, 13.483234000000039]], \"4\": [[0.45573999999987791, 0.45576899999991838], [1.8752349999999751, 1.8872340000000349], [1.8992309999998724, 1.9112319999999272], [1.923232999999982, 1.9352320000000418], [1.9472319999999854, 1.959233999999924], [1.9712319999998726, 1.9832319999998163], [1.9952319999999872, 2.0072319999999308], [2.0192319999998745, 2.0312319999998181], [2.0432319999999891, 2.0552319999999327], [2.0672319999998763, 2.0792319999998199], [2.0912329999998747, 2.3872340000000349], [2.3992329999998674, 2.4112330000000384], [2.423232999999982, 2.4352329999999256], [2.4472329999998692, 2.4592330000000402], [2.4712329999999838, 2.4832329999999274], [2.495232999999871, 2.507233000000042], [2.5192329999999856, 2.5312340000000404], [2.5432349999998678, 2.5552350000000388], [2.5672329999999874, 2.5792329999999311], [2.5912329999998747, 2.6032319999999345], [5.0752339999999094, 5.0872319999998581], [5.0992320000000291, 5.1112319999999727], [5.1232319999999163, 5.1352319999998599], [5.1472320000000309, 5.1592319999999745], [5.1712319999999181, 5.1832329999999729], [5.1952329999999165, 5.2072329999998601], [5.2192330000000311, 5.2312319999998635], [5.2432329999999183, 5.2512359999998353], [5.2632329999999001, 5.2752329999998437], [5.2872330000000147, 5.2992329999999583], [6.3552349999999933, 6.367232999999942], [6.3792329999998856, 6.3912329999998292], [6.4032330000000002, 6.4152329999999438], [6.4272329999998874, 6.439232999999831], [6.451233000000002, 6.4632339999998294], [6.4752329999998892, 6.4872329999998328], [6.4992339999998876, 6.5112329999999474], [6.523232999999891, 6.5352359999999408], [6.5472350000000006, 6.5592319999998381], [6.5712329999998929, 6.827237999999852], [6.8272600000000239, 6.8672349999999369], [6.8792320000000018, 6.8912319999999454], [6.903231999999889, 6.9152319999998326], [6.9272329999998874, 6.9392319999999472], [6.9512319999998908, 6.9632319999998344], [6.9752320000000054, 6.9872329999998328], [6.9992330000000038, 7.0112329999999474], [7.023232999999891, 7.0352329999998346], [7.0472319999998945, 7.0592329999999492], [7.0712329999998929, 7.0832329999998365]], \"5\": [[3.903233999999884, 3.9152329999999438], [3.9272320000000036, 3.9392319999999472], [3.951233000000002, 3.9632319999998344], [3.9752340000000004, 3.9872329999998328], [3.9992330000000038, 4.0112329999999474], [4.023232999999891, 4.0352329999998346], [4.0472330000000056, 4.0592329999999492], [4.0712329999998929, 4.0832329999998365], [4.0952330000000075, 4.1072329999999511], [4.1192320000000109, 4.1312319999999545], [4.1432350000000042, 4.1552329999999529], [4.1672329999998965, 4.1792329999998401], [4.1912330000000111, 4.2032329999999547], [4.2152329999998983, 4.2272329999998419], [4.2392339999998967, 4.2512329999999565], [4.2632329999999001, 4.4512399999998706], [4.4512599999998201, 4.4592370000000301], [4.4592539999998735, 4.5272410000000036], [4.5272539999998571, 4.5352369999998245], [4.5352579999998852, 4.5432379999999739], [4.5432549999998173, 4.6112399999999525], [4.6112539999999171, 4.6192389999998795], [4.6192529999998442, 4.6232390000000123], [4.6232569999999669, 4.6312379999999393], [4.631253999999899, 4.6712350000000242], [4.6832329999999729, 4.6952340000000277], [4.7072329999998601, 4.7192339999999149], [4.7272539999999026, 4.73523699999987], [4.743253999999979, 4.7552329999998619], [4.7672330000000329, 4.7792329999999765], [4.7912329999999201, 4.8032329999998638], [4.8152330000000347, 4.8272329999999783], [4.839232999999922, 4.8512329999998656], [4.8632330000000366, 4.8752329999999802], [4.8872329999999238, 4.8992339999999786], [4.9112330000000384, 4.911248999999998], [4.9112619999998515, 4.9192379999999503], [4.931233999999904, 4.9432349999999587], [4.9552340000000186, 4.967232999999851], [4.9792319999999108, 4.9912319999998545], [5.0032320000000254, 5.015231999999969], [5.0272319999999127, 5.0392329999999674], [5.0512400000000071, 5.0632319999999709], [5.3112349999998969, 5.3232329999998456], [5.3352339999999003, 5.3472349999999551], [5.3592329999999038, 5.3712339999999585], [5.3832330000000184, 5.395232999999962], [5.4072329999999056, 5.4192339999999604], [5.431241, 5.4432339999998476], [5.4552349999999024, 5.467234999999846], [5.4792319999999108, 5.4912329999999656], [5.5032329999999092, 5.5152329999998528], [5.5272339999999076, 5.5392339999998512], [5.551234999999906, 5.5632339999999658], [11.199233999999933, 11.211232999999993], [11.22323399999982, 11.235234999999875], [11.247232999999824, 11.259233999999879], [11.271232999999938, 11.283233999999993], [11.295232999999826, 11.307232999999997], [11.31923299999994, 11.331232], [11.343231999999944, 11.355232999999998], [11.367232999999942, 11.379232999999886], [11.391232999999829, 11.403233], [11.415232999999944, 11.427232999999887], [11.439232999999831, 11.451233000000002]]}, \"sudo-2332\": {\"1\": [[16.10079299999984, 16.102578999999878]], \"3\": [[16.099943999999823, 16.100693999999976]]}, \"watchdog/2-21\": {\"2\": [[1.195365000000038, 1.1953849999999875], [5.1953409999998712, 5.1953619999999319], [9.1953399999999874, 9.1953499999999622], [13.195340999999871, 13.195350999999846]]}, \"busybox-2318\": {\"1\": [[0.42888199999993049, 0.42893600000002152], [0.42894400000000132, 0.42928599999981998], [0.43111699999985831, 0.43140500000004067]]}, \"ksoftirqd/4-35\": {\"4\": [[0.032551999999895997, 0.03259000000002743], [0.46326399999998102, 0.46327699999983452], [14.929177999999865, 14.929230999999845]]}, \"sudo-2327\": {\"1\": [[15.351979999999912, 15.352392999999893]], \"4\": [[15.352482999999893, 15.355681999999888]]}, \"busybox-2316\": {\"3\": [[0.42652499999985594, 0.42701999999985674]]}, \"kworker/0:1H-1195\": {\"0\": [[14.92824799999994, 14.928263999999899]]}, \"watchdog/5-39\": {\"5\": [[1.2792379999998502, 1.2792469999999412], [5.2792369999999664, 5.27924599999983], [9.2792359999998553, 9.2792469999999412], [13.279235999999855, 13.279243999999835]]}, \"rt-app-2314\": {\"0\": [[14.92621599999984, 14.92630599999984], [14.927149999999983, 14.92824799999994], [14.928263999999899, 14.928278999999975]], \"3\": [[0.45507999999995263, 0.45513899999991736], [0.45515099999988706, 0.4551969999999983], [0.455208999999968, 0.4553009999999631], [0.45562599999993836, 0.45567299999993338], [0.45576099999993858, 0.45578299999988303]], \"4\": [[0.45595000000002983, 0.4560119999998733], [14.488497999999936, 14.488517999999885]], \"5\": [[14.738628999999946, 14.738656999999876]]}, \"task3-2323\": {\"0\": [[5.1752339999998185, 5.1872329999998783], [5.1992329999998219, 5.2112339999998767], [5.2232319999998253, 5.2352329999998801], [5.2472329999998237, 5.2592329999999947], [5.2712329999999383, 5.2832339999999931], [5.2952410000000327, 5.3072329999999965], [5.3192339999998239, 5.3312349999998787], [5.3432319999999436, 5.3552329999999984], [5.367232999999942, 5.3792329999998856], [5.3912329999998292, 5.403233999999884], [5.4152420000000347, 5.4272339999999986], [5.439234999999826, 5.4512359999998807], [10.551234000000022, 10.563232999999855], [10.575233999999909, 10.587232999999969], [10.599232999999913, 10.611232999999856], [10.623233000000027, 10.635232999999971], [10.647232999999915, 10.659232999999858], [10.671239999999898, 10.683233999999857], [10.695232999999917, 10.707233999999971], [10.719233000000031, 10.731232999999975], [10.743232999999918, 10.755232999999862], [10.767233000000033, 10.779232999999977], [10.79123299999992, 10.803233999999975], [10.815233000000035, 10.827233999999862], [10.839232999999922, 10.851234999999861], [10.863260999999966, 10.87523299999998], [10.887232999999924, 10.899232999999867], [10.911233000000038, 10.923232999999982], [10.935234000000037, 10.947231999999985], [10.95923300000004, 10.971232999999984], [10.983234000000039, 10.995232999999871], [11.007233000000042, 11.019232999999986], [11.031232999999929, 11.043234999999868], [11.055235000000039, 11.067235999999866], [11.079232999999931, 11.31523500000003], [11.327232999999978, 11.339234000000033], [11.351232999999866, 11.363233000000037], [11.37523299999998, 11.387232999999924], [11.399232999999867, 11.411233999999922], [11.423232999999982, 11.435232999999926], [11.447232999999869, 11.459231999999929], [11.471232999999984, 11.483234000000039], [11.495233999999982, 11.507233000000042], [11.519231999999874, 11.531234999999924], [11.543232999999873, 11.555233999999928], [11.567241999999851, 11.579232999999931], [11.591232999999875, 11.827234999999973], [11.839234000000033, 11.851233999999977], [11.863233000000037, 11.87523299999998], [11.887232999999924, 11.899232999999867], [11.911233000000038, 11.923242999999957], [11.935234999999921, 11.947239999999965], [11.95923300000004, 11.971231999999873], [11.983234000000039, 11.995233999999982], [12.007233000000042, 12.019232999999986], [12.031232999999929, 12.043232999999873], [12.055232999999816, 12.067233999999871], [12.079232999999931, 12.091232999999875], [12.979233999999906, 12.991233999999849], [13.00323400000002, 13.015233999999964], [13.027233000000024, 13.039232999999967], [13.051232999999911, 13.063232999999855], [13.075233000000026, 13.087232999999969], [13.099232999999913, 13.111232999999856], [13.123231999999916, 13.135240999999951], [13.147232999999915, 13.159233999999969], [13.171231999999918, 13.183232999999973], [13.195234000000028, 13.20723299999986], [13.219233000000031, 13.231232999999975], [13.243232999999918, 13.491234999999961], [13.50323400000002, 13.515234999999848], [13.527235999999903, 13.539233999999851], [13.551234999999906, 13.563232999999855], [13.575233999999909, 13.587233999999853], [13.599236000000019, 13.611232999999856], [13.623233000000027, 13.635232999999971], [13.647232999999915, 13.659233999999969], [13.671233000000029, 13.683232999999973], [13.695234999999911, 13.707234999999855], [13.719233000000031, 13.73123499999997], [13.743234999999913, 13.755233999999973], [14.003234999999904, 14.015232999999853], [14.027233000000024, 14.039232999999967], [14.051232999999911, 14.063232999999855]], \"3\": [[0.45569299999988289, 0.45570199999997385], [0.45579699999984769, 0.45584299999995892], [0.45597099999986312, 0.45600999999987835], [1.8592369999998937, 1.8632410000000164], [1.871309999999994, 1.8792389999998704], [1.8792539999999462, 1.8832379999998921], [1.8952349999999569, 1.9072340000000167], [1.9192339999999604, 1.9312350000000151], [1.9432349999999587, 1.9552349999999024], [1.967234999999846, 1.9792410000000018], [1.9912349999999606, 2.0032349999999042], [2.015233999999964, 2.0272350000000188], [2.0392339999998512, 2.0512340000000222], [2.0632349999998496, 2.0752339999999094], [2.0872349999999642, 2.0992349999999078], [2.3752359999998589, 2.3872349999999187], [2.3992339999999786, 2.4112339999999222], [2.4232339999998658, 2.4352340000000368], [2.4472339999999804, 2.4592350000000351], [2.4712339999998676, 2.4832349999999224], [2.4952429999998458, 2.5072359999999208], [2.5192349999999806, 2.5272399999998925], [2.5352539999998953, 2.5472359999998844], [2.5592349999999442, 2.571234000000004], [2.5832339999999476, 2.5952359999998862], [2.607234999999946, 2.6192349999998896], [2.6312359999999444, 2.6432350000000042], [2.6552339999998367, 2.6672349999998914], [2.6792349999998351, 2.691235000000006], [2.7032339999998385, 2.7152349999998933], [2.7272339999999531, 2.7392350000000079], [3.7792359999998553, 3.7912349999999151], [3.8032349999998587, 3.8152350000000297], [3.8272339999998621, 3.8392349999999169], [3.8512349999998605, 3.8632339999999203], [3.875233999999864, 3.8872349999999187], [3.8992409999998472, 3.9112350000000333], [3.9232349999999769, 3.9352349999999205], [3.9472349999998642, 3.9512399999998706], [3.9512539999998353, 3.959239000000025], [3.9672590000000127, 3.9752389999998741], [3.9912349999999606, 4.0032349999999042], [4.015233999999964, 4.0272339999999076], [4.0392339999998512, 4.1072399999998197], [4.1072540000000117, 4.1152389999999741], [4.1152529999999388, 4.1192379999999957], [4.1192559999999503, 4.1272389999999177], [4.1272529999998824, 4.1352379999998448], [4.1352560000000267, 4.1432389999999941], [4.1432559999998375, 4.29123699999991], [4.3032349999998587, 4.3152339999999185], [4.3272349999999733, 4.3392340000000331], [4.3512339999999767, 4.3632339999999203], [4.375233999999864, 4.3872360000000299], [4.3992349999998623, 4.4112339999999222], [4.4232349999999769, 4.4232429999999567], [4.4232569999999214, 4.431239000000005], [4.4312609999999495, 4.4392390000000432], [4.4472529999998187, 4.4592359999999189], [4.4712349999999788, 4.4832340000000386], [4.495234999999866, 4.5072339999999258], [4.5192359999998644, 4.5312360000000353], [4.543235999999979, 4.5552350000000388], [4.8072349999999915, 4.8192349999999351], [4.8312339999999949, 4.8432349999998223], [4.8552339999998821, 4.8672339999998258], [4.8792339999999967, 4.8912339999999404], [4.903233999999884, 4.9152359999998225], [4.9312549999999646, 4.9392369999998209], [4.9472599999999147, 4.9552389999998923], [4.9632540000000063, 4.9752349999998842], [4.9872349999998278, 4.9992349999999988], [5.0112339999998312, 5.023234999999886], [5.0352349999998296, 5.0472350000000006], [5.0592349999999442, 5.0712349999998878], [5.0832339999999476, 5.0952339999998912], [5.1072339999998349, 5.1192340000000058], [5.1312349999998332, 5.1432350000000042], [5.1552339999998367, 5.1672349999998914], [6.2152360000000044, 6.2272349999998369], [6.2392339999998967, 6.2512349999999515], [6.2632340000000113, 6.2752349999998387], [6.2872350000000097, 6.2992339999998421], [6.3112340000000131, 6.3232349999998405], [6.3352429999999913, 6.3472349999999551], [6.3592340000000149, 6.3712349999998423], [6.3832339999999022, 6.3952339999998458], [6.4072340000000167, 6.4192339999999604], [6.4312350000000151, 6.4432349999999587], [6.4552340000000186, 6.5272399999998925], [6.5272549999999683, 6.5352399999999307], [6.5352539999998953, 6.5392379999998411], [6.5392560000000231, 6.5472389999999905], [6.5472529999999551, 6.5512389999998959], [6.5512519999999768, 6.6112409999998363], [6.6112539999999171, 6.6192389999998795], [6.6192599999999402, 6.6272380000000339], [6.6272549999998773, 6.7232360000000426], [6.7352349999998751, 6.7472339999999349], [6.7592349999999897, 6.7712359999998171], [6.7832349999998769, 6.7952349999998205], [6.8072339999998803, 6.8192349999999351], [6.8272759999999835, 6.8392349999999169], [6.8512359999999717, 6.8632350000000315], [6.8752349999999751, 6.8872349999999187], [6.8992339999999786, 6.9112350000000333], [6.9232349999999769, 6.9272399999999834], [6.9272539999999481, 6.9352389999999104], [6.9392559999998866, 6.9472389999998541], [6.9592359999999189, 6.9872399999999288], [6.9872969999998986, 7.2392359999998916], [7.2512349999999515, 7.2632349999998951], [7.2752339999999549, 7.2872350000000097], [7.2992349999999533, 7.3112349999998969], [7.3232349999998405, 7.3352350000000115], [7.3472339999998439, 7.3592439999999897], [7.3712359999999535, 7.3832359999998971], [7.3952349999999569, 7.4072360000000117], [7.4192349999998441, 7.4312350000000151], [7.4432339999998476, 7.4552349999999024], [7.467234999999846, 7.479235000000017], [7.4912349999999606, 7.5032349999999042], [7.515233999999964, 7.5272339999999076], [7.5392339999998512, 7.551234999999906], [7.5632339999999658, 7.5752350000000206], [7.587233999999853, 7.599234000000024], [7.6112339999999676, 7.8192400000000362], [7.8192589999998745, 7.8592409999998836], [7.8592599999999493, 7.8672389999999268], [7.8672559999999976, 7.9272409999998672], [7.9272539999999481, 7.9352389999999104], [7.9352529999998751, 7.9432399999998324], [7.9432580000000144, 7.9512389999999868], [7.9512519999998403, 8.1392349999998714], [8.1512350000000424, 8.163234999999986], [8.1752339999998185, 8.1872349999998733], [8.1992349999998169, 8.2112349999999878], [8.2232360000000426, 8.2352359999999862], [8.2472349999998187, 8.2592359999998735], [8.2712339999998221, 8.2832349999998769], [8.2952349999998205, 8.3072349999999915], [8.3192339999998239, 8.3312349999998787], [8.3432349999998223, 8.3552359999998771], [8.3672359999998207, 8.3792359999999917], [8.3912349999998241, 8.403233999999884], [8.4152349999999387, 8.4272359999999935], [8.4392359999999371, 8.4512359999998807], [8.4632349999999406, 8.4752349999998842], [8.4872349999998278, 8.7712359999998171], [8.7832349999998769, 8.7952339999999367], [8.8072349999999915, 8.8192349999999351], [8.8312359999999899, 8.8432349999998223], [8.8552359999998771, 8.8672359999998207], [8.8792339999999967, 8.8912410000000364], [8.9032359999998789, 8.9152359999998225], [8.9272369999998773, 8.9392359999999371], [8.9512349999999969, 8.9632349999999406], [8.9752340000000004, 8.9872349999998278], [8.9992339999998876, 9.0112349999999424], [10.311236000000008, 10.323234999999841], [10.3352339999999, 10.347235999999839], [10.359234000000015, 10.371234999999842], [10.383235000000013, 10.395234999999957], [10.407234000000017, 10.419234999999844], [10.431242999999995, 10.443234999999959], [10.455234000000019, 10.467233999999962], [10.479233999999906, 10.491234999999961], [10.503234999999904, 10.515234999999848], [10.527233999999908, 10.539235999999846], [12.099236000000019, 12.10723999999982], [12.119236999999885, 12.131234999999833], [12.143235000000004, 12.155235999999832], [12.167234999999891, 12.179234999999835], [12.191233999999895, 12.197136], [12.197152999999844, 12.197877999999946], [12.197942000000012, 12.198002999999972], [12.198024999999916, 12.198503999999957], [12.198517999999922, 12.199503999999934], [12.206031999999823, 12.206751999999824], [12.206825999999865, 12.219235000000026], [12.227255000000014, 12.235239999999976], [12.243255999999974, 12.255234999999857], [12.267235000000028, 12.279234999999971], [12.291234999999915, 12.303234999999859], [12.31523500000003, 12.327234999999973], [12.339234999999917, 12.351234999999861], [12.36323399999992, 12.375234999999975], [12.387234000000035, 12.399234999999862], [12.411233999999922, 12.423234999999977], [12.435255999999981, 12.443238999999949], [12.455236000000014, 12.539240999999947], [12.539260000000013, 12.54723899999999], [12.547255999999834, 12.727240999999822], [12.727255000000014, 12.735254999999825], [12.743258999999853, 12.751238999999941], [12.755250999999816, 12.767235000000028], [12.779234999999971, 12.791234999999915], [12.803234999999859, 12.811252999999851], [12.823234999999841, 12.835235000000011], [12.847234999999955, 12.859234999999899], [12.871234999999842, 12.883235000000013], [12.895234999999957, 12.907234999999901], [12.919255000000021, 12.923237999999856], [12.923256000000038, 12.931239000000005], [12.939253000000008, 12.943237999999837], [12.955234999999902, 12.967234999999846], [13.76323699999989, 13.775234999999839], [13.78723500000001, 13.799234999999953], [13.811234999999897, 13.823234999999841], [13.835256999999956, 13.846413999999868], [13.85923600000001, 13.871236999999837], [13.883241999999882, 13.895234999999957], [13.907234999999901, 13.919234999999844], [13.931235000000015, 13.943234999999959], [13.955234999999902, 13.967233999999962], [13.979235000000017, 13.991234999999961]], \"4\": [[1.3632350000000315, 1.3752329999999802], [1.3872329999999238, 1.3992329999998674], [1.4112330000000384, 1.423232999999982], [1.4352329999999256, 1.4472329999998692], [1.4592330000000402, 1.4712339999998676], [1.4832329999999274, 1.495232999999871], [1.507233000000042, 1.5192329999999856], [1.5312340000000404, 1.543233999999984], [1.5552329999998165, 1.5672319999998763], [1.5792329999999311, 1.5912329999998747], [3.5392359999998462, 3.551234999999906], [3.5632329999998547, 3.5752339999999094], [3.5872329999999693, 3.5992329999999129], [3.6112329999998565, 3.6232319999999163], [3.6352409999999509, 3.6472340000000258], [3.6592329999998583, 3.6712330000000293], [3.6832329999999729, 3.6952329999999165], [3.7072329999998601, 3.7192330000000311], [3.7312329999999747, 3.7432329999999183], [3.7552329999998619, 3.7672330000000329], [4.5672329999999874, 4.5792329999999311], [4.5912329999998747, 4.6032329999998183], [4.6152349999999842, 4.6272339999998167], [4.6392329999998765, 4.6512329999998201], [4.6632329999999911, 4.6752319999998235], [4.6872409999998581, 4.6992329999998219], [4.7112329999999929, 4.7232349999999315], [4.7352379999999812, 4.7472339999999349], [4.7592339999998785, 4.7712329999999383], [4.7832329999998819, 4.7952329999998256], [5.4632509999999002, 5.4752329999998892], [5.4872329999998328, 5.4992330000000038], [5.5112329999999474, 5.523232999999891], [5.5352530000000115, 5.5392389999999523], [5.5472539999998389, 5.5592329999999492], [5.5712320000000091, 5.5832409999998163], [5.5952330000000075, 5.6072329999999511], [5.619258999999829, 5.6272380000000339], [5.6392329999998765, 5.6512329999998201], [5.6632329999999911, 5.6752329999999347], [5.6872329999998783, 5.6992329999998219], [5.7112339999998767, 5.7232349999999315], [5.7352329999998801, 5.7472339999999349], [5.7592329999999947, 5.7712329999999383], [5.7832329999998819, 5.7952329999998256], [5.8072329999999965, 5.8192329999999401], [5.8312329999998838, 5.8352379999998902], [5.8352519999998549, 5.8472329999999602], [5.8592329999999038, 5.8712329999998474], [5.8832330000000184, 5.895232999999962], [5.9072329999999056, 5.9192349999998441], [5.9312350000000151, 5.9432349999999587], [9.8112349999998969, 9.8232329999998456], [9.8352769999999055, 9.8472329999999602], [9.8592589999998381, 9.867238000000043], [9.8792329999998856, 9.8912329999998292], [9.9032330000000002, 9.9152329999999438], [9.9272329999998874, 9.9392339999999422], [9.951233000000002, 9.9632329999999456], [9.9752329999998892, 9.987233999999944], [9.9992330000000038, 10.011232999999947], [10.023232999999891, 10.035232999999835], [14.066405000000032, 14.067247999999836], [14.067262999999912, 14.075237999999899], [14.075259999999844, 14.083238999999821], [14.083255000000008, 14.120057999999972], [14.12016299999982, 14.488497999999936], [14.488517999999885, 14.827238999999963], [14.827285999999958, 14.92616299999986]], \"5\": [[0.46323899999993046, 0.47523899999987407], [0.48723599999993894, 0.49923499999999876], [0.51124299999992218, 0.5232340000000022], [0.53523399999994581, 0.54723500000000058], [0.55923399999983303, 0.57123299999989285], [0.58323299999983647, 0.81126099999983126], [0.81128499999999804, 1.087235999999848], [1.0992329999999129, 1.1112329999998565], [1.1232330000000275, 1.1352329999999711], [1.1472349999999096, 1.1592379999999594], [1.1712350000000242, 1.1832359999998516], [1.1952349999999115, 1.2072409999998399], [1.2192339999999149, 1.2312329999999747], [1.2432329999999183, 1.2552329999998619], [1.2672330000000329, 1.2792379999998502], [1.2912329999999201, 1.3032329999998638], [1.3152330000000347, 1.3272329999999783], [1.3392340000000331, 1.3512329999998656], [1.6032339999999294, 1.615233999999873], [1.6272329999999329, 1.6392329999998765], [1.6512329999998201, 1.6632329999999911], [1.6752329999999347, 1.6872329999998783], [1.6992329999998219, 1.7112339999998767], [1.7232420000000275, 1.7352339999999913], [1.7472339999999349, 1.7592329999999947], [1.7712329999999383, 1.7832339999999931], [1.7952329999998256, 1.8032379999999648], [1.8152330000000347, 1.8272329999999783], [1.8392340000000331, 1.8512339999999767], [2.1112339999999676, 2.1232330000000275], [2.1352329999999711, 2.1472320000000309], [2.1592329999998583, 2.1712330000000293], [2.1832339999998567, 2.1952340000000277], [2.2072329999998601, 2.2192339999999149], [2.2312329999999747, 2.2432329999999183], [2.2552339999999731, 2.2672330000000329], [2.2792329999999765, 2.2912329999999201], [2.3032329999998638, 2.3152330000000347], [2.3272329999999783, 2.339232999999922], [2.3512329999998656, 2.3632330000000366], [2.7512339999998403, 2.7632329999999001], [2.7752329999998437, 2.7872330000000147], [2.7992329999999583, 2.8112329999999019], [2.8232329999998456, 2.8352330000000165], [2.8472339999998439, 2.8592329999999038], [2.8712329999998474, 2.8832330000000184], [2.895232999999962, 2.9072329999999056], [2.9192329999998492, 2.9312330000000202], [2.9432329999999638, 2.9552340000000186], [2.967232999999851, 2.979233000000022], [2.9912329999999656, 3.0032329999999092], [3.0152329999998528, 3.1112409999998363], [3.1112550000000283, 3.1192379999999957], [3.1192529999998442, 3.1272449999999026], [3.1272639999999683, 3.1352379999998448], [3.1352560000000267, 3.1792399999999361], [3.1792539999999008, 3.1872389999998632], [3.1872529999998278, 3.2632349999998951], [3.2752329999998437, 3.2872330000000147], [3.2992329999999583, 3.3112329999999019], [3.3232329999998456, 3.3352330000000165], [3.3472329999999602, 3.3592329999999038], [3.3712329999998474, 3.3832330000000184], [3.3952319999998508, 3.4072329999999056], [3.4192329999998492, 3.4312330000000202], [3.4432329999999638, 3.4552329999999074], [3.467232999999851, 3.479233000000022], [3.4912329999999656, 3.5032329999999092], [3.5152329999998528, 3.5272330000000238], [5.9512349999999969, 5.9632409999999254], [5.9752340000000004, 5.9872329999998328], [5.9992339999998876, 6.0112329999999474], [6.023232999999891, 6.0352329999998346], [6.0472330000000056, 6.0592329999999492], [6.0712329999998929, 6.0832319999999527], [6.0952330000000075, 6.1072329999999511], [6.1192329999998947, 6.1312329999998383], [6.1432330000000093, 6.1552329999999529], [6.1672340000000077, 6.1792329999998401], [6.1912330000000111, 6.2032329999999547], [9.023234999999886, 9.0352329999998346], [9.0472330000000056, 9.0592329999999492], [9.0712329999998929, 9.0832339999999476], [9.0952330000000075, 9.1072329999999511], [9.1192329999998947, 9.1312329999998383], [9.1432330000000093, 9.1552329999999529], [9.1672329999998965, 9.1792329999998401], [9.1912330000000111, 9.2032339999998385], [9.2152329999998983, 9.2192430000000058], [9.2272599999998874, 9.2352379999999812], [9.2472339999999349, 9.2592339999998785], [9.2712409999999181, 9.2792359999998553], [9.2792469999999412, 9.5352369999998245], [9.5472339999998894, 9.5592329999999492], [9.571234000000004, 9.5832329999998365], [9.5952339999998912, 9.6072329999999511], [9.6192329999998947, 9.6312329999998383], [9.6432330000000093, 9.6552379999998266], [9.6672320000000127, 9.6792329999998401], [9.6912330000000111, 9.7032329999999547], [9.7152329999998983, 9.7272329999998419], [9.7392330000000129, 9.7512329999999565], [9.7632340000000113, 9.7752329999998437], [9.7872330000000147, 9.7992329999999583], [10.047235000000001, 10.059233999999833], [10.071232999999893, 10.083232999999836], [10.095233000000007, 10.107232999999951], [10.119234000000006, 10.131232999999838], [10.143233000000009, 10.155232999999953], [10.167232999999896, 10.17923299999984], [10.191233999999895, 10.203232999999955], [10.215232999999898, 10.227232999999842], [10.239233000000013, 10.251232999999957], [10.263234000000011, 10.275232999999844], [10.287233000000015, 10.299232999999958]]}, \"shutils-2328\": {\"1\": [[15.361634999999978, 15.362562999999909]], \"5\": [[15.359931999999844, 15.361615000000029]]}, \"kworker/3:1-448\": {\"3\": [[0.84324399999991329, 0.84326499999997395], [6.8272529999999279, 6.8272759999999835], [7.8192400000000362, 7.8192589999998745], [9.0352399999999307, 9.0352550000000065], [10.827266000000009, 10.827286999999842], [11.819238999999925, 11.81925699999988], [12.811252999999851, 12.811273000000028], [13.835239000000001, 13.835256999999956], [14.827359999999999, 14.827381999999943], [16.103267999999844, 16.103290999999899]]}, \"kworker/4:1-777\": {\"4\": [[0.81123999999999796, 0.81128199999989192], [1.8352399999998852, 1.8352649999999358], [2.827237999999852, 2.8272529999999279], [3.8232379999999466, 3.8232510000000275], [4.8152390000000196, 4.8152589999999691], [5.8352379999998902, 5.8352519999998549], [6.827237999999852, 6.8272600000000239], [7.8192380000000412, 7.8192529999998897], [8.8152370000000246, 8.8152509999999893], [9.8352370000000064, 9.8352769999999055], [10.827238999999963, 10.827272999999877], [11.819238000000041, 11.819261999999981], [12.811238999999887, 12.811259999999947], [13.83523799999989, 13.835252999999966], [14.827238999999963, 14.827285999999958], [15.823337000000038, 15.823376999999937]]}, \"ksoftirqd/3-29\": {\"3\": [[0.026057000000037078, 0.026151999999910913], [5.9665129999998499, 5.9665669999999409], [5.9666459999998551, 5.96665199999984], [5.9682599999998729, 5.9682849999999235], [12.197891999999911, 12.197926999999936], [12.199517000000014, 12.199546999999939], [12.206764999999905, 12.206811000000016], [12.206820999999991, 12.206825999999865]]}, \"shutils-2327\": {\"2\": [[15.362378000000035, 15.362394999999879], [15.362404999999853, 15.362410999999838], [15.362577999999985, 15.36349099999984]]}, \"watchdog/1-15\": {\"1\": [[1.1672469999998611, 1.1672659999999269], [5.1673200000000179, 5.1673359999999775], [9.1673229999998966, 9.1673409999998512], [13.167322000000013, 13.167340999999851]]}, \"khugepaged-407\": {\"5\": [[0.45517499999982647, 0.45521799999983159], [0.45536700000002384, 0.45540299999993294], [10.575233999999909, 10.575301999999965]]}, \"kworker/1:1-1006\": {\"1\": [[4.9392699999998513, 4.9392989999998917], [15.823463999999831, 15.823482000000013]]}, \"sh-2332\": {\"4\": [[16.102675999999974, 16.103290999999899]]}, \"watchdog/3-27\": {\"3\": [[1.2232420000000275, 1.2232509999998911], [5.2232409999999163, 5.2232489999998961], [9.2232409999999163, 9.2232489999998961], [13.223240999999916, 13.223250000000007]]}, \"kworker/5:1-1007\": {\"5\": [[0.81126099999983126, 0.81128499999999804], [1.8032379999999648, 1.8032559999999194], [9.8352599999998347, 9.8352820000000065], [10.795237000000043, 10.795254999999997], [14.827376999999842, 14.827399999999898], [15.819439999999986, 15.819465000000037]]}, \"sh-2067\": {\"1\": [[0.0020680000000083965, 0.0022480000000086875], [15.783508999999867, 15.783691999999974], [16.042936999999938, 16.043054999999868], [16.043124000000034, 16.043247999999949], [16.043295999999827, 16.04343700000004], [16.043484999999919, 16.043623999999909], [16.043668000000025, 16.04372699999999], [16.093425000000025, 16.093568999999889], [16.093677999999954, 16.094315999999935]], \"2\": [[0.15702899999996589, 0.15710699999999633], [0.20752500000003238, 0.20767399999999725], [0.20778999999993175, 0.20791999999983091], [0.36328600000001643, 0.36344599999983984], [0.36356200000000172, 0.36359599999991588], [0.36364200000002711, 0.36366399999997157], [0.36370699999997669, 0.36385699999982535], [0.36389999999983047, 0.3640419999999267], [0.36408499999993182, 0.36427600000001803], [0.36431900000002315, 0.36446099999989201], [0.36450300000001334, 0.36453499999993255], [0.36457699999982651, 0.36472000000003391], [0.3647609999998167, 0.36495599999989281], [0.36500099999989288, 0.36514699999997902], [0.36518899999987298, 0.36534800000003997], [0.41428399999995236, 0.41443200000003344], [0.41454499999986183, 0.41513799999984258], [14.928315999999995, 14.928512999999839], [15.083568999999898, 15.083646999999928], [15.134002999999893, 15.134158999999954], [15.134274000000005, 15.13439500000004], [15.291594000000032, 15.291754999999966], [15.291876999999886, 15.291985999999952], [15.29203399999983, 15.292181999999912], [15.292226000000028, 15.292375999999877], [15.292418999999882, 15.292563999999857], [15.292606999999862, 15.292748999999958], [15.34196699999984, 15.342161000000033], [15.342219999999998, 15.342699999999923], [15.518783999999869, 15.518884999999955], [15.568851999999879, 15.568990999999869], [15.569100999999819, 15.569197999999915], [15.723571999999876, 15.723714999999856], [15.723823000000039, 15.723932999999988], [15.723978999999872, 15.724120999999968], [15.724164999999857, 15.724312999999938], [15.724354999999832, 15.72450200000003], [15.724545999999918, 15.724694], [15.724735999999893, 15.724753999999848], [15.724794999999858, 15.724817999999914], [15.724860000000035, 15.724882999999863], [15.724925999999869, 15.724948999999924], [15.724989999999934, 15.72501299999999], [15.725054, 15.725076999999828], [15.725117999999839, 15.725140999999894], [15.725181999999904, 15.72520499999996], [15.72524599999997, 15.725275999999894], [15.773700999999846, 15.773727000000008], [15.773783999999978, 15.774423999999954]], \"4\": [[15.364937999999938, 15.365230999999994]]}, \"task5-2325\": {\"3\": [[0.47523699999987912, 0.47525999999993473], [0.47536399999989953, 0.48723899999981768], [0.4992379999998775, 0.51123599999982616], [0.52323599999999715, 0.53523599999994076], [0.54723599999988437, 0.55923499999994419], [0.5712349999998878, 0.58323499999983142], [0.5952350000000024, 0.60723399999983485], [0.61923400000000584, 0.63123399999994945], [0.64323500000000422, 0.65523499999994783], [0.66723499999989144, 0.67923499999983505], [0.69123399999989488, 0.7032449999999244], [0.71523499999989326, 0.72723499999983687], [0.7392339999998967, 0.75123499999995147], [0.76323499999989508, 0.77523599999994985], [0.78723599999989347, 0.79923599999983708], [0.8112349999998969, 0.82323399999995672], [0.8352350000000115, 0.84324399999991329], [0.84326499999997395, 0.85523499999999331], [0.86723599999982071, 0.87923499999988053], [0.89123499999982414, 0.90323499999999513], [0.91523399999982757, 0.92723499999988235], [0.93923399999994217, 1.1872409999998581], [1.1872559999999339, 1.1912399999998797], [1.1912539999998444, 1.1992399999999179], [1.1992619999998624, 1.207238999999845], [1.2072599999999056, 1.215253999999959], [1.2232509999998911, 1.2352349999998751], [1.2472349999998187, 1.2592349999999897], [1.2712339999998221, 1.2832339999999931], [1.2952339999999367, 1.3072349999999915], [1.3192339999998239, 1.3312349999998787], [1.3432439999999133, 1.3552349999999933], [1.3672339999998258, 1.3792339999999967], [1.3912349999998241, 1.403233999999884], [1.4152339999998276, 1.4272339999999986], [1.439234999999826, 1.4512339999998858], [1.4632339999998294, 1.4752340000000004], [1.487233999999944, 1.4992339999998876], [1.5112339999998312, 1.5232340000000022], [1.5352609999999913, 1.5432389999998577], [1.5432539999999335, 1.5472379999998793], [1.5592349999999442, 1.571234000000004], [1.5832359999999426, 1.7072419999999511], [1.7072559999999157, 1.7152389999998832], [1.7152609999998276, 1.7232389999999214], [1.723252999999886, 1.7272409999998217], [1.7272539999999026, 1.8592369999998937], [1.863254999999981, 1.8712399999999434], [1.8832509999999729, 1.8952349999999569], [1.9072340000000167, 1.9192339999999604], [1.9312350000000151, 1.9432349999999587], [1.9552349999999024, 1.967234999999846], [1.9792410000000018, 1.9912349999999606], [2.0032349999999042, 2.015233999999964], [2.0272350000000188, 2.0392339999998512], [2.0512340000000222, 2.0632349999998496], [2.0752339999999094, 2.0872349999999642], [2.0992349999999078, 2.1792409999998199], [2.1792550000000119, 2.1872389999998632], [2.187261000000035, 2.1952389999999014], [2.1952539999999772, 2.2032409999999345], [2.2032540000000154, 2.3752359999998589], [2.3872349999999187, 2.3992339999999786], [2.4112339999999222, 2.4232339999998658], [2.4352340000000368, 2.4472339999999804], [2.4592350000000351, 2.4712339999998676], [2.4832349999999224, 2.4952429999998458], [2.5072359999999208, 2.5192349999999806], [2.5272549999999683, 2.5352389999998195], [2.5472359999998844, 2.5592349999999442], [2.571234000000004, 2.5832339999999476], [2.5952359999998862, 2.607234999999946], [2.6192349999998896, 2.6312359999999444], [2.6432350000000042, 2.6552339999998367], [2.6672349999998914, 2.6792349999998351], [2.691235000000006, 2.7032339999998385], [2.7152349999998933, 2.7272339999999531], [2.7392350000000079, 3.1912409999999909], [3.1912599999998292, 3.1992390000000341], [3.1992559999998775, 3.2672370000000228], [3.2792349999999715, 3.2912349999999151], [3.3032349999998587, 3.3152350000000297], [3.3272349999999733, 3.3392349999999169], [3.3512339999999767, 3.3632350000000315], [3.3752349999999751, 3.3872349999999187], [3.3992349999998623, 3.4112339999999222], [3.4232349999999769, 3.4352349999999205], [3.4472349999998642, 3.459233999999924], [3.4712349999999788, 3.4832340000000386], [3.495234999999866, 3.5272410000000036], [3.5272549999999683, 3.5352389999998195], [3.5352530000000115, 3.5432379999999739], [3.5432559999999285, 3.5512389999998959], [3.5512529999998605, 3.5552390000000287], [3.5552519999998822, 3.6112409999998363], [3.6112550000000283, 3.6192399999999907], [3.6192529999998442, 3.6232379999999011], [3.6232559999998557, 3.6312389999998231], [3.6312530000000152, 3.6352389999999559], [3.6352520000000368, 3.7792359999998553], [3.7912349999999151, 3.8032349999998587], [3.8152350000000297, 3.8272339999998621], [3.8392349999999169, 3.8512349999998605], [3.8632339999999203, 3.875233999999864], [3.8872349999999187, 3.8992409999998472], [3.9112350000000333, 3.9232349999999769], [3.9352349999999205, 3.9472349999998642], [3.9592539999998735, 3.9672409999998308], [3.9752529999998387, 3.9792370000000119], [3.9792499999998654, 3.9912349999999606], [4.0032349999999042, 4.015233999999964], [4.0272339999999076, 4.0392339999998512], [4.29123699999991, 4.3032349999998587], [4.3152339999999185, 4.3272349999999733], [4.3392340000000331, 4.3512339999999767], [4.3632339999999203, 4.375233999999864], [4.3872360000000299, 4.3992349999998623], [4.4112339999999222, 4.4232349999999769], [4.4392599999998765, 4.4472389999998541], [4.4592359999999189, 4.4712349999999788], [4.4832340000000386, 4.495234999999866], [4.5072339999999258, 4.5192359999998644], [4.5312360000000353, 4.543235999999979], [4.5552350000000388, 4.8072349999999915], [4.8192349999999351, 4.8312339999999949], [4.8432349999998223, 4.8552339999998821], [4.8672339999998258, 4.8792339999999967], [4.8912339999999404, 4.903233999999884], [4.9152359999998225, 4.9232409999999618], [4.9232589999999163, 4.9312399999998888], [4.9392550000000028, 4.9472389999998541], [4.9552529999998569, 4.9632409999999254], [4.9752349999998842, 4.9872349999998278], [4.9992349999999988, 5.0112339999998312], [5.023234999999886, 5.0352349999998296], [5.0472350000000006, 5.0592349999999442], [5.0712349999998878, 5.0832339999999476], [5.0952339999998912, 5.1072339999998349], [5.1192340000000058, 5.1312349999998332], [5.1432350000000042, 5.1552339999998367], [5.1672349999998914, 5.2232409999999163], [5.2232489999998961, 5.3232419999999365], [5.3232559999999012, 5.3312389999998686], [5.3312610000000404, 5.3392389999999068], [5.3392529999998715, 5.3432390000000396], [5.3432519999998931, 5.4152400000000398], [5.4152540000000045, 5.4232389999999668], [5.4232600000000275, 5.4312379999998939], [5.4312519999998585, 5.4352460000000065], [5.435263999999961, 5.4432399999998324], [5.4432540000000245, 5.5752350000000206], [5.5872349999999642, 5.5992349999999078], [5.6112349999998514, 5.6232359999999062], [5.6312550000000101, 5.6432350000000042], [5.6552339999998367, 5.6672349999998914], [5.6792339999999513, 5.691235000000006], [5.7032349999999497, 5.7152349999998933], [5.7272539999999026, 5.7392359999998916], [5.7512349999999515, 5.7632349999998951], [5.7752339999999549, 5.7872339999998985], [5.7992349999999533, 5.9392410000000382], [5.9392589999999927, 5.9472389999998541], [5.9472529999998187, 5.9512499999998454], [5.9512680000000273, 5.9592379999999139], [5.9592529999999897, 5.9632520000000113], [5.9634909999999763, 5.9636329999998452], [5.9636909999999261, 5.9650119999998878], [5.9650279999998475, 5.9664980000000014], [5.96665199999984, 5.9667469999999412], [5.9667709999998806, 5.9672499999999218], [5.9672639999998864, 5.9682470000000194], [5.9683469999999943, 6.2152360000000044], [6.2272349999998369, 6.2392339999998967], [6.2512349999999515, 6.2632340000000113], [6.2752349999998387, 6.2872350000000097], [6.2992339999998421, 6.3112340000000131], [6.3232349999998405, 6.3352429999999913], [6.3472349999999551, 6.3592340000000149], [6.3712349999998423, 6.3832339999999022], [6.3952339999998458, 6.4072340000000167], [6.4192339999999604, 6.4312350000000151], [6.4432349999999587, 6.4552340000000186], [6.7232360000000426, 6.7352349999998751], [6.7472339999999349, 6.7592349999999897], [6.7712359999998171, 6.7832349999998769], [6.7952349999998205, 6.8072339999998803], [6.8192349999999351, 6.8272529999999279], [6.8392349999999169, 6.8512359999999717], [6.8632350000000315, 6.8752349999999751], [6.8872349999999187, 6.8992339999999786], [6.9112350000000333, 6.9232349999999769], [6.9352539999999863, 6.9392379999999321], [6.9472539999999299, 6.9592359999999189], [7.2392359999998916, 7.2512349999999515], [7.2632349999998951, 7.2752339999999549], [7.2872350000000097, 7.2992349999999533], [7.3112349999998969, 7.3232349999998405], [7.3352350000000115, 7.3472339999998439], [7.3592439999999897, 7.3712359999999535], [7.3832359999998971, 7.3952349999999569], [7.4072360000000117, 7.4192349999998441], [7.4312350000000151, 7.4432339999998476], [7.4552349999999024, 7.467234999999846], [7.479235000000017, 7.4912349999999606], [7.5032349999999042, 7.515233999999964], [7.5272339999999076, 7.5392339999998512], [7.551234999999906, 7.5632339999999658], [7.5752350000000206, 7.587233999999853], [7.599234000000024, 7.6112339999999676]], \"4\": [[4.0512340000000222, 4.0632329999998547], [4.0752330000000256, 4.0872329999999693], [4.0992329999999129, 4.1112349999998514], [4.1232350000000224, 4.1352389999999559], [4.1472349999999096, 4.1592329999998583], [4.1712330000000293, 4.1832329999999729], [4.1952329999999165, 4.2072329999998601], [4.2192339999999149, 4.2312329999999747], [4.2432329999999183, 4.2552339999999731], [4.2672330000000329, 4.2792329999999765], [8.6592349999998532, 8.6712330000000293], [8.6832329999999729, 8.6952329999999165], [8.7072329999998601, 8.7192330000000311], [8.7312329999999747, 8.7432329999999183], [8.7552329999998619, 8.7672339999999167], [8.7792329999999765, 8.7912329999999201], [8.8032329999998638, 8.8152370000000246], [8.8272329999999783, 8.839232999999922], [8.8552599999998165, 8.8632370000000265], [8.8752329999999802, 8.8872329999999238], [8.8992329999998674, 8.8992429999998421], [8.899255999999923, 8.9072380000000067], [8.9072519999999713, 8.9192349999998441], [8.9312350000000151, 8.9432329999999638], [8.9552340000000186, 8.9672319999999672], [8.979233000000022, 8.9912319999998545], [9.0032320000000254, 9.2392409999999927], [9.2392549999999574, 9.2512359999998353], [9.2512429999999313, 9.3032339999999749], [9.3152330000000347, 9.3272329999999783], [9.339232999999922, 9.3512329999998656], [9.3632330000000366, 9.3712409999998272], [9.3712550000000192, 9.3792379999999866], [9.3912339999999404, 9.403233999999884], [9.4152329999999438, 9.4272339999999986], [9.439232999999831, 9.451233000000002], [9.4632329999999456, 9.4752329999998892], [9.4872329999998328, 9.4992330000000038], [9.5112329999999474, 9.523232999999891], [12.883233999999902, 12.895232999999962], [12.907232999999906, 12.919234999999844], [12.931233999999904, 12.943231999999853], [12.955232999999907, 12.967231999999967], [12.979233000000022, 12.991232999999966], [13.003232999999909, 13.015232999999853], [13.027233000000024, 13.039233999999851], [13.051232999999911, 13.063232999999855], [13.075233000000026, 13.087232999999969], [13.099232999999913, 13.111232999999856], [13.846543999999994, 13.847248000000036], [13.847262999999884, 13.855237999999872], [13.855259999999817, 13.863239000000021], [13.863252999999986, 13.867240000000038], [13.867254000000003, 14.06621999999993], [14.06633399999987, 14.066405000000032]], \"5\": [[0.4560319999998228, 0.45604099999991377], [0.45605000000000473, 0.45615799999995943], [6.4632349999999406, 6.4752329999998892], [6.4872329999998328, 6.4992330000000038], [6.5112329999999474, 6.523232999999891], [6.5352349999998296, 6.5472339999998894], [6.559233999999833, 6.5712329999998929], [6.5832389999998213, 6.5952330000000075], [6.6072339999998349, 6.6192340000000058], [6.6312329999998383, 6.6432330000000093], [6.6552329999999529, 6.6672329999998965], [6.6792329999998401, 6.6912330000000111], [6.7032329999999547, 6.7152329999998983], [6.9752340000000004, 6.9872329999998328], [6.9992330000000038, 7.0112329999999474], [7.023232999999891, 7.0352329999998346], [7.0472319999998945, 7.0592329999999492], [7.0712329999998929, 7.0832329999998365], [7.0952330000000075, 7.1072329999999511], [7.1192329999998947, 7.1312329999998383], [7.1432330000000093, 7.1552329999999529], [7.1672329999998965, 7.1792329999998401], [7.1912330000000111, 7.2032329999999547], [7.2152329999998983, 7.2272329999998419], [7.6192329999998947, 7.6312329999998383], [7.6432330000000093, 7.6552329999999529], [7.6672329999998965, 7.6792329999998401], [7.6912330000000111, 7.7032329999999547], [7.7152329999998983, 7.7272329999998419], [7.7392399999998815, 7.7512329999999565], [7.7632329999999001, 7.7752329999998437], [7.7872330000000147, 7.7992329999999583], [7.8112329999999019, 7.8232319999999618], [7.8352330000000165, 7.8472329999999602], [7.8672349999999369, 7.8792329999998856], [7.8912339999999404, 7.9032330000000002], [7.9152329999999438, 7.9272329999998874], [7.9392319999999472, 7.9512349999999969], [7.9632349999999406, 7.9752329999998892], [7.9872329999998328, 7.9992349999999988], [8.0112329999999474, 8.3832339999999022], [8.3952319999998508, 8.4072320000000218], [8.4192319999999654, 8.431233999999904], [8.4432339999998476, 8.4552320000000236], [8.467232999999851, 8.479233000000022], [8.4912319999998545, 8.5032389999998941], [8.515231999999969, 8.5272330000000238], [8.5392339999998512, 8.5512340000000222], [8.5632349999998496, 8.5752330000000256], [8.5872329999999693, 8.5992329999999129], [8.6112339999999676, 8.6232330000000275], [8.6352329999999711, 8.6472329999999147], [9.5352369999998245, 9.5472339999998894], [9.5592329999999492, 9.571234000000004], [9.5832329999998365, 9.5952339999998912], [9.6072329999999511, 9.6192329999998947], [9.6312329999998383, 9.6432330000000093], [9.6552379999998266, 9.6672320000000127], [9.6792329999998401, 9.6912330000000111], [9.7032329999999547, 9.7152329999998983], [9.7272329999998419, 9.7392330000000129], [9.7512329999999565, 9.7632340000000113], [9.7752329999998437, 9.7872330000000147], [9.7992329999999583, 9.8352599999998347], [9.8352820000000065, 10.047235000000001], [10.059233999999833, 10.071232999999893], [10.083232999999836, 10.095233000000007], [10.107232999999951, 10.119234000000006], [10.131232999999838, 10.143233000000009], [10.155232999999953, 10.167232999999896], [10.17923299999984, 10.191233999999895], [10.203232999999955, 10.215232999999898], [10.227232999999842, 10.239233000000013], [10.251232999999957, 10.263234000000011], [10.275232999999844, 10.287233000000015], [10.299232999999958, 10.575233999999909], [10.575301999999965, 10.687234999999873], [10.699233999999933, 10.711232999999993], [10.723232999999937, 10.73523299999988], [10.747232999999824, 10.759232999999995], [10.771232999999938, 10.783231999999998], [10.795254999999997, 10.807238999999981], [10.819231999999829, 10.831232999999884], [10.843232999999827, 10.855234999999993], [10.867232999999942, 10.879232999999886], [10.891232999999829, 10.903233], [10.915232999999944, 10.927232999999887], [10.939232999999831, 11.199233999999933], [11.211232999999993, 11.22323399999982], [11.235234999999875, 11.247232999999824], [11.259233999999879, 11.271232999999938], [11.283233999999993, 11.295232999999826], [11.307232999999997, 11.31923299999994], [11.331232, 11.343231999999944], [11.355232999999998, 11.367232999999942], [11.379232999999886, 11.391232999999829], [11.403233, 11.415232999999944], [11.427232999999887, 11.439232999999831], [11.451233000000002, 11.543240999999853], [11.543259000000035, 11.551238000000012], [11.551253999999972, 11.711234999999988], [11.723232999999937, 11.727242999999817], [11.727257000000009, 11.735237999999981], [11.739256999999952, 11.747237999999925], [11.7632329999999, 11.775232999999844], [11.787233000000015, 11.799232999999958], [11.811232000000018, 11.823231999999962], [11.835240999999996, 11.847233999999844], [11.859234000000015, 11.871232999999847], [11.883233000000018, 11.895232999999962], [11.907232999999906, 11.91923399999996], [11.923254999999926, 11.931237999999894], [11.943234999999959, 11.955232999999907], [11.967232999999851, 11.979233000000022], [11.991233999999849, 12.003232999999909], [12.015232999999853, 12.027233999999908], [12.039232999999967, 12.051232999999911], [12.063232999999855, 12.075233999999909], [12.087232999999969, 12.099232000000029], [12.111232999999856, 12.123233000000027], [12.13523199999986, 12.147232000000031], [12.159232999999858, 12.171231999999918], [12.183231999999862, 12.195230999999922], [12.20723299999986, 12.219233000000031], [12.23123499999997, 12.607233999999835], [12.619234000000006, 12.631233999999949], [12.643233000000009, 12.655232999999953], [12.667232999999896, 12.67923299999984], [12.691233000000011, 12.703232999999955], [12.715232999999898, 12.727237999999943], [12.739233000000013, 12.751234999999951], [12.7632329999999, 12.775232999999844], [12.787233000000015, 12.799232999999958], [12.811232999999902, 12.823232999999846], [12.835233000000017, 12.84723299999996], [12.859232999999904, 12.871233999999959], [13.123233999999911, 13.135233999999855], [13.147232999999915, 13.159232999999858], [13.171233000000029, 13.183232999999973], [13.195234999999911, 13.20723299999986], [13.219233000000031, 13.231232999999975], [13.243240000000014, 13.255232999999862], [13.267231999999922, 13.279235999999855], [13.291232000000036, 13.30323199999998], [13.315231999999924, 13.327232999999978], [13.339232000000038, 13.351231999999982], [13.363231999999925, 13.375231999999869], [13.387232999999924, 13.431241], [13.431258999999955, 13.439237999999932], [13.439255000000003, 13.507241000000022], [13.507254999999986, 13.515237999999954], [13.515251999999919, 13.523237999999992], [13.523254999999835, 13.53123800000003], [13.531252999999879, 13.539237999999841], [13.539252000000033, 13.543238999999858], [13.54325700000004, 13.551238000000012], [13.551258999999845, 13.559237999999823], [13.559252000000015, 13.56323899999984], [13.56325199999992, 13.635232999999971], [13.647232999999915, 13.659233999999969], [13.671233000000029, 13.683232999999973], [13.687254999999823, 13.695238000000018], [13.707234999999855, 13.719233000000031], [13.731233999999858, 13.743234000000029], [13.755240999999842, 13.767233000000033], [13.779231999999865, 13.791232000000036], [13.80323199999998, 13.815231999999924], [13.827231999999867, 13.839232999999922]]}, \"usb-storage-1169\": {\"3\": [[0.02525100000002567, 0.025279999999838765], [0.026037999999971362, 0.026057000000037078], [5.9634619999999359, 5.9634909999999763], [5.9636329999998452, 5.9636909999999261], [5.9650119999998878, 5.9650279999998475], [5.9664980000000014, 5.9665129999998499], [5.9666319999998905, 5.9666459999998551], [5.9667469999999412, 5.9667709999998806], [5.9672499999999218, 5.9672639999998864], [5.9682470000000194, 5.9682599999998729], [12.107443999999987, 12.107461999999941], [12.107514000000037, 12.107543999999962], [12.197136, 12.197152999999844], [12.197877999999946, 12.197891999999911], [12.197926999999936, 12.197942000000012], [12.198002999999972, 12.198024999999916], [12.198503999999957, 12.198517999999922], [12.199503999999934, 12.199517000000014], [12.199963000000025, 12.199977999999874], [12.20012799999995, 12.200182000000041], [12.206016999999974, 12.206031999999823], [12.206751999999824, 12.206764999999905]], \"4\": [[0.026200999999900887, 0.026218999999855441], [0.026412999999820386, 0.026439999999865904], [0.031701999999995678, 0.03171899999983907], [0.032536999999820182, 0.032551999999895997], [14.927208999999948, 14.927224999999908], [14.927287999999862, 14.927312999999913], [14.928298999999924, 14.928312999999889], [14.929163000000017, 14.929177999999865]], \"5\": [[14.923524999999927, 14.923545999999988], [14.923802999999907, 14.923851999999897], [14.926058000000012, 14.926075999999966], [14.927107999999862, 14.927124999999933], [14.929298999999901, 14.92931499999986], [14.929536999999982, 14.929595999999947], [14.935686999999916, 14.935703999999987], [14.936354999999821, 14.936371000000008]]}, \"sh-2331\": {\"2\": [[16.094777999999906, 16.099976999999853]], \"5\": [[16.094034999999849, 16.09467699999982]]}, \"kworker/2:1-1008\": {\"2\": [[1.3233539999998811, 1.3233789999999317], [15.823476999999912, 15.823492999999871]]}, \"kworker/0:1-562\": {\"0\": [[0.87524499999994987, 0.87526899999988927], [1.8672429999999167, 1.8672639999999774], [2.8592419999999947, 2.8592609999998331], [4.8152519999998731, 4.8152729999999337], [4.9392450000000281, 4.9392619999998715], [5.8672409999999218, 5.8672589999998763], [9.8352499999998599, 9.8352720000000318], [10.8632419999999, 10.863260999999966], [14.411241000000018, 14.411254999999983], [14.827341999999817, 14.827374999999847], [15.883334999999988, 15.883360000000039]]}, \"sh-2314\": {\"1\": [[0.41582299999981842, 0.42068399999993744]], \"3\": [[0.41490799999996852, 0.41566499999998996]]}, \"sudo-2329\": {\"2\": [[15.78111899999999, 15.781140999999934], [15.782756999999947, 15.783435999999938]]}, \"sudo-2326\": {\"3\": [[15.353151000000025, 15.353179999999838], [15.363597999999911, 15.364875999999867]]}, \"kworker/u12:2-2112\": {\"1\": [[0.15687000000002627, 0.15688499999987471], [0.15713699999992059, 0.15715000000000146], [0.20728299999996125, 0.20731599999999162], [0.20765299999993658, 0.20768899999984569], [0.20790499999998246, 0.20792199999982586], [0.36303799999996045, 0.36307299999998577], [0.3634270000000015, 0.36346299999991061], [0.36365200000000186, 0.36367199999995137], [0.36384499999985565, 0.36386700000002747], [0.36408299999993687, 0.36409000000003289], [0.364261999999826, 0.36428599999999278], [0.36449999999990723, 0.36450700000000325], [0.3645249999999578, 0.36453599999981634], [0.36470799999983683, 0.36472200000002886], [0.36494500000003427, 0.36495899999999892], [0.36513500000000931, 0.36514899999997397], [0.365331999999853, 0.36535099999991871], [0.41405799999984083, 0.41408799999999246], [0.41441099999997277, 0.41444599999999809], [0.45162600000003295, 0.45165099999985614], [0.45190600000000813, 0.45192599999995764], [15.291973999999982, 15.291990999999825], [15.292187000000013, 15.292195999999876], [15.292363999999907, 15.292382999999973], [15.292551000000003, 15.292566999999963], [15.723718999999846, 15.723733000000038], [15.723919999999907, 15.723940999999968], [15.724108999999999, 15.724124999999958], [15.724504999999908, 15.724513999999999], [15.72468200000003, 15.724695999999994], [15.724745999999868, 15.724754999999959], [15.724809999999934, 15.724819000000025], [15.724874999999884, 15.724883999999975], [15.724940999999944, 15.724948999999924], [15.72500500000001, 15.72501299999999], [15.725068999999849, 15.725077999999939], [15.725132999999914, 15.725140999999894], [15.72519699999998, 15.72520499999996], [15.725260999999819, 15.725271000000021], [15.773686999999882, 15.773701999999957], [15.773717000000033, 15.773731999999882], [16.043480999999929, 16.043484999999919]], \"2\": [[0.0022389999999177235, 0.0022549999998773274], [15.291754999999966, 15.291761999999835], [15.783753999999817, 15.783772999999883], [16.042826999999988, 16.042840999999953], [16.043042000000014, 16.043064999999842], [16.043610999999828, 16.043627999999899]], \"4\": [[0.45426499999985026, 0.45429599999988568]], \"5\": [[0.4550339999998414, 0.45505299999990712], [0.45525399999996807, 0.45527700000002369]]}, \"sh-2329\": {\"1\": [[15.774786999999833, 15.779976999999917]], \"5\": [[15.774210999999923, 15.774766]]}, \"rcu_sched-8\": {\"1\": [[0.46732199999996737, 0.46733399999993708], [0.47531400000002577, 0.47533099999986916], [0.4793170000000373, 0.47933799999987059], [0.48732699999982287, 0.48734999999987849], [0.49133800000004157, 0.49136099999986982], [0.49932100000000901, 0.49933899999996356], [0.50333799999998519, 0.50334799999995994]], \"2\": [[0.43545700000004217, 0.43546900000001187], [0.44746599999984937, 0.44748200000003635], [0.45524099999988721, 0.45525799999995797], [0.4593809999998939, 0.45940299999983836]]}, \"kworker/3:1H-1260\": {\"3\": [[5.9634469999998601, 5.9634619999999359], [5.9665669999999409, 5.9665769999999156], [5.9683370000000195, 5.9683469999999943], [11.851239999999962, 11.85125099999982], [12.107428999999911, 12.107443999999987], [12.199952999999823, 12.199963000000025], [12.206811000000016, 12.206820999999991]]}, \"jbd2/sda2-8-1197\": {\"3\": [[5.9632649999998648, 5.9634469999998601], [5.9665769999999156, 5.9666319999998905], [5.9682849999999235, 5.9683370000000195], [14.923313000000007, 14.923462999999856], [14.927155999999968, 14.927212999999938], [14.929266999999982, 14.929294000000027]]}, \"task2-2322\": {\"0\": [[0.45529299999998329, 0.45530299999995805], [0.45564599999988786, 0.45569899999986774], [0.45577899999989313, 0.45582199999989825], [2.0992349999999078, 2.1112329999998565], [2.1232330000000275, 2.1352399999998397], [2.1472320000000309, 2.1592329999998583], [2.1712330000000293, 2.1832359999998516], [2.1952340000000277, 2.2072339999999713], [2.2192339999999149, 2.2312329999999747], [2.2432320000000345, 2.2552339999999731], [2.2672330000000329, 2.2792329999999765], [2.2912329999999201, 2.3032329999998638], [2.3152330000000347, 2.3272329999999783], [2.339232999999922, 2.3512409999998454], [2.3632330000000366, 2.3752329999999802], [6.579234999999926, 6.5912329999998747], [6.6032329999998183, 6.615235999999868], [6.6272349999999278, 6.6392339999999876], [6.6512329999998201, 6.6632329999999911], [6.6752329999999347, 6.6872329999998783], [6.6992329999998219, 6.7112329999999929], [6.7232319999998253, 6.7352329999998801], [6.7472329999998237, 6.7592329999999947], [6.7712329999999383, 6.7832329999998819], [6.7952329999998256, 6.8072329999999965], [6.8192329999999401, 6.831232], [6.8432319999999436, 6.8552329999999984], [7.7312349999999697, 7.7432329999999183], [7.7552329999998619, 7.7672330000000329], [7.7792329999999765, 7.7912329999999201], [7.80323199999998, 7.8152330000000347], [7.8272339999998621, 7.839232999999922], [7.8512349999998605, 7.8632370000000265], [7.8752329999999802, 7.8872329999999238], [7.8992329999998674, 7.9112330000000384], [7.923232999999982, 7.9352340000000368], [7.9472359999999753, 7.9592350000000351], [7.9712329999999838, 7.9832329999999274], [7.995232999999871, 8.007233000000042], [8.0192339999998694, 8.0312329999999292], [8.0432329999998728, 8.0552329999998165], [8.0672339999998712, 8.0792329999999311], [8.0912359999999808, 8.1032329999998183], [8.115233999999873, 8.1272319999998217], [8.4992349999999988, 8.5112329999999474], [8.523232999999891, 8.5352349999998296], [8.5472359999998844, 8.5592349999999442], [8.5712329999998929, 8.5832329999998365], [8.5952330000000075, 8.6072329999999511], [8.6192329999998947, 8.6312329999998383], [8.6432330000000093, 8.6552329999999529], [8.6672329999998965, 8.6792329999998401], [8.6912330000000111, 8.7032329999999547], [8.7152329999998983, 8.7272329999998419], [8.7392319999999017, 8.7512329999999565], [8.7632340000000113, 9.0112349999999424], [9.0232340000000022, 9.0352329999998346], [9.0472330000000056, 9.0592329999999492], [9.0712329999998929, 9.0832339999999476], [9.0952330000000075, 9.1072329999999511], [9.1192340000000058, 9.1312329999998383], [9.1352569999999105, 9.1472329999999147], [9.1592339999999695, 9.1712330000000293], [9.1832329999999729, 9.1952329999999165], [9.2072329999998601, 9.2192459999998846], [9.2312359999998534, 9.2432349999999133], [9.2552339999999731, 9.2672350000000279], [9.2792329999999765, 9.2912329999999201], [11.31523500000003, 11.327232999999978], [11.339234000000033, 11.351232999999866], [11.363233000000037, 11.37523299999998], [11.387232999999924, 11.399232999999867], [11.411233999999922, 11.423232999999982], [11.435232999999926, 11.447232999999869], [11.459231999999929, 11.471232999999984], [11.483234000000039, 11.495233999999982], [11.507233000000042, 11.519231999999874], [11.531234999999924, 11.543232999999873], [11.555233999999928, 11.567241999999851], [11.579232999999931, 11.591232999999875]], \"3\": [[8.1392349999998714, 8.1512350000000424], [8.163234999999986, 8.1752339999998185], [8.1872349999998733, 8.1992349999998169], [8.2112349999999878, 8.2232360000000426], [8.2352359999999862, 8.2472349999998187], [8.2592359999998735, 8.2712339999998221], [8.2832349999998769, 8.2952349999998205], [8.3072349999999915, 8.3192339999998239], [8.3312349999998787, 8.3432349999998223], [8.3552359999998771, 8.3672359999998207], [8.3792359999999917, 8.3912349999998241], [8.403233999999884, 8.4152349999999387], [8.4272359999999935, 8.4392359999999371], [8.4512359999998807, 8.4632349999999406], [8.4752349999998842, 8.4872349999998278]], \"4\": [[0.5952350000000024, 0.60723299999995106], [0.61923400000000584, 0.63123299999983828], [0.64323300000000927, 0.65523299999995288], [0.66723299999989649, 0.6792329999998401], [0.69123300000001109, 0.7032329999999547], [0.71523499999989326, 0.72723299999984192], [0.73923300000001291, 0.75123299999995652], [0.76323299999990013, 0.76324099999987993], [0.7632539999999608, 0.77123800000003939], [0.77925400000003719, 0.79123200000003635], [0.80323199999997996, 0.81123999999999796], [0.82323299999984556, 0.83523399999990033], [0.8472399999998288, 0.85923200000001998], [0.8712519999999131, 0.87923699999987548], [0.88725299999987328, 0.89523699999995188], [0.9072320000000218, 0.9192329999998492], [0.93123199999990902, 0.94323199999985263], [0.95523299999990741, 0.96723299999985102], [0.97923399999990579, 0.99123299999996561], [1.0032329999999092, 1.0152329999998528], [1.0272330000000238, 1.0392329999999674], [1.051232999999911, 1.0632329999998547], [1.0752330000000256, 1.1432409999999891], [1.1432549999999537, 1.1512390000000323], [1.151252999999997, 1.1592369999998482], [1.1592550000000301, 1.1672379999999976], [1.1672519999999622, 1.1752380000000358], [1.175258999999869, 1.1832379999998466], [1.1832509999999274, 1.2512369999999464], [1.2512469999999212, 1.3632350000000315], [1.3752329999999802, 1.3872329999999238], [1.3992329999998674, 1.4112330000000384], [1.423232999999982, 1.4352329999999256], [1.4472329999998692, 1.4592330000000402], [1.4712339999998676, 1.4832329999999274], [1.495232999999871, 1.507233000000042], [1.5192329999999856, 1.5312340000000404], [1.543233999999984, 1.5552329999998165], [1.5672319999998763, 1.5792329999999311], [1.5912329999998747, 1.8352399999998852], [1.8352649999999358, 1.8752349999999751], [1.8872340000000349, 1.8992309999998724], [1.9112319999999272, 1.923232999999982], [1.9352320000000418, 1.9472319999999854], [1.959233999999924, 1.9712319999998726], [1.9832319999998163, 1.9952319999999872], [2.0072319999999308, 2.0192319999998745], [2.0312319999998181, 2.0432319999999891], [2.0552319999999327, 2.0672319999998763], [2.0792319999998199, 2.0912329999998747], [2.3872340000000349, 2.3992329999998674], [2.4112330000000384, 2.423232999999982], [2.4352329999999256, 2.4472329999998692], [2.4592330000000402, 2.4712329999999838], [2.4832329999999274, 2.495232999999871], [2.507233000000042, 2.5192329999999856], [2.5312340000000404, 2.5432349999998678], [2.5552350000000388, 2.5672329999999874], [2.5792329999999311, 2.5912329999998747], [2.6032319999999345, 2.827237999999852], [2.8272529999999279, 3.0272350000000188], [3.0392329999999674, 3.051232999999911], [3.0632329999998547, 3.0752330000000256], [3.0872319999998581, 3.0992329999999129], [3.1112319999999727, 3.1232359999999062], [3.135234999999966, 3.1472329999999147], [3.1592329999998583, 3.1712330000000293], [3.1832349999999678, 3.1952340000000277], [3.2072329999998601, 3.2192330000000311], [3.2312329999999747, 3.2432329999999183], [3.2552329999998619, 3.5392359999998462], [3.551234999999906, 3.5632329999998547], [3.5752339999999094, 3.5872329999999693], [3.5992329999999129, 3.6112329999998565], [3.6232319999999163, 3.6352409999999509], [3.6472340000000258, 3.6592329999998583], [3.6712330000000293, 3.6832329999999729], [3.6952329999999165, 3.7072329999998601], [3.7192330000000311, 3.7312329999999747], [3.7432329999999183, 3.7552329999998619], [3.7672330000000329, 3.8232379999999466], [3.8232510000000275, 4.0512340000000222], [4.0632329999998547, 4.0752330000000256], [4.0872329999999693, 4.0992329999999129], [4.1112349999998514, 4.1232350000000224], [4.1352389999999559, 4.1472349999999096], [4.1592329999998583, 4.1712330000000293], [4.1832329999999729, 4.1952329999999165], [4.2072329999998601, 4.2192339999999149], [4.2312329999999747, 4.2432329999999183], [4.2552339999999731, 4.2672330000000329], [4.2792329999999765, 4.5672329999999874], [4.5792329999999311, 4.5912329999998747], [4.6032329999998183, 4.6152349999999842], [4.6272339999998167, 4.6392329999998765], [4.6512329999998201, 4.6632329999999911], [4.6752319999998235, 4.6872409999998581], [4.6992329999998219, 4.7112329999999929], [4.7232349999999315, 4.7352379999999812], [4.7472339999999349, 4.7592339999998785], [4.7712329999999383, 4.7832329999998819], [4.7952329999998256, 4.8152390000000196], [4.8152589999999691, 5.0752339999999094], [5.0872319999998581, 5.0992320000000291], [5.1112319999999727, 5.1232319999999163], [5.1352319999998599, 5.1472320000000309], [5.1592319999999745, 5.1712319999999181], [5.1832329999999729, 5.1952329999999165], [5.2072329999998601, 5.2192330000000311], [5.2312319999998635, 5.2432329999999183], [5.2512429999999313, 5.2632329999999001], [5.2752329999998437, 5.2872330000000147], [5.2992329999999583, 5.447240999999849], [5.4472599999999147, 5.4552539999999681], [5.4552689999998165, 5.4632379999998193], [5.4752329999998892, 5.4872329999998328], [5.4992330000000038, 5.5112329999999474], [5.523232999999891, 5.5272399999998925], [5.5272529999999733, 5.5352379999999357], [5.5392569999999068, 5.5472379999998793], [5.5592329999999492, 5.5712320000000091], [5.5832409999998163, 5.5952330000000075], [5.6072329999999511, 5.6112399999999525], [5.6112530000000334, 5.6192369999998846], [5.6272519999999986, 5.6392329999998765], [5.6512329999998201, 5.6632329999999911], [5.6752329999999347, 5.6872329999998783], [5.6992329999998219, 5.7112339999998767], [5.7232349999999315, 5.7352329999998801], [5.7472339999999349, 5.7592329999999947], [5.7712329999999383, 5.7832329999998819], [5.7952329999998256, 5.8072329999999965], [5.8192329999999401, 5.8312329999998838], [5.8472329999999602, 5.8592329999999038], [5.8712329999998474, 5.8832330000000184], [5.895232999999962, 5.9072329999999056], [5.9192349999998441, 5.9312350000000151], [5.9432349999999587, 6.3552349999999933], [6.367232999999942, 6.3792329999998856], [6.3912329999998292, 6.4032330000000002], [6.4152329999999438, 6.4272329999998874], [6.439232999999831, 6.451233000000002], [6.4632339999998294, 6.4752329999998892], [6.4872329999998328, 6.4992339999998876], [6.5112329999999474, 6.523232999999891], [6.5352359999999408, 6.5472350000000006], [6.5592319999998381, 6.5712329999998929], [6.8672349999999369, 6.8792320000000018], [6.8912319999999454, 6.903231999999889], [6.9152319999998326, 6.9272329999998874], [6.9392319999999472, 6.9512319999998908], [6.9632319999998344, 6.9752320000000054], [6.9872329999998328, 6.9992330000000038], [7.0112329999999474, 7.023232999999891], [7.0352329999998346, 7.0472319999998945], [7.0592329999999492, 7.0712329999998929], [7.0832329999998365, 7.5072339999999258], [7.5192329999999856, 7.5312349999999242], [7.543233999999984, 7.5552350000000388], [7.5672329999999874, 7.5792319999998199], [7.5912329999998747, 7.6032319999999345], [7.615233999999873, 7.6272329999999329], [7.6392329999998765, 7.6512329999998201], [7.6632329999999911, 7.6752329999999347], [7.6872329999998783, 7.6992329999998219], [7.7112329999999929, 7.7232329999999365], [9.3032339999999749, 9.3152330000000347], [9.3272329999999783, 9.339232999999922], [9.3512329999998656, 9.3632330000000366], [9.3792529999998351, 9.3912339999999404], [9.403233999999884, 9.4152329999999438], [9.4272339999999986, 9.439232999999831], [9.451233000000002, 9.4632329999999456], [9.4752329999998892, 9.4872329999998328], [9.4992330000000038, 9.5112329999999474], [9.523232999999891, 9.8112349999998969], [9.8232329999998456, 9.8352370000000064], [9.8472329999999602, 9.8592399999999998], [9.8672549999998864, 9.8792329999998856], [9.8912329999998292, 9.9032330000000002], [9.9152329999999438, 9.9272329999998874], [9.9392339999999422, 9.951233000000002], [9.9632329999999456, 9.9752329999998892], [9.987233999999944, 9.9992330000000038], [10.011232999999947, 10.023232999999891], [10.035232999999835, 10.323234999999841], [10.335233000000017, 10.347231999999849], [10.359234000000015, 10.371232999999847], [10.383233000000018, 10.395232999999962], [10.407234000000017, 10.419232999999849], [10.431231999999909, 10.443232999999964], [10.455232999999907, 10.467232999999851], [10.479233000000022, 10.491232999999966], [10.503232999999909, 10.515232999999853], [10.527233000000024, 10.527241000000004], [10.527254999999968, 10.535237999999936], [10.53525999999988, 10.543238999999858], [10.555232999999816, 10.567232999999987], [10.579234000000042, 10.591233999999986], [10.603232999999818, 10.615232999999989], [10.627232999999933, 10.639232999999876], [10.65123299999982, 10.663232999999991], [10.675232999999935, 10.827238999999963], [10.827272999999877, 11.09123499999987], [11.103232999999818, 11.115231999999878], [11.127231999999822, 11.139231999999993], [11.151231999999936, 11.163232999999991], [11.175231999999824, 11.187232999999878], [11.199232999999822, 11.211232999999993], [11.22323399999982, 11.235234999999875], [11.247233999999935, 11.259240999999975], [11.271232999999938, 11.283233999999993], [11.295232999999826, 11.307232999999997], [11.603235000000041, 11.615231999999878], [11.627233999999817, 11.639233999999988], [11.65123299999982, 11.663232999999991], [11.675232999999935, 11.687232999999878], [11.699232999999822, 11.711232999999993], [11.72323399999982, 11.735233999999991], [11.747234999999819, 11.759232999999995], [11.771232999999938, 11.783232999999882], [11.795232999999826, 11.807232999999997], [11.819261999999981, 12.243236000000024], [12.255233999999973, 12.267233000000033], [12.279231999999865, 12.29123299999992], [12.303232999999864, 12.315233000000035], [12.327232999999978, 12.339232999999922], [12.351231999999982, 12.363233000000037], [12.37523299999998, 12.387232999999924], [12.399232999999867, 12.411233000000038], [12.423232999999982, 12.435232000000042], [12.44725399999993, 12.459231999999929], [12.471232999999984, 12.483231999999816], [12.495232999999871, 12.507233000000042], [12.519232999999986, 12.527239999999892], [12.527253999999857, 12.535237999999936], [12.547233999999889, 12.559232999999949], [12.571232999999893, 12.583232999999836], [12.595233000000007, 12.811238999999887], [12.811259999999947, 12.883233999999902], [12.895232999999962, 12.907232999999906], [12.919234999999844, 12.931233999999904], [12.943231999999853, 12.955232999999907], [12.967231999999967, 12.979233000000022], [12.991232999999966, 13.003232999999909], [13.015232999999853, 13.027233000000024], [13.039233999999851, 13.051232999999911], [13.063232999999855, 13.075233000000026], [13.087232999999969, 13.099232999999913], [13.111232999999856, 13.251235999999835], [13.251244999999926, 13.395234999999957], [13.407232999999906, 13.41923399999996], [13.43123300000002, 13.443233999999848], [13.455232999999907, 13.467232999999851], [13.479233000000022, 13.491232999999966], [13.50323400000002, 13.515234999999848], [13.527235000000019, 13.539232999999967], [13.551236000000017, 13.563233999999966], [13.575233000000026, 13.587233999999853], [13.599232999999913, 13.611232999999856], [13.623233999999911, 13.83523799999989], [13.835252999999966, 13.846393000000035], [13.846416999999974, 13.846543999999994]], \"5\": [[0.45615799999995943, 0.46323899999993046], [0.47523899999987407, 0.48723599999993894], [0.49923499999999876, 0.51124299999992218], [0.5232340000000022, 0.53523399999994581], [0.54723500000000058, 0.55923399999983303], [0.57123299999989285, 0.58323299999983647]]}, \"rt-app-2321\": {\"4\": [[0.4551169999999729, 0.45515299999988201]]}, \"rt-app-2320\": {\"4\": [[0.45498499999985142, 0.4551169999999729]]}, \"rt-app-2323\": {\"4\": [[0.45516599999996288, 0.45518799999990733]]}, \"rt-app-2322\": {\"4\": [[0.45515299999988201, 0.45516599999996288]]}, \"rt-app-2325\": {\"5\": [[0.45600399999989349, 0.45601699999997436]]}, \"rt-app-2324\": {\"5\": [[0.45535199999994802, 0.45536700000002384]]}, \"sshd-2064\": {\"1\": [[15.783770999999888, 15.783873999999969], [16.042694999999867, 16.042766000000029], [16.043061999999964, 16.043124000000034], [16.043247999999949, 16.043295999999827], [16.04343700000004, 16.043480999999929], [16.043623999999909, 16.043668000000025], [16.044178999999986, 16.04428299999995], [16.092895999999882, 16.093014000000039], [16.093568999999889, 16.093677999999954]], \"2\": [[0.0022549999998773274, 0.0023609999998370768], [0.15673399999991489, 0.15680699999984427], [0.15739799999983006, 0.15752999999995154], [0.20694200000002638, 0.20706799999993564], [0.20767399999999725, 0.20778999999993175], [0.20791999999983091, 0.20796799999993709], [0.36269300000003568, 0.36282399999981862], [0.36344599999983984, 0.36356200000000172], [0.36359599999991588, 0.36364200000002711], [0.36366399999997157, 0.36370699999997669], [0.36385699999982535, 0.36389999999983047], [0.3640419999999267, 0.36408499999993182], [0.36427600000001803, 0.36431900000002315], [0.36446099999989201, 0.36450300000001334], [0.36453499999993255, 0.36457699999982651], [0.36472000000003391, 0.3647609999998167], [0.36495599999989281, 0.36500099999989288], [0.36514699999997902, 0.36518899999987298], [0.36534800000003997, 0.36539099999981772], [0.41373399999997673, 0.41385599999989608], [0.41443200000003344, 0.41454499999986183], [0.4516439999999875, 0.4517639999999119], [0.45192099999985658, 0.45196999999984655], [14.928594999999859, 14.928662999999915], [15.083273999999847, 15.083343000000013], [15.083903999999848, 15.084034999999858], [15.133425999999872, 15.133554000000004], [15.134158999999954, 15.134274000000005], [15.13439500000004, 15.13444400000003], [15.291013999999905, 15.291140000000041], [15.291761999999835, 15.291876999999886], [15.291985999999952, 15.29203399999983], [15.292181999999912, 15.292226000000028], [15.292375999999877, 15.292418999999882], [15.292563999999857, 15.292606999999862], [15.292758999999933, 15.292800999999827], [15.341893000000027, 15.34196699999984], [15.342161000000033, 15.342219999999998], [15.365374999999858, 15.365473999999949], [15.518266999999923, 15.518378999999868], [15.51911599999994, 15.519258000000036], [15.568331999999828, 15.568442999999888], [15.568990999999869, 15.569100999999819], [15.56920799999989, 15.569255999999996], [15.723043999999845, 15.723158999999896], [15.723714999999856, 15.723823000000039], [15.723932999999988, 15.723978999999872], [15.724120999999968, 15.724164999999857], [15.724312999999938, 15.724354999999832], [15.72450200000003, 15.724545999999918], [15.724694, 15.724735999999893], [15.724753999999848, 15.724794999999858], [15.724817999999914, 15.724860000000035], [15.724882999999863, 15.724925999999869], [15.724948999999924, 15.724989999999934], [15.72501299999999, 15.725054], [15.725076999999828, 15.725117999999839], [15.725140999999894, 15.725181999999904], [15.72520499999996, 15.72524599999997], [15.725275999999894, 15.725320999999894], [15.773627999999917, 15.773700999999846], [15.773727000000008, 15.773783999999978]], \"3\": [[0.45585399999981746, 0.45593399999984285], [0.46327699999983452, 0.46336699999983466], [0.46338599999990038, 0.46345699999983481], [0.4752770000000055, 0.47536399999989953], [13.846413999999868, 13.846540000000005], [14.738607999999886, 14.738700999999992]], \"4\": [[0.45617999999990388, 0.45624399999996967], [0.45934799999986353, 0.45944799999983843], [14.06623999999988, 14.06633399999987], [14.120075000000043, 14.12016299999982]], \"5\": [[0.45435699999984536, 0.45448999999985062], [0.45505299999990712, 0.45515099999988706], [0.45527700000002369, 0.45535199999994802], [14.488541999999825, 14.488636999999926], [14.926271000000042, 14.926363999999921]]}}});\n",
" }); /* TRAPPY_PUBLISH_REMOVE_LINE */\n",
" </script>\n",
" </div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# Check tasks residency on little clsuter\n",
"trappy.plotter.plot_trace(trace)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example of CPUs isolation"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# Isolate CPU0\n",
"\n",
"# This works by moving all user-space tasks into a cpuset\n",
"# which does not include the specified list of CPUs to be\n",
"# isolated.\n",
"sandbox, isolated = target.cgroups.isolate(cpus=[0])"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Sandbox:\n",
"{\n",
" \"cpu_exclusive\": \"0\", \n",
" \"memory_spread_page\": \"0\", \n",
" \"sched_load_balance\": \"1\", \n",
" \"cpus\": \"1-5\", \n",
" \"effective_mems\": \"0\", \n",
" \"mem_hardwall\": \"0\", \n",
" \"mem_exclusive\": \"0\", \n",
" \"memory_pressure\": \"0\", \n",
" \"effective_cpus\": \"1-5\", \n",
" \"mems\": \"0\", \n",
" \"sched_relax_domain_level\": \"-1\", \n",
" \"memory_migrate\": \"0\", \n",
" \"memory_spread_slab\": \"0\"\n",
"}\n"
]
}
],
"source": [
"# Check the attributes available for the SANDBOX group\n",
"print \"Sandbox:\\n\", json.dumps(sandbox.get(), indent=4)"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Isolated:\n",
"{\n",
" \"cpu_exclusive\": \"0\", \n",
" \"memory_spread_page\": \"0\", \n",
" \"sched_load_balance\": \"1\", \n",
" \"cpus\": \"0\", \n",
" \"effective_mems\": \"0\", \n",
" \"mem_hardwall\": \"0\", \n",
" \"mem_exclusive\": \"0\", \n",
" \"memory_pressure\": \"0\", \n",
" \"effective_cpus\": \"0\", \n",
" \"mems\": \"0\", \n",
" \"sched_relax_domain_level\": \"-1\", \n",
" \"memory_migrate\": \"0\", \n",
" \"memory_spread_slab\": \"0\"\n",
"}\n"
]
}
],
"source": [
"# Check the attributes available for the ISOLATED group\n",
"print \"Isolated:\\n\", json.dumps(isolated.get(), indent=4)"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"04:25:28 INFO : WlGen - Workload execution START:\n",
"04:25:28 INFO : WlGen - /root/devlib-target/bin/rt-app /root/devlib-target/simple_00.json 2>&1\n",
"04:25:40 INFO : WlGen - Pulling trace file into [.//simple_00.dat]...\n"
]
}
],
"source": [
"# Run some workload, which is expected to not run in the ISOLATED cpus:\n",
"trace = rtapp.run(ftrace=te.ftrace)"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"<style>\n",
"/*\n",
" * Copyright 2015-2016 ARM Limited\n",
" *\n",
" * Licensed under the Apache License, Version 2.0 (the \"License\");\n",
" * you may not use this file except in compliance with the License.\n",
" * You may obtain a copy of the License at\n",
" *\n",
" * http://www.apache.org/licenses/LICENSE-2.0\n",
" *\n",
" * Unless required by applicable law or agreed to in writing, software\n",
" * distributed under the License is distributed on an \"AS IS\" BASIS,\n",
" * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n",
" * See the License for the specific language governing permissions and\n",
" * limitations under the License.\n",
" */\n",
"\n",
".d3-tip {\n",
" line-height: 1;\n",
" padding: 12px;\n",
" background: rgba(0, 0, 0, 0.6);\n",
" color: #fff;\n",
" border-radius: 2px;\n",
" position: absolute !important;\n",
" z-index: 99999;\n",
"}\n",
"\n",
".d3-tip:after {\n",
" box-sizing: border-box;\n",
" pointer-events: none;\n",
" display: inline;\n",
" font-size: 10px;\n",
" width: 100%;\n",
" line-height: 1;\n",
" color: rgba(0, 0, 0, 0.6);\n",
" content: \"\\25BC\";\n",
" position: absolute !important;\n",
" z-index: 99999;\n",
" text-align: center;\n",
"}\n",
"\n",
".d3-tip.n:after {\n",
" margin: -1px 0 0 0;\n",
" top: 100%;\n",
" left: 0;\n",
"}\n",
"\n",
".contextRect {\n",
" fill: lightgray;\n",
" fill-opacity: 0.5;\n",
" stroke: black;\n",
" stroke-width: 1;\n",
" stroke-opacity: 1;\n",
" pointer-events: none;\n",
" shape-rendering: crispEdges;\n",
"}\n",
"\n",
".chart {\n",
" shape-rendering: crispEdges;\n",
"}\n",
"\n",
".mini text {\n",
" font: 9px sans-serif;\n",
"}\n",
"\n",
".main text {\n",
" font: 12px sans-serif;\n",
"}\n",
"\n",
".axis line, .axis path {\n",
" stroke: black;\n",
"}\n",
"\n",
".miniItem {\n",
" stroke-width: 8;\n",
"}\n",
"\n",
".brush .extent {\n",
"\n",
" stroke: #000;\n",
" fill-opacity: .125;\n",
" shape-rendering: crispEdges;\n",
"}\n",
"</style>\n",
"<div id=\"fig_77225121e7074fc9b1990ee93b349996\" class=\"eventplot\">\n",
"<!-- TRAPPY_PUBLISH_SOURCE_LIB = \"https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js\" -->\n",
"<!-- TRAPPY_PUBLISH_SOURCE_LIB = \"http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js\" -->\n",
"\n",
" <script>\n",
" /* TRAPPY_PUBLISH_IMPORT = \"plotter/js/EventPlot.js\" */\n",
" /* TRAPPY_PUBLISH_REMOVE_START */\n",
" var req = require.config( {\n",
"\n",
" paths: {\n",
"\n",
" \"EventPlot\": '/nbextensions/plotter_scripts/EventPlot/EventPlot',\n",
" \"d3-tip\": '/nbextensions/plotter_scripts/EventPlot/d3.tip.v0.6.3',\n",
" \"d3-plotter\": '/nbextensions/plotter_scripts/EventPlot/d3.min'\n",
" },\n",
" waitSeconds: 15,\n",
" shim: {\n",
" \"d3-plotter\" : {\n",
" \"exports\" : \"d3\"\n",
" },\n",
" \"d3-tip\": [\"d3-plotter\"],\n",
" \"EventPlot\": {\n",
"\n",
" \"deps\": [\"d3-tip\", \"d3-plotter\" ],\n",
" \"exports\": \"EventPlot\"\n",
" }\n",
" }\n",
" });\n",
" /* TRAPPY_PUBLISH_REMOVE_STOP */\n",
" \n",
" req([\"require\", \"EventPlot\"], function() { /* TRAPPY_PUBLISH_REMOVE_LINE */\n",
" EventPlot.generate('fig_77225121e7074fc9b1990ee93b349996', '/nbextensions/', {\"lanes\": [{\"id\": 0, \"label\": \"CPU :0\"}, {\"id\": 1, \"label\": \"CPU :1\"}, {\"id\": 2, \"label\": \"CPU :2\"}, {\"id\": 3, \"label\": \"CPU :3\"}, {\"id\": 4, \"label\": \"CPU :4\"}, {\"id\": 5, \"label\": \"CPU :5\"}], \"colorMap\": null, \"keys\": [\"task1-2390\", \"task2-2391\", \"task3-2392\", \"task0-2389\", \"task4-2393\", \"task5-2394\", \"sh-2395\", \"sh-2398\", \"sh-2400\", \"sh-2396\", \"sudo-2399\", \"sudo-2396\", \"sudo-2401\", \"shutils-2397\", \"sh-2067\", \"sh-2388\", \"sudo-2395\", \"sudo-2398\", \"sudo-2385\", \"shutils-2396\", \"rt-app-2388\", \"sshd-2064\", \"syslogd-1412\", \"jbd2/sda2-8-1197\", \"rt-app-2394\", \"khugepaged-407\", \"ksoftirqd/3-29\", \"rpcbind-1391\", \"rt-app-2389\", \"init-1\", \"kworker/4:1-777\", \"ksoftirqd/4-35\", \"ksoftirqd/5-41\", \"usb-storage-1169\", \"kworker/5:1-1007\", \"kworker/0:1-562\", \"kworker/u12:2-2112\", \"kworker/3:1-448\", \"kworker/u12:1-46\", \"rcu_preempt-7\", \"ksoftirqd/0-3\", \"kworker/2:1-1008\", \"sudo-2400\", \"kworker/1:1-1006\", \"rt-app-2392\", \"watchdog/0-12\", \"watchdog/1-15\", \"rt-app-2391\", \"kworker/3:1H-1260\", \"kworker/4:1H-1196\", \"rt-app-2390\", \"rt-app-2393\", \"watchdog/3-27\", \"watchdog/4-33\", \"kworker/5:1H-1251\", \"watchdog/5-39\", \"watchdog/2-21\"], \"stride\": false, \"showSummary\": true, \"xDomain\": [0.00067699999999604188, 11.69919700000014], \"data\": {\"init-1\": {\"1\": [[1.9532639999999901, 1.9532960000001367], [6.958417000000054, 6.9584600000000592]]}, \"watchdog/4-33\": {\"4\": [[2.381268000000091, 2.3812780000000657], [6.3812669999999798, 6.381275000000187], [10.381339000000025, 10.381348000000116]]}, \"task5-2394\": {\"1\": [[0.42543399999999565, 0.43326600000000326], [0.43327500000009422, 0.44126400000004651], [0.44127600000001621, 0.44926299999997354], [0.44927000000006956, 0.45327100000008613], [0.45327800000018215, 0.49993100000006052], [0.99079200000005585, 1.016501000000062], [1.0904140000000098, 1.1165009999999711], [1.190661000000091, 1.2165010000001075]], \"2\": [[0.51658500000007734, 0.52925900000013826], [1.2961850000001505, 1.9772620000001098], [1.9772740000000795, 2.3252630000001773], [2.3252690000001621, 2.6163160000000971], [2.6905699999999797, 2.7165019999999913], [2.8909530000000814, 2.9165020000000368], [3.090804000000162, 3.1165020000000823], [3.2910340000000815, 3.3165020000001277], [3.4908100000000104, 3.5165020000001732], [3.6909990000001471, 3.7165019999999913], [3.8911350000000766, 3.9165020000000368], [4.0906830000001264, 4.1165020000000823], [4.2904359999999997, 4.3165020000001277], [4.4903590000001259, 4.5165020000001732], [4.6906659999999647, 4.7165019999999913], [4.8910960000000614, 4.9165020000000368], [5.0909520000000157, 5.1165029999999661], [5.2907139999999799, 5.3165020000001277], [5.4172889999999825, 5.4252639999999701], [5.4252760000001672, 5.4332630000001245], [5.4332710000001043, 5.4412630000001627], [5.4412720000000263, 5.9412830000001122], [5.9412970000000769, 6.3252630000001773], [6.325268000000051, 6.6699069999999665]], \"3\": [[0.54126400000018293, 0.55326400000012654], [0.56526400000007015, 0.57726400000001377], [0.58926400000018475, 0.60126400000012836], [0.61326400000007197, 0.62526400000001559], [0.63726500000007036, 0.64926400000013018], [0.66126600000006874, 0.67327500000010332], [0.68526399999996102, 0.72926400000005742], [0.74126400000000103, 0.75326400000017202], [0.76526400000011563, 0.77726400000005924], [0.78926400000000285, 0.80127100000004248], [0.81326400000011745, 0.82526400000006106], [0.83726400000000467, 0.84926400000017566], [0.86126400000011927, 0.87326400000006288], [0.88526400000000649, 0.92927299999996649], [0.94126400000004651, 0.94930900000008478], [0.94933700000001409, 0.96126400000002832], [0.97326500000008309, 0.98526400000014291], [1.0212639999999737, 1.0332640000001447], [1.0452640000000883, 1.057264000000032], [1.0692639999999756, 1.0812640000001466], [1.1252640000000156, 1.1372640000001866], [1.149263000000019, 1.1612640000000738], [1.1732640000000174, 1.1852720000001682], [1.2292640000000574, 1.241264000000001], [1.253264000000172, 1.2652640000001156], [1.2772640000000592, 1.2892640000000029], [2.6252640000000156, 2.6372640000001866], [2.6492640000001302, 2.661265000000185], [2.6732660000000124, 2.6852650000000722], [2.7292640000000574, 2.741264000000001], [2.753264000000172, 2.7652640000001156], [2.7772640000000592, 2.7892640000000029], [2.8012650000000576, 2.8132640000001174], [2.8252640000000611, 2.8372640000000047], [2.8492640000001757, 2.8612640000001193], [2.8732640000000629, 2.8852640000000065], [2.9292649999999867, 2.9412640000000465], [2.9532639999999901, 2.9652640000001611], [2.9772720000000845, 2.9892630000001645], [3.0012639999999919, 3.0132640000001629], [3.0252640000001065, 3.0372630000001664], [3.0492639999999938, 3.0612640000001647], [3.0732640000001084, 3.085264000000052], [3.1292640000001484, 3.141264000000092], [3.1532640000000356, 3.1652639999999792], [3.177263000000039, 3.1892640000000938], [3.2012640000000374, 3.213263999999981], [3.225264000000152, 3.2372640000000956], [3.2492640000000392, 3.2612639999999828], [3.2732650000000376, 3.2852640000000974], [3.3292639999999665, 3.3412640000001375], [3.3532640000000811, 3.3652640000000247], [3.3772639999999683, 3.3892640000001393], [3.4012640000000829, 3.4132630000001427], [3.4252639999999701, 3.4372640000001411], [3.4492640000000847, 3.4612640000000283], [3.4732639999999719, 3.4852640000001429], [3.5292640000000119, 3.5412640000001829], [3.5532640000001265, 3.5652640000000702], [3.5772650000001249, 3.5892640000001848], [3.6012640000001284, 3.6132650000001831], [3.6252640000000156, 3.6372640000001866], [3.6492640000001302, 3.6612660000000687], [3.6732660000000124, 3.6852650000000722], [3.7292640000000574, 3.741264000000001], [3.753264000000172, 3.7652640000001156], [3.7772640000000592, 3.7892640000000029], [3.8012650000000576, 3.8132640000001174], [3.8252640000000611, 3.8372630000001209], [3.8492630000000645, 3.8612640000001193], [3.8732700000000477, 3.8852640000000065], [3.9292640000001029, 3.9412640000000465], [3.9532639999999901, 3.9652640000001611], [3.9772629999999936, 3.9892640000000483], [4.0012719999999717, 4.0132640000001629], [4.0252640000001065, 4.0372640000000501], [4.0492639999999938, 4.0612640000001647], [4.0732640000001084, 4.0852630000001682], [4.1292640000001484, 4.141264000000092], [4.1532640000000356, 4.1652639999999792], [4.1772640000001502, 4.1892640000000938], [4.2012640000000374, 4.213263999999981], [4.225264000000152, 4.2372640000000956], [4.2492640000000392, 4.2612639999999828], [4.2732640000001538, 4.2852640000000974], [4.3292639999999665, 4.3412640000001375], [4.3532640000000811, 4.3652650000001358], [4.3772639999999683, 4.3892640000001393], [4.4012640000000829, 4.4132640000000265], [4.4252639999999701, 4.4372640000001411], [4.4492640000000847, 4.4612640000000283], [4.4732639999999719, 4.4852630000000318], [4.5292650000001231, 4.5412640000001829], [4.5532640000001265, 4.5652640000000702], [4.5772640000000138, 4.5892640000001848], [4.6012640000001284, 4.613264000000072], [4.6252640000000156, 4.6372650000000704], [4.6492640000001302, 4.6612660000000687], [4.6732650000001286, 4.6852650000000722], [4.7292640000000574, 4.741264000000001], [4.753264000000172, 4.7652640000001156], [4.7772640000000592, 4.7892640000000029], [4.8012640000001738, 4.8132640000001174], [4.8252640000000611, 4.8372640000000047], [4.8492630000000645, 4.8612640000001193], [4.8732640000000629, 4.8852640000000065], [4.9292640000001029, 4.9412630000001627], [4.9532639999999901, 4.9652640000001611], [4.9772640000001047, 4.9892640000000483], [5.0012639999999919, 5.0132640000001629], [5.0252729999999701, 5.0372640000000501], [5.0492639999999938, 5.0612640000001647], [5.0732640000001084, 5.085264000000052], [5.1292640000001484, 5.141264000000092], [5.1532630000001518, 5.1652639999999792], [5.177263000000039, 5.1892640000000938], [5.2012650000001486, 5.213263999999981], [5.225264000000152, 5.2372640000000956], [5.2492640000000392, 5.2612639999999828], [5.2732640000001538, 5.2852649999999812], [5.3292639999999665, 5.3412640000001375], [5.3532640000000811, 5.3652640000000247], [5.3772639999999683, 5.3892640000001393], [5.4012640000000829, 5.4132640000000265]]}, \"sh-2398\": {\"1\": [[11.466564000000062, 11.466928000000053]], \"4\": [[11.467026000000033, 11.475903000000017]]}, \"rt-app-2391\": {\"2\": [[0.41628500000001623, 0.41630299999997078]]}, \"kworker/4:1H-1196\": {\"4\": [[10.556614000000081, 10.556629000000157]]}, \"task3-2392\": {\"1\": [[0.41685800000004747, 0.41686500000014348], [0.41689100000007784, 0.41694000000006781], [0.41711099999997714, 0.41712600000005295], [0.71658500000012282, 0.79085200000008626], [0.81658400000014808, 0.89087800000015704], [0.91650200000003679, 0.94930300000009993], [0.94931900000005953, 0.99079200000005585], [1.016501000000062, 1.0904140000000098], [1.1165009999999711, 1.190661000000091], [1.2165010000001075, 1.2905339999999796], [1.3292590000000928, 1.403686000000107], [1.4165850000001683, 1.4908100000000104], [1.5165020000001732, 1.590706000000182], [1.6165860000000976, 1.6572770000000219], [1.6572860000001128, 1.6652630000000954], [1.6652720000001864, 1.6692700000000968], [1.6692800000000716, 1.6812630000001718], [1.6812720000000354, 1.6911059999999907], [1.7165010000001075, 1.7907690000001821], [1.816586000000143, 1.8908069999999952], [1.916501000000153, 1.9532639999999901], [1.9532960000001367, 1.9732630000000881], [1.9732740000001741, 1.9909050000001116], [2.0165020000001732, 2.0908810000000813], [2.1165009999999711, 2.1907490000000962], [2.2165010000001075, 2.2911390000001575], [2.3165020000001277, 2.3910780000001068], [2.4165850000001683, 2.4907610000000204], [2.516501000000062, 2.5907830000001013]], \"2\": [[0.4293840000000273, 0.50377200000002631], [0.52925900000013826, 0.60332300000004579], [0.61658400000010261, 0.69069899999999507], [2.6165060000000722, 2.6905699999999797], [2.7165019999999913, 2.7907780000000457], [2.8165850000000319, 2.8909530000000814], [2.9165020000000368, 2.9904950000000099], [3.0165839999999662, 3.090804000000162], [3.1165020000000823, 3.1908630000000358], [3.2165840000000117, 3.2910340000000815], [3.3165020000001277, 3.3906940000001669], [3.4165820000000622, 3.4908100000000104], [3.5165020000001732, 3.5911380000000008], [3.6165840000001026, 3.6909990000001471], [3.7165019999999913, 3.7906290000000809], [3.8165840000001481, 3.8911350000000766], [3.9165020000000368, 3.9572829999999612], [3.9572970000001533, 3.9907400000001871], [4.0165859999999611, 4.0906830000001264], [4.1165020000000823, 4.1906189999999697], [4.2165840000000117, 4.2904359999999997], [4.3165020000001277, 4.3908290000001671], [4.4165840000000571, 4.4903590000001259], [4.5165020000001732, 4.5905820000000404], [4.6165829999999914, 4.6906659999999647], [4.7165019999999913, 4.7905600000001414], [4.8165830000000369, 4.8910960000000614], [4.9165020000000368, 4.9812640000000101], [4.981275000000096, 4.990737000000081], [5.0165839999999662, 5.0909520000000157], [5.1165029999999661, 5.1911920000000009], [5.2165840000000117, 5.2907139999999799], [5.3165020000001277, 5.3906020000001718], [5.4165830000001733, 5.4166720000000623]]}, \"sh-2388\": {\"1\": [[0.4132879999999659, 0.41344200000003184], [0.41361600000004728, 0.41379100000017388]], \"3\": [[0.41387900000017908, 0.41632400000003145]]}, \"ksoftirqd/5-41\": {\"5\": [[10.561613999999963, 10.561669000000165], [10.561682000000019, 10.561697000000095]]}, \"rcu_preempt-7\": {\"1\": [[0.41727200000013909, 0.41728400000010879], [0.42541000000005624, 0.42543399999999565], [0.43326600000000326, 0.43327500000009422], [0.44126400000004651, 0.44127600000001621], [0.44926299999997354, 0.44927000000006956], [0.45327100000008613, 0.45327800000018215], [0.65728699999999662, 0.65729600000008759], [0.66926300000000083, 0.66927299999997558], [0.67726200000015524, 0.67727000000013504], [0.68526300000007723, 0.68527200000016819], [1.6572770000000219, 1.6572860000001128], [1.6652630000000954, 1.6652720000001864], [1.6692700000000968, 1.6692800000000716], [1.6812630000001718, 1.6812720000000354], [2.6572760000001381, 2.6572860000001128], [2.6652630000000954, 2.6652710000000752], [2.6692700000000968, 2.6692790000001878], [2.6812630000001718, 2.6812720000000354], [3.6572760000001381, 3.6572840000001179], [3.6652630000000954, 3.6652710000000752], [3.6692700000000968, 3.6692790000001878], [3.6812620000000607, 3.6812710000001516], [4.6573450000000776, 4.6573540000001685], [4.6692660000001069, 4.6692760000000817], [4.6812630000001718, 4.6812720000000354], [5.5733660000000782, 5.573376000000053], [5.5813610000000153, 5.5813700000001063], [5.5893590000000586, 5.5893730000000232], [5.5973610000000917, 5.5973700000001827], [5.6053620000000137, 5.6053730000000996], [5.6573700000001281, 5.6573800000001029], [5.6653640000001815, 5.6653740000001562], [5.6693649999999707, 5.6693780000000515], [5.6773640000001251, 5.6773740000000998], [5.6813680000000204, 5.6813779999999952], [6.6573550000000523, 6.6573650000000271], [6.6774290000000747, 6.6774490000000242], [6.6853450000000976, 6.6853590000000622], [6.6934029999999893, 6.6934230000001662], [6.7014000000001488, 6.7014169999999922], [7.6574279999999817, 7.6574450000000525], [7.6694079999999758, 7.6694240000001628], [7.6734020000001237, 7.6734209999999621], [7.6813570000001619, 7.6813740000000053], [8.2134090000001834, 8.2134240000000318], [8.2214060000001155, 8.2214270000001761], [8.2294030000000475, 8.2294200000001183], [8.5134339999999611, 8.5134500000001481], [8.5334060000000136, 8.5334259999999631], [8.5414010000001781, 8.5414180000000215], [8.6174270000001343, 8.6174430000000939], [8.6254040000001169, 8.6254240000000664], [8.6334040000001551, 8.6334200000001147], [8.6575000000000273, 8.6575150000001031], [8.6654049999999643, 8.6654250000001412], [8.6733860000001641, 8.6734030000000075], [9.1173880000001191, 9.1174040000000787], [9.141409000000067, 9.1414280000001327], [9.1494010000001254, 9.1494179999999687], [9.6174310000001242, 9.6174470000000838], [9.6534070000000156, 9.6534269999999651], [9.66140600000017, 9.6614260000001195], [9.6694059999999808, 9.6694260000001577], [9.6773870000001807, 9.6774030000001403], [9.8174800000001596, 9.817504000000099], [9.8253890000000865, 9.825409000000036], [9.8334120000001803, 9.8334320000001298], [9.8413990000001377, 9.8414190000000872], [9.8493960000000698, 9.8494130000001405], [10.117415000000165, 10.117431000000124], [10.13339800000017, 10.133419000000004], [10.141397000000097, 10.141415000000052], [10.557416000000103, 10.557432000000063], [10.581403000000137, 10.581423000000086], [10.589402000000064, 10.589422000000013], [10.597402000000102, 10.597422000000051], [10.60542600000008, 10.605446000000029], [10.657454000000143, 10.657474000000093], [10.66542800000002, 10.665452000000187], [10.673427000000174, 10.673447000000124], [10.837436000000025, 10.837453000000096], [10.845401000000038, 10.845422999999982], [10.853399999999965, 10.853418000000147], [11.469287000000122, 11.469301000000087], [11.477422000000161, 11.477433000000019]], \"2\": [[0.0012810000000627042, 0.0012970000000223081], [0.009268000000020038, 0.0092819999999846914], [0.017348999999967418, 0.017363000000159445], [0.025479000000132146, 0.025493999999980588], [0.033427000000074258, 0.033441000000038912], [0.041349999999965803, 0.04136200000016288], [5.4172800000001189, 5.4172889999999825], [5.4252639999999701, 5.4252760000001672], [5.4332630000001245, 5.4332710000001043], [5.4412630000001627, 5.4412720000000263], [11.033286999999973, 11.03329900000017], [11.041498000000047, 11.041515000000118], [11.689276000000064, 11.689285000000154], [11.697350000000142, 11.697364000000107]], \"5\": [[11.045293000000129, 11.045321000000058], [11.05336299999999, 11.053390000000036], [11.061523999999963, 11.061549000000014], [11.069361000000072, 11.069385000000011], [11.077355000000125, 11.077378000000181], [11.085358000000042, 11.085379999999986], [11.093485999999984, 11.093536000000086], [11.11751100000015, 11.117550000000165], [11.125406999999996, 11.125451999999996], [11.133481000000074, 11.133518999999978], [11.48129700000004, 11.481320000000096], [11.489353000000165, 11.489377999999988], [11.497350000000097, 11.497372000000041], [11.501355000000103, 11.501378000000159], [11.509355000000141, 11.509377000000086], [11.517357000000175, 11.517380000000003], [11.525354000000107, 11.525372000000061], [11.657354000000169, 11.657369000000017], [11.665355999999974, 11.66537900000003], [11.673354000000018, 11.673371999999972]]}, \"sh-2067\": {\"3\": [[10.773440000000164, 10.773627000000033], [10.823932000000013, 10.824387999999999], [10.979734000000008, 10.981423000000177], [11.030269000000089, 11.031300000000101], [11.054120000000012, 11.054429000000027], [11.208673999999974, 11.208892000000105], [11.258700999999974, 11.259169000000156], [11.415149000000156, 11.417235000000119], [11.465670000000046, 11.466721000000007], [11.481490000000122, 11.481802000000016], [11.635635999999977, 11.636837000000014], [11.685677000000169, 11.68653600000016]], \"5\": [[0.0014900000001034641, 0.0018480000001090957], [0.1566490000000158, 0.15678400000001602], [0.20676700000012715, 0.207061000000067], [0.36212300000011055, 0.36362400000007256], [0.41258900000002541, 0.41350899999997637], [10.556700000000092, 10.557007999999996]]}, \"syslogd-1412\": {\"5\": [[11.039369999999963, 11.039496999999983], [11.474730000000136, 11.474806000000171], [11.694406000000072, 11.694480000000112]]}, \"kworker/u12:1-46\": {\"0\": [[0.41646900000000642, 0.4165090000001328], [0.41691400000013346, 0.41693400000008296], [0.4171040000001085, 0.41714600000000246]], \"4\": [[0.36271800000008625, 0.36273400000004585], [0.36274600000001556, 0.36275500000010652], [0.36276800000018739, 0.36277700000005098], [0.36279800000011164, 0.36280800000008639], [0.36281800000006115, 0.3628280000000359], [0.3628479999999854, 0.36285399999997026], [0.36288600000011684, 0.36290500000018255], [0.36291500000015731, 0.3629240000000209], [0.3629439999999704, 0.36295400000017253], [0.36296500000003107, 0.36297400000012203], [0.3629950000001827, 0.36300400000004629], [0.36301400000002104, 0.36302300000011201], [0.36320500000010725, 0.36323000000015782], [0.36346000000003187, 0.36348500000008244], [0.36350800000013805, 0.36351800000011281], [0.36353000000008251, 0.36353900000017347], [0.36381700000015371, 0.36383799999998701], [0.41240000000016153, 0.41243500000018685], [0.41272700000013174, 0.41276400000015201], [0.41540400000008049, 0.4154270000001361], [0.41633500000011736, 0.41637900000000627], [10.773706000000175, 10.773738000000094], [10.980011999999988, 10.980043000000023], [10.980069000000185, 10.980082000000039], [10.980318000000125, 10.980343000000175], [10.980367000000115, 10.98037700000009], [10.980388000000175, 10.980397000000039], [10.9804180000001, 10.980428000000074], [10.980438000000049, 10.980444000000034], [10.980719000000136, 10.980744000000186], [10.980767000000014, 10.980776999999989], [10.980788000000075, 10.980797000000166], [10.980817999999999, 10.98082700000009], [10.980840000000171, 10.980845000000045], [10.98109199999999, 10.981114000000161], [10.98112500000002, 10.981134999999995], [10.981302000000142, 10.98132499999997], [10.981337000000167, 10.981347000000142], [10.981520000000046, 10.98154199999999], [11.03005700000017, 11.030091000000084], [11.030419000000165, 11.030462000000171], [11.054413000000068, 11.054442000000108], [11.208452000000079, 11.2084890000001], [11.208845999999994, 11.208892000000105], [11.415490999999975, 11.415519000000131], [11.415531999999985, 11.415541000000076], [11.415552000000162, 11.415561000000025], [11.415584000000081, 11.415591000000177], [11.415601000000152, 11.415606000000025], [11.415639000000056, 11.415648000000147], [11.41566899999998, 11.415678000000071], [11.415688000000046, 11.415697000000137], [11.41571799999997, 11.415727000000061], [11.415737000000036, 11.415746000000127], [11.415766000000076, 11.415791000000127], [11.415811000000076, 11.415821000000051], [11.415831000000026, 11.415841], [11.415861000000177, 11.415867000000162], [11.415901000000076, 11.415926000000127], [11.416244000000006, 11.416257000000087], [11.635854000000108, 11.635869000000184], [11.635881000000154, 11.635890000000018], [11.635901000000104, 11.635909999999967], [11.635923000000048, 11.635932000000139], [11.635952000000088, 11.635962000000063], [11.635972000000038, 11.635978000000023], [11.636197000000038, 11.636210000000119], [11.636384000000135, 11.636409000000185], [11.63642300000015, 11.636433000000125], [11.63645600000018, 11.636465000000044], [11.63647600000013, 11.636484999999993]]}, \"rt-app-2394\": {\"4\": [[0.41696900000010828, 0.41706100000010338]]}, \"watchdog/0-12\": {\"0\": [[2.2653500000001259, 2.2653720000000703], [6.2653470000000198, 6.2653549999999996], [10.265344000000141, 10.26535100000001]]}, \"sh-2401\": {\"1\": [[11.69919700000014, 11.69919700000014]]}, \"sh-2400\": {\"2\": [[11.686351000000059, 11.686701999999968]], \"4\": [[11.68678900000009, 11.695574999999963]]}, \"rt-app-2390\": {\"2\": [[0.41627100000005157, 0.41628500000001623]]}, \"ksoftirqd/0-3\": {\"0\": [[0.36358500000005733, 0.36360800000011295], [11.416635000000042, 11.416658000000098]]}, \"rt-app-2392\": {\"1\": [[0.4165050000001429, 0.41652599999997619]]}, \"rt-app-2393\": {\"1\": [[0.41686500000014348, 0.41687900000010814]]}, \"watchdog/2-21\": {\"2\": [[2.3252630000001773, 2.3252690000001621], [6.3252630000001773, 6.325268000000051], [10.325385000000097, 10.325395000000071]]}, \"sudo-2399\": {\"2\": [[11.475801000000047, 11.476197000000184]], \"5\": [[11.476286000000073, 11.480092000000013]]}, \"sudo-2398\": {\"4\": [[11.476970000000165, 11.477000000000089], [11.480160000000069, 11.481398000000127]]}, \"ksoftirqd/4-35\": {\"4\": [[10.559296000000131, 10.559345000000121]]}, \"sudo-2396\": {\"1\": [[11.040472000000136, 11.040918000000147]], \"5\": [[11.04093899999998, 11.044209000000137]]}, \"sudo-2395\": {\"4\": [[11.041746999999987, 11.041781000000128], [11.052716000000146, 11.054057000000057]]}, \"watchdog/5-39\": {\"5\": [[2.4092720000001009, 2.4092820000000756], [6.4092709999999897, 6.4092789999999695], [10.409338000000162, 10.40934500000003]]}, \"task4-2393\": {\"1\": [[0.49993100000006052, 0.65728699999999662], [0.65729600000008759, 0.66926300000000083], [0.66927299999997558, 0.67726200000015524], [0.67727000000013504, 0.68526300000007723], [0.68527200000016819, 0.70693300000016279], [0.89087800000015704, 0.91650200000003679], [1.4908100000000104, 1.5165020000001732], [1.6911059999999907, 1.7165010000001075], [1.8908069999999952, 1.916501000000153], [2.4907610000000204, 2.516501000000062], [2.5907830000001013, 2.6572760000001381], [2.6572860000001128, 2.6652630000000954], [2.6652710000000752, 2.6692700000000968], [2.6692790000001878, 2.6812630000001718], [2.6812720000000354, 3.6572760000001381], [3.6572840000001179, 3.6652630000000954], [3.6652710000000752, 3.6692700000000968], [3.6692790000001878, 3.6812620000000607], [3.6812710000001516, 3.9037769999999909], [3.9038319999999658, 4.6573450000000776], [4.6573540000001685, 4.6692660000001069], [4.6692760000000817, 4.6812630000001718], [4.6812720000000354, 4.9492820000000393], [4.9492950000001201, 5.569342000000006]], \"2\": [[0.41699800000014875, 0.41701400000010835]], \"3\": [[0.42926899999997659, 0.44526600000017424], [0.45726600000011786, 0.46926400000006652], [0.48126400000001013, 0.49326400000018111], [0.72926400000005742, 0.74126400000000103], [0.75326400000017202, 0.76526400000011563], [0.77726400000005924, 0.78926400000000285], [0.80127100000004248, 0.81326400000011745], [0.82526400000006106, 0.83726400000000467], [0.84926400000017566, 0.86126400000011927], [0.87326400000006288, 0.88526400000000649], [0.92927299999996649, 0.94126400000004651], [0.96126400000002832, 0.97326500000008309], [0.98526400000014291, 1.0212639999999737], [1.0332640000001447, 1.0452640000000883], [1.057264000000032, 1.0692639999999756], [1.0812640000001466, 1.1252640000000156], [1.1372640000001866, 1.149263000000019], [1.1612640000000738, 1.1732640000000174], [1.1852720000001682, 1.2292640000000574], [1.241264000000001, 1.253264000000172], [1.2652640000001156, 1.2772640000000592], [1.2892640000000029, 1.3412650000000212], [1.3532640000000811, 1.3652640000000247], [1.3772639999999683, 1.3892640000001393], [1.4012629999999717, 1.4132640000000265], [1.4252639999999701, 1.4372640000001411], [1.4492640000000847, 1.4612640000000283], [1.4732639999999719, 1.4852630000000318], [1.5292640000000119, 1.5412640000001829], [1.5532640000001265, 1.5652630000001864], [1.5772640000000138, 1.5892640000001848], [1.6012640000001284, 1.613264000000072], [1.6252640000000156, 1.6372640000001866], [1.6492640000001302, 1.6612660000000687], [1.6732660000000124, 1.6852660000001833], [1.7292640000000574, 1.741264000000001], [1.753264000000172, 1.7652640000001156], [1.7772640000000592, 1.7892630000001191], [1.8012640000001738, 1.8132650000000012], [1.8252640000000611, 1.8372640000000047], [1.8492640000001757, 1.8612640000001193], [1.8732630000001791, 1.8852640000000065], [1.9292649999999867, 1.9412640000000465], [1.9532730000000811, 1.9652640000001611], [1.9852640000001429, 2.0212639999999737], [2.0332640000001447, 2.0452640000000883], [2.0572630000001482, 2.0692639999999756], [2.0812640000001466, 2.1252640000000156], [2.1372640000001866, 2.1492640000001302], [2.1612640000000738, 2.1732640000000174], [2.185263999999961, 2.2292640000000574], [2.241264000000001, 2.253264000000172], [2.2652640000001156, 2.2772640000000592], [2.2892640000000029, 2.3212640000001556], [2.3332640000000993, 2.3452640000000429], [2.3532790000001569, 2.3652650000001358], [2.3772639999999683, 2.3892640000001393], [2.4012640000000829, 2.4132640000000265], [2.4252639999999701, 2.4372640000001411], [2.4492640000000847, 2.4612640000000283], [2.4732639999999719, 2.4852640000001429], [2.5212639999999737, 2.5332630000000336], [2.5452640000000883, 2.557264000000032], [2.5692639999999756, 2.5812640000001466]], \"5\": [[0.41702800000007301, 0.41711900000018431]]}, \"kworker/3:1-448\": {\"3\": [[0.94930900000008478, 0.94933700000001409], [1.973269000000073, 1.9732880000001387], [7.957300000000032, 7.9573230000000876], [8.8852699999999913, 8.8852860000001783], [8.9092689999999948, 8.9092820000000756], [8.9492680000000746, 8.9492860000000292]]}, \"kworker/4:1-777\": {\"4\": [[0.94927400000005946, 0.94932600000015555], [1.9412690000001476, 1.9412830000001122], [2.965268000000151, 2.9652840000001106], [3.9572680000001128, 3.9572880000000623], [4.9492680000000746, 4.9492880000000241], [5.9412690000001476, 5.9412890000000971], [6.965270000000146, 6.9653050000001713], [7.9572700000001078, 7.9573060000000169], [8.9492680000000746, 8.9492820000000393], [10.421424999999999, 10.421469000000116]]}, \"ksoftirqd/3-29\": {\"3\": [[10.557774000000109, 10.557847000000038]]}, \"task0-2389\": {\"1\": [[1.3165850000000319, 1.3292590000000928], [1.9909050000001116, 2.0165020000001732], [2.0908810000000813, 2.1165009999999711], [2.1907490000000962, 2.2165010000001075], [2.2973770000000968, 2.3165020000001277]], \"2\": [[0.69069899999999507, 0.98126500000012129], [0.98127999999996973, 1.2961850000001505]], \"3\": [[0.41709500000001754, 0.41712200000006305], [0.41713500000014392, 0.42926899999997659], [0.44526600000017424, 0.45726600000011786], [0.46926400000006652, 0.48126400000001013], [0.49326400000018111, 0.54126400000018293], [0.55326400000012654, 0.56526400000007015], [0.57726400000001377, 0.58926400000018475], [0.60126400000012836, 0.61326400000007197], [0.62526400000001559, 0.63726500000007036], [0.64926400000013018, 0.66126600000006874], [0.67327500000010332, 0.68526399999996102], [1.3412650000000212, 1.3532640000000811], [1.3652640000000247, 1.3772639999999683], [1.3892640000001393, 1.4012629999999717], [1.4132640000000265, 1.4252639999999701], [1.4372640000001411, 1.4492640000000847], [1.4612640000000283, 1.4732639999999719], [1.4852630000000318, 1.5292640000000119], [1.5412640000001829, 1.5532640000001265], [1.5652630000001864, 1.5772640000000138], [1.5892640000001848, 1.6012640000001284], [1.613264000000072, 1.6252640000000156], [1.6372640000001866, 1.6492640000001302], [1.6612660000000687, 1.6732660000000124], [1.6852660000001833, 1.7292640000000574], [1.741264000000001, 1.753264000000172], [1.7652640000001156, 1.7772640000000592], [1.7892630000001191, 1.8012640000001738], [1.8132650000000012, 1.8252640000000611], [1.8372640000000047, 1.8492640000001757], [1.8612640000001193, 1.8732630000001791], [1.8852640000000065, 1.9292649999999867], [1.9412640000000465, 1.9532730000000811], [1.9652640000001611, 1.973269000000073], [1.9732880000001387, 1.9852640000001429], [2.0212639999999737, 2.0332640000001447], [2.0452640000000883, 2.0572630000001482], [2.0692639999999756, 2.0812640000001466], [2.1252640000000156, 2.1372640000001866], [2.1492640000001302, 2.1612640000000738], [2.1732640000000174, 2.185263999999961], [2.2292640000000574, 2.241264000000001], [2.253264000000172, 2.2652640000001156], [2.2772640000000592, 2.2892640000000029], [2.3212640000001556, 2.3332640000000993], [2.3452640000000429, 2.3532690000001821], [2.3652650000001358, 2.3772639999999683], [2.3892640000001393, 2.4012640000000829], [2.4132640000000265, 2.4252639999999701], [2.4372640000001411, 2.4492640000000847], [2.4612640000000283, 2.4732639999999719], [2.4852640000001429, 2.5212639999999737], [2.5332630000000336, 2.5452640000000883], [2.557264000000032, 2.5692639999999756], [2.5812640000001466, 2.6252640000000156], [2.6372640000001866, 2.6492640000001302], [2.661265000000185, 2.6732660000000124], [2.6852650000000722, 2.7292640000000574], [2.741264000000001, 2.753264000000172], [2.7652640000001156, 2.7772640000000592], [2.7892640000000029, 2.8012650000000576], [2.8132640000001174, 2.8252640000000611], [2.8372640000000047, 2.8492640000001757], [2.8612640000001193, 2.8732640000000629], [2.8852640000000065, 2.9292649999999867], [2.9412640000000465, 2.9532639999999901], [2.9652640000001611, 2.9772720000000845], [2.9892630000001645, 3.0012639999999919], [3.0132640000001629, 3.0252640000001065], [3.0372630000001664, 3.0492639999999938], [3.0612640000001647, 3.0732640000001084], [3.085264000000052, 3.1292640000001484], [3.141264000000092, 3.1532640000000356], [3.1652639999999792, 3.177263000000039], [3.1892640000000938, 3.2012640000000374], [3.213263999999981, 3.225264000000152], [3.2372640000000956, 3.2492640000000392], [3.2612639999999828, 3.2732650000000376], [3.2852640000000974, 3.3292639999999665], [3.3412640000001375, 3.3532640000000811], [3.3652640000000247, 3.3772639999999683], [3.3892640000001393, 3.4012640000000829], [3.4132630000001427, 3.4252639999999701], [3.4372640000001411, 3.4492640000000847], [3.4612640000000283, 3.4732639999999719], [3.4852640000001429, 3.5292640000000119], [3.5412640000001829, 3.5532640000001265], [3.5652640000000702, 3.5772650000001249], [3.5892640000001848, 3.6012640000001284], [3.6132650000001831, 3.6252640000000156], [3.6372640000001866, 3.6492640000001302], [3.6612660000000687, 3.6732660000000124], [3.6852650000000722, 3.7292640000000574], [3.741264000000001, 3.753264000000172], [3.7652640000001156, 3.7772640000000592], [3.7892640000000029, 3.8012650000000576], [3.8132640000001174, 3.8252640000000611], [3.8372630000001209, 3.8492630000000645], [3.8612640000001193, 3.8732700000000477], [3.8852640000000065, 3.9292640000001029], [3.9412640000000465, 3.9532639999999901], [3.9652640000001611, 3.9772629999999936], [3.9892640000000483, 4.0012719999999717], [4.0132640000001629, 4.0252640000001065], [4.0372640000000501, 4.0492639999999938], [4.0612640000001647, 4.0732640000001084], [4.0852630000001682, 4.1292640000001484], [4.141264000000092, 4.1532640000000356], [4.1652639999999792, 4.1772640000001502], [4.1892640000000938, 4.2012640000000374], [4.213263999999981, 4.225264000000152], [4.2372640000000956, 4.2492640000000392], [4.2612639999999828, 4.2732640000001538], [4.2852640000000974, 4.3292639999999665], [4.3412640000001375, 4.3532640000000811], [4.3652650000001358, 4.3772639999999683], [4.3892640000001393, 4.4012640000000829], [4.4132640000000265, 4.4252639999999701], [4.4372640000001411, 4.4492640000000847], [4.4612640000000283, 4.4732639999999719], [4.4852630000000318, 4.5292650000001231], [4.5412640000001829, 4.5532640000001265], [4.5652640000000702, 4.5772640000000138], [4.5892640000001848, 4.6012640000001284], [4.613264000000072, 4.6252640000000156], [4.6372650000000704, 4.6492640000001302], [4.6612660000000687, 4.6732650000001286], [4.6852650000000722, 4.7292640000000574], [4.741264000000001, 4.753264000000172], [4.7652640000001156, 4.7772640000000592], [4.7892640000000029, 4.8012640000001738], [4.8132640000001174, 4.8252640000000611], [4.8372640000000047, 4.8492630000000645], [4.8612640000001193, 4.8732640000000629], [4.8852640000000065, 4.9292640000001029], [4.9412630000001627, 4.9532639999999901], [4.9652640000001611, 4.9772640000001047], [4.9892640000000483, 5.0012639999999919], [5.0132640000001629, 5.0252729999999701], [5.0372640000000501, 5.0492639999999938], [5.0612640000001647, 5.0732640000001084], [5.085264000000052, 5.1292640000001484], [5.141264000000092, 5.1532630000001518], [5.1652639999999792, 5.177263000000039], [5.1892640000000938, 5.2012650000001486], [5.213263999999981, 5.225264000000152], [5.2372640000000956, 5.2492640000000392], [5.2612639999999828, 5.2732640000001538], [5.2852649999999812, 5.3292639999999665], [5.3412640000001375, 5.3532640000000811], [5.3652640000000247, 5.3772639999999683], [5.3892640000001393, 5.4012640000000829], [5.4132640000000265, 6.0692710000000716], [6.0694430000000921, 6.0725260000001526], [6.072591999999986, 6.0747479999999996], [6.0748000000000957, 6.3532690000001821], [6.3532780000000457, 7.957300000000032], [7.9573230000000876, 8.8852699999999913], [8.8852860000001783, 8.9092689999999948], [8.9092820000000756, 8.9492680000000746], [8.9492860000000292, 10.353271000000177], [10.353280000000041, 10.555494000000181]], \"5\": [[0.41628600000012739, 0.41630699999996068], [0.41631600000005164, 0.41635400000018308], [0.41640700000016295, 0.41643199999998615], [0.41643900000008216, 0.41646100000002662]]}, \"khugepaged-407\": {\"4\": [[0.41646300000002157, 0.41652799999997114], [10.421363000000156, 10.421424999999999]]}, \"task1-2390\": {\"3\": [[0.41634100000010221, 0.41641800000002149], [0.41645900000003166, 0.4165130000001227]], \"4\": [[0.41729499999996733, 0.94927400000005946], [0.94932600000015555, 1.9412690000001476], [1.9412830000001122, 2.381268000000091], [2.3812780000000657, 2.965268000000151], [2.9652840000001106, 3.9572680000001128], [3.9572880000000623, 4.9492680000000746], [4.9492880000000241, 5.9412690000001476], [5.9412890000000971, 6.3812669999999798], [6.381275000000187, 6.965270000000146], [6.9653050000001713, 7.9572700000001078], [7.9573060000000169, 8.9492680000000746], [8.9492820000000393, 9.8138420000000224]], \"5\": [[0.41643199999998615, 0.41643900000008216]]}, \"kworker/1:1-1006\": {\"1\": [[0.94930300000009993, 0.94931900000005953], [1.9732630000000881, 1.9732740000001741], [4.9492820000000393, 4.9492950000001201], [6.6774120000000039, 6.6774290000000747]]}, \"kworker/5:1H-1251\": {\"5\": [[10.561669000000165, 10.561682000000019]]}, \"watchdog/3-27\": {\"3\": [[2.3532690000001821, 2.3532790000001569], [6.3532690000001821, 6.3532780000000457], [10.353271000000177, 10.353280000000041]]}, \"kworker/5:1-1007\": {\"5\": [[0.94931900000005953, 0.94934499999999389], [1.9412710000001425, 1.9412899999999809], [6.9652869999999893, 6.965310000000045], [7.9252700000001823, 7.9252890000000207], [10.421524999999974, 10.421547000000146]]}, \"sh-2396\": {\"2\": [[11.044340000000147, 11.048757000000023]]}, \"sh-2395\": {\"2\": [[11.031149000000141, 11.031508000000031]], \"4\": [[11.031598000000031, 11.040533000000096]]}, \"watchdog/1-15\": {\"1\": [[2.2973560000000361, 2.2973770000000968], [6.2973540000000412, 6.297360000000026], [10.297379000000092, 10.297388000000183]]}, \"usb-storage-1169\": {\"1\": [[6.0695180000000164, 6.0695440000001781], [6.0697440000001279, 6.0697840000000269], [6.071480000000065, 6.0714940000000297], [6.0724680000000717, 6.0724780000000464], [6.0726520000000619, 6.0726700000000164], [6.0729670000000624, 6.0729860000001281], [6.0738440000000082, 6.0738559999999779], [6.0747149999999692, 6.0747250000001713]], \"3\": [[10.556921999999986, 10.556940000000168], [10.557755000000043, 10.557774000000109]], \"4\": [[10.557890000000043, 10.557907000000114], [10.558032000000139, 10.558062000000064], [10.558536000000004, 10.558549000000085], [10.559281000000055, 10.559296000000131]], \"5\": [[10.556280000000015, 10.556309000000056], [10.556499000000031, 10.556536000000051], [10.559394999999995, 10.559411000000182], [10.55953199999999, 10.559597000000167], [10.560677000000169, 10.560691000000133], [10.56159700000012, 10.561613999999963]]}, \"rpcbind-1391\": {\"1\": [[3.9037769999999909, 3.9038319999999658]]}, \"kworker/2:1-1008\": {\"2\": [[0.98126500000012129, 0.98127999999996973], [1.9772620000001098, 1.9772740000000795], [3.9572829999999612, 3.9572970000001533], [4.9812640000000101, 4.981275000000096], [5.9412830000001122, 5.9412970000000769], [7.2533950000001823, 7.2534150000001318], [9.0534139999999752, 9.0534320000001571], [10.325395000000071, 10.325424999999996]]}, \"kworker/0:1-562\": {\"0\": [[1.0133550000000469, 1.0133760000001075], [7.9573310000000674, 7.9573629999999866], [9.0133680000001277, 9.0133869999999661]]}, \"rt-app-2389\": {\"2\": [[0.41621900000018286, 0.41627100000005157]]}, \"task2-2391\": {\"3\": [[0.41641800000002149, 0.41644900000005691]], \"5\": [[0.41647899999998117, 0.41649200000006203], [0.41657200000008743, 0.41659800000002178], [0.41681600000015351, 0.41690700000003744], [0.41711900000018431, 0.41713000000004286], [0.4172040000000834, 0.41722100000015416], [0.42942100000004757, 0.42943200000013348], [0.42950500000006286, 0.42954499999996187], [0.42961500000001251, 0.94931900000005953], [0.94934499999999389, 1.9412710000001425], [1.9412899999999809, 2.4092720000001009], [2.4092820000000756, 5.416639000000032], [5.4167320000001382, 5.5693530000000919], [5.5694410000000971, 6.4092709999999897], [6.4092789999999695, 6.6699730000000272], [6.6700640000001385, 6.9652869999999893], [6.965310000000045, 7.9252700000001823], [7.9252890000000207, 9.8138350000001537], [9.8139260000000377, 9.828171999999995]]}, \"kworker/u12:2-2112\": {\"0\": [[0.0019039999999677093, 0.0019340000001193403], [0.15656300000000556, 0.15658500000017739], [0.15678300000013223, 0.15680199999997058], [0.2066820000000007, 0.20670100000006641], [0.20690100000001621, 0.20692000000008193], [0.20709499999998116, 0.20711600000004182], [0.36203700000010031, 0.36205800000016097], [0.36225699999999961, 0.36228200000005018], [0.36230500000010579, 0.36232200000017656], [0.36234300000000985, 0.3623529999999846], [0.36236400000007052, 0.36237300000016148], [0.36238500000013119, 0.36239399999999478], [0.36241400000017165, 0.3624290000000201], [0.36259500000005573, 0.36262600000009115], [0.3628360000000157, 0.36284999999998035], [0.3633310000000165, 0.3633429999999862], [0.36360800000011295, 0.36361899999997149], [0.42941300000006777, 0.42944499999998698], [0.42953000000011343, 0.42955600000004779], [0.43727499999999964, 0.43731600000000981], [5.4166199999999662, 5.4166549999999916], [5.5573500000000422, 5.5573730000000978], [5.5693340000000262, 5.5693690000000515], [6.6699530000000777, 6.6699869999999919], [9.813816000000088, 9.8138490000001184], [9.8281860000001871, 9.8282050000000254], [10.555501000000049, 10.555520999999999], [10.557080000000042, 10.557099999999991], [10.677487000000156, 10.677539000000024], [10.773329000000103, 10.773368000000119], [10.773571000000175, 10.773595999999998], [10.773793000000069, 10.773801000000049], [10.823718999999983, 10.823754000000008], [10.824082999999973, 10.8241230000001], [10.824317000000065, 10.824339000000009], [10.82451100000003, 10.824530999999979], [10.979621000000179, 10.979643000000124], [10.979835999999978, 10.979856000000154], [10.979867000000013, 10.979876999999988], [10.979886999999962, 10.979896000000053], [10.979917999999998, 10.97993600000018], [10.980105000000094, 10.98012400000016], [10.980146999999988, 10.980156999999963], [10.980166000000054, 10.980176000000029], [10.980197999999973, 10.980211000000054], [10.980424999999968, 10.980442000000039], [10.980829000000085, 10.980844000000161], [11.209093000000166, 11.209119999999984], [11.25849200000016, 11.258526000000074], [11.258852000000161, 11.25889200000006], [11.259096, 11.259118000000171], [11.259363000000121, 11.259384000000182], [11.4150360000001, 11.415059000000156], [11.41525200000001, 11.415271000000075], [11.415282000000161, 11.415292000000136], [11.415302000000111, 11.415312000000085], [11.415324000000055, 11.41533400000003], [11.415346, 11.415355000000091], [11.41536700000006, 11.415376000000151], [11.415396999999984, 11.41541600000005], [11.41558299999997, 11.415603000000146], [11.415852000000086, 11.415865000000167], [11.416037000000188, 11.416050000000041], [11.416073000000097, 11.416083000000071], [11.416093000000046, 11.416102000000137], [11.416128000000072, 11.416138000000046], [11.416148000000021, 11.416157000000112], [11.416177000000062, 11.416186000000152], [11.416206000000102, 11.416216000000077], [11.416225000000168, 11.416235000000142], [11.416255000000092, 11.416261999999961], [11.416292999999996, 11.416312000000062], [11.416333000000122, 11.416341999999986], [11.416351999999961, 11.416362000000163], [11.416658000000098, 11.416677000000163], [11.416689000000133, 11.416697999999997], [11.416716000000179, 11.416726000000153], [11.416748000000098, 11.416758000000073], [11.416778000000022, 11.416787999999997], [11.416808000000174, 11.416817000000037], [11.416836999999987, 11.416846999999962], [11.416866000000027, 11.416876000000002], [11.416896000000179, 11.416905000000042], [11.416924999999992, 11.416934000000083], [11.416954000000032, 11.416964000000007], [11.416983000000073, 11.416993000000048], [11.417012999999997, 11.417022000000088], [11.417042000000038, 11.417052000000012], [11.417071000000078, 11.417081000000053], [11.417101000000002, 11.417118000000073], [11.417129000000159, 11.417138000000023], [11.417417999999998, 11.417478000000074], [11.465458000000126, 11.46549200000004], [11.465821000000005, 11.465860000000021], [11.481862999999976, 11.481895000000122], [11.635522000000037, 11.635545999999977], [11.635743000000048, 11.635764999999992], [11.635788000000048, 11.635805000000119], [11.635968000000048, 11.635982000000013], [11.635993000000099, 11.636004000000185], [11.636017000000038, 11.636026000000129], [11.636038000000099, 11.636046999999962], [11.636068000000023, 11.636077999999998], [11.636087999999972, 11.636097000000063], [11.636117000000013, 11.636138000000074], [11.636158000000023, 11.636167000000114], [11.636177999999973, 11.636187000000064], [11.636207000000013, 11.636212999999998], [11.636224999999968, 11.636251000000129], [11.636488000000099, 11.636496000000079], [11.636507000000165, 11.636518000000024], [11.636539000000084, 11.636549000000059], [11.636559000000034, 11.636568000000125], [11.636588000000074, 11.636598000000049], [11.636610000000019, 11.636619999999994], [11.63664000000017, 11.636649000000034], [11.636661000000004, 11.636670000000095], [11.63683600000013, 11.636856999999964], [11.685589000000164, 11.685609000000113], [11.685810000000174, 11.685828000000129]], \"3\": [[0.41712200000006305, 0.41713500000014392]], \"5\": [[0.41758000000004358, 0.41760100000010425], [0.42552100000011706, 0.42554200000017772], [0.42929700000013327, 0.42931500000008782]]}, \"rt-app-2388\": {\"4\": [[0.41637900000000627, 0.41646300000002157], [0.41652799999997114, 0.41655600000012782], [0.41678999999999178, 0.41687600000000202], [0.41688900000008289, 0.41696900000010828], [10.555547000000161, 10.556614000000081], [10.556629000000157, 10.556649000000107]]}, \"kworker/3:1H-1260\": {\"3\": [[6.0725780000000213, 6.072591999999986], [6.0747900000001209, 6.0748000000000957]]}, \"shutils-2397\": {\"1\": [[11.050636000000168, 11.051710000000185]], \"3\": [[11.048754000000145, 11.050512000000026]]}, \"shutils-2396\": {\"2\": [[11.051501000000144, 11.051527000000078], [11.051536000000169, 11.051542000000154], [11.051562999999987, 11.051568000000088], [11.051695000000109, 11.0526440000001]]}, \"jbd2/sda2-8-1197\": {\"3\": [[6.0692710000000716, 6.0694430000000921], [6.0725260000001526, 6.0725780000000213], [6.0747479999999996, 6.0747900000001209]]}, \"sudo-2385\": {\"1\": [[0.00067699999999604188, 0.0013930000000073051]]}, \"sudo-2401\": {\"1\": [[11.695472000000109, 11.695826000000125]], \"3\": [[11.695911000000024, 11.699100000000044]]}, \"sudo-2400\": {\"4\": [[11.69659200000001, 11.69662100000005]]}, \"sshd-2064\": {\"3\": [[0.0020130000000335713, 0.0021970000000237633], [0.15639800000008108, 0.15650700000014695], [0.15688999999997577, 0.15698100000008708], [0.20652600000016719, 0.20662400000014713], [0.20698700000002646, 0.20703900000012254], [0.20721500000013293, 0.20730900000012298], [0.36188000000015563, 0.36198000000013053], [0.36234300000000985, 0.36247800000001007], [0.36273500000015702, 0.36288300000001072], [0.36309600000004139, 0.36314800000013747], [0.36334899999997106, 0.3634020000001783], [0.36381700000015371, 0.36398200000007819], [0.41215699999997923, 0.41235600000004524], [0.41283599999997023, 0.41302400000017769]], \"5\": [[0.41548899999997957, 0.41559600000005048], [0.41635400000018308, 0.41640700000016295], [0.41649200000006203, 0.41657200000008743], [0.41693099999997685, 0.41701499999999214], [0.41713000000004286, 0.4172040000000834], [0.41760100000010425, 0.41768999999999323], [0.42554200000017772, 0.42564200000015262], [0.42931500000008782, 0.42941100000007282], [0.42943200000013348, 0.42950500000006286], [0.42954499999996187, 0.42961500000001251], [5.416639000000032, 5.4167320000001382], [5.5693530000000919, 5.5694410000000971], [6.6699730000000272, 6.6700640000001385], [9.8138350000001537, 9.8139260000000377], [9.8282030000000304, 9.8282890000000407], [10.555586000000176, 10.555679000000055], [10.557097000000113, 10.557195999999976], [10.773065000000088, 10.773350000000164], [10.77366300000017, 10.773722000000134], [10.773734999999988, 10.773858000000018], [10.823452999999972, 10.823679000000084], [10.82420100000013, 10.824316000000181], [10.824344999999994, 10.824448000000075], [10.824693000000025, 10.824776000000156], [10.979452000000038, 10.979563000000098], [10.979919999999993, 10.979972000000089], [10.980209000000059, 10.98027900000011], [10.980535000000145, 10.98059000000012], [10.980850000000146, 10.98090400000001], [10.981194000000187, 10.981247000000167], [10.98132499999997, 10.98140699999999], [10.981625000000122, 10.981701000000157], [11.029793000000154, 11.03001600000016], [11.03052700000012, 11.030721999999969], [11.054499999999962, 11.054682000000184], [11.208188000000064, 11.208410000000185], [11.209093000000166, 11.209355000000187], [11.258227000000034, 11.258448000000044], [11.25897000000009, 11.25908400000003], [11.25925600000005, 11.25936200000001], [11.259389000000056, 11.259465999999975], [11.414867000000186, 11.414978000000019], [11.415335000000141, 11.415472000000136], [11.415689000000157, 11.415775000000167], [11.415789000000132, 11.415897000000086], [11.416139000000157, 11.416288000000122], [11.416504000000032, 11.416557000000012], [11.416744000000108, 11.417106000000103], [11.417119000000184, 11.417194000000109], [11.417670000000044, 11.417875000000095], [11.465142000000014, 11.465417000000116], [11.465938000000051, 11.466132000000016], [11.481963000000178, 11.482146000000057], [11.635349000000133, 11.635464000000184], [11.635836000000154, 11.63623500000017], [11.636249000000134, 11.636294000000134], [11.636594000000059, 11.636711000000105], [11.63694600000008, 11.637022000000115], [11.685433999999987, 11.685531999999967], [11.685893000000078, 11.685985000000073]]}}});\n",
" }); /* TRAPPY_PUBLISH_REMOVE_LINE */\n",
" </script>\n",
" </div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# Check tasks was not running on ISOLATED CPUs\n",
"trappy.plotter.plot_trace(trace)"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{\n",
" \"2389\": {\n",
" \"residency\": 0.0, \n",
" \"task_name\": \"rt-app\"\n",
" }, \n",
" \"2390\": {\n",
" \"residency\": 0.0, \n",
" \"task_name\": \"rt-app\"\n",
" }, \n",
" \"2391\": {\n",
" \"residency\": 0.0, \n",
" \"task_name\": \"rt-app\"\n",
" }, \n",
" \"2392\": {\n",
" \"residency\": 0.0, \n",
" \"task_name\": \"rt-app\"\n",
" }, \n",
" \"2393\": {\n",
" \"residency\": 0.0, \n",
" \"task_name\": \"rt-app\"\n",
" }, \n",
" \"2394\": {\n",
" \"residency\": 0.0, \n",
" \"task_name\": \"rt-app\"\n",
" }\n",
"}\n"
]
}
],
"source": [
"# Compute and visualize tasks residencies on ISOLATED CPUs\n",
"s = SchedMultiAssert(trappy.FTrace(trace), te.topology, execnames=tasks.keys())\n",
"residencies = s.getResidency('cpu', [0], percent=True)\n",
"print json.dumps(residencies, indent=4)"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"True"
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Assert that ISOLATED CPUs was not running workload tasks\n",
"s.assertResidency('cpu', [0], 0.0, operator.eq, percent=True, rank=len(residencies))"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.12"
},
"toc": {
"toc_cell": false,
"toc_number_sections": true,
"toc_threshold": 6,
"toc_window_display": false
}
},
"nbformat": 4,
"nbformat_minor": 0
}