examples: restructure devlib-cgoup notebook

Rename cgroup.ipynb to cgroup_example.ipynb.
Add details on cgroups and the available API in devlib.

Signed-off-by: Ionela Voinescu <ionela.voinescu@arm.com>
diff --git a/ipynb/examples/devlib/cgroups.ipynb b/ipynb/examples/devlib/cgroups.ipynb
deleted file mode 100644
index 344552e..0000000
--- a/ipynb/examples/devlib/cgroups.ipynb
+++ /dev/null
@@ -1,1267 +0,0 @@
-{
- "cells": [
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "metadata": {
-    "collapsed": false
-   },
-   "outputs": [],
-   "source": [
-    "import logging\n",
-    "from conf import LisaLogging\n",
-    "LisaLogging.setup()"
-   ]
-  },
-  {
-   "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.9"
-  },
-  "toc": {
-   "toc_cell": false,
-   "toc_number_sections": true,
-   "toc_threshold": 6,
-   "toc_window_display": false
-  }
- },
- "nbformat": 4,
- "nbformat_minor": 0
-}
diff --git a/ipynb/examples/devlib/cgroups_example.ipynb b/ipynb/examples/devlib/cgroups_example.ipynb
new file mode 100644
index 0000000..1e1dbb4
--- /dev/null
+++ b/ipynb/examples/devlib/cgroups_example.ipynb
@@ -0,0 +1,1320 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Cgroups\n",
+    "\n",
+    "**cgroups** (abbreviated from control groups) is a Linux kernel feature that limits, accounts for, and isolates the resource usage (CPU, memory, disk I/O, network, etc.) of a collection of processes.\n",
+    "\n",
+    "A control group is a collection of processes that are bound by the same criteria and associated with a set of parameters or limits. These groups can be hierarchical, meaning that each group inherits limits from its parent group. The kernel provides access to multiple controllers (also called subsystems) through the cgroup interface, for example, the \"memory\" controller limits memory use, \"cpuacct\" accounts CPU usage, etc."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 1,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "2016-12-08 11:42:27,154 INFO    : root         : Using LISA logging configuration:\n",
+      "2016-12-08 11:42:27,155 INFO    : root         :   /home/vagrant/lisa/logging.conf\n"
+     ]
+    }
+   ],
+   "source": [
+    "import logging\n",
+    "from conf import LisaLogging\n",
+    "LisaLogging.setup()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [],
+   "source": [
+    "import os\n",
+    "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 Configuration\n",
+    "The target configuration is used to describe and configure your test environment.\n",
+    "You can find more details in **examples/utils/testenv_example.ipynb**."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 3,
+   "metadata": {
+    "collapsed": false,
+    "scrolled": false
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "2016-12-08 11:42:29,845 INFO    : TestEnv      : Using base path: /home/vagrant/lisa\n",
+      "2016-12-08 11:42:29,845 INFO    : TestEnv      : Loading custom (inline) target configuration\n",
+      "2016-12-08 11:42:29,845 INFO    : TestEnv      : External tools using:\n",
+      "2016-12-08 11:42:29,846 INFO    : TestEnv      :    ANDROID_HOME: /home/vagrant/lisa/tools/android-sdk-linux/\n",
+      "2016-12-08 11:42:29,846 INFO    : TestEnv      :    CATAPULT_HOME: /home/vagrant/lisa/tools/catapult\n",
+      "2016-12-08 11:42:29,847 INFO    : TestEnv      : Loading board:\n",
+      "2016-12-08 11:42:29,847 INFO    : TestEnv      :    /home/vagrant/lisa/libs/utils/platforms/pixel.json\n",
+      "2016-12-08 11:42:29,848 INFO    : TestEnv      : Devlib modules to load: [u'bl', u'cpufreq', 'cgroups']\n",
+      "2016-12-08 11:42:29,848 INFO    : TestEnv      : Connecting Android target [HT6670300102]\n",
+      "2016-12-08 11:42:29,848 INFO    : TestEnv      : Connection settings:\n",
+      "2016-12-08 11:42:29,849 INFO    : TestEnv      :    {'device': 'HT6670300102'}\n",
+      "2016-12-08 11:42:30,008 INFO    : android      : ls command is set to ls -1\n",
+      "2016-12-08 11:42:31,253 INFO    : TestEnv      : Initializing target workdir:\n",
+      "2016-12-08 11:42:31,256 INFO    : TestEnv      :    /data/local/tmp/devlib-target\n",
+      "2016-12-08 11:42:38,346 INFO    : CGroups      : Available controllers:\n",
+      "2016-12-08 11:42:39,117 INFO    : CGroups      :   cpuset       : /data/local/tmp/devlib-target/cgroups/devlib_cgh4\n",
+      "2016-12-08 11:42:39,840 INFO    : CGroups      :   cpu          : /data/local/tmp/devlib-target/cgroups/devlib_cgh3\n",
+      "2016-12-08 11:42:40,638 INFO    : CGroups      :   cpuacct      : /data/local/tmp/devlib-target/cgroups/devlib_cgh1\n",
+      "2016-12-08 11:42:41,416 INFO    : CGroups      :   schedtune    : /data/local/tmp/devlib-target/cgroups/devlib_cgh2\n",
+      "2016-12-08 11:42:42,169 INFO    : CGroups      :   freezer      : /data/local/tmp/devlib-target/cgroups/devlib_cgh0\n",
+      "2016-12-08 11:42:42,287 INFO    : TestEnv      : Topology:\n",
+      "2016-12-08 11:42:42,288 INFO    : TestEnv      :    [[0, 1], [2, 3]]\n",
+      "2016-12-08 11:42:42,691 INFO    : TestEnv      : Loading default EM:\n",
+      "2016-12-08 11:42:42,693 INFO    : TestEnv      :    /home/vagrant/lisa/libs/utils/platforms/pixel.json\n",
+      "2016-12-08 11:42:44,021 INFO    : TestEnv      : Enabled tracepoints:\n",
+      "2016-12-08 11:42:44,022 INFO    : TestEnv      :    sched_switch\n",
+      "2016-12-08 11:42:44,022 INFO    : TestEnv      : Calibrating RTApp...\n",
+      "2016-12-08 11:42:44,259 INFO    : RTApp        : CPU0 calibration...\n",
+      "2016-12-08 11:42:44,328 INFO    : Workload     : Setup new workload rta_calib\n",
+      "2016-12-08 11:42:44,329 INFO    : Workload     : Workload duration defined by longest task\n",
+      "2016-12-08 11:42:44,330 INFO    : Workload     : Default policy: SCHED_OTHER\n",
+      "2016-12-08 11:42:44,330 INFO    : Workload     : ------------------------\n",
+      "2016-12-08 11:42:44,331 INFO    : Workload     : task [task1], sched: {'policy': 'FIFO', 'prio': 0}\n",
+      "2016-12-08 11:42:44,331 INFO    : Workload     :  | calibration CPU: 0\n",
+      "2016-12-08 11:42:44,332 INFO    : Workload     :  | loops count: 1\n",
+      "2016-12-08 11:42:44,334 INFO    : Workload     : + phase_000001: duration 1.000000 [s] (10 loops)\n",
+      "2016-12-08 11:42:44,335 INFO    : Workload     : |  period   100000 [us], duty_cycle  50 %\n",
+      "2016-12-08 11:42:44,335 INFO    : Workload     : |  run_time  50000 [us], sleep_time  50000 [us]\n",
+      "2016-12-08 11:42:44,466 INFO    : Workload     : Workload execution START:\n",
+      "2016-12-08 11:42:44,467 INFO    : Workload     :    /data/local/tmp/bin/taskset 0x1 /data/local/tmp/bin/rt-app /data/local/tmp/devlib-target/rta_calib_00.json 2>&1\n",
+      "2016-12-08 11:42:46,114 INFO    : RTApp        : CPU1 calibration...\n",
+      "2016-12-08 11:42:46,183 INFO    : Workload     : Setup new workload rta_calib\n",
+      "2016-12-08 11:42:46,183 INFO    : Workload     : Workload duration defined by longest task\n",
+      "2016-12-08 11:42:46,184 INFO    : Workload     : Default policy: SCHED_OTHER\n",
+      "2016-12-08 11:42:46,184 INFO    : Workload     : ------------------------\n",
+      "2016-12-08 11:42:46,185 INFO    : Workload     : task [task1], sched: {'policy': 'FIFO', 'prio': 0}\n",
+      "2016-12-08 11:42:46,185 INFO    : Workload     :  | calibration CPU: 1\n",
+      "2016-12-08 11:42:46,185 INFO    : Workload     :  | loops count: 1\n",
+      "2016-12-08 11:42:46,186 INFO    : Workload     : + phase_000001: duration 1.000000 [s] (10 loops)\n",
+      "2016-12-08 11:42:46,186 INFO    : Workload     : |  period   100000 [us], duty_cycle  50 %\n",
+      "2016-12-08 11:42:46,186 INFO    : Workload     : |  run_time  50000 [us], sleep_time  50000 [us]\n",
+      "2016-12-08 11:42:46,320 INFO    : Workload     : Workload execution START:\n",
+      "2016-12-08 11:42:46,322 INFO    : Workload     :    /data/local/tmp/bin/taskset 0x2 /data/local/tmp/bin/rt-app /data/local/tmp/devlib-target/rta_calib_00.json 2>&1\n",
+      "2016-12-08 11:42:48,012 INFO    : RTApp        : CPU2 calibration...\n",
+      "2016-12-08 11:42:48,084 INFO    : Workload     : Setup new workload rta_calib\n",
+      "2016-12-08 11:42:48,085 INFO    : Workload     : Workload duration defined by longest task\n",
+      "2016-12-08 11:42:48,086 INFO    : Workload     : Default policy: SCHED_OTHER\n",
+      "2016-12-08 11:42:48,086 INFO    : Workload     : ------------------------\n",
+      "2016-12-08 11:42:48,087 INFO    : Workload     : task [task1], sched: {'policy': 'FIFO', 'prio': 0}\n",
+      "2016-12-08 11:42:48,087 INFO    : Workload     :  | calibration CPU: 2\n",
+      "2016-12-08 11:42:48,087 INFO    : Workload     :  | loops count: 1\n",
+      "2016-12-08 11:42:48,088 INFO    : Workload     : + phase_000001: duration 1.000000 [s] (10 loops)\n",
+      "2016-12-08 11:42:48,088 INFO    : Workload     : |  period   100000 [us], duty_cycle  50 %\n",
+      "2016-12-08 11:42:48,088 INFO    : Workload     : |  run_time  50000 [us], sleep_time  50000 [us]\n",
+      "2016-12-08 11:42:48,220 INFO    : Workload     : Workload execution START:\n",
+      "2016-12-08 11:42:48,221 INFO    : Workload     :    /data/local/tmp/bin/taskset 0x4 /data/local/tmp/bin/rt-app /data/local/tmp/devlib-target/rta_calib_00.json 2>&1\n",
+      "2016-12-08 11:42:49,900 INFO    : RTApp        : CPU3 calibration...\n",
+      "2016-12-08 11:42:49,968 INFO    : Workload     : Setup new workload rta_calib\n",
+      "2016-12-08 11:42:49,969 INFO    : Workload     : Workload duration defined by longest task\n",
+      "2016-12-08 11:42:49,969 INFO    : Workload     : Default policy: SCHED_OTHER\n",
+      "2016-12-08 11:42:49,969 INFO    : Workload     : ------------------------\n",
+      "2016-12-08 11:42:49,970 INFO    : Workload     : task [task1], sched: {'policy': 'FIFO', 'prio': 0}\n",
+      "2016-12-08 11:42:49,970 INFO    : Workload     :  | calibration CPU: 3\n",
+      "2016-12-08 11:42:49,970 INFO    : Workload     :  | loops count: 1\n",
+      "2016-12-08 11:42:49,971 INFO    : Workload     : + phase_000001: duration 1.000000 [s] (10 loops)\n",
+      "2016-12-08 11:42:49,971 INFO    : Workload     : |  period   100000 [us], duty_cycle  50 %\n",
+      "2016-12-08 11:42:49,971 INFO    : Workload     : |  run_time  50000 [us], sleep_time  50000 [us]\n",
+      "2016-12-08 11:42:50,103 INFO    : Workload     : Workload execution START:\n",
+      "2016-12-08 11:42:50,104 INFO    : Workload     :    /data/local/tmp/bin/taskset 0x8 /data/local/tmp/bin/rt-app /data/local/tmp/devlib-target/rta_calib_00.json 2>&1\n",
+      "2016-12-08 11:42:51,757 INFO    : RTApp        : Target RT-App calibration:\n",
+      "2016-12-08 11:42:51,759 INFO    : RTApp        : {\"0\": 106, \"1\": 104, \"2\": 78, \"3\": 78}\n",
+      "2016-12-08 11:42:51,882 INFO    : RTApp        : big cores are ~36% more capable than LITTLE cores\n",
+      "2016-12-08 11:42:51,884 INFO    : TestEnv      : Using RT-App calibration values:\n",
+      "2016-12-08 11:42:51,886 INFO    : TestEnv      :    {\"0\": 106, \"1\": 104, \"2\": 78, \"3\": 78}\n",
+      "2016-12-08 11:42:51,888 INFO    : TestEnv      : Set results folder to:\n",
+      "2016-12-08 11:42:51,889 INFO    : TestEnv      :    /home/vagrant/lisa/results/20161208_114251\n",
+      "2016-12-08 11:42:51,891 INFO    : TestEnv      : Experiment results available also in:\n",
+      "2016-12-08 11:42:51,893 INFO    : TestEnv      :    /home/vagrant/lisa/results_latest\n",
+      "2016-12-08 11:42:51,895 INFO    : root         : Connected to arm64 target\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "DONE\n"
+     ]
+    }
+   ],
+   "source": [
+    "from env import TestEnv\n",
+    "\n",
+    "my_conf = {\n",
+    "\n",
+    "    # Android Pixel\n",
+    "    \"platform\"     : \"android\",\n",
+    "    \"board\"        : \"pixel\",\n",
+    "    \n",
+    "    \"device\"       : \"HT6670300102\",\n",
+    "    \"ANDROID_HOME\" : \"/home/vagrant/lisa/tools/android-sdk-linux/\",\n",
+    "    \n",
+    "    \"exclude_modules\" : [ \"hwmon\" ],\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\n",
+    "\n",
+    "Details on the available controllers (or subsystems) can be found at: https://www.kernel.org/doc/Documentation/cgroup-v1/."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "metadata": {
+    "collapsed": false,
+    "scrolled": true
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "2016-12-08 11:42:55,652 INFO    : root         :         CGroup - Available controllers:\n",
+      "2016-12-08 11:42:55,715 INFO    : root         :         CGroup -        cpuset (hierarchy id: 4) has 7 cgroups\n",
+      "2016-12-08 11:42:55,717 INFO    : root         :         CGroup -           cpu (hierarchy id: 3) has 2 cgroups\n",
+      "2016-12-08 11:42:55,718 INFO    : root         :         CGroup -       cpuacct (hierarchy id: 1) has 87 cgroups\n",
+      "2016-12-08 11:42:55,718 INFO    : root         :         CGroup -     schedtune (hierarchy id: 2) has 4 cgroups\n",
+      "2016-12-08 11:42:55,719 INFO    : root         :         CGroup -       freezer (hierarchy id: 5) 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\n",
+    "\n",
+    "Cpusets provide a mechanism for assigning a set of CPUs and memory nodes to a set of tasks. Cpusets constrain the CPU and memory placement of tasks to only the resources available within a task's current cpuset.  They form a nested hierarchy visible in a virtual file system.  These are the essential hooks, beyond what is already present, required to manage dynamic job placement on large systems.\n",
+    "\n",
+    "More information can be found in the kernel documentation: https://www.kernel.org/doc/Documentation/cgroup-v1/cpusets.txt."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [],
+   "source": [
+    "# Get a reference to the CPUSet controller\n",
+    "cpuset = target.cgroups.controller('cpuset')"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "2016-12-08 11:42:58,914 INFO    : root         : Existing CGropups:\n",
+      "2016-12-08 11:42:58,915 INFO    : root         :   /\n",
+      "2016-12-08 11:42:58,916 INFO    : root         :   /system-background\n",
+      "2016-12-08 11:42:58,917 INFO    : root         :   /background\n",
+      "2016-12-08 11:42:58,918 INFO    : root         :   /foreground\n",
+      "2016-12-08 11:42:58,918 INFO    : root         :   /foreground/boost\n",
+      "2016-12-08 11:42:58,920 INFO    : root         :   /top-app\n",
+      "2016-12-08 11:42:58,921 INFO    : root         :   /camera-daemon\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": 7,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "2016-12-08 11:43:01,858 INFO    : root         : cpuset:/               cpus: 0-3\n",
+      "2016-12-08 11:43:02,054 INFO    : root         : cpuset:/system-background cpus: 0-2\n",
+      "2016-12-08 11:43:02,255 INFO    : root         : cpuset:/background     cpus: 0\n",
+      "2016-12-08 11:43:02,450 INFO    : root         : cpuset:/foreground     cpus: 0-2\n",
+      "2016-12-08 11:43:02,649 INFO    : root         : cpuset:/foreground/boost cpus: 0-2\n",
+      "2016-12-08 11:43:02,855 INFO    : root         : cpuset:/top-app        cpus: 0-3\n",
+      "2016-12-08 11:43:03,053 INFO    : root         : cpuset:/camera-daemon  cpus: 0-3\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": 8,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [],
+   "source": [
+    "# Create a LITTLE partition\n",
+    "cpuset_littles = cpuset.cgroup('/LITTLE')"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 9,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "LITTLE:\n",
+      "{\n",
+      "    \"memory_pressure\": \"0\", \n",
+      "    \"memory_spread_page\": \"0\", \n",
+      "    \"notify_on_release\": \"0\", \n",
+      "    \"sched_load_balance\": \"1\", \n",
+      "    \"cpus\": \"\", \n",
+      "    \"effective_mems\": \"\", \n",
+      "    \"memory_spread_slab\": \"0\", \n",
+      "    \"mem_hardwall\": \"0\", \n",
+      "    \"cpu_exclusive\": \"0\", \n",
+      "    \"mem_exclusive\": \"0\", \n",
+      "    \"ls\": \" /data/local/tmp/devlib-target/cgroups/devlib_cgh4/LITTLE/cpuset.*\", \n",
+      "    \"mems\": \"\", \n",
+      "    \"memory_migrate\": \"0\", \n",
+      "    \"sched_relax_domain_level\": \"-1\", \n",
+      "    \"effective_cpus\": \"\"\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": 10,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "LITTLE:\n",
+      "{\n",
+      "    \"memory_pressure\": \"0\", \n",
+      "    \"memory_spread_page\": \"0\", \n",
+      "    \"notify_on_release\": \"0\", \n",
+      "    \"sched_load_balance\": \"1\", \n",
+      "    \"cpus\": \"0-1\", \n",
+      "    \"effective_mems\": \"0\", \n",
+      "    \"memory_spread_slab\": \"0\", \n",
+      "    \"mem_hardwall\": \"0\", \n",
+      "    \"cpu_exclusive\": \"0\", \n",
+      "    \"mem_exclusive\": \"0\", \n",
+      "    \"ls\": \" /data/local/tmp/devlib-target/cgroups/devlib_cgh4/LITTLE/cpuset.*\", \n",
+      "    \"mems\": \"0\", \n",
+      "    \"memory_migrate\": \"0\", \n",
+      "    \"sched_relax_domain_level\": \"-1\", \n",
+      "    \"effective_cpus\": \"0-1\"\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": 11,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "2016-12-08 11:43:10,335 INFO    : Workload     : Setup new workload simple\n",
+      "2016-12-08 11:43:10,337 INFO    : Workload     : Workload duration defined by longest task\n",
+      "2016-12-08 11:43:10,338 INFO    : Workload     : Default policy: SCHED_OTHER\n",
+      "2016-12-08 11:43:10,340 INFO    : Workload     : ------------------------\n",
+      "2016-12-08 11:43:10,341 INFO    : Workload     : task [task0], sched: using default policy\n",
+      "2016-12-08 11:43:10,342 INFO    : Workload     :  | calibration CPU: 2\n",
+      "2016-12-08 11:43:10,343 INFO    : Workload     :  | loops count: 1\n",
+      "2016-12-08 11:43:10,343 INFO    : Workload     : + phase_000001: duration 5.000000 [s] (50 loops)\n",
+      "2016-12-08 11:43:10,344 INFO    : Workload     : |  period   100000 [us], duty_cycle  80 %\n",
+      "2016-12-08 11:43:10,344 INFO    : Workload     : |  run_time  80000 [us], sleep_time  20000 [us]\n",
+      "2016-12-08 11:43:10,344 INFO    : Workload     : ------------------------\n",
+      "2016-12-08 11:43:10,345 INFO    : Workload     : task [task1], sched: using default policy\n",
+      "2016-12-08 11:43:10,345 INFO    : Workload     :  | calibration CPU: 2\n",
+      "2016-12-08 11:43:10,345 INFO    : Workload     :  | loops count: 1\n",
+      "2016-12-08 11:43:10,346 INFO    : Workload     : + phase_000001: duration 5.000000 [s] (50 loops)\n",
+      "2016-12-08 11:43:10,346 INFO    : Workload     : |  period   100000 [us], duty_cycle  80 %\n",
+      "2016-12-08 11:43:10,346 INFO    : Workload     : |  run_time  80000 [us], sleep_time  20000 [us]\n",
+      "2016-12-08 11:43:10,347 INFO    : Workload     : ------------------------\n",
+      "2016-12-08 11:43:10,347 INFO    : Workload     : task [task2], sched: using default policy\n",
+      "2016-12-08 11:43:10,348 INFO    : Workload     :  | calibration CPU: 2\n",
+      "2016-12-08 11:43:10,348 INFO    : Workload     :  | loops count: 1\n",
+      "2016-12-08 11:43:10,348 INFO    : Workload     : + phase_000001: duration 5.000000 [s] (50 loops)\n",
+      "2016-12-08 11:43:10,349 INFO    : Workload     : |  period   100000 [us], duty_cycle  80 %\n",
+      "2016-12-08 11:43:10,349 INFO    : Workload     : |  run_time  80000 [us], sleep_time  20000 [us]\n",
+      "2016-12-08 11:43:10,349 INFO    : Workload     : ------------------------\n",
+      "2016-12-08 11:43:10,350 INFO    : Workload     : task [task3], sched: using default policy\n",
+      "2016-12-08 11:43:10,350 INFO    : Workload     :  | calibration CPU: 2\n",
+      "2016-12-08 11:43:10,350 INFO    : Workload     :  | loops count: 1\n",
+      "2016-12-08 11:43:10,351 INFO    : Workload     : + phase_000001: duration 5.000000 [s] (50 loops)\n",
+      "2016-12-08 11:43:10,351 INFO    : Workload     : |  period   100000 [us], duty_cycle  80 %\n",
+      "2016-12-08 11:43:10,351 INFO    : Workload     : |  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": 12,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "2016-12-08 11:43:13,598 INFO    : Workload     : Workload execution START:\n",
+      "2016-12-08 11:43:13,601 INFO    : Workload     :    /data/local/tmp/bin/shutils cgroups_run_into /LITTLE /data/local/tmp/bin/rt-app /data/local/tmp/devlib-target/simple_00.json 2>&1\n",
+      "2016-12-08 11:43:25,156 INFO    : Workload     : Pulling trace file into [/home/vagrant/lisa/results/20161208_114251/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": 13,
+   "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_db38474ffea64b30b6c0181c5d7f378b\" 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_db38474ffea64b30b6c0181c5d7f378b', '/nbextensions/', {\"lanes\": [{\"id\": 0, \"label\": \"CPU :0\"}, {\"id\": 1, \"label\": \"CPU :1\"}, {\"id\": 2, \"label\": \"CPU :2\"}, {\"id\": 3, \"label\": \"CPU :3\"}], \"colorMap\": null, \"keys\": [\"task1-4660\", \"task2-4661\", \"task3-4662\", \"task0-4659\", \"sh-4672\", \"shutils-4656\", \"su-4644\", \"shutils-4654\", \"msm_irqbalance-564\", \"su-4666\", \"OkHttp Connecti-3994\", \"sh-4673\", \"sh-4644\", \"sh-4648\", \"sh-4651\", \"shutils-4655\", \"sh-4669\", \"shutils-4650\", \"su-4648\", \"shutils-4649\", \"su-4676\", \"system_server-1102\", \"sh-4663\", \"sh-4666\", \"sh-4676\", \"sh-4653\", \"sh-4675\", \"sh-4636\", \"shutils-4667\", \"sh-4641\", \"sh-4643\", \"adbd-4641\", \"OkHttp Connecti-4079\", \"shutils-4653\", \"sh-4645\", \"sh-4677\", \"busybox-4657\", \"shutils-4668\", \"sh-4671\", \"OkHttp Connecti-4089\", \"adbd-4645\", \"sh-4665\", \"adbd-4663\", \"sh-4639\", \"adbd-4651\", \"adbd-4669\", \"rt-app-4653\", \"Thread-11-2542\", \"NetdConnector-1403\", \"cnss_diag-628\", \"Binder:1102_8-2213\", \"kworker/3:0-21\", \"adbd-4121\", \"adbd-4673\", \"sh-4647\", \"sh-4649\", \"kworker/2:2-478\", \"Non-User-Facing-3195\", \"ActivityManager-1127\", \"android.fg-1163\", \"Thread-5-1501\", \"shutils-4657\", \"su-4672\", \"logd.klogd-429\", \"shutils-4658\", \"Binder:2076_4-2391\", \"shell srvc 4651-4652\", \"kworker/0:1-33\", \"ueventd-406\", \"VosMCThread-1457\", \"kworker/u8:4-247\", \"watchdog-1658\", \"shell srvc 4636-4637\", \"sh-4667\", \"kworker/u8:7-267\", \"thermal-engine-694\", \"shell srvc 4641-4642\", \"cnd-627\", \"kworker/u8:1-43\", \"shell srvc 4645-4646\", \"adbd-4674\", \"shell srvc 4669-4670\", \"jbd2/sda35-8-529\", \"kworker/0:3-472\", \"netd-1083\", \"irq/19-408000.q-572\", \"lmkd-565\", \"adbd-4642\", \"<-transport-4124\", \".gms.persistent-2076\", \"shell srvc 4663-4664\", \"busybox-4668\", \"busybox-4655\", \"wpa_supplicant-1502\", \"adbd-4652\", \"kworker/2:1-81\", \"rt-app-4659\", \"InputReader-1399\", \"cnss-daemon-629\", \"cnd-1118\", \"->transport-4123\", \"WifiMonitor-1511\", \"wlan_logging_th-1454\", \"busybox-4654\", \"adbd-4664\", \"healthd-559\", \"kworker/1:0-13\", \"adbd-4646\", \"POSIX timer 1-1781\", \"mpss_smd_trans_-29\", \"smem_native_rpm-41\", \"adbd-4670\", \"vold-540\", \"msm_watchdog-32\", \"rt-app-4660\", \"InputDispatcher-1398\", \"UEventObserver-1391\", \"kworker/1:4-507\", \"kworker/1:3-334\", \"HWC_UeventThrea-526\", \"ksoftirqd/0-3\", \"hwrng-160\", \"rt-app-4661\", \"kworker/1:1H-408\", \"ksoftirqd/1-12\", \"kworker/0:1H-402\", \"VosWDThread-1455\", \"kworker/u8:8-924\", \"rcu_preempt-7\", \"kworker/2:1H-405\", \"rcu_sched-8\", \"rt-app-4662\", \"ksoftirqd/2-16\", \"ksoftirqd/3-20\", \"kworker/3:1H-395\"], \"stride\": false, \"showSummary\": true, \"xDomain\": [0.0, 11.731742999999994], \"data\": {\"adbd-4670\": {\"1\": [[11.626300000000015, 11.626344000000017], [11.626357999999982, 11.626383999999973], [11.626397999999995, 11.626476000000025]]}, \"adbd-4673\": {\"0\": [[11.700844000000018, 11.701217999999983]], \"1\": [[11.701322000000005, 11.701599999999985], [11.701621999999986, 11.702433999999982]]}, \"kworker/0:1H-402\": {\"0\": [[0.28348699999997962, 0.28350399999999354], [0.28481900000002724, 0.2848409999999717], [0.28594700000002149, 0.28596800000002531], [2.0735080000000039, 2.0735220000000254], [5.5950030000000197, 5.5950290000000109], [5.5982549999999947, 5.5982650000000262]]}, \".gms.persistent-2076\": {\"2\": [[0.84001499999999396, 0.84021400000000313]]}, \"POSIX timer 1-1781\": {\"0\": [[3.6422519999999849, 3.6423070000000166], [4.1423159999999939, 4.1423419999999851], [4.6423649999999839, 4.6424180000000206], [5.1424260000000004, 5.1424539999999865], [5.6424719999999979, 5.642516999999998], [6.1425370000000044, 6.1425949999999716], [6.6426069999999982, 6.6426500000000033], [7.1426700000000096, 7.1427259999999819], [7.6427360000000135, 7.6427780000000212], [8.1427899999999909, 8.142832999999996], [8.6428399999999783, 8.6428629999999771], [9.1428920000000176, 9.1429519999999798], [9.6429719999999861, 9.6430280000000153], [10.143044999999972, 10.143097000000012], [10.643111999999974, 10.643159000000026], [11.143186000000014, 11.143233000000009]], \"1\": [[0.14181400000001076, 0.14185400000002346], [0.64187800000001971, 0.64193899999997939], [1.1419539999999984, 1.1420039999999858], [1.6420160000000124, 1.6420560000000251], [2.1420800000000213, 2.1421330000000012], [2.642138999999986, 2.6421720000000164], [3.1421849999999836, 3.1422210000000064], [11.643285999999989, 11.643332999999984]]}, \"->transport-4123\": {\"0\": [[0.0062040000000251894, 0.0063099999999849388], [0.0064510000000268519, 0.0064740000000256259], [0.049824000000000979, 0.049864000000013675], [0.052171999999984564, 0.052550999999994019], [0.1321219999999812, 0.13213799999999765], [0.13515699999999242, 0.13524599999999509], [0.13534299999997756, 0.13541099999997641], [0.27985999999998512, 0.28007000000002336], [0.30546299999997473, 0.30552499999998872], [0.30558500000000777, 0.30563899999998512], [0.30618700000002264, 0.30621000000002141], [0.30630400000001146, 0.30633799999998246], [11.470191, 11.470250000000021], [11.470286999999985, 11.470606999999973], [11.477247999999975, 11.477258000000006], [11.484832999999981, 11.484935000000007], [11.485010999999986, 11.485027000000002], [11.485096999999996, 11.485269000000017], [11.48552699999999, 11.485535000000027], [11.541889000000026, 11.541926999999987], [11.544358999999986, 11.544418000000007], [11.544482000000016, 11.544511], [11.544534999999996, 11.544557999999995], [11.580824000000007, 11.580939000000001], [11.580959000000007, 11.580982000000006], [11.581061999999974, 11.581126999999981], [11.581209999999999, 11.581247000000019], [11.581510999999978, 11.581616999999994], [11.581687999999986, 11.581758999999977], [11.581923000000018, 11.581934999999987], [11.625035000000025, 11.625055999999972], [11.626761999999985, 11.626836000000026], [11.626918999999987, 11.626976000000013], [11.654349000000025, 11.654444000000012], [11.654559000000006, 11.654683999999975], [11.655178999999976, 11.655195999999989]], \"1\": [[0.0047010000000113905, 0.004798999999991338], [0.005005999999980304, 0.0050420000000030996], [0.0050989999999728752, 0.0052820000000224354], [0.0055839999999989232, 0.0056710000000066429], [0.086944000000016786, 0.087077000000022053], [0.087196000000005824, 0.08725099999998065], [0.087695999999994001, 0.087710000000015498], [0.17715900000001739, 0.17723000000000866], [0.17733099999998103, 0.17736500000000888], [0.17741699999999128, 0.17749300000002677], [0.17753800000002684, 0.17756100000002562], [0.1778410000000008, 0.17784999999997808], [0.17789099999998825, 0.17792800000000852], [0.17796600000002627, 0.17799000000002252], [0.17802799999998342, 0.17803500000002259], [0.22928300000000945, 0.22930400000001327], [0.23104599999999209, 0.23112600000001748], [0.2314349999999763, 0.23165799999998171], [0.27305000000001201, 0.27314699999999448], [0.27328799999997955, 0.27331299999997327], [0.27342800000002399, 0.27350799999999253], [0.27409599999998591, 0.2741060000000175], [0.27920100000000048, 0.27930400000002464], [0.2796730000000025, 0.27971999999999753], [0.28096199999998817, 0.28097200000001976], [0.28732300000001487, 0.28742099999999482], [0.28756499999997231, 0.28759100000002036], [0.28763800000001538, 0.28771799999998393], [0.28844299999997247, 0.28849300000001676], [0.28859599999998409, 0.28863200000000688], [0.28868499999998676, 0.28874400000000833], [0.28929899999997133, 0.28934700000002067], [0.28944300000000567, 0.28946100000001707], [0.28954299999998057, 0.28959900000000971], [0.29887600000000702, 0.29893499999997175], [0.29914000000002261, 0.29916700000001129], [0.29926699999998618, 0.29930999999999131], [0.29962799999998424, 0.29963800000001584], [0.30531300000001238, 0.30537900000001628], [0.30610300000000734, 0.30614100000002509], [0.30663700000002336, 0.30664400000000569], [11.469967999999994, 11.470109999999977], [11.470877999999971, 11.470887000000005], [11.476444000000015, 11.476520999999991], [11.476591999999982, 11.476608999999996], [11.476662999999974, 11.476739000000009]], \"2\": [[11.49194399999999, 11.492043000000024], [11.492156000000023, 11.492178000000024], [11.492233999999996, 11.492321000000004], [11.492706999999996, 11.492717000000027], [11.494299000000012, 11.49434100000002], [11.494453000000021, 11.494484], [11.494526000000008, 11.494555999999989]], \"3\": [[11.494575999999995, 11.494627999999977], [11.494695999999976, 11.494718999999975], [11.495001000000002, 11.495007999999984], [11.495063000000016, 11.495092999999997], [11.495154000000014, 11.495182], [11.700941999999998, 11.700956000000019], [11.70289200000002, 11.702976999999976], [11.703077000000008, 11.703107999999986]]}, \"sh-4676\": {\"0\": [[11.714022999999997, 11.714953999999977]], \"1\": [[11.715079000000003, 11.715191000000004], [11.715199999999982, 11.715233000000012], [11.715239999999994, 11.715397999999993], [11.71547099999998, 11.715567000000021], [11.715595000000008, 11.716150000000027], [11.723073999999997, 11.723494000000017], [11.723502999999994, 11.728334000000018], [11.728427000000011, 11.730339000000015]]}, \"sh-4663\": {\"0\": [[11.544019999999989, 11.544039999999995], [11.544078000000013, 11.544244999999989], [11.54427800000002, 11.54428999999999], [11.544745999999975, 11.551585999999986], [11.551632999999981, 11.551718999999991]], \"1\": [[11.553352000000018, 11.553447000000006], [11.579069000000004, 11.580123000000015]]}, \"sh-4665\": {\"1\": [[11.551160999999979, 11.552305999999987]]}, \"sh-4667\": {\"1\": [[11.565875000000005, 11.565985000000012], [11.566003000000023, 11.566025000000025], [11.566034000000002, 11.566058999999996], [11.566066999999975, 11.566849999999988]]}, \"sh-4666\": {\"1\": [[11.552305999999987, 11.553334000000007], [11.55934400000001, 11.559730999999999], [11.559739999999977, 11.564944000000025]], \"2\": [[11.56500299999999, 11.565066000000002], [11.565073999999981, 11.565151000000014], [11.565157999999997, 11.565189999999973], [11.565196000000014, 11.565937000000019], [11.578310999999985, 11.579046000000005]]}, \"smem_native_rpm-41\": {\"1\": [[0.0021429999999895699, 0.0021719999999731954], [0.051968999999985499, 0.05212299999999459], [0.13180499999998574, 0.13184300000000349], [0.13618999999999915, 0.13621299999999792], [0.13680599999997867, 0.13682199999999511]], \"2\": [[0.38557700000001205, 0.38568900000001349], [0.84994699999998602, 0.84997800000002144], [0.85011900000000651, 0.85013400000002548], [0.8502809999999954, 0.85029800000000932], [0.88505700000001752, 0.88507900000001882], [0.93558200000001079, 0.93569300000001476], [1.7187139999999772, 1.7188279999999736], [1.7190140000000156, 1.7190879999999993], [1.7350799999999822, 1.7351120000000151], [4.1693080000000009, 4.1693989999999985], [4.1694810000000189, 4.1694979999999759], [4.1696249999999964, 4.1696410000000128], [5.5955079999999953, 5.595626999999979], [5.5962139999999749, 5.5963499999999726], [5.5965439999999944, 5.5965620000000058], [5.5971190000000206, 5.5972380000000044], [5.6004659999999831, 5.6004879999999844], [5.6005519999999933, 5.6005850000000237], [5.6006459999999834, 5.6006610000000023], [5.6007749999999987, 5.6008299999999736], [5.6010390000000143, 5.6010590000000207], [5.6012200000000121, 5.6012380000000235], [5.6014020000000073, 5.6014190000000212], [5.6016260000000102, 5.6016440000000216], [5.6017780000000243, 5.6017959999999789], [5.6019539999999779, 5.6019709999999918], [5.6021470000000022, 5.6021640000000161], [5.8564969999999903, 5.8565269999999714], [5.8566640000000234, 5.8566789999999855], [5.8568230000000199, 5.8568389999999795], [7.0849900000000048, 7.0850060000000212], [7.085158999999976, 7.0851749999999925], [7.0859580000000051, 7.0860200000000191], [7.086133000000018, 7.0861790000000155], [7.0864169999999831, 7.0864329999999995], [7.0872160000000122, 7.0872550000000274], [7.0875580000000014, 7.0875689999999736]], \"3\": [[0.18514099999998734, 0.18516099999999369], [0.1859890000000064, 0.18601999999998498], [0.23555499999997664, 0.23559699999998429], [0.23658399999999347, 0.23665199999999231], [0.28053399999998874, 0.28058700000002545], [0.28149100000001681, 0.28168699999997671], [0.28175099999998565, 0.28176400000000967], [0.28200600000002396, 0.28205500000001393], [0.2821400000000267, 0.28215499999998883], [0.28233799999998155, 0.282353999999998], [0.28515099999998483, 0.28516700000000128], [0.29575299999999061, 0.29577000000000453], [0.29600099999998974, 0.29601500000001124], [0.29620099999999638, 0.29621500000001788], [0.29639600000001565, 0.29641099999997778], [0.29658999999998059, 0.29660599999999704], [0.29679299999997966, 0.29680700000000115], [0.2969929999999863, 0.29700700000000779], [0.29722199999997656, 0.29723699999999553], [1.7856580000000122, 1.7857119999999895], [2.0697000000000116, 2.0697890000000143], [2.0698080000000232, 2.0698229999999853], [2.0700140000000147, 2.0700309999999718], [2.07019200000002, 2.0702079999999796], [2.0703730000000178, 2.0703889999999774], [2.0705629999999928, 2.0705780000000118], [2.0707390000000032, 2.0707540000000222], [2.07093500000002, 2.0709499999999821], [2.0826420000000212, 2.0827709999999797], [2.0829590000000167, 2.0829749999999763], [2.0835509999999999, 2.0836810000000128], [3.3900649999999928, 3.3900970000000257], [3.3902350000000183, 3.3902499999999804], [3.3903980000000047, 3.3904150000000186], [6.8395039999999767, 6.8395980000000236], [6.8396829999999795, 6.8397009999999909], [6.8398329999999987, 6.8398500000000126], [7.0835010000000125, 7.0835579999999823], [7.083705000000009, 7.0837230000000204], [7.0838769999999727, 7.0838939999999866], [7.0846990000000005, 7.0847529999999779], [7.0847650000000044, 7.0847790000000259], [7.0885069999999928, 7.0885729999999967], [7.1026659999999993, 7.1027940000000171], [7.1029849999999897, 7.1030020000000036], [7.103541000000007, 7.1036930000000211], [8.9503589999999917, 8.9504709999999932], [10.575627999999995, 10.575720999999987], [10.575851999999998, 10.575867000000017], [10.575931000000026, 10.57594499999999], [10.576103999999987, 10.576120000000003], [10.576286999999979, 10.576302999999996], [10.576475000000016, 10.576489999999978], [10.576649999999972, 10.576665999999989], [10.576849999999979, 10.576865999999995], [10.580540999999982, 10.58057500000001], [10.580594000000019, 10.580605999999989], [10.580668000000003, 10.580722999999978], [10.580777000000012, 10.580796000000021], [10.581151999999975, 10.581168999999989], [10.581324999999993, 10.581342000000006], [10.58150999999998, 10.581561000000022], [10.581700000000012, 10.581717000000026], [10.581880000000012, 10.581895999999972], [10.582055000000025, 10.582070999999985], [10.582245, 10.582261000000017], [10.935986000000014, 10.936014], [10.936155999999983, 10.936168000000009], [10.936316999999974, 10.936328000000003], [11.540119000000004, 11.54015099999998], [11.543671000000018, 11.543714000000023], [11.544249999999977, 11.544265999999993], [11.591725999999994, 11.591742000000011], [11.592310999999995, 11.592322000000024], [11.641813000000013, 11.641835000000015], [11.642382999999995, 11.642397000000017], [11.701172999999983, 11.701193999999987], [11.715216999999996, 11.715254000000016], [11.71569599999998, 11.715760999999986]]}, \"adbd-4674\": {\"0\": [[11.702902999999992, 11.70317]]}, \"rcu_preempt-7\": {\"0\": [[0.065298999999981788, 0.065330000000017208], [0.065389999999979409, 0.065404999999998381], [0.065445000000011078, 0.065455999999983305], [0.06841500000001588, 0.068466000000000804], [0.068579999999997199, 0.068592000000023745], [0.068638000000021293, 0.068646000000001095], [0.075076000000024123, 0.075131999999996424], [0.07522599999998647, 0.075240000000007967], [0.075339999999982865, 0.075351000000011936], [0.075390000000027158, 0.075398000000006959], [0.081773999999995794, 0.081846999999982017], [0.081922000000020034, 0.081938999999977113], [0.081990000000018881, 0.081998999999996158], [0.082035000000018954, 0.082047999999986132], [0.088099999999997181, 0.088134000000025026], [0.088176999999973305, 0.088190999999994801], [0.088347999999996318, 0.08836100000002034], [0.088405000000022937, 0.088417999999990116], [0.088430000000016662, 0.088441999999986365], [0.088481999999999061, 0.088494000000025608], [0.088543000000015581, 0.088552999999990334], [0.16521099999999933, 0.16528399999998555], [0.17323499999997694, 0.17325899999997318], [0.17330900000001748, 0.17332399999997961], [0.17336099999999988, 0.17337099999997463], [0.17340699999999742, 0.17342000000002145], [0.1734559999999874, 0.17346800000001394], [0.17498999999997977, 0.17501299999997855], [0.17507299999999759, 0.17508500000002414], [0.17512499999997999, 0.17513600000000906], [0.17517299999997249, 0.17518400000000156], [0.17521799999997256, 0.17522800000000416], [11.581662999999992, 11.581687999999986], [11.581758999999977, 11.581768000000011], [11.581912999999986, 11.581923000000018], [11.581988000000024, 11.582000999999991], [11.582053999999971, 11.582065], [11.582108000000005, 11.582118999999977], [11.582146000000023, 11.582154000000003], [11.584973999999988, 11.584989000000007], [11.585000999999977, 11.585010000000011], [11.585057000000006, 11.585072000000025], [11.588326999999992, 11.588344000000006], [11.588359000000025, 11.588369], [11.588416999999993, 11.588432000000012]], \"1\": [[0.00025299999998651401, 0.00029000000000678483], [0.0003330000000119071, 0.00034299999998665953], [0.0020749999999907232, 0.0021019999999793981], [0.002181000000007316, 0.0021949999999719694], [0.002361000000007607, 0.0023749999999722604], [0.0048340000000166583, 0.005005999999980304], [0.0050420000000030996, 0.0050580000000195469], [0.0052820000000224354, 0.0053019999999719403], [0.0053859999999872343, 0.0054000000000087311], [0.0054549999999835563, 0.0054650000000151522], [0.0085129999999935535, 0.0085450000000264481], [0.0086830000000190921, 0.0087009999999736465], [0.00872199999997747, 0.0087340000000040163], [0.0087879999999813663, 0.0088049999999952888], [0.0088170000000218351, 0.0088269999999965876], [0.011608000000023821, 0.011625999999978376], [0.014097999999989952, 0.014133000000015272], [0.018415000000004511, 0.018434000000013384], [0.024904999999989741, 0.024918000000013762], [0.051939000000004398, 0.051968999999985499], [0.053003999999987172, 0.053040000000009968], [0.053104000000018914, 0.053117999999983567], [0.053156999999998789, 0.05316499999997859], [0.053197000000011485, 0.053202999999996337], [0.053233999999974912, 0.053241000000014083], [0.055165999999985615, 0.05519800000001851], [0.055248000000005959, 0.055256999999983236], [0.06174399999997604, 0.061805999999990036], [0.085707000000013522, 0.085735999999997148], [0.085796000000016193, 0.085810999999978321], [0.085849999999993543, 0.085862000000020089], [0.094969999999989341, 0.094998999999972966], [0.13497200000000475, 0.13500299999998333], [0.13579199999998082, 0.13581900000002634], [0.13586500000002388, 0.13587499999999864], [0.13590399999998226, 0.13591100000002143], [0.13594200000000001, 0.1360000000000241], [0.13621299999999792, 0.13622400000002699], [0.13834600000001274, 0.13837999999998374], [0.14499599999999191, 0.14503500000000713], [0.15175699999997505, 0.15178300000002309], [0.15834699999999202, 0.15839199999999209], [0.16540700000001607, 0.1654219999999782], [0.16546099999999342, 0.16547100000002501], [0.16550699999999097, 0.16551700000002256], [0.16555299999998851, 0.16556300000002011], [0.16559899999998606, 0.16560900000001766], [0.16842900000000327, 0.16845499999999447], [0.16851700000000847, 0.16852699999998322], [0.16856300000000601, 0.16857299999998077], [0.16860800000000609, 0.16861799999998084], [0.16865300000000616, 0.16866399999997839], [0.17176799999998593, 0.17180300000001125], [0.17188499999997475, 0.17189799999999877], [0.17193800000001147, 0.17195199999997612], [0.17198700000000144, 0.17199499999998125], [0.17202800000001162, 0.17204099999997879], [0.1773860000000127, 0.17741699999999128], [0.17757100000000037, 0.17758600000001934], [0.17763000000002194, 0.17764599999998154], [0.17826600000000781, 0.17827999999997246], [0.1784359999999765, 0.1784539999999879], [0.1785019999999804, 0.17851300000000947], [0.17855400000001964, 0.17856399999999439], [0.23165799999998171, 0.23167599999999311], [0.23841199999998253, 0.23848600000002307], [0.24510600000002114, 0.24517200000002504], [0.26994200000001456, 0.26997499999998809], [0.27006599999998571, 0.27007700000001478], [0.27010899999999083, 0.27011699999997063], [0.27184299999998984, 0.27186999999997852], [0.27188400000000001, 0.27189700000002404], [0.27191499999997859, 0.27192400000001271], [0.27194600000001401, 0.27195399999999381], [0.27339499999999362, 0.27341599999999744], [0.27350799999999253, 0.27352000000001908], [0.27375999999998157, 0.2737730000000056], [0.27505999999999631, 0.27509400000002415], [0.27565299999997706, 0.2756689999999935], [0.27574399999997468, 0.27575600000000122], [0.27579600000001392, 0.27580699999998615], [0.27638500000000477, 0.27640900000000101], [0.27645599999999604, 0.27646499999997332], [0.27650599999998349, 0.27651300000002266], [0.278349999999989, 0.27839099999999917], [0.27971999999999753, 0.27974499999999125], [0.28054099999997106, 0.28055799999998499], [11.494989999999973, 11.495003999999994], [11.565985000000012, 11.566003000000023], [11.566025000000025, 11.566034000000002], [11.566058999999996, 11.566066999999975], [11.571628999999973, 11.571661000000006], [11.578261999999995, 11.578284999999994], [11.578350999999998, 11.578363000000024], [11.578416000000004, 11.578425999999979], [11.580376999999999, 11.58040299999999], [11.708373999999992, 11.708416999999997], [11.71169900000001, 11.711752999999987], [11.713298000000009, 11.713334999999972], [11.713440999999989, 11.71345500000001], [11.713498000000016, 11.713508999999988], [11.715021999999976, 11.715050000000019], [11.715062999999986, 11.715079000000003], [11.715191000000004, 11.715199999999982], [11.715233000000012, 11.715239999999994], [11.721664999999973, 11.721704999999986], [11.721767999999997, 11.721784000000014], [11.728406000000007, 11.728427000000011], [11.730436999999995, 11.730460999999991], [11.730543000000011, 11.730557999999974], [11.731624000000011, 11.731645000000015], [11.731690000000015, 11.731698999999992], [11.731725999999981, 11.731734000000017]], \"2\": [[0.25163099999997485, 0.25165600000002541], [0.25166899999999259, 0.25167800000002671], [0.25171000000000276, 0.25171599999998762], [0.25341500000001815, 0.25344400000000178], [0.25350099999997155, 0.25351100000000315], [0.25354099999998425, 0.25355000000001837], [0.25824699999998302, 0.25825800000001209], [0.25829299999998057, 0.25830200000001469], [0.25833999999997559, 0.25834700000001476], [0.2615509999999972, 0.261558999999977], [0.26161100000001625, 0.26161799999999857], [0.26166699999998855, 0.26167399999997087], [0.26171099999999115, 0.261716999999976], [0.26336500000002161, 0.26338800000002038], [0.26343700000001036, 0.26344599999998763], [0.26347800000002053, 0.26348600000000033], [0.26827200000002449, 0.26828100000000177], [0.26847299999997176, 0.26848100000000841], [0.26858099999998331, 0.2685910000000149], [0.26862799999997833, 0.2686350000000175], [0.84491700000000947, 0.84493099999997412], [0.84823699999998325, 0.84824400000002242], [0.8582450000000108, 0.85825699999998051], [0.85828400000002603, 0.85829400000000078], [0.8583189999999945, 0.85832799999997178], [0.86157200000002376, 0.86158299999999599], [0.86160699999999224, 0.86161600000002636], [0.86164300000001504, 0.86165299999998979], [0.86490700000001652, 0.86491499999999633], [0.86506800000000794, 0.86507499999999027], [0.86511400000000549, 0.86512399999998024], [0.86823399999997264, 0.86824200000000928], [0.86827699999997776, 0.86828500000001441], [0.86831000000000813, 0.86831899999998541], [0.87156399999997802, 0.87157700000000204], [0.87159600000001092, 0.87160299999999324], [0.87163600000002361, 0.87164500000000089], [0.87489899999997078, 0.87490600000000995], [0.87495799999999235, 0.87496700000002647], [0.87498799999997345, 0.87499400000001515], [0.87823600000001534, 0.87824699999998757], [0.87826599999999644, 0.87827299999997877], [0.88488599999999451, 0.88489499999997179], [0.89311700000001792, 0.8931220000000053], [0.89313499999997248, 0.8931440000000066], [0.89317199999999275, 0.89318100000002687], [0.89320900000001302, 0.8932179999999903], [0.89490000000000691, 0.89490799999998671], [0.89496400000001586, 0.89497299999999314], [0.89823200000000725, 0.89823999999998705], [0.90490799999997762, 0.90491400000001931], [0.91043700000000172, 0.91044899999997142], [0.91057699999998931, 0.91058700000002091], [0.91061500000000706, 0.91062299999998686], [0.91177199999998493, 0.911783000000014], [0.91181100000000015, 0.9118209999999749], [0.91490900000002284, 0.9149229999999875], [0.91496799999998757, 0.91497800000001916], [0.91500600000000532, 0.91501499999998259], [0.9182400000000257, 0.91825199999999541], [0.91828099999997903, 0.91828900000001568], [0.91831700000000183, 0.91832499999998163], [0.92157700000001341, 0.92158899999998312], [0.92161900000002106, 0.92162799999999834], [0.92823800000002166, 0.92824799999999641], [1.6060820000000149, 1.6060909999999922], [1.6061149999999884, 1.6061320000000023], [1.606160999999986, 1.6061730000000125], [1.6062000000000012, 1.6062109999999734], [1.6082490000000007, 1.6082610000000273], [1.6082829999999717, 1.6082890000000134], [1.6083249999999794, 1.608333000000016], [1.6149070000000165, 1.6149169999999913], [1.6150160000000255, 1.6150250000000028], [1.621563999999978, 1.6215710000000172], [1.7227449999999749, 1.7227579999999989], [1.7227849999999876, 1.7228049999999939], [1.7228359999999725, 1.7228489999999965], [1.7228779999999801, 1.7228890000000092], [1.7249180000000024, 1.7249289999999746], [1.724962000000005, 1.7249689999999873], [1.7250199999999722, 1.7250290000000064], [1.7282519999999977, 1.7282599999999775], [1.7348949999999945, 1.7349019999999769], [1.7415589999999952, 1.7415740000000142], [3.3921730000000139, 3.3921829999999886], [3.3922069999999849, 3.3922220000000038], [3.39224999999999, 3.3922620000000165], [3.3922959999999875, 3.3923060000000191], [3.3950990000000161, 3.3951069999999959], [3.3951410000000237, 3.395150000000001], [3.3951749999999947, 3.3951829999999745], [3.3982560000000035, 3.3982659999999782], [3.3983029999999985, 3.3983099999999808], [3.3983460000000036, 3.3983539999999834], [3.4015630000000101, 3.4015709999999899], [3.4016120000000001, 3.4016209999999774], [3.4016419999999812, 3.4016480000000229], [3.4051049999999918, 3.4051119999999742], [3.4051519999999869, 3.4051620000000185], [3.4051890000000071, 3.4051979999999844], [3.4082359999999881, 3.4082440000000247], [3.4082829999999831, 3.4082920000000172], [3.4083190000000059, 3.4083269999999857], [3.4115659999999934, 3.4115739999999732], [3.4182369999999764, 3.4182480000000055], [3.4319100000000162, 3.4319160000000011], [3.4319439999999872, 3.4319540000000188], [3.4319760000000201, 3.4319839999999999], [3.4321390000000065, 3.4323190000000068], [3.4350049999999896, 3.4350150000000212], [3.4350420000000099, 3.4350509999999872], [3.4350789999999733, 3.43508700000001], [3.4382420000000025, 3.4382539999999722], [3.4382850000000076, 3.4382939999999849], [4.174931000000015, 4.1749429999999847], [4.1749740000000202, 4.1749829999999974], [4.1750099999999861, 4.1750190000000202], [4.1782410000000141, 4.1782549999999787], [4.1782890000000066, 4.1782979999999839], [4.1848979999999756, 4.1849040000000173], [5.8427409999999895, 5.8427510000000211], [5.8427750000000174, 5.842788999999982], [5.8428200000000174, 5.8428319999999871], [5.842852999999991, 5.8428609999999708], [5.8449170000000095, 5.8449279999999817], [5.8449509999999805, 5.8449570000000222], [5.8450129999999945, 5.8450189999999793], [5.8482450000000199, 5.8482529999999997], [5.8483479999999872, 5.8483650000000011], [5.8594429999999988, 5.8594550000000254], [5.8594770000000267, 5.8594870000000014], [5.8595070000000078, 5.8595159999999851], [5.861598000000015, 5.8616069999999922], [5.8616369999999733, 5.8616460000000075], [5.8616719999999987, 5.8616809999999759], [5.864906000000019, 5.8649169999999913], [5.8649560000000065, 5.8649659999999812], [5.8749070000000074, 5.8749270000000138], [5.8749540000000025, 5.8749639999999772], [5.8749879999999735, 5.8749960000000101], [5.8782420000000002, 5.8782540000000267], [5.8782830000000104, 5.8782919999999876], [5.884902000000011, 5.8849119999999857], [5.899343999999985, 5.8993479999999749], [5.8993600000000015, 5.8993689999999788], [5.8993970000000218, 5.8994069999999965], [5.8994339999999852, 5.8994420000000218], [5.901568999999995, 5.9015769999999748], [5.9016149999999925, 5.9016240000000266], [5.9016510000000153, 5.9016599999999926], [5.9082329999999956, 5.908239999999978], [5.9082680000000209, 5.9082750000000033], [5.9148779999999874, 5.9148870000000215], [5.915836000000013, 5.9158459999999877], [5.9158899999999903, 5.9159000000000219], [5.9159270000000106, 5.9159349999999904], [5.9182480000000055, 5.9182599999999752], [5.9183019999999829, 5.9183120000000145], [5.9183390000000031, 5.9183479999999804], [5.9215940000000273, 5.9216020000000071], [5.9216410000000224, 5.9216509999999971], [5.9216769999999883, 5.9216860000000224], [5.9248979999999847, 5.9249060000000213], [5.9282549999999787, 5.9282630000000154], [5.9348909999999933, 5.9349000000000274], [5.9415559999999914, 5.9415680000000179], [6.6059109999999919, 6.6059220000000209], [6.6059470000000147, 6.6059639999999717], [6.6059870000000274, 6.6059970000000021], [6.6060269999999832, 6.6060350000000199], [6.6082410000000209, 6.6082490000000007], [6.6082819999999742, 6.6082880000000159], [6.6083229999999844, 6.6083320000000185], [6.6149139999999989, 6.6149260000000254], [6.8421789999999874, 6.8421880000000215], [6.8422090000000253, 6.8422239999999874], [6.8422529999999711, 6.8422659999999951], [6.8422929999999837, 6.8423040000000128], [6.8449100000000271, 6.8449229999999943], [6.844963000000007, 6.8449689999999919], [6.8482470000000149, 6.8482539999999972], [6.8486669999999776, 6.8486740000000168], [7.6982949999999732, 7.6983069999999998], [7.6983349999999859, 7.6983440000000201], [7.6983710000000087, 7.698379999999986], [7.6984079999999722, 7.6984160000000088], [7.6984429999999975, 7.6984519999999748], [7.7015650000000164, 7.7015769999999861], [7.7016120000000114, 7.7016229999999837], [7.7082270000000221, 7.708233000000007], [8.6024419999999964, 8.6024509999999736], [8.6024790000000166, 8.6024980000000255], [8.6025260000000117, 8.6025379999999814], [8.6025700000000143, 8.602579999999989], [8.6050159999999778, 8.605023000000017], [8.6050589999999829, 8.605068000000017], [8.6050890000000209, 8.6050960000000032], [8.6082470000000058, 8.6082589999999755], [8.608331000000021, 8.6083409999999958], [8.6083679999999845, 8.6083740000000262], [8.6182610000000182, 8.6182709999999929], [8.6182989999999791, 8.6183090000000107], [8.6183359999999993, 8.6183439999999791], [8.9582520000000159, 8.9582619999999906], [8.9582889999999793, 8.9582980000000134], [8.9583240000000046, 8.9583319999999844], [8.9651739999999904, 8.9651890000000094], [8.9652159999999981, 8.9652249999999754], [8.9652570000000082, 8.965264999999988], [8.968244000000027, 8.9682559999999967], [8.9682869999999753, 8.9682960000000094], [8.968322999999998, 8.9683319999999753], [8.9749100000000226, 8.9749209999999948], [8.9749630000000025, 8.9749729999999772], [8.981568999999979, 8.9815800000000081], [8.9922359999999912, 8.9923959999999852], [8.9925020000000018, 8.9925200000000132], [8.9925479999999993, 8.9925610000000233], [8.992588000000012, 8.9925989999999842], [8.9949080000000095, 8.9949189999999817], [8.9949439999999754, 8.994952000000012], [8.9949869999999805, 8.9949960000000146], [8.9982319999999731, 8.9982449999999972], [8.9982769999999732, 8.9982850000000099], [9.004903000000013, 9.0049139999999852], [9.0086029999999937, 9.0086089999999786], [9.0086200000000076, 9.0087229999999749], [9.008749000000023, 9.0087619999999902], [9.0088799999999765, 9.0088890000000106], [9.0115749999999935, 9.01158700000002], [9.0116110000000162, 9.0116199999999935], [9.0116429999999923, 9.0116520000000264], [9.0149020000000064, 9.0149149999999736], [9.0149549999999863, 9.0149710000000027], [9.0151740000000018, 9.0151819999999816], [9.0152199999999993, 9.0152289999999766], [9.0152550000000247, 9.0152649999999994], [9.0182750000000169, 9.0182849999999917], [9.0183260000000018, 9.0183349999999791], [9.0183610000000272, 9.0183700000000044], [9.0249000000000024, 9.0249099999999771], [9.0249660000000063, 9.0249749999999835], [9.0249979999999823, 9.0250050000000215], [9.0282330000000002, 9.02824099999998], [9.0282889999999725, 9.0283000000000015], [9.0283299999999826, 9.0283400000000142], [9.0315699999999879, 9.0315770000000271], [9.0316199999999753, 9.0316290000000095], [9.0316520000000082, 9.0316589999999906], [9.0349029999999857, 9.0349150000000122], [9.0349390000000085, 9.0349469999999883], [9.0415570000000116, 9.0415689999999813], [9.2420710000000099, 9.242163000000005], [9.248250999999982, 9.2482669999999985], [9.8982780000000048, 9.898290999999972], [9.8983269999999948, 9.8983370000000264], [10.941587000000027, 10.941598999999997], [10.941629999999975, 10.941640000000007], [10.941666999999995, 10.941674999999975], [10.944991000000016, 10.944999999999993], [10.945026999999982, 10.945036000000016], [10.945062000000007, 10.945070999999984], [11.491647, 11.491659000000027], [11.494281999999998, 11.494299000000012], [11.494555999999989, 11.494568000000015], [11.494635000000017, 11.494645999999989], [11.494657000000018, 11.494664999999998], [11.494677000000024, 11.494686999999999], [11.49476199999998, 11.494785999999976], [11.494799, 11.49480699999998], [11.495293000000004, 11.495305999999971], [11.49535800000001, 11.495367999999985], [11.501570000000015, 11.501581999999985], [11.501733000000002, 11.501742999999976], [11.501756, 11.501764999999978], [11.501813000000027, 11.501823999999999], [11.501837000000023, 11.501844000000006], [11.501855999999975, 11.501865000000009], [11.501885000000016, 11.501892999999995], [11.504937999999981, 11.504949000000011], [11.504979999999989, 11.504989000000023], [11.511563000000024, 11.511572999999999], [11.542777000000001, 11.542822000000001], [11.544957000000011, 11.544970999999975], [11.54502500000001, 11.545035999999982], [11.545055999999988, 11.545064000000025], [11.549196999999992, 11.549209000000019], [11.551811999999984, 11.551825000000008], [11.551889000000017, 11.551901999999984], [11.551922999999988, 11.55193300000002], [11.551995999999974, 11.552006000000006], [11.558260000000018, 11.558270999999991], [11.564897999999971, 11.564914999999985], [11.565066000000002, 11.565073999999981], [11.565151000000014, 11.565157999999997], [11.565189999999973, 11.565196000000014]], \"3\": [[0.24916000000001759, 0.24918600000000879], [0.28168699999997671, 0.2817190000000096], [0.28177299999998695, 0.28178300000001855], [0.28183500000000095, 0.28184599999997317], [0.28199899999998479, 0.28200600000002396], [0.28311800000000176, 0.28312999999997146], [0.28322900000000573, 0.28323699999998553], [0.28327500000000327, 0.28328099999998813], [0.28333500000002232, 0.28334100000000717], [0.28355900000002521, 0.28356899999999996], [0.28493700000001354, 0.28494899999998324], [0.28503399999999601, 0.28504199999997581], [0.28507999999999356, 0.28508599999997841], [0.28516700000000128, 0.28517299999998613], [0.28579500000000735, 0.28580699999997705], [0.29158599999999524, 0.29159600000002683], [0.29501800000002731, 0.29502999999999702], [0.29508299999997689, 0.29509500000000344], [0.29510900000002493, 0.29512199999999211], [0.30157100000002401, 0.30158199999999624], [0.30822799999998551, 0.30823800000001711], [0.30826799999999821, 0.30827699999997549], [0.30832400000002735, 0.30833400000000211], [0.31490000000002283, 0.31490700000000516], [0.83498300000002246, 0.83501599999999598], [0.84166900000002443, 0.84169300000002067], [0.84172899999998663, 0.84174300000000812], [0.84179899999998042, 0.84181200000000445], [0.84483699999998407, 0.84484600000001819], [0.84497699999997167, 0.84498600000000579], [0.84501599999998689, 0.84502500000002101], [0.84505300000000716, 0.84506099999998696], [0.84508899999997311, 0.84509800000000723], [0.84512499999999591, 0.84513299999997571], [0.84870100000000548, 0.84871199999997771], [0.84872899999999163, 0.84873800000002575], [0.84876800000000685, 0.84877599999998665], [0.8488039999999728, 0.84881200000000945], [0.84883899999999812, 0.84884599999998045], [0.85157199999997601, 0.85158200000000761], [0.85162100000002283, 0.85162800000000516], [0.85166500000002543, 0.85167400000000271], [0.85281900000001087, 0.85283199999997805], [0.85490499999997382, 0.85491200000001299], [0.85503099999999677, 0.85503999999997404], [0.85505699999998797, 0.85506600000002209], [0.85509400000000824, 0.85510399999998299], [0.91159800000002633, 0.91161399999998594], [3.4449230000000171, 3.4449309999999969], [3.4493780000000243, 3.4493959999999788], [3.4494439999999713, 3.4494579999999928], [3.4495000000000005, 3.449512000000027], [3.4516540000000191, 3.4516679999999837], [3.4516780000000153, 3.4516869999999926], [3.4517299999999977, 3.4517440000000192], [3.4550229999999829, 3.4550370000000044], [3.4550469999999791, 3.4550560000000132], [3.461558000000025, 3.4615699999999947], [4.172142000000008, 4.1721689999999967], [4.1721999999999753, 4.1722110000000043], [5.8549869999999942, 5.8549980000000232], [5.8715960000000109, 5.8716089999999781], [5.8717449999999758, 5.8717570000000023], [5.8717980000000125, 5.8718099999999822], [5.9249449999999797, 5.9249550000000113], [5.9249810000000025, 5.9249879999999848], [6.6149679999999762, 6.6149770000000103], [6.6215720000000147, 6.6215859999999793], [6.8549340000000143, 6.854945999999984], [7.6961759999999799, 7.6962060000000179], [7.6962179999999876, 7.6962310000000116], [7.6962560000000053, 7.696267999999975], [7.6962889999999788, 7.6962970000000155], [8.6150089999999864, 8.6150250000000028], [8.6150499999999965, 8.6150569999999789], [8.6150650000000155, 8.6150779999999827], [8.6150939999999991, 8.6151049999999714], [8.6151350000000093, 8.6151439999999866], [8.6249250000000188, 8.624939999999981], [8.6249900000000252, 8.6250029999999924], [8.6315579999999841, 8.6315710000000081], [8.952494999999999, 8.9525249999999801], [8.9525370000000066, 8.9525489999999763], [8.9525729999999726, 8.9525830000000042], [8.9526079999999979, 8.9526179999999727], [8.9550510000000259, 8.9550649999999905], [8.9551079999999956, 8.9551190000000247], [8.9625750000000153, 8.9625889999999799], [9.2549290000000042, 9.2549450000000206], [9.2615650000000187, 9.2615799999999808], [9.315304000000026, 9.3153919999999744], [9.3216009999999869, 9.3216199999999958], [9.3282270000000267, 9.3282379999999989], [9.334889999999973, 9.3349039999999945], [9.8937129999999911, 9.8937409999999772], [9.8953999999999951, 9.8954180000000065], [9.9049269999999865, 9.904941000000008], [10.934906000000012, 10.934928000000014], [10.938783999999998, 10.938803000000007], [10.938821000000019, 10.938832999999988], [10.938863000000026, 10.938872000000003], [10.938890000000015, 10.938898999999992], [10.938939000000005, 10.938950999999975], [10.948317999999972, 10.948331999999994], [10.954891999999973, 10.954904999999997], [10.961556999999971, 10.961569999999995], [11.478694000000019, 11.478770999999995], [11.484932000000015, 11.484946999999977], [11.485830000000021, 11.485844999999983], [11.485880000000009, 11.485889999999984], [11.485921000000019, 11.485928999999999], [11.491563999999983, 11.491585999999984], [11.495054999999979, 11.495063000000016], [11.495106000000021, 11.495118999999988], [11.588459999999998, 11.588471000000027], [11.588533999999981, 11.588543000000016], [11.588574999999992, 11.588584000000026], [11.588602999999978, 11.588608000000022], [11.588616999999999, 11.588623999999982], [11.58864299999999, 11.588649999999973], [11.591582000000017, 11.591591999999991], [11.591624000000024, 11.591630000000009], [11.598240999999973, 11.598250000000007], [11.604985999999997, 11.605007000000001], [11.605025000000012, 11.605034999999987], [11.605054999999993, 11.605064000000027], [11.608262000000025, 11.608272999999997], [11.608294000000001, 11.608299999999986], [11.614895999999987, 11.614905000000022], [11.62852700000002, 11.628570000000025], [11.634813000000008, 11.634829000000025], [11.634948000000009, 11.634960999999976], [11.63498199999998, 11.634991000000014], [11.63603999999998, 11.636053000000004], [11.636108999999976, 11.636119000000008], [11.636150999999984, 11.636160000000018], [11.638328999999999, 11.638339999999971], [11.638432000000023, 11.638442999999995], [11.638463000000002, 11.638470999999981], [11.641835000000015, 11.641844999999989], [11.641886999999997, 11.641898000000026], [11.641951000000006, 11.641960999999981], [11.643058999999994, 11.643074000000013], [11.643129999999985, 11.643141000000014], [11.643201999999974, 11.643212000000005], [11.645021999999983, 11.645033000000012], [11.645140000000026, 11.645150999999998], [11.645195999999999, 11.645205999999973], [11.651597999999979, 11.65160800000001], [11.652059000000008, 11.652070999999978], [11.652153999999996, 11.652165000000025], [11.652197999999999, 11.652205999999978], [11.652400999999998, 11.652413000000024], [11.652458000000024, 11.652468999999996], [11.652518999999984, 11.652529000000015], [11.654987000000006, 11.65499699999998], [11.655101000000002, 11.655110999999977], [11.65514300000001, 11.655151999999987], [11.655264999999986, 11.65527800000001], [11.655328999999995, 11.655340000000024], [11.655372, 11.655382999999972], [11.65541300000001, 11.655421999999987], [11.655551000000003, 11.655562999999972], [11.658280999999988, 11.658292000000017], [11.658323999999993, 11.658334000000025], [11.658352999999977, 11.658361000000014], [11.658391999999992, 11.658401000000026], [11.658424000000025, 11.658433000000002], [11.664896999999996, 11.664904999999976], [11.701450000000023, 11.701471000000026], [11.701504999999997, 11.701519000000019], [11.701588000000015, 11.701595999999995], [11.701627999999971, 11.70163500000001], [11.701689999999985, 11.701702000000012], [11.703310999999985, 11.703320000000019], [11.703350999999998, 11.703358999999978], [11.703388000000018, 11.703395], [11.703424999999982, 11.703432000000021], [11.703461000000004, 11.703467999999987], [11.704925000000003, 11.704932999999983], [11.704965000000016, 11.70497499999999], [11.704994999999997, 11.705003999999974], [11.705042999999989, 11.705051000000026], [11.705081000000007, 11.705087999999989]]}, \"msm_irqbalance-564\": {\"2\": [[1.602156999999977, 1.6060110000000236], [6.6021279999999933, 6.6058439999999905], [11.601940000000013, 11.604807999999991]]}, \"sh-4675\": {\"0\": [[11.712333000000001, 11.714022999999997]]}, \"kworker/0:1-33\": {\"0\": [[0.0037939999999707652, 0.0038549999999872853], [0.17768899999998666, 0.17773399999998674], [0.29496999999997797, 0.29502300000001469], [0.29550899999998137, 0.29575199999999313], [0.29592100000002119, 0.29599100000001499], [0.29611999999997352, 0.29619000000002416], [0.29631999999998015, 0.2963839999999891], [0.29651300000000447, 0.29657900000000836], [0.29671500000000606, 0.29678200000000743], [0.2969150000000127, 0.29698000000001912], [0.29711700000001429, 0.29721000000000686], [0.297333999999978, 0.29745700000000852], [0.30569000000002688, 0.30571199999997134], [0.91076500000002625, 0.91097800000000007], [0.91221000000001595, 0.91232100000001992], [1.0282149999999888, 1.0282599999999888], [1.1906399999999735, 1.1907689999999889], [1.6882289999999784, 1.6882929999999874], [1.6918929999999932, 1.6919409999999857], [1.6945739999999887, 1.697936000000027], [1.7082159999999931, 1.7089300000000094], [1.7182129999999916, 1.7186209999999846], [1.7187440000000151, 1.7187819999999761], [1.7188909999999851, 1.7189329999999927], [1.7190689999999904, 1.7199259999999867], [2.081546000000003, 2.0815769999999816], [2.0819999999999936, 2.0822410000000104], [2.0823429999999803, 2.0823819999999955], [2.0824929999999995, 2.0825249999999755], [2.0826779999999872, 2.082712000000015], [2.082868000000019, 2.0829100000000267], [2.0830639999999789, 2.0831160000000182], [2.0832320000000095, 2.0832689999999729], [2.0834090000000174, 2.0834600000000023], [2.0835890000000177, 2.0836869999999976], [2.5882149999999911, 2.5882399999999848], [3.4485080000000039, 3.4487349999999992], [3.5882149999999911, 3.5882369999999923], [3.6408969999999954, 3.6409820000000082], [4.1427249999999844, 4.1428000000000225], [4.144032999999979, 4.1445380000000114], [4.5882159999999885, 4.5882409999999823], [5.5882129999999961, 5.5882339999999999], [5.5948839999999791, 5.5950030000000197], [5.5950290000000109, 5.5950460000000248], [5.5975260000000162, 5.5976079999999797], [5.597631999999976, 5.5976870000000076], [5.5977379999999926, 5.5977649999999812], [5.5981859999999983, 5.5982549999999947], [5.6003620000000183, 5.6007480000000101], [5.600970000000018, 5.6010099999999738], [5.6011520000000132, 5.6011889999999767], [5.6013350000000059, 5.6013720000000262], [5.6015199999999936, 5.6015959999999723], [5.6017059999999788, 5.6017479999999864], [5.6018849999999816, 5.6019229999999993], [5.6020659999999793, 5.6021160000000236], [5.6022459999999796, 5.6033590000000117], [5.9149909999999863, 5.9153909999999996], [5.9165300000000229, 5.9166260000000079], [6.0415610000000015, 6.041624000000013], [6.310766000000001, 6.3109069999999861], [6.8118129999999724, 6.811918999999989], [6.8126470000000268, 6.8127979999999866], [6.8133669999999711, 6.8134029999999939], [7.1015409999999974, 7.1015729999999735], [7.1019959999999855, 7.1022530000000188], [7.1023559999999861, 7.1023969999999963], [7.1025000000000205, 7.1025359999999864], [7.1026820000000157, 7.1027159999999867], [7.1028680000000008, 7.1029080000000135], [7.1030610000000252, 7.1031060000000252], [7.1032389999999737, 7.1032759999999939], [7.1034159999999815, 7.103476999999998], [7.1035959999999818, 7.103699000000006], [7.5882159999999885, 7.5882439999999747], [8.588216999999986, 8.5882439999999747], [8.9357830000000149, 8.9358740000000125], [8.9482140000000072, 8.9485589999999888], [8.9495739999999842, 8.9499389999999721], [8.9500719999999774, 8.950113999999985], [8.9502209999999991, 8.9502650000000017], [8.9503859999999804, 8.9506519999999909], [8.9516659999999888, 8.9522759999999835], [8.9522919999999999, 8.9523019999999747], [8.9623119999999972, 8.9623520000000099], [8.9633719999999926, 8.9633949999999913], [8.9685039999999958, 8.9685150000000249], [8.9736219999999776, 8.9736290000000167], [8.9787380000000212, 8.978746000000001], [8.9838579999999979, 8.9838649999999802], [8.9889739999999847, 8.992494000000022], [9.0048739999999725, 9.010565999999983], [9.0148679999999786, 9.0150380000000041], [9.0152590000000146, 9.0152749999999742], [9.0162349999999947, 9.0163600000000201], [9.0171379999999886, 9.0172000000000025], [9.0482279999999946, 9.0482620000000225], [9.2401590000000056, 9.2403459999999882], [9.4619690000000105, 9.4621020000000158], [9.5882159999999885, 9.5882399999999848], [9.8947420000000079, 9.8948199999999815], [10.011300000000006, 10.011379999999974], [10.407268999999985, 10.407367000000022], [10.588220999999976, 10.588253000000009], [10.908759999999972, 10.908821999999986], [10.909636999999975, 10.909977000000026], [10.910499000000016, 10.910545000000013], [11.484593000000018, 11.484623999999997], [11.492495000000019, 11.492545000000007], [11.494125999999994, 11.494193999999993], [11.580939000000001, 11.580959000000007], [11.581616999999994, 11.581662999999992], [11.654444000000012, 11.654559000000006]]}, \"sh-4672\": {\"0\": [[11.635970999999984, 11.64290699999998]], \"1\": [[11.635333000000003, 11.635909000000026], [11.64390800000001, 11.644403000000011], [11.644413999999983, 11.652323000000024]]}, \"WifiMonitor-1511\": {\"0\": [[2.7682199999999852, 2.7683400000000233]]}, \"sh-4673\": {\"1\": [[11.702453999999989, 11.703168000000005], [11.703182000000027, 11.708373999999992], [11.708467999999982, 11.71169900000001], [11.711752999999987, 11.71310699999998], [11.714065000000005, 11.714292]]}, \"system_server-1102\": {\"0\": [[0.011604999999974552, 0.013822000000004664]]}, \"kworker/2:1-81\": {\"2\": [[0.83633900000000949, 0.83635900000001584], [10.575166000000024, 10.575562999999988], [10.575696999999991, 10.575762999999995], [10.575859999999977, 10.575906999999972], [10.576031999999998, 10.576077999999995], [10.576217999999983, 10.576262999999983], [10.576401999999973, 10.576449000000025], [10.576582999999971, 10.576624999999979], [10.576766000000021, 10.576823999999988], [10.576947000000018, 10.576989000000026], [10.577510000000018, 10.577632999999992]]}, \"sh-4671\": {\"1\": [[11.634049000000005, 11.635333000000003]]}, \"NetdConnector-1403\": {\"2\": [[0.83635900000001584, 0.83725700000002234]]}, \"shutils-4658\": {\"0\": [[0.26926800000001094, 0.26979199999999537]], \"1\": [[0.2717089999999871, 0.27184299999998984], [0.27186999999997852, 0.27188400000000001], [0.27189700000002404, 0.27191499999997859], [0.27192400000001271, 0.27194600000001401], [0.27195399999999381, 0.27254599999997708], [0.27314699999999448, 0.27328799999997955], [0.27331299999997327, 0.27339499999999362], [0.27341599999999744, 0.27342800000002399], [0.27352000000001908, 0.2736409999999978], [0.2741060000000175, 0.27505999999999631], [0.27509400000002415, 0.27554600000001983]]}, \"OkHttp Connecti-4079\": {\"0\": [[7.8948720000000208, 7.8952219999999897], [9.238207999999986, 9.2401590000000056], [9.3115429999999719, 9.3120720000000006]]}, \"jbd2/sda35-8-529\": {\"3\": [[2.0691830000000095, 2.069484999999986], [2.0720910000000003, 2.0722020000000043], [2.0739449999999806, 2.0740289999999959]]}, \"shutils-4650\": {\"0\": [[0.17054100000001426, 0.17313899999999194]]}, \"sh-4677\": {\"0\": [[11.730351999999982, 11.731742999999994]]}, \"shutils-4653\": {\"0\": [[0.27573699999999235, 0.2762819999999806]], \"1\": [[0.24268399999999701, 0.24326800000000048], [0.24328000000002703, 0.24510600000002114], [0.24517200000002504, 0.2489180000000033], [0.27635800000001609, 0.27638500000000477], [0.27640900000000101, 0.27645599999999604], [0.27646499999997332, 0.27650599999998349], [0.27651300000002266, 0.27745900000002166]], \"2\": [[0.24897099999998318, 0.25163099999997485], [0.25165600000002541, 0.25166899999999259], [0.25167800000002671, 0.25171000000000276], [0.25171599999998762, 0.25330200000001923], [0.26141400000000203, 0.2615509999999972], [0.261558999999977, 0.26161100000001625], [0.26161799999999857, 0.26166699999998855], [0.26167399999997087, 0.26171099999999115], [0.261716999999976, 0.26326799999998229], [0.26828100000000177, 0.26843500000001086], [0.27171600000002627, 0.27176100000002634]]}, \"shutils-4654\": {\"0\": [[0.25275199999998677, 0.25832300000001851]]}, \"shutils-4655\": {\"0\": [[0.25832300000001851, 0.26096899999998868]]}, \"shutils-4656\": {\"0\": [[0.26228700000001481, 0.26836100000002716]]}, \"shutils-4657\": {\"0\": [[0.26836100000002716, 0.269204000000002]], \"1\": [[0.26938499999999976, 0.26994200000001456], [0.26997499999998809, 0.27006599999998571], [0.27007700000001478, 0.27010899999999083], [0.27011699999997063, 0.27032100000002401]]}, \"kworker/u8:4-247\": {\"2\": [[0.32203199999997878, 0.3220489999999927], [0.32533000000000811, 0.32550800000001345], [0.33532400000001417, 0.3355460000000221], [0.34532000000001517, 0.34550999999999021], [0.94864200000000665, 0.94913700000000745], [0.95534900000001244, 0.95553499999999758], [0.96498300000001791, 0.96514000000001943], [0.975324999999998, 0.97551199999998062], [0.98533199999997123, 0.98555599999997412], [0.99532799999997223, 0.9955150000000117], [1.0053110000000061, 1.0054910000000064], [1.0153230000000235, 1.0155110000000036], [1.0250030000000265, 1.0251499999999965], [1.0353380000000243, 1.0355579999999804], [1.0453279999999836, 1.0455180000000155], [1.0486409999999751, 1.04914500000001], [1.0552589999999782, 1.0554109999999923], [1.0652360000000272, 1.0653839999999946], [1.0753290000000106, 1.0755139999999983], [1.0853220000000192, 1.0855440000000272], [1.0953269999999975, 1.0955119999999852], [1.1053229999999985, 1.1055089999999836], [1.115319999999997, 1.1155089999999745], [1.1253270000000271, 1.1255130000000122], [1.1353300000000104, 1.1355550000000108], [1.145321000000024, 1.1455100000000016], [1.1486449999999877, 1.1491530000000125], [1.1553430000000162, 1.1555290000000014], [1.1653230000000008, 1.1655119999999783], [1.1753279999999791, 1.1755150000000185], [1.185325999999975, 1.1855469999999855], [1.1953040000000215, 1.1954880000000117], [1.2053250000000162, 1.2055110000000013], [1.2153279999999995, 1.2155119999999897], [1.225324999999998, 1.2255129999999781], [1.2353269999999839, 1.2355549999999766], [1.2453249999999798, 1.2455140000000142], [1.2486470000000054, 1.2491430000000037], [1.25532800000002, 1.2555160000000001], [1.2653399999999806, 1.2655260000000226], [1.2753260000000068, 1.2755149999999844], [1.2853240000000028, 1.2855460000000107], [1.2953249999999912, 1.2955140000000256], [1.3053219999999897, 1.305513000000019], [1.315324999999973, 1.3155130000000099], [1.3253349999999955, 1.3255199999999832], [1.3353290000000015, 1.3355460000000221], [1.3453200000000152, 1.3455089999999927], [1.3486439999999789, 1.3491409999999746], [1.3553479999999922, 1.3555339999999774], [1.3653249999999844, 1.3655150000000162], [1.375331000000017, 1.375518999999997], [1.3853379999999902, 1.3855619999999931], [1.3953290000000038, 1.3955159999999864], [1.4053240000000073, 1.4055119999999874], [1.4153269999999907, 1.4155129999999758], [1.4253249999999866, 1.4255109999999718], [1.4353219999999851, 1.4355489999999804], [1.4453260000000228, 1.4455159999999978], [1.4486479999999915, 1.4491419999999948], [1.45534600000002, 1.4555330000000026], [1.465327000000002, 1.4655139999999847], [1.4753319999999803, 1.4755230000000097], [1.4853289999999788, 1.4855529999999817], [1.4953290000000266, 1.4955190000000016], [1.5053209999999808, 1.5055090000000177], [1.5153290000000084, 1.5155149999999935], [1.5253280000000018, 1.5255149999999844], [1.5353299999999876, 1.535556999999983], [1.5453269999999861, 1.5455140000000256], [1.5486480000000142, 1.5491549999999847], [1.5553360000000112, 1.5555190000000039], [1.5653260000000273, 1.5655130000000099], [1.5753260000000182, 1.5755120000000034], [1.585316999999975, 1.5855250000000183], [1.5953309999999874, 1.5955200000000218], [1.6020030000000247, 1.6020790000000034], [1.6486489999999776, 1.6491439999999784], [1.6553490000000011, 1.6555339999999887], [1.6653259999999932, 1.6655129999999758], [1.6753309999999715, 1.6755200000000059], [1.6853290000000243, 1.6855499999999779], [1.7486640000000193, 1.74916300000001], [1.7553389999999922, 1.7555249999999774], [1.7653250000000185, 1.765513999999996], [1.7753289999999993, 1.7755159999999819], [1.7853269999999952, 1.7856479999999806], [1.7856850000000009, 1.7857950000000073], [1.7953229999999962, 1.7955119999999738], [1.8053259999999796, 1.8055059999999798], [1.8153310000000147, 1.8155199999999923], [1.8253240000000233, 1.8255130000000008], [1.835329999999999, 1.8355460000000221], [1.8453230000000076, 1.8455109999999877], [1.8486480000000256, 1.8491490000000113], [1.8553360000000225, 1.8555250000000001], [1.8653279999999768, 1.8655150000000162], [1.8753300000000195, 1.8755160000000046], [1.8853209999999763, 1.8855439999999817], [1.8953260000000114, 1.8955139999999915], [1.9053230000000099, 1.9055119999999874], [1.9153319999999781, 1.9155220000000099], [1.9253239999999892, 1.925514000000021], [1.9353249999999775, 1.9355509999999754], [1.9453260000000228, 1.9455150000000003], [1.9486479999999915, 1.9491520000000264], [1.9553429999999707, 1.9555280000000153], [1.9653240000000096, 1.9655109999999922], [1.9753220000000056, 1.9755109999999831], [1.9853259999999864, 1.9855489999999918], [1.9953229999999849, 1.9955100000000243], [2.005314999999996, 2.0055029999999761], [2.0153250000000185, 2.0155120000000011], [2.0253280000000018, 2.0255159999999819], [2.0353200000000129, 2.0355309999999918], [2.0453239999999937, 2.0455140000000256], [2.0486450000000218, 2.0491470000000049], [2.0553239999999846, 2.0555100000000266], [2.0653300000000172, 2.0655179999999973], [2.0686799999999721, 2.0693089999999756], [2.0696760000000154, 2.0696970000000192], [2.0697230000000104, 2.0697630000000231], [2.0698049999999739, 2.069814000000008], [5.5975540000000024, 5.5975770000000011], [7.1320989999999824, 7.1321209999999837], [7.1353480000000218, 7.1355689999999754], [7.1453200000000265, 7.1455080000000066], [7.1486429999999928, 7.1491350000000011], [7.1553480000000036, 7.1555329999999913], [7.1653249999999957, 7.1655149999999708], [7.1753249999999866, 7.1755120000000261], [7.1853280000000268, 7.1855499999999779], [7.1953280000000177, 7.1955179999999928], [7.2053300000000036, 7.2055179999999837], [7.2153250000000071, 7.2155109999999922], [7.2253240000000005, 7.2255079999999907], [7.2353249999999889, 7.2355479999999943], [7.2453209999999899, 7.2455110000000218], [7.2486450000000104, 7.2491489999999885], [7.2553399999999897, 7.255531000000019], [7.2653260000000159, 7.265513999999996], [7.275320000000022, 7.2755080000000021], [7.2853250000000003, 7.2855490000000032], [7.2953279999999836, 7.2955150000000231], [7.3053259999999796, 7.3055140000000165], [7.3153260000000273, 7.3155160000000024], [7.3253260000000182, 7.3255110000000059], [7.3353250000000116, 7.3355490000000145], [7.3453210000000126, 7.3455109999999877], [7.3486429999999814, 7.3491389999999797], [7.355335000000025, 7.3555220000000077], [7.3653310000000261, 7.3655180000000087], [7.3753399999999942, 7.3755239999999844], [7.385327000000018, 7.3855510000000208], [7.3953250000000139, 7.395512999999994], [7.4053260000000023, 7.4055129999999849], [7.4153160000000184, 7.415506999999991], [7.425329999999974, 7.4255170000000135], [7.4353169999999977, 7.4355429999999956], [7.4453270000000202, 7.4455130000000054], [7.4486380000000167, 7.4491179999999986], [7.4552590000000123, 7.4554200000000037], [7.4652350000000069, 7.4653839999999718], [7.4752369999999928, 7.4753820000000246], [7.4852329999999938, 7.4854109999999991], [7.4952309999999898, 7.4953780000000165], [7.5052350000000274, 7.5053829999999948], [7.5153179999999793, 7.5155030000000238], [7.5253270000000043, 7.5255169999999794], [7.5353230000000053, 7.5355490000000032], [7.5453229999999962, 7.5455109999999763], [7.5486460000000193, 7.5491480000000024], [7.5553390000000036, 7.5555239999999912], [7.5653270000000248, 7.5655130000000099], [7.5753240000000233, 7.5755110000000059], [7.5853129999999851, 7.5855230000000233], [7.595326, 7.5955180000000269], [7.605323999999996, 7.6055119999999761], [7.6153249999999844, 7.6155150000000162], [7.6253259999999727, 7.6255100000000198], [7.635325000000023, 7.6355490000000259], [7.6453139999999848, 7.6455000000000268], [7.6486400000000003, 7.6491379999999936], [7.6553390000000263, 7.655524000000014], [7.6653239999999983, 7.6655079999999884], [7.6753249999999866, 7.6755109999999718], [7.6853269999999725, 7.6855489999999804], [7.6953169999999886, 7.6954789999999775], [7.7048889999999801, 7.7049420000000168], [7.7153190000000222, 7.7155040000000099], [7.7253420000000119, 7.7255260000000021], [7.7353239999999914, 7.7355489999999918], [7.7453310000000215, 7.7455180000000041], [7.7486450000000104, 7.7491489999999885], [7.7553379999999947, 7.7555259999999748], [7.7653209999999717, 7.7655090000000087], [7.7753220000000169, 7.7755109999999945], [7.7853289999999902, 7.7855500000000006], [7.7953239999999937, 7.7955109999999763], [7.8053249999999821, 7.805513000000019], [7.8153189999999881, 7.8155029999999783], [7.8253240000000233, 7.8255120000000034], [7.8353260000000091, 7.835552000000007], [7.8453309999999874, 7.8455210000000193], [7.8486409999999864, 7.8491369999999847], [7.8553390000000149, 7.8555240000000026], [7.8653249999999844, 7.865509999999972], [7.8753239999999778, 7.8755110000000172], [7.8853290000000129, 7.8855540000000133], [7.8953149999999823, 7.895497999999975], [7.9053250000000048, 7.9055099999999925], [7.9153259999999932, 7.9155079999999884], [7.9253229999999917, 7.9255089999999768], [7.9353229999999826, 7.9355410000000006], [7.945321999999976, 7.9455070000000205], [7.948646999999994, 7.9491429999999923], [7.9553369999999859, 7.9555260000000203], [7.9653319999999894, 7.965518999999972], [7.9753259999999955, 7.9755119999999806], [7.985322999999994, 7.9855440000000044], [7.9953209999999899, 7.9955069999999751], [8.0049660000000245, 8.0051250000000209], [8.0153290000000084, 8.0155169999999885], [8.0253420000000233, 8.0255280000000084], [8.0353190000000154, 8.0355420000000208], [8.0453269999999861, 8.0455150000000231], [8.0486430000000269, 8.0491509999999948], [8.0553400000000011, 8.0555259999999862], [8.0653320000000122, 8.0655199999999923], [8.075318999999979, 8.0755100000000084], [8.0853240000000142, 8.0855480000000171], [8.0953190000000177, 8.0955050000000028], [8.1053229999999985, 8.1055099999999811], [8.1153249999999844, 8.1155140000000188], [8.1253249999999753, 8.1255160000000046], [8.1353229999999712, 8.1355490000000259], [8.1453189999999722, 8.1455080000000066], [8.1486419999999953, 8.1491379999999936], [8.1553269999999998, 8.1555149999999799], [8.1653249999999957, 8.1655139999999733], [8.1753289999999765, 8.1755150000000185], [8.1853209999999876, 8.1855449999999905], [8.1953260000000228, 8.1955150000000003], [8.2053260000000137, 8.2055119999999988], [8.2153279999999995, 8.2155159999999796], [8.2253190000000131, 8.2255030000000033], [8.235322999999994, 8.2355479999999943], [8.2453310000000215, 8.2455160000000092], [8.2486460000000079, 8.2491410000000087], [8.2553359999999998, 8.2555259999999748], [8.2653260000000159, 8.265513999999996], [8.2753270000000043, 8.2755159999999819], [8.2853220000000078, 8.2855460000000107], [8.2953239999999937, 8.2955099999999788], [8.305326999999977, 8.3055089999999723], [8.3153280000000223, 8.3155179999999973], [8.3253290000000106, 8.3255179999999882], [8.3353250000000116, 8.3355530000000044], [8.3453240000000051, 8.3455149999999776], [8.3486459999999738, 8.3491450000000214], [8.3553420000000074, 8.355526999999995], [8.3653299999999717, 8.3655210000000011], [8.3753239999999778, 8.3755140000000097], [8.3853280000000154, 8.3855510000000208], [8.3953260000000114, 8.395514999999989], [8.4053279999999972, 8.4055169999999748], [8.4153259999999932, 8.4155149999999708], [8.425329999999974, 8.425514000000021], [8.4353189999999927, 8.435545999999988], [8.4453260000000228, 8.445510000000013], [8.4486410000000092, 8.4491390000000024], [8.4553379999999834, 8.455522999999971], [8.4653279999999995, 8.4655149999999821], [8.4753220000000056, 8.4755109999999831], [8.4853269999999839, 8.4855499999999893], [8.4953249999999798, 8.4955130000000167], [8.5053229999999758, 8.5055130000000077], [8.5153290000000084, 8.515513999999996], [8.5253220000000169, 8.5255129999999895], [8.5353210000000104, 8.5355440000000158], [8.5453249999999912, 8.5455140000000256], [8.5486419999999725, 8.5491460000000075], [8.5550709999999981, 8.5552359999999794], [8.5653290000000197, 8.5655150000000049], [8.5753240000000233, 8.5755149999999958], [8.5853220000000192, 8.5855300000000057], [8.5953210000000126, 8.5955109999999877], [8.6048940000000016, 8.604994999999974], [8.6149469999999724, 8.6150049999999965], [8.6248989999999708, 8.6249460000000227], [8.6353290000000129, 8.6355530000000158], [8.6453260000000114, 8.6455139999999915], [8.6486580000000117, 8.649156000000005], [8.6553430000000162, 8.6555270000000064], [8.6653269999999907, 8.6655170000000226], [8.6753249999999866, 8.6755109999999718], [8.6853310000000192, 8.6855530000000272], [8.6953290000000152, 8.6955189999999902], [8.705331000000001, 8.7055199999999786], [8.7153240000000096, 8.7155119999999897], [8.7253279999999904, 8.7255139999999756], [8.7352510000000052, 8.7354379999999878], [8.7452329999999847, 8.7453820000000064], [8.7485520000000179, 8.7489869999999996], [8.7553340000000048, 8.7555229999999824], [8.7653189999999768, 8.7655040000000213], [8.7753190000000245, 8.7755089999999996], [8.7853279999999927, 8.7855519999999956], [8.7953259999999887, 8.7955140000000256], [8.8053239999999846, 8.805513000000019], [8.8153209999999831, 8.8155080000000225], [8.8253270000000157, 8.8255120000000034], [8.8353220000000192, 8.8355440000000272], [8.8453190000000177, 8.8455089999999927], [8.848637999999994, 8.8491359999999872], [8.855335000000025, 8.8555210000000102], [8.8653209999999945, 8.8655110000000263], [8.8753270000000271, 8.8755170000000021], [8.8853240000000255, 8.8855479999999716], [8.8953260000000114, 8.8955159999999864], [8.9053260000000023, 8.9055139999999824], [8.9153190000000109, 8.9155079999999884], [8.9253239999999892, 8.9255120000000261], [8.9353239999999801, 8.9355499999999779], [8.9452999999999747, 8.9454640000000154], [8.9486440000000016, 8.9491380000000049], [8.9548940000000243, 8.9549989999999866], [8.9625659999999812, 8.9625859999999875], [8.9642949999999928, 8.9643649999999866], [9.0486549999999966, 9.0491499999999974], [9.0553370000000086, 9.0555229999999938], [9.0653260000000273, 9.065511000000015], [9.0753290000000106, 9.0755169999999907], [9.0853309999999965, 9.0855470000000196], [9.0953289999999924, 9.0955159999999751], [9.1053279999999859, 9.1055150000000253], [9.1153289999999743, 9.1155150000000162], [9.1253330000000119, 9.1255199999999945], [9.135325000000023, 9.1355490000000259], [9.1453200000000265, 9.1455070000000092], [9.1486439999999902, 9.1491429999999809], [9.1553430000000162, 9.1555280000000039], [9.1653259999999932, 9.1655149999999708], [9.1753219999999942, 9.1755099999999743], [9.1853249999999775, 9.1855469999999855], [9.1953310000000101, 9.1955189999999902], [9.205331000000001, 9.2055189999999811], [9.2153299999999945, 9.2155169999999771], [9.2253309999999829, 9.2255180000000223], [9.2353299999999763, 9.2355519999999842], [9.2448959999999829, 9.2450000000000045], [9.2482669999999985, 9.248724999999979], [9.2549050000000079, 9.2549579999999878], [9.2653129999999919, 9.2654810000000225], [9.2753289999999993, 9.2755189999999743], [9.2853200000000129, 9.2855410000000234], [9.2953279999999836, 9.295517000000018], [9.3053170000000023, 9.3055039999999849], [9.315304000000026, 9.3154910000000086], [9.3249020000000087, 9.3249519999999961], [9.3349000000000046, 9.3349870000000124], [9.3453240000000051, 9.3455060000000003], [9.3486459999999738, 9.3491359999999872], [9.3553390000000149, 9.3555230000000051], [9.3653239999999869, 9.3655120000000238], [9.375329000000022, 9.3755170000000021], [9.3853290000000129, 9.3855520000000183], [9.3953270000000089, 9.3955139999999915], [9.4053269999999998, 9.4055159999999773], [9.4153239999999983, 9.4155099999999834], [9.425329999999974, 9.4255170000000135], [9.4353280000000268, 9.4355540000000246], [9.4453260000000228, 9.4455159999999978], [9.448646999999994, 9.4491570000000138], [9.4553419999999733, 9.4555280000000153], [9.4653400000000261, 9.4655179999999746], [9.4753269999999929, 9.4755119999999806], [9.4853279999999813, 9.4855469999999968], [9.4953310000000215, 9.4955199999999991], [9.5053270000000225, 9.5055130000000077], [9.5149490000000014, 9.5150229999999851], [9.5253260000000068, 9.5255109999999945], [9.5353339999999776, 9.5355539999999905], [9.5453279999999836, 9.545517000000018], [9.5486450000000218, 9.5491480000000024], [9.5550719999999956, 9.5552349999999819], [9.5653280000000223, 9.5655120000000124], [9.5753240000000233, 9.5755100000000084], [9.585329999999999, 9.5855409999999779], [9.5953240000000051, 9.5955089999999927], [9.6053279999999859, 9.6055180000000178], [9.6153239999999869, 9.615509999999972], [9.6253219999999828, 9.6255120000000147], [9.6353310000000079, 9.6355570000000057], [9.645321000000024, 9.6455050000000142], [9.6486419999999953, 9.6491469999999708], [9.6553250000000048, 9.6555149999999799], [9.6653299999999831, 9.6655160000000251], [9.6753209999999967, 9.6755079999999793], [9.6853229999999826, 9.6855449999999905], [9.6953260000000228, 9.6955159999999978], [9.7053250000000162, 9.7055119999999988], [9.7153260000000046, 9.7155159999999796], [9.7253299999999854, 9.7255170000000248], [9.7353239999999914, 9.7355440000000044], [9.7453259999999773, 9.7455150000000117], [9.7486480000000029, 9.7491469999999936], [9.7553300000000149, 9.7555150000000026], [9.7653250000000185, 9.765513999999996], [9.7753250000000094, 9.775511999999992], [9.7853240000000028, 9.7855500000000006], [9.7953200000000038, 9.7955079999999839], [9.8053229999999871, 9.8055110000000241], [9.815322999999978, 9.8155120000000124], [9.8253280000000132, 9.8255159999999933], [9.8353210000000217, 9.8355419999999754], [9.8453250000000025, 9.8455129999999826], [9.8486480000000256, 9.8491510000000062], [9.8553380000000175, 9.8555250000000001], [9.8653249999999844, 9.865509999999972], [9.875329000000022, 9.875518999999997], [9.8849680000000149, 9.8851639999999747], [9.8949109999999791, 9.8949999999999818], [9.9048999999999978, 9.9049539999999752], [9.915300000000002, 9.9154780000000073], [9.9253259999999841, 9.9255109999999718], [9.9353269999999725, 9.9355489999999804], [9.9453340000000026, 9.9455219999999827], [9.9482399999999984, 9.948695999999984], [9.9549369999999726, 9.9549890000000119], [9.965327000000002, 9.9655159999999796], [9.9753259999999955, 9.975514999999973], [9.9853259999999864, 9.9855489999999918], [9.9953259999999773, 9.9955110000000218], [10.005308000000014, 10.005456999999979], [10.015331000000003, 10.015481000000023], [10.025245999999981, 10.025392000000011], [10.03532899999999, 10.035549000000003], [10.045320000000004, 10.045502999999997], [10.048646000000019, 10.049144000000013], [10.055336000000011, 10.055520000000001], [10.065330000000017, 10.065518999999995], [10.075326000000018, 10.075515999999993], [10.085317999999972, 10.08553999999998], [10.09532200000001, 10.095504000000005], [10.105323999999996, 10.105512999999974], [10.115326999999979, 10.115513000000021], [10.125320999999985, 10.125505999999973], [10.135318999999981, 10.135544999999979], [10.145322000000021, 10.145510000000002], [10.14864, 10.149143999999978], [10.155345000000011, 10.155531999999994], [10.165324999999996, 10.165513999999973], [10.175327999999979, 10.175513000000024], [10.185324999999978, 10.185547999999983], [10.195325000000025, 10.195513000000005], [10.205326000000014, 10.205512999999996], [10.215323000000012, 10.215507000000002], [10.225326999999993, 10.225514999999973], [10.235326999999984, 10.235547999999994], [10.245322999999985, 10.245509000000027], [10.248643000000015, 10.249141000000009], [10.255338999999992, 10.25552399999998], [10.265324000000021, 10.265511000000004], [10.275324000000012, 10.275510999999995], [10.285323000000005, 10.285547000000008], [10.295326999999986, 10.295519000000013], [10.305327999999975, 10.305512000000022], [10.315327000000025, 10.315514000000007], [10.325323000000026, 10.325509000000011], [10.335326000000009, 10.335549000000015], [10.345326999999997, 10.34551399999998], [10.348635000000002, 10.349130000000002], [10.355336000000023, 10.355525], [10.365323999999987, 10.365511000000026], [10.375328000000025, 10.375513000000012], [10.385325000000023, 10.385549000000026], [10.395321000000024, 10.395506000000012], [10.404889000000026, 10.404938000000016], [10.415323999999998, 10.415509999999983], [10.425327999999979, 10.425515000000019], [10.43532399999998, 10.435546999999985], [10.445325000000025, 10.445515], [10.448644999999999, 10.44914399999999], [10.455328000000009, 10.455517999999984], [10.46532000000002, 10.465507000000002], [10.475324000000001, 10.475510999999983], [10.485328999999979, 10.485542000000009], [10.495332000000019, 10.495518000000004], [10.505038000000013, 10.505200000000002], [10.515322000000026, 10.515509000000009], [10.525324000000012, 10.525509], [10.535329999999988, 10.535551999999996], [10.545322999999996, 10.545508999999981], [10.548647000000017, 10.549132999999983], [10.555337000000009, 10.555522999999994], [10.56532900000002, 10.565514000000007], [10.575562999999988, 10.575617000000022], [10.577701999999988, 10.577729999999974], [10.577784000000008, 10.577809000000002]], \"3\": [[0.34863699999999653, 0.34913000000000238], [0.35533299999997325, 0.35552200000000767], [0.36530800000002728, 0.36546600000002627], [0.37533500000000686, 0.37552299999998695], [0.38531199999999899, 0.38559400000002597], [0.38573700000000599, 0.38583899999997584], [0.39533299999999372, 0.39552099999997381], [0.4053079999999909, 0.40546599999998989], [0.41532699999999068, 0.41551199999997834], [0.4253100000000245, 0.42546900000002097], [0.43533200000001671, 0.435545999999988], [0.44530800000001136, 0.4454680000000053], [0.44866200000001299, 0.44915300000002389], [0.45533299999999599, 0.45552099999997608], [0.46530599999999822, 0.46546599999999216], [0.47533099999998285, 0.47551800000002231], [0.48531400000001668, 0.48551700000001574], [0.4953310000000215, 0.49552099999999655], [0.50531100000000606, 0.505471], [0.51533000000000584, 0.51551799999998593], [0.52530799999999545, 0.52546699999999191], [0.53533299999998007, 0.53555599999998549], [0.54530999999997221, 0.54547100000002047], [0.54866299999997636, 0.54916200000002391], [0.55509200000000192, 0.55525999999997566], [0.56530500000002348, 0.56544900000000098], [0.57531599999998662, 0.57547899999997298], [0.58530700000000024, 0.58550999999999931], [0.59531399999997348, 0.59547800000001416], [0.60530199999999468, 0.60545899999999619], [0.61531600000000708, 0.61547799999999597], [0.62531000000001313, 0.62546400000002222], [0.63531199999999899, 0.63552199999998038], [0.64530400000001009, 0.64546599999999899], [0.64864299999999275, 0.64914499999997588], [0.65532799999999725, 0.65551599999997734], [0.6653039999999919, 0.66546399999998584], [0.67533300000002328, 0.67552000000000589], [0.68531300000000783, 0.68551700000000437], [0.69532299999997349, 0.69551100000001043], [0.70530800000000227, 0.70545900000001893], [0.71533199999998942, 0.71552100000002383], [0.7253109999999765, 0.72547100000002729], [0.73533099999997376, 0.73554500000000189], [0.74530599999997094, 0.74547000000001162], [0.74865599999998267, 0.74914999999998599], [0.75533500000000231, 0.75552499999997735], [0.76530999999999949, 0.76546899999999596], [0.77533099999999422, 0.77551999999997179], [0.7853139999999712, 0.78552100000001701], [0.7953319999999735, 0.79552000000001044], [0.80531500000000733, 0.80547500000000127], [0.81533899999999448, 0.81552499999997963], [0.82531099999999924, 0.82547199999999066], [0.83501599999999598, 0.8351430000000164], [0.84488900000002332, 0.84497699999997167], [0.84824199999997063, 0.84870100000000548], [0.85491200000001299, 0.85499700000002576], [0.8649340000000052, 0.86500000000000909], [0.87491499999998723, 0.87497899999999618], [0.88491099999998823, 0.88504699999998593], [0.88519000000002279, 0.88524300000000267], [0.89491800000001831, 0.89499599999999191], [0.90490899999997509, 0.90498000000002321], [0.91493700000000899, 0.91502300000001924], [0.92491300000000365, 0.92496399999998857], [0.93530099999998129, 0.93558500000000322], [0.93570099999999456, 0.93579899999997451], [0.94531399999999621, 0.94547099999999773], [1.605197999999973, 1.605212999999992], [1.6149490000000242, 1.6150240000000053], [1.6253080000000182, 1.6254690000000096], [1.6353060000000141, 1.635501999999974], [1.6453109999999924, 1.6454709999999864], [1.6957509999999729, 1.6964919999999779], [1.7053080000000023, 1.7054669999999987], [1.7153230000000121, 1.7155060000000049], [1.72496000000001, 1.7250859999999761], [1.734911000000011, 1.7350720000000024], [1.7352070000000026, 1.735258999999985], [1.7453120000000126, 1.7454710000000091], [2.0716919999999845, 2.0717089999999985], [2.0717280000000073, 2.0717740000000049], [2.0722020000000043, 2.0722099999999841], [2.0722160000000258, 2.072242000000017], [2.0734659999999963, 2.0734800000000178], [2.0735000000000241, 2.0735070000000064], [2.0735129999999913, 2.0735270000000128], [2.0740289999999959, 2.0740410000000224], [2.0749040000000036, 2.0749839999999722], [2.0853190000000268, 2.0855159999999842], [2.0953069999999911, 2.0954679999999826], [2.1053130000000237, 2.1054790000000025], [2.1119790000000194, 2.1121210000000019], [7.0917279999999892, 7.0917410000000132], [7.0918990000000122, 7.091904999999997], [8.9645090000000209, 8.9645249999999805], [8.9649239999999963, 8.9650030000000243], [8.974913000000015, 8.9749760000000265], [8.9852559999999926, 8.9854520000000093], [8.9949530000000095, 8.9950660000000084], [9.0049159999999802, 9.0049880000000257], [9.0149379999999724, 9.0150179999999978], [9.0249220000000037, 9.0250199999999836], [9.0349150000000122, 9.0350169999999821], [9.0452670000000239, 9.0454100000000039]]}, \"rt-app-4662\": {\"1\": [[0.28863200000000688, 0.28865400000000818]]}, \"rt-app-4660\": {\"1\": [[0.28761800000000903, 0.28763800000001538], [0.28771799999998393, 0.2878029999999967]]}, \"task3-4662\": {\"0\": [[0.30509899999998424, 0.30513700000000199], [0.30552499999998872, 0.30558500000000777], [0.30563899999998512, 0.30569000000002688], [0.30571199999997134, 0.30618700000002264], [0.30633799999998246, 0.31154099999997698], [0.31820599999997512, 0.32487300000002506], [0.33153700000002573, 0.33821000000000367], [0.34487000000001444, 0.35154099999999744], [0.35820999999998548, 0.36486999999999625], [0.37155999999998812, 0.37820799999997234], [0.38486999999997806, 0.39153599999997368], [0.39820900000000847, 0.40487000000001672], [0.41153600000001234, 0.41820799999999281], [0.42486999999999853, 0.43153599999999415], [0.43820799999997462, 0.44487099999997781], [0.45154100000002018, 0.45820800000001327], [0.46487000000001899, 0.47153700000001209], [0.47820699999999761, 0.4848700000000008], [0.49153599999999642, 0.49820899999997437], [0.50486999999998261, 0.51153599999997823], [0.51820900000001302, 0.52487000000002126], [0.53153600000001688, 0.53820799999999736], [0.54487000000000307, 0.55154900000002272], [0.55820299999999179, 0.56487399999997479], [0.57153899999997293, 0.57820800000001782], [0.58487300000001596, 0.59153900000001158], [0.5982089999999971, 0.60487299999999777], [0.61153899999999339, 0.61820899999997891], [0.62487199999998211, 0.63154400000001942], [0.63820800000002009, 0.64487300000001824], [0.65154100000000881, 0.6582080000000019], [0.66487000000000762, 0.67153600000000324], [0.67820799999998371, 0.68487099999998691], [0.69153599999998505, 0.69820800000002237], [0.70486999999997124, 0.71153600000002371], [0.7182070000000067, 0.7248700000000099], [0.73153800000000047, 0.73820899999998346], [0.74487099999998918, 0.75154199999997218], [0.75820800000002464, 0.76487099999997099], [0.77153600000002598, 0.7782060000000115], [0.78487000000001217, 0.79153700000000526], [0.79820699999999078, 0.80486999999999398], [0.8115359999999896, 0.81820900000002439], [0.82486899999997831, 0.83153499999997393], [0.8382090000000062, 0.84487300000000687], [0.85153900000000249, 0.85820400000000063], [0.86486999999999625, 0.8715349999999944], [0.87820399999998244, 0.88486999999997806], [0.8917030000000068, 0.89820600000001605], [0.90487000000001672, 0.91076500000002625], [0.91820899999999028, 0.92486900000000105], [0.931541999999979, 0.93821100000002389], [0.94487099999997781, 0.95154200000001765], [0.9582070000000158, 0.96486900000002152], [0.97153800000000956, 0.97820899999999256], [0.9848700000000008, 0.99153599999999642], [0.99820799999997689, 0.99856599999998252], [0.99879900000001953, 0.99989599999997836], [1.0000640000000089, 1.0082090000000221], [1.0182080000000155, 1.0248700000000213], [1.0348700000000122, 1.0415370000000053], [1.0482079999999883, 1.0548689999999965], [1.0615359999999896, 1.0682059999999751], [1.0748689999999783, 1.0815370000000257], [1.0882080000000087, 1.0948700000000144], [1.1015370000000075, 1.1082079999999905], [1.1148689999999988, 1.1215369999999893], [1.1282079999999723, 1.1348699999999781], [1.1415369999999712, 1.148208000000011], [1.1548720000000117, 1.1615370000000098], [1.1682069999999953, 1.1748699999999985], [1.1815379999999891, 1.1882079999999746], [1.1913829999999734, 1.1982120000000123], [1.2048730000000205, 1.2115370000000212], [1.2182070000000067, 1.2248700000000099], [1.231537000000003, 1.2382020000000011], [1.2448719999999867, 1.2515419999999722], [1.2582059999999728, 1.2648699999999735], [1.2715380000000209, 1.278207000000009], [1.2848700000000122, 1.2915370000000053], [1.2982079999999883, 1.3048689999999965], [1.311538999999982, 1.3182059999999751], [1.3248709999999733, 1.3315370000000257], [1.3382080000000087, 1.3448700000000144], [1.3515409999999974, 1.3582069999999931], [1.3648699999999963, 1.3715389999999843], [1.3782069999999749, 1.3848699999999781], [1.3915339999999787, 1.3982070000000135], [1.4048710000000142, 1.4115409999999997], [1.4182190000000219, 1.424870999999996], [1.4315369999999916, 1.4382069999999771], [1.4448719999999753, 1.4515410000000202], [1.4582080000000133, 1.4648690000000215], [1.4715360000000146, 1.4782079999999951], [1.4848709999999983, 1.4915369999999939], [1.4982069999999794, 1.5048699999999826], [1.5115359999999782, 1.5182080000000155], [1.5248700000000213, 1.5315370000000144], [1.5382079999999974, 1.5448700000000031], [1.5515409999999861, 1.5582069999999817], [1.5648699999999849, 1.5715359999999805], [1.5782179999999926, 1.5848700000000235], [1.5915370000000166, 1.5982070000000022], [1.6048700000000053, 1.611536000000001], [1.6182039999999915, 1.6248749999999745], [1.6315389999999752, 1.6382080000000201], [1.6448750000000132, 1.6515420000000063], [1.6582080000000019, 1.6648700000000076], [1.6715449999999805, 1.6782079999999837], [1.6848699999999894, 1.6882289999999784], [1.6919409999999857, 1.6925469999999905], [1.6926589999999919, 1.693444999999997], [1.6937139999999999, 1.6942750000000046], [1.697936000000027, 1.7048710000000256], [1.714870000000019, 1.7182129999999916], [1.7199259999999867, 1.7282069999999976], [1.7382039999999961, 1.7448779999999715], [1.7515419999999722, 1.7582080000000246], [1.7648699999999735, 1.7715370000000235], [1.7782080000000065, 1.7848700000000122], [1.7915360000000078, 1.7982069999999908], [1.8048709999999915, 1.8115369999999871], [1.8182069999999726, 1.8248689999999783], [1.8315370000000257, 1.8382090000000062], [1.8448700000000144, 1.8515409999999974], [1.8582069999999931, 1.8648689999999988], [1.8715379999999868, 1.8782069999999749], [1.8848730000000273, 1.8915369999999712], [1.8982070000000135, 1.9048700000000167], [1.9115370000000098, 1.9182069999999953], [1.9248699999999985, 1.9315439999999739], [1.9382079999999746, 1.9448689999999829], [1.9515410000000202, 1.9582070000000158], [1.964870000000019, 1.9715370000000121], [1.9782069999999976, 1.9848690000000033], [1.9915369999999939, 1.9982069999999794], [2.0082080000000246, 2.014868999999976], [2.0215370000000235, 2.0282080000000065], [2.0348690000000147, 2.0415370000000053], [2.0482069999999908, 2.0548709999999915], [2.0615460000000212, 2.0682059999999751], [2.0735220000000254, 2.081546000000003], [2.0915600000000154, 2.0982079999999996], [2.1048720000000003, 2.1115379999999959], [2.118206999999984, 2.1248699999999872], [2.1315399999999727, 2.1382080000000201], [2.1448720000000208, 2.1515430000000038], [2.1582070000000044, 2.1648700000000076], [2.1715370000000007, 2.1782079999999837], [2.184868999999992, 2.1915430000000242], [2.1982070000000249, 2.2048699999999712], [2.2115370000000212, 2.2182070000000067], [2.2248690000000124, 2.231537000000003], [2.2382069999999885, 2.2448689999999942], [2.2515399999999772, 2.2582070000000272], [2.2648699999999735, 2.2715370000000235], [2.2782060000000115, 2.2848710000000096], [2.2915370000000053, 2.2982069999999908], [2.304869999999994, 2.3115379999999845], [2.3182069999999726, 2.3248709999999733], [2.3315370000000257, 2.3382060000000138], [2.344869000000017, 2.3515390000000025], [2.3582069999999931, 2.3648699999999963], [2.3715379999999868, 2.3782069999999749], [2.3848689999999806, 2.3915349999999762], [2.3982070000000135, 2.4048690000000192], [2.4115370000000098, 2.4182059999999979], [2.4248690000000011, 2.4315369999999916], [2.4382069999999771, 2.4448699999999803], [2.4515420000000177, 2.4582070000000158], [2.4648690000000215, 2.4715370000000121], [2.4782069999999976, 2.4848700000000008], [2.4915369999999939, 2.4982079999999769], [2.5048689999999851, 2.5115369999999757], [2.5182070000000181, 2.5248710000000187], [2.5315400000000068, 2.5382079999999974], [2.5448700000000031, 2.5515419999999835], [2.5582069999999817, 2.5648689999999874], [2.5715379999999755, 2.5782080000000178], [2.584871000000021, 2.5882149999999911], [2.5882399999999848, 2.594869000000017], [2.6015370000000075, 2.6082079999999905], [2.6148689999999988, 2.6215369999999893], [2.6282069999999749, 2.6348689999999806], [2.6415369999999712, 2.6482070000000135], [2.6548710000000142, 2.6615370000000098], [2.6682069999999953, 2.6748690000000011], [2.6815369999999916, 2.6882069999999771], [2.6948689999999829, 2.7015369999999734], [2.7082070000000158, 2.714870000000019], [2.7215370000000121, 2.7282069999999976], [2.7348690000000033, 2.7415369999999939], [2.7482089999999744, 2.7548709999999801], [2.7615379999999732, 2.7682199999999852], [2.7748720000000162, 2.7815370000000144], [2.7882069999999999, 2.7948700000000031], [2.8015369999999962, 2.8082069999999817], [2.8148689999999874, 2.821536999999978], [2.8282070000000203, 2.8348690000000261], [2.8415519999999788, 2.8482060000000047], [2.8548690000000079, 2.8615419999999858], [2.868206999999984, 2.8748689999999897], [2.8815369999999803, 2.8882070000000226], [2.8948689999999715, 2.9015380000000164], [2.9082070000000044, 2.9148720000000026], [2.9215360000000032, 2.9282069999999862], [2.934868999999992, 2.9415359999999851], [2.9482070000000249, 2.9548699999999712], [2.9615370000000212, 2.9682070000000067], [2.9748710000000074, 2.981537000000003], [2.9882029999999986, 2.9948679999999968], [3.0015369999999848, 3.0016989999999737], [3.001893999999993, 3.002997999999991], [3.0082070000000272, 3.014868999999976], [3.0215370000000235, 3.028207000000009], [3.0348690000000147, 3.0415360000000078], [3.0482069999999908, 3.0548689999999965], [3.0615369999999871, 3.0682069999999726], [3.0748689999999783, 3.0815370000000257], [3.0882060000000138, 3.094869000000017], [3.1015419999999949, 3.1082069999999931], [3.1148689999999988, 3.1215369999999893], [3.1280340000000137, 3.1348699999999781], [3.1415369999999712, 3.1482070000000135], [3.1548710000000142, 3.1615390000000048], [3.1682069999999953, 3.1748690000000011], [3.1815369999999916, 3.1882069999999771], [3.1948689999999829, 3.2015369999999734], [3.2082080000000133, 3.2148710000000165], [3.2215370000000121, 3.2282069999999976], [3.2348680000000058, 3.2415369999999939], [3.2482089999999744, 3.2548699999999826], [3.2615369999999757, 3.2682070000000181], [3.2748690000000238, 3.2815390000000093], [3.2882069999999999, 3.2948690000000056], [3.3015369999999962, 3.3082069999999817], [3.3148689999999874, 3.321536999999978], [3.3282070000000203, 3.3348690000000261], [3.3415370000000166, 3.3482070000000022], [3.3548700000000053, 3.3615399999999909], [3.368206999999984, 3.3748749999999745], [3.3815389999999752, 3.3882080000000201], [3.3948710000000233, 3.4015370000000189], [3.408206000000007, 3.4148700000000076], [3.4215360000000032, 3.4282039999999938], [3.4348699999999894, 3.4415369999999825], [3.4487349999999992, 3.454872000000023], [3.4615339999999719, 3.4682099999999991], [3.4748690000000124, 3.481537000000003], [3.488207999999986, 3.4948699999999917], [3.5015379999999823, 3.5082070000000272], [3.5148720000000253, 3.5215370000000235], [3.528207000000009, 3.5348690000000147], [3.5415360000000078, 3.5482069999999908], [3.5548689999999965, 3.5615359999999896], [3.5682069999999726, 3.5748689999999783], [3.5815359999999714, 3.5882149999999911], [3.5948740000000043, 3.6015370000000075], [3.6082069999999931, 3.6148680000000013], [3.6215399999999818, 3.6282049999999799], [3.6348679999999831, 3.6408969999999954], [3.6423070000000166, 3.6482090000000085], [3.6548710000000142, 3.6615370000000098], [3.6682069999999953, 3.6748680000000036], [3.6815369999999916, 3.6882069999999771], [3.6948689999999829, 3.7015369999999734], [3.7082070000000158, 3.7148690000000215], [3.7215370000000121, 3.7282069999999976], [3.7348690000000033, 3.7415369999999939], [3.7482069999999794, 3.7548709999999801], [3.7615369999999757, 3.7682080000000155], [3.7748690000000238, 3.7815370000000144], [3.7882069999999999, 3.7948690000000056], [3.8015389999999911, 3.8082069999999817], [3.8148689999999874, 3.821536999999978], [3.8282070000000203, 3.8348690000000261], [3.8415370000000166, 3.8482070000000022], [3.8548700000000053, 3.8615369999999984], [3.868206999999984, 3.8748689999999897], [3.8815399999999727, 3.88821200000001], [3.8948689999999715, 3.9015370000000189], [3.9082070000000044, 3.9148690000000101], [3.9215370000000007, 3.9282069999999862], [3.934868999999992, 3.9415389999999775], [3.9482100000000173, 3.9548699999999712], [3.9615370000000212, 3.9682070000000067], [3.9748690000000124, 3.981537000000003], [3.9882069999999885, 3.9948689999999942], [4.0015369999999848, 4.0032219999999938], [4.0046859999999924, 4.0115420000000199], [4.018209000000013, 4.0248690000000238], [4.0315360000000169, 4.0382069999999999], [4.0448700000000031, 4.0515409999999861], [4.0582079999999792, 4.0648689999999874], [4.071536999999978, 4.0782070000000203], [4.0848690000000261, 4.0915360000000192], [4.0982070000000022, 4.1048710000000028], [4.111536000000001, 4.118206999999984], [4.1248699999999872, 4.1315379999999777], [4.138210000000015, 4.1423159999999939], [4.1515400000000113, 4.1582020000000171], [4.1648680000000127, 4.1715379999999982], [4.1782069999999862, 4.184868999999992], [4.1915359999999851, 4.1982060000000274], [4.2048710000000256, 4.2115350000000262], [4.2182060000000092, 4.2248690000000124], [4.2315360000000055, 4.238205999999991], [4.2448689999999942, 4.2515409999999747], [4.2582070000000272, 4.264868999999976], [4.2715410000000134, 4.278207000000009], [4.2848700000000122, 4.2915360000000078], [4.2982069999999908, 4.3048689999999965], [4.3115359999999896, 4.3182069999999726], [4.3248719999999707, 4.3315349999999739], [4.3382070000000112, 4.344869000000017], [4.35154, 4.3582069999999931], [4.3648689999999988, 4.3715349999999944], [4.3782100000000241, 4.3848689999999806], [4.3915359999999737, 4.3982239999999706], [4.4048680000000218, 4.4115350000000149], [4.4182069999999953, 4.4248690000000011], [4.4315349999999967, 4.4382069999999771], [4.4448689999999829, 4.4515410000000202], [4.4582080000000133, 4.4648690000000215], [4.4715360000000146, 4.4782060000000001], [4.4848690000000033, 4.4915349999999989], [4.4982079999999769, 4.5048689999999851], [4.5115349999999808, 4.5182070000000181], [4.5248700000000213, 4.5315429999999992], [4.5382069999999999, 4.5448690000000056], [4.5515419999999835, 4.5582029999999918], [4.5648739999999748, 4.571534999999983], [4.5782080000000178, 4.5848700000000235], [4.5882409999999823, 4.5948680000000195], [4.6015370000000075, 4.6082059999999956], [4.6148699999999963, 4.6215369999999893], [4.6282059999999774, 4.6348699999999781], [4.6415380000000255, 4.6423649999999839], [4.648206000000016, 4.6548700000000167], [4.6615390000000048, 4.6682059999999979], [4.6748690000000011, 4.6815359999999941], [4.6882059999999797, 4.6948689999999829], [4.701535999999976, 4.7082060000000183], [4.7148690000000215, 4.7215360000000146], [4.7282060000000001, 4.7348690000000033], [4.7415359999999964, 4.7482059999999819], [4.7548709999999801, 4.7615359999999782], [4.7682060000000206, 4.7748690000000238], [4.7815360000000169, 4.7882050000000049], [4.7948700000000031, 4.8015359999999987], [4.8082059999999842, 4.8148689999999874], [4.8215359999999805, 4.8282050000000254], [4.8348690000000261, 4.8415360000000192], [4.8482050000000072, 4.8548690000000079], [4.861536000000001, 4.8682059999999865], [4.8748689999999897, 4.8815359999999828], [4.8882060000000251, 4.8948669999999765], [4.901535000000024, 4.908204000000012], [4.9148739999999975, 4.9215389999999957], [4.9282059999999888, 4.934868999999992], [4.9415359999999851, 4.9482060000000274], [4.9548689999999738, 4.9615380000000187], [4.9682060000000092, 4.9748690000000124], [4.9815360000000055, 4.988205999999991], [4.9948709999999892, 5.0015369999999848], [5.004965000000027, 5.0115359999999782], [5.0182070000000181, 5.0248690000000238], [5.0315360000000169, 5.0382069999999999], [5.0448690000000056, 5.051544999999976], [5.0582069999999817, 5.0648689999999874], [5.0715359999999805, 5.0782060000000229], [5.0848700000000235, 5.0915360000000192], [5.0982070000000022, 5.1048690000000079], [5.111536000000001, 5.118206999999984], [5.1248689999999897, 5.1315359999999828], [5.1382070000000226, 5.1424260000000004], [5.1482050000000186, 5.1548690000000192], [5.1615360000000123, 5.1682050000000004], [5.1748699999999985, 5.1815389999999866], [5.1882049999999822, 5.1948689999999829], [5.201535999999976, 5.2082050000000208], [5.214870000000019, 5.2215360000000146], [5.2282050000000027, 5.2348690000000033], [5.2415359999999964, 5.2482049999999845], [5.2548689999999851, 5.2615359999999782], [5.2682050000000231, 5.2748690000000238], [5.2815360000000169, 5.2882050000000049], [5.2948690000000056, 5.3015359999999987], [5.3082049999999867, 5.3148699999999849], [5.3215359999999805, 5.3282050000000254], [5.3348690000000261, 5.3415360000000192], [5.3482050000000072, 5.3548690000000079], [5.3615379999999959, 5.368204999999989], [5.3748689999999897, 5.3815349999999853], [5.3882039999999733, 5.3948659999999791], [5.4015380000000164, 5.408206000000007], [5.4148690000000101, 5.4215350000000058], [5.4282109999999761, 5.434868999999992], [5.441539999999975, 5.4482070000000249], [5.4548689999999738, 5.4615360000000237], [5.4682050000000118, 5.4748690000000124], [5.4815360000000055, 5.4882049999999936], [5.4948689999999942, 5.5015359999999873], [5.5082049999999754, 5.514868999999976], [5.521536000000026, 5.528205000000014], [5.5348710000000096, 5.5415360000000078], [5.5482049999999958, 5.5548689999999965], [5.5615359999999896, 5.5682059999999751], [5.5748699999999758, 5.5815349999999739], [5.5882339999999999, 5.5948839999999791], [5.6007480000000101, 5.600970000000018], [5.6010099999999738, 5.6011520000000132], [5.6011889999999767, 5.6013350000000059], [5.6013720000000262, 5.6015199999999936], [5.6015959999999723, 5.6017059999999788], [5.6019229999999993, 5.6020659999999793], [5.6033590000000117, 5.6115389999999934], [5.6215379999999868, 5.6282069999999749], [5.6348699999999781, 5.6415369999999712], [5.6482090000000085, 5.6548700000000167], [5.6615370000000098, 5.6682059999999979], [5.674870999999996, 5.6815369999999916], [5.6882069999999771, 5.6948699999999803], [5.7015400000000227, 5.7082070000000158], [5.714870000000019, 5.7215380000000096], [5.7282060000000001, 5.7348700000000008], [5.7415359999999964, 5.7482059999999819], [5.7548699999999826, 5.7615379999999732], [5.7682050000000231, 5.7748700000000213], [5.7815370000000144, 5.7882050000000049], [5.7948700000000031, 5.8015359999999987], [5.8082059999999842, 5.8148689999999874], [5.8215359999999805, 5.8282050000000254], [5.8348659999999768, 5.8415340000000242], [5.8482040000000097, 5.8548680000000104], [5.861536000000001, 5.8682039999999915], [5.8748699999999872, 5.8815359999999828], [5.8882039999999733, 5.8948689999999715], [5.9015390000000139, 5.9082020000000171], [5.915602999999976, 5.9165300000000229], [5.9167320000000245, 5.9184379999999805], [5.9248749999999859, 5.9315359999999941], [5.9382079999999746, 5.9448750000000246], [5.9515430000000151, 5.9582070000000158], [5.964870000000019, 5.9715340000000197], [5.9782069999999976, 5.9848690000000033], [5.9915399999999863, 5.998201999999992], [6.0048679999999877, 6.0115389999999707], [6.0182060000000206, 6.0248680000000263], [6.0315350000000194, 6.0382060000000024], [6.041624000000013, 6.0482069999999908], [6.0548689999999965, 6.0615359999999896], [6.0682049999999776, 6.0748689999999783], [6.0815359999999714, 6.0882060000000138], [6.0948700000000144, 6.1015360000000101], [6.1082059999999956, 6.1148689999999988], [6.1215359999999919, 6.1282049999999799], [6.1348689999999806, 6.1415359999999737], [6.148206000000016, 6.1548690000000192], [6.1615360000000123, 6.1682059999999979], [6.1748670000000061, 6.1815339999999992], [6.1882049999999822, 6.1948709999999778], [6.2015390000000252, 6.2082080000000133], [6.2148710000000165, 6.221541000000002], [6.2282069999999976, 6.2348709999999983], [6.2415379999999914, 6.2482069999999794], [6.2548689999999851, 6.2615359999999782], [6.2682050000000231, 6.2748690000000238], [6.2815360000000169, 6.2882060000000024], [6.2948690000000056, 6.3015359999999987], [6.3082049999999867, 6.310766000000001], [6.3182080000000269, 6.3248699999999758], [6.3315359999999714, 6.3382060000000138], [6.3448700000000144, 6.3515550000000189], [6.3582069999999931, 6.3648680000000013], [6.3715359999999919, 6.3782069999999749], [6.3848679999999831, 6.3915349999999762], [6.3982009999999718, 6.4048690000000192], [6.4115340000000174, 6.4182059999999979], [6.4248690000000011, 6.4315349999999967], [6.4382059999999797, 6.4448699999999803], [6.4515390000000252, 6.4582080000000133], [6.4648690000000215, 6.4715360000000146], [6.4782060000000001, 6.4848690000000033], [6.4915349999999989, 6.4982079999999769], [6.5048689999999851, 6.5115349999999808], [6.5182060000000206, 6.5248700000000213], [6.5315350000000194, 6.5382060000000024], [6.5448690000000056, 6.5515419999999835], [6.5582079999999792, 6.5648679999999899], [6.571534999999983, 6.5782060000000229], [6.5848690000000261, 6.5915380000000141], [6.5982070000000022, 6.6048680000000104], [6.6115389999999934, 6.6182029999999941], [6.624875999999972, 6.6315379999999777], [6.6382080000000201, 6.6426069999999982], [6.6426500000000033, 6.648208000000011], [6.6548690000000192, 6.6615350000000149], [6.6682069999999953, 6.6748680000000036], [6.6815349999999967, 6.6882059999999797], [6.6948689999999829, 6.7015379999999709], [6.7082070000000158, 6.714868000000024], [6.721539000000007, 6.7282069999999976], [6.7348680000000058, 6.7415389999999888], [6.7482069999999794, 6.7548699999999826], [6.7615359999999782, 6.7682050000000231], [6.7748690000000238, 6.7815370000000144], [6.7882060000000024, 6.7948700000000031], [6.8015330000000063, 6.8082009999999968], [6.8134029999999939, 6.821534999999983], [6.8315339999999765, 6.8382020000000239], [6.8482040000000097, 6.8548690000000079], [6.861536000000001, 6.8682079999999814], [6.8748699999999872, 6.8815359999999828], [6.8882070000000226, 6.8948689999999715], [6.9015360000000214, 6.9082070000000044], [6.9148680000000127, 6.9215360000000032], [6.9282059999999888, 6.934868999999992], [6.9415359999999851, 6.9482070000000249], [6.9548699999999712, 6.9615360000000237], [6.9682109999999966, 6.9748690000000124], [6.9815360000000055, 6.988205999999991], [6.9948679999999968, 7.0015359999999873], [7.0082029999999804, 7.014868999999976], [7.021536000000026, 7.0282060000000115], [7.0348680000000172, 7.0415360000000078], [7.0482059999999933, 7.054869999999994], [7.061538999999982, 7.0682059999999751], [7.0748679999999808, 7.081532999999979], [7.0882070000000112, 7.0948730000000069], [7.1015729999999735, 7.1019959999999855], [7.1022530000000188, 7.1023559999999861], [7.1023969999999963, 7.1025000000000205], [7.1025359999999864, 7.1026820000000157], [7.1027159999999867, 7.1028680000000008], [7.1029080000000135, 7.1030610000000252], [7.1031060000000252, 7.1032389999999737], [7.1032759999999939, 7.1034159999999815], [7.103476999999998, 7.1035959999999818], [7.103699000000006, 7.111536000000001], [7.118206999999984, 7.1248689999999897], [7.1315569999999866, 7.1382060000000251], [7.1427259999999819, 7.1482070000000135], [7.1548690000000192, 7.1615360000000123], [7.1682059999999979, 7.1748680000000036], [7.1815339999999992, 7.1882059999999797], [7.1948679999999854, 7.201535999999976], [7.2082070000000158, 7.214868000000024], [7.2215360000000146, 7.2282069999999976], [7.2348690000000033, 7.2415369999999939], [7.2482069999999794, 7.2548689999999851], [7.2615410000000224, 7.2682060000000206], [7.2748680000000263, 7.2815360000000169], [7.2882060000000024, 7.2948680000000081], [7.3015359999999987, 7.3082059999999842], [7.3148679999999899, 7.3215359999999805], [7.3282080000000178, 7.3348679999999717], [7.3415360000000192, 7.3482060000000047], [7.3548690000000079, 7.361536000000001], [7.368204999999989, 7.3748679999999922], [7.3815359999999828, 7.3882060000000251], [7.3948689999999715, 7.4015319999999747], [7.4082070000000044, 7.4148680000000127], [7.4215360000000032, 7.4282079999999837], [7.4348679999999945, 7.4415359999999851], [7.4482100000000173, 7.4548679999999763], [7.461545000000001, 7.4682060000000092], [7.4748680000000149, 7.4815409999999929], [7.4882049999999936, 7.4948679999999968], [7.5015339999999924, 7.5082049999999754], [7.5148679999999786, 7.5215420000000108], [7.5282060000000115, 7.5348680000000172], [7.5415350000000103, 7.5482059999999933], [7.554867999999999, 7.5615359999999896], [7.5682059999999751, 7.5748679999999808], [7.5815349999999739, 7.5882159999999885], [7.594869000000017, 7.6015360000000101], [7.6082059999999956, 7.6148680000000013], [7.6215359999999919, 7.6282059999999774], [7.6348679999999831, 7.6415359999999737], [7.6482070000000135, 7.6548700000000167], [7.6615370000000098, 7.6682069999999953], [7.6748690000000011, 7.6815359999999941], [7.6882069999999771, 7.6948689999999829], [7.7015349999999785, 7.7082040000000234], [7.7148720000000139, 7.7215350000000171], [7.7282060000000001, 7.7348680000000058], [7.7415359999999964, 7.7482069999999794], [7.7548699999999826, 7.7615359999999782], [7.7682060000000206, 7.7748680000000263], [7.7815410000000043, 7.7882060000000024], [7.7948680000000081, 7.8015359999999987], [7.8082049999999867, 7.8148679999999899], [7.8215359999999805, 7.8282060000000229], [7.8348679999999717, 7.8415360000000192], [7.8482060000000047, 7.8548700000000053], [7.8615369999999984, 7.8682059999999865], [7.8748679999999922, 7.8815359999999828], [7.8882060000000251, 7.8948720000000208], [7.9015370000000189, 7.908206000000007], [7.9148670000000152, 7.9215370000000007], [7.9282059999999888, 7.9348679999999945], [7.9415359999999851, 7.9482060000000274], [7.9548689999999738, 7.9615360000000237], [7.9682060000000092, 7.9748680000000149], [7.9815360000000055, 7.988205999999991], [7.9948719999999867, 8.0015339999999924], [8.0082019999999829, 8.0148740000000203], [8.0215349999999717, 8.0282060000000115], [8.0348680000000172, 8.0415399999999977], [8.0482059999999933, 8.054869999999994], [8.0615359999999896, 8.0682059999999751], [8.0748679999999808, 8.0815359999999714], [8.0882060000000138, 8.0948680000000195], [8.101538000000005, 8.1082059999999956], [8.1148680000000013, 8.1215359999999919], [8.1282090000000267, 8.1348699999999781], [8.1415359999999737, 8.1427899999999909], [8.142832999999996, 8.1482070000000135], [8.1548680000000218, 8.1615360000000123], [8.1682059999999979, 8.1748690000000011], [8.1815349999999967, 8.1882059999999797], [8.1948679999999854, 8.2015349999999785], [8.2082060000000183, 8.214868000000024], [8.2215350000000171, 8.2282060000000001], [8.2348680000000058, 8.2415349999999989], [8.2482069999999794, 8.2548699999999826], [8.2615349999999808, 8.2682060000000206], [8.2748690000000238, 8.2815370000000144], [8.2882060000000024, 8.2948680000000081], [8.3015389999999911, 8.3082079999999792], [8.3148679999999899, 8.3215359999999805], [8.3282060000000229, 8.3348690000000261], [8.3415350000000217, 8.3482070000000022], [8.3548690000000079, 8.3615350000000035], [8.3682059999999865, 8.3748679999999922], [8.3815349999999853, 8.3882060000000251], [8.394867999999974, 8.4015319999999747], [8.408206000000007, 8.4148680000000127], [8.4215350000000058, 8.4282059999999888], [8.4348679999999945, 8.4415349999999876], [8.4482060000000274, 8.4548679999999763], [8.4615350000000262, 8.4682060000000092], [8.4748680000000149, 8.481535000000008], [8.4882069999999885, 8.4948679999999968], [8.5015349999999899, 8.5082100000000196], [8.5148679999999786, 8.5215349999999717], [8.528205000000014, 8.5348680000000172], [8.5415350000000103, 8.5482059999999933], [8.5548709999999915, 8.5615429999999719], [8.5682059999999751, 8.5748679999999808], [8.5815349999999739, 8.588216999999986], [8.5948680000000195, 8.6015360000000101], [8.6082040000000006, 8.6148680000000013], [8.6215329999999994, 8.6282049999999799], [8.6348760000000198, 8.6415359999999737], [8.648206000000016, 8.6548690000000192], [8.6615360000000123, 8.6682069999999953], [8.6748680000000036, 8.6815359999999941], [8.6882059999999797, 8.6948679999999854], [8.701535999999976, 8.7082060000000183], [8.714868000000024, 8.7215380000000096], [8.7282060000000001, 8.7348680000000058], [8.7415349999999989, 8.7482049999999845], [8.7548679999999877, 8.7615359999999782], [8.7682070000000181, 8.7748680000000263], [8.7815360000000169, 8.7882069999999999], [8.7948700000000031, 8.8015369999999962], [8.8082059999999842, 8.8148679999999899], [8.8215400000000272, 8.8282060000000229], [8.8348679999999717, 8.8415360000000192], [8.8482060000000047, 8.8548690000000079], [8.861536000000001, 8.8682089999999789], [8.8748679999999922, 8.8815359999999828], [8.8882060000000251, 8.894867999999974], [8.9015360000000214, 8.908206000000007], [8.9148680000000127, 8.9215360000000032], [8.9282059999999888, 8.9348699999999894], [8.9415359999999851, 8.9482140000000072], [8.9582060000000183, 8.9623119999999972], [8.9685150000000249, 8.9736219999999776], [8.978746000000001, 8.9838579999999979], [8.992494000000022, 8.998203999999987], [9.010565999999983, 9.0148679999999786], [9.0163600000000201, 9.0171379999999886], [9.0248700000000213, 9.0348700000000122], [9.0415340000000128, 9.0482279999999946], [9.054867999999999, 9.0615359999999896], [9.0682110000000193, 9.0748679999999808], [9.0815519999999879, 9.0882080000000087], [9.0948680000000195, 9.1015350000000126], [9.1082069999999931, 9.1148680000000013], [9.1215359999999919, 9.1282249999999863], [9.1348689999999806, 9.1415369999999712], [9.1482070000000135, 9.1548670000000243], [9.1615350000000149, 9.1682059999999979], [9.1748680000000036, 9.1815339999999992], [9.1882059999999797, 9.1948679999999854], [9.2015349999999785, 9.2082060000000183], [9.2148690000000215, 9.2215350000000171], [9.2282069999999976, 9.2348700000000008], [9.2405779999999709, 9.2482059999999819], [9.2582059999999728, 9.2648790000000076], [9.271536000000026, 9.2782169999999837], [9.2848680000000172, 9.2915360000000078], [9.2982109999999807, 9.304869999999994], [9.3120720000000006, 9.3182059999999751], [9.3248780000000124, 9.3315349999999739], [9.3382070000000112, 9.344869000000017], [9.35154, 9.3582289999999944], [9.3648680000000013, 9.3715349999999944], [9.3782069999999749, 9.3848679999999831], [9.3915349999999762, 9.3982009999999718], [9.4048730000000091, 9.4115370000000098], [9.4182050000000004, 9.4248680000000036], [9.4315359999999941, 9.4382059999999797], [9.4448679999999854, 9.4515390000000252], [9.4582050000000208, 9.4619690000000105], [9.4682090000000017, 9.4748680000000149], [9.481537000000003, 9.488205999999991], [9.4948679999999968, 9.5015359999999873], [9.5082059999999728, 9.5148720000000253], [9.5216030000000274, 9.5282040000000165], [9.5348749999999995, 9.5415350000000103], [9.5482059999999933, 9.5548709999999915], [9.5615399999999795, 9.5682059999999751], [9.5748679999999808, 9.5815339999999765], [9.5882399999999848, 9.594867000000022], [9.60154, 9.6082059999999956], [9.6148670000000038, 9.6215359999999919], [9.6282059999999774, 9.6348679999999831], [9.6415359999999737, 9.6429719999999861], [9.6430280000000153, 9.6482070000000135], [9.6548690000000192, 9.6615360000000123], [9.6682059999999979, 9.6748680000000036], [9.6815349999999967, 9.6882059999999797], [9.6948679999999854, 9.701535999999976], [9.7082060000000183, 9.7148690000000215], [9.7215360000000146, 9.7282060000000001], [9.7348660000000109, 9.7415359999999964], [9.7482059999999819, 9.7548689999999851], [9.7615359999999782, 9.7682060000000206], [9.7748700000000213, 9.7815350000000194], [9.7882060000000024, 9.7948670000000106], [9.8015359999999987, 9.8082059999999842], [9.8148679999999899, 9.821536999999978], [9.8282060000000229, 9.8348679999999717], [9.8415360000000192, 9.8482050000000072], [9.8548690000000079, 9.8615409999999883], [9.8682059999999865, 9.8748679999999922], [9.8815329999999904, 9.8882009999999809], [9.894992000000002, 9.9015340000000265], [9.9083350000000223, 9.9148690000000101], [9.9215360000000032, 9.9282059999999888], [9.9348679999999945, 9.9415369999999825], [9.9482009999999832, 9.9548770000000104], [9.9615370000000212, 9.9682060000000092], [9.9748680000000149, 9.9815360000000055], [9.9882069999999885, 9.9948679999999968], [10.001535999999987, 10.008200999999985], [10.011464999999987, 10.018202999999971], [10.024865999999975, 10.031535000000019], [10.038206000000002, 10.044868000000008], [10.051538999999991, 10.058205999999984], [10.064866999999992, 10.071531999999991], [10.078206000000023, 10.084867999999972], [10.091536000000019, 10.098206000000005], [10.10486800000001, 10.111536000000001], [10.118204999999989, 10.124869999999987], [10.131535999999983, 10.13820800000002], [10.143097000000012, 10.148206000000016], [10.154870000000017, 10.16153700000001], [10.168205999999998, 10.174868000000004], [10.181534999999997, 10.188204999999982], [10.194867999999985, 10.201534999999978], [10.208206000000018, 10.214868000000024], [10.221535000000017, 10.228205000000003], [10.234868000000006, 10.241534999999999], [10.248205999999982, 10.254868999999985], [10.261534999999981, 10.268205000000023], [10.274868000000026, 10.281535000000019], [10.288205000000005, 10.294868000000008], [10.301535000000001, 10.308206999999982], [10.31486799999999, 10.321534999999983], [10.328206000000023, 10.334867999999972], [10.341535000000022, 10.348206000000005], [10.35486800000001, 10.361535000000003], [10.368204999999989, 10.374867999999992], [10.381541000000027, 10.388206000000025], [10.394867999999974, 10.401531999999975], [10.407515999999987, 10.414872000000003], [10.424868000000004, 10.431535999999994], [10.438204999999982, 10.444868999999983], [10.451536999999973, 10.458206000000018], [10.464936000000023, 10.471535000000017], [10.478206, 10.484868000000006], [10.491535999999996, 10.498205999999982], [10.504871999999978, 10.511541000000022], [10.518208000000016, 10.524870000000021], [10.531535000000019, 10.538206000000002], [10.544868000000008, 10.551538999999991], [10.558204999999987, 10.56486799999999], [10.571531999999991, 10.57821100000001], [10.584873000000016, 10.588220999999976], [10.588253000000009, 10.594868000000019], [10.601537000000008, 10.608204999999998], [10.614868999999999, 10.621534999999994], [10.62820499999998, 10.634866999999986], [10.641546000000005, 10.643111999999974], [10.648205000000019, 10.654869000000019], [10.661536000000012, 10.668206999999995], [10.674867000000006, 10.681534999999997], [10.68820599999998, 10.694867999999985], [10.701534999999978, 10.708205000000021], [10.714867000000027, 10.721535000000017], [10.728205000000003, 10.734868000000006], [10.741534999999999, 10.748205999999982], [10.754867999999988, 10.761533999999983], [10.768206000000021, 10.774868000000026], [10.781535000000019, 10.788205000000005], [10.794867000000011, 10.801535000000001], [10.808205999999984, 10.81487199999998], [10.821534999999983, 10.828205000000025], [10.834867999999972, 10.841538000000014], [10.848205000000007, 10.85486800000001], [10.861535000000003, 10.868209999999976], [10.874866999999995, 10.881534999999985], [10.888204999999971, 10.894871000000023], [10.901541000000009, 10.90820100000002], [10.918202000000008, 10.924868000000004], [10.931560999999988, 10.93820599999998], [10.944871999999975, 10.951535999999976], [10.958200999999974, 10.964875000000006], [10.971536000000015, 10.978206999999998], [10.984868000000006, 10.991535999999996], [10.998204999999984, 11.004868999999985], [11.011531999999988, 11.018207000000018], [11.024866999999972, 11.031542999999999], [11.038205000000005, 11.044868000000008], [11.051539999999989, 11.058206999999982], [11.06486799999999, 11.071534999999983], [11.078206000000023, 11.084869000000026], [11.091535000000022, 11.098206000000005], [11.10486800000001, 11.111536000000001], [11.118204999999989, 11.124867999999992], [11.131534999999985, 11.138204999999971], [11.143233000000009, 11.151539000000014], [11.158205000000009, 11.16486900000001], [11.171535000000006, 11.178205999999989], [11.184867999999994, 11.191535999999985], [11.198204999999973, 11.204867999999976], [11.211537000000021, 11.218204000000014], [11.224868000000015, 11.231535000000008], [11.238205999999991, 11.244870999999989], [11.25153899999998, 11.258204999999975], [11.264866999999981, 11.271536000000026], [11.278204000000017, 11.284868000000017], [11.291539999999998, 11.298203999999998], [11.304867000000002, 11.311533999999995], [11.318204999999978, 11.324867999999981], [11.331541000000016, 11.338205000000016], [11.344868000000019, 11.351537000000008], [11.358205999999996, 11.364867000000004], [11.371534999999994, 11.37820499999998], [11.384867999999983, 11.391535999999974], [11.398199999999974, 11.404867000000024], [11.411535000000015, 11.418205], [11.424869000000001, 11.431535999999994], [11.438204999999982, 11.444867999999985], [11.451537999999971, 11.458206000000018], [11.464867000000027, 11.470191]], \"1\": [[0.28934700000002067, 0.28942399999999679], [0.28946100000001707, 0.28954299999998057], [0.28960799999998699, 0.28964799999999968], [11.476789999999994, 11.491305000000011], [11.491341999999975, 11.491468999999995]]}, \"ksoftirqd/2-16\": {\"2\": [[0.25344400000000178, 0.2534689999999955], [0.2534949999999867, 0.25350099999997155], [0.25353400000000192, 0.25354099999998425], [0.25828599999999824, 0.25829299999998057], [0.25832600000001094, 0.25833999999997559], [0.26338800000002038, 0.26340699999997241], [0.26343100000002551, 0.26343700000001036], [0.26347099999998136, 0.26347800000002053], [0.26848100000000841, 0.26854800000000978], [0.2685910000000149, 0.26859999999999218], [0.2686350000000175, 0.26864499999999225], [0.27179699999999229, 0.27182099999998854], [0.27184599999998227, 0.27185300000002144], [0.27188400000000001, 0.27189199999997982], [0.27191499999997859, 0.27192500000001019], [0.27194700000001149, 0.27195499999999129], [0.27197300000000268, 0.27198099999998249], [0.27490899999997964, 0.27492000000000871], [0.27494000000001506, 0.27494799999999486], [0.27496600000000626, 0.27497399999998606], [0.27499199999999746, 0.27499999999997726], [0.27501799999998866, 0.27502600000002531], [0.27504499999997734, 0.27505400000001146], [0.27826900000002297, 0.27827800000000025], [0.2783059999999864, 0.27831300000002557], [0.2783319999999776, 0.27833900000001677], [0.29501900000002479, 0.29503899999997429], [0.29507000000000971, 0.29507799999998952], [0.29511500000000979, 0.29512299999998959], [0.30826700000000073, 0.30827900000002728], [0.30831000000000586, 0.30833100000000968], [0.84174600000000055, 0.84176000000002205], [0.84178300000002082, 0.8417919999999981], [0.84180800000001454, 0.8418179999999893], [0.84493099999997412, 0.84495199999997794], [0.84498100000001841, 0.84498999999999569], [0.84500300000001971, 0.84501099999999951], [0.84867300000001933, 0.84868399999999156], [0.84869900000001053, 0.84870699999999033], [0.84872699999999668, 0.84873499999997648], [0.85212899999999081, 0.85213699999997061], [0.852800000000002, 0.85280999999997675], [0.85282300000000077, 0.85283099999998058], [0.85502500000001191, 0.85503399999998919], [0.85505899999998292, 0.85506800000001704], [0.85508499999997412, 0.85509400000000824], [0.85823699999997416, 0.8582450000000108], [0.85827799999998433, 0.85828400000002603], [0.85831300000000965, 0.8583189999999945], [0.86156499999998459, 0.86157200000002376], [0.86160100000000739, 0.86160699999999224], [0.86163599999997587, 0.86164300000001504], [0.86489899999997988, 0.86490700000001652], [0.86507499999999027, 0.86508900000001177], [0.86510800000002064, 0.86511400000000549], [0.86824200000000928, 0.86825199999998404], [0.86827099999999291, 0.86827699999997776], [0.8683030000000258, 0.86831000000000813], [0.87155799999999317, 0.87156399999997802], [0.87160299999999324, 0.87161300000002484], [0.87162999999998192, 0.87163600000002361], [0.87490600000000995, 0.87491599999998471], [0.8749520000000075, 0.87495799999999235], [0.87499400000001515, 0.87500199999999495], [0.87822899999997617, 0.87823600000001534], [0.87827299999997877, 0.87828300000001036], [0.88487800000001471, 0.88488599999999451], [0.8931220000000053, 0.89313499999997248], [0.89316500000001042, 0.89317199999999275], [0.89320299999997133, 0.89320900000001302], [0.89490799999998671, 0.89491800000001831], [0.89495799999997416, 0.89496400000001586], [0.89823999999998705, 0.89825400000000855], [0.90490099999999529, 0.90490799999997762], [0.91044899999997142, 0.91046000000000049], [0.91057100000000446, 0.91057699999998931], [0.91060800000002473, 0.91061500000000706], [0.91156200000000354, 0.91157099999998081], [0.91176600000000008, 0.91177199999998493], [0.9118050000000153, 0.91181100000000015], [0.9149009999999862, 0.91490900000002284], [0.91494699999998375, 0.91496799999998757], [0.91500100000001794, 0.91500600000000532], [0.91823299999998653, 0.9182400000000257], [0.9182739999999967, 0.91828099999997903], [0.9183100000000195, 0.91831700000000183], [0.92156999999997424, 0.92157700000001341], [0.92161099999998441, 0.92161900000002106], [0.92823099999998249, 0.92823800000002166], [1.6060909999999922, 1.6061149999999884], [1.6061540000000036, 1.606160999999986], [1.6061950000000138, 1.6062000000000012], [1.6082420000000184, 1.6082490000000007], [1.6082890000000134, 1.6082979999999907], [1.608317999999997, 1.6083249999999794], [1.6149169999999913, 1.6149280000000203], [1.6149829999999952, 1.6150160000000255], [1.6215710000000172, 1.6215829999999869], [1.7227579999999989, 1.7227849999999876], [1.7228269999999952, 1.7228359999999725], [1.7228719999999953, 1.7228779999999801], [1.7249079999999708, 1.7249180000000024], [1.7249689999999873, 1.7249780000000214], [1.7250159999999823, 1.7250199999999722], [1.7282599999999775, 1.7282789999999864], [1.7349019999999769, 1.7349140000000034], [3.3921829999999886, 3.3922069999999849], [3.3922430000000077, 3.39224999999999], [3.3922910000000002, 3.3922959999999875], [3.3951069999999959, 3.3951159999999732], [3.3951359999999795, 3.3951410000000237], [3.3951690000000099, 3.3951749999999947], [3.3982659999999782, 3.3982799999999997], [3.3983099999999808, 3.398319000000015], [3.3983390000000213, 3.3983460000000036], [3.4015709999999899, 3.4015810000000215], [3.4016060000000152, 3.4016120000000001], [3.4016480000000229, 3.4016560000000027], [3.4051119999999742, 3.4051230000000032], [3.405146000000002, 3.4051519999999869], [3.4051830000000223, 3.4051890000000071], [3.4082440000000247, 3.4082539999999995], [3.4082769999999982, 3.4082829999999831], [3.408313000000021, 3.4083190000000059], [3.4115739999999732, 3.4115850000000023], [3.4182299999999941, 3.4182369999999764], [3.4319160000000011, 3.4319439999999872], [3.4319839999999999, 3.4319929999999772], [3.43212299999999, 3.4321390000000065], [3.4349980000000073, 3.4350049999999896], [3.4350360000000251, 3.4350420000000099], [3.435071999999991, 3.4350789999999733], [3.4382350000000201, 3.4382420000000025], [3.4382759999999735, 3.4382850000000076], [3.4493739999999775, 3.4493939999999839], [3.4494149999999877, 3.4494320000000016], [3.449452000000008, 3.4494619999999827], [3.4494879999999739, 3.449497000000008], [3.4516439999999875, 3.4516540000000191], [3.4516820000000052, 3.4516909999999825], [3.4517149999999788, 3.4517240000000129], [3.4550090000000182, 3.455018999999993], [3.4550510000000259, 3.455063999999993], [4.1449569999999767, 4.1449709999999982], [4.1721160000000168, 4.1721370000000206], [4.1721580000000245, 4.1721670000000017], [4.1721919999999955, 4.1721999999999753], [4.1749229999999784, 4.174931000000015], [4.1749679999999785, 4.1749740000000202], [4.1750049999999987, 4.1750099999999861], [4.1782339999999749, 4.1782410000000141], [4.178278999999975, 4.1782890000000066], [4.1849040000000173, 4.184915999999987], [5.8427510000000211, 5.8427750000000174], [5.8428109999999833, 5.8428200000000174], [5.8428609999999708, 5.8428690000000074], [5.8449079999999753, 5.8449170000000095], [5.8449570000000222, 5.8449659999999994], [5.8450189999999793, 5.8450260000000185], [5.8482379999999807, 5.8482450000000199], [5.84833500000002, 5.8483479999999872], [5.8594340000000216, 5.8594429999999988], [5.859470999999985, 5.8594770000000267], [5.8595010000000229, 5.8595070000000078], [5.8615909999999758, 5.861598000000015], [5.8616309999999885, 5.8616369999999733], [5.8616660000000138, 5.8616719999999987], [5.8648989999999799, 5.864906000000019], [5.8649520000000166, 5.8649560000000065], [5.8717199999999821, 5.8717320000000086], [5.87175000000002, 5.8717589999999973], [5.8717819999999961, 5.8717909999999733], [5.8749000000000251, 5.8749070000000074], [5.8749480000000176, 5.8749540000000025], [5.8749819999999886, 5.8749879999999735], [5.8782350000000179, 5.8782420000000002], [5.8782719999999813, 5.8782830000000104], [5.8848939999999743, 5.884902000000011], [5.8993479999999749, 5.8993600000000015], [5.8993909999999801, 5.8993970000000218], [5.8994280000000003, 5.8994339999999852], [5.9015769999999748, 5.9015870000000064], [5.9016090000000077, 5.9016149999999925], [5.9016459999999711, 5.9016510000000153], [5.908239999999978, 5.908251000000007], [5.9082750000000033, 5.9082859999999755], [5.914449999999988, 5.9144580000000246], [5.9158459999999877, 5.9158620000000042], [5.9158840000000055, 5.9158899999999903], [5.9159210000000257, 5.9159270000000106], [5.9182599999999752, 5.9182720000000018], [5.9182950000000005, 5.9183019999999829], [5.9183330000000183, 5.9183390000000031], [5.9216020000000071, 5.9216119999999819], [5.9216359999999781, 5.9216410000000224], [5.9216720000000009, 5.9216769999999883], [5.9249060000000213, 5.9249159999999961], [5.9249520000000189, 5.9249609999999961], [5.9249869999999873, 5.9249960000000215], [5.9282630000000154, 5.92827699999998], [5.9349000000000274, 5.9349109999999996], [6.6059220000000209, 6.6059470000000147], [6.6059970000000021, 6.6060059999999794], [6.6060350000000199, 6.6060449999999946], [6.6082490000000007, 6.6082589999999755], [6.6082880000000159, 6.6082969999999932], [6.608317999999997, 6.6083229999999844], [6.614906000000019, 6.6149139999999989], [6.6149720000000229, 6.6150129999999763], [6.8083950000000186, 6.8084170000000199], [6.8283230000000117, 6.8283420000000206], [6.8421880000000215, 6.8422090000000253], [6.8422459999999887, 6.8422529999999711], [6.8422869999999989, 6.8422929999999837], [6.844900999999993, 6.8449100000000271], [6.8449689999999919, 6.844978000000026], [6.8482399999999757, 6.8482470000000149], [6.8486740000000168, 6.8486899999999764], [7.6961269999999899, 7.6961590000000228], [7.6961789999999723, 7.6961880000000065], [7.69622099999998, 7.6962300000000141], [7.6962570000000028, 7.6962659999999801], [7.6962889999999788, 7.6962970000000155], [7.6963160000000244, 7.6963250000000016], [7.6982879999999909, 7.6982949999999732], [7.6983290000000011, 7.6983349999999859], [7.6983650000000239, 7.6983710000000087], [7.6984019999999873, 7.6984079999999722], [7.6984370000000126, 7.6984429999999975], [7.6984709999999836, 7.6984790000000203], [7.7015579999999773, 7.7015650000000164], [7.7015999999999849, 7.7016120000000114], [7.708233000000007, 7.7082439999999792], [8.6024509999999736, 8.6024790000000166], [8.6025189999999725, 8.6025260000000117], [8.6025639999999726, 8.6025700000000143], [8.605023000000017, 8.6050309999999968], [8.6050539999999955, 8.6050589999999829], [8.6050960000000032, 8.6051029999999855], [8.6082400000000234, 8.6082470000000058], [8.6082829999999717, 8.608331000000021], [8.6083740000000262, 8.608382000000006], [8.615050999999994, 8.6150719999999978], [8.6150969999999916, 8.6151060000000257], [8.6151290000000245, 8.6151389999999992], [8.6182529999999815, 8.6182610000000182], [8.6182929999999942, 8.6182989999999791], [8.618329000000017, 8.6183359999999993], [8.6249770000000012, 8.6249940000000151], [8.9524499999999989, 8.9524779999999851], [8.9524969999999939, 8.9525070000000255], [8.9525390000000016, 8.9525489999999763], [8.9525740000000269, 8.9525840000000017], [8.952606000000003, 8.9526149999999802], [8.9550330000000145, 8.9550429999999892], [8.9550610000000006, 8.9550689999999804], [8.9550919999999792, 8.9551010000000133], [8.9582449999999767, 8.9582520000000159], [8.9582829999999944, 8.9582889999999793], [8.9583180000000198, 8.9583240000000046], [8.962537999999995, 8.9625500000000216], [8.9625859999999875, 8.9625980000000141], [8.9651640000000157, 8.9651739999999904], [8.9652110000000107, 8.9652159999999981], [8.9652489999999716, 8.9652570000000082], [8.9682359999999903, 8.968244000000027], [8.9682799999999929, 8.9682869999999753], [8.9683180000000107, 8.968322999999998], [8.9749029999999834, 8.9749100000000226], [8.9749550000000227, 8.9749630000000025], [8.9815619999999967, 8.981568999999979], [8.9923959999999852, 8.9925020000000018], [8.9925420000000145, 8.9925479999999993], [8.9925820000000272, 8.992588000000012], [8.9948999999999728, 8.9949080000000095], [8.9949379999999906, 8.9949439999999754], [8.9949809999999957, 8.9949869999999805], [8.9982259999999883, 8.9982319999999731], [8.998266000000001, 8.9982769999999732], [9.0048949999999763, 9.004903000000013], [9.0086089999999786, 9.0086200000000076], [9.0087429999999813, 9.008749000000023], [9.0088739999999916, 9.0088799999999765], [9.0115680000000111, 9.0115749999999935], [9.0116049999999746, 9.0116110000000162], [9.0116380000000049, 9.0116429999999923], [9.0148940000000266, 9.0149020000000064], [9.0149410000000216, 9.0149549999999863], [9.0151819999999816, 9.0151930000000107], [9.0152140000000145, 9.0152199999999993], [9.0152499999999804, 9.0152550000000247], [9.0182849999999917, 9.0182950000000233], [9.018318000000022, 9.0183260000000018], [9.0183559999999829, 9.0183610000000272], [9.0249099999999771, 9.0249210000000062], [9.0249600000000214, 9.0249660000000063], [9.0250050000000215, 9.0250130000000013], [9.02824099999998, 9.0282510000000116], [9.0282829999999876, 9.0282889999999725], [9.0283230000000003, 9.0283299999999826], [9.0315770000000271, 9.0315870000000018], [9.0316139999999905, 9.0316199999999753], [9.0316589999999906, 9.0316670000000272], [9.0348960000000034, 9.0349029999999857], [9.0349469999999883, 9.0349600000000123], [9.8935969999999998, 9.8936170000000061], [9.8936380000000099, 9.8936479999999847], [9.893669999999986, 9.8936790000000201], [9.8936979999999721, 9.8937070000000062], [9.8937260000000151, 9.8937349999999924], [9.8937530000000038, 9.8937629999999785], [9.8950290000000223, 9.8950399999999945], [9.8950580000000059, 9.8950669999999832], [9.8950859999999921, 9.8950939999999719], [9.8982689999999707, 9.8982780000000048], [9.8983129999999733, 9.8983269999999948], [10.938778000000013, 10.938797000000022], [10.938822000000016, 10.938832999999988], [10.938856999999985, 10.938866000000019], [10.938890000000015, 10.938898999999992], [10.938921999999991, 10.938932000000023], [10.93894899999998, 10.938958000000014], [10.941579999999988, 10.941587000000027], [10.941621999999995, 10.941629999999975], [10.941661000000011, 10.941666999999995], [10.944983999999977, 10.944991000000016], [10.945021999999994, 10.945026999999982], [10.94505700000002, 10.945062000000007], [10.948628999999983, 10.948642000000007], [11.565985000000012, 11.565997999999979], [11.566025000000025, 11.566033000000004], [11.566057000000001, 11.566064999999981], [11.579092000000003, 11.579106000000024], [11.579124999999976, 11.579133000000013], [11.579151000000024, 11.579158000000007], [11.588432000000012, 11.588488999999981], [11.588533999999981, 11.588546000000008], [11.588571000000002, 11.588578999999982], [11.588602999999978, 11.588620999999989], [11.588643999999988, 11.588652000000025], [11.588670999999977, 11.588678000000016], [11.591581000000019, 11.591589999999997], [11.591617999999983, 11.591632000000004], [11.604898999999989, 11.604919999999993], [11.604933000000017, 11.604942999999992], [11.604964999999993, 11.604972999999973], [11.604991999999982, 11.604999000000021], [11.605025000000012, 11.605032999999992], [11.605056999999988, 11.605065000000025], [11.605082999999979, 11.605090000000018], [11.608262000000025, 11.608271000000002], [11.608295999999996, 11.608337000000006]]}, \"shell srvc 4669-4670\": {\"0\": [[11.654090999999994, 11.654349000000025]]}, \"Thread-5-1501\": {\"0\": [[5.9154030000000262, 5.915602999999976], [5.9166319999999928, 5.9167320000000245], [6.3109069999999861, 6.3111309999999889], [9.0150380000000041, 9.0152590000000146], [9.0172000000000025, 9.0173429999999826], [9.2403459999999882, 9.2405779999999709], [9.4621020000000158, 9.4623090000000047], [9.8948199999999815, 9.894992000000002], [10.011379999999974, 10.011464999999987], [10.407367000000022, 10.407515999999987], [10.910545000000013, 10.910666999999989]], \"2\": [[0.91084200000000237, 0.91104799999999386], [0.91232100000001992, 0.91241600000000744], [1.1911549999999806, 1.1913900000000126], [1.6889269999999783, 1.6891309999999748], [1.6918900000000008, 1.6919320000000084], [1.6931490000000053, 1.693382999999983], [1.6935589999999934, 1.6936269999999922], [1.6951960000000099, 1.6966170000000034], [3.4487359999999967, 3.4489280000000235], [3.6413850000000139, 3.6417240000000106], [4.1415620000000217, 4.1423960000000193], [4.1427790000000186, 4.1428920000000176], [4.1445650000000001, 4.1448350000000005], [6.8114190000000008, 6.8116059999999834], [6.8122979999999984, 6.8125509999999849], [6.8127269999999953, 6.8135589999999979], [10.908117000000004, 10.909303000000023], [10.910095000000013, 10.910350999999991]]}, \"task1-4660\": {\"1\": [[0.28782200000000557, 0.28786600000000817], [0.28849300000001676, 0.28855800000002318], [0.29490099999998165, 0.2982640000000174], [0.29893499999997175, 0.29914000000002261], [0.29916700000001129, 0.29926699999998618], [0.29930999999999131, 0.29939200000001165], [0.29963800000001584, 0.304916999999989], [0.31490400000001273, 0.32155299999999443], [0.32821100000001024, 0.33488299999999072], [0.34154000000000906, 0.34825000000000728], [0.35488500000002432, 0.36153799999999592], [0.36820899999997891, 0.37488500000000613], [0.3815389999999752, 0.38820499999997082], [0.39488699999998289, 0.40153800000001638], [0.4082080000000019, 0.41489400000000387], [0.42153799999999819, 0.42820799999998371], [0.43488400000001093, 0.44153799999998], [0.44823400000001357, 0.45488299999999526], [0.46153800000001866, 0.46820900000000165], [0.47488399999997455, 0.48153800000000047], [0.48820799999998599, 0.49488300000001573], [0.50153899999997975, 0.50820800000002464], [0.51488299999999754, 0.5215390000000184], [0.52820800000000645, 0.53488399999997682], [0.54154299999999012, 0.54823499999997694], [0.55489000000000033, 0.56154900000001362], [0.56820900000002439, 0.57488399999999729], [0.58153900000002068, 0.5882090000000062], [0.5948839999999791, 0.60153999999999996], [0.60820899999998801, 0.61488400000001775], [0.62153799999998682, 0.62821100000002161], [0.63488599999999451, 0.64154000000002043], [0.64823699999999462, 0.65488299999998389], [0.66153900000000476, 0.66820899999999028], [0.67488800000000992, 0.6815379999999891], [0.68820799999997462, 0.69488300000000436], [0.70153900000002523, 0.70820800000001327], [0.71488299999998617, 0.72154000000000451], [0.72821099999998751, 0.7348840000000223], [0.74153799999999137, 0.74823199999997314], [0.75488300000000663, 0.76153799999997318], [0.76820900000001302, 0.77488299999998844], [0.78153800000001183, 0.78820899999999483], [0.7948830000000271, 0.80153799999999364], [0.80820799999997917, 0.81489499999997861], [0.82153899999997293, 0.82820399999997107], [0.83487999999999829, 0.84153900000001158], [0.84822200000002113, 0.85487799999998515], [0.86153699999999844, 0.86820599999998649], [0.87487499999997453, 0.88153699999998025], [0.88820800000002009, 0.89487700000000814], [0.90153700000001891, 0.90825899999998683], [0.91490299999998115, 0.92154199999998809], [0.92820599999998876, 0.93493499999999585], [0.94153999999997495, 0.94825600000001486], [0.95488299999999526, 0.96153500000002623], [0.9682030000000168, 0.97488099999998212], [0.98153899999999794, 0.98820899999998346], [0.99488100000002078, 1.0015409999999747], [1.0082090000000221, 1.0148810000000026], [1.021536000000026, 1.0249059999999872], [1.0249580000000265, 1.0315390000000093], [1.0382069999999999, 1.0448819999999728], [1.0515419999999835, 1.0582069999999817], [1.064881000000014, 1.071536999999978], [1.0782090000000153, 1.0848819999999932], [1.0915410000000065, 1.0982089999999971], [1.1048819999999751, 1.1082260000000019], [1.114879999999971, 1.1215379999999868], [1.1282079999999723, 1.1348810000000071], [1.1415380000000255, 1.1419539999999984], [1.1420039999999858, 1.1482369999999946], [1.1548829999999839, 1.1615380000000073], [1.1682079999999928, 1.1748809999999708], [1.1815379999999891, 1.1882079999999746], [1.1949070000000006, 1.2015390000000252], [1.2082090000000107, 1.2148809999999912], [1.2215380000000096, 1.2282089999999926], [1.2348799999999756, 1.2415349999999989], [1.2482880000000023, 1.2548840000000041], [1.2615349999999808, 1.2682080000000155], [1.2748809999999935, 1.2815380000000118], [1.2882079999999974, 1.2948809999999753], [1.3015379999999936, 1.3082079999999792], [1.3148860000000013, 1.321534999999983], [1.3282070000000203, 1.3348809999999958], [1.3415380000000141, 1.3482379999999807], [1.3548829999999725, 1.3615379999999959], [1.3682089999999789, 1.3748840000000087], [1.3815349999999853, 1.3882029999999759], [1.3948859999999854, 1.4015380000000164], [1.4082099999999969, 1.4148839999999723], [1.4215399999999931, 1.4282089999999812], [1.4348810000000185, 1.4415389999999775], [1.4482399999999984, 1.4548940000000243], [1.4615380000000187, 1.4682109999999966], [1.4748819999999796, 1.4815380000000005], [1.4882089999999835, 1.4948810000000208], [1.5015379999999823, 1.5082090000000221], [1.5148810000000026, 1.5215380000000209], [1.5282080000000065, 1.5348809999999844], [1.5415380000000027, 1.5482400000000212], [1.554883000000018, 1.5615379999999845], [1.5682120000000168, 1.5748810000000049], [1.5783129999999801, 1.5815489999999954], [1.5882080000000087, 1.5948809999999867], [1.6015489999999772, 1.6082049999999981], [1.6149300000000153, 1.6215359999999919], [1.6282100000000241, 1.6348859999999945], [1.641539000000023, 1.6420160000000124], [1.6420560000000251, 1.6482480000000237], [1.6548839999999814, 1.6615380000000073], [1.6682089999999903, 1.6748789999999758], [1.6815379999999891, 1.6882089999999721], [1.6950459999999907, 1.7015390000000252], [1.7082090000000107, 1.7148940000000152], [1.7215570000000184, 1.7282060000000001], [1.7348749999999882, 1.7415349999999989], [1.7482469999999921, 1.7548830000000066], [1.7615379999999732, 1.7682100000000105], [1.7748809999999935, 1.7815380000000118], [1.7882119999999873, 1.7948809999999753], [1.8015389999999911, 1.8082099999999741], [1.814881000000014, 1.8215379999999755], [1.8282100000000128, 1.8348809999999958], [1.8415380000000141, 1.8482440000000224], [1.8548829999999725, 1.8615389999999934], [1.8682079999999814, 1.8748820000000137], [1.8815379999999777, 1.8882090000000176], [1.894880999999998, 1.9015380000000164], [1.9082089999999994, 1.9148789999999849], [1.9215379999999982, 1.9282089999999812], [1.9348810000000185, 1.94153799999998], [1.9482390000000009, 1.9548829999999953], [1.9615380000000187, 1.9682090000000017], [1.9748839999999745, 1.9815380000000005], [1.9882089999999835, 1.9948810000000208], [2.0015379999999823, 2.0082090000000221], [2.0148810000000026, 2.0215380000000209], [2.0282980000000066, 2.0348799999999869], [2.0415380000000027, 2.0482390000000237], [2.0548800000000256, 2.0615379999999845], [2.0682170000000042, 2.0748839999999973], [2.0815380000000232, 2.0882139999999936], [2.0948880000000258, 2.1015409999999974], [2.1082099999999855, 2.1148919999999976], [2.1215389999999843, 2.1282090000000267], [2.1348810000000071, 2.1415380000000255], [2.1421330000000012, 2.1482470000000262], [2.1548829999999839, 2.1615380000000073], [2.1682079999999928, 2.1748809999999708], [2.1815379999999891, 2.1882089999999721], [2.1948840000000018, 2.2015390000000252], [2.2082090000000107, 2.2148809999999912], [2.2215380000000096, 2.2282089999999926], [2.2348860000000172, 2.2382299999999873], [2.2448810000000208, 2.2515409999999747], [2.2582080000000246, 2.2648800000000051], [2.2715370000000235, 2.2782060000000115], [2.2848809999999844, 2.2915370000000053], [2.2982069999999908, 2.3048820000000205], [2.311538999999982, 2.3182069999999726], [2.3248849999999948, 2.3315380000000232], [2.3382080000000087, 2.3448779999999942], [2.3515390000000025, 2.3582069999999931], [2.3648850000000152, 2.3715389999999843], [2.3782069999999749, 2.3848810000000071], [2.3915359999999737, 2.3982070000000135], [2.4048809999999889, 2.4115370000000098], [2.4182069999999953, 2.4248820000000251], [2.4315369999999916, 2.4382069999999771], [2.4448810000000094, 2.4515400000000227], [2.4582070000000158, 2.4648799999999937], [2.4715380000000096, 2.4782069999999976], [2.484880999999973, 2.4915369999999939], [2.4982079999999769, 2.5048800000000142], [2.5115369999999757, 2.5182070000000181], [2.524879999999996, 2.5315380000000118], [2.5382079999999974, 2.5448799999999778], [2.551542999999981, 2.5582069999999817], [2.5648800000000165, 2.5715379999999755], [2.5782489999999711, 2.5815470000000005], [2.5815640000000144, 2.5882110000000011], [2.5948829999999816, 2.6015370000000075], [2.6082099999999855, 2.614879999999971], [2.6215369999999893, 2.6282069999999749], [2.6348820000000046, 2.6415369999999712], [2.6482379999999921, 2.6548829999999839], [2.6615370000000098, 2.6682069999999953], [2.6748809999999708, 2.6815369999999916], [2.6882079999999746, 2.6948800000000119], [2.7015369999999734, 2.7082070000000158], [2.7148809999999912, 2.7215370000000121], [2.7282069999999976, 2.7348799999999756], [2.7415369999999939, 2.7482370000000174], [2.7548859999999991, 2.7615379999999732], [2.768209000000013, 2.7715499999999906], [2.7782100000000014, 2.7848809999999844], [2.7915390000000002, 2.7982089999999857], [2.8048810000000231, 2.8115369999999871], [2.8182090000000244, 2.8248810000000049], [2.8315380000000232, 2.8382090000000062], [2.8448819999999841, 2.8515449999999873], [2.8582079999999905, 2.8648810000000253], [2.8715379999999868, 2.8782090000000267], [2.8848859999999945, 2.8915369999999712], [2.898208000000011, 2.9048809999999889], [2.9115380000000073, 2.9182079999999928], [2.9248809999999708, 2.9315369999999916], [2.9382069999999771, 2.9448830000000044], [2.9515440000000126, 2.9582080000000133], [2.9648809999999912, 2.9715380000000096], [2.9782089999999926, 2.984880999999973], [2.9915349999999989, 2.9982079999999769], [3.0048859999999991, 3.0115379999999732], [3.0182080000000155, 3.0248809999999935], [3.0315380000000118, 3.0382079999999974], [3.0448809999999753, 3.0515409999999861], [3.0582079999999792, 3.064881000000014], [3.0715379999999755, 3.0782489999999711], [3.0848809999999958, 3.0915380000000141], [3.0982079999999996, 3.1048809999999776], [3.1115389999999934, 3.1182079999999814], [3.1248810000000162, 3.1315399999999727], [3.1382080000000201, 3.1421849999999836], [3.1482359999999971, 3.1548819999999864], [3.1615409999999997, 3.1682069999999953], [3.1748799999999733, 3.1815369999999916], [3.1882069999999771, 3.1948800000000119], [3.2015369999999734, 3.2082090000000107], [3.2148809999999912, 3.2215370000000121], [3.2282069999999976, 3.2348840000000223], [3.2416079999999852, 3.2482410000000073], [3.2548820000000092, 3.2615369999999757], [3.2682070000000181, 3.2748859999999809], [3.2815370000000144, 3.2882079999999974], [3.2948799999999778, 3.3015369999999962], [3.3082069999999817, 3.3148800000000165], [3.3215379999999755, 3.3282070000000203], [3.3348799999999983, 3.3415370000000166], [3.3482359999999858, 3.3548819999999751], [3.3615379999999959, 3.368206999999984], [3.3748929999999859, 3.381541000000027], [3.3882090000000176, 3.3948780000000056], [3.4015499999999861, 3.4082070000000044], [3.414874999999995, 3.4215360000000032], [3.4282059999999888, 3.4348780000000261], [3.4415369999999825, 3.4482820000000061], [3.4516070000000241, 3.4582070000000158], [3.464888999999971, 3.4715380000000096], [3.4782079999999951, 3.484880999999973], [3.4915379999999914, 3.4982099999999718], [3.5048780000000193, 3.5115389999999707], [3.5182070000000181, 3.5248809999999935], [3.5315380000000118, 3.5382079999999974], [3.5448809999999753, 3.5515409999999861], [3.5582069999999817, 3.5648800000000165], [3.5715379999999755, 3.5782080000000178], [3.5882080000000087, 3.5948799999999892], [3.6015370000000075, 3.6082069999999931], [3.6148769999999786, 3.6215379999999868], [3.6282049999999799, 3.6348810000000071], [3.6415380000000255, 3.6482369999999946], [3.6548829999999839, 3.6615370000000098], [3.6682069999999953, 3.6748789999999758], [3.6815369999999916, 3.6882069999999771], [3.6948820000000069, 3.7015369999999734], [3.7082070000000158, 3.7148799999999937], [3.7215370000000121, 3.7282069999999976], [3.7348820000000273, 3.7415369999999939], [3.7482370000000174, 3.7548820000000092], [3.7615369999999757, 3.7682080000000155], [3.774879999999996, 3.7815370000000144], [3.7882069999999999, 3.7948830000000271], [3.8015389999999911, 3.8082069999999817], [3.8148800000000165, 3.821536999999978], [3.8282070000000203, 3.8348799999999983], [3.8415370000000166, 3.8482379999999807], [3.8548799999999801, 3.8615369999999984], [3.868206999999984, 3.8748820000000137], [3.8815379999999777, 3.8882090000000176], [3.8948800000000006, 3.9015370000000189], [3.9082070000000044, 3.9148799999999824], [3.9215370000000007, 3.9282069999999862], [3.934880000000021, 3.9415409999999724], [3.9482269999999744, 3.9548819999999978], [3.9615380000000187, 3.9682070000000067], [3.9748799999999846, 3.981537000000003], [3.9882069999999885, 3.9948800000000233], [4.0015369999999848, 4.0082080000000246], [4.0148829999999975, 4.0215370000000235], [4.0282080000000065, 4.0348799999999869], [4.0415380000000027, 4.0482380000000262], [4.0548860000000104, 4.0615369999999871], [4.0682080000000269, 4.0748810000000049], [4.0815390000000207, 4.0882070000000112], [4.0948819999999841, 4.1015370000000075], [4.108208999999988, 4.1148810000000253], [4.1215379999999868, 4.1282090000000267], [4.1348879999999895, 4.1415349999999762], [4.1482439999999769, 4.1548740000000066], [4.1615360000000123, 4.1682040000000029], [4.1748789999999758, 4.1815389999999866], [4.1882120000000214, 4.1948800000000119], [4.201533999999981, 4.2082090000000107], [4.2148809999999912, 4.2215340000000197], [4.2282089999999926, 4.234880999999973], [4.2415340000000015, 4.2482370000000174], [4.2548820000000092, 4.2615369999999757], [4.2682080000000155, 4.274881999999991], [4.2815380000000118, 4.2882089999999948], [4.2948830000000271, 4.3015369999999962], [4.3082079999999792, 4.3148860000000013], [4.3215389999999729, 4.3282080000000178], [4.3348839999999882, 4.3415380000000141], [4.3482319999999959, 4.3548819999999751], [4.3615369999999984, 4.3682089999999789], [4.3748830000000112, 4.3815369999999803], [4.3882070000000226, 4.3948800000000006], [4.4015380000000164, 4.4082070000000044], [4.4148819999999773, 4.4215370000000007], [4.4282069999999862, 4.4348830000000135], [4.44153799999998, 4.4482310000000211], [4.454985000000022, 4.4615370000000212], [4.4682070000000067, 4.4748819999999796], [4.4815389999999979, 4.488207999999986], [4.4948820000000183, 4.5015369999999848], [4.5082070000000272, 4.5148829999999975], [4.5215820000000235, 4.5282080000000065], [4.5348829999999793, 4.5415390000000002], [4.548232999999982, 4.5548900000000003], [4.5615349999999921, 4.5682029999999827], [4.5748780000000124, 4.57821899999999], [4.5782510000000229, 4.5815470000000005], [4.5882080000000087, 4.5948809999999867], [4.601538000000005, 4.6082069999999931], [4.6148820000000228, 4.6215379999999868], [4.6282069999999749, 4.6348830000000021], [4.6415380000000255, 4.6482369999999946], [4.6548819999999864, 4.6615380000000073], [4.6649429999999938, 4.6715340000000083], [4.6782089999999812, 4.6848830000000135], [4.6915339999999901, 4.6982070000000249], [4.7048849999999902, 4.7115350000000262], [4.7182070000000067, 4.7248809999999821], [4.7315340000000106, 4.7382089999999835], [4.7448810000000208, 4.7515409999999747], [4.7582070000000272, 4.764883999999995], [4.771536000000026, 4.778207000000009], [4.7848849999999743, 4.7915370000000053], [4.7982069999999908, 4.8048810000000231], [4.8115339999999946, 4.8182080000000269], [4.8248800000000074, 4.8315339999999765], [4.8382090000000062, 4.8448809999999867], [4.8515419999999949, 4.8582079999999905], [4.8648810000000253, 4.8715359999999919], [4.8782069999999749, 4.8848830000000021], [4.8915339999999787, 4.898206000000016], [4.9048799999999915, 4.9115340000000174], [4.9182079999999928, 4.9248809999999708], [4.9315339999999992, 4.9382079999999746], [4.9448810000000094, 4.9515420000000177], [4.9582080000000133, 4.9648879999999735], [4.9715340000000197, 4.9782079999999951], [4.984880999999973, 4.9915340000000015], [4.9982089999999744, 5.0048840000000041], [5.0115359999999782, 5.0182070000000181], [5.024879999999996, 5.0315360000000169], [5.0382069999999999, 5.0448799999999778], [5.0515399999999886, 5.0582079999999792], [5.0648820000000114, 5.071534999999983], [5.0782070000000203, 5.0848819999999932], [5.0915350000000217, 5.0982079999999996], [5.1048799999999801, 5.1115350000000035], [5.118206999999984, 5.1248800000000188], [5.1315349999999853, 5.1382080000000201], [5.1448839999999905, 5.1515410000000088], [5.1582080000000019, 5.1648809999999798], [5.1715340000000083, 5.1782069999999862], [5.1848860000000059, 5.1915339999999901], [5.1982080000000224, 5.2048810000000003], [5.2115339999999719, 5.2182080000000042], [5.2248860000000263, 5.231537000000003], [5.238207999999986, 5.2448800000000233], [5.2515409999999747, 5.2582070000000272], [5.2648810000000026, 5.2715349999999717], [5.278207000000009, 5.2848829999999793], [5.2915340000000128, 5.2982079999999883], [5.3048800000000256, 5.3115339999999946], [5.3182090000000244, 5.3248800000000074], [5.3315339999999765, 5.3382070000000112], [5.3448799999999892, 5.3515419999999949], [5.3582069999999931, 5.3648850000000152], [5.3715339999999969, 5.3782090000000267], [5.3848830000000021, 5.3915339999999787], [5.3982020000000261, 5.4048799999999915], [5.4115340000000174, 5.4182099999999878], [5.42488400000002, 5.4315359999999941], [5.4382069999999771, 5.4448810000000094], [5.4515410000000202, 5.4582090000000107], [5.4648799999999937, 5.4715340000000197], [5.4782069999999976, 5.4848850000000198], [5.4915340000000015, 5.4982079999999769], [5.5048810000000117, 5.5115349999999808], [5.5182070000000181, 5.5248809999999935], [5.5315340000000219, 5.5382079999999974], [5.5448799999999778, 5.5515409999999861], [5.5582069999999817, 5.5648800000000165], [5.5715339999999856, 5.57821899999999], [5.5882080000000087, 5.5948819999999841], [5.6015820000000076, 5.6082099999999855], [5.6149100000000089, 5.6215379999999868], [5.6282090000000267, 5.634886999999992], [5.6416570000000092, 5.6416939999999727], [5.6417339999999854, 5.6417769999999905], [5.6418259999999805, 5.6418679999999881], [5.6420099999999707, 5.648239999999987], [5.6548819999999864, 5.6615390000000048], [5.6682630000000245, 5.6748880000000099], [5.6815369999999916, 5.6882069999999771], [5.6948820000000069, 5.7015369999999734], [5.7082080000000133, 5.7148819999999887], [5.7215380000000096, 5.7282069999999976], [5.7348820000000273, 5.7415369999999939], [5.7482309999999757, 5.7548810000000117], [5.7615379999999732, 5.7682070000000181], [5.7748809999999935, 5.7815370000000144], [5.7882069999999999, 5.7948819999999728], [5.8015369999999962, 5.8082079999999792], [5.8148820000000114, 5.8215359999999805], [5.8282070000000203, 5.8348799999999983], [5.8415340000000242, 5.8482210000000237], [5.8548729999999978, 5.8615369999999984], [5.8682029999999941, 5.8748810000000162], [5.8782489999999825, 5.8848780000000147], [5.8915369999999712, 5.8982389999999896], [5.904876999999999, 5.9115360000000123], [5.9182240000000093, 5.924886000000015], [5.931541999999979, 5.9382059999999797], [5.9448869999999943, 5.9515410000000202], [5.9582080000000133, 5.9648799999999937], [5.9715340000000197, 5.9782069999999976], [5.9849350000000072, 5.9915399999999863], [5.998201999999992, 6.0048780000000193], [6.0115420000000199, 6.0182070000000181], [6.024879999999996, 6.0315350000000194], [6.0382060000000024, 6.0448830000000271], [6.051542999999981, 6.0582069999999817], [6.064881000000014, 6.0715359999999805], [6.0782090000000153, 6.0848809999999958], [6.0915340000000242, 6.0982079999999996], [6.1048809999999776, 6.111534000000006], [6.1182079999999814, 6.1248860000000036], [6.1315339999999878, 6.1382070000000226], [6.1448859999999854, 6.1515410000000088], [6.1582070000000044, 6.1648799999999824], [6.1715340000000083, 6.1782059999999888], [6.184880000000021, 6.1915369999999825], [6.1982080000000224, 6.2048849999999902], [6.2115390000000161, 6.2182090000000017], [6.2248829999999771, 6.2315399999999954], [6.238207999999986, 6.2448850000000107], [6.2515389999999798, 6.2582080000000246], [6.2648849999999925, 6.2715339999999742], [6.2782090000000039, 6.2848809999999844], [6.2915340000000128, 6.2982079999999883], [6.3048810000000231, 6.3115480000000161], [6.3182080000000269, 6.3248820000000023], [6.3315359999999714, 6.3382090000000062], [6.3448819999999841, 6.3515409999999974], [6.3582069999999931, 6.364879999999971], [6.3715349999999944, 6.3782069999999749], [6.3848820000000046, 6.3915359999999737], [6.3982030000000236, 6.4048809999999889], [6.4115340000000174, 6.4182069999999953], [6.4248799999999733, 6.4315349999999967], [6.4382069999999771, 6.4448820000000069], [6.4515400000000227, 6.4582080000000133], [6.4648799999999937, 6.4715360000000146], [6.4782079999999951, 6.4848820000000273], [6.4915349999999989, 6.4982099999999718], [6.5048800000000142, 6.5115349999999808], [6.5182080000000155, 6.5248839999999859], [6.5315350000000194, 6.5382060000000024], [6.5448799999999778, 6.5515419999999835], [6.5582069999999817, 6.5648800000000165], [6.571534999999983, 6.5782060000000229], [6.5882080000000087, 6.5948829999999816], [6.6015499999999747, 6.6082049999999981], [6.6148759999999811, 6.6215359999999919], [6.6282719999999813, 6.634884999999997], [6.6415369999999712, 6.6482359999999971], [6.6548869999999738, 6.6615350000000149], [6.6682069999999953, 6.6748789999999758], [6.6815349999999967, 6.6882079999999746], [6.6948810000000094, 6.701535999999976], [6.7082070000000158, 6.7148789999999963], [6.7215400000000045, 6.7282079999999951], [6.7348820000000273, 6.7415349999999989], [6.7482319999999731, 6.7548810000000117], [6.7615359999999782, 6.7682070000000181], [6.7748809999999935, 6.7815390000000093], [6.7882069999999999, 6.7948819999999728], [6.8015350000000012, 6.8082259999999906], [6.8149080000000026, 6.821534999999983], [6.8282029999999736, 6.8348750000000109], [6.8415380000000141, 6.8482319999999959], [6.8548729999999978, 6.861536000000001], [6.868206999999984, 6.8748800000000188], [6.8816069999999741, 6.8882070000000226], [6.8948800000000006, 6.9015370000000189], [6.9082070000000044, 6.9148839999999723], [6.9215360000000032, 6.9282059999999888], [6.9348790000000236, 6.9415359999999851], [6.948237000000006, 6.9548810000000003], [6.9615360000000237, 6.9682070000000067], [6.9748799999999846, 6.9815360000000055], [6.988205999999991, 6.9948790000000258], [7.0015349999999899, 7.0082019999999829], [7.0148800000000051, 7.021536000000026], [7.0282060000000115, 7.0348809999999844], [7.0415360000000078, 7.0482390000000237], [7.0548810000000231, 7.0615359999999896], [7.0682059999999751, 7.0748800000000074], [7.0815339999999765, 7.0848930000000223], [7.0849269999999933, 7.091557000000023], [7.0982030000000123, 7.1049039999999763], [7.1115350000000035, 7.118206999999984], [7.1248800000000188, 7.1315480000000093], [7.1382060000000251, 7.1448839999999905], [7.1515410000000088, 7.1582080000000019], [7.1648799999999824, 7.1715360000000032], [7.1782059999999888, 7.184880000000021], [7.19153799999998, 7.1982070000000249], [7.2048800000000028, 7.2115370000000212], [7.2182080000000042, 7.2248839999999745], [7.2315380000000005, 7.2382069999999885], [7.2448800000000233, 7.2515430000000265], [7.2582080000000246, 7.2648800000000051], [7.2715380000000209, 7.278207000000009], [7.2848799999999869, 7.2915370000000053], [7.2982069999999908, 7.304885000000013], [7.3115369999999871, 7.3182069999999726], [7.3248800000000074, 7.3315370000000257], [7.3382070000000112, 7.3448799999999892], [7.3515409999999974, 7.3582069999999931], [7.3648810000000253, 7.3715339999999969], [7.3782079999999723, 7.3848800000000097], [7.3915369999999712, 7.3982020000000261], [7.4048879999999713, 7.4115370000000098], [7.4182079999999928, 7.4248799999999733], [7.4315379999999891, 7.4382069999999771], [7.4448800000000119, 7.4515519999999924], [7.4582110000000057, 7.4648869999999761], [7.4715439999999944, 7.4782060000000001], [7.484880999999973, 7.4915359999999964], [7.4982059999999819, 7.5048770000000218], [7.5115359999999782, 7.5182070000000181], [7.524881999999991, 7.5315360000000169], [7.5382069999999999, 7.5448799999999778], [7.5515419999999835, 7.5582079999999792], [7.5648830000000089, 7.571536999999978], [7.5782439999999838, 7.5815620000000195], [7.5815989999999829, 7.5882080000000087], [7.5948799999999892, 7.6015370000000075], [7.6082069999999931, 7.6148789999999735], [7.6215359999999919, 7.6282069999999749], [7.6348790000000122, 7.6415359999999737], [7.6482359999999971, 7.6548819999999864], [7.6615360000000123, 7.6682069999999953], [7.6748799999999733, 7.6815359999999941], [7.6882069999999771, 7.6948980000000233], [7.701535999999976, 7.7082030000000259], [7.7148819999999887, 7.7215350000000171], [7.7282069999999976, 7.7348789999999781], [7.7415369999999939, 7.7482360000000199], [7.7548810000000117, 7.7615369999999757], [7.7682060000000206, 7.774879999999996], [7.7815370000000144, 7.7882060000000024], [7.7948789999999804, 7.8015369999999962], [7.8082059999999842, 7.814879000000019], [7.821536999999978, 7.8282070000000203], [7.8348790000000008, 7.8415370000000166], [7.8482339999999908, 7.8548809999999776], [7.8615369999999984, 7.8682079999999814], [7.8748790000000213, 7.8815369999999803], [7.8882060000000251, 7.894880999999998], [7.9015370000000189, 7.908206000000007], [7.9148829999999748, 7.9215379999999982], [7.9282059999999888, 7.9348790000000236], [7.9415369999999825, 7.9482390000000009], [7.9548869999999852, 7.9615370000000212], [7.9682060000000092, 7.9748789999999872], [7.981537000000003, 7.9882069999999885], [7.9948779999999715, 8.0015349999999899], [8.0082019999999829, 8.014883999999995], [8.0215339999999742, 8.0282060000000115], [8.0348789999999894, 8.0415360000000078], [8.048230999999987, 8.0548810000000231], [8.0615369999999871, 8.0682069999999726], [8.0748790000000099, 8.0815370000000257], [8.0882060000000138, 8.0948980000000006], [8.1048799999999801, 8.111536000000001], [8.118206999999984, 8.1248800000000188], [8.1315369999999803, 8.1382080000000201], [8.1448819999999955, 8.1515400000000113], [8.1582070000000044, 8.1648779999999874], [8.1715370000000007, 8.1782069999999862], [8.184880000000021, 8.1915369999999825], [8.1982070000000249, 8.2048800000000028], [8.2115370000000212, 8.2182070000000067], [8.2248799999999846, 8.231537000000003], [8.238207999999986, 8.2448800000000233], [8.2515409999999747, 8.2582090000000221], [8.2648800000000051, 8.271536000000026], [8.278207000000009, 8.2848799999999869], [8.2915370000000053, 8.2982069999999908], [8.3049389999999903, 8.3115379999999845], [8.3182069999999726, 8.3248800000000074], [8.3315370000000257, 8.3382070000000112], [8.3448849999999766, 8.3515419999999949], [8.358208999999988, 8.364879999999971], [8.3715369999999893, 8.3782069999999749], [8.3848800000000097, 8.3915369999999712], [8.3982030000000236, 8.4048839999999814], [8.4115370000000098, 8.4182079999999928], [8.4248799999999733, 8.4315369999999916], [8.4382069999999771, 8.4448800000000119], [8.4515410000000202, 8.4582070000000158], [8.4648799999999937, 8.4715370000000121], [8.4782069999999976, 8.4848799999999756], [8.4915369999999939, 8.4982089999999744], [8.5048800000000142, 8.5115359999999782], [8.5182070000000181, 8.524879999999996], [8.5315370000000144, 8.5382069999999999], [8.5448799999999778, 8.5515409999999861], [8.5582069999999817, 8.5648860000000013], [8.571536999999978, 8.578220999999985], [8.5815579999999727, 8.5882100000000037], [8.5948789999999917, 8.6015509999999722], [8.6082040000000006, 8.6148729999999887], [8.6215349999999944, 8.6282120000000191], [8.6348859999999945, 8.6415359999999737], [8.6482300000000123, 8.6548809999999889], [8.6615360000000123, 8.6682059999999979], [8.6748789999999758, 8.6815359999999941], [8.6882059999999797, 8.6948800000000119], [8.7015369999999734, 8.7082060000000183], [8.7148789999999963, 8.7215380000000096], [8.7282060000000001, 8.7348820000000273], [8.7415349999999989, 8.7482249999999908], [8.7548840000000041, 8.7615369999999757], [8.7682080000000155, 8.7748789999999985], [8.7815370000000144, 8.7882069999999999], [8.7948769999999854, 8.8015369999999962], [8.8082059999999842, 8.814879000000019], [8.821536999999978, 8.8282060000000229], [8.8348790000000008, 8.8415360000000192], [8.8482359999999858, 8.8548809999999776], [8.861536000000001, 8.868206999999984], [8.8748790000000213, 8.8815369999999803], [8.8882060000000251, 8.8948790000000031], [8.9015360000000214, 8.908206000000007], [8.9148789999999849, 8.9215360000000032], [8.9282059999999888, 8.934882000000016], [8.9415389999999775, 8.9482449999999858], [8.9582070000000158, 8.9649079999999799], [8.9715360000000146, 8.9782050000000027], [8.9848850000000198, 8.9915379999999914], [8.998203999999987, 9.004872999999975], [9.0115470000000073, 9.0182399999999916], [9.0248829999999884, 9.0315479999999866], [9.0382060000000024, 9.0448930000000018], [9.0515419999999835, 9.0582059999999842], [9.0648800000000165, 9.0715359999999805], [9.0782080000000178, 9.0848799999999983], [9.0915370000000166, 9.0982070000000022], [9.1048799999999801, 9.1115379999999959], [9.1182079999999814, 9.1248850000000061], [9.1315369999999803, 9.1382080000000201], [9.1448839999999905, 9.1515400000000113], [9.1582070000000044, 9.1648789999999849], [9.1715370000000007, 9.1782079999999837], [9.184880000000021, 9.1915369999999825], [9.1982070000000249, 9.2048800000000028], [9.2115370000000212, 9.2182070000000067], [9.2248799999999846, 9.2315360000000055], [9.238205999999991, 9.2448899999999981], [9.2515399999999772, 9.2582059999999728], [9.2648889999999824, 9.2715370000000235], [9.2782080000000065, 9.2848799999999869], [9.2915370000000053, 9.2982069999999908], [9.3048789999999713, 9.3082370000000196], [9.3149040000000127, 9.3215359999999805], [9.3282019999999761, 9.3348750000000109], [9.3415360000000192, 9.3482399999999757], [9.3548809999999776, 9.361536000000001], [9.368206999999984, 9.3748800000000188], [9.3815369999999803, 9.3882070000000226], [9.3948790000000031, 9.4015340000000265], [9.4082109999999943, 9.4148799999999824], [9.4215379999999982, 9.4282069999999862], [9.434880000000021, 9.4415359999999851], [9.4482380000000035, 9.4548810000000003], [9.4615380000000187, 9.4682099999999991], [9.4748789999999872, 9.481537000000003], [9.488205999999991, 9.4948790000000258], [9.5015359999999873, 9.5082070000000272], [9.5148800000000051, 9.5182379999999966], [9.5182829999999967, 9.5248849999999834], [9.5315330000000245, 9.5382079999999974], [9.5448799999999778, 9.5515389999999911], [9.5582069999999817, 9.5648800000000165], [9.571536999999978, 9.5782140000000027], [9.5882090000000062, 9.5948779999999942], [9.6015370000000075, 9.6082059999999956], [9.6148789999999735, 9.6215359999999919], [9.6282059999999774, 9.6348790000000122], [9.6415359999999737, 9.6482359999999971], [9.654878999999994, 9.6615360000000123], [9.6682059999999979, 9.6748789999999758], [9.6815359999999941, 9.6882059999999797], [9.6948790000000145, 9.701535999999976], [9.7082060000000183, 9.7148799999999937], [9.7215360000000146, 9.7282060000000001], [9.7348850000000198, 9.7415359999999964], [9.7482350000000224, 9.7548790000000167], [9.7615359999999782, 9.7682060000000206], [9.7748849999999834, 9.7815370000000144], [9.7882060000000024, 9.7948789999999804], [9.8015359999999987, 9.8082069999999817], [9.814879000000019, 9.8215379999999755], [9.8282060000000229, 9.8348809999999958], [9.8415360000000192, 9.8482319999999959], [9.8548809999999776, 9.8615369999999984], [9.8682059999999865, 9.8748790000000213], [9.8815339999999878, 9.8882009999999809], [9.894880999999998, 9.9015360000000214], [9.9082329999999956, 9.9148809999999798], [9.9215370000000007, 9.9282069999999862], [9.9348790000000236, 9.9415369999999825], [9.9482259999999769, 9.9548780000000079], [9.9615410000000111, 9.9682060000000092], [9.9748789999999872, 9.9815360000000055], [9.9882069999999885, 9.9948800000000233], [10.001535999999987, 10.008201999999983], [10.014958999999976, 10.024878000000001], [10.031536000000017, 10.038207999999997], [10.044877999999983, 10.051539999999989], [10.058205999999984, 10.064879000000019], [10.071533999999986, 10.078205000000025], [10.084880999999996, 10.091536000000019], [10.098207000000002, 10.104878999999983], [10.111536000000001, 10.118205999999986], [10.124879000000021, 10.131538999999975], [10.138206000000025, 10.14488399999999], [10.151542000000006, 10.158206000000007], [10.164887000000022, 10.171536000000003], [10.178207999999984, 10.184879000000024], [10.191535999999985, 10.19820900000002], [10.204880000000003, 10.211536000000024], [10.218207000000007, 10.224879999999985], [10.231537000000003, 10.238206999999989], [10.244880000000023, 10.251539999999977], [10.258207000000027, 10.264879000000008], [10.271536000000026, 10.278208000000006], [10.284879999999987, 10.291536000000008], [10.298206999999991, 10.304880000000026], [10.31153599999999, 10.318206999999973], [10.32487900000001, 10.331535999999971], [10.338207000000011, 10.344879999999989], [10.351539000000002, 10.358205999999996], [10.364879999999971, 10.371535999999992], [10.378205999999977, 10.384883000000002], [10.391536999999971, 10.398202000000026], [10.404873000000009, 10.411540000000002], [10.41820899999999, 10.424887000000012], [10.431535999999994, 10.43820599999998], [10.444879000000014, 10.451537999999971], [10.458205000000021, 10.464939000000015], [10.471537000000012, 10.478206], [10.484878999999978, 10.491535999999996], [10.498206999999979, 10.504882000000009], [10.511535999999978, 10.518205000000023], [10.528208000000006, 10.534879999999987], [10.541536000000008, 10.548236999999972], [10.55488600000001, 10.561537999999985], [10.568200999999988, 10.574870999999973], [10.581621999999982, 10.588208000000009], [10.594880999999987, 10.601537000000008], [10.608206999999993, 10.614882000000023], [10.621535999999992, 10.628205999999977], [10.634881000000007, 10.641536999999971], [10.648245999999972, 10.654881999999986], [10.661536000000012, 10.668206999999995], [10.674878999999976, 10.681535999999994], [10.68820599999998, 10.694879000000014], [10.701535999999976, 10.708206000000018], [10.714878999999996, 10.721536000000015], [10.728206, 10.731560000000002], [10.731602000000009, 10.738206999999989], [10.744880000000023, 10.751539999999977], [10.758205999999973, 10.764879000000008], [10.771536000000026, 10.778206000000011], [10.784879999999987, 10.791537000000005], [10.798205999999993, 10.804880000000026], [10.811536999999987, 10.818206999999973], [10.824881000000005, 10.831535999999971], [10.838205000000016, 10.844878999999992], [10.851539000000002, 10.858206999999993], [10.864878999999974, 10.871536999999989], [10.878205999999977, 10.88488000000001], [10.891536999999971, 10.898209000000008], [10.904876000000002, 10.911596999999972], [10.918202000000008, 10.924872999999991], [10.931533000000002, 10.938206999999977], [10.944882000000007, 10.951537999999971], [10.958200999999974, 10.964891000000023], [10.971536000000015, 10.978206999999998], [10.984878999999978, 10.991535999999996], [10.998205999999982, 11.004879000000017], [11.011532999999986, 11.018207000000018], [11.024878000000001, 11.031536000000017], [11.038206000000002, 11.04487899999998], [11.051539999999989, 11.058206999999982], [11.064883000000009, 11.071535999999981], [11.078206000000023, 11.084879000000001], [11.091536000000019, 11.098206000000005], [11.104878999999983, 11.111536999999998], [11.118204999999989, 11.124879000000021], [11.13153699999998, 11.138206000000025], [11.144881999999996, 11.151539000000014], [11.158205000000009, 11.16487699999999], [11.171536000000003, 11.178204999999991], [11.184880000000021, 11.191535999999985], [11.198204999999973, 11.204881], [11.211537000000021, 11.218205000000012], [11.224879999999985, 11.231535000000008], [11.238205999999991, 11.244881000000021], [11.25153899999998, 11.258204999999975], [11.264879000000008, 11.271537000000023], [11.278205000000014, 11.284879999999987], [11.291536000000008, 11.298203999999998], [11.304875999999979, 11.311534999999992], [11.318205999999975, 11.324880000000007], [11.331535999999971, 11.338206000000014], [11.344878999999992, 11.351539000000002], [11.358205999999996, 11.364878999999974], [11.371534999999994, 11.37820499999998], [11.384879000000012, 11.391535999999974], [11.398200999999972, 11.404872000000012], [11.411536000000012, 11.418205], [11.424879999999973, 11.431536999999992], [11.438204999999982, 11.444879000000014], [11.451537999999971, 11.458206000000018], [11.464880999999991, 11.46948500000002], [11.475865999999996, 11.476087000000007]]}, \"wpa_supplicant-1502\": {\"1\": [[2.7715499999999906, 2.7717119999999795]]}, \"mpss_smd_trans_-29\": {\"3\": [[8.9624969999999848, 8.9625750000000153], [8.9644650000000183, 8.9645090000000209]]}, \"rt-app-4661\": {\"1\": [[0.28855800000002318, 0.28859599999998409]]}, \"watchdog-1658\": {\"2\": [[3.127096999999992, 3.1274910000000204]]}, \"ksoftirqd/1-12\": {\"1\": [[0.0020509999999944739, 0.0020749999999907232], [0.0021719999999731954, 0.002181000000007316], [0.0023499999999785359, 0.002361000000007607], [0.0053599999999960346, 0.0053859999999872343], [0.0054329999999822576, 0.0054549999999835563], [0.085680000000024847, 0.085707000000013522], [0.085766999999975724, 0.085796000000016193], [0.085842000000013741, 0.085849999999993543], [0.088314000000025317, 0.088329999999984921], [0.08835599999997612, 0.088367000000005191], [0.088394999999991342, 0.088405000000022937], [0.088434000000006563, 0.08844299999998384], [0.088465999999982614, 0.08847600000001421], [0.088498000000015509, 0.088522000000011758], [0.13186899999999468, 0.13189099999999598], [0.1653880000000072, 0.16540700000001607], [0.16545300000001362, 0.16546099999999342], [0.16549900000001116, 0.16550699999999097], [0.16554500000000871, 0.16555299999998851], [0.16559000000000879, 0.16559899999998606], [0.16563400000001138, 0.16564499999998361], [0.16835600000001705, 0.16842900000000327], [0.16850699999997687, 0.16851700000000847], [0.16855399999997189, 0.16856300000000601], [0.16860100000002376, 0.16860800000000609], [0.16864500000002636, 0.16865300000000616], [0.16868899999997211, 0.16869900000000371], [0.17175400000002128, 0.17176799999998593], [0.17185599999999113, 0.17188499999997475], [0.1719269999999824, 0.17193800000001147], [0.17197900000002164, 0.17198700000000144], [0.17202099999997245, 0.17202800000001162], [0.17206700000002684, 0.17207700000000159], [0.17736500000000888, 0.1773860000000127], [0.17756100000002562, 0.17757100000000037], [0.17762199999998529, 0.17763000000002194], [0.17825499999997874, 0.17826600000000781], [0.17831100000000788, 0.1784359999999765], [0.17849300000000312, 0.1785019999999804], [0.17853900000000067, 0.17855400000001964], [0.24906800000002249, 0.24908599999997705], [0.2491099999999733, 0.24912299999999732], [0.24914300000000367, 0.24915199999998094], [0.25162799999998242, 0.25164300000000139], [0.25167499999997744, 0.25168500000000904], [0.25171299999999519, 0.25172300000002679], [0.2756689999999935, 0.27570600000001377], [0.2757349999999974, 0.27574399999997468], [0.2757829999999899, 0.27579600000001392], [0.28160600000001068, 0.28166800000002468], [0.28177299999998695, 0.28178400000001602], [0.28188299999999344, 0.28189500000001999], [0.28197199999999611, 0.28198400000002266], [0.28495299999997314, 0.28498500000000604], [0.28504199999997581, 0.28505499999999984], [0.28508499999998094, 0.28509700000000748], [0.28512699999998858, 0.28513800000001766], [0.28516100000001643, 0.28517199999998866], [0.28519599999998491, 0.2852060000000165], [5.6015620000000013, 5.6015820000000076], [7.0848930000000223, 7.0849269999999933], [11.49154900000002, 11.491574000000014], [11.491612999999973, 11.491625999999997], [11.49165099999999, 11.491661000000022], [11.494962999999984, 11.494989999999973], [11.495062000000019, 11.495075999999983], [11.495124999999973, 11.495135000000005], [11.501633000000027, 11.501672999999982], [11.50171899999998, 11.501729000000012], [11.501757999999995, 11.501768000000027], [11.501796000000013, 11.501805999999988], [11.501839000000018, 11.501854999999978], [11.501883000000021, 11.501892999999995], [11.501914999999997, 11.501924999999972], [11.504921000000024, 11.504934999999989], [11.504977999999994, 11.505012000000022], [11.542535999999984, 11.542572000000007], [11.542605999999978, 11.542619000000002], [11.542642999999998, 11.542654000000027], [11.542681000000016, 11.542690999999991], [11.542720999999972, 11.542732999999998], [11.542756999999995, 11.542765999999972], [11.544958000000008, 11.544974000000025], [11.545013999999981, 11.545024000000012], [11.545067000000017, 11.545076999999992], [11.549224999999979, 11.549267999999984], [11.565080000000023, 11.565117999999984], [11.565155000000004, 11.565164999999979], [11.565193000000022, 11.565202999999997], [11.578284999999994, 11.57829700000002], [11.578330999999991, 11.578350999999998], [11.578408000000024, 11.578416000000004], [11.581651000000022, 11.581690999999978], [11.581751999999994, 11.581763000000024], [11.581792000000007, 11.581801999999982], [11.584960000000024, 11.584973999999988], [11.585005000000024, 11.585014999999999], [11.585039999999992, 11.585050000000024], [11.588309999999979, 11.588321000000008], [11.588363000000015, 11.588371999999993], [11.588402999999971, 11.588412000000005], [11.588453000000015, 11.588464999999985], [11.636034999999993, 11.636056999999994], [11.636094000000014, 11.636108999999976], [11.636144000000002, 11.636157000000026], [11.638346000000013, 11.638377999999989], [11.638420999999994, 11.638432000000023], [11.638460000000009, 11.638469999999984], [11.641821999999991, 11.641841999999997], [11.641881000000012, 11.641901000000018], [11.641936999999984, 11.641948000000014], [11.65239200000002, 11.652409999999975], [11.652443000000005, 11.652468999999996], [11.652503000000024, 11.652513999999996], [11.655019999999979, 11.65504199999998], [11.655093000000022, 11.655104999999992], [11.655138000000022, 11.655148999999994], [11.658271000000013, 11.658284999999978], [11.658315000000016, 11.658324999999991], [11.658342000000005, 11.658351999999979], [11.658377999999971, 11.658388000000002], [11.658416999999986, 11.658432000000005], [11.701599999999985, 11.701621999999986], [11.713334999999972, 11.713387000000012], [11.713427000000024, 11.713440999999989], [11.713488999999981, 11.713498000000016], [11.715050000000019, 11.715062999999986], [11.730460999999991, 11.730497000000014], [11.730534999999975, 11.730543000000011], [11.731605000000002, 11.731624000000011], [11.73168099999998, 11.731690000000015], [11.731734000000017, 11.731742999999994]]}, \"task2-4661\": {\"1\": [[0.28865400000000818, 0.28868499999998676], [0.28874400000000833, 0.28876900000000205], [0.2887850000000185, 0.28887600000001612], [0.28959900000000971, 0.28960799999998699], [0.304916999999989, 0.30501900000001569], [0.30537900000001628, 0.30577799999997524], [0.30614100000002509, 0.30646100000001297], [0.30664400000000569, 0.31490400000001273], [0.32155299999999443, 0.32821100000001024], [0.33488299999999072, 0.34154000000000906], [0.34825000000000728, 0.35488500000002432], [0.36153799999999592, 0.36820899999997891], [0.37488500000000613, 0.3815389999999752], [0.38820499999997082, 0.39488699999998289], [0.40153800000001638, 0.4082080000000019], [0.41489400000000387, 0.42153799999999819], [0.42820799999998371, 0.43488400000001093], [0.44153799999998, 0.44823400000001357], [0.45488299999999526, 0.46153800000001866], [0.46820900000000165, 0.47488399999997455], [0.48153800000000047, 0.48820799999998599], [0.49488300000001573, 0.50153899999997975], [0.50820800000002464, 0.51488299999999754], [0.5215390000000184, 0.52820800000000645], [0.53488399999997682, 0.54154299999999012], [0.54823499999997694, 0.55489000000000033], [0.56157400000000735, 0.56820900000002439], [0.57488399999999729, 0.58153900000002068], [0.5882090000000062, 0.5948839999999791], [0.60153999999999996, 0.60820899999998801], [0.61488400000001775, 0.62153799999998682], [0.62821100000002161, 0.63488599999999451], [0.64154000000002043, 0.64187800000001971], [0.64193899999997939, 0.64823699999999462], [0.65488299999998389, 0.66153900000000476], [0.66820899999999028, 0.67488800000000992], [0.6815379999999891, 0.68820799999997462], [0.69488300000000436, 0.70153900000002523], [0.70820800000001327, 0.71488299999998617], [0.72154000000000451, 0.72821099999998751], [0.7348840000000223, 0.74153799999999137], [0.74823199999997314, 0.75488300000000663], [0.76153799999997318, 0.76820900000001302], [0.77488299999998844, 0.78153800000001183], [0.78820899999999483, 0.7948830000000271], [0.80153799999999364, 0.80820799999997917], [0.81495999999998503, 0.82153899999997293], [0.82820399999997107, 0.83487999999999829], [0.84153900000001158, 0.84822200000002113], [0.85487799999998515, 0.86153699999999844], [0.86820599999998649, 0.87487499999997453], [0.88153699999998025, 0.88820800000002009], [0.89487700000000814, 0.90153700000001891], [0.90825899999998683, 0.91490299999998115], [0.92154199999998809, 0.92820599999998876], [0.93493499999999585, 0.94153999999997495], [0.94825600000001486, 0.95488299999999526], [0.96153500000002623, 0.9682030000000168], [0.97488099999998212, 0.98153899999999794], [0.98820899999998346, 0.99488100000002078], [1.0015409999999747, 1.0082090000000221], [1.0148810000000026, 1.021536000000026], [1.0315390000000093, 1.0382069999999999], [1.0448819999999728, 1.0515419999999835], [1.0582069999999817, 1.064881000000014], [1.071536999999978, 1.0782090000000153], [1.0848819999999932, 1.0915410000000065], [1.0982089999999971, 1.1048819999999751], [1.1082470000000058, 1.114879999999971], [1.1215379999999868, 1.1282079999999723], [1.1348810000000071, 1.1415380000000255], [1.1482369999999946, 1.1548829999999839], [1.1615380000000073, 1.1682079999999928], [1.1748809999999708, 1.1815379999999891], [1.1882079999999746, 1.1949070000000006], [1.2015390000000252, 1.2082090000000107], [1.2148809999999912, 1.2215380000000096], [1.2282089999999926, 1.2348799999999756], [1.2415349999999989, 1.2482880000000023], [1.2548840000000041, 1.2615349999999808], [1.2682080000000155, 1.2748809999999935], [1.2815380000000118, 1.2882079999999974], [1.2948809999999753, 1.3015379999999936], [1.3082079999999792, 1.3148860000000013], [1.321534999999983, 1.3282070000000203], [1.3348809999999958, 1.3415380000000141], [1.3482379999999807, 1.3548829999999725], [1.3615379999999959, 1.3682089999999789], [1.3748840000000087, 1.3815349999999853], [1.3882029999999759, 1.3948859999999854], [1.4015380000000164, 1.4082099999999969], [1.4148839999999723, 1.4215399999999931], [1.4282089999999812, 1.4348810000000185], [1.4415389999999775, 1.4482399999999984], [1.4548940000000243, 1.4615380000000187], [1.4682109999999966, 1.4748819999999796], [1.4815380000000005, 1.4882089999999835], [1.4948810000000208, 1.5015379999999823], [1.5082090000000221, 1.5148810000000026], [1.5215380000000209, 1.5282080000000065], [1.5348809999999844, 1.5415380000000027], [1.5482400000000212, 1.554883000000018], [1.5615379999999845, 1.5682120000000168], [1.5748810000000049, 1.57826799999998], [1.5815660000000094, 1.5882080000000087], [1.5948809999999867, 1.6015489999999772], [1.6082049999999981, 1.6148830000000203], [1.6215359999999919, 1.6282100000000241], [1.6348859999999945, 1.641539000000023], [1.6482480000000237, 1.6548839999999814], [1.6615380000000073, 1.6682089999999903], [1.6748789999999758, 1.6815379999999891], [1.6882089999999721, 1.6950459999999907], [1.7015390000000252, 1.7082090000000107], [1.7148940000000152, 1.7215570000000184], [1.7282060000000001, 1.7348749999999882], [1.7415349999999989, 1.7482469999999921], [1.7548830000000066, 1.7615379999999732], [1.7682100000000105, 1.7748809999999935], [1.7815380000000118, 1.7882119999999873], [1.7948809999999753, 1.8015389999999911], [1.8082099999999741, 1.814881000000014], [1.8215379999999755, 1.8282100000000128], [1.8348809999999958, 1.8415380000000141], [1.8482440000000224, 1.8548829999999725], [1.8615389999999934, 1.8682079999999814], [1.8748820000000137, 1.8815379999999777], [1.8882090000000176, 1.894880999999998], [1.9015380000000164, 1.9082089999999994], [1.9148789999999849, 1.9215379999999982], [1.9282089999999812, 1.9348810000000185], [1.94153799999998, 1.9482390000000009], [1.9548829999999953, 1.9615380000000187], [1.9682090000000017, 1.9748839999999745], [1.9815380000000005, 1.9882089999999835], [1.9948810000000208, 2.0015379999999823], [2.0082090000000221, 2.0148810000000026], [2.0215380000000209, 2.0282260000000178], [2.0348799999999869, 2.0415380000000027], [2.0482390000000237, 2.0548800000000256], [2.0615379999999845, 2.0682170000000042], [2.0748839999999973, 2.0815380000000232], [2.0882139999999936, 2.0948880000000258], [2.1015409999999974, 2.1082099999999855], [2.1148919999999976, 2.1215389999999843], [2.1282090000000267, 2.1348810000000071], [2.1415380000000255, 2.1420800000000213], [2.1482470000000262, 2.1548829999999839], [2.1615380000000073, 2.1682079999999928], [2.1748809999999708, 2.1815379999999891], [2.1882089999999721, 2.1948840000000018], [2.2015390000000252, 2.2082090000000107], [2.2148809999999912, 2.2215380000000096], [2.2282089999999926, 2.2348860000000172], [2.2382799999999747, 2.2448810000000208], [2.2515409999999747, 2.2582080000000246], [2.2648800000000051, 2.2715370000000235], [2.2782060000000115, 2.2848809999999844], [2.2915370000000053, 2.2982069999999908], [2.3048820000000205, 2.311538999999982], [2.3182069999999726, 2.3248849999999948], [2.3315380000000232, 2.3382080000000087], [2.3448779999999942, 2.3515390000000025], [2.3582069999999931, 2.3648850000000152], [2.3715389999999843, 2.3782069999999749], [2.3848810000000071, 2.3915359999999737], [2.3982070000000135, 2.4048809999999889], [2.4115370000000098, 2.4182069999999953], [2.4248820000000251, 2.4315369999999916], [2.4382069999999771, 2.4448810000000094], [2.4515400000000227, 2.4582070000000158], [2.4648799999999937, 2.4715380000000096], [2.4782069999999976, 2.484880999999973], [2.4915369999999939, 2.4982079999999769], [2.5048800000000142, 2.5115369999999757], [2.5182070000000181, 2.524879999999996], [2.5315380000000118, 2.5382079999999974], [2.5448799999999778, 2.551542999999981], [2.5582069999999817, 2.5648800000000165], [2.5715379999999755, 2.5782179999999926], [2.5882110000000011, 2.5948829999999816], [2.6015370000000075, 2.6082099999999855], [2.614879999999971, 2.6215369999999893], [2.6282069999999749, 2.6348820000000046], [2.6415369999999712, 2.642138999999986], [2.6421720000000164, 2.6482379999999921], [2.6548829999999839, 2.6615370000000098], [2.6682069999999953, 2.6748809999999708], [2.6815369999999916, 2.6882079999999746], [2.6948800000000119, 2.7015369999999734], [2.7082070000000158, 2.7148809999999912], [2.7215370000000121, 2.7282069999999976], [2.7348799999999756, 2.7415369999999939], [2.7482370000000174, 2.7548859999999991], [2.7615379999999732, 2.768209000000013], [2.7717119999999795, 2.7782100000000014], [2.7848809999999844, 2.7915390000000002], [2.7982089999999857, 2.8048810000000231], [2.8115369999999871, 2.8182090000000244], [2.8248810000000049, 2.8315380000000232], [2.8382090000000062, 2.8448819999999841], [2.8515449999999873, 2.8582079999999905], [2.8648810000000253, 2.8715379999999868], [2.8782090000000267, 2.8848859999999945], [2.8915369999999712, 2.898208000000011], [2.9048809999999889, 2.9115380000000073], [2.9182079999999928, 2.9248809999999708], [2.9315369999999916, 2.9382069999999771], [2.9448830000000044, 2.9515440000000126], [2.9582080000000133, 2.9648809999999912], [2.9715380000000096, 2.9782089999999926], [2.984880999999973, 2.9915349999999989], [2.9982079999999769, 3.0048859999999991], [3.0115379999999732, 3.0182080000000155], [3.0248809999999935, 3.0315380000000118], [3.0382079999999974, 3.0448809999999753], [3.0515409999999861, 3.0582079999999792], [3.064881000000014, 3.0715379999999755], [3.0782489999999711, 3.0848809999999958], [3.0915380000000141, 3.0982079999999996], [3.1048809999999776, 3.1115389999999934], [3.1182079999999814, 3.1248810000000162], [3.1315399999999727, 3.1382080000000201], [3.1422210000000064, 3.1482359999999971], [3.1548819999999864, 3.1615409999999997], [3.1682069999999953, 3.1748799999999733], [3.1815369999999916, 3.1882069999999771], [3.1948800000000119, 3.2015369999999734], [3.2082090000000107, 3.2148809999999912], [3.2215370000000121, 3.2282069999999976], [3.2348840000000223, 3.2415540000000078], [3.2482410000000073, 3.2548820000000092], [3.2615369999999757, 3.2682070000000181], [3.2748859999999809, 3.2815370000000144], [3.2882079999999974, 3.2948799999999778], [3.3015369999999962, 3.3082069999999817], [3.3148800000000165, 3.3215379999999755], [3.3282070000000203, 3.3348799999999983], [3.3415370000000166, 3.3482359999999858], [3.3548819999999751, 3.3615379999999959], [3.368206999999984, 3.3748929999999859], [3.381541000000027, 3.3882090000000176], [3.3948780000000056, 3.4015499999999861], [3.4082070000000044, 3.414874999999995], [3.4215360000000032, 3.4282059999999888], [3.4348780000000261, 3.4415369999999825], [3.4482820000000061, 3.4515710000000013], [3.4582070000000158, 3.464888999999971], [3.4715380000000096, 3.4782079999999951], [3.484880999999973, 3.4915379999999914], [3.4982099999999718, 3.5048780000000193], [3.5115389999999707, 3.5182070000000181], [3.5248809999999935, 3.5315380000000118], [3.5382079999999974, 3.5448809999999753], [3.5515409999999861, 3.5582069999999817], [3.5648800000000165, 3.5715379999999755], [3.5782080000000178, 3.581547999999998], [3.5815719999999942, 3.5882080000000087], [3.5948799999999892, 3.6015370000000075], [3.6082069999999931, 3.6148769999999786], [3.6215379999999868, 3.6282049999999799], [3.6348810000000071, 3.6415380000000255], [3.6482369999999946, 3.6548829999999839], [3.6615370000000098, 3.6682069999999953], [3.6748789999999758, 3.6815369999999916], [3.6882069999999771, 3.6948820000000069], [3.7015369999999734, 3.7082070000000158], [3.7148799999999937, 3.7215370000000121], [3.7282069999999976, 3.7348820000000273], [3.7415369999999939, 3.7482370000000174], [3.7548820000000092, 3.7615369999999757], [3.7682080000000155, 3.774879999999996], [3.7815370000000144, 3.7882069999999999], [3.7948830000000271, 3.8015389999999911], [3.8082069999999817, 3.8148800000000165], [3.821536999999978, 3.8282070000000203], [3.8348799999999983, 3.8415370000000166], [3.8482379999999807, 3.8548799999999801], [3.8615369999999984, 3.868206999999984], [3.8748820000000137, 3.8815379999999777], [3.8882090000000176, 3.8948800000000006], [3.9015370000000189, 3.9082070000000044], [3.9148799999999824, 3.9215370000000007], [3.9282069999999862, 3.934880000000021], [3.9415409999999724, 3.9482269999999744], [3.9548819999999978, 3.9615380000000187], [3.9682070000000067, 3.9748799999999846], [3.981537000000003, 3.9882069999999885], [3.9948800000000233, 4.0015369999999848], [4.0082080000000246, 4.0148829999999975], [4.0215370000000235, 4.0282080000000065], [4.0348799999999869, 4.0415380000000027], [4.0482380000000262, 4.0548860000000104], [4.0615369999999871, 4.0682080000000269], [4.0748810000000049, 4.0815390000000207], [4.0882070000000112, 4.0948819999999841], [4.1015370000000075, 4.108208999999988], [4.1148810000000253, 4.1215379999999868], [4.1282090000000267, 4.1348879999999895], [4.1415349999999762, 4.1482439999999769], [4.1548740000000066, 4.1615360000000123], [4.1682040000000029, 4.1748789999999758], [4.1815389999999866, 4.1882120000000214], [4.1948800000000119, 4.201533999999981], [4.2082090000000107, 4.2148809999999912], [4.2215340000000197, 4.2282089999999926], [4.234880999999973, 4.2415340000000015], [4.2482370000000174, 4.2548820000000092], [4.2615369999999757, 4.2682080000000155], [4.274881999999991, 4.2815380000000118], [4.2882089999999948, 4.2948830000000271], [4.3015369999999962, 4.3082079999999792], [4.3148860000000013, 4.3215389999999729], [4.3282080000000178, 4.3348839999999882], [4.3415380000000141, 4.3482319999999959], [4.3548819999999751, 4.3615369999999984], [4.3682089999999789, 4.3748830000000112], [4.3815369999999803, 4.3882070000000226], [4.3948800000000006, 4.4015380000000164], [4.4082070000000044, 4.4148819999999773], [4.4215370000000007, 4.4282069999999862], [4.4348830000000135, 4.44153799999998], [4.4482310000000211, 4.4549069999999915], [4.4615370000000212, 4.4682070000000067], [4.4748819999999796, 4.4815389999999979], [4.488207999999986, 4.4948820000000183], [4.5015369999999848, 4.5082070000000272], [4.5148829999999975, 4.5215509999999881], [4.5282080000000065, 4.5348829999999793], [4.5415390000000002, 4.548232999999982], [4.5548900000000003, 4.5615349999999921], [4.5682029999999827, 4.5748780000000124], [4.5815630000000169, 4.5882080000000087], [4.5948809999999867, 4.601538000000005], [4.6082069999999931, 4.6148820000000228], [4.6215379999999868, 4.6282069999999749], [4.6348830000000021, 4.6415380000000255], [4.6482369999999946, 4.6548819999999864], [4.6615380000000073, 4.6649009999999862], [4.6715340000000083, 4.6782089999999812], [4.6848830000000135, 4.6915339999999901], [4.6982070000000249, 4.7048849999999902], [4.7115350000000262, 4.7182070000000067], [4.7248809999999821, 4.7315340000000106], [4.7382089999999835, 4.7448810000000208], [4.7515409999999747, 4.7582070000000272], [4.764883999999995, 4.771536000000026], [4.778207000000009, 4.7848849999999743], [4.7915370000000053, 4.7982069999999908], [4.8048810000000231, 4.8115339999999946], [4.8182080000000269, 4.8248800000000074], [4.8315339999999765, 4.8382090000000062], [4.8448809999999867, 4.8515419999999949], [4.8582079999999905, 4.8648810000000253], [4.8715359999999919, 4.8782069999999749], [4.8848830000000021, 4.8915339999999787], [4.898206000000016, 4.9048799999999915], [4.9115340000000174, 4.9182079999999928], [4.9248809999999708, 4.9315339999999992], [4.9382079999999746, 4.9448810000000094], [4.9515420000000177, 4.9582080000000133], [4.9648879999999735, 4.9715340000000197], [4.9782079999999951, 4.984880999999973], [4.9915340000000015, 4.9982089999999744], [5.0048840000000041, 5.0115359999999782], [5.0182070000000181, 5.024879999999996], [5.0315360000000169, 5.0382069999999999], [5.0448799999999778, 5.0515399999999886], [5.0582079999999792, 5.0648820000000114], [5.071534999999983, 5.0782070000000203], [5.0848819999999932, 5.0915350000000217], [5.0982079999999996, 5.1048799999999801], [5.1115350000000035, 5.118206999999984], [5.1248800000000188, 5.1315349999999853], [5.1382080000000201, 5.1448839999999905], [5.1515410000000088, 5.1582080000000019], [5.1648809999999798, 5.1715340000000083], [5.1782069999999862, 5.1848860000000059], [5.1915339999999901, 5.1982080000000224], [5.2048810000000003, 5.2115339999999719], [5.2182080000000042, 5.2248860000000263], [5.231537000000003, 5.238207999999986], [5.2448800000000233, 5.2515409999999747], [5.2582070000000272, 5.2648810000000026], [5.2715349999999717, 5.278207000000009], [5.2848829999999793, 5.2915340000000128], [5.2982079999999883, 5.3048800000000256], [5.3115339999999946, 5.3182090000000244], [5.3248800000000074, 5.3315339999999765], [5.3382070000000112, 5.3448799999999892], [5.3515419999999949, 5.3582069999999931], [5.3648850000000152, 5.3715339999999969], [5.3782090000000267, 5.3848830000000021], [5.3915339999999787, 5.3982020000000261], [5.4048799999999915, 5.4115340000000174], [5.4182099999999878, 5.42488400000002], [5.4315359999999941, 5.4382069999999771], [5.4448810000000094, 5.4515410000000202], [5.4582090000000107, 5.4648799999999937], [5.4715340000000197, 5.4782069999999976], [5.4848850000000198, 5.4915340000000015], [5.4982079999999769, 5.5048810000000117], [5.5115349999999808, 5.5182070000000181], [5.5248809999999935, 5.5315340000000219], [5.5382079999999974, 5.5448799999999778], [5.5515409999999861, 5.5582069999999817], [5.5648800000000165, 5.5715339999999856], [5.5782500000000255, 5.5815450000000055], [5.581561000000022, 5.5882080000000087], [5.5948819999999841, 5.6015620000000013], [5.6082099999999855, 5.6149100000000089], [5.6215379999999868, 5.6282090000000267], [5.634886999999992, 5.6415529999999876], [5.648239999999987, 5.6548819999999864], [5.6615390000000048, 5.6682149999999751], [5.6748880000000099, 5.6815369999999916], [5.6882069999999771, 5.6948820000000069], [5.7015369999999734, 5.7082080000000133], [5.7148819999999887, 5.7215380000000096], [5.7282069999999976, 5.7348820000000273], [5.7415369999999939, 5.7482309999999757], [5.7548810000000117, 5.7615379999999732], [5.7682070000000181, 5.7748809999999935], [5.7815370000000144, 5.7882069999999999], [5.7948819999999728, 5.8015369999999962], [5.8082079999999792, 5.8148820000000114], [5.8215359999999805, 5.8282070000000203], [5.8348799999999983, 5.8415340000000242], [5.8482210000000237, 5.8548729999999978], [5.8615369999999984, 5.8682029999999941], [5.8748810000000162, 5.8782199999999989], [5.8848780000000147, 5.8915369999999712], [5.8982389999999896, 5.904876999999999], [5.9115360000000123, 5.9182240000000093], [5.924886000000015, 5.931541999999979], [5.9382059999999797, 5.9448869999999943], [5.9515410000000202, 5.9582080000000133], [5.9648799999999937, 5.9715340000000197], [5.9782069999999976, 5.9849350000000072], [5.9915399999999863, 5.998201999999992], [6.0048780000000193, 6.0115420000000199], [6.0182070000000181, 6.024879999999996], [6.0315350000000194, 6.0382060000000024], [6.0448830000000271, 6.051542999999981], [6.0582069999999817, 6.064881000000014], [6.0715359999999805, 6.0782090000000153], [6.0848809999999958, 6.0915340000000242], [6.0982079999999996, 6.1048809999999776], [6.111534000000006, 6.1182079999999814], [6.1248860000000036, 6.1315339999999878], [6.1382070000000226, 6.1448859999999854], [6.1515410000000088, 6.1582070000000044], [6.1648799999999824, 6.1715340000000083], [6.1782059999999888, 6.184880000000021], [6.1915369999999825, 6.1982080000000224], [6.2048849999999902, 6.2115390000000161], [6.2182090000000017, 6.2248829999999771], [6.2315399999999954, 6.238207999999986], [6.2448850000000107, 6.2515389999999798], [6.2582080000000246, 6.2648849999999925], [6.2715339999999742, 6.2782090000000039], [6.2848809999999844, 6.2915340000000128], [6.2982079999999883, 6.3048810000000231], [6.3115480000000161, 6.3182080000000269], [6.3248820000000023, 6.3315359999999714], [6.3382090000000062, 6.3448819999999841], [6.3515409999999974, 6.3582069999999931], [6.364879999999971, 6.3715349999999944], [6.3782069999999749, 6.3848820000000046], [6.3915359999999737, 6.3982030000000236], [6.4048809999999889, 6.4115340000000174], [6.4182069999999953, 6.4248799999999733], [6.4315349999999967, 6.4382069999999771], [6.4448820000000069, 6.4515400000000227], [6.4582080000000133, 6.4648799999999937], [6.4715360000000146, 6.4782079999999951], [6.4848820000000273, 6.4915349999999989], [6.4982099999999718, 6.5048800000000142], [6.5115349999999808, 6.5182080000000155], [6.5248839999999859, 6.5315350000000194], [6.5382060000000024, 6.5448799999999778], [6.5515419999999835, 6.5582069999999817], [6.5648800000000165, 6.571534999999983], [6.5782060000000229, 6.581559000000027], [6.5815890000000081, 6.5882080000000087], [6.5948829999999816, 6.6015499999999747], [6.6082049999999981, 6.6148759999999811], [6.6215359999999919, 6.6282199999999989], [6.634884999999997, 6.6415369999999712], [6.6482359999999971, 6.6548869999999738], [6.6615350000000149, 6.6682069999999953], [6.6748789999999758, 6.6815349999999967], [6.6882079999999746, 6.6948810000000094], [6.701535999999976, 6.7082070000000158], [6.7148789999999963, 6.7215400000000045], [6.7282079999999951, 6.7348820000000273], [6.7415349999999989, 6.7482319999999731], [6.7548810000000117, 6.7615359999999782], [6.7682070000000181, 6.7748809999999935], [6.7815390000000093, 6.7882069999999999], [6.7948819999999728, 6.8015350000000012], [6.8082259999999906, 6.8149080000000026], [6.821534999999983, 6.8282029999999736], [6.8348750000000109, 6.8415380000000141], [6.8482319999999959, 6.8548729999999978], [6.861536000000001, 6.868206999999984], [6.8748800000000188, 6.8815529999999967], [6.8882070000000226, 6.8948800000000006], [6.9015370000000189, 6.9082070000000044], [6.9148839999999723, 6.9215360000000032], [6.9282059999999888, 6.9348790000000236], [6.9415359999999851, 6.948237000000006], [6.9548810000000003, 6.9615360000000237], [6.9682070000000067, 6.9748799999999846], [6.9815360000000055, 6.988205999999991], [6.9948790000000258, 7.0015349999999899], [7.0082019999999829, 7.0148800000000051], [7.021536000000026, 7.0282060000000115], [7.0348809999999844, 7.0415360000000078], [7.0482390000000237, 7.0548810000000231], [7.0615359999999896, 7.0682059999999751], [7.0748800000000074, 7.0815339999999765], [7.0915929999999889, 7.0982030000000123], [7.1049039999999763, 7.1115350000000035], [7.118206999999984, 7.1248800000000188], [7.1315480000000093, 7.1382060000000251], [7.1448839999999905, 7.1515410000000088], [7.1582080000000019, 7.1648799999999824], [7.1715360000000032, 7.1782059999999888], [7.184880000000021, 7.19153799999998], [7.1982070000000249, 7.2048800000000028], [7.2115370000000212, 7.2182080000000042], [7.2248839999999745, 7.2315380000000005], [7.2382069999999885, 7.2448800000000233], [7.2515430000000265, 7.2582080000000246], [7.2648800000000051, 7.2715380000000209], [7.278207000000009, 7.2848799999999869], [7.2915370000000053, 7.2982069999999908], [7.304885000000013, 7.3115369999999871], [7.3182069999999726, 7.3248800000000074], [7.3315370000000257, 7.3382070000000112], [7.3448799999999892, 7.3515409999999974], [7.3582069999999931, 7.3648810000000253], [7.3715339999999969, 7.3782079999999723], [7.3848800000000097, 7.3915369999999712], [7.3982020000000261, 7.4048879999999713], [7.4115370000000098, 7.4182079999999928], [7.4248799999999733, 7.4315379999999891], [7.4382069999999771, 7.4448800000000119], [7.4515519999999924, 7.4582110000000057], [7.4648869999999761, 7.4715439999999944], [7.4782060000000001, 7.484880999999973], [7.4915359999999964, 7.4982059999999819], [7.5048770000000218, 7.5115359999999782], [7.5182070000000181, 7.524881999999991], [7.5315360000000169, 7.5382069999999999], [7.5448799999999778, 7.5515419999999835], [7.5582079999999792, 7.5648830000000089], [7.571536999999978, 7.5782439999999838], [7.5882080000000087, 7.5948799999999892], [7.6015370000000075, 7.6082069999999931], [7.6148789999999735, 7.6215359999999919], [7.6282069999999749, 7.6348790000000122], [7.6415359999999737, 7.6482359999999971], [7.6548819999999864, 7.6615360000000123], [7.6682069999999953, 7.6748799999999733], [7.6815359999999941, 7.6882069999999771], [7.6949900000000184, 7.701535999999976], [7.7082030000000259, 7.7148819999999887], [7.7215350000000171, 7.7282069999999976], [7.7348789999999781, 7.7415369999999939], [7.7482360000000199, 7.7548810000000117], [7.7615369999999757, 7.7682060000000206], [7.774879999999996, 7.7815370000000144], [7.7882060000000024, 7.7948789999999804], [7.8015369999999962, 7.8082059999999842], [7.814879000000019, 7.821536999999978], [7.8282070000000203, 7.8348790000000008], [7.8415370000000166, 7.8482339999999908], [7.8548809999999776, 7.8615369999999984], [7.8682079999999814, 7.8748790000000213], [7.8815369999999803, 7.8882060000000251], [7.894880999999998, 7.9015370000000189], [7.908206000000007, 7.9148829999999748], [7.9215379999999982, 7.9282059999999888], [7.9348790000000236, 7.9415369999999825], [7.9482390000000009, 7.9548869999999852], [7.9615370000000212, 7.9682060000000092], [7.9748789999999872, 7.981537000000003], [7.9882069999999885, 7.9948779999999715], [8.0015349999999899, 8.0082019999999829], [8.014883999999995, 8.0215339999999742], [8.0282060000000115, 8.0348789999999894], [8.0415360000000078, 8.048230999999987], [8.0548810000000231, 8.0615369999999871], [8.0682069999999726, 8.0748790000000099], [8.0815370000000257, 8.0882060000000138], [8.094963000000007, 8.1048799999999801], [8.111536000000001, 8.118206999999984], [8.1248800000000188, 8.1315369999999803], [8.1382080000000201, 8.1448819999999955], [8.1515400000000113, 8.1582070000000044], [8.1648779999999874, 8.1715370000000007], [8.1782069999999862, 8.184880000000021], [8.1915369999999825, 8.1982070000000249], [8.2048800000000028, 8.2115370000000212], [8.2182070000000067, 8.2248799999999846], [8.231537000000003, 8.238207999999986], [8.2448800000000233, 8.2515409999999747], [8.2582090000000221, 8.2648800000000051], [8.271536000000026, 8.278207000000009], [8.2848799999999869, 8.2915370000000053], [8.2982069999999908, 8.3048999999999751], [8.3115379999999845, 8.3182069999999726], [8.3248800000000074, 8.3315370000000257], [8.3382070000000112, 8.3448849999999766], [8.3515419999999949, 8.358208999999988], [8.364879999999971, 8.3715369999999893], [8.3782069999999749, 8.3848800000000097], [8.3915369999999712, 8.3982030000000236], [8.4048839999999814, 8.4115370000000098], [8.4182079999999928, 8.4248799999999733], [8.4315369999999916, 8.4382069999999771], [8.4448800000000119, 8.4515410000000202], [8.4582070000000158, 8.4648799999999937], [8.4715370000000121, 8.4782069999999976], [8.4848799999999756, 8.4915369999999939], [8.4982089999999744, 8.5048800000000142], [8.5115359999999782, 8.5182070000000181], [8.524879999999996, 8.5315370000000144], [8.5382069999999999, 8.5448799999999778], [8.5515409999999861, 8.5582069999999817], [8.5648860000000013, 8.571536999999978], [8.5782540000000154, 8.5815450000000055], [8.5882100000000037, 8.5948789999999917], [8.6015509999999722, 8.6082040000000006], [8.6148729999999887, 8.6215349999999944], [8.6282249999999863, 8.6348859999999945], [8.6415359999999737, 8.6482300000000123], [8.6548809999999889, 8.6615360000000123], [8.6682059999999979, 8.6748789999999758], [8.6815359999999941, 8.6882059999999797], [8.6948800000000119, 8.7015369999999734], [8.7082060000000183, 8.7148789999999963], [8.7215380000000096, 8.7282060000000001], [8.7348820000000273, 8.7415349999999989], [8.7482249999999908, 8.7548840000000041], [8.7615369999999757, 8.7682080000000155], [8.7748789999999985, 8.7815370000000144], [8.7882069999999999, 8.7948769999999854], [8.8015369999999962, 8.8082059999999842], [8.814879000000019, 8.821536999999978], [8.8282060000000229, 8.8348790000000008], [8.8415360000000192, 8.8482359999999858], [8.8548809999999776, 8.861536000000001], [8.868206999999984, 8.8748790000000213], [8.8815369999999803, 8.8882060000000251], [8.8948790000000031, 8.9015360000000214], [8.908206000000007, 8.9148789999999849], [8.9215360000000032, 8.9282059999999888], [8.934882000000016, 8.9415389999999775], [8.9482449999999858, 8.9582070000000158], [8.9649079999999799, 8.9715360000000146], [8.9782050000000027, 8.9848850000000198], [8.9915379999999914, 8.998203999999987], [9.004872999999975, 9.0115470000000073], [9.0182399999999916, 9.0248829999999884], [9.0315479999999866, 9.0382060000000024], [9.0448930000000018, 9.0515419999999835], [9.0582059999999842, 9.0648800000000165], [9.0715359999999805, 9.0782080000000178], [9.0848799999999983, 9.0915370000000166], [9.0982070000000022, 9.1048799999999801], [9.1115379999999959, 9.1182079999999814], [9.1248850000000061, 9.1315369999999803], [9.1382080000000201, 9.1448839999999905], [9.1515400000000113, 9.1582070000000044], [9.1648789999999849, 9.1715370000000007], [9.1782079999999837, 9.184880000000021], [9.1915369999999825, 9.1982070000000249], [9.2048800000000028, 9.2115370000000212], [9.2182070000000067, 9.2248799999999846], [9.2315360000000055, 9.238205999999991], [9.2448899999999981, 9.2515399999999772], [9.2582059999999728, 9.2648889999999824], [9.2715370000000235, 9.2782080000000065], [9.2848799999999869, 9.2915370000000053], [9.2982069999999908, 9.3048789999999713], [9.3083159999999907, 9.3149040000000127], [9.3215359999999805, 9.3282019999999761], [9.3348750000000109, 9.3415360000000192], [9.3482399999999757, 9.3548809999999776], [9.361536000000001, 9.368206999999984], [9.3748800000000188, 9.3815369999999803], [9.3882070000000226, 9.3948790000000031], [9.4015340000000265, 9.4082109999999943], [9.4148799999999824, 9.4215379999999982], [9.4282069999999862, 9.434880000000021], [9.4415359999999851, 9.4482380000000035], [9.4548810000000003, 9.4615380000000187], [9.4682099999999991, 9.4748789999999872], [9.481537000000003, 9.488205999999991], [9.4948790000000258, 9.5015359999999873], [9.5082070000000272, 9.5148800000000051], [9.5248849999999834, 9.5315330000000245], [9.5382079999999974, 9.5448799999999778], [9.5515389999999911, 9.5582069999999817], [9.5648800000000165, 9.571536999999978], [9.5782409999999913, 9.5815450000000055], [9.5815620000000195, 9.5882090000000062], [9.5948779999999942, 9.6015370000000075], [9.6082059999999956, 9.6148789999999735], [9.6215359999999919, 9.6282059999999774], [9.6348790000000122, 9.6415359999999737], [9.6482359999999971, 9.654878999999994], [9.6615360000000123, 9.6682059999999979], [9.6748789999999758, 9.6815359999999941], [9.6882059999999797, 9.6948790000000145], [9.701535999999976, 9.7082060000000183], [9.7148799999999937, 9.7215360000000146], [9.7282060000000001, 9.7348850000000198], [9.7415359999999964, 9.7482350000000224], [9.7548790000000167, 9.7615359999999782], [9.7682060000000206, 9.7748849999999834], [9.7815370000000144, 9.7882060000000024], [9.7948789999999804, 9.8015359999999987], [9.8082069999999817, 9.814879000000019], [9.8215379999999755, 9.8282060000000229], [9.8348809999999958, 9.8415360000000192], [9.8482319999999959, 9.8548809999999776], [9.8615369999999984, 9.8682059999999865], [9.8748790000000213, 9.8815339999999878], [9.8882009999999809, 9.894880999999998], [9.9015360000000214, 9.9082329999999956], [9.9148809999999798, 9.9215370000000007], [9.9282069999999862, 9.9348790000000236], [9.9415369999999825, 9.9482259999999769], [9.9548780000000079, 9.9615410000000111], [9.9682060000000092, 9.9748789999999872], [9.9815360000000055, 9.9882069999999885], [9.9948800000000233, 10.001535999999987], [10.008201999999983, 10.014958999999976], [10.024878000000001, 10.031536000000017], [10.038207999999997, 10.044877999999983], [10.051539999999989, 10.058205999999984], [10.064879000000019, 10.071533999999986], [10.078205000000025, 10.084880999999996], [10.091536000000019, 10.098207000000002], [10.104878999999983, 10.111536000000001], [10.118205999999986, 10.124879000000021], [10.131538999999975, 10.138206000000025], [10.14488399999999, 10.151542000000006], [10.158206000000007, 10.164887000000022], [10.171536000000003, 10.178207999999984], [10.184879000000024, 10.191535999999985], [10.19820900000002, 10.204880000000003], [10.211536000000024, 10.218207000000007], [10.224879999999985, 10.231537000000003], [10.238206999999989, 10.244880000000023], [10.251539999999977, 10.258207000000027], [10.264879000000008, 10.271536000000026], [10.278208000000006, 10.284879999999987], [10.291536000000008, 10.298206999999991], [10.304880000000026, 10.31153599999999], [10.318206999999973, 10.32487900000001], [10.331535999999971, 10.338207000000011], [10.344879999999989, 10.351539000000002], [10.358205999999996, 10.364879999999971], [10.371535999999992, 10.378205999999977], [10.384883000000002, 10.391536999999971], [10.398202000000026, 10.404873000000009], [10.411540000000002, 10.41820899999999], [10.424887000000012, 10.431535999999994], [10.43820599999998, 10.444879000000014], [10.451537999999971, 10.458205000000021], [10.464939000000015, 10.471537000000012], [10.478206, 10.484878999999978], [10.491535999999996, 10.498206999999979], [10.504882000000009, 10.511535999999978], [10.518205000000023, 10.521554999999978], [10.52161000000001, 10.528208000000006], [10.534879999999987, 10.541536000000008], [10.548236999999972, 10.55488600000001], [10.561537999999985, 10.568200999999988], [10.574870999999973, 10.58155499999998], [10.588208000000009, 10.594880999999987], [10.601537000000008, 10.608206999999993], [10.614882000000023, 10.621535999999992], [10.628205999999977, 10.634881000000007], [10.641536999999971, 10.648245999999972], [10.654881999999986, 10.661536000000012], [10.668206999999995, 10.674878999999976], [10.681535999999994, 10.68820599999998], [10.694879000000014, 10.701535999999976], [10.708206000000018, 10.714878999999996], [10.721536000000015, 10.728206], [10.738206999999989, 10.744880000000023], [10.751539999999977, 10.758205999999973], [10.764879000000008, 10.771536000000026], [10.778206000000011, 10.784879999999987], [10.791537000000005, 10.798205999999993], [10.804880000000026, 10.811536999999987], [10.818206999999973, 10.824881000000005], [10.831535999999971, 10.838205000000016], [10.844878999999992, 10.851539000000002], [10.858206999999993, 10.864878999999974], [10.871536999999989, 10.878205999999977], [10.88488000000001, 10.891536999999971], [10.898209000000008, 10.904876000000002], [10.911596999999972, 10.918202000000008], [10.924872999999991, 10.931533000000002], [10.938206999999977, 10.944882000000007], [10.951537999999971, 10.958200999999974], [10.964891000000023, 10.971536000000015], [10.978206999999998, 10.984878999999978], [10.991535999999996, 10.998205999999982], [11.004879000000017, 11.011532999999986], [11.018207000000018, 11.024878000000001], [11.031536000000017, 11.038206000000002], [11.04487899999998, 11.051539999999989], [11.058206999999982, 11.064883000000009], [11.071535999999981, 11.078206000000023], [11.084879000000001, 11.091536000000019], [11.098206000000005, 11.104878999999983], [11.111536999999998, 11.118204999999989], [11.124879000000021, 11.13153699999998], [11.138206000000025, 11.144881999999996], [11.151539000000014, 11.158205000000009], [11.16487699999999, 11.171536000000003], [11.178204999999991, 11.184880000000021], [11.191535999999985, 11.198204999999973], [11.204881, 11.211537000000021], [11.218205000000012, 11.224879999999985], [11.231535000000008, 11.238205999999991], [11.244881000000021, 11.25153899999998], [11.258204999999975, 11.264879000000008], [11.271537000000023, 11.278205000000014], [11.284879999999987, 11.291536000000008], [11.298203999999998, 11.304875999999979], [11.311534999999992, 11.318205999999975], [11.324880000000007, 11.331535999999971], [11.338206000000014, 11.344878999999992], [11.351539000000002, 11.358205999999996], [11.364878999999974, 11.371534999999994], [11.37820499999998, 11.384879000000012], [11.391535999999974, 11.398200999999972], [11.404872000000012, 11.411536000000012], [11.418205, 11.424879999999973], [11.431536999999992, 11.438204999999982], [11.444879000000014, 11.451537999999971], [11.458206000000018, 11.464880999999991], [11.470109999999977, 11.470507999999995], [11.470887000000005, 11.475865999999996], [11.476087000000007, 11.476135999999997], [11.476520999999991, 11.476591999999982], [11.476608999999996, 11.476662999999974], [11.476739000000009, 11.476789999999994]]}, \"kworker/1:1H-408\": {\"1\": [[0.28120300000000498, 0.28124700000000757], [0.28166800000002468, 0.28168299999998681], [0.28493700000001354, 0.28495299999997314]]}, \"su-4648\": {\"1\": [[0.14503500000000713, 0.1450980000000186], [0.14630899999997382, 0.14676600000001372], [0.14677799999998342, 0.14842199999998229], [0.14882699999998295, 0.15168699999998125], [0.15178300000002309, 0.15361500000000206]]}, \"sh-4669\": {\"0\": [[11.626314999999977, 11.626335999999981], [11.626361999999972, 11.626375999999993], [11.626836000000026, 11.626918999999987], [11.626976000000013, 11.634701000000007], [11.635354000000007, 11.635496999999987], [11.652387999999974, 11.653526999999997]]}, \"shutils-4649\": {\"0\": [[0.16531600000001845, 0.17054100000001426]], \"1\": [[0.16198500000001559, 0.16240699999997332], [0.16241700000000492, 0.1652859999999805], [0.17274500000002035, 0.17280699999997751], [0.17282599999998638, 0.1728390000000104], [0.1728989999999726, 0.1729209999999739], [0.17295000000001437, 0.17296199999998407], [0.17311799999998811, 0.17475000000001728]]}, \"su-4644\": {\"1\": [[0.066546000000016647, 0.067096999999989748], [0.067107000000021344, 0.075040999999998803]]}, \"busybox-4668\": {\"1\": [[11.575867000000017, 11.576295000000016], [11.576326999999992, 11.57641000000001], [11.57642199999998, 11.576476000000014], [11.576487999999983, 11.576551999999992], [11.576564000000019, 11.576694999999972], [11.576705000000004, 11.576714999999979], [11.576754999999991, 11.576796999999999], [11.578100000000006, 11.578127999999992]]}, \"ksoftirqd/0-3\": {\"0\": [[0.00017100000002301385, 0.00020599999999149077], [0.00024000000001933586, 0.00025199999998903877], [0.00028800000001183435, 0.00029899999998406201], [0.00033899999999675856, 0.00034899999997151099], [0.0044679999999743814, 0.0045210000000110995], [0.0045600000000263208, 0.0045729999999934989], [0.004607000000021344, 0.0046169999999960964], [0.0050229999999942265, 0.0050499999999829015], [0.0051490000000171676, 0.0051619999999843458], [0.0083799999999882857, 0.0085000000000263753], [0.0086789999999723477, 0.0086919999999963693], [0.0087300000000141154, 0.0087399999999888678], [0.0087790000000040891, 0.0087879999999813663], [0.0088289999999915381, 0.0088489999999978863], [0.0088729999999941356, 0.0088830000000257314], [0.013822000000004664, 0.013912000000004809], [0.014076999999986128, 0.01409000000001015], [0.047705000000007658, 0.04772200000002158], [0.053042000000004919, 0.05307599999997592], [0.053116999999986092, 0.053130000000010114], [0.053161999999986165, 0.053173000000015236], [0.053202999999996337, 0.053211999999973614], [0.053240000000016607, 0.053248999999993885], [0.053270999999995183, 0.053279999999972461], [0.055107000000020889, 0.055163999999990665], [0.055206999999995787, 0.055220000000019809], [0.05525199999999586, 0.055263000000024931], [0.065330000000017208, 0.065356000000008407], [0.065404999999998381, 0.065413999999975658], [0.065455999999983305, 0.065467000000012376], [0.068466000000000804, 0.068511999999998352], [0.068592000000023745, 0.068605999999988398], [0.068646000000001095, 0.068657999999970798], [0.075240000000007967, 0.075292999999987842], [0.075351000000011936, 0.075360999999986689], [0.075398000000006959, 0.075406999999984237], [0.081938999999977113, 0.081961999999975887], [0.081998999999996158, 0.082007999999973435], [0.082047999999986132, 0.082059000000015203], [0.088058999999987009, 0.088099999999997181], [0.088167999999996027, 0.088176999999973305], [0.088308999999981097, 0.088347999999996318], [0.088397999999983767, 0.088405000000022937], [0.088474000000019259, 0.088481999999999061], [0.088524000000006708, 0.088543000000015581], [0.13167900000001964, 0.13170000000002346], [0.13541099999997641, 0.13544200000001183], [0.13581499999997959, 0.13583899999997584], [0.13587000000001126, 0.13587999999998601], [0.13590900000002648, 0.13591800000000376], [0.13594699999998738, 0.1359560000000215], [0.1359780000000228, 0.13598799999999756], [0.13600900000000138, 0.13601799999997866], [0.13835699999998496, 0.13839000000001533], [0.17321199999997816, 0.17323499999997694], [0.1732900000000086, 0.17330900000001748], [0.17335300000002007, 0.17336099999999988], [0.17339800000002015, 0.17340699999999742], [0.17344900000000507, 0.1734559999999874], [0.17349300000000767, 0.17350199999998495], [0.17497200000002522, 0.17498999999997977], [0.17506200000002536, 0.17507299999999759], [0.17511500000000524, 0.17512499999997999], [0.17516599999999016, 0.17517299999997249], [0.17521099999999024, 0.17521799999997256], [0.17525100000000293, 0.17525999999998021], [0.17826500000001033, 0.17827899999997499], [0.17830900000001293, 0.17832199999998011], [0.17834499999997888, 0.17835700000000543], [0.22763300000002573, 0.22767099999998663], [0.26157599999999093, 0.2616390000000024], [0.26167099999997845, 0.26168499999999995], [0.26171499999998105, 0.26172600000001012], [0.26996900000000323, 0.27003400000000966], [0.27007400000002235, 0.27008499999999458], [0.2701139999999782, 0.27012500000000728], [0.27350000000001273, 0.27360199999998258], [0.27370600000000422, 0.27372000000002572], [0.27640200000001869, 0.27643199999999979], [0.27646099999998341, 0.27647200000001249], [0.27650199999999359, 0.27651300000002266], [0.27982300000002169, 0.27985999999998512], [0.28016100000002098, 0.28018100000002732], [0.28020700000001852, 0.28021699999999328], [0.28311800000000176, 0.28318799999999555], [0.28323199999999815, 0.28324300000002722], [0.2832779999999957, 0.2832880000000273], [0.28332699999998567, 0.28333400000002484], [0.28354500000000371, 0.28356000000002268], [0.28358400000001893, 0.28359499999999116], [0.28593100000000504, 0.28594700000002149], [0.91162100000002511, 0.91167999999998983], [0.91232100000001992, 0.9123260000000073], [1.6945579999999723, 1.6945739999999887], [3.4483299999999986, 3.4485080000000039], [5.9153909999999996, 5.9154030000000262], [5.9166260000000079, 5.9166319999999928], [9.9083110000000261, 9.9083350000000223], [11.485027000000002, 11.485096999999996], [11.485822999999982, 11.485842999999988], [11.485871999999972, 11.485883999999999], [11.48591399999998, 11.485924000000011], [11.494297000000017, 11.49435299999999], [11.494572000000005, 11.494589000000019], [11.494679000000019, 11.494733999999994], [11.494801999999993, 11.494814000000019], [11.494838000000016, 11.49484799999999], [11.495203000000004, 11.495271000000002], [11.495302999999979, 11.49531300000001], [11.495340999999996, 11.495352000000025], [11.539657999999974, 11.539672999999993], [11.551813999999979, 11.551836999999978], [11.551878999999985, 11.551889000000017], [11.551924999999983, 11.551946999999984], [11.55198200000001, 11.551991999999984], [11.581178000000023, 11.581209999999999], [11.582000999999991, 11.58201200000002], [11.582045999999991, 11.582053999999971], [11.582095999999979, 11.582108000000005], [11.582154000000003, 11.582179999999994], [11.623724999999979, 11.623759000000007], [11.634823999999981, 11.634849999999972], [11.634936999999979, 11.634948000000009], [11.634979999999985, 11.634990000000016], [11.643053000000009, 11.64308299999999], [11.643114000000025, 11.643147999999997], [11.643187000000012, 11.643197999999984], [11.645041999999989, 11.645078000000012], [11.645133999999985, 11.645148000000006], [11.645181999999977, 11.645192000000009], [11.652059000000008, 11.652102000000014], [11.652143000000024, 11.652154999999993], [11.652185999999972, 11.652196000000004], [11.655263999999988, 11.655281000000002], [11.65531900000002, 11.655333999999982], [11.655367000000012, 11.655376999999987], [11.655408000000023, 11.655494999999974], [11.655535999999984, 11.655545000000018], [11.655569000000014, 11.655577999999991], [11.658270000000016, 11.658282999999983], [11.658308999999974, 11.658319000000006], [11.658353999999974, 11.658367999999996], [11.69974000000002, 11.699753999999984], [11.701307999999983, 11.701338000000021], [11.701366000000007, 11.701379999999972], [11.701407000000017, 11.70141799999999], [11.701443999999981, 11.701454000000012], [11.701494000000025, 11.701504], [11.701539000000025, 11.701549], [11.701587000000018, 11.70159799999999], [11.701630000000023, 11.701640999999995], [11.701672999999971, 11.701682000000005], [11.705067999999983, 11.705119000000025], [11.715084999999988, 11.715147000000002], [11.715193999999997, 11.715203999999972], [11.715237999999999, 11.715246999999977], [11.721803000000023, 11.721848000000023]]}, \"shell srvc 4651-4652\": {\"1\": [[11.494168999999999, 11.49462299999999]]}, \"ksoftirqd/3-20\": {\"3\": [[0.84169300000002067, 0.84171600000001945], [0.84484600000001819, 0.84485999999998285], [0.84501000000000204, 0.84501599999998689], [0.84504700000002231, 0.84505300000000716], [0.84508299999998826, 0.84508899999997311], [0.84511900000001106, 0.84512499999999591], [0.84515099999998711, 0.84516000000002123], [0.8482349999999883, 0.84824199999997063], [0.848762000000022, 0.84876800000000685], [0.84879799999998795, 0.8488039999999728], [0.8488320000000158, 0.84883899999999812], [0.84886499999998932, 0.84887300000002597], [0.85158200000000761, 0.85159299999997984], [0.85162800000000516, 0.85163599999998496], [0.85165899999998373, 0.85166500000002543], [0.85489699999999402, 0.85490499999997382], [0.85502400000001444, 0.85503099999999677], [0.85508800000002338, 0.85509400000000824], [4.5750029999999811, 4.5750259999999798], [11.49466799999999, 11.494684000000007], [11.494749000000013, 11.494766000000027], [11.494784999999979, 11.494797000000005], [11.495033999999976, 11.495054999999979], [11.703296000000023, 11.703310999999985], [11.703345000000013, 11.703350999999998], [11.703381999999976, 11.703388000000018], [11.703418999999997, 11.703424999999982], [11.703455000000019, 11.703461000000004], [11.703485999999998, 11.703493999999978], [11.704916000000026, 11.704925000000003], [11.704958999999974, 11.704965000000016], [11.705003999999974, 11.705012000000011], [11.705037000000004, 11.705042999999989], [11.705075000000022, 11.705081000000007], [11.705106999999998, 11.70511399999998], [11.708274000000017, 11.708283999999992], [11.708302000000003, 11.708309999999983], [11.708323000000007, 11.708330999999987], [11.708345000000008, 11.708351999999991], [11.708365000000015, 11.708371999999997], [11.708385000000021, 11.708392000000003], [11.711600999999973, 11.711611000000005], [11.711633000000006, 11.711640999999986], [11.711658999999997, 11.711666999999977], [11.711685999999986, 11.711693000000025], [11.711711999999977, 11.711719000000016], [11.711736999999971, 11.71175199999999]]}, \"su-4676\": {\"1\": [[11.71616499999999, 11.716588999999999], [11.716599999999971, 11.718345999999997], [11.718415999999991, 11.721664999999973], [11.721704999999986, 11.721767999999997], [11.721784000000014, 11.723051999999996]]}, \"su-4672\": {\"1\": [[11.643001000000027, 11.643285999999989], [11.643332999999984, 11.643891999999994]]}, \"shell srvc 4663-4664\": {\"0\": [[11.580399, 11.580476999999973]], \"1\": [[11.58016600000002, 11.580376999999999]]}, \"kworker/u8:1-43\": {\"2\": [[8.6020040000000222, 8.6022939999999721]]}, \"shell srvc 4636-4637\": {\"0\": [[0.0038549999999872853, 0.0042450000000258115]]}, \"VosWDThread-1455\": {\"3\": [[3.4015709999999899, 3.4016020000000253]]}, \"healthd-559\": {\"3\": [[0.83540599999997767, 0.83550500000001193]]}, \"kworker/2:2-478\": {\"2\": [[0.8352429999999913, 0.83547700000002578], [0.84824400000002242, 0.84858900000000403], [0.84961700000002338, 0.84994699999998602], [0.85007899999999381, 0.85011900000000651], [0.85024199999998018, 0.8502809999999954], [0.85041799999999057, 0.85063000000002376], [0.85213699999997061, 0.85274500000002718], [0.8527599999999893, 0.85277300000001333], [0.86279999999999291, 0.86284599999999045], [0.86386800000002495, 0.86389400000001615], [0.86901799999998275, 0.86902900000001182], [0.87415299999997842, 0.87416400000000749], [0.87928799999997409, 0.87929900000000316], [0.8844230000000266, 0.88443399999999883], [0.88955900000001975, 0.89292999999997846], [0.90491400000001931, 0.91026299999998628], [0.91073799999998073, 0.91084200000000237], [1.6020790000000034, 1.602156999999977], [2.0693089999999756, 2.0696760000000154], [2.0697630000000231, 2.0698049999999739], [2.0699420000000259, 2.069989000000021], [2.0701209999999719, 2.070165999999972], [2.0703050000000189, 2.0703480000000241], [2.0704900000000066, 2.0705370000000016], [2.0706710000000044, 2.0707120000000145], [2.0708529999999996, 2.0709089999999719], [2.0710339999999974, 2.071076000000005], [2.071610000000021, 2.0717559999999935], [5.8418540000000121, 5.8419170000000236], [5.8548940000000016, 5.8551929999999857], [5.8562140000000227, 5.8564969999999903], [5.8566240000000107, 5.8566640000000234], [5.8567859999999996, 5.8568230000000199], [5.8569640000000049, 5.8571769999999788], [5.8582269999999994, 5.8588240000000269], [5.8588480000000231, 5.8588619999999878], [5.8688940000000116, 5.8689380000000142], [5.8699599999999919, 5.8699849999999856], [5.8750979999999799, 5.8751060000000166], [5.8802309999999807, 5.8802440000000047], [5.8853510000000142, 5.885360999999989], [5.8904850000000124, 5.8904959999999846], [5.8956200000000081, 5.8991219999999771], [5.9115570000000162, 5.914449999999988], [5.914923999999985, 5.9149679999999876], [5.9151190000000042, 5.9151709999999866], [6.8083139999999958, 6.8083950000000186], [6.8113819999999805, 6.8114190000000008], [6.8135589999999979, 6.8165700000000129], [6.8283420000000206, 6.8290819999999712], [6.8391020000000253, 6.8394850000000247], [6.8395889999999895, 6.8396559999999909], [6.8397580000000175, 6.839808000000005], [6.839919000000009, 6.8407470000000217], [7.0820190000000025, 7.0834290000000237], [7.0836140000000114, 7.0836800000000153], [7.083802999999989, 7.0838519999999789], [7.0844399999999723, 7.084686999999974], [7.0847110000000271, 7.0847689999999943], [7.0849279999999908, 7.0849900000000048], [7.0851170000000252, 7.085158999999976], [7.0857449999999744, 7.0859580000000051], [7.0860200000000191, 7.086133000000018], [7.0863580000000184, 7.0864169999999831], [7.0870259999999803, 7.0872160000000122], [7.0872550000000274, 7.0872989999999731], [7.0874939999999924, 7.0875580000000014], [7.0875689999999736, 7.0875790000000052], [7.0881469999999922, 7.088483999999994], [7.0886600000000044, 7.0887089999999944], [7.0896670000000199, 7.0899229999999989], [7.0899469999999951, 7.0899939999999901], [7.0915620000000104, 7.0919939999999997], [8.6022939999999721, 8.6023650000000202], [10.575015000000008, 10.575132999999994], [10.575151000000005, 10.575166000000024], [10.577632999999992, 10.577701999999988], [10.577729999999974, 10.577784000000008], [10.577832000000001, 10.577860999999984], [10.578314999999975, 10.578340000000026], [10.580463000000009, 10.580764999999985], [10.581091000000015, 10.581140000000005], [10.581267000000025, 10.581312000000025], [10.581450000000018, 10.581497000000013], [10.581643999999983, 10.581690999999978], [10.581821999999988, 10.581869999999981], [10.581999999999994, 10.582044999999994], [10.582181999999989, 10.582236000000023], [10.582360999999992, 10.583462999999995]]}, \"Binder:1102_8-2213\": {\"2\": [[0.84021400000000313, 0.84081600000001799], [0.84093200000000934, 0.84148199999998496]]}, \"kworker/3:0-21\": {\"3\": [[0.29489999999998417, 0.29492699999997285], [0.8447519999999713, 0.84478200000000925], [2.0815749999999866, 2.081606000000022], [3.3755100000000198, 3.3755709999999794], [3.3883539999999925, 3.3886899999999969], [3.3897119999999745, 3.3900649999999928], [3.3901910000000157, 3.3902350000000183], [3.390357999999992, 3.3903980000000047], [3.3905189999999834, 3.3907290000000216], [3.3917450000000144, 3.392360999999994], [3.3923760000000129, 3.3923889999999801], [3.4024160000000165, 3.402464000000009], [3.4034869999999842, 3.4035129999999754], [3.4086389999999938, 3.4086540000000127], [3.4137769999999819, 3.4137890000000084], [3.4189139999999725, 3.4189269999999965], [3.4240500000000225, 3.4240619999999922], [3.4291860000000156, 3.4326159999999959], [3.4449309999999969, 3.4478349999999978], [3.4484580000000165, 3.44849099999999], [3.4486850000000118, 3.4487199999999802], [3.4490979999999922, 3.4491449999999872], [4.1384080000000267, 4.1385139999999865], [4.1428389999999808, 4.1428879999999708], [4.1446589999999901, 4.147564999999986], [4.1582290000000057, 4.1589129999999841], [4.168939000000023, 4.1692840000000047], [4.1693900000000212, 4.1694560000000251], [4.1695589999999925, 4.1696019999999976], [4.1697429999999827, 4.170566000000008], [5.6049419999999941, 5.6049669999999878], [6.6020570000000021, 6.602123000000006], [7.0982700000000136, 7.0982930000000124], [7.1015520000000265, 7.1015770000000202], [10.584902, 10.584924999999998], [10.905043999999975, 10.905118000000016], [10.90851600000002, 10.908547999999996], [10.910392000000002, 10.913442999999972], [10.924905000000024, 10.925605000000019], [10.935628000000008, 10.935986000000014], [10.936014, 10.936024999999972], [10.936119000000019, 10.936155999999983], [10.936168000000009, 10.936176999999986], [10.936280000000011, 10.936316999999974], [10.936328000000003, 10.936337999999978], [10.936455000000024, 10.937277999999992], [11.494526000000008, 11.494556999999986], [11.601851000000011, 11.601908999999978]]}, \"busybox-4657\": {\"1\": [[0.27033399999999119, 0.2717089999999871]]}, \"busybox-4654\": {\"0\": [[0.26096899999998868, 0.26112699999998767], [0.26113800000001675, 0.26114999999998645], [0.26139799999998559, 0.26146099999999706]]}, \"busybox-4655\": {\"0\": [[0.26112699999998767, 0.26113800000001675], [0.26114999999998645, 0.26139799999998559]]}, \"OkHttp Connecti-3994\": {\"2\": [[0.83359799999999495, 0.8352429999999913], [9.8894210000000271, 9.8934970000000249]]}, \"VosMCThread-1457\": {\"0\": [[11.551585999999986, 11.551632999999981], [11.651898000000017, 11.651978999999983]], \"2\": [[0.048452999999994972, 0.048534000000017841], [0.14857599999999138, 0.14863600000001043], [0.24877700000001823, 0.24889899999999443], [0.34863699999999653, 0.34875799999997525], [0.44866200000001299, 0.44878699999998162], [0.54866299999997636, 0.54878800000000183], [0.64864299999999275, 0.64877100000001064], [0.74865599999998267, 0.74878400000000056], [0.84858900000000403, 0.84864499999997633], [4.1385240000000181, 4.1414379999999937], [4.1424920000000043, 4.1427630000000022], [4.1482710000000225, 4.1483200000000124], [4.2486450000000104, 4.2487750000000233], [4.3486580000000004, 4.3487830000000258], [4.448660000000018, 4.448789999999974], [4.5486599999999839, 4.5487840000000119], [4.6486629999999991, 4.6487859999999728], [4.7486599999999726, 4.7487840000000006], [4.8486580000000004, 4.8487860000000182], [4.9486570000000256, 4.9487809999999968], [5.0486629999999764, 5.0487909999999943], [5.1486530000000243, 5.148777999999993], [5.2486640000000193, 5.2487889999999879], [5.3486629999999877, 5.3487900000000081], [5.4486610000000155, 5.4487859999999841], [5.5486599999999839, 5.5487860000000069], [5.6486429999999928, 5.6487660000000233], [5.7486630000000218, 5.7487899999999854], [5.8482529999999997, 5.8483049999999821], [5.9149679999999876, 5.9151190000000042], [5.9486249999999927, 5.948744999999974], [6.0486419999999725, 6.048766999999998], [6.148668999999984, 6.1487900000000195], [6.248644000000013, 6.2487689999999816], [6.3486409999999864, 6.3487650000000144], [6.4486650000000054, 6.4487889999999766], [6.5486520000000041, 6.5487759999999753], [6.6486439999999902, 6.6487730000000056], [6.748644000000013, 6.7487709999999765]], \"3\": [[0.91083600000001752, 0.91100999999997612], [0.94864200000000665, 0.94875799999999799], [1.0486409999999751, 1.048768999999993], [1.1486449999999877, 1.1487720000000081], [1.2486470000000054, 1.248771999999974], [1.3486439999999789, 1.3487700000000018], [1.4486479999999915, 1.4487740000000144], [1.5486480000000142, 1.5487749999999778], [1.6486489999999776, 1.6487730000000056], [1.6886579999999753, 1.6919040000000223], [1.7486640000000193, 1.7487879999999905], [1.8486480000000256, 1.8487739999999917], [1.9486479999999915, 1.9487790000000018], [2.0486450000000218, 2.0487699999999904], [2.1486449999999877, 2.1487730000000056], [2.2486470000000054, 2.2487729999999715], [2.3485569999999711, 2.3486649999999827], [2.4486459999999965, 2.4487740000000144], [2.5486470000000168, 2.5487769999999728], [2.6486449999999877, 2.6487730000000056], [2.7486450000000104, 2.748771999999974], [2.8486659999999802, 2.8487910000000056], [2.9486459999999965, 2.948771000000022], [3.0486430000000269, 3.0487699999999904], [3.1486479999999801, 3.1487730000000056], [3.2486430000000155, 3.2487709999999765], [3.3486459999999738, 3.3487729999999942], [3.3753130000000056, 3.3755100000000198], [3.4016020000000253, 3.4016270000000191], [3.4482760000000212, 3.4483190000000263], [3.44849099999999, 3.4486850000000118], [3.5486440000000243, 3.548768999999993], [3.6486489999999776, 3.6487740000000031], [3.7486460000000079, 3.7487740000000258], [3.8486469999999713, 3.8487709999999993], [3.9483730000000037, 3.9484479999999849], [4.0486470000000168, 4.0487739999999803], [6.8084139999999707, 6.8113579999999843], [6.8482549999999947, 6.8483110000000238], [6.948646999999994, 6.9487750000000119], [7.0486419999999725, 7.0487620000000106], [7.1486429999999928, 7.1487690000000157], [7.2486450000000104, 7.2487709999999765], [7.3486429999999814, 7.3487680000000069], [7.4486380000000167, 7.4487639999999828], [7.5486460000000193, 7.548768999999993], [7.6486400000000003, 7.6487670000000207], [7.7486450000000104, 7.7487689999999816], [7.8486409999999864, 7.8487680000000069], [7.948646999999994, 7.9487700000000245], [8.0486430000000269, 8.0487709999999879], [8.1486419999999953, 8.1487690000000157], [8.2486460000000079, 8.2487729999999715], [8.3486459999999738, 8.3487709999999993], [8.4486410000000092, 8.4487690000000271], [8.5486419999999725, 8.5487739999999803], [8.6486580000000117, 8.6487859999999728], [8.7485520000000179, 8.7486630000000218], [8.848637999999994, 8.8487610000000245], [8.9486440000000016, 8.9487589999999955], [9.0150179999999978, 9.0150919999999815], [9.0152449999999931, 9.0154789999999707], [9.0486549999999966, 9.048766999999998], [9.1486439999999902, 9.1487710000000106], [9.248299999999972, 9.2483579999999961], [9.3486459999999738, 9.3487650000000144], [9.448646999999994, 9.4487760000000094], [9.5486450000000218, 9.548768999999993], [9.6486419999999953, 9.6487680000000182], [9.7486480000000029, 9.7487760000000208], [9.8486480000000256, 9.8487759999999867], [9.9482959999999707, 9.9483579999999847], [10.048650000000009, 10.04876999999999], [10.14864, 10.148767000000021], [10.248643000000015, 10.248767999999984], [10.348635000000002, 10.348762000000022], [10.448644999999999, 10.448766999999975], [10.548647000000017, 10.548776999999973], [10.648659000000009, 10.648783999999978], [10.748646000000008, 10.748771999999974], [10.848644999999976, 10.848768000000007], [10.905118000000016, 10.908033999999986], [10.908259999999984, 10.908431000000007], [10.90848299999999, 10.90851600000002], [10.908547999999996, 10.908568000000002], [10.948262999999997, 10.948317999999972], [11.048660999999981, 11.048785000000009], [11.148645999999985, 11.148774000000003], [11.248639000000026, 11.248762999999997], [11.348641999999984, 11.348765000000014], [11.448643000000004, 11.448773000000017]]}, \"kworker/2:1H-405\": {\"2\": [[2.0696970000000192, 2.0697230000000104], [2.071598999999992, 2.071610000000021], [7.0921809999999823, 7.0921940000000063], [10.575132999999994, 10.575151000000005], [10.578220999999985, 10.578233000000012]]}, \"irq/19-408000.q-572\": {\"1\": [[0.1360000000000241, 0.13618999999999915], [0.13674200000002656, 0.13680599999997867], [0.13691099999999778, 0.13693999999998141], [11.54334799999998, 11.543614999999988], [11.544152999999994, 11.544224999999983], [11.544338999999979, 11.544367000000022], [11.714561000000003, 11.714867000000027], [11.715397999999993, 11.71547099999998], [11.715567000000021, 11.715595000000008]]}, \"su-4666\": {\"1\": [[11.553447000000006, 11.553827000000013], [11.553834999999992, 11.559324000000004]]}, \"rt-app-4659\": {\"1\": [[0.28662200000002258, 0.28677499999997735]]}, \"lmkd-565\": {\"2\": [[0.83895799999999099, 0.83914599999997108], [0.84081600000001799, 0.84093200000000934]]}, \"shutils-4667\": {\"1\": [[11.566865000000007, 11.567243000000019], [11.567250999999999, 11.571628999999973], [11.571661000000006, 11.574473000000012], [11.576295000000016, 11.576326999999992], [11.57641000000001, 11.57642199999998], [11.576476000000014, 11.576487999999983], [11.576551999999992, 11.576564000000019], [11.576694999999972, 11.576705000000004], [11.576714999999979, 11.576754999999991], [11.576796999999999, 11.578100000000006]]}, \"InputReader-1399\": {\"2\": [[3.1277989999999818, 3.1279289999999946]]}, \"shutils-4668\": {\"1\": [[11.574473000000012, 11.57584700000001]]}, \"vold-540\": {\"2\": [[0.83577300000001742, 0.83584700000000112]]}, \"<-transport-4124\": {\"0\": [[0.0055879999999888241, 0.0057899999999904139], [0.0061529999999834217, 0.0062040000000251894], [0.047579999999982192, 0.047705000000007658], [0.047753999999997632, 0.047893999999985226], [0.08725800000001982, 0.087385999999980868], [0.13159000000001697, 0.13167900000001964], [0.13175100000000839, 0.13191699999998718], [11.476912000000027, 11.477008000000012], [11.485269000000017, 11.48533900000001], [11.494920999999977, 11.495086000000015], [11.539672999999993, 11.539764999999989], [11.539805999999999, 11.539962000000003], [11.581247000000019, 11.581327999999985], [11.581483999999989, 11.581510999999978], [11.623632999999984, 11.623724999999979], [11.623759000000007, 11.623857999999984], [11.654683999999975, 11.654758000000015], [11.699652000000015, 11.69974000000002]], \"1\": [[0.17764599999998154, 0.17774200000002338], [0.17777599999999438, 0.17780900000002475], [0.22763700000001563, 0.22770900000000438], [0.2278180000000134, 0.22795200000001614], [0.2736409999999978, 0.27375999999998157], [0.28029400000002624, 0.28054099999997106], [0.28786600000000817, 0.28796499999998559], [0.28887600000001612, 0.2889589999999771], [0.29829200000000355, 0.29845799999998235], [0.29939200000001165, 0.29944899999998142], [0.30577799999997524, 0.30583899999999176], [0.30646100000001297, 0.30650200000002314], [11.470507999999995, 11.470645999999988], [11.492515000000026, 11.492629000000022], [11.494732999999997, 11.494778999999994]], \"3\": [[11.49480699999998, 11.494861000000014], [11.69979699999999, 11.699921000000018]]}, \"ActivityManager-1127\": {\"2\": [[0.83843799999999646, 0.83895799999999099], [0.83914599999997108, 0.83955800000001091]]}, \"adbd-4121\": {\"0\": [[0.0057899999999904139, 0.0061529999999834217], [0.0063099999999849388, 0.0064510000000268519], [0.047893999999985226, 0.049824000000000979], [0.051585999999986143, 0.052171999999984564], [0.052550999999994019, 0.052892999999983203], [0.087936000000013337, 0.087966999999991913], [0.13191699999998718, 0.1321219999999812], [0.13213799999999765, 0.13332700000000841], [0.13464299999998275, 0.13515699999999242], [0.13524599999999509, 0.13534299999997756], [0.13544200000001183, 0.1356969999999933], [0.1763080000000059, 0.17642899999998463], [0.17690599999997403, 0.17768899999998666], [0.17773399999998674, 0.17808400000001257], [11.477008000000012, 11.477247999999975], [11.484623999999997, 11.484832999999981], [11.48533900000001, 11.48552699999999], [11.539962000000003, 11.541889000000026], [11.543557000000021, 11.544019999999989], [11.544039999999995, 11.544078000000013], [11.544244999999989, 11.54427800000002], [11.54428999999999, 11.544358999999986], [11.544418000000007, 11.544482000000016], [11.544511, 11.544534999999996], [11.544557999999995, 11.544745999999975], [11.579692000000023, 11.579784000000018], [11.580248999999981, 11.580345000000023], [11.580373000000009, 11.580399], [11.580476999999973, 11.580824000000007], [11.581327999999985, 11.581483999999989], [11.581768000000011, 11.581912999999986], [11.623857999999984, 11.625035000000025], [11.626081999999997, 11.626314999999977], [11.626335999999981, 11.626361999999972], [11.626375999999993, 11.626761999999985], [11.653526999999997, 11.654090999999994], [11.654758000000015, 11.655178999999976]], \"1\": [[0.0029809999999770298, 0.0031629999999722713], [0.0038930000000050313, 0.0047010000000113905], [0.086305999999979122, 0.086944000000016786], [0.087077000000022053, 0.087196000000005824], [0.08725099999998065, 0.087360999999987143], [0.087394000000017513, 0.087695999999994001], [0.087710000000015498, 0.087893000000008215], [0.22795200000001614, 0.22928300000000945], [0.23048799999997982, 0.23104599999999209], [0.27258699999998726, 0.27305000000001201], [0.2737730000000056, 0.27409599999998591], [0.2787230000000136, 0.27920100000000048], [0.28055799999998499, 0.28096199999998817], [0.28682400000002417, 0.28732300000001487], [0.28796499999998559, 0.28844299999997247], [0.2889589999999771, 0.28929899999997133], [0.29845799999998235, 0.29887600000000702], [0.29944899999998142, 0.29962799999998424], [0.30506000000002587, 0.30531300000001238], [0.30583899999999176, 0.30610300000000734], [0.30650200000002314, 0.30663700000002336], [11.469525999999973, 11.469967999999994], [11.470645999999988, 11.470877999999971], [11.476166999999975, 11.476444000000015]], \"2\": [[11.494848999999988, 11.495145999999977]], \"3\": [[11.491585999999984, 11.49198100000001], [11.492628000000025, 11.492750999999998], [11.493346999999972, 11.493370000000027], [11.494199999999978, 11.494526000000008], [11.699921000000018, 11.700941999999998], [11.702562999999998, 11.70289200000002], [11.702976999999976, 11.703077000000008], [11.703107999999986, 11.703246999999976]]}, \"sh-4636\": {\"0\": [[0.002158000000008542, 0.0037939999999707652]]}, \"hwrng-160\": {\"1\": [[0.051192000000014559, 0.05122399999999061], [0.052657000000010612, 0.052673000000027059], [0.066520000000025448, 0.066546000000016647], [0.067096999999989748, 0.067107000000021344], [0.07543500000002723, 0.075448999999991884], [0.076084999999977754, 0.0760970000000043], [0.13446699999997236, 0.1344930000000204], [0.13523299999997107, 0.13524400000000014], [0.1450980000000186, 0.14510899999999083], [0.14676600000001372, 0.14677799999998342], [0.15361500000000206, 0.15363999999999578], [0.15406600000000026, 0.15407699999997249], [0.16197399999998652, 0.16198500000001559], [0.16240699999997332, 0.16241700000000492], [0.17216799999999921, 0.17218400000001566], [0.2304070000000138, 0.23043000000001257], [0.23194899999998597, 0.23195900000001757], [0.24264699999997674, 0.24268399999999701], [0.24326800000000048, 0.24328000000002703], [0.25422099999997272, 0.25426099999998542], [0.26024499999999762, 0.26031799999998384], [0.26412799999997105, 0.26417500000002292], [0.27032100000002401, 0.27033399999999119], [0.27745900000002166, 0.27748000000002548], [11.543614999999988, 11.543639999999982], [11.545057999999983, 11.545067000000017], [11.553334000000007, 11.553352000000018], [11.553827000000013, 11.553834999999992], [11.559324000000004, 11.55934400000001], [11.559730999999999, 11.559739999999977], [11.566849999999988, 11.566865000000007], [11.567243000000019, 11.567250999999999], [11.57584700000001, 11.575867000000017], [11.626232000000016, 11.626266999999984], [11.627531999999974, 11.627566000000002], [11.636658000000011, 11.63668100000001], [11.637081000000023, 11.637103000000025], [11.643891999999994, 11.64390800000001], [11.644403000000011, 11.644413999999983], [11.702433999999982, 11.702453999999989], [11.703168000000005, 11.703182000000027], [11.716150000000027, 11.71616499999999], [11.716588999999999, 11.716599999999971], [11.723051999999996, 11.723073999999997], [11.723494000000017, 11.723502999999994], [11.731314999999995, 11.731355000000008]]}, \"adbd-4641\": {\"1\": [[0.049729000000013457, 0.051192000000014559]]}, \"sh-4639\": {\"1\": [[0.00029000000000678483, 0.0003330000000119071], [0.00034299999998665953, 0.0019639999999867541]]}, \"adbd-4645\": {\"1\": [[0.13330600000000459, 0.13446699999997236]]}, \"adbd-4646\": {\"1\": [[0.14175599999998667, 0.14181400000001076], [0.14185400000002346, 0.14193099999999959]]}, \"kworker/1:4-507\": {\"1\": [[4.5215509999999881, 4.5215820000000235], [4.57821899999999, 4.5782510000000229], [4.5815470000000005, 4.5815630000000169], [10.58155499999998, 10.581621999999982]]}, \"kworker/u8:7-267\": {\"0\": [[0.0019239999999740576, 0.002158000000008542], [0.0042450000000258115, 0.0043170000000145592], [0.0085000000000263753, 0.0086140000000227701], [0.09493800000001329, 0.095113000000026204]], \"1\": [[0.018341000000020813, 0.018415000000004511], [0.028385000000014315, 0.028432000000009339], [0.047573999999997341, 0.047628999999972166], [0.048401000000012573, 0.048970999999994547], [0.051696999999990112, 0.051939000000004398], [0.05212299999999459, 0.052158000000019911], [0.055045000000006894, 0.055165999999985615], [0.064968000000021675, 0.06508400000001302], [0.075040999999998803, 0.075180999999986398], [0.085101000000008753, 0.085208000000022821], [0.131574999999998, 0.13180499999998574], [0.13223099999999022, 0.13233800000000429], [0.14168300000000045, 0.14175599999998667], [0.14842199999998229, 0.14881700000000819], [0.15168699999998125, 0.15175699999997505], [0.16167500000000246, 0.16174000000000888], [0.17166600000001608, 0.17175400000002128], [11.708416999999997, 11.708467999999982], [11.718345999999997, 11.718415999999991], [11.728334000000018, 11.728406000000007]], \"2\": [[2.1121009999999956, 2.1121210000000019], [2.1153340000000185, 2.1155210000000011], [2.1253249999999753, 2.1255140000000097], [2.135325000000023, 2.1355459999999766], [2.1453200000000265, 2.1455050000000142], [2.1486449999999877, 2.1491419999999835], [2.1553430000000162, 2.1555290000000014], [2.1653239999999983, 2.1655119999999783], [2.1753249999999866, 2.1755120000000261], [2.1853280000000268, 2.1855519999999728], [2.1953310000000101, 2.1955130000000054], [2.2053240000000187, 2.2055110000000013], [2.2153220000000147, 2.2155070000000023], [2.225324999999998, 2.2255109999999831], [2.2353269999999839, 2.2355509999999867], [2.2453269999999748, 2.2455100000000243], [2.2486470000000054, 2.249149999999986], [2.2553409999999872, 2.2555259999999748], [2.2653250000000185, 2.2655129999999986], [2.2753210000000195, 2.2755129999999895], [2.2853210000000104, 2.2855460000000107], [2.2953259999999887, 2.2955140000000256], [2.3053239999999846, 2.305513000000019], [2.315324999999973, 2.315511000000015], [2.3253270000000157, 2.3255130000000008], [2.3352530000000229, 2.3354400000000055], [2.3452330000000075, 2.3453830000000266], [2.3485569999999711, 2.3489880000000198], [2.3553440000000023, 2.3555309999999849], [2.3653279999999768, 2.3655180000000087], [2.3753320000000144, 2.375518999999997], [2.3853240000000255, 2.3855469999999741], [2.3948889999999778, 2.3949370000000272], [2.4053220000000124, 2.4055099999999925], [2.4153239999999983, 2.4155129999999758], [2.4253239999999892, 2.4255079999999793], [2.4353189999999927, 2.435543999999993], [2.4453270000000202, 2.4455150000000003], [2.4486459999999965, 2.4491509999999721], [2.4553339999999935, 2.4555199999999786], [2.4653240000000096, 2.4655119999999897], [2.4753210000000081, 2.4755139999999756], [2.4853249999999889, 2.4855479999999943], [2.4953269999999748, 2.4955140000000142], [2.5053330000000074, 2.50551999999999], [2.5153320000000008, 2.5155179999999859], [2.5253280000000018, 2.5255149999999844], [2.535334999999975, 2.5355589999999779], [2.5453299999999786, 2.5455200000000104], [2.5486470000000168, 2.549143000000015], [2.5553360000000112, 2.5555239999999912], [2.5653290000000197, 2.5655150000000049], [2.5753230000000258, 2.5755090000000109], [2.5853250000000116, 2.5855409999999779], [2.5953180000000202, 2.5955050000000028], [2.605323999999996, 2.6055079999999862], [2.6153239999999869, 2.6155110000000263], [2.6253249999999753, 2.6255120000000147], [2.6353240000000255, 2.6355479999999716], [2.6453220000000215, 2.6455090000000041], [2.6486449999999877, 2.6491350000000011], [2.6553400000000238, 2.6555299999999988], [2.6653269999999907, 2.6655149999999708], [2.6753249999999866, 2.6755109999999718], [2.6853249999999775, 2.6855479999999829], [2.6953270000000202, 2.6955110000000104], [2.7053250000000162, 2.7055139999999938], [2.7153279999999995, 2.7155159999999796], [2.7253259999999955, 2.7255109999999831], [2.7353350000000205, 2.7355569999999716], [2.7453239999999823, 2.7455110000000218], [2.7486450000000104, 2.7491489999999885], [2.7553429999999821, 2.7555280000000266], [2.7653310000000033, 2.7655179999999859], [2.7753260000000068, 2.7755149999999844], [2.7853259999999977, 2.7855450000000133], [2.7953269999999861, 2.7955150000000231], [2.8053279999999745, 2.8055170000000089], [2.8153270000000248, 2.815511000000015], [2.8253230000000258, 2.8255090000000109], [2.8353230000000167, 2.8355450000000246], [2.8453220000000101, 2.8455079999999953], [2.8486659999999802, 2.8491730000000075], [2.8553400000000124, 2.8555240000000026], [2.8653249999999844, 2.8655140000000188], [2.8753270000000271, 2.8755150000000071], [2.8853219999999737, 2.8855429999999842], [2.8953240000000164, 2.8955139999999915], [2.9053250000000048, 2.9055119999999874], [2.9153190000000109, 2.915506999999991], [2.9253259999999841, 2.9255120000000261], [2.9353229999999826, 2.9355469999999855], [2.9453260000000228, 2.9455120000000079], [2.9486459999999965, 2.9491509999999721], [2.9553429999999707, 2.9555280000000153], [2.9653220000000147, 2.9655109999999922], [2.9753279999999904, 2.9755139999999756], [2.9853239999999914, 2.9855479999999943], [2.9948880000000031, 2.9949369999999931], [3.0053209999999808, 3.0055070000000228], [3.015324000000021, 3.0155060000000162], [3.0253220000000169, 3.0255109999999945], [3.0353269999999952, 3.0355480000000057], [3.0453239999999937, 3.0455109999999763], [3.0486430000000269, 3.04914500000001], [3.0553409999999985, 3.0555259999999862], [3.0653239999999755, 3.065511000000015], [3.0753300000000081, 3.0755179999999882], [3.0853260000000091, 3.0855490000000145], [3.0953240000000051, 3.0955139999999801], [3.1053269999999884, 3.1055129999999735], [3.1153249999999844, 3.1155120000000238], [3.125329000000022, 3.1255179999999996], [3.1353179999999838, 3.1355429999999842], [3.1453240000000164, 3.1455080000000066], [3.1486479999999801, 3.1491520000000151], [3.1553410000000213, 3.1555290000000014], [3.1653309999999806, 3.1655210000000125], [3.1753269999999816, 3.1755120000000261], [3.1853280000000268, 3.1855499999999779], [3.1953229999999735, 3.1955090000000155], [3.205331000000001, 3.2055179999999837], [3.2153220000000147, 3.2155139999999847], [3.2253220000000056, 3.2255099999999857], [3.2353289999999788, 3.2355539999999792], [3.2453259999999773, 3.2455059999999776], [3.2486430000000155, 3.2491449999999986], [3.2553379999999947, 3.2555269999999723], [3.2653300000000058, 3.2655189999999834], [3.2753260000000068, 3.2755149999999844], [3.2853289999999902, 3.2855539999999905], [3.2953249999999912, 3.2955109999999763], [3.3053239999999846, 3.3055110000000241], [3.3153280000000223, 3.3155169999999998], [3.3253270000000157, 3.3255139999999983], [3.3353280000000041, 3.3355530000000044], [3.345327999999995, 3.3455169999999725], [3.3486459999999738, 3.3491500000000087], [3.3553380000000175, 3.3555259999999976], [3.3653259999999818, 3.3655130000000213], [3.3753090000000157, 3.3755070000000273], [3.3850199999999973, 3.3852219999999988], [3.3948920000000271, 3.3949690000000032], [3.4048910000000205, 3.4049570000000244], [3.4148890000000165, 3.4149380000000065], [3.4249060000000213, 3.4249530000000163], [3.4348919999999907, 3.4349770000000035], [3.4449060000000031, 3.4449520000000007], [3.4482939999999758, 3.4487009999999714], [3.4549039999999991, 3.4549799999999777], [3.4653020000000083, 3.4654780000000187], [3.475324999999998, 3.4755109999999831], [3.4853299999999763, 3.4855479999999943], [3.4953249999999798, 3.4955110000000218], [3.5049539999999979, 3.5050850000000082], [3.5153320000000008, 3.5155209999999784], [3.5253339999999866, 3.5255210000000261], [3.5353240000000028, 3.5355480000000057], [3.5453259999999887, 3.5455140000000256], [3.5486440000000243, 3.5491349999999784], [3.5553340000000162, 3.5555200000000013], [3.565322999999978, 3.5655120000000124], [3.5753250000000207, 3.5755100000000084], [3.585316999999975, 3.585534999999993], [3.5953240000000051, 3.5955109999999877], [3.605322000000001, 3.6055119999999761], [3.6152490000000057, 3.6154060000000072], [3.6252329999999802, 3.6253790000000095], [3.635325000000023, 3.6355490000000259], [3.6453250000000139, 3.6455119999999965], [3.6486489999999776, 3.649140999999986], [3.6553400000000238, 3.6555290000000014], [3.6653249999999957, 3.6655079999999884], [3.6753259999999841, 3.6755130000000236], [3.6853239999999801, 3.685545999999988], [3.695323999999971, 3.6955090000000155], [3.7053290000000061, 3.7055179999999837], [3.7153230000000121, 3.7155089999999973], [3.725324999999998, 3.7255160000000274], [3.7353249999999889, 3.7355469999999968], [3.7453279999999722, 3.7455180000000041], [3.7486460000000079, 3.749149999999986], [3.7553359999999998, 3.7555209999999875], [3.7653209999999717, 3.7655060000000162], [3.7753230000000144, 3.7755089999999996], [3.7853240000000028, 3.7855470000000082], [3.7953259999999887, 3.7955099999999788], [3.805328999999972, 3.8055160000000114], [3.8153270000000248, 3.8155160000000024], [3.8253260000000182, 3.8255130000000008], [3.8353250000000116, 3.8355490000000145], [3.8453289999999924, 3.8455169999999725], [3.8486469999999713, 3.8491520000000037], [3.855322000000001, 3.8555109999999786], [3.8653229999999894, 3.8655140000000188], [3.8753259999999727, 3.8755120000000147], [3.8853219999999737, 3.8855449999999792], [3.8953290000000038, 3.8955169999999839], [3.9053260000000023, 3.9055129999999849], [3.9153239999999983, 3.9155109999999809], [3.9253229999999917, 3.925514000000021], [3.9353209999999876, 3.9355449999999905], [3.9450219999999945, 3.9451839999999834], [3.9482869999999934, 3.9487409999999841], [3.9553419999999733, 3.9555280000000153], [3.9653240000000096, 3.9655119999999897], [3.975324999999998, 3.9755170000000248], [3.9853249999999889, 3.9855420000000095], [3.9953279999999722, 3.9955170000000066], [4.0053199999999833, 4.0055100000000152], [4.0153250000000185, 4.0155110000000036], [4.0253240000000119, 4.025509999999997], [4.0353299999999876, 4.0355420000000208], [4.0453210000000013, 4.0455069999999864], [4.0486470000000168, 4.0491460000000075], [4.0553449999999884, 4.0555289999999786], [4.0653270000000248, 4.0655130000000099], [4.0753270000000157, 4.0755149999999958], [4.0853220000000192, 4.0855460000000221], [4.0953220000000101, 4.0955060000000003], [4.1053249999999935, 4.1055119999999761], [4.1153289999999743, 4.1155160000000137], [4.1253259999999727, 4.1255140000000097], [4.1350279999999771, 4.1352239999999938], [4.1449709999999982, 4.1456019999999967], [6.8482539999999972, 6.8486389999999915], [6.8549019999999814, 6.8549520000000257], [6.8653160000000071, 6.8654970000000048], [6.8753300000000195, 6.8755120000000147], [6.885325000000023, 6.8855479999999716], [6.8953220000000215, 6.8955100000000016], [6.9053299999999922, 6.9055139999999824], [6.9153249999999957, 6.9155099999999834], [6.9253209999999967, 6.9255079999999793], [6.9353249999999775, 6.9355489999999804], [6.9453229999999735, 6.9455140000000029], [6.948646999999994, 6.9491370000000074], [6.9553359999999884, 6.9555209999999761], [6.9653230000000121, 6.9655089999999973], [6.9753220000000056, 6.9755089999999882], [6.985320999999999, 6.9855450000000019], [6.9953249999999798, 6.9955150000000117], [7.0049710000000118, 7.0051280000000133], [7.0153270000000134, 7.0155189999999834], [7.0253299999999967, 7.0255179999999768], [7.0353240000000028, 7.0355470000000082], [7.0453190000000063, 7.0455059999999889], [7.0486419999999725, 7.0491329999999834], [7.0553409999999985, 7.0555239999999912], [7.065324999999973, 7.0655120000000124], [7.0753199999999765, 7.0755080000000135], [7.0816649999999868, 7.0820190000000025], [7.0834290000000237, 7.0834560000000124], [10.648659000000009, 10.649159999999995], [10.655339000000026, 10.655523000000017], [10.665324999999996, 10.665509999999983], [10.675328999999977, 10.675516000000016], [10.685326999999972, 10.685547999999983], [10.695321999999976, 10.695510000000013], [10.705330000000004, 10.705514999999991], [10.71532400000001, 10.715509999999995], [10.725324999999998, 10.725507999999991], [10.735322999999994, 10.735542000000009], [10.74532499999998, 10.745510000000024], [10.748646000000008, 10.749142000000006], [10.755338999999992, 10.755521999999985], [10.765326000000016, 10.765512999999999], [10.775335999999982, 10.775519999999972], [10.785324000000003, 10.785548000000006], [10.795324999999991, 10.795512999999971], [10.805330000000026, 10.805516000000011], [10.81532900000002, 10.815517], [10.825346000000025, 10.825530000000015], [10.835333999999989, 10.835550000000012], [10.845328999999992, 10.845511999999985], [10.848644999999976, 10.849149000000011], [10.855342000000007, 10.855527999999993], [10.865323999999987, 10.865509999999972], [10.875324999999975, 10.875508000000025], [10.885328000000015, 10.885556000000008], [10.895324000000016, 10.895509000000004], [10.904956000000027, 10.905032000000006], [10.914908000000025, 10.91501599999998], [10.924904000000026, 10.925264000000027], [10.934900000000027, 10.934982999999988], [10.944889999999987, 10.944962999999973], [10.948237000000006, 10.948628999999983], [10.954900000000009, 10.954969000000006], [10.965300000000013, 10.965472999999974], [10.97532799999999, 10.975510999999983], [10.985320000000002, 10.985543000000007], [10.995323999999982, 10.995510000000024], [11.005323999999973, 11.005513000000008], [11.048660999999981, 11.049155999999982], [11.055335000000014, 11.055521999999996], [11.065321999999981, 11.065508000000023], [11.075328000000013, 11.075513000000001], [11.085324000000014, 11.085545000000025], [11.095326999999997, 11.095514999999978], [11.105323999999996, 11.105512999999974], [11.115323999999987, 11.115509999999972], [11.125323999999978, 11.125509000000022], [11.13533000000001, 11.135554000000013], [11.145312999999987, 11.145496999999978], [11.148645999999985, 11.149139999999989], [11.155339000000026, 11.155525000000011], [11.165328999999986, 11.165517000000023], [11.175327999999979, 11.175516000000016], [11.185325999999975, 11.185549999999978], [11.195323999999971, 11.195512000000008], [11.205327000000011, 11.205513999999994], [11.215331999999989, 11.215517999999975], [11.225334999999973, 11.225518000000022], [11.235329999999976, 11.235545000000002], [11.245323999999982, 11.245510000000024], [11.248639000000026, 11.249144999999999], [11.255337999999995, 11.255521999999985], [11.265329000000008, 11.265514999999994], [11.275328000000002, 11.275513999999987], [11.285324000000003, 11.285547000000008], [11.29525000000001, 11.295401000000027], [11.305230999999992, 11.305383000000006], [11.315326000000027, 11.315512000000012], [11.325330000000008, 11.325521999999978], [11.335328000000004, 11.335549000000015], [11.345323000000008, 11.345507999999995], [11.348641999999984, 11.349133999999992], [11.355322999999999, 11.355506999999989], [11.365322999999989, 11.365512000000024], [11.375324999999975, 11.37551000000002], [11.385328000000015, 11.385543999999982], [11.395324000000016, 11.395512999999994], [11.404885999999976, 11.404935000000023], [11.415325999999993, 11.415513999999973], [11.425326999999982, 11.425516000000016], [11.435320999999988, 11.435543999999993], [11.445328000000018, 11.445513000000005], [11.448643000000004, 11.44914], [11.455333999999993, 11.455520999999976], [11.465319000000022, 11.465506000000005], [11.475298000000009, 11.475479000000007], [11.484961999999996, 11.485126999999977]], \"3\": [[0.1849369999999908, 0.18514099999998734], [0.18585400000000618, 0.1859890000000064], [0.18618199999997387, 0.18621300000000929], [0.20199800000000323, 0.20210300000002235], [0.2279179999999883, 0.22804400000001124], [0.23532699999998385, 0.23555499999997664], [0.23640000000000327, 0.23658399999999347], [0.23665199999999231, 0.23677900000001273], [0.2454010000000153, 0.24553800000001047], [0.24877700000001823, 0.24916000000001759], [0.24918600000000879, 0.24930100000000266], [0.25515599999999949, 0.25524999999998954], [0.26511099999999033, 0.2651960000000031], [0.27508299999999508, 0.27513800000002675], [0.28318699999999808, 0.28322900000000573], [0.28326199999997925, 0.28327500000000327], [0.28328099999998813, 0.28333500000002232], [0.28334100000000717, 0.28334899999998697], [0.28343499999999722, 0.28344900000001871], [0.28449999999997999, 0.28451599999999644], [0.28452199999998129, 0.28453000000001794], [0.28473800000000438, 0.2847489999999766], [0.28494899999998324, 0.28503399999999601], [0.28504199999997581, 0.28507999999999356], [0.28508599999997841, 0.28515099999998483], [0.28517299999998613, 0.28518600000001015], [0.285349999999994, 0.28542800000002444], [0.28567800000001853, 0.28568799999999328], [0.28569299999998066, 0.2857010000000173], [0.28585800000001882, 0.28586899999999105], [0.29492699999997285, 0.29496299999999565], [0.30493799999999283, 0.30498999999997523], [0.31490700000000516, 0.3149609999999825], [0.32186400000000503, 0.32193000000000893], [0.32197200000001658, 0.32198399999998628], [0.32199100000002545, 0.32201400000002423], [1.6050349999999867, 1.605197999999973], [2.0717089999999985, 2.0717280000000073], [2.0722099999999841, 2.0722160000000258], [2.0735070000000064, 2.0735129999999913], [4.1482649999999808, 4.1486770000000206], [4.1548970000000054, 4.1549440000000004], [4.1648979999999938, 4.1649449999999888], [4.1748989999999822, 4.1749679999999785], [4.1849090000000047, 4.1849920000000225], [4.1953110000000038, 4.1954690000000028], [4.205331000000001, 4.2055149999999912], [4.2153089999999906, 4.2154699999999821], [4.225338000000022, 4.2255210000000147], [4.2353110000000243, 4.2355000000000018], [4.2453290000000266, 4.2455150000000117], [4.2486450000000104, 4.2491350000000239], [4.25532800000002, 4.2555150000000026], [4.2653099999999995, 4.2654719999999884], [4.2753359999999816, 4.2755210000000261], [4.2853089999999838, 4.285507999999993], [4.2953360000000202, 4.2955220000000054], [4.3053110000000174, 4.3054700000000139], [4.3153320000000122, 4.3155199999999923], [4.3253119999999967, 4.3254709999999932], [4.3353280000000041, 4.3355540000000019], [4.345310999999981, 4.3454719999999725], [4.3486580000000004, 4.3491539999999986], [4.355335000000025, 4.3555240000000026], [4.3653059999999755, 4.3654639999999745], [4.3753320000000144, 4.3755219999999895], [4.3853139999999939, 4.3855199999999854], [4.3950280000000248, 4.3951850000000263], [4.4053069999999934, 4.4054649999999924], [4.4153360000000248, 4.4155240000000049], [4.4253059999999778, 4.425467000000026], [4.4353340000000117, 4.4355560000000196], [4.4453090000000088, 4.4454700000000003], [4.448660000000018, 4.4491580000000113], [4.4553429999999707, 4.4555270000000178], [4.465313999999978, 4.465471999999977], [4.4753329999999778, 4.4755190000000198], [4.4853120000000217, 4.4855150000000208], [4.4953340000000139, 4.495523999999989], [4.5053110000000061, 4.5054700000000025], [4.5153399999999806, 4.5155270000000201], [4.5253099999999904, 4.5254590000000121], [4.5353299999999876, 4.5355539999999905], [4.5453079999999773, 4.5454679999999712], [4.5486599999999839, 4.5491460000000075], [4.5550920000000019, 4.5552539999999908], [4.5653140000000008, 4.5654739999999947], [4.5750259999999798, 4.5750709999999799], [4.5853060000000028, 4.5855060000000094], [4.595327999999995, 4.5955129999999826], [4.6053140000000212, 4.6054730000000177], [4.6153289999999743, 4.6155130000000213], [4.6253100000000131, 4.6254700000000071], [4.6353320000000053, 4.6355560000000082], [4.645308, 4.6454689999999914], [4.6486629999999991, 4.6491570000000024], [4.6553279999999972, 4.6555159999999773], [4.6653109999999742, 4.6654689999999732], [4.6753309999999715, 4.6755329999999731], [4.6853110000000129, 4.6855180000000018], [4.6953320000000076, 4.6955189999999902], [4.7053149999999846, 4.7054739999999811], [4.7153349999999818, 4.7155200000000264], [4.7253140000000258, 4.7254720000000248], [4.735334000000023, 4.7355580000000259], [4.7453059999999709, 4.7454680000000167], [4.7486599999999726, 4.7491570000000252], [4.7553300000000149, 4.7555209999999875], [4.7653119999999944, 4.7654729999999859], [4.7753359999999816, 4.7755210000000261], [4.785316000000023, 4.7855180000000246], [4.7953319999999735, 4.795519000000013], [4.8053150000000073, 4.8054740000000038], [4.8153300000000172, 4.8155150000000049], [4.8253129999999942, 4.8254709999999932], [4.835329999999999, 4.835552000000007], [4.8453139999999735, 4.8454740000000243], [4.8486580000000004, 4.8491569999999911], [4.8553329999999733, 4.8555180000000178], [4.8653100000000222, 4.8654710000000136], [4.875329000000022, 4.8755160000000046], [4.8853110000000015, 4.8855120000000056], [4.8952550000000201, 4.8954069999999774], [4.9052320000000122, 4.9053609999999708], [4.9153360000000248, 4.915520000000015], [4.9253150000000119, 4.9254770000000008], [4.9353320000000167, 4.9355550000000221], [4.9453159999999912, 4.9454769999999826], [4.9486570000000256, 4.9491560000000163], [4.9553240000000187, 4.9555129999999963], [4.9653190000000222, 4.9654780000000187], [4.9753349999999728, 4.9755230000000097], [4.9853110000000243, 4.9855140000000233], [4.9953340000000139, 4.9955199999999991], [5.0053040000000237, 5.0054650000000152], [5.0153300000000058, 5.0155179999999859], [5.025306999999998, 5.0254659999999944], [5.0353309999999851, 5.035556999999983], [5.0453110000000265, 5.0454690000000255], [5.0486629999999764, 5.0491539999999873], [5.0553340000000162, 5.0555180000000064], [5.0653100000000109, 5.0654690000000073], [5.0753310000000056, 5.0755189999999857], [5.085316999999975, 5.0855209999999715], [5.0953349999999773, 5.0955210000000193], [5.1053079999999795, 5.105466999999976], [5.1153259999999818, 5.1155160000000137], [5.1253130000000056, 5.1254749999999945], [5.1353280000000154, 5.1355530000000158], [5.1453139999999848, 5.1454719999999838], [5.1486530000000243, 5.149156000000005], [5.1553349999999796, 5.155524000000014], [5.165315000000021, 5.1654750000000149], [5.1753320000000258, 5.1755229999999983], [5.1853140000000053, 5.1855160000000069], [5.1953330000000051, 5.1955229999999801], [5.2053149999999846, 5.2054749999999785], [5.2153349999999818, 5.2155200000000264], [5.2253129999999715, 5.2254720000000248], [5.2353319999999712, 5.2355559999999741], [5.2453090000000202, 5.2454700000000116], [5.2486640000000193, 5.2491620000000125], [5.2553320000000099, 5.2555209999999875], [5.2653119999999944, 5.2654709999999909], [5.2753299999999967, 5.2755189999999743], [5.2853119999999763, 5.2855139999999778], [5.2953350000000228, 5.2955220000000054], [5.305308000000025, 5.3054690000000164], [5.3153310000000147, 5.3155189999999948], [5.3253100000000018, 5.3254689999999982], [5.3353329999999914, 5.3355579999999918], [5.3453099999999836, 5.3454659999999876], [5.3486629999999877, 5.349160999999981], [5.3553299999999808, 5.3555170000000203], [5.3653140000000121, 5.3654700000000162], [5.3753340000000094, 5.375518999999997], [5.385310000000004, 5.385518999999988], [5.3950270000000273, 5.3951850000000263], [5.4053099999999858, 5.4054709999999773], [5.415333999999973, 5.4155220000000099], [5.4253059999999778, 5.4254629999999793], [5.4353360000000066, 5.435559000000012], [5.4453100000000063, 5.4454680000000053], [5.4486610000000155, 5.4491509999999721], [5.455331000000001, 5.4555179999999837], [5.4653109999999856, 5.4654709999999795], [5.4753309999999829, 5.4755180000000223], [5.4853089999999725, 5.4855140000000233], [5.4953249999999798, 5.4955110000000218], [5.5053169999999909, 5.5054759999999874], [5.5153270000000134, 5.5155129999999986], [5.5253099999999904, 5.5254669999999919], [5.5353329999999801, 5.535554999999988], [5.5453110000000265, 5.545470000000023], [5.5486599999999839, 5.5491559999999822], [5.5553310000000238, 5.5555170000000089], [5.5653120000000058, 5.5654700000000048], [5.5753310000000056, 5.5755169999999907], [5.5853119999999876, 5.5855099999999993], [5.5953349999999773, 5.5955280000000016], [5.5974709999999845, 5.5975859999999784], [5.5976969999999824, 5.5977120000000014], [5.5977399999999875, 5.597752000000014], [5.6049669999999878, 5.6050430000000233], [5.6153009999999881, 5.6154539999999997], [5.6253120000000081, 5.6254729999999995], [5.6353070000000116, 5.6355080000000157], [5.6453040000000101, 5.6454610000000116], [5.6486429999999928, 5.649140999999986], [5.6553299999999922, 5.6555159999999773], [5.665313000000026, 5.6654740000000174], [5.6753309999999715, 5.675516000000016], [5.6853090000000179, 5.685512000000017], [5.6953320000000076, 5.6955169999999953], [5.7053149999999846, 5.7054749999999785], [5.7153329999999869, 5.7155179999999746], [5.7253089999999816, 5.7254689999999755], [5.7353330000000255, 5.7355559999999741], [5.7453160000000025, 5.745474999999999], [5.7486630000000218, 5.7491590000000201], [5.7553350000000023, 5.7555189999999925], [5.7653199999999742, 5.7654810000000225], [5.7753250000000094, 5.7755139999999869], [5.7853089999999838, 5.7855069999999955], [5.795332999999971, 5.795519000000013], [5.8053110000000174, 5.8054700000000139], [5.8153310000000147, 5.8155179999999973], [5.8253129999999942, 5.8254719999999907], [5.8350340000000074, 5.8352300000000241], [5.8449580000000196, 5.8450559999999996], [5.8482569999999896, 5.848639999999989], [5.8549110000000155, 5.8549869999999942], [5.8649159999999938, 5.8649970000000167], [5.8748979999999733, 5.8749659999999722], [5.8849159999999756, 5.884997999999996], [5.8949150000000259, 5.8949610000000234], [5.9049219999999991, 5.9049790000000257], [5.9149140000000102, 5.9149980000000255], [5.9249189999999885, 5.9249449999999797], [5.9249550000000113, 5.9249810000000025], [5.9249879999999848, 5.9250190000000202], [5.9349100000000021, 5.9349950000000149], [5.9452779999999734, 5.9454210000000103], [5.9486249999999927, 5.949118999999996], [5.9553319999999985, 5.9555169999999862], [5.9653149999999755, 5.9654750000000263], [5.9753360000000271, 5.9755220000000122], [5.9853120000000217, 5.9855019999999968], [5.9949179999999842, 5.9949659999999767], [6.0049169999999776, 6.004965000000027], [6.0153300000000058, 6.015515999999991], [6.0253119999999853, 6.0254709999999818], [6.0353329999999801, 6.0355559999999855], [6.0453029999999899, 6.0454460000000267], [6.0486419999999725, 6.0491359999999759], [6.0553330000000187, 6.0555190000000039], [6.0653130000000033, 6.0654749999999922], [6.0753349999999955, 6.0755199999999832], [6.0853129999999851, 6.0855159999999842], [6.0953329999999823, 6.0955180000000269], [6.105310999999972, 6.1054710000000227], [6.1153340000000185, 6.1155190000000061], [6.1253120000000081, 6.125473999999997], [6.1353290000000129, 6.1355530000000158], [6.1452469999999835, 6.1454069999999774], [6.148668999999984, 6.1491570000000024], [6.1553299999999922, 6.1555149999999799], [6.1653109999999742, 6.16547300000002], [6.1752510000000029, 6.175405000000012], [6.185231999999985, 6.1853980000000206], [6.1953120000000013, 6.1954729999999927], [6.2053060000000073, 6.2054640000000063], [6.2153129999999805, 6.2154760000000238], [6.225309999999979, 6.2254720000000248], [6.2353120000000217, 6.2355200000000082], [6.2453049999999735, 6.2454640000000268], [6.248644000000013, 6.2491430000000037], [6.2553320000000099, 6.2555209999999875], [6.265310999999997, 6.2654719999999884], [6.2753309999999942, 6.2755189999999743], [6.2853099999999813, 6.2855170000000271], [6.2953350000000228, 6.2955259999999953], [6.305308000000025, 6.3054700000000139], [6.3153070000000184, 6.3154650000000174], [6.325333999999998, 6.3255189999999857], [6.3353139999999826, 6.3355199999999741], [6.3453329999999823, 6.3455210000000193], [6.3486409999999864, 6.3491440000000239], [6.3553279999999859, 6.3555180000000178], [6.3653140000000121, 6.365476000000001], [6.3753300000000195, 6.375518999999997], [6.385311999999999, 6.3855130000000031], [6.3950290000000223, 6.3951900000000137], [6.4053119999999808, 6.4054709999999773], [6.4149150000000077, 6.4149610000000052], [6.4253130000000169, 6.4254720000000134], [6.4353280000000268, 6.4355550000000221], [6.4453060000000164, 6.4454660000000104], [6.4486650000000054, 6.4491610000000037], [6.4553319999999985, 6.4555179999999837], [6.4653069999999957, 6.4654639999999972], [6.4753289999999879, 6.4755139999999756], [6.4853089999999725, 6.485510999999974], [6.4953330000000165, 6.4955190000000016], [6.5053019999999719, 6.5054599999999709], [6.5153339999999957, 6.5155229999999733], [6.5253129999999828, 6.5254709999999818], [6.5353309999999851, 6.5355529999999931], [6.545312000000024, 6.545470000000023], [6.5486520000000041, 6.5491400000000226], [6.5553350000000137, 6.5555249999999887], [6.5653140000000008, 6.5654749999999922], [6.575335999999993, 6.5755199999999832], [6.5853050000000053, 6.5855000000000246], [6.5953119999999785, 6.5954730000000268], [6.6019830000000184, 6.6020570000000021], [6.602123000000006, 6.6021460000000047], [6.6050089999999955, 6.6051439999999957], [6.6149360000000001, 6.6149679999999762], [6.6149770000000103, 6.6150139999999737], [6.6253120000000081, 6.625473999999997], [6.6353139999999939, 6.6355090000000132], [6.6453139999999848, 6.6454759999999737], [6.6486439999999902, 6.6491350000000011], [6.6553119999999808, 6.6554740000000265], [6.6653319999999781, 6.6655170000000226], [6.6753120000000195, 6.6754720000000134], [6.6853350000000091, 6.6855560000000196], [6.6953100000000063, 6.6954709999999977], [6.705331000000001, 6.7055209999999761], [6.7153129999999805, 6.7154729999999745], [6.7253289999999879, 6.7255160000000274], [6.73530599999998, 6.7354990000000043], [6.7453340000000139, 6.7455199999999991], [6.748644000000013, 6.7491370000000188], [6.7553300000000149, 6.7555160000000001], [6.7653119999999944, 6.7654729999999859], [6.7753280000000018, 6.7755149999999844], [6.7853119999999763, 6.7855149999999753], [6.7953350000000228, 6.7955269999999928], [6.8050319999999829, 6.8051889999999844], [6.814959999999985, 6.8155639999999948], [6.8250340000000165, 6.8251920000000155], [6.8349150000000236, 6.8350019999999745], [6.844916000000012, 6.8450139999999919], [7.0849850000000174, 7.0851129999999785], [7.0899109999999723, 7.0899870000000078], [7.0916970000000106, 7.0917279999999892], [7.0917410000000132, 7.0917709999999943], [7.091889999999978, 7.0918990000000122], [7.091904999999997, 7.0919170000000236], [7.0921670000000177, 7.0921799999999848], [7.094902999999988, 7.0949820000000159], [7.1053140000000212, 7.105466999999976], [7.1153289999999743, 7.1155150000000162], [7.125314000000003, 7.1254729999999995], [7.1319799999999987, 7.1321209999999837], [8.9643429999999853, 8.9643580000000043], [10.577805000000012, 10.577829000000008], [10.584924999999998, 10.585024999999973], [10.595323000000008, 10.595498000000021], [10.605306999999982, 10.605468999999971], [10.615328999999974, 10.615518000000009], [10.625314000000003, 10.625474999999994], [10.635332000000005, 10.635545999999977], [10.645307000000003, 10.645467999999994], [11.014959999999974, 11.015029000000027], [11.025305000000003, 11.025465999999994], [11.03532100000001, 11.035542000000021], [11.045307999999977, 11.045469000000026], [11.494908000000009, 11.494991000000027], [11.504946000000018, 11.505010000000027], [11.539804000000004, 11.540119000000004], [11.54015099999998, 11.540169999999989], [11.540742000000023, 11.540862000000004], [11.548356000000013, 11.548696000000007], [11.558305000000018, 11.558343999999977], [11.568523000000027, 11.568602999999996], [11.578310999999985, 11.578392000000008], [11.588430000000017, 11.588459999999998], [11.588471000000027, 11.588518000000022], [11.591591999999991, 11.591624000000024], [11.591630000000009, 11.591725999999994], [11.591742000000011, 11.591750999999988], [11.592272999999977, 11.592310999999995], [11.592322000000024, 11.592329000000007], [11.592481000000021, 11.592494999999985], [11.598250000000007, 11.598268000000019], [11.601801000000023, 11.601851000000011], [11.601908999999978, 11.601929999999982], [11.608272999999997, 11.608294000000001], [11.608299999999986, 11.608329000000026], [11.623887000000025, 11.623995999999977], [11.631643999999994, 11.631710999999996], [11.641658000000007, 11.641813000000013], [11.641844999999989, 11.641855000000021], [11.64234399999998, 11.642382999999995], [11.642397000000017, 11.642405999999994], [11.642555000000016, 11.642604000000006], [11.648346000000004, 11.648704000000009], [11.65170999999998, 11.651767000000007], [11.661599000000024, 11.661636999999985], [11.699764000000016, 11.69979699999999], [11.700956000000019, 11.701172999999983], [11.701193999999987, 11.701211000000001], [11.701595999999995, 11.701614000000006]]}, \"kworker/1:3-334\": {\"1\": [[0.81493499999999131, 0.81495999999998503], [1.02494200000001, 1.0249580000000265], [1.1082260000000019, 1.1082470000000058], [1.57826799999998, 1.5783129999999801], [1.5815489999999954, 1.5815660000000094], [1.6148830000000203, 1.6149300000000153], [2.0282260000000178, 2.0282720000000154], [2.2382299999999873, 2.2382630000000177], [3.2415889999999763, 3.2416079999999852], [3.4515940000000001, 3.4516070000000241], [3.581547999999998, 3.5815719999999942], [4.4549069999999915, 4.4549589999999739], [4.6649009999999862, 4.6649289999999723], [5.6682460000000106, 5.6682630000000245], [5.8782390000000078, 5.8782489999999825], [6.581559000000027, 6.5815890000000081], [6.6282199999999989, 6.6282719999999813], [6.8815529999999967, 6.881590000000017], [7.091557000000023, 7.0915780000000268], [8.0949410000000057, 8.094963000000007], [8.3049270000000206, 8.3049389999999903], [8.578220999999985, 8.5782540000000154], [8.5815450000000055, 8.5815579999999727], [8.6282120000000191, 8.6282249999999863], [9.3082370000000196, 9.3082860000000096], [9.5182379999999966, 9.5182689999999752], [10.521591999999998, 10.52161000000001], [10.731588999999985, 10.731602000000009], [11.46948500000002, 11.469525999999973], [11.476135999999997, 11.476166999999975], [11.491305000000011, 11.491341999999975], [11.580123000000015, 11.58016600000002], [11.641685999999993, 11.641754999999989]]}, \"UEventObserver-1391\": {\"2\": [[0.83547700000002578, 0.83554400000002715]]}, \"kworker/1:0-13\": {\"1\": [[0.004798999999991338, 0.0048340000000166583], [0.087360999999987143, 0.087394000000017513], [0.1768430000000194, 0.1768809999999803], [0.27254599999997708, 0.27258699999998726], [0.27867700000001605, 0.2787230000000136], [0.2798609999999826, 0.28029400000002624], [0.28097200000001976, 0.28107999999997446], [0.28124700000000757, 0.28129699999999502], [0.28142700000000787, 0.28146800000001804], [0.28168299999998681, 0.2817450000000008], [0.28189500000001999, 0.28194999999999482], [0.28206099999999878, 0.28212300000001278], [0.28225600000001805, 0.28232100000002447], [0.28244499999999562, 0.28250300000001971], [0.28308800000002066, 0.2832700000000159], [0.28677499999997735, 0.28682400000002417], [0.2878029999999967, 0.28782200000000557], [0.28876900000000205, 0.2887850000000185], [0.28942399999999679, 0.28944300000000567], [0.2982640000000174, 0.29829200000000355], [0.30501900000001569, 0.30506000000002587], [0.56154900000001362, 0.56157400000000735], [0.81489499999997861, 0.81493499999999131], [1.0249059999999872, 1.02494200000001], [2.0282720000000154, 2.0282980000000066], [2.2382630000000177, 2.2382799999999747], [2.5782179999999926, 2.5782489999999711], [2.5815470000000005, 2.5815640000000144], [3.2415540000000078, 3.2415889999999763], [3.4515710000000013, 3.4515940000000001], [4.4549589999999739, 4.454985000000022], [4.6649289999999723, 4.6649429999999938], [5.57821899999999, 5.5782500000000255], [5.5815450000000055, 5.581561000000022], [5.6415529999999876, 5.6416570000000092], [5.6416939999999727, 5.6417339999999854], [5.6417769999999905, 5.6418259999999805], [5.6418679999999881, 5.6420099999999707], [5.6682149999999751, 5.6682460000000106], [5.8782199999999989, 5.8782390000000078], [6.881590000000017, 6.8816069999999741], [7.0915780000000268, 7.0915929999999889], [7.5815620000000195, 7.5815989999999829], [7.6948980000000233, 7.6949900000000184], [8.0948980000000006, 8.0949410000000057], [8.3048999999999751, 8.3049270000000206], [9.3082860000000096, 9.3083159999999907], [9.5182689999999752, 9.5182829999999967], [9.5782140000000027, 9.5782409999999913], [9.5815450000000055, 9.5815620000000195], [10.521554999999978, 10.521591999999998], [10.731560000000002, 10.731588999999985]]}, \"ueventd-406\": {\"2\": [[0.83589499999999362, 0.83633900000000949]]}, \"kworker/0:3-472\": {\"0\": [[1.6925469999999905, 1.6926589999999919], [1.693444999999997, 1.6937139999999999], [1.6942750000000046, 1.6945579999999723], [5.5950460000000248, 5.5954610000000002], [5.5955599999999777, 5.5956029999999828], [5.5957280000000083, 5.5957760000000007], [5.5958729999999832, 5.595909000000006], [5.596053999999981, 5.5960880000000088], [5.5962369999999737, 5.596271999999999], [5.5964190000000258, 5.5964589999999816], [5.5966149999999857, 5.5966769999999997], [5.5967860000000087, 5.5968270000000189], [5.5973349999999868, 5.5975260000000162]]}, \"cnss_diag-628\": {\"0\": [[0.91097800000000007, 0.91162100000002511], [0.9123260000000073, 0.91286400000001322], [1.1907689999999889, 1.1913829999999734], [4.1428000000000225, 4.144032999999979], [4.1445380000000114, 4.1452049999999758], [9.0152749999999742, 9.0162349999999947]], \"2\": [[1.6891309999999748, 1.6891989999999737], [1.6918570000000273, 1.691880000000026], [1.6936269999999922, 1.6939219999999864], [4.1424359999999751, 4.1424920000000043], [5.9153719999999907, 5.9157920000000104], [5.9166349999999852, 5.9170199999999795], [6.311300000000017, 6.3119540000000143]], \"3\": [[1.6930449999999837, 1.6935369999999921], [1.6953340000000026, 1.6957509999999729], [3.4487199999999802, 3.4490599999999745], [3.6414909999999736, 3.642076999999972], [6.8115099999999984, 6.8116099999999733], [6.8124070000000074, 6.8131549999999947], [6.813459000000023, 6.8136819999999716], [9.0151490000000081, 9.0152100000000246], [9.0172539999999799, 9.0176809999999819], [9.2406649999999786, 9.2412100000000237], [9.4624919999999975, 9.4630399999999781], [9.8948239999999714, 9.8953999999999951], [10.011421999999982, 10.011639000000002], [10.407766999999978, 10.408396999999979], [10.908184000000006, 10.908259999999984], [10.908464999999978, 10.90848299999999], [10.908893999999975, 10.909313999999995], [10.910205000000019, 10.910392000000002], [10.913442999999972, 10.913964000000021]]}, \"android.fg-1163\": {\"2\": [[0.83725700000002234, 0.83843799999999646], [0.84148199999998496, 0.84166399999998021], [3.1274910000000204, 3.1277989999999818], [3.1279289999999946, 3.1279989999999884], [3.1280249999999796, 3.1280980000000227]]}, \"cnd-1118\": {\"2\": [[8.9643649999999866, 8.9644870000000196]]}, \"adbd-4664\": {\"1\": [[11.543994999999995, 11.544048999999973], [11.544063999999992, 11.544152999999994], [11.544224999999983, 11.544257000000016], [11.544272999999976, 11.544338999999979], [11.544367000000022, 11.54442499999999]]}, \"adbd-4652\": {\"1\": [[0.23848600000002307, 0.23864600000001701]]}, \"adbd-4651\": {\"1\": [[0.22930400000001327, 0.2304070000000138]]}, \"sh-4647\": {\"1\": [[0.14510899999999083, 0.1461959999999749], [0.14881700000000819, 0.14882699999998295]]}, \"sh-4645\": {\"1\": [[0.1344930000000204, 0.13497200000000475], [0.13500299999998333, 0.13523299999997107], [0.13524400000000014, 0.13579199999998082], [0.13581900000002634, 0.13586500000002388], [0.13587499999999864, 0.13590399999998226], [0.13591100000002143, 0.13594200000000001], [0.13622400000002699, 0.13674200000002656], [0.13682199999999511, 0.13691099999999778], [0.13693999999998141, 0.13834600000001274], [0.13837999999998374, 0.14168300000000045], [0.14193099999999959, 0.14384499999999889], [0.1461959999999749, 0.14630899999997382], [0.17579999999998108, 0.1768430000000194]]}, \"sh-4644\": {\"1\": [[0.064545000000009622, 0.064968000000021675], [0.06508400000001302, 0.066520000000025448], [0.075180999999986398, 0.07543500000002723], [0.075448999999991884, 0.076084999999977754], [0.0760970000000043, 0.085101000000008753], [0.085208000000022821, 0.085572000000013304]]}, \"sh-4643\": {\"1\": [[0.063042999999993299, 0.064545000000009622]]}, \"kworker/u8:8-924\": {\"3\": [[0.28323699999998553, 0.28326199999997925], [0.28451599999999644, 0.28452199999998129], [0.28568799999999328, 0.28569299999998066], [0.32193000000000893, 0.32197200000001658], [0.32198399999998628, 0.32199100000002545]]}, \"sh-4641\": {\"0\": [[0.064821999999992386, 0.065170000000023265], [0.08562899999998308, 0.08725800000001982], [0.087385999999980868, 0.087474999999983538], [0.087841000000025815, 0.087896999999998116]], \"1\": [[0.05122399999999061, 0.051696999999990112], [0.052158000000019911, 0.052657000000010612], [0.052673000000027059, 0.053003999999987172], [0.053040000000009968, 0.053104000000018914], [0.053117999999983567, 0.053156999999998789], [0.05316499999997859, 0.053197000000011485], [0.053202999999996337, 0.053233999999974912], [0.053241000000014083, 0.055045000000006894], [0.05519800000001851, 0.055248000000005959], [0.055256999999983236, 0.06174399999997604], [0.062007999999991625, 0.063042999999993299]]}, \"sh-4649\": {\"1\": [[0.16082000000000107, 0.16167500000000246], [0.16174000000000888, 0.16197399999998652]]}, \"sh-4648\": {\"1\": [[0.14384499999999889, 0.14499599999999191], [0.15363999999999578, 0.15406600000000026], [0.15407699999997249, 0.15834699999999202], [0.15839199999999209, 0.16082000000000107], [0.17475000000001728, 0.17579999999998108]]}, \"wlan_logging_th-1454\": {\"2\": [[1.6888139999999794, 1.6889269999999783], [1.6918289999999843, 1.6918570000000273], [3.4487009999999714, 3.4487359999999967], [4.1414379999999937, 4.1415620000000217]], \"3\": [[4.1428089999999997, 4.1428389999999808], [6.8113579999999843, 6.8114550000000236], [9.0150919999999815, 9.0151490000000081], [10.908033999999986, 10.908114000000012], [10.908431000000007, 10.908453000000009]]}, \"task0-4659\": {\"0\": [[0.30513700000000199, 0.30546299999997473], [0.30621000000002141, 0.30630400000001146], [0.31154099999997698, 0.31820599999997512], [0.32487300000002506, 0.33153700000002573], [0.33821000000000367, 0.34487000000001444], [0.35154099999999744, 0.35820999999998548], [0.36486999999999625, 0.37155999999998812], [0.37820799999997234, 0.38486999999997806], [0.39153599999997368, 0.39820900000000847], [0.40487000000001672, 0.41153600000001234], [0.41820799999999281, 0.42486999999999853], [0.43153599999999415, 0.43820799999997462], [0.44487099999997781, 0.45154100000002018], [0.45820800000001327, 0.46487000000001899], [0.47153700000001209, 0.47820699999999761], [0.4848700000000008, 0.49153599999999642], [0.49820899999997437, 0.50486999999998261], [0.51153599999997823, 0.51820900000001302], [0.52487000000002126, 0.53153600000001688], [0.53820799999999736, 0.54487000000000307], [0.55154900000002272, 0.55820299999999179], [0.56487399999997479, 0.57153899999997293], [0.57820800000001782, 0.58487300000001596], [0.59153900000001158, 0.5982089999999971], [0.60487299999999777, 0.61153899999999339], [0.61820899999997891, 0.62487199999998211], [0.63154400000001942, 0.63820800000002009], [0.64487300000001824, 0.65154100000000881], [0.6582080000000019, 0.66487000000000762], [0.67153600000000324, 0.67820799999998371], [0.68487099999998691, 0.69153599999998505], [0.69820800000002237, 0.70486999999997124], [0.71153600000002371, 0.7182070000000067], [0.7248700000000099, 0.73153800000000047], [0.73820899999998346, 0.74487099999998918], [0.75154199999997218, 0.75820800000002464], [0.76487099999997099, 0.77153600000002598], [0.7782060000000115, 0.78487000000001217], [0.79153700000000526, 0.79820699999999078], [0.80486999999999398, 0.8115359999999896], [0.81820900000002439, 0.82486899999997831], [0.83153499999997393, 0.8382090000000062], [0.84487300000000687, 0.85153900000000249], [0.85820400000000063, 0.86486999999999625], [0.8715349999999944, 0.87820399999998244], [0.88486999999997806, 0.8917030000000068], [0.89820600000001605, 0.90487000000001672], [0.91167999999998983, 0.91221000000001595], [0.91286400000001322, 0.91820899999999028], [0.92486900000000105, 0.931541999999979], [0.93821100000002389, 0.94487099999997781], [0.95154200000001765, 0.9582070000000158], [0.96486900000002152, 0.97153800000000956], [0.97820899999999256, 0.9848700000000008], [0.99153599999999642, 0.99820799999997689], [1.0082090000000221, 1.0182080000000155], [1.0248700000000213, 1.0282149999999888], [1.0282599999999888, 1.0348700000000122], [1.0415370000000053, 1.0482079999999883], [1.0548689999999965, 1.0615359999999896], [1.0682059999999751, 1.0748689999999783], [1.0815370000000257, 1.0882080000000087], [1.0948700000000144, 1.1015370000000075], [1.1082079999999905, 1.1148689999999988], [1.1215369999999893, 1.1282079999999723], [1.1348699999999781, 1.1415369999999712], [1.148208000000011, 1.1548720000000117], [1.1615370000000098, 1.1682069999999953], [1.1748699999999985, 1.1815379999999891], [1.1882079999999746, 1.1906399999999735], [1.1982120000000123, 1.2048730000000205], [1.2115370000000212, 1.2182070000000067], [1.2248700000000099, 1.231537000000003], [1.2382020000000011, 1.2448719999999867], [1.2515419999999722, 1.2582059999999728], [1.2648699999999735, 1.2715380000000209], [1.278207000000009, 1.2848700000000122], [1.2915370000000053, 1.2982079999999883], [1.3048689999999965, 1.311538999999982], [1.3182059999999751, 1.3248709999999733], [1.3315370000000257, 1.3382080000000087], [1.3448700000000144, 1.3515409999999974], [1.3582069999999931, 1.3648699999999963], [1.3715389999999843, 1.3782069999999749], [1.3848699999999781, 1.3915339999999787], [1.3982070000000135, 1.4048710000000142], [1.4115409999999997, 1.4182190000000219], [1.424870999999996, 1.4315369999999916], [1.4382069999999771, 1.4448719999999753], [1.4515410000000202, 1.4582080000000133], [1.4648690000000215, 1.4715360000000146], [1.4782079999999951, 1.4848709999999983], [1.4915369999999939, 1.4982069999999794], [1.5048699999999826, 1.5115359999999782], [1.5182080000000155, 1.5248700000000213], [1.5315370000000144, 1.5382079999999974], [1.5448700000000031, 1.5515409999999861], [1.5582069999999817, 1.5648699999999849], [1.5715359999999805, 1.5782179999999926], [1.5848700000000235, 1.5915370000000166], [1.5982070000000022, 1.6048700000000053], [1.611536000000001, 1.6182039999999915], [1.6248749999999745, 1.6315389999999752], [1.6382080000000201, 1.6448750000000132], [1.6515420000000063, 1.6582080000000019], [1.6648700000000076, 1.6715449999999805], [1.6782079999999837, 1.6848699999999894], [1.6882929999999874, 1.6918929999999932], [1.7048710000000256, 1.7082159999999931], [1.7089300000000094, 1.714870000000019], [1.7186209999999846, 1.7187440000000151], [1.7187819999999761, 1.7188909999999851], [1.7189329999999927, 1.7190689999999904], [1.7282069999999976, 1.7382039999999961], [1.7448779999999715, 1.7515419999999722], [1.7582080000000246, 1.7648699999999735], [1.7715370000000235, 1.7782080000000065], [1.7848700000000122, 1.7915360000000078], [1.7982069999999908, 1.8048709999999915], [1.8115369999999871, 1.8182069999999726], [1.8248689999999783, 1.8315370000000257], [1.8382090000000062, 1.8448700000000144], [1.8515409999999974, 1.8582069999999931], [1.8648689999999988, 1.8715379999999868], [1.8782069999999749, 1.8848730000000273], [1.8915369999999712, 1.8982070000000135], [1.9048700000000167, 1.9115370000000098], [1.9182069999999953, 1.9248699999999985], [1.9315439999999739, 1.9382079999999746], [1.9448689999999829, 1.9515410000000202], [1.9582070000000158, 1.964870000000019], [1.9715370000000121, 1.9782069999999976], [1.9848690000000033, 1.9915369999999939], [1.9982069999999794, 2.0001359999999977], [2.0003439999999841, 2.0014449999999897], [2.0016370000000165, 2.0082080000000246], [2.014868999999976, 2.0215370000000235], [2.0282080000000065, 2.0348690000000147], [2.0415370000000053, 2.0482069999999908], [2.0548709999999915, 2.0615460000000212], [2.0682059999999751, 2.0735080000000039], [2.0815769999999816, 2.0819999999999936], [2.0822410000000104, 2.0823429999999803], [2.0823819999999955, 2.0824929999999995], [2.0825249999999755, 2.0826779999999872], [2.082712000000015, 2.082868000000019], [2.0829100000000267, 2.0830639999999789], [2.0831160000000182, 2.0832320000000095], [2.0832689999999729, 2.0834090000000174], [2.0834600000000023, 2.0835890000000177], [2.0836869999999976, 2.0915600000000154], [2.0982079999999996, 2.1048720000000003], [2.1115379999999959, 2.118206999999984], [2.1248699999999872, 2.1315399999999727], [2.1382080000000201, 2.1448720000000208], [2.1515430000000038, 2.1582070000000044], [2.1648700000000076, 2.1715370000000007], [2.1782079999999837, 2.184868999999992], [2.1915430000000242, 2.1982070000000249], [2.2048699999999712, 2.2115370000000212], [2.2182070000000067, 2.2248690000000124], [2.231537000000003, 2.2382069999999885], [2.2448689999999942, 2.2515399999999772], [2.2582070000000272, 2.2648699999999735], [2.2715370000000235, 2.2782060000000115], [2.2848710000000096, 2.2915370000000053], [2.2982069999999908, 2.304869999999994], [2.3115379999999845, 2.3182069999999726], [2.3248709999999733, 2.3315370000000257], [2.3382060000000138, 2.344869000000017], [2.3515390000000025, 2.3582069999999931], [2.3648699999999963, 2.3715379999999868], [2.3782069999999749, 2.3848689999999806], [2.3915349999999762, 2.3982070000000135], [2.4048690000000192, 2.4115370000000098], [2.4182059999999979, 2.4248690000000011], [2.4315369999999916, 2.4382069999999771], [2.4448699999999803, 2.4515420000000177], [2.4582070000000158, 2.4648690000000215], [2.4715370000000121, 2.4782069999999976], [2.4848700000000008, 2.4915369999999939], [2.4982079999999769, 2.5048689999999851], [2.5115369999999757, 2.5182070000000181], [2.5248710000000187, 2.5315400000000068], [2.5382079999999974, 2.5448700000000031], [2.5515419999999835, 2.5582069999999817], [2.5648689999999874, 2.5715379999999755], [2.5782080000000178, 2.584871000000021], [2.594869000000017, 2.6015370000000075], [2.6082079999999905, 2.6148689999999988], [2.6215369999999893, 2.6282069999999749], [2.6348689999999806, 2.6415369999999712], [2.6482070000000135, 2.6548710000000142], [2.6615370000000098, 2.6682069999999953], [2.6748690000000011, 2.6815369999999916], [2.6882069999999771, 2.6948689999999829], [2.7015369999999734, 2.7082070000000158], [2.714870000000019, 2.7215370000000121], [2.7282069999999976, 2.7348690000000033], [2.7415369999999939, 2.7482089999999744], [2.7548709999999801, 2.7615379999999732], [2.7683400000000233, 2.7748720000000162], [2.7815370000000144, 2.7882069999999999], [2.7948700000000031, 2.8015369999999962], [2.8082069999999817, 2.8148689999999874], [2.821536999999978, 2.8282070000000203], [2.8348690000000261, 2.8415519999999788], [2.8482060000000047, 2.8548690000000079], [2.8615419999999858, 2.868206999999984], [2.8748689999999897, 2.8815369999999803], [2.8882070000000226, 2.8948689999999715], [2.9015380000000164, 2.9082070000000044], [2.9148720000000026, 2.9215360000000032], [2.9282069999999862, 2.934868999999992], [2.9415359999999851, 2.9482070000000249], [2.9548699999999712, 2.9615370000000212], [2.9682070000000067, 2.9748710000000074], [2.981537000000003, 2.9882029999999986], [2.9948679999999968, 3.0015369999999848], [3.0031559999999899, 3.0082070000000272], [3.014868999999976, 3.0215370000000235], [3.028207000000009, 3.0348690000000147], [3.0415360000000078, 3.0482069999999908], [3.0548689999999965, 3.0615369999999871], [3.0682069999999726, 3.0748689999999783], [3.0815370000000257, 3.0882060000000138], [3.094869000000017, 3.1015419999999949], [3.1082069999999931, 3.1148689999999988], [3.1215369999999893, 3.12796400000002], [3.1348699999999781, 3.1415369999999712], [3.1482070000000135, 3.1548710000000142], [3.1615390000000048, 3.1682069999999953], [3.1748690000000011, 3.1815369999999916], [3.1882069999999771, 3.1948689999999829], [3.2015369999999734, 3.2082080000000133], [3.2148710000000165, 3.2215370000000121], [3.2282069999999976, 3.2348680000000058], [3.2415369999999939, 3.2482089999999744], [3.2548699999999826, 3.2615369999999757], [3.2682070000000181, 3.2748690000000238], [3.2815390000000093, 3.2882069999999999], [3.2948690000000056, 3.3015369999999962], [3.3082069999999817, 3.3148689999999874], [3.321536999999978, 3.3282070000000203], [3.3348690000000261, 3.3415370000000166], [3.3482070000000022, 3.3548700000000053], [3.3615399999999909, 3.368206999999984], [3.3748749999999745, 3.3815389999999752], [3.3882080000000201, 3.3948710000000233], [3.4015370000000189, 3.408206000000007], [3.4148700000000076, 3.4215360000000032], [3.4282039999999938, 3.4348699999999894], [3.4415369999999825, 3.4483299999999986], [3.454872000000023, 3.4615339999999719], [3.4682099999999991, 3.4748690000000124], [3.481537000000003, 3.488207999999986], [3.4948699999999917, 3.5015379999999823], [3.5082070000000272, 3.5148720000000253], [3.5215370000000235, 3.528207000000009], [3.5348690000000147, 3.5415360000000078], [3.5482069999999908, 3.5548689999999965], [3.5615359999999896, 3.5682069999999726], [3.5748689999999783, 3.5815359999999714], [3.5882369999999923, 3.5948740000000043], [3.6015370000000075, 3.6082069999999931], [3.6148680000000013, 3.6215399999999818], [3.6282049999999799, 3.6348679999999831], [3.6409820000000082, 3.6422519999999849], [3.6482090000000085, 3.6548710000000142], [3.6615370000000098, 3.6682069999999953], [3.6748680000000036, 3.6815369999999916], [3.6882069999999771, 3.6948689999999829], [3.7015369999999734, 3.7082070000000158], [3.7148690000000215, 3.7215370000000121], [3.7282069999999976, 3.7348690000000033], [3.7415369999999939, 3.7482069999999794], [3.7548709999999801, 3.7615369999999757], [3.7682080000000155, 3.7748690000000238], [3.7815370000000144, 3.7882069999999999], [3.7948690000000056, 3.8015389999999911], [3.8082069999999817, 3.8148689999999874], [3.821536999999978, 3.8282070000000203], [3.8348690000000261, 3.8415370000000166], [3.8482070000000022, 3.8548700000000053], [3.8615369999999984, 3.868206999999984], [3.8748689999999897, 3.8815399999999727], [3.88821200000001, 3.8948689999999715], [3.9015370000000189, 3.9082070000000044], [3.9148690000000101, 3.9215370000000007], [3.9282069999999862, 3.934868999999992], [3.9415389999999775, 3.9482100000000173], [3.9548699999999712, 3.9615370000000212], [3.9682070000000067, 3.9748690000000124], [3.981537000000003, 3.9882069999999885], [3.9948689999999942, 4.0015369999999848], [4.0034180000000106, 4.0045220000000086], [4.0115420000000199, 4.018209000000013], [4.0248690000000238, 4.0315360000000169], [4.0382069999999999, 4.0448700000000031], [4.0515409999999861, 4.0582079999999792], [4.0648689999999874, 4.071536999999978], [4.0782070000000203, 4.0848690000000261], [4.0915360000000192, 4.0982070000000022], [4.1048710000000028, 4.111536000000001], [4.118206999999984, 4.1248699999999872], [4.1315379999999777, 4.138210000000015], [4.1423419999999851, 4.1427249999999844], [4.1452049999999758, 4.1515400000000113], [4.1582020000000171, 4.1648680000000127], [4.1715379999999982, 4.1782069999999862], [4.184868999999992, 4.1915359999999851], [4.1982060000000274, 4.2048710000000256], [4.2115350000000262, 4.2182060000000092], [4.2248690000000124, 4.2315360000000055], [4.238205999999991, 4.2448689999999942], [4.2515409999999747, 4.2582070000000272], [4.264868999999976, 4.2715410000000134], [4.278207000000009, 4.2848700000000122], [4.2915360000000078, 4.2982069999999908], [4.3048689999999965, 4.3115359999999896], [4.3182069999999726, 4.3248719999999707], [4.3315349999999739, 4.3382070000000112], [4.344869000000017, 4.35154], [4.3582069999999931, 4.3648689999999988], [4.3715349999999944, 4.3782100000000241], [4.3848689999999806, 4.3915359999999737], [4.3982239999999706, 4.4048680000000218], [4.4115350000000149, 4.4182069999999953], [4.4248690000000011, 4.4315349999999967], [4.4382069999999771, 4.4448689999999829], [4.4515410000000202, 4.4582080000000133], [4.4648690000000215, 4.4715360000000146], [4.4782060000000001, 4.4848690000000033], [4.4915349999999989, 4.4982079999999769], [4.5048689999999851, 4.5115349999999808], [4.5182070000000181, 4.5248700000000213], [4.5315429999999992, 4.5382069999999999], [4.5448690000000056, 4.5515419999999835], [4.5582029999999918, 4.5648739999999748], [4.571534999999983, 4.5782080000000178], [4.5848700000000235, 4.5882159999999885], [4.5948680000000195, 4.6015370000000075], [4.6082059999999956, 4.6148699999999963], [4.6215369999999893, 4.6282059999999774], [4.6348699999999781, 4.6415380000000255], [4.6424180000000206, 4.648206000000016], [4.6548700000000167, 4.6615390000000048], [4.6682059999999979, 4.6748690000000011], [4.6815359999999941, 4.6882059999999797], [4.6948689999999829, 4.701535999999976], [4.7082060000000183, 4.7148690000000215], [4.7215360000000146, 4.7282060000000001], [4.7348690000000033, 4.7415359999999964], [4.7482059999999819, 4.7548709999999801], [4.7615359999999782, 4.7682060000000206], [4.7748690000000238, 4.7815360000000169], [4.7882050000000049, 4.7948700000000031], [4.8015359999999987, 4.8082059999999842], [4.8148689999999874, 4.8215359999999805], [4.8282050000000254, 4.8348690000000261], [4.8415360000000192, 4.8482050000000072], [4.8548690000000079, 4.861536000000001], [4.8682059999999865, 4.8748689999999897], [4.8815359999999828, 4.8882060000000251], [4.8948669999999765, 4.901535000000024], [4.908204000000012, 4.9148739999999975], [4.9215389999999957, 4.9282059999999888], [4.934868999999992, 4.9415359999999851], [4.9482060000000274, 4.9548689999999738], [4.9615380000000187, 4.9682060000000092], [4.9748690000000124, 4.9815360000000055], [4.988205999999991, 4.9948709999999892], [5.0015369999999848, 5.0047500000000014], [5.0115359999999782, 5.0182070000000181], [5.0248690000000238, 5.0315360000000169], [5.0382069999999999, 5.0448690000000056], [5.051544999999976, 5.0582069999999817], [5.0648689999999874, 5.0715359999999805], [5.0782060000000229, 5.0848700000000235], [5.0915360000000192, 5.0982070000000022], [5.1048690000000079, 5.111536000000001], [5.118206999999984, 5.1248689999999897], [5.1315359999999828, 5.1382070000000226], [5.1424539999999865, 5.1482050000000186], [5.1548690000000192, 5.1615360000000123], [5.1682050000000004, 5.1748699999999985], [5.1815389999999866, 5.1882049999999822], [5.1948689999999829, 5.201535999999976], [5.2082050000000208, 5.214870000000019], [5.2215360000000146, 5.2282050000000027], [5.2348690000000033, 5.2415359999999964], [5.2482049999999845, 5.2548689999999851], [5.2615359999999782, 5.2682050000000231], [5.2748690000000238, 5.2815360000000169], [5.2882050000000049, 5.2948690000000056], [5.3015359999999987, 5.3082049999999867], [5.3148699999999849, 5.3215359999999805], [5.3282050000000254, 5.3348690000000261], [5.3415360000000192, 5.3482050000000072], [5.3548690000000079, 5.3615379999999959], [5.368204999999989, 5.3748689999999897], [5.3815349999999853, 5.3882039999999733], [5.3948659999999791, 5.4015380000000164], [5.408206000000007, 5.4148690000000101], [5.4215350000000058, 5.4282109999999761], [5.434868999999992, 5.441539999999975], [5.4482070000000249, 5.4548689999999738], [5.4615360000000237, 5.4682050000000118], [5.4748690000000124, 5.4815360000000055], [5.4882049999999936, 5.4948689999999942], [5.5015359999999873, 5.5082049999999754], [5.514868999999976, 5.521536000000026], [5.528205000000014, 5.5348710000000096], [5.5415360000000078, 5.5482049999999958], [5.5548689999999965, 5.5615359999999896], [5.5682059999999751, 5.5748699999999758], [5.5815349999999739, 5.5882129999999961], [5.5954610000000002, 5.5955599999999777], [5.5956029999999828, 5.5957280000000083], [5.5957760000000007, 5.5958729999999832], [5.595909000000006, 5.596053999999981], [5.5960880000000088, 5.5962369999999737], [5.596271999999999, 5.5964190000000258], [5.5964589999999816, 5.5966149999999857], [5.5966769999999997, 5.5967860000000087], [5.5968270000000189, 5.5973349999999868], [5.5976079999999797, 5.597631999999976], [5.5976870000000076, 5.5977379999999926], [5.5977649999999812, 5.5981859999999983], [5.5982650000000262, 5.6003620000000183], [5.6017479999999864, 5.6018849999999816], [5.6021160000000236, 5.6022459999999796], [5.6115389999999934, 5.6215379999999868], [5.6282069999999749, 5.6348699999999781], [5.6415369999999712, 5.6424719999999979], [5.642516999999998, 5.6482090000000085], [5.6548700000000167, 5.6615370000000098], [5.6682059999999979, 5.674870999999996], [5.6815369999999916, 5.6882069999999771], [5.6948699999999803, 5.7015400000000227], [5.7082070000000158, 5.714870000000019], [5.7215380000000096, 5.7282060000000001], [5.7348700000000008, 5.7415359999999964], [5.7482059999999819, 5.7548699999999826], [5.7615379999999732, 5.7682050000000231], [5.7748700000000213, 5.7815370000000144], [5.7882050000000049, 5.7948700000000031], [5.8015359999999987, 5.8082059999999842], [5.8148689999999874, 5.8215359999999805], [5.8282050000000254, 5.8348659999999768], [5.8415340000000242, 5.8482040000000097], [5.8548680000000104, 5.861536000000001], [5.8682039999999915, 5.8748699999999872], [5.8815359999999828, 5.8882039999999733], [5.8948689999999715, 5.9015390000000139], [5.9082020000000171, 5.9149909999999863], [5.9190719999999715, 5.9248749999999859], [5.9315359999999941, 5.9382079999999746], [5.9448750000000246, 5.9515430000000151], [5.9582070000000158, 5.964870000000019], [5.9715340000000197, 5.9782069999999976], [5.9848690000000033, 5.9915399999999863], [5.998201999999992, 6.0048679999999877], [6.0115389999999707, 6.0182060000000206], [6.0248680000000263, 6.0315350000000194], [6.0382060000000024, 6.0415610000000015], [6.0482069999999908, 6.0548689999999965], [6.0615359999999896, 6.0682049999999776], [6.0748689999999783, 6.0815359999999714], [6.0882060000000138, 6.0948700000000144], [6.1015360000000101, 6.1082059999999956], [6.1148689999999988, 6.1215359999999919], [6.1282049999999799, 6.1348689999999806], [6.1415359999999737, 6.1425370000000044], [6.1425949999999716, 6.148206000000016], [6.1548690000000192, 6.1615360000000123], [6.1682059999999979, 6.1748670000000061], [6.1815339999999992, 6.1882049999999822], [6.1948709999999778, 6.2015390000000252], [6.2082080000000133, 6.2148710000000165], [6.221541000000002, 6.2282069999999976], [6.2348709999999983, 6.2415379999999914], [6.2482069999999794, 6.2548689999999851], [6.2615359999999782, 6.2682050000000231], [6.2748690000000238, 6.2815360000000169], [6.2882060000000024, 6.2948690000000056], [6.3015359999999987, 6.3082049999999867], [6.3111309999999889, 6.3182080000000269], [6.3248699999999758, 6.3315359999999714], [6.3382060000000138, 6.3448700000000144], [6.3515550000000189, 6.3582069999999931], [6.3648680000000013, 6.3715359999999919], [6.3782069999999749, 6.3848679999999831], [6.3915349999999762, 6.3982009999999718], [6.4048690000000192, 6.4115340000000174], [6.4182059999999979, 6.4248690000000011], [6.4315349999999967, 6.4382059999999797], [6.4448699999999803, 6.4515390000000252], [6.4582080000000133, 6.4648690000000215], [6.4715360000000146, 6.4782060000000001], [6.4848690000000033, 6.4915349999999989], [6.4982079999999769, 6.5048689999999851], [6.5115349999999808, 6.5182060000000206], [6.5248700000000213, 6.5315350000000194], [6.5382060000000024, 6.5448690000000056], [6.5515419999999835, 6.5582079999999792], [6.5648679999999899, 6.571534999999983], [6.5782060000000229, 6.5848690000000261], [6.5915380000000141, 6.5982070000000022], [6.6048680000000104, 6.6115389999999934], [6.6182029999999941, 6.624875999999972], [6.6315379999999777, 6.6382080000000201], [6.648208000000011, 6.6548690000000192], [6.6615350000000149, 6.6682069999999953], [6.6748680000000036, 6.6815349999999967], [6.6882059999999797, 6.6948689999999829], [6.7015379999999709, 6.7082070000000158], [6.714868000000024, 6.721539000000007], [6.7282069999999976, 6.7348680000000058], [6.7415389999999888, 6.7482069999999794], [6.7548699999999826, 6.7615359999999782], [6.7682050000000231, 6.7748690000000238], [6.7815370000000144, 6.7882060000000024], [6.7948700000000031, 6.8015330000000063], [6.8082009999999968, 6.8118129999999724], [6.811918999999989, 6.8126470000000268], [6.8127979999999866, 6.8133669999999711], [6.821534999999983, 6.8315339999999765], [6.8382020000000239, 6.8415600000000154], [6.8416310000000067, 6.8482040000000097], [6.8548690000000079, 6.861536000000001], [6.8682079999999814, 6.8748699999999872], [6.8815359999999828, 6.8882070000000226], [6.8948689999999715, 6.9015360000000214], [6.9082070000000044, 6.9148680000000127], [6.9215360000000032, 6.9282059999999888], [6.934868999999992, 6.9415359999999851], [6.9482070000000249, 6.9548699999999712], [6.9615360000000237, 6.9682109999999966], [6.9748690000000124, 6.9815360000000055], [6.988205999999991, 6.9948679999999968], [7.0015359999999873, 7.0082029999999804], [7.014868999999976, 7.021536000000026], [7.0282060000000115, 7.0348680000000172], [7.0415360000000078, 7.0482059999999933], [7.054869999999994, 7.061538999999982], [7.0682059999999751, 7.0748679999999808], [7.081532999999979, 7.0882070000000112], [7.0948730000000069, 7.1015409999999974], [7.111536000000001, 7.118206999999984], [7.1248689999999897, 7.1315569999999866], [7.1382060000000251, 7.1426700000000096], [7.1482070000000135, 7.1548690000000192], [7.1615360000000123, 7.1682059999999979], [7.1748680000000036, 7.1815339999999992], [7.1882059999999797, 7.1948679999999854], [7.201535999999976, 7.2082070000000158], [7.214868000000024, 7.2215360000000146], [7.2282069999999976, 7.2348690000000033], [7.2415369999999939, 7.2482069999999794], [7.2548689999999851, 7.2615410000000224], [7.2682060000000206, 7.2748680000000263], [7.2815360000000169, 7.2882060000000024], [7.2948680000000081, 7.3015359999999987], [7.3082059999999842, 7.3148679999999899], [7.3215359999999805, 7.3282080000000178], [7.3348679999999717, 7.3415360000000192], [7.3482060000000047, 7.3548690000000079], [7.361536000000001, 7.368204999999989], [7.3748679999999922, 7.3815359999999828], [7.3882060000000251, 7.3948689999999715], [7.4015319999999747, 7.4082070000000044], [7.4148680000000127, 7.4215360000000032], [7.4282079999999837, 7.4348679999999945], [7.4415359999999851, 7.4482100000000173], [7.4548679999999763, 7.461545000000001], [7.4682060000000092, 7.4748680000000149], [7.4815409999999929, 7.4882049999999936], [7.4948679999999968, 7.5015339999999924], [7.5082049999999754, 7.5148679999999786], [7.5215420000000108, 7.5282060000000115], [7.5348680000000172, 7.5415350000000103], [7.5482059999999933, 7.554867999999999], [7.5615359999999896, 7.5682059999999751], [7.5748679999999808, 7.5815349999999739], [7.5882439999999747, 7.594869000000017], [7.6015360000000101, 7.6082059999999956], [7.6148680000000013, 7.6215359999999919], [7.6282059999999774, 7.6348679999999831], [7.6415359999999737, 7.6427360000000135], [7.6427780000000212, 7.6482070000000135], [7.6548700000000167, 7.6615370000000098], [7.6682069999999953, 7.6748690000000011], [7.6815359999999941, 7.6882069999999771], [7.6948689999999829, 7.7015349999999785], [7.7082040000000234, 7.7148720000000139], [7.7215350000000171, 7.7282060000000001], [7.7348680000000058, 7.7415359999999964], [7.7482069999999794, 7.7548699999999826], [7.7615359999999782, 7.7682060000000206], [7.7748680000000263, 7.7815410000000043], [7.7882060000000024, 7.7948680000000081], [7.8015359999999987, 7.8082049999999867], [7.8148679999999899, 7.8215359999999805], [7.8282060000000229, 7.8348679999999717], [7.8415360000000192, 7.8482060000000047], [7.8548700000000053, 7.8615369999999984], [7.8682059999999865, 7.8748679999999922], [7.8815359999999828, 7.8882060000000251], [7.8952219999999897, 7.9015370000000189], [7.908206000000007, 7.9148670000000152], [7.9215370000000007, 7.9282059999999888], [7.9348679999999945, 7.9415359999999851], [7.9482060000000274, 7.9548689999999738], [7.9615360000000237, 7.9682060000000092], [7.9748680000000149, 7.9815360000000055], [7.988205999999991, 7.9948719999999867], [8.0015339999999924, 8.0082019999999829], [8.0148740000000203, 8.0215349999999717], [8.0282060000000115, 8.0348680000000172], [8.0415399999999977, 8.0482059999999933], [8.054869999999994, 8.0615359999999896], [8.0682059999999751, 8.0748679999999808], [8.0815359999999714, 8.0882060000000138], [8.0948680000000195, 8.101538000000005], [8.1082059999999956, 8.1148680000000013], [8.1215359999999919, 8.1282090000000267], [8.1348699999999781, 8.1415359999999737], [8.1482070000000135, 8.1548680000000218], [8.1615360000000123, 8.1682059999999979], [8.1748690000000011, 8.1815349999999967], [8.1882059999999797, 8.1948679999999854], [8.2015349999999785, 8.2082060000000183], [8.214868000000024, 8.2215350000000171], [8.2282060000000001, 8.2348680000000058], [8.2415349999999989, 8.2482069999999794], [8.2548699999999826, 8.2615349999999808], [8.2682060000000206, 8.2748690000000238], [8.2815370000000144, 8.2882060000000024], [8.2948680000000081, 8.3015389999999911], [8.3082079999999792, 8.3148679999999899], [8.3215359999999805, 8.3282060000000229], [8.3348690000000261, 8.3415350000000217], [8.3482070000000022, 8.3548690000000079], [8.3615350000000035, 8.3682059999999865], [8.3748679999999922, 8.3815349999999853], [8.3882060000000251, 8.394867999999974], [8.4015319999999747, 8.408206000000007], [8.4148680000000127, 8.4215350000000058], [8.4282059999999888, 8.4348679999999945], [8.4415349999999876, 8.4482060000000274], [8.4548679999999763, 8.4615350000000262], [8.4682060000000092, 8.4748680000000149], [8.481535000000008, 8.4882069999999885], [8.4948679999999968, 8.5015349999999899], [8.5082100000000196, 8.5148679999999786], [8.5215349999999717, 8.528205000000014], [8.5348680000000172, 8.5415350000000103], [8.5482059999999933, 8.5548709999999915], [8.5615429999999719, 8.5682059999999751], [8.5748679999999808, 8.5815349999999739], [8.5882439999999747, 8.5948680000000195], [8.6015360000000101, 8.6082040000000006], [8.6148680000000013, 8.6215329999999994], [8.6282049999999799, 8.6348760000000198], [8.6415359999999737, 8.6428399999999783], [8.6428629999999771, 8.648206000000016], [8.6548690000000192, 8.6615360000000123], [8.6682069999999953, 8.6748680000000036], [8.6815359999999941, 8.6882059999999797], [8.6948679999999854, 8.701535999999976], [8.7082060000000183, 8.714868000000024], [8.7215380000000096, 8.7282060000000001], [8.7348680000000058, 8.7415349999999989], [8.7482049999999845, 8.7548679999999877], [8.7615359999999782, 8.7682070000000181], [8.7748680000000263, 8.7815360000000169], [8.7882069999999999, 8.7948700000000031], [8.8015369999999962, 8.8082059999999842], [8.8148679999999899, 8.8215400000000272], [8.8282060000000229, 8.8348679999999717], [8.8415360000000192, 8.8482060000000047], [8.8548690000000079, 8.861536000000001], [8.8682089999999789, 8.8748679999999922], [8.8815359999999828, 8.8882060000000251], [8.894867999999974, 8.9015360000000214], [8.908206000000007, 8.9148680000000127], [8.9215360000000032, 8.9282059999999888], [8.9358740000000125, 8.9415359999999851], [8.9485589999999888, 8.9495739999999842], [8.9499389999999721, 8.9500719999999774], [8.950113999999985, 8.9502209999999991], [8.9502650000000017, 8.9503859999999804], [8.9506519999999909, 8.9516659999999888], [8.9522759999999835, 8.9522919999999999], [8.9523019999999747, 8.9582060000000183], [8.9633289999999874, 8.9633719999999926], [8.9633949999999913, 8.9685039999999958], [8.9736290000000167, 8.9787380000000212], [8.9838649999999802, 8.9889739999999847], [8.998203999999987, 9.0048739999999725], [9.0173429999999826, 9.0248700000000213], [9.0348700000000122, 9.0415340000000128], [9.0482620000000225, 9.054867999999999], [9.0615359999999896, 9.0682110000000193], [9.0748679999999808, 9.0815519999999879], [9.0882080000000087, 9.0948680000000195], [9.1015350000000126, 9.1082069999999931], [9.1148680000000013, 9.1215359999999919], [9.1282249999999863, 9.1348689999999806], [9.1415369999999712, 9.1428920000000176], [9.1429519999999798, 9.1482070000000135], [9.1548670000000243, 9.1615350000000149], [9.1682059999999979, 9.1748680000000036], [9.1815339999999992, 9.1882059999999797], [9.1948679999999854, 9.2015349999999785], [9.2082060000000183, 9.2148690000000215], [9.2215350000000171, 9.2282069999999976], [9.2348700000000008, 9.238207999999986], [9.2482059999999819, 9.2582059999999728], [9.2648790000000076, 9.271536000000026], [9.2782169999999837, 9.2848680000000172], [9.2915360000000078, 9.2982109999999807], [9.304869999999994, 9.3115429999999719], [9.3182059999999751, 9.3248780000000124], [9.3315349999999739, 9.3382070000000112], [9.344869000000017, 9.35154], [9.3582289999999944, 9.3648680000000013], [9.3715349999999944, 9.3782069999999749], [9.3848679999999831, 9.3915349999999762], [9.3982009999999718, 9.4048730000000091], [9.4115370000000098, 9.4182050000000004], [9.4248680000000036, 9.4315359999999941], [9.4382059999999797, 9.4448679999999854], [9.4515390000000252, 9.4582050000000208], [9.4623090000000047, 9.4682090000000017], [9.4748680000000149, 9.481537000000003], [9.488205999999991, 9.4948679999999968], [9.5015359999999873, 9.5082059999999728], [9.5148720000000253, 9.5216030000000274], [9.5282040000000165, 9.5348749999999995], [9.5415350000000103, 9.5482059999999933], [9.5548709999999915, 9.5615399999999795], [9.5682059999999751, 9.5748679999999808], [9.5815339999999765, 9.5882159999999885], [9.594867000000022, 9.60154], [9.6082059999999956, 9.6148670000000038], [9.6215359999999919, 9.6282059999999774], [9.6348679999999831, 9.6415359999999737], [9.6482070000000135, 9.6548690000000192], [9.6615360000000123, 9.6682059999999979], [9.6748680000000036, 9.6815349999999967], [9.6882059999999797, 9.6948679999999854], [9.701535999999976, 9.7082060000000183], [9.7148690000000215, 9.7215360000000146], [9.7282060000000001, 9.7348660000000109], [9.7415359999999964, 9.7482059999999819], [9.7548689999999851, 9.7615359999999782], [9.7682060000000206, 9.7748700000000213], [9.7815350000000194, 9.7882060000000024], [9.7948670000000106, 9.8015359999999987], [9.8082059999999842, 9.8148679999999899], [9.821536999999978, 9.8282060000000229], [9.8348679999999717, 9.8415360000000192], [9.8482050000000072, 9.8548690000000079], [9.8615409999999883, 9.8682059999999865], [9.8748679999999922, 9.8815329999999904], [9.8882009999999809, 9.8947420000000079], [9.9015340000000265, 9.9083110000000261], [9.9148690000000101, 9.9215360000000032], [9.9282059999999888, 9.9348679999999945], [9.9415369999999825, 9.9482009999999832], [9.9548770000000104, 9.9615370000000212], [9.9682060000000092, 9.9748680000000149], [9.9815360000000055, 9.9882069999999885], [9.9948679999999968, 10.001535999999987], [10.008200999999985, 10.011300000000006], [10.018202999999971, 10.024865999999975], [10.031535000000019, 10.038206000000002], [10.044868000000008, 10.051538999999991], [10.058205999999984, 10.064866999999992], [10.071531999999991, 10.078206000000023], [10.084867999999972, 10.091536000000019], [10.098206000000005, 10.10486800000001], [10.111536000000001, 10.118204999999989], [10.124869999999987, 10.131535999999983], [10.13820800000002, 10.143044999999972], [10.148206000000016, 10.154870000000017], [10.16153700000001, 10.168205999999998], [10.174868000000004, 10.181534999999997], [10.188204999999982, 10.194867999999985], [10.201534999999978, 10.208206000000018], [10.214868000000024, 10.221535000000017], [10.228205000000003, 10.234868000000006], [10.241534999999999, 10.248205999999982], [10.254868999999985, 10.261534999999981], [10.268205000000023, 10.274868000000026], [10.281535000000019, 10.288205000000005], [10.294868000000008, 10.301535000000001], [10.308206999999982, 10.31486799999999], [10.321534999999983, 10.328206000000023], [10.334867999999972, 10.341535000000022], [10.348206000000005, 10.35486800000001], [10.361535000000003, 10.368204999999989], [10.374867999999992, 10.381541000000027], [10.388206000000025, 10.394867999999974], [10.401531999999975, 10.407268999999985], [10.414872000000003, 10.424868000000004], [10.431535999999994, 10.438204999999982], [10.444868999999983, 10.451536999999973], [10.458206000000018, 10.464936000000023], [10.471535000000017, 10.478206], [10.484868000000006, 10.491535999999996], [10.498205999999982, 10.504871999999978], [10.511541000000022, 10.518208000000016], [10.524870000000021, 10.531535000000019], [10.538206000000002, 10.544868000000008], [10.551538999999991, 10.558204999999987], [10.56486799999999, 10.571531999999991], [10.57821100000001, 10.584873000000016], [10.594868000000019, 10.601537000000008], [10.608204999999998, 10.614868999999999], [10.621534999999994, 10.62820499999998], [10.634866999999986, 10.641546000000005], [10.643159000000026, 10.648205000000019], [10.654869000000019, 10.661536000000012], [10.668206999999995, 10.674867000000006], [10.681534999999997, 10.68820599999998], [10.694867999999985, 10.701534999999978], [10.708205000000021, 10.714867000000027], [10.721535000000017, 10.728205000000003], [10.734868000000006, 10.741534999999999], [10.748205999999982, 10.754867999999988], [10.761533999999983, 10.768206000000021], [10.774868000000026, 10.781535000000019], [10.788205000000005, 10.794867000000011], [10.801535000000001, 10.808205999999984], [10.81487199999998, 10.821534999999983], [10.828205000000025, 10.834867999999972], [10.841538000000014, 10.848205000000007], [10.85486800000001, 10.861535000000003], [10.868209999999976, 10.874866999999995], [10.881534999999985, 10.888204999999971], [10.894871000000023, 10.901541000000009], [10.90820100000002, 10.908759999999972], [10.908821999999986, 10.909636999999975], [10.909977000000026, 10.910499000000016], [10.910666999999989, 10.918202000000008], [10.924868000000004, 10.931560999999988], [10.93820599999998, 10.944871999999975], [10.951535999999976, 10.958200999999974], [10.964875000000006, 10.971536000000015], [10.978206999999998, 10.984868000000006], [10.991535999999996, 10.998204999999984], [11.004868999999985, 11.011531999999988], [11.018207000000018, 11.024866999999972], [11.031542999999999, 11.038205000000005], [11.044868000000008, 11.051539999999989], [11.058206999999982, 11.06486799999999], [11.071534999999983, 11.078206000000023], [11.084869000000026, 11.091535000000022], [11.098206000000005, 11.10486800000001], [11.111536000000001, 11.118204999999989], [11.124867999999992, 11.131534999999985], [11.138204999999971, 11.143186000000014], [11.151539000000014, 11.158205000000009], [11.16486900000001, 11.171535000000006], [11.178205999999989, 11.184867999999994], [11.191535999999985, 11.198204999999973], [11.204867999999976, 11.211537000000021], [11.218204000000014, 11.224868000000015], [11.231535000000008, 11.238205999999991], [11.244870999999989, 11.25153899999998], [11.258204999999975, 11.264866999999981], [11.271536000000026, 11.278204000000017], [11.284868000000017, 11.291539999999998], [11.298203999999998, 11.304867000000002], [11.311533999999995, 11.318204999999978], [11.324867999999981, 11.331541000000016], [11.338205000000016, 11.344868000000019], [11.351537000000008, 11.358205999999996], [11.364867000000004, 11.371534999999994], [11.37820499999998, 11.384867999999983], [11.391535999999974, 11.398199999999974], [11.404867000000024, 11.411535000000015], [11.418205, 11.424869000000001], [11.431535999999994, 11.438204999999982], [11.444867999999985, 11.451537999999971], [11.458206000000018, 11.464867000000027], [11.470250000000021, 11.470286999999985], [11.470606999999973, 11.476912000000027], [11.477258000000006, 11.484593000000018], [11.484935000000007, 11.485010999999986], [11.485535000000027, 11.485634000000005], [11.485668999999973, 11.485746000000006]], \"1\": [[0.28742099999999482, 0.28756499999997231], [0.28759100000002036, 0.28761800000000903], [0.28964799999999968, 0.29490099999998165]]}, \"rt-app-4653\": {\"0\": [[0.2848409999999717, 0.28571199999998953], [0.28596800000002531, 0.2867729999999824], [11.485634000000005, 11.485668999999973], [11.49142599999999, 11.492495000000019]], \"1\": [[0.27748000000002548, 0.278349999999989], [0.27839099999999917, 0.27867700000001605], [0.27930400000002464, 0.2796730000000025], [0.27974499999999125, 0.2798609999999826], [0.28107999999997446, 0.28120300000000498], [0.28129699999999502, 0.28133600000001024], [0.28345000000001619, 0.28454099999999016]]}, \"cnd-627\": {\"2\": [[0.39274799999998322, 0.39294100000000753], [1.3940170000000194, 1.3941820000000007], [2.3952509999999734, 2.3954299999999762], [2.996118000000024, 2.9962929999999801], [3.3967210000000136, 3.396852000000024], [4.397941000000003, 4.3981249999999932], [5.3992200000000139, 5.3994129999999814], [5.9970890000000168, 5.9972660000000246], [6.4007510000000138, 6.4009419999999864], [7.4020189999999957, 7.4022069999999758], [8.4032869999999775, 8.403474000000017], [8.9620869999999968, 8.9625100000000089], [8.9644870000000196, 8.9645459999999844], [8.9976619999999912, 8.9978029999999762], [9.4043019999999728, 9.4044799999999782], [10.40551099999999, 10.40569099999999], [11.406778999999972, 11.406965000000014]]}, \"logd.klogd-429\": {\"2\": [[0.85157600000002276, 0.85212899999999081], [0.85489300000000412, 0.85500400000000809], [0.86491499999999633, 0.86504100000001927], [0.89292999999997846, 0.8930859999999825], [0.91026299999998628, 0.91041400000000294], [0.91157099999998081, 0.91173199999997223], [1.7220019999999749, 1.7226610000000164], [3.3915830000000255, 3.3921240000000239], [3.3949690000000032, 3.3950770000000148], [3.4049570000000244, 3.4050829999999905], [3.4317540000000122, 3.4318789999999808], [3.4489280000000235, 3.4492979999999989], [3.4515949999999975, 3.451611000000014], [4.1715639999999894, 4.1720760000000041], [5.8588240000000269, 5.8588480000000231], [5.8588619999999878, 5.8593989999999962], [5.8615609999999947, 5.8615730000000212], [5.871563999999978, 5.8716840000000161], [5.8991219999999771, 5.8993080000000191], [5.9148870000000215, 5.914923999999985], [5.9151709999999866, 5.9153719999999907], [6.8415739999999801, 6.8421349999999848], [7.6954789999999775, 7.6960349999999949], [8.951705000000004, 8.9523619999999937], [8.9649229999999989, 8.9651279999999929], [8.991644000000008, 8.9921749999999747], [9.0082249999999817, 9.0084780000000251], [9.0150049999999737, 9.0151460000000156], [10.938240000000008, 10.938730000000021]]}, \"Binder:2076_4-2391\": {\"2\": [[0.83955800000001091, 0.84001499999999396]]}, \"adbd-4642\": {\"1\": [[0.061805999999990036, 0.062007999999991625]]}, \"adbd-4669\": {\"0\": [[11.625055999999972, 11.626081999999997]]}, \"Thread-11-2542\": {\"0\": [[5.9184379999999805, 5.9190719999999715]], \"2\": [[5.8419170000000236, 5.8426870000000122]]}, \"netd-1083\": {\"2\": [[0.83554400000002715, 0.83577300000001742]]}, \"InputDispatcher-1398\": {\"0\": [[3.12796400000002, 3.1280340000000137]]}, \"adbd-4663\": {\"0\": [[11.542504000000008, 11.543557000000021]], \"1\": [[11.541725999999983, 11.542370000000005]]}, \"shell srvc 4645-4646\": {\"1\": [[0.1768809999999803, 0.17715900000001739]]}, \"sh-4651\": {\"0\": [[11.492545000000007, 11.494125999999994]], \"1\": [[0.23043000000001257, 0.23048799999997982], [0.23112600000001748, 0.2314349999999763], [0.23167599999999311, 0.23194899999998597], [0.23195900000001757, 0.23841199999998253], [0.23864600000001701, 0.24084099999998898]]}, \"sh-4653\": {\"1\": [[0.24084099999998898, 0.24264699999997674]]}, \"Non-User-Facing-3195\": {\"3\": [[0.84381000000001904, 0.8447519999999713], [0.84478200000000925, 0.84479299999998148]]}, \"kworker/3:1H-395\": {\"3\": [[2.0720789999999738, 2.0720910000000003]]}, \"OkHttp Connecti-4089\": {\"0\": [[8.9348699999999894, 8.9357830000000149], [8.9623520000000099, 8.9633289999999874]]}, \"cnss-daemon-629\": {\"2\": [[1.6891989999999737, 1.6893190000000118], [1.691880000000026, 1.6918900000000008], [1.6930449999999837, 1.6931490000000053], [4.1423960000000193, 4.1424359999999751], [4.1428920000000176, 4.1429120000000239], [9.240667999999971, 9.2407590000000255], [9.4624919999999975, 9.4626170000000229], [9.8948290000000156, 9.8949109999999791], [10.011392999999998, 10.01145600000001], [10.407766999999978, 10.407898999999986], [10.911010999999974, 10.91102699999999]], \"3\": [[0.91100999999997612, 0.91105599999997366], [0.9123339999999871, 0.91235299999999597], [1.1911549999999806, 1.1912810000000036], [1.6936549999999784, 1.6936769999999797], [1.6951960000000099, 1.6953340000000026], [3.4490599999999745, 3.4490979999999922], [3.6413850000000139, 3.6414909999999736], [4.1445650000000001, 4.1446589999999901], [5.9154359999999997, 5.9154819999999972], [5.9166549999999916, 5.916673000000003], [6.311300000000017, 6.3114150000000109], [6.8114550000000236, 6.8115099999999984], [6.8122979999999984, 6.8124070000000074], [6.8131549999999947, 6.8131849999999758], [6.8134410000000116, 6.813459000000023], [9.0152100000000246, 9.0152449999999931], [9.0163109999999733, 9.0163329999999746], [9.0172299999999836, 9.0172539999999799], [10.908114000000012, 10.908184000000006], [10.908453000000009, 10.908464999999978], [10.908861999999999, 10.908893999999975], [10.910095000000013, 10.910205000000019]]}, \"rcu_sched-8\": {\"1\": [[11.49494199999998, 11.494962999999984], [11.495049999999992, 11.495062000000019], [11.495114999999998, 11.495124999999973], [11.501615000000015, 11.501633000000027], [11.508239000000003, 11.508252000000027], [11.581636000000003, 11.581651000000022], [11.582001999999989, 11.582017000000008], [11.58205700000002, 11.582070999999985], [11.582109000000003, 11.582122000000027], [11.588261999999986, 11.588273000000015], [11.654997999999978, 11.655019999999979], [11.655282, 11.655301000000009], [11.655310999999983, 11.655326000000002], [11.661592999999982, 11.661607000000004], [11.668243000000018, 11.668256999999983]], \"2\": [[0.18497600000000602, 0.1849950000000149]], \"3\": [[0.00014800000002423985, 0.00016399999998384374], [0.00025599999997893974, 0.00026700000000801083], [0.00028800000001183435, 0.00029799999998658677], [0.00035600000001068111, 0.00036699999998290878], [0.0044570000000021537, 0.0044689999999718566], [0.0045729999999934989, 0.00458400000002257], [0.0046189999999910469, 0.0046280000000251675], [0.005024999999989177, 0.0050350000000207729], [0.005139999999983047, 0.0051500000000146429], [0.0083950000000072578, 0.0084100000000262298], [0.0086919999999963693, 0.0087030000000254404], [0.0087359999999989668, 0.008744999999976244], [0.0087950000000205364, 0.0088069999999902393], [0.0088400000000206091, 0.0088489999999978863], [0.014908999999988737, 0.014918000000022857], [0.088342000000011467, 0.088368000000002667], [0.088418999999987591, 0.088431000000014137], [0.088491999999973814, 0.088505999999995311], [0.088526999999999134, 0.088534999999978936], [0.094913000000019565, 0.094924999999989268], [0.17754800000000159, 0.17757399999999279], [0.17763600000000679, 0.17764799999997649], [0.17827199999999266, 0.17828500000001668], [0.17831699999999273, 0.17832700000002433]]}, \"HWC_UeventThrea-526\": {\"2\": [[0.83584700000000112, 0.83589499999999362]]}, \"shell srvc 4641-4642\": {\"0\": [[0.087474999999983538, 0.087841000000025815]]}, \"thermal-engine-694\": {\"0\": [[0.99856599999998252, 0.99879900000001953], [0.99989599999997836, 1.0000640000000089], [2.0001359999999977, 2.0003439999999841], [2.0014449999999897, 2.0016370000000165], [3.0016989999999737, 3.001893999999993], [3.002997999999991, 3.0031559999999899], [4.0032219999999938, 4.0034180000000106], [4.0045220000000086, 4.0046859999999924], [5.0047500000000014, 5.004965000000027]], \"2\": [[5.0065369999999803, 5.0068140000000199], [6.006844000000001, 6.0070430000000101], [6.0081599999999753, 6.0083539999999971], [7.00848000000002, 7.0086929999999938], [7.0098179999999957, 7.009997999999996], [8.0101399999999785, 8.0103540000000066], [8.0114800000000059, 8.0117089999999962], [9.0117740000000026, 9.0119670000000269], [9.0130849999999896, 9.01321200000001], [10.013301000000013, 10.013478000000021], [10.014598999999976, 10.014725999999996], [11.014867999999979, 11.015094999999974], [11.016221999999971, 11.016397999999981]]}, \"msm_watchdog-32\": {\"0\": [[6.8415600000000154, 6.8416310000000067]]}}});\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": 14,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "{\n",
+      "    \"4659\": {\n",
+      "        \"residency\": 100.0, \n",
+      "        \"task_name\": \"rt-app\"\n",
+      "    }, \n",
+      "    \"4660\": {\n",
+      "        \"residency\": 100.0, \n",
+      "        \"task_name\": \"rt-app\"\n",
+      "    }, \n",
+      "    \"4661\": {\n",
+      "        \"residency\": 100.0, \n",
+      "        \"task_name\": \"rt-app\"\n",
+      "    }, \n",
+      "    \"4662\": {\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": 15,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "True"
+      ]
+     },
+     "execution_count": 15,
+     "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\n",
+    "\n",
+    "While the CPUSET is a controller to assign CPUs and memory nodes for a set of tasks, the CPU controller is used to assign CPU bandwidth."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 16,
+   "metadata": {
+    "collapsed": true
+   },
+   "outputs": [],
+   "source": [
+    "# Get a reference to the CPU controller\n",
+    "cpu = target.cgroups.controller('cpu')"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 17,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [],
+   "source": [
+    "# Create a big partition on that CPUS\n",
+    "cpu_littles = cpu.cgroup('/LITTLE')"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 18,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "LITTLE:\n",
+      "{\n",
+      "    \"rt_period_us\": \"1000000\", \n",
+      "    \"shares\": \"1024\", \n",
+      "    \"rt_runtime_us\": \"0\"\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": 19,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "LITTLE:\n",
+      "{\n",
+      "    \"rt_period_us\": \"1000000\", \n",
+      "    \"shares\": \"512\", \n",
+      "    \"rt_runtime_us\": \"0\"\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": 20,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "2016-12-08 11:44:14,920 INFO    : Workload     : Workload execution START:\n",
+      "2016-12-08 11:44:14,921 INFO    : Workload     :    /data/local/tmp/bin/shutils cgroups_run_into /LITTLE /data/local/tmp/bin/rt-app /data/local/tmp/devlib-target/simple_00.json 2>&1\n",
+      "2016-12-08 11:44:26,513 INFO    : Workload     : 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": 21,
+   "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_ffec9f14c7264f6ca8d191a203ab0eb0\" 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_ffec9f14c7264f6ca8d191a203ab0eb0', '/nbextensions/', {\"lanes\": [{\"id\": 0, \"label\": \"CPU :0\"}, {\"id\": 1, \"label\": \"CPU :1\"}, {\"id\": 2, \"label\": \"CPU :2\"}, {\"id\": 3, \"label\": \"CPU :3\"}], \"colorMap\": null, \"keys\": [\"task3-4773\", \"task0-4770\", \"task2-4772\", \"task1-4771\", \"sh-4778\", \"su-4759\", \"sh-4787\", \"adbd-4780\", \"msm_irqbalance-564\", \"su-4755\", \"shutils-4765\", \"su-4783\", \"su-4777\", \"sh-4755\", \"sh-4774\", \"sh-4777\", \"sh-4780\", \"sh-4756\", \"sh-4759\", \"sh-4762\", \"shutils-4779\", \"shutils-4761\", \"sh-4764\", \"shutils-4766\", \"sh-4788\", \"sh-4783\", \"shutils-4764\", \"shutils-4767\", \"sh-4784\", \"busybox-4767\", \"adbd-4756\", \"adbd-4774\", \"adbd-4784\", \"shutils-4768\", \"shutils-4760\", \"adbd-4762\", \"sh-4747\", \"sh-4752\", \"sh-4750\", \"adbd-4752\", \"sh-4760\", \"OkHttp Connecti-4079\", \"sh-4776\", \"sh-4786\", \"sh-4782\", \"sh-4758\", \"OkHttp Connecti-4089\", \"busybox-4768\", \"su-4787\", \"sh-4754\", \"logd.klogd-429\", \"rt-app-4764\", \"OkHttp Connecti-3994\", \"adbd-4121\", \"cnss_diag-628\", \"shutils-4769\", \"shell srvc 4780-4781\", \"shutils-4778\", \"msm_watchdog-32\", \"shell srvc 4747-4748\", \"shell srvc 4762-4763\", \"thermal-engine-694\", \"cnd-627\", \"watchdog-1658\", \"kworker/u8:4-247\", \"kworker/u8:8-924\", \"jbd2/sda35-8-529\", \"kworker/0:1-33\", \"shell srvc 4756-4757\", \"shell srvc 4752-4753\", \"shell srvc 4774-4775\", \"Thread-5-1501\", \"kworker/3:0-21\", \"wpa_supplicant-1502\", \"VosMCThread-1457\", \"kworker/0:3-472\", \"busybox-4766\", \"irq/19-408000.q-572\", \"adbd-4757\", \"adbd-4785\", \"adbd-4763\", \"adbd-4781\", \"wlan_logging_th-1454\", \"<-transport-4124\", \"adbd-4775\", \"android.fg-1163\", \"rt-app-4770\", \"busybox-4765\", \"busybox-4761\", \"InputReader-1399\", \"kworker/u8:1-4684\", \"cnd-1118\", \"cnss-daemon-629\", \"->transport-4123\", \"smem_native_rpm-41\", \"kworker/0:0-4\", \"adbd-4753\", \"kworker/1:0-13\", \"mpss_smd_trans_-29\", \"hwrng-160\", \"POSIX timer 1-1781\", \"ksoftirqd/0-3\", \"InputDispatcher-1398\", \"rt-app-4773\", \"ksoftirqd/1-12\", \"rcu_preempt-7\", \"kworker/2:1-81\", \"rcu_sched-8\", \"VosWDThread-1455\", \"ksoftirqd/2-16\", \"rt-app-4771\", \"ksoftirqd/3-20\", \"kworker/0:1H-402\", \"rt-app-4772\", \"kworker/3:1H-395\"], \"stride\": false, \"showSummary\": true, \"xDomain\": [0.0, 11.79172699999998], \"data\": {\"kworker/0:1H-402\": {\"0\": [[6.3116959999999835, 6.3117090000000076], [6.312513000000024, 6.3125249999999937], [9.3115109999999959, 9.3115339999999946], [9.3147769999999923, 9.3147860000000264]]}, \"POSIX timer 1-1781\": {\"0\": [[0.36834900000002335, 0.36841199999997798], [0.86841800000001967, 0.86845800000003237], [1.3684650000000147, 1.3684920000000034], [1.8685110000000122, 1.8685560000000123], [2.3685780000000136, 2.368629999999996], [2.8686400000000276, 2.868678999999986], [3.3687009999999873, 3.3687770000000228], [3.868787999999995, 3.8688149999999837], [4.3688339999999926, 4.3688609999999812], [4.86888399999998, 4.868912000000023], [5.3689340000000243, 5.368961000000013], [5.8689810000000193, 5.8690119999999979], [6.3690450000000283, 6.369103999999993], [6.8691180000000145, 6.8691519999999855], [7.3691699999999969, 7.369197999999983], [7.8692409999999882, 7.8692970000000173], [8.369322000000011, 8.3693680000000086], [8.86938600000002, 8.8694189999999935], [9.3694469999999797, 9.3695030000000088], [9.8695109999999886, 9.8695430000000215], [10.369561000000033, 10.369590000000017], [10.86960700000003, 10.869633000000022], [11.36966000000001, 11.369707000000005]]}, \"adbd-4775\": {\"0\": [[11.56152000000003, 11.561713999999995]]}, \"->transport-4123\": {\"0\": [[0.091362000000003718, 0.091611999999997806], [0.13937800000002198, 0.13938799999999674], [0.14339599999999564, 0.14350600000000213], [0.14361600000000863, 0.14366200000000617], [0.20224999999999227, 0.20236099999999624], [0.202541999999994, 0.2027259999999842], [0.20330999999998767, 0.20338900000001559], [0.20365200000003369, 0.20370100000002367], [0.20378699999997707, 0.20381400000002259], [0.25275099999998929, 0.25278100000002723], [0.2551859999999806, 0.25530200000002878], [0.2554150000000277, 0.25548600000001898], [0.30116500000002588, 0.30124200000000201], [0.3013220000000274, 0.30133799999998701], [0.30153300000000627, 0.30162599999999884], [0.30195000000003347, 0.3019570000000158], [0.30261400000000549, 0.30266999999997779], [0.30274700000001076, 0.30276100000003225], [0.3028410000000008, 0.30288000000001603], [0.30319500000001653, 0.30320199999999886], [0.30728299999998399, 0.30736100000001443], [11.492666999999983, 11.492701000000011], [11.49280600000003, 11.492921000000024], [11.493186999999978, 11.493200999999999], [11.501766000000032, 11.501865000000009], [11.502034999999978, 11.502078999999981], [11.502111000000014, 11.502134000000012], [11.502166999999986, 11.50222100000002]], \"1\": [[0.0036519999999882202, 0.003719999999987067], [0.0038240000000087093, 0.0038470000000074833], [0.003945999999984906, 0.0041479999999864958], [0.0042169999999828178, 0.0042389999999841166], [0.0045890000000099462, 0.004615000000001146], [0.0048070000000279833, 0.0048750000000268301], [0.057026000000007571, 0.057073000000002594], [0.059955999999999676, 0.060095999999987271], [0.060182999999994991, 0.060230999999987489], [0.091146999999978107, 0.091231999999990876], [0.091785000000015771, 0.091794999999990523], [0.30755800000002864, 0.30763300000000982], [0.30766399999998839, 0.30773099999998976], [0.30836199999998826, 0.3083920000000262], [0.30928399999999101, 0.30936100000002398], [11.551890000000014, 11.551900999999987], [11.555968000000007, 11.556086999999991], [11.556187000000023, 11.556241], [11.606428999999991, 11.606523999999979], [11.60668400000003, 11.606723999999986], [11.606769999999983, 11.606865000000028], [11.606974999999977, 11.60700700000001], [11.607587000000024, 11.607624999999985], [11.607749000000013, 11.607796000000008], [11.661220000000014, 11.661248000000001], [11.66381899999999, 11.663943000000017], [11.664033000000018, 11.664083000000005], [11.695823000000019, 11.69593100000003], [11.696012999999994, 11.696065000000033], [11.696752000000004, 11.696763000000033], [11.751711, 11.751721000000032], [11.755708000000027, 11.755833999999993], [11.755917000000011, 11.755974999999978]], \"2\": [[11.418491000000017, 11.418693000000019], [11.418714000000023, 11.418734000000029], [11.418878000000007, 11.419062999999994], [11.419295000000034, 11.419305000000008], [11.497320999999999, 11.497364000000005], [11.497932999999989, 11.497942000000023], [11.499191999999994, 11.499233000000004], [11.499332999999979, 11.499351999999988], [11.499604000000033, 11.499644999999987], [11.499899000000028, 11.499909000000002], [11.502253999999994, 11.502316000000008], [11.502424000000019, 11.502455999999995]], \"3\": [[0.30955000000000155, 0.30959699999999657], [0.30964599999998654, 0.30971199999999044], [0.31003400000003012, 0.31004500000000235], [0.31015100000001894, 0.31018100000000004], [0.31024200000001656, 0.31025900000003048], [0.31037300000002688, 0.31040000000001555], [0.31063399999999319, 0.31064400000002479], [0.31493599999998878, 0.31496299999997746], [0.31503400000002557, 0.31504999999998518], [0.31515699999999924, 0.31517999999999802], [0.3154440000000136, 0.31545499999998583], [0.31564100000002782, 0.31566900000001397], [0.31573200000002544, 0.31575500000002421], [0.31579900000002681, 0.31582100000002811], [0.31604199999998173, 0.31605400000000827], [11.492490000000032, 11.492604000000028], [11.497477000000003, 11.497498000000007], [11.49759899999998, 11.497648000000027], [11.502550999999983, 11.502557000000024], [11.502574999999979, 11.502603000000022], [11.50268699999998, 11.502721000000008], [11.502772999999991, 11.502782000000025]]}, \"smem_native_rpm-41\": {\"0\": [[0.055326999999977033, 0.055354000000022552], [0.055564000000003944, 0.055588999999997668], [0.059128999999984444, 0.05921899999998459], [0.059269000000028882, 0.059282999999993535], [0.10834900000003245, 0.10837900000001355], [0.10860600000000886, 0.10862500000001774], [0.25851299999999355, 0.25854199999997718], [0.29525000000001, 0.2952900000000227], [0.29564099999998916, 0.29565600000000813]], \"1\": [[11.601715000000013, 11.601747999999986], [11.659506000000022, 11.659537999999998], [11.708324000000005, 11.708354999999983], [11.758490999999992, 11.758526000000018]], \"2\": [[0.3452230000000327, 0.34525400000001127], [0.3462329999999838, 0.34627100000000155], [0.39545800000001918, 0.39553399999999783], [2.2535629999999855, 2.2536650000000122], [2.9951879999999846, 2.9953160000000025], [2.9954700000000116, 2.9954890000000205], [6.3069740000000252, 6.3070960000000014], [6.3072860000000333, 6.3073019999999929], [6.3078550000000178, 6.307990000000018], [6.3080170000000066, 6.3080310000000281], [6.308255000000031, 6.3082719999999881], [6.3084010000000035, 6.3084190000000149], [6.3091069999999831, 6.3092270000000212], [6.3223550000000159, 6.3224460000000136], [6.3226080000000024, 6.3226230000000214], [6.3231190000000197, 6.3232160000000022], [9.3123840000000087, 9.3125039999999899], [9.3126920000000268, 9.3127079999999864], [9.3132820000000152, 9.3134049999999888], [9.3170010000000048, 9.3171120000000087], [9.3171839999999975, 9.3172240000000102], [9.3173150000000078, 9.3173570000000154], [9.3175780000000259, 9.317594999999983], [9.3177560000000312, 9.3177729999999883], [9.317939000000024, 9.3179549999999836], [9.3181710000000066, 9.318189000000018], [9.3183230000000208, 9.3183399999999779], [9.3184860000000072, 9.3185030000000211], [9.3186790000000315, 9.3186949999999911], [11.319847999999979, 11.319929999999999], [11.319950000000006, 11.319964000000027], [11.320197000000007, 11.320214000000021], [11.321015999999986, 11.321075000000008], [11.321285999999986, 11.321304999999995], [11.321626999999978, 11.321646999999984], [11.321821999999997, 11.321838000000014], [11.322709000000032, 11.322746999999993], [11.322773999999981, 11.322788000000003], [11.322991000000002, 11.323007000000018], [11.323937999999998, 11.323985999999991], [11.324022000000014, 11.324035999999978], [11.339157999999998, 11.339275999999984], [11.339472000000001, 11.339489000000015], [11.340047000000027, 11.34017399999999], [11.551788999999985, 11.551878999999985]]}, \"rcu_preempt-7\": {\"0\": [[0.00017600000001039007, 0.00020299999999906504], [0.0032709999999838146, 0.0033320000000003347], [0.0035000000000309228, 0.003512999999998101], [0.0035460000000284708, 0.003555000000005748], [0.0035940000000209693, 0.0036029999999982465], [0.004837000000009084, 0.0048659999999927095], [0.0049690000000168766, 0.0049819999999840547], [0.0050259999999866523, 0.0050370000000157233], [0.005066999999996824, 0.0050760000000309446], [0.0051119999999968968, 0.0051220000000284927], [0.0051609999999868705, 0.0051730000000134169], [0.011479000000008455, 0.011490999999978158], [0.058196000000009462, 0.058230999999977939], [0.060603000000014617, 0.06063899999998057], [0.060706999999979416, 0.060721000000000913], [0.060748999999987063, 0.060757000000023709], [0.060785000000009859, 0.060794999999984611], [0.06082400000002508, 0.060831000000007407], [0.061483000000009724, 0.061509999999998399], [0.061541000000033819, 0.061553000000003522], [0.061585999999977048, 0.061595000000011169], [0.061621999999999844, 0.061630999999977121], [0.06166000000001759, 0.061669999999992342], [0.065065000000004147, 0.065086000000007971], [0.065106000000014319, 0.065116999999986547], [0.065140999999982796, 0.065151000000014392], [0.072056000000031872, 0.072082000000023072], [0.078204000000027918, 0.078257000000007793], [0.084985000000017408, 0.085014999999998508], [0.089321999999981472, 0.089359000000001743], [0.089463000000023385, 0.089473999999995613], [0.089508000000023458, 0.08951799999999821], [0.091796999999985474, 0.091816999999991822], [0.091915000000028613, 0.091922000000010939], [0.091971999999998388, 0.091984000000024935], [0.17865100000000211, 0.17867899999998826], [0.17872900000003256, 0.17874000000000478], [0.17878100000001496, 0.17878999999999223], [0.1815300000000093, 0.18157100000001947], [0.18161400000002459, 0.18162399999999934], [0.18166700000000446, 0.18167499999998427], [0.18610400000000027, 0.18616100000002689], [0.18623500000001059, 0.18625300000002198], [0.18629400000003216, 0.18630300000000943], [0.18633599999998296, 0.18634600000001456], [0.18637499999999818, 0.18638099999998303], [0.18836399999997866, 0.18838800000003175], [0.19490500000000566, 0.1949730000000045], [0.19787400000001298, 0.19790299999999661], [0.19798800000000938, 0.19799899999998161], [0.19822800000002871, 0.19825000000003001], [0.20248500000002423, 0.202541999999994], [0.20328599999999142, 0.20330999999998767], [0.20393400000000383, 0.20395600000000513], [0.20419300000003204, 0.20420400000000427], [0.20425099999999929, 0.20426000000003341], [0.20828699999998435, 0.20829700000001594], [11.695814999999982, 11.69584900000001], [11.718455000000006, 11.718470000000025], [11.718522000000007, 11.718532999999979], [11.724755000000016, 11.724769999999978], [11.754892999999981, 11.754919000000029], [11.756388000000015, 11.756422999999984], [11.756485999999995, 11.756497000000024], [11.756528000000003, 11.756534999999985], [11.756573000000003, 11.756580999999983], [11.756614000000013, 11.756620999999996], [11.758235000000013, 11.758279000000016], [11.758905000000027, 11.758930000000021], [11.758970000000033, 11.758979000000011], [11.764372999999978, 11.764443000000028], [11.788822999999979, 11.788855000000012], [11.788927000000001, 11.788944000000015], [11.789051000000029, 11.789060000000006]], \"1\": [[0.092020999999988362, 0.092036000000007334], [0.092075000000022555, 0.092086999999992258], [0.092195000000003802, 0.092204999999978554], [0.098134000000015931, 0.098148999999978059], [0.098191999999983182, 0.098200000000019827], [0.098243000000024949, 0.098252000000002226], [0.098266000000023723, 0.098275999999998476], [0.09832899999997835, 0.098342000000002372], [0.098355000000026394, 0.098365000000001146], [0.098452000000008866, 0.098466000000030363], [0.098478999999997541, 0.098489000000029137], [0.10143900000002759, 0.10145399999998972], [0.10146600000001627, 0.10147699999998849], [0.10808600000001434, 0.10810100000003331], [0.14183300000001964, 0.14190700000000334], [0.14833500000003141, 0.14837799999997969], [0.15490699999998014, 0.15497099999998909], [0.16162400000001753, 0.16169400000001133], [0.16833400000001575, 0.16839500000003227], [0.16850399999998444, 0.16851900000000342], [0.16862400000002253, 0.16863399999999729], [0.16866299999998091, 0.16867200000001503], [0.17494299999998475, 0.17500300000000379], [0.21158600000001115, 0.21159399999999096], [0.21166499999998223, 0.21167700000000877], [0.21171400000002905, 0.21172200000000885], [0.21175800000003164, 0.21176700000000892], [0.21811400000001413, 0.218133000000023], [0.21816799999999148, 0.2181770000000256], [0.22475700000001098, 0.22477100000003247], [0.25516199999998435, 0.25522300000000087], [0.2616310000000226, 0.26170400000000882], [0.26825400000001309, 0.26838900000001331], [0.27488599999998087, 0.27497499999998354], [0.27508999999997741, 0.27510100000000648], [0.27516700000001038, 0.27518100000003187], [0.2752060000000256, 0.27521600000000035], [0.27524499999998397, 0.27525500000001557], [0.2752879999999891, 0.27529500000002827], [0.27827700000000277, 0.27832899999998517], [11.696487999999988, 11.696515000000034], [11.696655000000021, 11.696666999999991], [11.696709999999996, 11.696721000000025], [11.697124000000031, 11.697142999999983], [11.697179000000006, 11.69719200000003], [11.697239000000025, 11.697248999999999], [11.698236000000009, 11.698249000000033], [11.698298000000023, 11.69831099999999], [11.704740000000015, 11.704754999999977], [11.711427000000015, 11.711445000000026], [11.718269000000021, 11.718289000000027], [11.718367000000001, 11.718380000000025], [11.768402999999978, 11.768440999999996], [11.774929999999983, 11.774984000000018], [11.778618999999992, 11.778646999999978], [11.778670000000034, 11.778679000000011], [11.778705000000002, 11.778715000000034], [11.784911000000022, 11.784972999999979], [11.789705000000026, 11.789737000000002], [11.789783999999997, 11.789797000000021], [11.78983199999999, 11.789842000000021], [11.79157600000002, 11.791607999999997], [11.791671000000008, 11.791680999999983], [11.791708000000028, 11.791717000000006]], \"2\": [[0.3281650000000127, 0.32818200000002662], [0.33474100000000817, 0.33475500000002967], [0.34142200000002276, 0.34143199999999752], [0.46910900000000311, 0.46913100000000441], [0.46916099999998551, 0.46917300000001205], [0.4692009999999982, 0.4692110000000298], [0.47142999999999802, 0.47144200000002456], [0.47148199999998042, 0.47149100000001454], [0.47152299999999059, 0.47153400000001966], [0.47809599999999364, 0.47811100000001261], [0.47819099999998116, 0.47820200000001023], [0.4847480000000246, 0.48475899999999683], [2.2584750000000327, 2.2585809999999924], [2.2647719999999936, 2.2647890000000075], [2.2683640000000196, 2.2683759999999893], [2.2684070000000247, 2.2684169999999995], [2.2684469999999806, 2.2684550000000172], [2.2714199999999778, 2.2714330000000018], [2.2714629999999829, 2.271474000000012], [2.2715049999999906, 2.2715140000000247], [2.278096000000005, 2.2781069999999772], [2.2781499999999824, 2.2781590000000165], [2.2847479999999791, 2.2847590000000082], [2.2965869999999882, 2.2965990000000147], [2.2966329999999857, 2.2966499999999996], [2.2966809999999782, 2.2966940000000022], [2.2967219999999884, 2.2967310000000225], [2.2980860000000121, 2.2980929999999944], [2.3014509999999859, 2.3014590000000226], [2.3080760000000282, 2.3080850000000055], [2.3129170000000272, 2.3130330000000185], [2.3130620000000022, 2.3130820000000085], [2.3132489999999848, 2.3132630000000063], [2.3134350000000268, 2.3134440000000041], [2.314768000000015, 2.3147789999999873], [2.3148090000000252, 2.3148180000000025], [2.3148449999999912, 2.3148530000000278], [2.3186680000000024, 2.3186870000000113], [2.3247789999999782, 2.3247910000000047], [2.3248199999999883, 2.3248300000000199], [2.3248570000000086, 2.3248649999999884], [2.3314189999999826, 2.3314300000000117], [2.3314609999999902, 2.3314700000000244], [2.3380819999999858, 2.3380930000000149], [2.9991959999999835, 2.9992070000000126], [2.9992349999999988, 2.9992510000000152], [2.9992839999999887, 2.9992970000000128], [2.9993319999999812, 2.9993420000000128], [3.0014189999999985, 3.0014280000000326], [3.0014719999999784, 3.0014810000000125], [3.0015109999999936, 3.0015200000000277], [3.0081069999999954, 3.0081150000000321], [3.0081519999999955, 3.0081579999999803], [3.0147440000000074, 3.0147519999999872], [3.0214090000000056, 3.0214149999999904], [5.469190000000026, 5.4692009999999982], [5.4692259999999919, 5.4692430000000058], [5.469272999999987, 5.469284000000016], [5.4693120000000022, 5.4693220000000338], [5.4748579999999833, 5.4748670000000175], [5.4814170000000217, 5.481427999999994], [6.5592720000000213, 6.559283999999991], [6.5593119999999772, 6.5593279999999936], [6.559359000000029, 6.5593719999999962], [6.5594009999999798, 6.5594110000000114], [6.5614219999999932, 6.5614290000000324], [6.5614709999999832, 6.5614800000000173], [6.5615010000000211, 6.561507000000006], [6.56811399999998, 6.5681260000000066], [7.6781460000000266, 7.6781619999999862], [7.6847480000000132, 7.6847650000000272], [7.6914189999999962, 7.6914300000000253], [8.0218300000000227, 8.0219109999999887], [8.0281019999999899, 8.0281200000000013], [8.0347340000000145, 8.0347459999999842], [8.597611000000029, 8.5976340000000278], [8.5976630000000114, 8.5976749999999811], [8.597705000000019, 8.5977159999999913], [8.5980890000000159, 8.5980999999999881], [8.5981390000000033, 8.5981489999999781], [8.5981879999999933, 8.5981970000000274], [8.6014430000000175, 8.6014559999999847], [8.6015130000000113, 8.6015219999999886], [8.6080759999999827, 8.6080830000000219], [10.469315999999992, 10.469328000000019], [10.469353000000012, 10.469368000000031], [10.469390000000033, 10.469402000000002], [10.469439000000023, 10.469449999999995], [10.471496999999999, 10.471507000000031], [10.471531000000027, 10.471539000000007], [10.471597000000031, 10.471607000000006], [10.474748000000034, 10.474757000000011], [10.481417000000022, 10.481425000000002], [11.428476999999987, 11.428567999999984], [11.434775000000002, 11.434791000000018], [11.441423999999984, 11.441433000000018], [11.494823999999994, 11.494842000000006], [11.49741499999999, 11.497434999999996], [11.497475000000009, 11.497484999999983], [11.49750499999999, 11.497513000000026], [11.497563000000014, 11.497573999999986], [11.497588000000007, 11.497596999999985], [11.498106000000007, 11.498120000000029], [11.498132999999996, 11.49814200000003], [11.498199999999997, 11.498219000000006], [11.499250000000018, 11.499263999999982], [11.501756999999998, 11.501770000000022], [11.501919999999984, 11.501935000000003], [11.502020000000016, 11.502030999999988]], \"3\": [[0.2848549999999932, 0.28488199999998187], [0.28842100000002802, 0.28843899999998257], [0.28848299999998517, 0.28849000000002434], [0.28852200000000039, 0.28852799999998524], [0.28962100000001101, 0.28963600000002998], [0.28968400000002248, 0.28969299999999976], [0.28972299999998086, 0.28973000000002003], [0.29292200000003277, 0.29293599999999742], [0.29298000000000002, 0.2929889999999773], [0.29302100000001019, 0.29302799999999252], [0.29305900000002794, 0.29306700000000774], [0.29311100000001034, 0.29312199999998256], [0.29480000000000928, 0.29480899999998655], [0.29484200000001692, 0.2948509999999942], [0.29487499999999045, 0.29488100000003215], [0.29539599999998245, 0.29540700000001152], [0.29547300000001542, 0.29548299999999017], [0.29557699999998022, 0.29558800000000929], [0.29808300000001964, 0.29809099999999944], [0.29812400000002981, 0.29813799999999446], [0.29824700000000348, 0.29825399999998581], [0.2983159999999998, 0.2983260000000314], [0.30141700000001492, 0.3014259999999922], [0.30146300000001247, 0.30147099999999227], [0.30150100000003022, 0.30150900000001002], [0.30156800000003159, 0.30157900000000382], [0.30160499999999502, 0.30161400000002914], [0.30444099999999708, 0.30445300000002362], [0.30453899999997702, 0.30454800000001114], [0.30458199999998214, 0.30459000000001879], [0.30525299999999334, 0.30526700000001483], [0.30535000000003265, 0.30536100000000488], [0.30538100000001123, 0.30538899999999103], [0.30544100000003027, 0.30545100000000502], [0.30547100000001137, 0.30547899999999117], [0.30846900000000232, 0.3084800000000314], [0.30855100000002267, 0.3085619999999949], [0.30857600000001639, 0.30858399999999619], [0.30863299999998617, 0.30864400000001524], [0.30865699999998242, 0.30866500000001906], [0.30939899999998488, 0.3094120000000089], [0.30953199999999015, 0.30955000000000155], [0.31474000000002889, 0.31475199999999859], [0.32140199999997776, 0.32141699999999673], [2.298150000000021, 2.2981570000000033], [2.2981920000000287, 2.2982000000000085], [2.3190630000000283, 2.3190789999999879], [2.321706000000006, 2.3217200000000275], [2.3217319999999972, 2.3217410000000314], [2.3217849999999771, 2.3217970000000037], [5.4717899999999986, 5.4718000000000302], [5.4747810000000072, 5.4747940000000312], [6.5681769999999915, 6.5681850000000281], [6.5747440000000097, 6.5747570000000337], [7.6718240000000151, 7.6718660000000227], [11.49202200000002, 11.492102999999986], [11.49939599999999, 11.499409000000014], [11.501560999999981, 11.501576999999997], [11.502074999999991, 11.502089000000012], [11.502158000000009, 11.502168999999981], [11.502198000000021, 11.502206999999999], [11.502226000000007, 11.502234999999985], [11.502264000000025, 11.502275999999995], [11.50231500000001, 11.502323999999987], [11.502512000000024, 11.502527999999984], [11.504807000000028, 11.504818999999998], [11.504839000000004, 11.504847999999981], [11.504880000000014, 11.504889999999989], [11.504903000000013, 11.50491199999999], [11.504959999999983, 11.504971000000012], [11.55521600000003, 11.55526500000002], [11.556704000000025, 11.556720999999982], [11.556806999999992, 11.556820000000016], [11.55684100000002, 11.556850999999995], [11.560744, 11.560757000000024], [11.560977999999977, 11.560988000000009], [11.561042999999984, 11.561054000000013], [11.564809000000025, 11.564820999999995], [11.565909000000033, 11.565923999999995], [11.566149999999993, 11.566163000000017], [11.566219999999987, 11.566232000000014], [11.566270000000031, 11.566281000000004], [11.566319000000021, 11.566328999999996], [11.568230000000028, 11.568241999999998], [11.568350000000009, 11.568361999999979], [11.568411000000026, 11.568421999999998], [11.568457000000024, 11.568466000000001], [11.568517999999983, 11.568528000000015], [11.571567000000016, 11.571579999999983], [11.57793300000003, 11.577945], [11.578028000000018, 11.578078000000005], [11.578129999999987, 11.578141000000016], [11.57816200000002, 11.578170999999998], [11.578281000000004, 11.578290999999979], [11.588076000000001, 11.588086000000033], [11.588765000000024, 11.588780999999983], [11.588868999999988, 11.588881000000015], [11.588893999999982, 11.588902000000019], [11.591460999999981, 11.591490000000022], [11.591617999999983, 11.591631000000007], [11.591647000000023, 11.591655000000003], [11.594830999999999, 11.594885000000033], [11.594943000000001, 11.594955000000027], [11.59830599999998, 11.598363000000006], [11.598659999999995, 11.598677000000009], [11.598698000000013, 11.598708999999985], [11.598758000000032, 11.598770999999999], [11.600371999999993, 11.60038400000002], [11.600457000000006, 11.600467999999978], [11.600481000000002, 11.600491000000034], [11.601540999999997, 11.601558000000011], [11.601611999999989, 11.601624000000015], [11.601644000000022, 11.601655999999991], [11.601696000000004, 11.601705999999979], [11.601741000000004, 11.601749999999981], [11.602032000000008, 11.602045000000032], [11.602936, 11.602957000000004], [11.602968000000033, 11.602976000000012], [11.603959000000032, 11.603977999999984], [11.604062999999996, 11.604074000000026], [11.605981999999983, 11.605995000000007], [11.606083000000012, 11.606093999999985], [11.60612900000001, 11.60613699999999], [11.60617000000002, 11.606178999999997], [11.60621100000003, 11.60621900000001], [11.606667000000016, 11.606678999999986], [11.606775000000027, 11.606786], [11.606921999999997, 11.606935000000021], [11.606967999999995, 11.606977000000029], [11.607058999999992, 11.607072000000016], [11.608287000000018, 11.608297999999991], [11.608388999999988, 11.608401000000015], [11.608434999999986, 11.60844400000002], [11.608491000000015, 11.608503999999982], [11.608524999999986, 11.60853400000002], [11.614754000000005, 11.61476399999998], [11.624910999999997, 11.624923000000024], [11.624932000000001, 11.62494300000003], [11.624989000000028, 11.625000999999997], [11.631407000000024, 11.631416000000002], [11.664850999999999, 11.664892000000009], [11.66816799999998, 11.668185999999992], [11.66835100000003, 11.668363999999997], [11.668398000000025, 11.668407000000002], [11.67256900000001, 11.672584000000029], [11.678149000000019, 11.678160999999989], [11.684747000000016, 11.684757999999988], [11.688531000000012, 11.688540999999987], [11.688609999999983, 11.688617000000022], [11.688648000000001, 11.688654999999983], [11.688688000000013, 11.688693999999998], [11.688727000000029, 11.688733000000013], [11.69144, 11.691461000000004], [11.69148899999999, 11.691498000000024], [11.691552999999999, 11.691559999999981], [11.691596000000004, 11.691602999999986], [11.691634000000022, 11.691640000000007]]}, \"adbd-4784\": {\"0\": [[11.753216000000009, 11.754892999999981]]}, \"adbd-4785\": {\"0\": [[11.764443000000028, 11.76466099999999]]}, \"busybox-4768\": {\"0\": [[0.29921200000001136, 0.30021599999997761]]}, \"adbd-4780\": {\"0\": [[11.661220000000014, 11.668170000000032]]}, \"adbd-4781\": {\"0\": [[11.668170000000032, 11.668379000000016]]}, \"task0-4770\": {\"0\": [[0.30892699999998285, 0.30894000000000688], [0.30912999999998192, 0.30916899999999714]], \"1\": [[0.30950899999999137, 0.30953499999998257], [0.30954600000001165, 0.30987900000002355], [0.31017300000002024, 0.3105419999999981], [0.31066800000002104, 0.31472100000002001], [0.32805300000001125, 0.33471300000002202], [0.34806100000002971, 0.35471599999999626], [0.36804899999998497, 0.37472200000001976], [0.38804900000002363, 0.3947170000000142], [0.40804900000000544, 0.41471200000000863], [0.42138499999998658, 0.42805500000002894], [0.43471499999998287, 0.44138700000002018], [0.4480530000000158, 0.45471500000002152], [0.46138799999999947, 0.46804600000001528], [0.47471699999999828, 0.47806100000002516], [0.47811400000000503, 0.48471599999999171], [0.49138700000003155, 0.49805300000002717], [0.50471700000002784, 0.51138900000000831], [0.51805100000001403, 0.52471700000000965], [0.53142200000002049, 0.53804999999999836], [0.54471799999998893, 0.5513880000000313], [0.55805500000002439, 0.56471800000002759], [0.57138800000001311, 0.5780510000000163], [0.58471700000001192, 0.59138799999999492], [0.59805299999999306, 0.60471699999999373], [0.61138800000003357, 0.61804999999998245], [0.62471700000003239, 0.63138800000001538], [0.6380500000000211, 0.64471800000001167], [0.65138799999999719, 0.65805000000000291], [0.66471699999999601, 0.671387999999979], [0.6780509999999822, 0.68471900000002961], [0.69138700000002018, 0.69805400000001327], [0.70471700000001647, 0.71138700000000199], [0.71805000000000518, 0.72471699999999828], [0.7313869999999838, 0.73805099999998447], [0.74471799999997756, 0.75138800000001993], [0.75805000000002565, 0.76471700000001874], [0.77138800000000174, 0.77805100000000493], [0.78471700000000055, 0.79138699999998607], [0.79805399999997917, 0.80471799999997984], [0.8113840000000323, 0.8180510000000254], [0.82471700000002102, 0.83138700000000654], [0.83805100000000721, 0.8447180000000003], [0.85138699999998835, 0.85804999999999154], [0.86471699999998464, 0.87138900000002195], [0.87805100000002767, 0.88471700000002329], [0.89138700000000881, 0.89805300000000443], [0.9047170000000051, 0.9113879999999881], [0.91804999999999382, 0.92471699999998691], [0.93142199999999775, 0.93805000000003247], [0.94471700000002556, 0.95138800000000856], [0.95805000000001428, 0.96471700000000737], [0.97138799999999037, 0.97805099999999356], [0.98471699999998918, 0.99138700000003155], [0.99805200000002969, 1.0047170000000278], [1.0113870000000134, 1.0180500000000166], [1.0247160000000122, 1.0313859999999977], [1.0380499999999984, 1.0447169999999915], [1.0513870000000338, 1.0580509999999776], [1.0647170000000301, 1.0713880000000131], [1.0780530000000113, 1.0847190000000069], [1.0913869999999974, 1.0980529999999931], [1.1047169999999937, 1.1113869999999793], [1.1180499999999824, 1.1247170000000324], [1.1313860000000204, 1.1380500000000211], [1.1447160000000167, 1.1513899999999921], [1.1580510000000004, 1.164716999999996], [1.171387999999979, 1.1780469999999923], [1.1847169999999778, 1.1913870000000202], [1.1980510000000208, 1.204716000000019], [1.2113860000000045, 1.2180500000000052], [1.2247169999999983, 1.2313869999999838], [1.2380509999999845, 1.2447169999999801], [1.2513880000000199, 1.2580500000000256], [1.2647160000000213, 1.2713870000000043], [1.2780510000000049, 1.2847170000000006], [1.2913869999999861, 1.2980550000000335], [1.3047169999999824, 1.3113860000000273], [1.3180500000000279, 1.324719000000016], [1.3313860000000091, 1.3380549999999971], [1.3447170000000028, 1.3513869999999883], [1.358050999999989, 1.3647179999999821], [1.371387000000027, 1.3780510000000277], [1.3847170000000233, 1.3913870000000088], [1.3980530000000044, 1.4047170000000051], [1.4113879999999881, 1.4180499999999938], [1.4247169999999869, 1.4313870000000293], [1.4380500000000325, 1.4447170000000256], [1.4513870000000111, 1.4580520000000092], [1.4647170000000074, 1.4713879999999904], [1.4780509999999936, 1.4847189999999841], [1.4913870000000315, 1.4980530000000272], [1.5047170000000278, 1.5113870000000134], [1.5180500000000166, 1.5247130000000197], [1.5313869999999952, 1.5380480000000034], [1.5447149999999965, 1.5513870000000338], [1.5580479999999852, 1.5647139999999808], [1.5713870000000156, 1.5780490000000214], [1.584715000000017, 1.5913869999999974], [1.598056999999983, 1.6047140000000013], [1.6113869999999793, 1.618048999999985], [1.6247139999999831, 1.6313870000000179], [1.6380490000000236, 1.6447160000000167], [1.6513869999999997, 1.658048000000008], [1.6647140000000036, 1.6713869999999815], [1.6780489999999872, 1.6847139999999854], [1.6913890000000151, 1.6980540000000133], [1.704714000000024, 1.7113879999999995], [1.7180470000000128, 1.7247189999999932], [1.7313889999999788, 1.738049999999987], [1.7447159999999826, 1.7513870000000225], [1.7580510000000231, 1.7647160000000213], [1.7713870000000043, 1.7780510000000049], [1.7847160000000031, 1.7913869999999861], [1.7980519999999842, 1.8047169999999824], [1.8113870000000247, 1.8180469999999787], [1.8247180000000185, 1.831388000000004], [1.8380640000000312, 1.8447140000000104], [1.8513859999999909, 1.8580560000000332], [1.8647139999999922, 1.8713880000000245], [1.8780510000000277, 1.8847180000000208], [1.8913880000000063, 1.8980540000000019], [1.9047170000000051, 1.9113879999999881], [1.9180499999999938, 1.9247179999999844], [1.9313870000000293, 1.9380500000000325], [1.9447170000000256, 1.9513880000000086], [1.9580500000000143, 1.9647170000000074], [1.9713859999999954, 1.9780499999999961], [1.9847169999999892, 1.9913870000000315], [1.9980530000000272, 2.0047180000000253], [2.0113880000000108, 2.0180500000000166], [2.0247170000000096, 2.0313869999999952], [2.0380499999999984, 2.0447169999999915], [2.0513870000000338, 2.0580499999999802], [2.0647170000000301, 2.0713870000000156], [2.0780500000000188, 2.0847170000000119], [2.0913869999999974, 2.0980529999999931], [2.1047169999999937, 2.1113869999999793], [2.1180540000000292, 2.1247170000000324], [2.1313870000000179, 2.1380500000000211], [2.1447180000000117, 2.1513869999999997], [2.1580500000000029, 2.164716999999996], [2.171387999999979, 2.1780469999999923], [2.1847190000000296, 2.1913870000000202], [2.1980540000000133, 2.2047170000000165], [2.211387000000002, 2.2180500000000052], [2.2247169999999983, 2.2313859999999863], [2.238049999999987, 2.2447179999999776], [2.2513880000000199, 2.258070000000032], [2.2647140000000263, 2.2713820000000169], [2.2780480000000125, 2.2813970000000268], [2.2880519999999933, 2.2948240000000055], [2.3013829999999871, 2.3080479999999852], [2.3147220000000175, 2.3214030000000321], [2.3280480000000239, 2.334715000000017], [2.3413879999999949, 2.3480559999999855], [2.3547149999999988, 2.361389000000031], [2.3680479999999875, 2.3747210000000223], [2.3813870000000179, 2.3880500000000211], [2.3947170000000142, 2.4013869999999997], [2.4080510000000004, 2.414716999999996], [2.4213869999999815, 2.4280509999999822], [2.4347169999999778, 2.4413880000000177], [2.4480530000000158, 2.4547170000000165], [2.461387000000002, 2.46805599999999], [2.4747179999999958, 2.4813819999999964], [2.4880469999999946, 2.4947129999999902], [2.5013850000000275, 2.5080580000000054], [2.5147150000000238, 2.5213850000000093], [2.5280480000000125, 2.5347150000000056], [2.5413849999999911, 2.5480519999999842], [2.5547149999999874, 2.5613850000000298], [2.5680490000000304, 2.5747210000000109], [2.5813840000000141, 2.5880490000000123], [2.5947150000000079, 2.6013849999999934], [2.608050999999989, 2.6147149999999897], [2.6213850000000321, 2.6280479999999784], [2.6347150000000283, 2.6413870000000088], [2.6480510000000095, 2.6547150000000101], [2.6613849999999957, 2.6680489999999963], [2.6747199999999793, 2.6813860000000318], [2.6880479999999807, 2.6947150000000306], [2.7013850000000161, 2.7080480000000193], [2.7147170000000074, 2.7213840000000005], [2.7280480000000011, 2.7347149999999942], [2.7413859999999772, 2.7480510000000322], [2.7547150000000329, 2.7613850000000184], [2.7680520000000115, 2.7747170000000096], [2.7813850000000002, 2.7880480000000034], [2.7947149999999965, 2.8013859999999795], [2.8080479999999852, 2.8147119999999859], [2.8213800000000333, 2.8280510000000163], [2.8347160000000144, 2.8413879999999949], [2.8480529999999931, 2.8547169999999937], [2.8613869999999793, 2.8680509999999799], [2.8747200000000248, 2.8813880000000154], [2.8880500000000211, 2.8947170000000142], [2.9013879999999972, 2.9080500000000029], [2.914716999999996, 2.9213869999999815], [2.9280499999999847, 2.9347169999999778], [2.9413870000000202, 2.9480530000000158], [2.954716000000019, 2.961387000000002], [2.968057999999985, 2.9747239999999806], [2.9813859999999863, 2.988049999999987], [2.9947149999999851, 3.0013870000000225], [3.0080480000000307, 3.0147140000000263], [3.0213830000000144, 3.0280839999999785], [3.0347170000000006, 3.0413869999999861], [3.0480539999999792, 3.0547169999999824], [3.0613860000000273, 3.0680510000000254], [3.0747210000000109, 3.0813870000000065], [3.0880480000000148, 3.0947140000000104], [3.1013869999999883, 3.1080479999999966], [3.1147139999999922, 3.121389000000022], [3.1280479999999784, 3.1347140000000309], [3.1413860000000113, 3.1480540000000019], [3.1547140000000127, 3.1613859999999931], [3.1680470000000014, 3.174714999999992], [3.1813799999999901, 3.1880469999999832], [3.1947140000000331, 3.2013860000000136], [3.2080470000000219, 3.2147140000000149], [3.2213869999999929, 3.2280480000000011], [3.2347139999999968, 3.241388000000029], [3.2480530000000272, 3.2547139999999786], [3.2613810000000285, 3.2680490000000191], [3.2747190000000046, 3.2814089999999965], [3.2880569999999807, 3.2947169999999915], [3.3013859999999795, 3.3080509999999776], [3.3147170000000301, 3.3213890000000106], [3.3280510000000163, 3.3347180000000094], [3.3413869999999974, 3.3480519999999956], [3.3547169999999937, 3.3613869999999793], [3.3680499999999824, 3.3747190000000273], [3.3813860000000204, 3.3880480000000261], [3.3947150000000192, 3.4013869999999997], [3.408048000000008, 3.4147140000000036], [3.4213869999999815, 3.4280479999999898], [3.4347139999999854, 3.4413870000000202], [3.4480520000000183, 3.4547150000000215], [3.461387000000002, 3.4680490000000077], [3.4747189999999932, 3.4813859999999863], [3.488047999999992, 3.4947159999999826], [3.5013870000000225, 3.5080480000000307], [3.5147140000000263, 3.5213870000000043], [3.5280480000000125, 3.5347140000000081], [3.5413859999999886, 3.5480580000000259], [3.5547139999999899, 3.5613870000000247], [3.568048000000033, 3.5747200000000134], [3.5813870000000065, 3.5880480000000148], [3.5947150000000079, 3.6013879999999858], [3.6080479999999966, 3.6147139999999922], [3.621387000000027, 3.6280479999999784], [3.6347160000000258, 3.6413870000000088], [3.648052000000007, 3.6547140000000127], [3.6613859999999931, 3.6680479999999989], [3.6747179999999844, 3.6813870000000293], [3.6880479999999807, 3.6947150000000306], [3.7013860000000136, 3.7080480000000193], [3.7147140000000149, 3.7213859999999954], [3.7280480000000011, 3.7347139999999968], [3.7413859999999772, 3.7480520000000297], [3.7547139999999786, 3.7613850000000184], [3.7680470000000241, 3.7747170000000096], [3.7813869999999952, 3.7880490000000009], [3.794713999999999, 3.8013859999999795], [3.8080560000000219, 3.8147139999999808], [3.8213800000000333, 3.8280530000000113], [3.8347140000000195, 3.8413869999999974], [3.8480529999999931, 3.8547140000000013], [3.8613859999999818, 3.868048999999985], [3.8747180000000299, 3.8813870000000179], [3.8880480000000261, 3.8947140000000218], [3.9013860000000022, 3.9080470000000105], [3.9147150000000011, 3.9213849999999866], [3.9280469999999923, 3.9347139999999854], [3.9413850000000252, 3.9480530000000158], [3.954714000000024, 3.961385000000007], [3.9680470000000128, 3.9747189999999932], [3.9813849999999888, 3.9880469999999946], [3.9947139999999877, 4.001386000000025], [4.0080470000000332, 4.0147140000000263], [4.0213860000000068, 4.0280480000000125], [4.0347140000000081, 4.0413859999999886], [4.0480519999999842, 4.0547129999999925], [4.0613860000000273, 4.0680520000000229], [4.0747180000000185, 4.0813850000000116], [4.0880470000000173, 4.0947140000000104], [4.1013859999999909, 4.1080469999999991], [4.1147139999999922, 4.1213860000000295], [4.1280469999999809, 4.1347150000000283], [4.1413860000000113, 4.1480549999999994], [4.1547140000000127, 4.1613859999999931], [4.1680470000000014, 4.1747179999999844], [4.1813799999999901, 4.1880469999999832], [4.1947140000000331, 4.2013850000000161], [4.2080470000000219, 4.2147140000000149], [4.2213859999999954, 4.2280470000000037], [4.2347139999999968, 4.2413849999999798], [4.2480520000000297, 4.2547129999999811], [4.2613810000000285, 4.2680500000000166], [4.2747180000000071, 4.2813850000000002], [4.2880470000000059, 4.2947149999999965], [4.3013859999999795, 4.3080479999999852], [4.3147129999999834, 4.3213860000000182], [4.3280540000000087, 4.3347140000000195], [4.3413869999999974, 4.3480519999999956], [4.3547140000000013, 4.3613880000000336], [4.3680479999999875, 4.3747180000000299], [4.3813860000000204, 4.3880460000000312], [4.3947150000000192, 4.4013860000000022], [4.408048000000008, 4.4147140000000036], [4.4213869999999815, 4.4280479999999898], [4.4347139999999854, 4.4413870000000202], [4.4480530000000158, 4.454714000000024], [4.4613860000000045, 4.4680480000000102], [4.4747179999999958, 4.4813859999999863], [4.4880489999999895, 4.4947149999999851], [4.5013870000000225, 4.5047270000000026], [4.50482599999998, 4.5048649999999952], [4.5049070000000029, 4.5049490000000105], [4.5049980000000005, 4.5050380000000132], [4.5051799999999957, 4.5113840000000209], [4.5180470000000241, 4.5247140000000172], [4.5313840000000027, 4.5380470000000059], [4.5447149999999965, 4.5513839999999846], [4.5580479999999852, 4.5647139999999808], [4.5713850000000207, 4.5780500000000188], [4.5847140000000195, 4.5913850000000025], [4.5980500000000006, 4.6047140000000013], [4.6113849999999843, 4.6180499999999824], [4.6247139999999831, 4.631385000000023], [4.6380470000000287, 4.6447140000000218], [4.6513840000000073, 4.6580470000000105], [4.6647140000000036, 4.6713849999999866], [4.6780469999999923, 4.6847139999999854], [4.6913860000000227, 4.6980500000000234], [4.704714000000024, 4.711385000000007], [4.7180480000000102, 4.7247169999999983], [4.7313849999999888, 4.7380469999999946], [4.7447139999999877, 4.75138400000003], [4.7580470000000332, 4.7647150000000238], [4.7713850000000093, 4.778047000000015], [4.7847130000000107, 4.7913849999999911], [4.7980499999999893, 4.8047159999999849], [4.8113860000000273, 4.8180439999999862], [4.8247109999999793, 4.8313850000000116], [4.8380470000000173, 4.8447140000000104], [4.8513849999999934, 4.8580469999999991], [4.8647139999999922, 4.8713799999999878], [4.8780469999999809, 4.8847140000000309], [4.8913840000000164, 4.898050000000012], [4.9047140000000127, 4.9113849999999957], [4.9180499999999938, 4.9247139999999945], [4.93138399999998, 4.9380469999999832], [4.9447140000000331, 4.9513840000000187], [4.9580470000000219, 4.9647140000000149], [4.9713849999999979, 4.9780529999999885], [4.9847129999999993, 4.9913849999999798], [4.9980510000000322, 5.0047150000000329], [5.0113870000000134, 5.0180490000000191], [5.0247150000000147, 5.0313850000000002], [5.0380460000000085, 5.0447130000000016], [5.0513819999999896, 5.0580479999999852], [5.0647149999999783, 5.0713850000000207], [5.0780480000000239, 5.0847140000000195], [5.091384000000005, 5.0980500000000006], [5.1047149999999988, 5.1113859999999818], [5.1180479999999875, 5.1247149999999806], [5.131383000000028, 5.1380480000000261], [5.1447140000000218, 5.1513830000000098], [5.1580470000000105, 5.1647150000000011], [5.1713839999999891, 5.1780449999999973], [5.184710999999993, 5.1913850000000252], [5.1980500000000234, 5.204714000000024], [5.2113840000000096, 5.2180480000000102], [5.2247150000000033, 5.2313839999999914], [5.2380509999999845, 5.2447139999999877], [5.25138400000003, 5.2580480000000307], [5.2647150000000238, 5.2713840000000118], [5.2780480000000125, 5.2847140000000081], [5.2913839999999936, 5.2980499999999893], [5.3047139999999899, 5.3113850000000298], [5.318048000000033, 5.3247150000000261], [5.3313850000000116, 5.3380470000000173], [5.3447150000000079, 5.3513839999999959], [5.3580469999999991, 5.3647139999999922], [5.3713809999999853, 5.3780479999999784], [5.3847130000000334, 5.3913830000000189], [5.398050000000012, 5.4047140000000127], [5.4113839999999982, 5.4180489999999963], [5.4247139999999945, 5.4313860000000318], [5.4380469999999832, 5.4447129999999788], [5.4513840000000187, 5.4580470000000219], [5.4647140000000149, 5.4713849999999979], [5.4780470000000037, 5.4847179999999867], [5.4914489999999887, 5.4980580000000145], [5.5047170000000278, 5.5113860000000159], [5.5180500000000166, 5.5247160000000122], [5.5313859999999977, 5.5380499999999984], [5.544715999999994, 5.5513859999999795], [5.5580499999999802, 5.5647160000000326], [5.5713870000000156, 5.5780470000000264], [5.5847140000000195, 5.5913850000000025], [5.5980509999999981, 5.6047140000000013], [5.6113849999999843, 5.6180479999999875], [5.6247139999999831, 5.6313860000000204], [5.6380470000000287, 5.6447140000000218], [5.6513840000000073, 5.6580470000000105], [5.6647140000000036, 5.6713839999999891], [5.6780469999999923, 5.6847139999999854], [5.6913840000000278, 5.6980500000000234], [5.7047150000000215, 5.711385000000007], [5.7180470000000128, 5.7247140000000059], [5.7313839999999914, 5.7380469999999946], [5.7447139999999877, 5.75138400000003], [5.7580520000000206, 5.7647140000000263], [5.7713850000000093, 5.778047000000015], [5.7847140000000081, 5.7913849999999911], [5.7980499999999893, 5.8047139999999899], [5.8113860000000273, 5.8180469999999787], [5.8247109999999793, 5.8313860000000091], [5.8380470000000173, 5.8447140000000104], [5.8513869999999883, 5.8580469999999991], [5.8647139999999922, 5.8713829999999803], [5.8780469999999809, 5.8847150000000283], [5.8913850000000139, 5.898050000000012], [5.9047150000000101, 5.9113839999999982], [5.9180479999999989, 5.924714999999992], [5.93138399999998, 5.9380479999999807], [5.9447170000000256, 5.9513840000000187], [5.9580480000000193, 5.9647140000000149], [5.9713849999999979, 5.9780489999999986], [5.9847139999999968, 5.9913839999999823], [5.9980489999999804, 6.0047139999999786], [6.0113840000000209, 6.018051000000014], [6.0247130000000197, 6.0313850000000002], [6.0380470000000059, 6.044713999999999], [6.0513839999999846, 6.0580469999999877], [6.0647139999999808, 6.0713830000000257], [6.0780470000000264, 6.0847140000000195], [6.0913850000000025, 6.0980500000000006], [6.1047130000000038, 6.1113829999999894], [6.11804699999999, 6.1247139999999831], [6.131385000000023, 6.1380490000000236], [6.1447140000000218, 6.1513850000000048], [6.1580470000000105, 6.1647140000000036], [6.1713849999999866, 6.1780469999999923], [6.184710999999993, 6.1913850000000252], [6.1980500000000234, 6.204714000000024], [6.2113860000000045, 6.2180480000000102], [6.2247150000000033, 6.2313839999999914], [6.238047999999992, 6.2447129999999902], [6.2513830000000326, 6.2580480000000307], [6.2647140000000263, 6.2713840000000118], [6.2780510000000049, 6.2847140000000081], [6.2913849999999911, 6.2980509999999867], [6.3047139999999899, 6.3114009999999894], [6.3180449999999837, 6.3247289999999907], [6.3313840000000141, 6.3380470000000173], [6.3447130000000129, 6.3513859999999909], [6.3580479999999966, 6.3647149999999897], [6.3713839999999777, 6.3780490000000327], [6.3847150000000283, 6.3913850000000139], [6.398050000000012, 6.4047150000000101], [6.4113849999999957, 6.4180460000000039], [6.4247139999999945, 6.4313849999999775], [6.4380469999999832, 6.4447129999999788], [6.4513840000000187, 6.4580500000000143], [6.4647140000000149, 6.4713849999999979], [6.4780470000000037, 6.4847139999999968], [6.4913839999999823, 6.4980499999999779], [6.5047129999999811, 6.5113850000000184], [6.5180470000000241, 6.5247140000000172], [6.5313840000000027, 6.5380529999999908], [6.5447130000000016, 6.5513839999999846], [6.5581530000000043, 6.5647139999999808], [6.5713820000000283, 6.5780540000000087], [6.5847140000000195, 6.5913869999999974], [6.5980509999999981, 6.6047159999999963], [6.6113839999999868, 6.61804699999999], [6.6247139999999831, 6.6313840000000255], [6.6380470000000287, 6.6447140000000218], [6.6513830000000098, 6.6580470000000105], [6.6647140000000036, 6.6713849999999866], [6.6780469999999923, 6.6847129999999879], [6.6913840000000278, 6.6980500000000234], [6.704714000000024, 6.7113840000000096], [6.7180490000000077, 6.7247140000000059], [6.7313839999999914, 6.7380469999999946], [6.7447129999999902, 6.7513830000000326], [6.7580470000000332, 6.7647140000000263], [6.7713840000000118, 6.778047000000015], [6.7847130000000107, 6.7913839999999936], [6.7980529999999817, 6.8047139999999899], [6.811382999999978, 6.8180469999999787], [6.8247109999999793, 6.8313870000000065], [6.8380490000000123, 6.8447150000000079], [6.8513849999999934, 6.8580489999999941], [6.8647159999999872, 6.8713839999999777], [6.8780469999999809, 6.8847140000000309], [6.8913840000000164, 6.898050000000012], [6.9047140000000127, 6.9113839999999982], [6.9180470000000014, 6.9247139999999945], [6.9313849999999775, 6.9380469999999832], [6.9447140000000331, 6.9513840000000187], [6.9580470000000219, 6.9647140000000149], [6.9713869999999929, 6.9780480000000011], [6.9847129999999993, 6.9913839999999823], [6.9980499999999779, 7.0047160000000304], [7.0113840000000209, 7.0180470000000241], [7.0247140000000172, 7.0313840000000027], [7.0380490000000009, 7.0447130000000016], [7.0513829999999871, 7.058052000000032], [7.0647139999999808, 7.0713840000000232], [7.0780470000000264, 7.0847140000000195], [7.091384000000005, 7.0980509999999981], [7.1047140000000013, 7.1113829999999894], [7.1180479999999875, 7.1247139999999831], [7.131383000000028, 7.1380470000000287], [7.1447130000000243, 7.1513840000000073], [7.1580470000000105, 7.1647140000000036], [7.1713829999999916, 7.1780469999999923], [7.184710999999993, 7.1913860000000227], [7.1980520000000183, 7.204716000000019], [7.211385000000007, 7.2180510000000027], [7.2247160000000008, 7.2313849999999888], [7.2380489999999895, 7.2447159999999826], [7.251386000000025, 7.2580530000000181], [7.2647120000000314, 7.2713840000000118], [7.278047000000015, 7.2847130000000107], [7.2913849999999911, 7.2980499999999893], [7.3047139999999899, 7.3113850000000298], [7.3180530000000203, 7.3247140000000286], [7.3313840000000141, 7.3380470000000173], [7.3447140000000104, 7.3513829999999984], [7.3580469999999991, 7.3647139999999922], [7.3713819999999828, 7.3780469999999809], [7.3847130000000334, 7.3913840000000164], [7.3980559999999969, 7.4047160000000076], [7.4113839999999982, 7.4180470000000014], [7.4247139999999945, 7.4313829999999825], [7.4380479999999807, 7.4447140000000331], [7.4513850000000161, 7.4580480000000193], [7.4647140000000149, 7.4713840000000005], [7.4780480000000011, 7.4847209999999791], [7.4913870000000315, 7.4980510000000322], [7.5047139999999786, 7.5113840000000209], [7.5180480000000216, 7.5247180000000071], [7.5313830000000053, 7.5380470000000059], [7.5447149999999965, 7.5513839999999846], [7.5580479999999852, 7.5647139999999808], [7.5713850000000207, 7.5780550000000062], [7.5847140000000195, 7.5913830000000075], [7.5980480000000057, 7.6047130000000038], [7.6113829999999894, 7.6180459999999925], [7.6247129999999856, 7.6313810000000331], [7.6380460000000312, 7.6447130000000243], [7.6513820000000123, 7.6580470000000105], [7.6647140000000036, 7.6714259999999967], [7.6780479999999898, 7.684710999999993], [7.6913860000000227, 7.6980550000000108], [7.7047150000000215, 7.711387000000002], [7.7180460000000153, 7.7247150000000033], [7.7313839999999914, 7.7380469999999946], [7.7447139999999877, 7.7513830000000326], [7.7580470000000332, 7.7647130000000288], [7.7713840000000118, 7.7780460000000176], [7.7847130000000107, 7.7913839999999936], [7.7980499999999893, 7.8047159999999849], [7.8113840000000323, 7.8180459999999812], [7.8247109999999793, 7.8313780000000293], [7.8380510000000072, 7.8447130000000129], [7.8513829999999984, 7.8580469999999991], [7.8647139999999922, 7.8713809999999853], [7.8780469999999809, 7.8847140000000309], [7.8913840000000164, 7.898052000000007], [7.9047140000000127, 7.9113839999999982], [7.9180470000000014, 7.924714999999992], [7.9313849999999775, 7.9380479999999807], [7.9447129999999788, 7.9513840000000187], [7.9580480000000193, 7.9647140000000149], [7.9713840000000005, 7.9780470000000037], [7.9847129999999993, 7.9913829999999848], [7.9980520000000297, 8.0047139999999786], [8.0113840000000209, 8.0180450000000292], [8.0247170000000096, 8.0313820000000078], [8.0380539999999883, 8.044713999999999], [8.0513859999999795, 8.0580469999999877], [8.0647139999999808, 8.0713860000000182], [8.0780480000000239, 8.0847140000000195], [8.091384000000005, 8.0980739999999969], [8.1047140000000013, 8.1113829999999894], [8.11804699999999, 8.1247139999999831], [8.1313840000000255, 8.1380470000000287], [8.1447130000000243, 8.1513840000000073], [8.158048000000008, 8.1647140000000036], [8.1713839999999891, 8.1780479999999898], [8.1847099999999955, 8.1913850000000252], [8.1980520000000183, 8.2047190000000114], [8.2113860000000045, 8.2180490000000077], [8.2247160000000008, 8.2313859999999863], [8.2380489999999895, 8.2447159999999826], [8.251386000000025, 8.2580490000000282], [8.2647150000000238, 8.2713870000000043], [8.2780480000000125, 8.2847140000000081], [8.2913829999999962, 8.2980499999999893], [8.3047139999999899, 8.3113840000000323], [8.3180459999999812, 8.3247130000000311], [8.3313840000000141, 8.3380460000000198], [8.3447130000000129, 8.3513829999999984], [8.3580519999999865, 8.3647139999999922], [8.3713809999999853, 8.3780459999999835], [8.3847140000000309, 8.3913840000000164], [8.398050000000012, 8.4047140000000127], [8.4113830000000007, 8.4180479999999989], [8.4247139999999945, 8.4313860000000318], [8.4380469999999832, 8.4447129999999788], [8.4513830000000212, 8.4580470000000219], [8.4647140000000149, 8.4713840000000005], [8.4780460000000062, 8.4847129999999993], [8.4913859999999772, 8.4980499999999779], [8.5047139999999786, 8.5113860000000159], [8.5180470000000241, 8.5247130000000197], [8.5313840000000027, 8.5380460000000085], [8.5447130000000016, 8.5513829999999871], [8.5580459999999903, 8.5647129999999834], [8.5713840000000232, 8.5780460000000289], [8.584713000000022, 8.5913780000000202], [8.5980519999999956, 8.6047149999999988], [8.6113859999999818, 8.6180550000000267], [8.6247129999999856, 8.631385000000023], [8.6380460000000312, 8.6447130000000243], [8.6513860000000022, 8.658046000000013], [8.6647130000000061, 8.6713869999999815], [8.6780469999999923, 8.6847139999999854], [8.6913840000000278, 8.6980490000000259], [8.704714000000024, 8.711385000000007], [8.7180470000000128, 8.7247140000000059], [8.7313829999999939, 8.7380469999999946], [8.7447129999999902, 8.7513850000000275], [8.7580470000000332, 8.7647140000000263], [8.7713840000000118, 8.7780480000000125], [8.7847140000000081, 8.7913829999999962], [8.7980489999999918, 8.8047139999999899], [8.811382999999978, 8.818048000000033], [8.8247130000000311, 8.8313800000000242], [8.8380490000000123, 8.8447160000000054], [8.8513849999999934, 8.8580489999999941], [8.8647139999999922, 8.8713829999999803], [8.8780520000000251, 8.8847130000000334], [8.8913820000000214, 8.8980490000000145], [8.9047140000000127, 8.9113839999999982], [8.9180470000000014, 8.9247139999999945], [8.93138399999998, 8.9380469999999832], [8.9447129999999788, 8.9513840000000187], [8.9580470000000219, 8.9647140000000149], [8.9713840000000005, 8.9780480000000011], [8.9847139999999968, 8.9913839999999823], [8.9980489999999804, 9.0047160000000304], [9.0113850000000184, 9.0180470000000241], [9.0247150000000147, 9.0313840000000027], [9.0380470000000059, 9.044715999999994], [9.0513839999999846, 9.0580469999999877], [9.0647139999999808, 9.0713840000000232], [9.0780480000000239, 9.0847140000000195], [9.091384000000005, 9.0980500000000006], [9.1047140000000013, 9.1113819999999919], [9.11804699999999, 9.1247139999999831], [9.1313840000000255, 9.1380530000000135], [9.1447130000000243, 9.1513830000000098], [9.1580470000000105, 9.1647140000000036], [9.1713839999999891, 9.1780479999999898], [9.184710999999993, 9.1913860000000227], [9.1980500000000234, 9.2047150000000215], [9.2113860000000045, 9.2180490000000077], [9.2247150000000033, 9.2314220000000091], [9.2380489999999895, 9.2447159999999826], [9.251386000000025, 9.2580490000000282], [9.2647150000000238, 9.2713820000000169], [9.2780460000000176, 9.2814070000000015], [9.2880460000000085, 9.294713999999999], [9.3013859999999795, 9.3080459999999903], [9.3147460000000137, 9.31811399999998], [9.318128999999999, 9.3247180000000185], [9.3313830000000166, 9.3380480000000148], [9.3447140000000104, 9.3513849999999934], [9.3580469999999991, 9.3647139999999922], [9.3713809999999853, 9.3780459999999835], [9.3847150000000283, 9.3913840000000164], [9.3980629999999792, 9.4047130000000152], [9.4113830000000007, 9.4180460000000039], [9.424712999999997, 9.43138399999998], [9.4380459999999857, 9.4447129999999788], [9.4513830000000212, 9.4580480000000193], [9.4647130000000175, 9.4713840000000005], [9.4780460000000062, 9.4847129999999993], [9.4913849999999798, 9.4980499999999779], [9.5047129999999811, 9.5113840000000209], [9.5180480000000216, 9.5247140000000172], [9.5313830000000053, 9.5380490000000009], [9.5447130000000016, 9.5513829999999871], [9.5580469999999877, 9.5647129999999834], [9.5713840000000232, 9.5780460000000289], [9.5847140000000195, 9.5913830000000075], [9.5980490000000032, 9.6047130000000038], [9.6113829999999894, 9.61804699999999], [9.6247129999999856, 9.6313840000000255], [9.6380460000000312, 9.6447140000000218], [9.6513820000000123, 9.6580510000000004], [9.6647130000000061, 9.6713839999999891], [9.6780469999999923, 9.6847129999999879], [9.6913840000000278, 9.6980490000000259], [9.7047130000000266, 9.711385000000007], [9.7180480000000102, 9.7247130000000084], [9.7313829999999939, 9.7380459999999971], [9.7447129999999902, 9.7513830000000326], [9.7580459999999789, 9.7647140000000263], [9.7713840000000118, 9.778047000000015], [9.7847160000000031, 9.7913849999999911], [9.7980499999999893, 9.8047139999999899], [9.8113850000000298, 9.8180469999999787], [9.8247140000000286, 9.8313780000000293], [9.8380510000000072, 9.8447140000000104], [9.8513849999999934, 9.8580460000000016], [9.8647129999999947, 9.8713819999999828], [9.8780459999999835, 9.8847130000000334], [9.8913830000000189, 9.898050000000012], [9.9047130000000152, 9.9113839999999982], [9.9180529999999862, 9.9247139999999945], [9.9313829999999825, 9.9380479999999807], [9.9447129999999788, 9.9513830000000212], [9.9580460000000244, 9.9647130000000175], [9.971383000000003, 9.9780460000000062], [9.9847129999999993, 9.9913839999999823], [9.9980489999999804, 10.004713999999979], [10.011383000000023, 10.018046000000027], [10.02471300000002, 10.031384000000003], [10.038046000000008, 10.044713000000002], [10.051384999999982, 10.058046999999988], [10.064712999999983, 10.071384000000023], [10.078046000000029, 10.084713000000022], [10.091384000000005, 10.098049000000003], [10.104713000000004, 10.111383999999987], [10.11804699999999, 10.124712999999986], [10.131384000000025, 10.138046000000031], [10.144713000000024, 10.15138300000001], [10.158044000000018, 10.164713000000006], [10.171380999999997, 10.178050999999982], [10.18471199999999, 10.191382000000033], [10.198052000000018, 10.204715000000022], [10.211386000000005, 10.218049000000008], [10.224715000000003, 10.231384999999989], [10.238047999999992, 10.24471699999998], [10.251385000000028, 10.258048000000031], [10.264715000000024, 10.271386000000007], [10.278046000000018, 10.281400000000019], [10.288047000000006, 10.294713999999999], [10.301384999999982, 10.308050999999978], [10.314713999999981, 10.321383000000026], [10.328047000000026, 10.334714000000019], [10.341383000000008, 10.348050999999998], [10.354714000000001, 10.361383999999987], [10.36804699999999, 10.37471800000003], [10.38138600000002, 10.388048000000026], [10.394713000000024, 10.401386000000002], [10.408046000000013, 10.414713000000006], [10.421385999999984, 10.428045999999995], [10.434712999999988, 10.441386000000023], [10.448051000000021, 10.454713000000027], [10.461385000000007, 10.46804400000002], [10.474714000000006, 10.481380999999999], [10.488047999999992, 10.494715999999983], [10.50138400000003, 10.504729999999995], [10.504785000000027, 10.511385000000018], [10.518049000000019, 10.524715000000015], [10.531385999999998, 10.538048000000003], [10.544714999999997, 10.551383999999985], [10.558048999999983, 10.564719000000025], [10.571385000000021, 10.578046000000029], [10.584713000000022, 10.591384000000005], [10.598049000000003, 10.604714000000001], [10.611383999999987, 10.618045999999993], [10.624712999999986, 10.631384000000025], [10.638046000000031, 10.644713000000024], [10.65138300000001, 10.65804700000001], [10.664713000000006, 10.671383999999989], [10.678045999999995, 10.684712999999988], [10.69138300000003, 10.698056000000008], [10.704713000000027, 10.71138400000001], [10.718043000000023, 10.724710000000016], [10.731382999999994, 10.738046999999995], [10.74471299999999, 10.751383000000033], [10.758047000000033, 10.764713000000029], [10.771383000000014, 10.778046000000018], [10.784713000000011, 10.791383999999994], [10.798048999999992, 10.80471399999999], [10.811382999999978, 10.818046999999979], [10.824713000000031, 10.831378000000029], [10.838049000000012, 10.844713000000013], [10.851382000000001, 10.858046000000002], [10.864712999999995, 10.871380999999985], [10.878045999999983, 10.884711999999979], [10.891384000000016, 10.898049000000015], [10.904713000000015, 10.911383000000001], [10.918046000000004, 10.924712999999997], [10.931382999999983, 10.938045999999986], [10.944712999999979, 10.951383000000021], [10.958051000000012, 10.964715000000012], [10.971383000000003, 10.978046000000006], [10.984712999999999, 10.991383999999982], [10.99804899999998, 11.004712999999981], [11.011384000000021, 11.018046000000027], [11.02471300000002, 11.031383000000005], [11.038046000000008, 11.044713000000002], [11.05138199999999, 11.05804599999999], [11.064712999999983, 11.071382000000028], [11.078050000000019, 11.084713000000022], [11.091384000000005, 11.098049000000003], [11.104713000000004, 11.111381999999992], [11.11804699999999, 11.124712999999986], [11.131384000000025, 11.138047000000029], [11.144713000000024, 11.15138300000001], [11.15804700000001, 11.164713000000006], [11.171381999999994, 11.178046999999992], [11.184712999999988, 11.191376999999989], [11.198049000000026, 11.204713000000027], [11.21138400000001, 11.218051000000003], [11.224713000000008, 11.231381999999996], [11.238046999999995, 11.24471299999999], [11.251383000000033, 11.258048000000031], [11.26470999999998, 11.271384000000012], [11.278048000000013, 11.284713000000011], [11.291381999999999, 11.298048999999992], [11.304712999999992, 11.311377999999991], [11.318043999999986, 11.321397999999988], [11.321413000000007, 11.328048000000024], [11.334714000000019, 11.341408000000001], [11.348067000000015, 11.354715999999996], [11.361385999999982, 11.36805099999998], [11.374717000000032, 11.381384000000025], [11.388047000000029, 11.394714000000022], [11.401386000000002, 11.40804700000001], [11.414713000000006, 11.417941999999982], [11.424714999999992, 11.43138399999998], [11.438045999999986, 11.444718000000023], [11.451382000000024, 11.458049000000017], [11.464715000000012, 11.471384999999998], [11.478068000000007, 11.484713999999997], [11.491382999999985, 11.497168999999985], [11.497191999999984, 11.497340000000008]]}, \"kworker/0:1-33\": {\"0\": [[0.14487700000000814, 0.14491800000001831], [1.1481249999999932, 1.148145999999997], [1.3581100000000106, 1.3581240000000321], [2.2382220000000075, 2.2382880000000114], [2.2513940000000048, 2.2517510000000129], [2.2527620000000184, 2.2531230000000164], [2.2532580000000166, 2.2532990000000268], [2.253405999999984, 2.2534410000000094], [2.253577000000007, 2.2538569999999822], [2.2548689999999851, 2.2554910000000064], [2.256163000000015, 2.2561870000000113], [2.2661939999999845, 2.266255000000001], [2.2672660000000064, 2.2672900000000027], [2.2724010000000021, 2.2724099999999794], [2.2775199999999813, 2.277528000000018], [2.2826370000000225, 2.2826450000000023], [2.2877589999999941, 2.2877660000000333], [2.2928780000000302, 2.2965480000000298], [2.3080630000000042, 2.3138250000000085], [2.3180629999999951, 2.3181050000000027], [2.3184850000000097, 2.3187280000000214], [2.3614069999999856, 2.3614519999999857], [2.5714300000000208, 2.5714590000000044], [2.968687999999986, 2.9687000000000126], [2.9687749999999937, 2.9689750000000004], [2.9697709999999802, 2.9697760000000244], [2.9730470000000082, 2.9731140000000096], [3.5747690000000034, 3.5747989999999845], [3.7847550000000183, 3.7847659999999905], [3.8913939999999911, 3.8914120000000025], [4.2913970000000177, 4.2914279999999962], [4.294729000000018, 4.2947429999999827], [4.7880759999999896, 4.7881150000000048], [4.9980820000000108, 4.9981089999999995], [6.0014310000000251, 6.0014499999999771], [6.2114290000000096, 6.2114430000000311], [6.2947369999999978, 6.2947619999999915], [6.3051270000000272, 6.3065530000000081], [6.3066800000000285, 6.3067250000000286], [6.3068299999999908, 6.3068680000000086], [6.3069869999999923, 6.3070220000000177], [6.30717199999998, 6.3072109999999952], [6.3073630000000094, 6.3074080000000095], [6.3075370000000248, 6.3075749999999857], [6.3077190000000201, 6.3077640000000201], [6.3078980000000229, 6.3080080000000294], [6.3081230000000232, 6.3081859999999779], [6.3083230000000299, 6.3083639999999832], [6.3086099999999874, 6.3086729999999989], [6.3087919999999826, 6.3088529999999992], [6.3089919999999893, 6.3090250000000196], [6.3095380000000318, 6.3096570000000156], [6.3097230000000195, 6.3097650000000272], [6.3112980000000221, 6.3114640000000009], [6.3213870000000156, 6.3214140000000043], [6.3218390000000113, 6.3220039999999926], [6.3221060000000193, 6.3221439999999802], [6.3222460000000069, 6.322275999999988], [6.3223419999999919, 6.3223730000000273], [6.3225239999999872, 6.3225630000000024], [6.3227180000000089, 6.3227610000000141], [6.3228879999999776, 6.322923000000003], [6.3230690000000322, 6.323112999999978], [6.32325000000003, 6.3233539999999948], [7.2147289999999771, 7.2147689999999898], [7.4247379999999907, 7.4247649999999794], [8.428118999999981, 8.4281440000000316], [8.6381069999999909, 8.6381210000000124], [8.8847200000000157, 8.8847370000000296], [9.2913899999999785, 9.2914119999999798], [9.2947280000000205, 9.2947449999999776], [9.311396000000002, 9.3115109999999959], [9.3115339999999946, 9.3115490000000136], [9.3140680000000202, 9.3141509999999812], [9.3141770000000292, 9.3142250000000217], [9.3142680000000269, 9.3142900000000282], [9.3147500000000036, 9.3147769999999923], [9.3168880000000058, 9.3172900000000141], [9.3175049999999828, 9.317545999999993], [9.3176869999999781, 9.3177259999999933], [9.3178690000000302, 9.3179099999999835], [9.3180940000000305, 9.3181490000000053], [9.3182479999999828, 9.3182919999999854], [9.3184170000000108, 9.3184560000000261], [9.3185990000000061, 9.318649999999991], [9.3187810000000013, 9.3198940000000334], [9.6414040000000227, 9.6414429999999811], [9.8514040000000023, 9.8514349999999808], [10.854766999999981, 10.854787999999985], [11.064757999999983, 11.064769000000013], [11.294736, 11.294764999999984], [11.338060999999982, 11.338098000000002], [11.338518000000022, 11.338741000000027], [11.338846999999987, 11.338887], [11.338991000000021, 11.339023999999995], [11.339168000000029, 11.33920599999999], [11.339354000000014, 11.339394000000027], [11.339550000000031, 11.339600000000019], [11.33972399999999, 11.33976100000001], [11.339901999999995, 11.339955000000032], [11.340082999999993, 11.340175999999985], [11.41139400000003, 11.411417000000029], [11.417912999999999, 11.417943999999977], [11.491589000000033, 11.491626999999994], [11.499039999999979, 11.499067000000025], [11.501612000000023, 11.50165800000002], [11.605326999999988, 11.60539799999998]]}, \"busybox-4761\": {\"0\": [[0.1949730000000045, 0.19501900000000205], [0.1950729999999794, 0.19519700000000739], [0.19521400000002131, 0.19528200000002016], [0.19529499999998734, 0.19537200000002031], [0.19538399999999001, 0.1955960000000232], [0.19560999999998785, 0.19562100000001692], [0.19568400000002839, 0.19576100000000451], [0.19771900000000642, 0.19776999999999134]]}, \"busybox-4766\": {\"3\": [[0.28879599999999073, 0.28910300000001143], [0.28932300000002442, 0.28933000000000675], [0.28933899999998403, 0.28953300000000581]]}, \"rt-app-4771\": {\"1\": [[0.30888800000002448, 0.3089130000000182]]}, \"rt-app-4772\": {\"0\": [[0.30884000000003198, 0.30885799999998653]]}, \"rt-app-4773\": {\"0\": [[0.30916899999999714, 0.30921599999999216]]}, \"kworker/2:1-81\": {\"2\": [[11.334743000000003, 11.334769999999992], [11.338066000000026, 11.338081999999986]]}, \"adbd-4762\": {\"0\": [[0.25278100000002723, 0.25421499999998787]]}, \"adbd-4763\": {\"0\": [[0.26488200000000006, 0.26509500000003072]]}, \"adbd-4774\": {\"0\": [[11.553442000000018, 11.55517500000002]]}, \"sh-4777\": {\"0\": [[11.566102000000001, 11.567692000000022]], \"1\": [[11.57910099999998, 11.579716000000019], [11.579729999999984, 11.588629000000026], [11.602933000000007, 11.602960999999993]], \"2\": [[11.602983999999992, 11.603898000000015]]}, \"sh-4776\": {\"0\": [[11.567729999999983, 11.569338000000016], [11.577748999999983, 11.577791999999988]]}, \"OkHttp Connecti-4079\": {\"0\": [[8.018066000000033, 8.0192119999999818]]}, \"sh-4774\": {\"0\": [[11.555211999999983, 11.555954999999983], [11.555971999999997, 11.56152000000003], [11.561713999999995, 11.566102000000001], [11.569338000000016, 11.56950599999999], [11.603919000000019, 11.605326999999988]]}, \"su-4783\": {\"0\": [[11.68328200000002, 11.688369000000023]]}, \"sh-4778\": {\"2\": [[11.588416999999993, 11.598591999999996]]}, \"kworker/u8:4-247\": {\"2\": [[5.3186549999999784, 5.3187619999999924], [6.3114860000000022, 6.311505000000011], [6.3118759999999838, 6.3118949999999927], [6.3130199999999945, 6.3130370000000084], [6.3180619999999976, 6.3181329999999889], [6.3284019999999828, 6.3285389999999779], [6.3385069999999928, 6.3386940000000322], [6.345185000000015, 6.3453190000000177], [6.3485029999999938, 6.348760000000027], [6.3585080000000289, 6.3586970000000065], [6.3685050000000274, 6.36869200000001]], \"3\": [[6.3718089999999847, 6.3722970000000032], [6.3785020000000259, 6.3786910000000034], [6.3884860000000003, 6.3886499999999842], [6.3951579999999808, 6.3952879999999936], [6.3985129999999799, 6.3987000000000194], [6.4084829999999897, 6.4086480000000279], [6.4185090000000287, 6.4186970000000088], [6.4284920000000056, 6.4286630000000287], [6.438508000000013, 6.4386920000000032], [6.4451750000000061, 6.4453120000000013], [6.4484939999999824, 6.448662000000013], [6.4585109999999872, 6.4587010000000191], [6.4684879999999794, 6.4686500000000251], [6.4718450000000303, 6.4723480000000109], [6.4785100000000284, 6.4786950000000161], [6.4884890000000155, 6.4886529999999993], [6.4951580000000035, 6.4952900000000113], [6.4985080000000153, 6.4986979999999903], [6.5084860000000049, 6.5086479999999938], [6.5185089999999946, 6.5186949999999797], [6.5284900000000334, 6.5286530000000198], [6.5385110000000282, 6.5386970000000133], [6.5451790000000187, 6.545312000000024], [6.5484969999999976, 6.5486630000000332], [6.558497999999986, 6.5586950000000002], [6.5680909999999812, 6.5681769999999915], [6.5681850000000281, 6.5681979999999953], [6.5714239999999791, 6.5718239999999923], [6.5784790000000157, 6.5786630000000059], [6.5884930000000281, 6.5886540000000196], [6.5951550000000339, 6.5952710000000252], [6.5985110000000304, 6.5987039999999979], [6.6084920000000125, 6.6086569999999938], [6.6185100000000148, 6.6186979999999949], [6.6284870000000069, 6.6286529999999857], [6.6385070000000042, 6.6386980000000335], [6.6451729999999998, 6.6453129999999874], [6.6484920000000329, 6.6486570000000142], [6.6585110000000327, 6.6587030000000027], [6.6684930000000122, 6.6686550000000011], [6.6718400000000315, 6.672333999999978], [6.6785150000000044, 6.6787060000000338], [6.6884890000000041, 6.6886559999999804], [6.6951500000000124, 6.6952820000000202], [6.6985090000000014, 6.6986979999999789], [6.708486999999991, 6.7086550000000216], [6.7185059999999908, 6.7186940000000277], [6.7284910000000195, 6.7286530000000084], [6.7385060000000294, 6.7386989999999969], [6.7451780000000099, 6.7453120000000126], [6.7484929999999963, 6.7486569999999801], [6.7585080000000062, 6.7586979999999812], [6.7684879999999907, 6.7686520000000314], [6.771837000000005, 6.7723300000000108], [6.7785089999999855, 6.7786970000000224], [6.7884900000000243, 6.7886530000000107], [6.7951580000000149, 6.7952900000000227], [6.7985090000000241, 6.7987019999999916], [6.8084820000000263, 6.8086480000000051], [6.8185040000000186, 6.8186959999999885], [6.8281150000000252, 6.8281759999999849], [6.838497000000018, 6.8386629999999968], [6.8451539999999795, 6.8452750000000151], [6.8484910000000241, 6.8486570000000029], [6.858491000000015, 6.8586549999999988], [6.8684840000000236, 6.8686480000000074], [6.8718109999999797, 6.8723110000000247], [6.8785060000000158, 6.8786959999999908], [6.8884860000000003, 6.8886519999999791], [6.8951589999999783, 6.8952879999999936], [6.8985119999999824, 6.8987000000000194], [6.9084920000000238, 6.9086609999999951], [6.9185059999999794, 6.9186920000000214], [6.9284959999999955, 6.9286610000000337], [6.9385050000000206, 6.9386939999999981], [6.9451760000000036, 6.9453110000000038], [6.9484899999999925, 6.9486540000000332], [6.9585079999999948, 6.9586970000000292], [6.9684879999999794, 6.9686510000000226], [6.9718349999999987, 6.9723339999999894], [6.9785059999999817, 6.9786940000000186], [6.988490000000013, 6.9886529999999993], [6.9951550000000111, 6.9952840000000265], [6.9985060000000203, 6.9986969999999928], [7.0084889999999973, 7.0086509999999862], [7.0185010000000148, 7.0186879999999974], [7.0284859999999867, 7.0286500000000274], [7.0385090000000332, 7.0386950000000184], [7.0451740000000314, 7.045312000000024], [7.0484920000000102, 7.0486549999999966], [7.0585080000000175, 7.0586969999999951], [7.0684909999999945, 7.0686549999999784], [7.0718360000000189, 7.0723360000000071], [7.0785079999999994, 7.0786959999999794], [7.0884879999999839, 7.0886500000000296], [7.0951550000000339, 7.0952859999999873], [7.0985160000000178, 7.0987059999999929], [7.1084870000000251, 7.1086530000000039], [7.1185070000000223, 7.1186979999999949], [7.1284929999999918, 7.1286559999999781], [7.1385040000000117, 7.1386969999999792], [7.1451739999999972, 7.145308], [7.1484940000000279, 7.1486580000000117], [7.1585079999999834, 7.1586980000000153], [7.1684860000000299, 7.1686520000000087], [7.1718379999999797, 7.1723309999999856], [7.1785060000000271, 7.1786979999999971], [7.1881109999999921, 7.1881690000000162], [7.1951520000000073, 7.1952810000000227], [7.1984929999999849, 7.198662000000013], [7.2084820000000036, 7.2086459999999875], [7.2184890000000337, 7.2186530000000175], [7.2284839999999804, 7.2286490000000185], [7.2384930000000054, 7.2386609999999791], [7.2451540000000136, 7.2452880000000164], [7.2484830000000215, 7.2486460000000079], [7.2582170000000019, 7.2583819999999832], [7.2684889999999882, 7.2686530000000289], [7.2718340000000126, 7.2723290000000134], [7.2785130000000322, 7.2787000000000148], [7.2884890000000269, 7.2886500000000183], [7.29515600000002, 7.2952779999999962], [7.2985140000000115, 7.2987039999999865], [7.3084910000000036, 7.3086549999999875], [7.3185080000000085, 7.3186949999999911], [7.3284909999999854, 7.328659000000016], [7.3385079999999903, 7.3386950000000297], [7.3451729999999884, 7.3453099999999836], [7.3484940000000165, 7.3486589999999978], [7.3585080000000289, 7.3586999999999989], [7.3684900000000084, 7.3686589999999796], [7.3718339999999785, 7.3723219999999969], [7.3785100000000057, 7.3786979999999858], [7.3884869999999978, 7.3886449999999968], [7.3951559999999859, 7.3952850000000012], [7.3985119999999824, 7.3987010000000168], [7.4084859999999821, 7.4086540000000127], [7.4185070000000337, 7.4186960000000113], [7.4284979999999905, 7.428654999999992], [7.438506000000018, 7.4386939999999981], [7.4451730000000111, 7.4453080000000114], [7.4484939999999824, 7.4486590000000206], [7.4585059999999999, 7.4586929999999825], [7.4684839999999895, 7.4686500000000251], [7.471841999999981, 7.472342000000026], [7.4785100000000284, 7.4786980000000085], [7.4884890000000155, 7.4886579999999867], [7.4951540000000136, 7.4952870000000189], [7.4985040000000254, 7.4986930000000029], [7.5084879999999998, 7.5086499999999887], [7.5185050000000047, 7.5186949999999797], [7.5284900000000334, 7.5286540000000173], [7.5385130000000231, 7.5387020000000007], [7.5451740000000314, 7.545310000000029], [7.5484960000000001, 7.5486630000000332], [7.5585070000000201, 7.5586959999999976], [7.5684850000000097, 7.5686519999999859], [7.5718449999999962, 7.5723409999999944], [7.5785060000000044, 7.5786959999999794], [7.588485999999989, 7.5886490000000322], [7.5951630000000137, 7.5952570000000037], [7.5984280000000126, 7.5985939999999914], [7.6084099999999921, 7.6085390000000075], [7.6184170000000222, 7.6185720000000288], [7.628405999999984, 7.6285379999999918], [7.6384150000000091, 7.6385660000000257], [7.6450810000000047, 7.6451890000000162], [7.6484169999999949, 7.6485490000000027], [7.6585079999999834, 7.6586990000000128], [7.6684880000000248, 7.6686569999999961], [7.6718660000000227, 7.6723319999999831], [7.6781210000000328, 7.6782039999999938], [7.6880889999999908, 7.6881349999999884], [7.6887429999999881, 7.6887679999999818], [7.6904579999999783, 7.6904870000000187], [7.6905259999999771, 7.6905610000000024], [7.6906979999999976, 7.6907120000000191], [7.6951579999999922, 7.6952739999999835], [7.6984899999999925, 7.6986580000000231], [7.708484999999996, 7.7086439999999925], [7.7182020000000193, 7.7183650000000057], [7.7284819999999854, 7.7286440000000312], [7.7385080000000244, 7.7386970000000019], [7.7451669999999808, 7.7453120000000126], [7.7484929999999963, 7.7486610000000269], [7.7585050000000138, 7.7586969999999837], [7.7684889999999882, 7.7686489999999822], [7.7718360000000075, 7.7723340000000007], [7.778507999999988, 7.7786980000000199], [7.7884930000000168, 7.7886530000000107], [7.795154000000025, 7.7952880000000278], [7.7985110000000191, 7.7986989999999992], [7.8084900000000061, 7.8086500000000001], [7.8185080000000085, 7.818696999999986], [7.8281979999999862, 7.8283569999999827], [7.8385089999999877, 7.8386970000000247], [7.8451749999999834, 7.8453119999999785], [7.848493000000019, 7.8486580000000004], [7.8585120000000188, 7.8587019999999939], [7.8684910000000059, 7.8686549999999897], [7.8718160000000239, 7.8723110000000247], [7.8785110000000032, 7.8786969999999883], [7.8884879999999953, 7.8886530000000334], [7.8951589999999783, 7.8952909999999861], [7.8985040000000026, 7.8986929999999802], [7.9084900000000289, 7.9086540000000127], [7.9185059999999794, 7.9186930000000189], [7.9284930000000031, 7.9286559999999895], [7.9385100000000079, 7.9386969999999906], [7.9451750000000061, 7.9453129999999987], [7.9484879999999976, 7.9486550000000307], [7.9585089999999923, 7.9586990000000242], [7.9684869999999819, 7.968654000000015], [7.9718379999999911, 7.9723329999999919], [7.9785080000000335, 7.9786960000000136], [7.9884890000000155, 7.9886569999999892], [7.9951570000000061, 7.9952860000000214], [7.9985080000000153, 7.9986940000000004], [8.0084830000000125, 8.0086469999999963], [8.018509999999992, 8.0187060000000088], [8.0281390000000101, 8.028254000000004], [8.0384890000000269, 8.0386560000000031], [8.0451510000000326, 8.0452789999999936], [8.0485090000000241, 8.0486989999999992], [8.0584860000000162, 8.0586480000000051], [8.0685100000000034, 8.0687010000000328], [8.07181700000001, 8.0723090000000184], [8.0785079999999994, 8.078694999999982], [8.0884879999999839, 8.0886510000000271], [8.0951539999999795, 8.0952839999999924], [8.0985059999999862, 8.0986859999999865], [8.1084940000000074, 8.1086559999999963], [8.1185090000000173, 8.1186979999999949], [8.1284890000000019, 8.1286529999999857], [8.1385080000000016, 8.1386980000000335], [8.1451710000000048, 8.1453089999999975], [8.1484889999999837, 8.1486560000000168], [8.1585110000000327, 8.1586990000000128], [8.1684809999999857, 8.1686440000000289], [8.1718430000000239, 8.172333999999978], [8.1785090000000196, 8.1786969999999997], [8.1881119999999896, 8.188176999999996], [8.1951530000000048, 8.1952780000000303], [8.1984919999999875, 8.1986630000000105], [8.2084909999999809, 8.208658000000014], [8.2184879999999794, 8.2186300000000188], [8.2284829999999829, 8.2286480000000211], [8.2384910000000104, 8.2386549999999943], [8.2451550000000111, 8.2452880000000164], [8.2484910000000013, 8.2486549999999852], [8.2584919999999897, 8.2586600000000203], [8.2684830000000034, 8.2686429999999973], [8.2718229999999835, 8.2723169999999868], [8.278507999999988, 8.2786970000000224], [8.2884890000000269, 8.2886530000000107], [8.2951510000000326, 8.2952789999999936], [8.2985080000000266, 8.2986970000000042], [8.3084920000000011, 8.3086579999999799], [8.318507000000011, 8.3186959999999885], [8.3284939999999779, 8.3286620000000084], [8.3385109999999827, 8.3386990000000196], [8.3451739999999859, 8.3453089999999861], [8.3484960000000115, 8.3486599999999953], [8.3585070000000314, 8.3586970000000065], [8.368485000000021, 8.3686460000000125], [8.3718299999999886, 8.3723300000000336], [8.3785050000000183, 8.3786949999999933], [8.3884949999999776, 8.3886530000000334], [8.3951529999999934, 8.3952820000000088], [8.3985099999999875, 8.3987030000000118], [8.4084839999999872, 8.4086490000000254], [8.4185039999999844, 8.4186940000000163], [8.4284830000000284, 8.4286470000000122], [8.438508000000013, 8.4386969999999906], [8.4451710000000162, 8.4453080000000114], [8.4484899999999925, 8.4486640000000079], [8.4585010000000125, 8.4586899999999901], [8.4684869999999819, 8.4686510000000226], [8.4718389999999886, 8.4723410000000285], [8.4785019999999918, 8.4786910000000262], [8.488488000000018, 8.4886549999999943], [8.4951560000000086, 8.4952860000000214], [8.4985070000000178, 8.4986930000000029], [8.5084879999999998, 8.5086519999999837], [8.5185079999999971, 8.5186959999999772], [8.5284859999999867, 8.5286530000000198], [8.5385029999999915, 8.5386930000000234], [8.5451719999999796, 8.5453090000000316], [8.5484920000000102, 8.5486569999999915], [8.5585040000000276, 8.5586890000000153], [8.5684870000000046, 8.5686519999999859], [8.5718360000000189, 8.5723350000000096], [8.5785040000000095, 8.578692999999987], [8.5884950000000231, 8.5886500000000296], [8.5947540000000231, 8.594805000000008], [8.5981140000000096, 8.5981889999999908], [8.6080870000000118, 8.6081350000000043], [8.6184939999999983, 8.6186589999999796], [8.6285080000000107, 8.6286959999999908], [8.6384860000000003, 8.6386469999999917], [8.645151999999996, 8.6452820000000088], [8.6485069999999951, 8.6486970000000269], [8.6584859999999821, 8.6586460000000329], [8.6685090000000287, 8.6686950000000138], [8.6718159999999784, 8.672315000000026], [8.6785080000000221, 8.6786969999999997], [8.6884870000000092, 8.6886519999999905], [8.6951500000000124, 8.6952820000000202], [8.6985080000000039, 8.6987000000000307], [8.7084889999999859, 8.7086520000000291], [8.7185069999999882, 8.7186970000000201], [8.7284829999999829, 8.7286480000000211], [8.7385039999999776, 8.738693000000012], [8.7451639999999884, 8.745301999999981], [8.7484929999999963, 8.7486559999999827], [8.7585050000000138, 8.7586939999999913], [8.7684889999999882, 8.7686540000000264], [8.771837000000005, 8.7723359999999957], [8.778505999999993, 8.7786970000000224], [8.7884940000000142, 8.7886560000000031], [8.7951489999999808, 8.7952819999999861], [8.7985080000000266, 8.7986989999999992], [8.8084830000000238, 8.8086460000000102], [8.8185100000000034, 8.8187020000000302], [8.8282050000000254, 8.8283670000000143], [8.8384889999999814, 8.838655000000017], [8.8451610000000187, 8.8452809999999999], [8.8484900000000266, 8.848653000000013], [8.8584940000000074, 8.8586650000000304], [8.8684880000000135, 8.8686500000000024], [8.8717320000000086, 8.8721449999999891], [8.8784309999999778, 8.8785819999999944], [8.8884060000000318, 8.8885339999999928], [8.8950810000000047, 8.8951870000000213], [8.8985079999999925, 8.8986970000000269], [8.9084839999999872, 8.9086490000000254], [8.9185019999999895, 8.9186900000000264], [8.9284870000000183, 8.9286480000000097], [8.9385070000000155, 8.9386939999999981], [8.945177000000001, 8.9453159999999912], [8.9484949999999799, 8.9486570000000256], [8.9585089999999923, 8.9586960000000317], [8.9684900000000312, 8.968654000000015], [8.9718320000000062, 8.9723240000000146], [8.9785029999999892, 8.9786920000000237], [8.9884870000000205, 8.9886490000000094], [8.9951520000000187, 8.9952860000000214], [8.9985070000000178, 8.9986969999999928], [9.0084879999999998, 9.0086509999999862], [9.0185050000000047, 9.0186949999999797], [9.0284869999999842, 9.0286490000000299], [9.0385049999999865, 9.0386970000000133], [9.0451750000000288, 9.0453130000000215], [9.0484930000000077, 9.048657999999989], [9.0585050000000251, 9.0586950000000002], [9.0684830000000147, 9.0686489999999935], [9.0718410000000063, 9.0723439999999869], [9.0785159999999792, 9.0787020000000211], [9.0884899999999789, 9.088655000000017], [9.0951469999999972, 9.0952760000000126], [9.0985039999999913, 9.0986950000000206], [9.1084880000000226, 9.1086520000000064], [9.1185080000000198, 9.1186969999999974], [9.1284840000000145, 9.1286489999999958], [9.1385080000000016, 9.1386959999999817], [9.1451769999999897, 9.1453119999999899], [9.1484879999999862, 9.1486530000000243], [9.1585099999999784, 9.1586970000000179], [9.1684870000000274, 9.1686579999999935], [9.1718359999999848, 9.1723370000000273], [9.1785070000000246, 9.1786940000000072], [9.1882019999999898, 9.1883660000000305], [9.1951460000000225, 9.195274999999981], [9.1984939999999824, 9.1986580000000231], [9.2084820000000036, 9.2086410000000001], [9.2184890000000337, 9.218654000000015], [9.2284870000000296, 9.2286480000000211], [9.2384910000000104, 9.2386529999999993], [9.2451530000000162, 9.2452870000000189], [9.2484900000000039, 9.2486490000000003], [9.2584870000000024, 9.2586499999999887], [9.2684879999999907, 9.2686489999999822], [9.2714230000000271, 9.271850000000029], [9.2782330000000002, 9.2782839999999851], [9.2884839999999826, 9.2886440000000334], [9.295154000000025, 9.2952809999999886], [9.2985110000000191, 9.2987039999999865], [9.3084870000000137, 9.30865399999999], [9.3143709999999942, 9.3145089999999868], [9.3181069999999977, 9.318224999999984], [9.3284679999999867, 9.3286259999999857], [9.3385099999999852, 9.3386970000000247], [9.3451709999999935, 9.3453170000000227], [9.3484920000000216, 9.3486540000000105], [9.3585070000000314, 9.3586990000000014], [9.3684880000000135, 9.3686470000000099], [9.3718350000000328, 9.372335000000021], [9.3784979999999791, 9.378688000000011], [9.3884919999999852, 9.3886560000000259], [9.3951529999999934, 9.3952810000000113], [9.3985040000000026, 9.3986929999999802], [9.4084819999999922, 9.4086520000000178], [9.4185090000000287, 9.4186970000000088], [9.4284860000000208, 9.4286480000000097], [9.4385070000000155, 9.4386949999999956], [9.4451680000000238, 9.445303000000024], [9.4484879999999976, 9.4486499999999864], [9.4585059999999999, 9.4586960000000317], [9.4684900000000312, 9.4686530000000175], [9.4718389999999886, 9.4723379999999793], [9.4785029999999892, 9.4786930000000211], [9.4884850000000256, 9.4886470000000145], [9.4951520000000187, 9.495283000000029], [9.4985080000000153, 9.4986979999999903], [9.5084860000000049, 9.5086509999999862], [9.5185079999999971, 9.5186970000000315], [9.5284900000000334, 9.5286510000000249], [9.538501999999994, 9.538690000000031], [9.5451740000000314, 9.545312000000024], [9.5484940000000051, 9.5486589999999865], [9.5585080000000175, 9.5586950000000002], [9.5684870000000046, 9.5686489999999935], [9.5718380000000138, 9.5723270000000298], [9.5785079999999994, 9.5786970000000338], [9.5884869999999864, 9.5886490000000322], [9.5951539999999795, 9.5952839999999924], [9.5985019999999963, 9.5986950000000206], [9.6084870000000251, 9.6086510000000089], [9.6185030000000324, 9.6186930000000075], [9.6284870000000069, 9.6286529999999857], [9.6385050000000092, 9.6386939999999868], [9.6451739999999972, 9.645308], [9.6484859999999912, 9.6486520000000269], [9.6585120000000302, 9.6586990000000128], [9.6684920000000147, 9.6686559999999986], [9.6718379999999797, 9.6723400000000197], [9.6785070000000246, 9.6786940000000072], [9.6884790000000294, 9.6886420000000157], [9.6951510000000098, 9.6952850000000126], [9.6985109999999963, 9.6986979999999789], [9.7084830000000011, 9.7086499999999774], [9.7185079999999857, 9.7186980000000176], [9.7284910000000195, 9.7286560000000009], [9.7385060000000294, 9.738695000000007], [9.7451730000000225, 9.7453100000000177], [9.7484959999999887, 9.7486660000000143], [9.7584939999999847, 9.7586709999999925], [9.7684950000000299, 9.7686590000000137], [9.7718389999999999, 9.7723290000000134], [9.778507999999988, 9.7786990000000173], [9.7884930000000168, 9.7886530000000107], [9.79515600000002, 9.7952819999999861], [9.7985110000000191, 9.7987009999999941], [9.8084840000000213, 9.808651999999995], [9.8185149999999908, 9.8187050000000227], [9.8284859999999981, 9.8286499999999819], [9.8384920000000307, 9.8386540000000196], [9.8451529999999821, 9.8452710000000252], [9.8485049999999887, 9.8486960000000181], [9.8584819999999809, 9.8586379999999849], [9.8685060000000249, 9.8686950000000024], [9.8718160000000239, 9.8723209999999995], [9.8785070000000132, 9.8786979999999858], [9.8884869999999978, 9.8886499999999842], [9.8951529999999934, 9.8952840000000037], [9.8985059999999976, 9.8986939999999777], [9.9084869999999796, 9.9086490000000254], [9.9185059999999794, 9.9186940000000163], [9.9284890000000132, 9.9286510000000021], [9.938506000000018, 9.9386969999999906], [9.9451740000000086, 9.9453100000000063], [9.9484949999999799, 9.9486570000000256], [9.95850200000001, 9.9586909999999875], [9.9684839999999895, 9.9686490000000276], [9.9718379999999911, 9.9723390000000336], [9.9785019999999918, 9.9786960000000136], [9.9884920000000079, 9.9886539999999968], [9.9951560000000086, 9.9952900000000113], [9.9985080000000153, 9.9986949999999979], [10.008479000000023, 10.008644000000004], [10.018506000000002, 10.018695999999977], [10.028486999999984, 10.028650000000027], [10.038510000000031, 10.038696000000016], [10.045168999999987, 10.04530699999998], [10.04849200000001, 10.048653000000002], [10.058504000000028, 10.058694000000003], [10.068487000000005, 10.068653999999981], [10.071835000000021, 10.072329000000025], [10.078505000000007, 10.078693999999984], [10.088482999999997, 10.08864699999998], [10.095151999999985, 10.09528499999999], [10.098507999999981, 10.098698000000013], [10.108490000000018, 10.108655999999996], [10.118507000000022, 10.118697999999995], [10.128489999999999, 10.128653999999983], [10.138507000000004, 10.138695999999982], [10.145177999999987, 10.145313999999985], [10.148485999999991, 10.148653000000024], [10.158423000000028, 10.158586000000014], [10.168407999999999, 10.16853900000001], [10.171741999999995, 10.172177000000033], [10.178506000000027, 10.178692000000012], [10.18820199999999, 10.188350000000014], [10.19515100000001, 10.19527800000003], [10.198491999999987, 10.198657000000026], [10.208482000000004, 10.208647999999982], [10.218490000000031, 10.21865200000002], [10.228481999999985, 10.228644000000031], [10.238487000000021, 10.238652999999999], [10.245159999999998, 10.245289000000014], [10.248483000000022, 10.24864500000001], [10.258486000000005, 10.258650999999986], [10.268484999999998, 10.268653000000029], [10.271820999999989, 10.272318999999982], [10.278491000000031, 10.278651000000025], [10.288507999999979, 10.288693000000023], [10.295183000000009, 10.295325999999989], [10.298487000000023, 10.298649000000012], [10.308508000000018, 10.308696999999995], [10.318491999999992, 10.318656000000033], [10.328506000000004, 10.328695999999979], [10.338487999999984, 10.338651000000027], [10.34515399999998, 10.345270000000028], [10.348510000000033, 10.348701000000005], [10.358487000000025, 10.358654999999999], [10.368506000000025, 10.368695000000002], [10.371811999999977, 10.372315000000015], [10.378513999999996, 10.378705000000025], [10.38848999999999, 10.388654000000031], [10.395153999999991, 10.395285000000001], [10.398511999999982, 10.398702000000014], [10.408489000000031, 10.408650000000023], [10.418501999999989, 10.418694000000016], [10.428489000000013, 10.428652999999997], [10.438508000000013, 10.438696999999991], [10.445174000000009, 10.445312999999999], [10.448489999999993, 10.448654000000033], [10.458504000000005, 10.458692999999982], [10.465171999999995, 10.465249000000028], [10.46532000000002, 10.465363000000025], [10.468172999999979, 10.468321000000003], [10.471454999999992, 10.471876000000009], [10.478089000000011, 10.47814900000003], [10.488478999999984, 10.48864500000002], [10.495146000000034, 10.495272999999997], [10.498493999999994, 10.498657999999978], [10.50848000000002, 10.508635000000027], [10.518489999999986, 10.518656000000021], [10.528485999999987, 10.52864900000003], [10.538485999999978, 10.538651000000016], [10.545157000000017, 10.545288000000028], [10.548491000000013, 10.548656999999992], [10.558492000000001, 10.55865799999998], [10.568480000000022, 10.568640000000016], [10.571821, 10.572316999999998], [10.578507000000002, 10.578694999999982], [10.588485999999989, 10.58864699999998], [10.595152999999982, 10.595282999999995], [10.598507999999981, 10.598699000000011], [10.608488000000023, 10.608652000000006], [10.618505000000027, 10.618691000000013], [10.628490999999997, 10.628659000000027], [10.638505000000009, 10.638692999999989], [10.645172000000002, 10.645309999999995], [10.648487999999986, 10.648655000000019], [10.658511000000033, 10.658702000000005], [10.668487000000027, 10.668651000000011], [10.671840000000032, 10.672339000000022], [10.678507000000025, 10.678696000000002], [10.688485000000014, 10.688648999999998], [10.695155999999997, 10.69528600000001], [10.698509999999999, 10.698700000000031], [10.708487999999988, 10.708653000000027], [10.718204000000014, 10.718362000000013], [10.728496000000007, 10.728661999999986], [10.738507000000027, 10.73869400000001], [10.745177000000012, 10.745311000000015], [10.748491999999999, 10.748654999999985], [10.758510000000001, 10.758696999999984], [10.768484999999998, 10.76864999999998], [10.771830000000023, 10.772325000000023], [10.778506999999991, 10.778695000000027], [10.788482999999985, 10.788648000000023], [10.795155000000022, 10.795289000000025], [10.798512000000017, 10.798698000000002], [10.808486000000016, 10.808649000000003], [10.818505000000016, 10.818693999999994], [10.828489999999988, 10.828652000000034], [10.838508999999988, 10.83869900000002], [10.845174999999983, 10.845313000000033], [10.848491000000024, 10.848658], [10.858502999999985, 10.858689000000027], [10.868488000000013, 10.868650000000002], [10.871832999999981, 10.872335000000021], [10.878504000000021, 10.878693999999996], [10.888484000000005, 10.888649999999984], [10.895154999999988, 10.895285000000001], [10.898506999999995, 10.898698000000024], [10.908492000000024, 10.908654000000013], [10.918508000000031, 10.918695000000014], [10.928487000000018, 10.928649000000007], [10.938510000000008, 10.938698999999986], [10.945174000000009, 10.945310000000006], [10.948492999999985, 10.948657000000026], [10.958505000000002, 10.958696000000032], [10.968486999999982, 10.96865200000002], [10.971836999999994, 10.972343000000023], [10.978513000000021, 10.978705999999988], [10.988486000000023, 10.988642000000027], [10.995156000000009, 10.995285000000024], [10.998505000000023, 10.998695999999995], [11.008490999999992, 11.00865600000003], [11.018506000000002, 11.018697000000031], [11.028482999999994, 11.028646999999978], [11.038507999999979, 11.038697000000013], [11.04517199999998, 11.04530699999998], [11.048495000000003, 11.048655999999994], [11.058505000000025, 11.058694000000003], [11.068483000000015, 11.068636000000026], [11.071831000000032, 11.072322999999983], [11.078507000000002, 11.078695999999979], [11.088481999999999, 11.088645999999983], [11.09515399999998, 11.09528499999999], [11.098505999999986, 11.098694000000023], [11.108488000000023, 11.108654000000001], [11.11851200000001, 11.118702999999982], [11.128489999999999, 11.128655999999978], [11.138504000000012, 11.138690999999994], [11.145167000000015, 11.145305000000008], [11.148494000000028, 11.148660000000007], [11.158503999999994, 11.158693000000028], [11.168491000000017, 11.168655999999999], [11.171834999999987, 11.172337000000027], [11.17850199999998, 11.178691000000015], [11.188486000000012, 11.188646000000006], [11.195156999999995, 11.195285000000013], [11.198510999999996, 11.198701000000028], [11.208483999999999, 11.208647999999982], [11.218505999999991, 11.218696000000023], [11.228484999999978, 11.228650000000016], [11.238506000000029, 11.238697999999999], [11.245173000000023, 11.24530900000002], [11.248487000000011, 11.248648000000003], [11.258272000000034, 11.258443999999997], [11.268485999999996, 11.26864999999998], [11.271841999999992, 11.272347000000025], [11.278506999999991, 11.27869800000002], [11.288485999999978, 11.288645000000031], [11.295149999999978, 11.295275000000004], [11.298509000000024, 11.298698000000002], [11.308487000000014, 11.308648000000005], [11.318087999999989, 11.318134999999984], [11.318175999999994, 11.318448999999987], [11.319821999999988, 11.319910999999991], [11.319951000000003, 11.320014000000015], [11.327401000000009, 11.327825000000018], [11.327830000000006, 11.328157000000033]]}, \"mpss_smd_trans_-29\": {\"3\": [[7.6886620000000221, 7.6887429999999881], [7.6906510000000026, 7.6906979999999976]]}, \"ksoftirqd/2-16\": {\"2\": [[0.34140800000000127, 0.34142200000002276], [0.46908700000000181, 0.46910900000000311], [0.46915400000000318, 0.46916099999998551], [0.46919400000001588, 0.4692009999999982], [0.47142200000001822, 0.47142999999999802], [0.47147499999999809, 0.47148199999998042], [0.47151500000001079, 0.47152299999999059], [0.47808300000002646, 0.47809599999999364], [0.47813700000000381, 0.47819099999998116], [0.48474199999998291, 0.4847480000000246], [2.2683490000000006, 2.2683640000000196], [2.268400999999983, 2.2684070000000247], [2.2684409999999957, 2.2684469999999806], [2.2714129999999955, 2.2714199999999778], [2.2714560000000006, 2.2714629999999829], [2.2714980000000082, 2.2715049999999906], [2.2780880000000252, 2.278096000000005], [2.278144999999995, 2.2781499999999824], [2.2847409999999968, 2.2847479999999791], [2.2965990000000147, 2.2966329999999857], [2.2966729999999984, 2.2966809999999782], [2.2967160000000035, 2.2967219999999884], [2.2980929999999944, 2.298103000000026], [2.298150000000021, 2.2981599999999958], [2.2982010000000059, 2.2982079999999883], [2.3014590000000226, 2.3014729999999872], [2.3080850000000055, 2.3080959999999777], [2.3130330000000185, 2.3130620000000022], [2.3132420000000025, 2.3132489999999848], [2.3134289999999851, 2.3134350000000268], [2.3147610000000327, 2.314768000000015], [2.3148029999999835, 2.3148090000000252], [2.3148390000000063, 2.3148449999999912], [2.3186580000000276, 2.3186680000000024], [2.3188069999999925, 2.3188190000000191], [2.3216899999999896, 2.3217030000000136], [2.3217359999999871, 2.3217450000000213], [2.321770000000015, 2.3217789999999923], [2.3247709999999984, 2.3247789999999782], [2.3248140000000035, 2.3248199999999883], [2.3248510000000238, 2.3248570000000086], [2.3314120000000003, 2.3314189999999826], [2.331452000000013, 2.3314609999999902], [2.3380750000000035, 2.3380819999999858], [2.9992070000000126, 2.9992349999999988], [2.9992760000000089, 2.9992839999999887], [2.9993269999999939, 2.9993319999999812], [3.0014280000000326, 3.0014380000000074], [3.0014659999999935, 3.0014719999999784], [3.0015060000000062, 3.0015109999999936], [3.0081150000000321, 3.0081270000000018], [3.0081579999999803, 3.0081749999999943], [3.0147519999999872, 3.0147620000000188], [3.0214149999999904, 3.0214260000000195], [5.4692009999999982, 5.4692259999999919], [5.4692650000000071, 5.469272999999987], [5.4693060000000173, 5.4693120000000022], [5.4715100000000234, 5.4715199999999982], [5.4715360000000146, 5.4715449999999919], [5.4715610000000083, 5.4715719999999806], [5.4747669999999857, 5.4747780000000148], [5.4748089999999934, 5.4748579999999833], [5.4814099999999826, 5.4814170000000217], [6.559283999999991, 6.5593119999999772], [6.5593509999999924, 6.559359000000029], [6.559394999999995, 6.5594009999999798], [6.5614290000000324, 6.5614400000000046], [6.5614649999999983, 6.5614709999999832], [6.561507000000006, 6.5615149999999858], [6.5681079999999952, 6.56811399999998], [6.5681840000000307, 6.5681920000000105], [7.6914300000000253, 7.6914520000000266], [8.5975819999999885, 8.597611000000029], [8.5976560000000291, 8.5976630000000114], [8.5976989999999773, 8.597705000000019], [8.5980809999999792, 8.5980890000000159], [8.5981330000000185, 8.5981390000000033], [8.5981840000000034, 8.5981879999999933], [8.6014359999999783, 8.6014430000000175], [8.601477999999986, 8.6015130000000113], [8.6080830000000219, 8.6080949999999916], [10.469328000000019, 10.469353000000012], [10.469402000000002, 10.46941099999998], [10.469432999999981, 10.469439000000023], [10.471491000000015, 10.471496999999999], [10.471539000000007, 10.471549999999979], [10.47158300000001, 10.471597000000031], [10.474757000000011, 10.474812999999983], [10.481425000000002, 10.481436000000031], [11.441406000000029, 11.441423999999984], [11.541060000000016, 11.541109000000006], [11.598655000000008, 11.598673000000019], [11.598701000000005, 11.598719000000017], [11.598743000000013, 11.59875199999999], [11.602925000000027, 11.602948000000026], [11.602972000000022, 11.602983999999992], [11.603942000000018, 11.603955999999982], [11.603975999999989, 11.604016999999999], [11.604047999999977, 11.604056000000014], [11.624880000000019, 11.624903000000018], [11.624939999999981, 11.624950000000013], [11.624975000000006, 11.624982999999986]]}, \"Thread-5-1501\": {\"2\": [[2.3184459999999945, 2.3185960000000136], [2.3186870000000113, 2.3187530000000152], [2.465264999999988, 2.4655040000000099], [2.9685289999999895, 2.9686849999999936], [2.9694479999999999, 2.9697130000000129], [2.9704050000000279, 2.9705319999999915], [2.9732109999999921, 2.9733980000000315]]}, \"sh-4788\": {\"0\": [[11.789241000000004, 11.79172699999998]]}, \"sh-4782\": {\"0\": [[11.681523000000027, 11.683072999999979], [11.683268999999996, 11.68328200000002]]}, \"sh-4783\": {\"0\": [[11.674048000000028, 11.681523000000027]], \"3\": [[11.688442000000009, 11.688531000000012], [11.688540999999987, 11.688609999999983], [11.688617000000022, 11.688648000000001], [11.688654999999983, 11.688688000000013], [11.688693999999998, 11.688727000000029], [11.688733000000013, 11.69144], [11.691461000000004, 11.69148899999999], [11.691498000000024, 11.691552999999999], [11.691559999999981, 11.691596000000004], [11.691602999999986, 11.691634000000022], [11.691640000000007, 11.694612000000006]]}, \"sh-4780\": {\"0\": [[11.668379000000016, 11.674048000000028], [11.683072999999979, 11.683268999999996], [11.694617999999991, 11.695814999999982]]}, \"wpa_supplicant-1502\": {\"2\": [[1.5301749999999856, 1.5303670000000125], [11.540800999999988, 11.541029999999978]]}, \"sh-4787\": {\"0\": [[11.76636400000001, 11.774847000000022]], \"1\": [[11.779685000000029, 11.780289999999979], [11.780301000000009, 11.784911000000022], [11.784972999999979, 11.789527000000021]]}, \"sh-4784\": {\"0\": [[11.754919000000029, 11.756388000000015], [11.756422999999984, 11.756485999999995], [11.756497000000024, 11.756528000000003], [11.756534999999985, 11.756573000000003], [11.756580999999983, 11.756614000000013], [11.756620999999996, 11.758235000000013], [11.758279000000016, 11.758905000000027], [11.758930000000021, 11.758970000000033], [11.758979000000011, 11.764372999999978], [11.76466099999999, 11.76636400000001], [11.776412999999991, 11.776591999999994]]}, \"watchdog-1658\": {\"0\": [[1.8318050000000312, 1.8321809999999914]]}, \"adbd-4757\": {\"0\": [[0.14836100000002261, 0.14858200000003308]]}, \"ksoftirqd/1-12\": {\"1\": [[0.0014120000000161781, 0.001442999999994754], [0.0014639999999985776, 0.0014730000000326982], [0.0014919999999847278, 0.0015010000000188484], [0.0049490000000105283, 0.0049900000000207001], [0.005028999999979078, 0.0050380000000131986], [0.005070999999986725, 0.0050860000000056971], [0.0051230000000259679, 0.0051330000000007203], [0.0051599999999893953, 0.0051700000000209911], [0.0051920000000222899, 0.0052069999999844185], [0.060635999999988144, 0.060677999999995791], [0.060714000000018586, 0.060723999999993339], [0.060754000000031283, 0.06076300000000856], [0.060791999999992186, 0.060802000000023781], [0.060831000000007407, 0.060839999999984684], [0.060863999999980933, 0.060874000000012529], [0.061491999999987002, 0.061512999999990825], [0.061552000000006046, 0.061560999999983324], [0.061591000000021268, 0.061599999999998545], [0.06162899999998217, 0.061638000000016291], [0.061667999999997392, 0.061677000000031512], [0.061699000000032811, 0.061711999999999989], [0.064907000000005155, 0.064957999999990079], [0.065062000000011722, 0.0650749999999789], [0.06510800000000927, 0.065118999999981497], [0.065149000000019441, 0.065166000000033364], [0.092036000000007334, 0.092049000000031356], [0.092086999999992258, 0.092159999999978481], [0.092204999999978554, 0.092214000000012675], [0.098200000000019827, 0.098215999999979431], [0.098252000000002226, 0.098266000000023723], [0.17866800000001604, 0.17869100000001481], [0.17873800000000983, 0.17875100000003386], [0.17878799999999728, 0.17880000000002383], [0.18153599999999415, 0.18157500000000937], [0.18162799999998924, 0.18164000000001579], [0.18167299999998932, 0.18168200000002344], [0.18613499999997885, 0.18618500000002314], [0.18625400000001946, 0.18626499999999169], [0.18629900000001953, 0.18630899999999428], [0.18634200000002465, 0.18635100000000193], [0.18637999999998556, 0.18638900000001968], [0.18641200000001845, 0.18642099999999573], [0.18829099999999244, 0.18834600000002411], [0.18838599999997996, 0.1884200000000078], [0.19949300000001813, 0.1995279999999866], [0.1995539999999778, 0.19956500000000688], [0.19958800000000565, 0.1995979999999804], [0.20285100000000966, 0.20290299999999206], [0.2029550000000313, 0.20296700000000101], [0.20299199999999473, 0.2030030000000238], [0.21151100000002998, 0.21153700000002118], [0.21159399999999096, 0.21166499999998223], [0.21172200000000885, 0.21173099999998612], [0.21176700000000892, 0.21178400000002284], [0.2181770000000256, 0.21819099999999025], [0.28843000000000529, 0.28845599999999649], [0.28848499999998012, 0.28849500000001171], [0.28852499999999281, 0.28853400000002694], [0.29293799999999237, 0.29300499999999374], [0.29305399999998372, 0.29306600000001026], [0.29309999999998126, 0.29311000000001286], [0.29540200000002415, 0.29542500000002292], [0.29564199999998664, 0.29565999999999804], [0.29817100000002483, 0.29821500000002743], [0.29825199999999086, 0.2982640000000174], [0.29829999999998336, 0.29831000000001495], [0.30148400000001629, 0.3015139999999974], [0.30155400000001009, 0.30156599999997979], [0.30160000000000764, 0.30161199999997734], [0.30525099999999838, 0.30529200000000856], [0.30533500000001368, 0.30534799999998086], [0.3053820000000087, 0.30539299999998093], [0.3054260000000113, 0.30543599999998605], [0.30546900000001642, 0.30547899999999117], [0.30550299999998742, 0.30551300000001902], [0.3084779999999796, 0.30850400000002765], [0.3085360000000037, 0.30854700000003277], [0.30857700000001387, 0.30858699999998862], [0.30861800000002404, 0.30862799999999879], [0.30865899999997737, 0.30867000000000644], [0.30869300000000521, 0.30870900000002166], [9.31811399999998, 9.318128999999999], [11.321397999999988, 11.321413000000007], [11.497411, 11.497433000000001], [11.497463999999979, 11.497476000000006], [11.49750499999999, 11.497516000000019], [11.497546, 11.497556000000031], [11.497589000000005, 11.497599999999977], [11.497623000000033, 11.497634000000005], [11.498091999999986, 11.498103000000015], [11.498133999999993, 11.498145000000022], [11.49818700000003, 11.498197000000005], [11.498220000000003, 11.498229999999978], [11.498253000000034, 11.498264000000006], [11.501580999999987, 11.501627999999982], [11.502094, 11.502126000000032], [11.502164999999991, 11.502195000000029], [11.502230999999995, 11.502242000000024], [11.502292000000011, 11.502384000000006], [11.502417999999977, 11.502430000000004], [11.504795000000001, 11.504811000000018], [11.504834000000017, 11.504844999999989], [11.504865999999993, 11.504876000000024], [11.504901000000018, 11.504924000000017], [11.556718999999987, 11.556752000000017], [11.556794000000025, 11.556805999999995], [11.556839000000025, 11.556849], [11.56082600000002, 11.560903999999994], [11.560979000000032, 11.560993999999994], [11.561028000000022, 11.561039999999991], [11.56598200000002, 11.566073000000017], [11.566150999999991, 11.56616600000001], [11.56620700000002, 11.566220999999985], [11.566260999999997, 11.566274000000021], [11.566309999999987, 11.566322000000014], [11.566351999999995, 11.566364000000021], [11.568255000000022, 11.568286000000001], [11.568344000000025, 11.568354999999997], [11.568399999999997, 11.568415000000016], [11.568454000000031, 11.568466999999998], [11.568510000000003, 11.56852200000003], [11.568550000000016, 11.568560999999988], [11.571618000000001, 11.571683000000007], [11.588794000000007, 11.588823999999988], [11.588853000000029, 11.588864999999998], [11.588896000000034, 11.588906000000009], [11.591451000000006, 11.591486000000032], [11.591602000000023, 11.591612999999995], [11.591648000000021, 11.591658999999993], [11.59477099999998, 11.594796000000031], [11.594826000000012, 11.594835999999987], [11.594858999999985, 11.594896000000006], [11.594924999999989, 11.594935000000021], [11.600369999999998, 11.600408000000016], [11.600440999999989, 11.600452000000018], [11.600482999999997, 11.600494000000026], [11.602022000000034, 11.60205000000002], [11.606665000000021, 11.60668400000003], [11.606760000000008, 11.606769999999983], [11.606910000000028, 11.606921999999997], [11.606966, 11.606974999999977], [11.607159000000024, 11.607185000000015], [11.611445000000003, 11.611484000000019], [11.664604999999995, 11.66464400000001], [11.664677999999981, 11.664691000000005], [11.664783, 11.664800000000014], [11.664828, 11.664839000000029], [11.664864000000023, 11.664873999999998], [11.664896999999996, 11.664909000000023], [11.668170000000032, 11.668194000000028], [11.668341999999996, 11.66835500000002], [11.668388999999991, 11.66840000000002], [11.672602999999981, 11.67265500000002], [11.697101000000032, 11.697124000000031], [11.697171000000026, 11.697179000000006], [11.697218000000021, 11.697239000000025], [11.756421999999986, 11.756457000000012], [11.756494000000032, 11.756504000000007], [11.756534999999985, 11.756547000000012], [11.756578999999988, 11.756588000000022], [11.756618000000003, 11.756629000000032], [11.756654000000026, 11.756664000000001], [11.758526000000018, 11.758692999999994], [11.758927000000028, 11.758944999999983], [11.758979000000011, 11.758988999999985], [11.764400000000023, 11.764471000000015], [11.789649999999995, 11.789705000000026], [11.78977100000003, 11.789783999999997], [11.789823000000013, 11.78983199999999], [11.791540999999995, 11.79157600000002], [11.791661000000033, 11.791671000000008], [11.791717000000006, 11.79172699999998]]}, \"adbd-4753\": {\"0\": [[0.065086000000007971, 0.065106000000014319], [0.065116999999986547, 0.065140999999982796], [0.065151000000014392, 0.065280000000029759]]}, \"adbd-4752\": {\"0\": [[0.05702400000001262, 0.058196000000009462]]}, \"sh-4764\": {\"0\": [[0.2656509999999912, 0.26823000000001684]]}, \"sh-4760\": {\"0\": [[0.17857500000002346, 0.17865100000000211], [0.17867899999998826, 0.17872900000003256], [0.17874000000000478, 0.17878100000001496], [0.17878999999999223, 0.1815300000000093]]}, \"sh-4762\": {\"0\": [[0.25530200000002878, 0.2554150000000277], [0.2555150000000026, 0.25826100000000451], [0.25854199999997718, 0.25871100000000524], [0.25879900000001044, 0.26488200000000006], [0.26509500000003072, 0.2656509999999912], [11.499933999999996, 11.501612000000023]]}, \"ksoftirqd/0-3\": {\"0\": [[0.00012600000002294109, 0.00017600000001039007], [0.0034610000000157015, 0.0035000000000309228], [0.003555000000005748, 0.0035649999999805004], [0.0036029999999982465, 0.0036130000000298423], [0.0048659999999927095, 0.0049690000000168766], [0.0050370000000157233, 0.0050530000000321706], [0.0051220000000284927, 0.0051330000000007203], [0.0081050000000004729, 0.0081190000000219698], [0.0081519999999954962, 0.0081690000000094187], [0.055354000000022552, 0.0553740000000289], [0.089359000000001743, 0.089420000000018263], [0.089453999999989264, 0.089463000000023385], [0.089499999999986812, 0.089508000000023458], [0.091816999999991822, 0.091839999999990596], [0.091904999999997017, 0.091915000000028613], [0.091964000000018586, 0.091971999999998388], [0.09821199999998953, 0.098235999999985779], [0.09827300000000605, 0.098283999999978278], [0.098313000000018747, 0.098323999999990974], [0.098358000000018819, 0.098401000000023942], [0.098435999999992418, 0.09844700000002149], [0.098480999999992491, 0.098493000000019038], [0.098516000000017812, 0.098524999999995089], [0.10142600000000357, 0.10143900000002759], [0.10147000000000617, 0.10148300000003019], [0.13878399999998692, 0.13885099999998829], [0.14366200000000617, 0.1436909999999898], [0.16852199999999584, 0.16858400000000984], [0.16863000000000739, 0.16863899999998466], [0.16867200000001503, 0.16868199999998978], [0.19790299999999661, 0.19794300000000931], [0.1979790000000321, 0.19798800000000938], [0.19802900000001955, 0.19812600000000202], [0.20376700000002756, 0.20378699999997707], [0.20395600000000513, 0.20413000000002057], [0.20420400000000427, 0.20421399999997902], [0.20426000000003341, 0.20428099999998039], [0.25086299999998118, 0.25087100000001783], [0.25548600000001898, 0.2555150000000026], [0.27510300000000143, 0.27514300000001413], [0.27517499999999018, 0.27518600000001925], [0.2752140000000054, 0.27522399999998015], [0.27525300000002062, 0.27526399999999285], [0.27529300000003332, 0.27530200000001059], [0.27532600000000684, 0.27533499999998412], [0.27839399999999159, 0.27843000000001439], [0.3014400000000137, 0.30153300000000627], [0.30445300000002362, 0.30450799999999845], [0.30454200000002629, 0.30455299999999852], [0.30458500000003141, 0.30459500000000617], [0.30952700000000277, 0.30955299999999397], [2.9687000000000126, 2.9687119999999823], [11.491868000000011, 11.491895], [11.491920999999991, 11.491933000000017], [11.491957000000014, 11.491969999999981], [11.491992999999979, 11.492004000000009], [11.494788000000028, 11.494809000000032], [11.499258999999995, 11.499329999999986], [11.499365000000012, 11.499379000000033], [11.501738999999986, 11.501766000000032], [11.502005999999994, 11.502034999999978], [11.502268000000015, 11.50244600000002], [11.50250299999999, 11.502513000000022], [11.502564000000007, 11.502571999999986], [11.504794000000004, 11.504809000000023], [11.504835000000014, 11.504844999999989], [11.504867999999988, 11.504879000000017], [11.504901000000018, 11.504914999999983], [11.504944000000023, 11.504959999999983], [11.518146000000002, 11.518180000000029], [11.550987000000021, 11.551003999999978], [11.577945, 11.577977000000033], [11.578014999999994, 11.578026000000023], [11.578116000000023, 11.578127999999992], [11.578160000000025, 11.57821899999999], [11.578268999999977, 11.578280000000007], [11.59824500000002, 11.598269000000016], [11.59830199999999, 11.598312000000021], [11.59833500000002, 11.598344999999995], [11.60153600000001, 11.601562999999999], [11.601602000000014, 11.601613999999984], [11.601644000000022, 11.601657999999986], [11.601689000000022, 11.601700999999991], [11.601732000000027, 11.601753000000031], [11.601780000000019, 11.601789999999994], [11.605995000000007, 11.60603100000003], [11.606068999999991, 11.606082000000015], [11.606114999999988, 11.606126000000017], [11.606161999999983, 11.606172000000015], [11.606204999999989, 11.606216000000018], [11.606240000000014, 11.606249999999989], [11.60830500000003, 11.608330000000024], [11.608379000000014, 11.608397000000025], [11.608431999999993, 11.608443000000022], [11.608474999999999, 11.60848500000003], [11.608521999999994, 11.608536000000015], [11.658959999999979, 11.65898199999998], [11.688557000000003, 11.688580000000002], [11.688611999999978, 11.688624000000004], [11.68865199999999, 11.688662000000022], [11.688692000000003, 11.688703000000032], [11.688730000000021, 11.688740999999993], [11.688764999999989, 11.688776000000018], [11.69144, 11.691454000000022], [11.691493999999977, 11.691524000000015], [11.691557999999986, 11.691570000000013], [11.691599999999994, 11.691609000000028], [11.691636000000017, 11.691645999999992], [11.691667999999993, 11.691678000000024], [11.696528000000001, 11.696616000000006], [11.696669999999983, 11.696684000000005], [11.696725000000015, 11.696733999999992], [11.718379000000027, 11.718403000000023], [11.718470000000025, 11.718489000000034], [11.718532999999979, 11.718547999999998], [11.750892000000022, 11.750972999999988], [11.778621999999984, 11.778644999999983], [11.778675000000021, 11.778684999999996], [11.778712999999982, 11.778723000000014], [11.788855000000012, 11.788889999999981], [11.788944000000015, 11.789012000000014], [11.789060000000006, 11.789069999999981]]}, \"shutils-4768\": {\"0\": [[0.29726299999998673, 0.2987810000000195]]}, \"shutils-4769\": {\"0\": [[0.29879699999997911, 0.29921200000001136], [0.30021599999997761, 0.3007350000000315], [0.30124200000000201, 0.3013220000000274], [0.30133799999998701, 0.3014400000000137], [0.3019570000000158, 0.30235499999997728], [0.30266999999997779, 0.30274700000001076], [0.30276100000003225, 0.3028410000000008], [0.30288000000001603, 0.30298600000003262], [0.30320199999999886, 0.30432500000000573]]}, \"shutils-4764\": {\"0\": [[0.26838600000002089, 0.2716710000000262], [0.27220099999999547, 0.27498100000002523], [0.30525899999997819, 0.30607000000003382]], \"1\": [[0.27502600000002531, 0.27508999999997741], [0.27510100000000648, 0.27516700000001038], [0.27518100000003187, 0.2752060000000256], [0.27521600000000035, 0.27524499999998397], [0.27525500000001557, 0.2752879999999891], [0.27529500000002827, 0.27827700000000277], [0.27832899999998517, 0.28045100000002776], [0.28959000000003243, 0.29233700000003182], [0.29244099999999662, 0.29280199999999468], [0.29728799999998046, 0.29750999999998839], [0.30043100000000322, 0.30060600000001614], [0.30450300000001107, 0.30511500000000069]]}, \"shutils-4765\": {\"1\": [[0.28293899999999894, 0.28831900000000132]]}, \"shutils-4766\": {\"1\": [[0.28045100000002776, 0.28293899999999894]]}, \"shutils-4767\": {\"0\": [[0.29085600000001932, 0.29273100000000341]]}, \"shutils-4760\": {\"0\": [[0.18157100000001947, 0.18161400000002459], [0.18162399999999934, 0.18166700000000446], [0.18167499999998427, 0.18610400000000027], [0.18616100000002689, 0.18623500000001059], [0.18625300000002198, 0.18629400000003216], [0.18630300000000943, 0.18633599999998296], [0.18634600000001456, 0.18637499999999818], [0.18638099999998303, 0.18823500000002014], [0.18838800000003175, 0.19197200000002113], [0.19501900000000205, 0.1950729999999794], [0.19519700000000739, 0.19521400000002131], [0.19528200000002016, 0.19529499999998734], [0.19537200000002031, 0.19538399999999001], [0.1955960000000232, 0.19560999999998785], [0.19562100000001692, 0.19568400000002839], [0.19576100000000451, 0.19771900000000642]]}, \"shutils-4761\": {\"0\": [[0.19197200000002113, 0.19490500000000566]]}, \"ksoftirqd/3-20\": {\"3\": [[0.081418999999982589, 0.081475000000011732], [0.28963600000002998, 0.28965199999998958], [0.28967899999997826, 0.28968400000002248], [0.28971699999999601, 0.28972299999998086], [0.29296499999998105, 0.29298000000000002], [0.29301500000002534, 0.29302100000001019], [0.29305499999998119, 0.29305900000002794], [0.29478999999997768, 0.29480000000000928], [0.29483600000003207, 0.29484200000001692], [0.29488100000003215, 0.29488800000001447], [0.29807499999998299, 0.29808300000001964], [0.29811799999998811, 0.29812400000002981], [0.29824000000002115, 0.29824700000000348], [0.3014100000000326, 0.30141700000001492], [0.3014479999999935, 0.30145500000003267], [0.30149499999998852, 0.30150100000003022], [9.2782119999999964, 9.2782330000000002], [11.327355000000011, 11.32738999999998], [11.502062000000024, 11.502074999999991], [11.502190999999982, 11.502198000000021], [11.502257999999983, 11.502264000000025], [11.502298999999994, 11.50231500000001], [11.694698000000017, 11.694754999999986], [11.694770000000005, 11.694777999999985], [11.694791000000009, 11.694797999999992], [11.694811000000016, 11.694818999999995], [11.694832000000019, 11.694839000000002], [11.694852000000026, 11.694862000000001], [11.698143000000016, 11.698154999999986], [11.698175999999989, 11.698185000000024], [11.69820500000003, 11.698212000000012], [11.698243999999988, 11.698251000000027], [11.698278000000016, 11.698284999999998]]}, \"msm_irqbalance-564\": {\"2\": [[0.46535799999998062, 0.46901600000001054], [5.4653610000000299, 5.4691220000000271], [10.465358999999978, 10.469245000000001]]}, \"sh-4750\": {\"1\": [[6.2000000013995304e-05, 0.0013059999999995853]]}, \"sh-4752\": {\"0\": [[0.058230999999977939, 0.059128999999984444], [0.05921899999998459, 0.059269000000028882], [0.059282999999993535, 0.060603000000014617], [0.06063899999998057, 0.060706999999979416], [0.060721000000000913, 0.060748999999987063], [0.060757000000023709, 0.060785000000009859], [0.060794999999984611, 0.06082400000002508], [0.060831000000007407, 0.061483000000009724], [0.061509999999998399, 0.061541000000033819], [0.061553000000003522, 0.061585999999977048], [0.061595000000011169, 0.061621999999999844], [0.061630999999977121, 0.06166000000001759], [0.061669999999992342, 0.064904000000012729], [0.065280000000029759, 0.069065000000023247], [0.073471999999981108, 0.07360900000003312]], \"1\": [[0.089380000000005566, 0.090572000000008757]]}, \"sh-4755\": {\"0\": [[0.069065000000023247, 0.071555999999986852], [0.085014999999998508, 0.089222000000006574]]}, \"sh-4754\": {\"0\": [[0.072082000000023072, 0.073471999999981108], [0.07360900000003312, 0.073616000000015447]]}, \"sh-4756\": {\"0\": [[0.14350600000000213, 0.14361600000000863], [0.1436909999999898, 0.14487700000000814], [0.14493500000003223, 0.14824500000003127], [0.14858200000003308, 0.15440200000000459], [0.15999800000003006, 0.16016100000001643], [0.19943799999998646, 0.20101099999999406]]}, \"sh-4759\": {\"0\": [[0.15440200000000459, 0.15828600000003235]], \"1\": [[0.16843799999998055, 0.16850399999998444], [0.16851900000000342, 0.16862400000002253], [0.16863399999999729, 0.16866299999998091], [0.16867200000001503, 0.17176200000000108], [0.17243700000000217, 0.17494299999998475], [0.17500300000000379, 0.17856799999998429], [0.19780800000000909, 0.19939900000002808]]}, \"sh-4758\": {\"0\": [[0.15844400000003134, 0.15999800000003006], [0.16016100000001643, 0.16016799999999876]]}, \"kworker/3:0-21\": {\"3\": [[0.46524900000002845, 0.46532100000001719], [5.4652540000000158, 5.465327000000002], [6.3214629999999943, 6.3214919999999779], [9.3214360000000056, 9.3214639999999918], [10.465249000000028, 10.46532000000002], [11.318448999999987, 11.319821999999988], [11.319910999999991, 11.319951000000003], [11.320131000000003, 11.320176000000004], [11.320757000000015, 11.320992999999987], [11.321016999999983, 11.321056999999996], [11.321212000000003, 11.321260999999993], [11.321513999999979, 11.321607000000029], [11.321730000000002, 11.321798999999999], [11.322355000000016, 11.322696000000008], [11.322721000000001, 11.322776000000033], [11.322920000000011, 11.322965000000011], [11.323655000000031, 11.323929000000021], [11.323970000000031, 11.324024000000009], [11.324213999999984, 11.324256999999989], [11.32516099999998, 11.325381999999991], [11.325481000000025, 11.325521999999978], [11.327032000000031, 11.327230999999983], [11.501994000000025, 11.502023000000008]]}, \"sh-4786\": {\"0\": [[11.774847000000022, 11.776412999999991], [11.776591999999994, 11.776599000000033]]}, \"OkHttp Connecti-3994\": {\"2\": [[8.5967830000000163, 8.5975320000000011]]}, \"VosMCThread-1457\": {\"0\": [[0.071555999999986852, 0.071618000000000848], [0.37143600000001697, 0.37149299999998675], [0.47140699999999924, 0.47143299999999044], [0.57141500000000178, 0.57144499999998288], [0.67141500000002452, 0.67144000000001824], [0.77141299999999546, 0.77143899999998666], [0.87141400000001568, 0.87144000000000688], [0.97140999999999167, 0.97143099999999549], [1.0714150000000018, 1.071438999999998], [1.1714079999999853, 1.1714269999999942], [1.2714129999999955, 1.2714330000000018], [1.3714150000000132, 1.3714439999999968], [1.4714089999999942, 1.4714290000000005], [1.5714120000000094, 1.5714320000000157], [1.6714089999999828, 1.6714269999999942], [1.7714149999999904, 1.7714409999999816], [1.8714219999999955, 1.8714659999999981], [1.9714160000000334, 1.9714410000000271], [2.0714120000000094, 2.0714320000000157], [2.1714120000000321, 2.1714319999999816], [2.2380759999999782, 2.2382220000000075], [2.2714090000000056, 2.2714550000000031], [2.3181050000000027, 2.3184850000000097], [2.3714820000000145, 2.3715270000000146], [2.4714180000000283, 2.4714480000000094], [2.5714750000000208, 2.5714930000000322], [2.6714150000000245, 2.6714360000000283], [2.771411999999998, 2.7714349999999968], [2.824764000000016, 2.8247789999999782], [2.871420999999998, 2.8714400000000069], [2.9647750000000315, 2.968687999999986]], \"1\": [[0.17176200000000108, 0.17186200000003282], [0.2716710000000262, 0.27178700000001754]], \"2\": [[2.9720540000000142, 2.9721890000000144], [3.0718249999999898, 3.0719470000000229], [3.1718389999999772, 3.1719630000000052], [3.2718380000000025, 3.2719630000000279], [3.3718089999999847, 3.3719310000000178], [3.4718389999999886, 3.4719630000000166], [3.5718390000000113, 3.5719670000000292], [3.6718339999999898, 3.6719600000000128], [3.7717430000000149, 3.771850000000029], [3.871830999999986, 3.8719540000000165], [3.9718389999999886, 3.971964000000014], [4.0718380000000138, 4.0719649999999774], [4.1718329999999924, 4.1719630000000052], [4.2718389999999999, 4.2719660000000204], [4.3718299999999886, 4.3719540000000165], [4.4718440000000328, 4.4719709999999964], [4.571832000000029, 4.5719609999999875], [4.6718319999999949, 4.6719590000000153], [4.771837000000005, 4.7719640000000254], [4.871832999999981, 4.8719600000000014], [4.9718330000000037, 4.9719600000000241], [5.0718350000000214, 5.07195999999999], [5.1718369999999823, 5.1719669999999951], [5.2718389999999999, 5.2719650000000229], [5.371832999999981, 5.3719580000000065], [5.4714079999999967, 5.4714660000000208], [5.5718200000000024, 5.5719450000000279], [5.6718389999999772, 5.6719630000000052], [5.7718360000000075, 5.7719599999999787], [5.8718130000000315, 5.8719389999999976], [5.9718359999999961, 5.9719630000000166], [6.0718410000000063, 6.0719660000000317], [6.1718369999999823, 6.1719630000000052], [6.2718310000000201, 6.2719559999999888], [6.3718089999999847, 6.3719280000000253], [6.4718450000000303, 6.4719719999999938], [6.5714150000000018, 6.5714720000000284], [6.6718400000000315, 6.6719659999999976], [6.771837000000005, 6.7719640000000254], [6.8718109999999797, 6.8719370000000026], [6.9718349999999987, 6.9719620000000191], [7.0718360000000189, 7.07195999999999], [7.1718379999999797, 7.1719659999999976], [7.2718340000000126, 7.271961000000033], [7.3718339999999785, 7.3719580000000065], [7.471841999999981, 7.4719670000000065], [7.5718449999999962, 7.5719680000000267], [7.6718240000000151, 7.6719279999999799], [7.7718360000000075, 7.7719630000000279], [7.8718160000000239, 7.8719350000000077], [7.9718379999999911, 7.9719650000000115], [8.07181700000001, 8.0719419999999786], [8.1718430000000239, 8.1719699999999875], [8.2718229999999835, 8.271948000000009], [8.3718299999999886, 8.3719530000000191], [8.4718389999999886, 8.4719670000000065], [8.5718360000000189, 8.5719589999999926], [8.6718159999999784, 8.6719429999999988], [8.771837000000005, 8.7719640000000254], [8.8717320000000086, 8.8718250000000012], [8.9718320000000062, 8.9719610000000216], [9.0718410000000063, 9.0719700000000216], [9.1718359999999848, 9.1719630000000052], [9.2714199999999778, 9.2714809999999943], [9.3718350000000328, 9.3719619999999964], [9.4718389999999886, 9.4719630000000166], [9.5718380000000138, 9.5719639999999799], [9.6718379999999797, 9.6719630000000052], [9.7718389999999999, 9.7719660000000204], [9.8718160000000239, 9.8719429999999875], [9.9718379999999911, 9.9719680000000039], [10.071835000000021, 10.071956999999998], [10.171745999999985, 10.171851000000004], [10.271820999999989, 10.271950000000004], [10.371811999999977, 10.371938999999998], [10.471408999999994, 10.471466000000021], [10.571821, 10.571947000000023], [10.671840000000032, 10.671965999999998], [10.771830000000023, 10.771955999999989], [10.871832999999981, 10.871959000000004], [10.971836999999994, 10.971963000000017], [11.071831000000032, 11.071957999999995], [11.171834999999987, 11.171963000000005], [11.271841999999992, 11.27197000000001], [11.371832999999981, 11.371960999999999], [11.47181999999998, 11.471945000000005], [11.571611000000019, 11.571673000000033], [11.671654999999987, 11.671715000000006], [11.771884, 11.771979999999985]]}, \"shutils-4779\": {\"0\": [[11.598455999999999, 11.601452999999992]]}, \"shutils-4778\": {\"2\": [[11.600955999999996, 11.600978999999995], [11.601011000000028, 11.601022], [11.60107099999999, 11.601080000000024], [11.601134000000002, 11.601142999999979], [11.601325000000031, 11.602874999999983]]}, \"irq/19-408000.q-572\": {\"1\": [[0.058831999999995332, 0.05914100000001099], [0.05921899999998459, 0.059274000000016258], [0.059381000000030326, 0.059418999999991229], [0.29498599999999442, 0.29528399999998101], [0.29556600000000799, 0.29564199999998664], [0.29597599999999602, 0.29602199999999357]]}, \"rt-app-4770\": {\"1\": [[0.30870900000002166, 0.30888800000002448]]}, \"VosWDThread-1455\": {\"0\": [[2.8247380000000248, 2.824764000000016]]}, \"busybox-4767\": {\"0\": [[0.29275499999999965, 0.2948729999999955], [0.29493000000002212, 0.29525000000001], [0.2952900000000227, 0.29564099999998916], [0.29565600000000813, 0.29726299999998673]]}, \"InputReader-1399\": {\"0\": [[1.8325080000000185, 1.8326470000000086]]}, \"sh-4747\": {\"0\": [[0.0013230000000135078, 0.0027460000000019136]]}, \"su-4777\": {\"0\": [[11.56950599999999, 11.570170000000019], [11.570190000000025, 11.577651000000003]], \"1\": [[11.577959000000021, 11.579076999999984]]}, \"task2-4772\": {\"0\": [[0.30887000000001308, 0.30888299999998026], [0.30891500000001315, 0.30892699999998285], [0.3090050000000133, 0.30904700000002094], [0.30906199999998307, 0.30912999999998192], [0.30955299999999397, 0.3095779999999877], [0.30959000000001424, 0.30981900000000451], [0.30989800000003243, 0.31050499999997783], [0.31055200000002969, 0.31530200000003106], [0.31535800000000336, 0.31591100000002825], [0.31595600000002833, 0.36834900000002335], [0.36841199999997798, 0.37143600000001697], [0.37149299999998675, 0.41471999999998843], [0.42139100000002827, 0.42806200000001127], [0.43471399999998539, 0.44138800000001766], [0.4480649999999855, 0.45471700000001647], [0.46138799999999947, 0.46805699999998751], [0.47143299999999044, 0.47805800000003273], [0.48471599999999171, 0.49138800000002902], [0.49806599999999435, 0.50471700000002784], [0.51138900000000831, 0.51806299999998373], [0.52471700000000965, 0.53138899999999012], [0.53806100000002743, 0.54472800000002053], [0.5513880000000313, 0.55806100000000924], [0.56471900000002506, 0.57141500000000178], [0.57806399999998348, 0.58471700000001192], [0.59138999999998987, 0.59806500000001961], [0.60471599999999626, 0.61138800000003357], [0.61806100000001152, 0.62471700000003239], [0.63138800000001538, 0.63806099999999333], [0.64472799999998642, 0.65138799999999719], [0.65806100000003198, 0.66471699999999601], [0.67144000000001824, 0.67806100000001379], [0.68471800000003213, 0.69140199999998231], [0.69806599999998298, 0.70471700000001647], [0.71138799999999947, 0.71806300000002921], [0.72471699999999828, 0.73138599999998632], [0.73806600000000344, 0.74473000000000411], [0.75138800000001993, 0.75806299999999283], [0.76471700000001874, 0.77141299999999546], [0.77806099999997969, 0.78471700000000055], [0.79139400000002524, 0.79806300000001329], [0.80471799999997984, 0.81138299999997798], [0.8180550000000153, 0.82471700000002102], [0.83138800000000401, 0.83806199999997943], [0.8447280000000319, 0.85138799999998582], [0.85806100000002061, 0.86471699999998464], [0.87144000000000688, 0.87806299999999737], [0.88471700000002329, 0.89138800000000629], [0.89806299999997918, 0.9047170000000051], [0.91138899999998557, 0.91806100000002289], [0.92471699999998691, 0.93138900000002423], [0.93806200000000217, 0.94472799999999779], [0.95139000000000351, 0.95806099999998651], [0.96471700000000737, 0.97140999999999167], [0.97806100000002516, 0.98471699999998918], [0.99138800000002902, 0.99807099999998172], [1.0047170000000278, 1.0113880000000108], [1.0180609999999888, 1.0247150000000147], [1.0313859999999977, 1.0380610000000274], [1.0447280000000205, 1.0513880000000313], [1.0580610000000092, 1.0647170000000301], [1.071438999999998, 1.0780609999999911], [1.0847170000000119, 1.0913879999999949], [1.0980650000000196, 1.1047179999999912], [1.1113869999999793, 1.1180610000000115], [1.1247170000000324, 1.1313870000000179], [1.1380609999999933, 1.1447299999999814], [1.1547180000000026, 1.1613869999999906], [1.1680640000000153, 1.1714079999999853], [1.1714269999999942, 1.1780540000000315], [1.1847169999999778, 1.1913880000000177], [1.1980609999999956, 1.204716000000019], [1.2113860000000045, 1.2180609999999774], [1.2247169999999983, 1.2313869999999838], [1.238065000000006, 1.2447280000000092], [1.2513880000000199, 1.258070000000032], [1.2647190000000137, 1.2714129999999955], [1.2780609999999797, 1.284717999999998], [1.2913869999999861, 1.2947409999999877], [1.3013880000000313, 1.3080620000000067], [1.3147160000000326, 1.3213880000000131], [1.3280639999999835, 1.3347190000000069], [1.3413879999999949, 1.3480660000000171], [1.3547179999999912, 1.358079000000032], [1.3581240000000321, 1.3647179999999821], [1.3714439999999968, 1.3780610000000024], [1.3847170000000233, 1.3913890000000038], [1.3980629999999792, 1.4047170000000051], [1.4113889999999856, 1.4180610000000229], [1.4247169999999869, 1.4313870000000293], [1.4380610000000047, 1.4447279999999978], [1.4513880000000086, 1.458061999999984], [1.4647190000000023, 1.4714089999999942], [1.4780640000000176, 1.4847169999999892], [1.4913870000000315, 1.4980669999999918], [1.5047170000000278, 1.5113880000000108], [1.518066000000033, 1.5247130000000197], [1.5313869999999952, 1.5380579999999782], [1.5447250000000281, 1.5513880000000313], [1.5580580000000168, 1.5647139999999808], [1.5714320000000157, 1.5780609999999911], [1.5847140000000195, 1.5913879999999949], [1.5980670000000146, 1.6047140000000013], [1.6113880000000336, 1.6180580000000191], [1.6247139999999831, 1.6313890000000129], [1.6380580000000009, 1.644724999999994], [1.6513879999999972, 1.6580579999999827], [1.6647140000000036, 1.6714089999999828], [1.6780580000000214, 1.6847139999999854], [1.6913890000000151, 1.6980649999999855], [1.704714000000024, 1.7113879999999995], [1.7180569999999875, 1.7247189999999932], [1.7317929999999819, 1.7380620000000135], [1.7447300000000041, 1.7513890000000174], [1.7580629999999928, 1.7647180000000162], [1.7714409999999816, 1.7780690000000163], [1.784717999999998, 1.7913879999999835], [1.7980630000000133, 1.8047169999999824], [1.8113870000000247, 1.8180610000000001], [1.8247200000000134, 1.831388000000004], [1.8413899999999899, 1.8480670000000146], [1.8547169999999937, 1.8613869999999793], [1.8680610000000115, 1.8685110000000122], [1.8685560000000123, 1.8714219999999955], [1.8780639999999948, 1.8847170000000233], [1.8913890000000038, 1.8980629999999792], [1.9047170000000051, 1.911389999999983], [1.9180630000000178, 1.9247179999999844], [1.9313870000000293, 1.9380629999999996], [1.9447279999999978, 1.9513880000000086], [1.9580629999999815, 1.9647170000000074], [1.9714410000000271, 1.9780630000000201], [1.9847169999999892, 1.991388000000029], [1.9980649999999969, 2.0047170000000278], [2.0113890000000083, 2.0180629999999837], [2.0247170000000096, 2.0313879999999926], [2.0380690000000072, 2.0447280000000205], [2.0513880000000313, 2.0580630000000042], [2.0647170000000301, 2.0714120000000094], [2.0780609999999911, 2.0847170000000119], [2.0913869999999974, 2.0980650000000196], [2.1047169999999937, 2.1113880000000336], [2.1180610000000115, 2.1247190000000273], [2.1313880000000154, 2.1380629999999883], [2.1447279999999864, 2.1513879999999972], [2.158061000000032, 2.164716999999996], [2.1714319999999816, 2.1780529999999771], [2.1847190000000296, 2.1913890000000151], [2.1980629999999906, 2.2047170000000165], [2.211387000000002, 2.2180609999999774], [2.2247169999999983, 2.2313859999999863], [2.2382880000000114, 2.2447300000000041], [2.2517510000000129, 2.2527620000000184], [2.2531230000000164, 2.2532580000000166], [2.2532990000000268, 2.253405999999984], [2.2534410000000094, 2.253577000000007], [2.2538569999999822, 2.2548689999999851], [2.2561870000000113, 2.2613870000000134], [2.266255000000001, 2.2672660000000064], [2.2672900000000027, 2.2714090000000056], [2.277528000000018, 2.2826370000000225], [2.2877660000000333, 2.2928780000000302], [2.3047159999999849, 2.3080630000000042], [2.3138250000000085, 2.3180629999999951], [2.3187280000000214, 2.3247220000000084], [2.331389999999999, 2.3380530000000022], [2.3447320000000218, 2.3513889999999833], [2.3580610000000206, 2.3614069999999856], [2.3680610000000115, 2.3685780000000136], [2.368629999999996, 2.3714820000000145], [2.3715270000000146, 2.3780619999999999], [2.3847180000000208, 2.3913890000000038], [2.3980670000000259, 2.4047170000000051], [2.4113879999999881, 2.4180620000000204], [2.4247169999999869, 2.4313910000000192], [2.4380639999999971, 2.4447279999999978], [2.4513919999999985, 2.4580639999999789], [2.4647160000000099, 2.4649110000000292], [2.4650110000000041, 2.4714180000000283], [2.4780569999999784, 2.4847129999999993], [2.4913849999999798, 2.4980630000000019], [2.5047129999999811, 2.5113880000000108], [2.5180589999999938, 2.5247780000000262], [2.5313879999999926, 2.5380590000000325], [2.5447230000000332, 2.5513890000000288], [2.5580630000000042, 2.5647129999999834], [2.5714930000000322, 2.578062999999986], [2.584713000000022, 2.5913879999999949], [2.5980650000000196, 2.6047130000000038], [2.6113880000000336, 2.6180590000000166], [2.6247129999999856, 2.6313880000000154], [2.6380589999999984, 2.644722999999999], [2.6513879999999972, 2.6580589999999802], [2.6647130000000061, 2.6714150000000245], [2.6780620000000113, 2.6847159999999803], [2.6913880000000177, 2.6980649999999855], [2.7047130000000266, 2.7113879999999995], [2.7180609999999774, 2.7247130000000084], [2.7313879999999813, 2.7380590000000211], [2.7447230000000218, 2.7513880000000199], [2.7580590000000029, 2.7647120000000314], [2.7714349999999968, 2.7780589999999847], [2.7847120000000132, 2.7913869999999861], [2.7980630000000133, 2.8047159999999849], [2.8113880000000222, 2.8180710000000317], [2.8247789999999782, 2.8313890000000015], [2.8380640000000312, 2.8447330000000193], [2.8513879999999858, 2.8580610000000206], [2.8647179999999821, 2.8686400000000276], [2.8714570000000208, 2.8780610000000024], [2.8847170000000233, 2.8913880000000063], [2.8980660000000285, 2.9047160000000076], [2.9113879999999881, 2.9180620000000204], [2.9247169999999869, 2.9313870000000293], [2.9380610000000047, 2.9447279999999978], [2.9513880000000086, 2.9580609999999865], [2.9689750000000004, 2.9697709999999802], [2.9731140000000096, 2.981392000000028], [2.9913890000000265, 2.994735999999989], [3.0047170000000278, 3.0113850000000184], [3.0180540000000065, 3.024723999999992], [3.0313879999999926, 3.0380630000000224], [3.0447270000000231, 3.0513880000000313], [3.0580640000000017, 3.0647160000000326], [3.0714199999999892, 3.0780720000000201], [3.0847160000000144, 3.091386], [3.0980630000000247, 3.1047169999999937], [3.1113859999999818, 3.1180610000000115], [3.1247159999999781, 3.1313870000000179], [3.1380609999999933, 3.1447279999999864], [3.1513869999999997, 3.158061000000032], [3.1647159999999985, 3.1714109999999778], [3.1780529999999771, 3.1847180000000321], [3.1913870000000202, 3.1980619999999931], [3.204716000000019, 3.2113879999999995], [3.2180609999999774, 3.2247160000000008], [3.2313879999999813, 3.2380610000000161], [3.2447250000000167, 3.2513870000000225], [3.2580679999999802, 3.2647130000000288], [3.2714129999999955, 3.2780609999999797], [3.284719999999993, 3.2913879999999835], [3.2947730000000206, 3.3013859999999795], [3.3080630000000042, 3.3147180000000276], [3.3213890000000106, 3.328062999999986], [3.3347200000000043, 3.3413869999999974], [3.3480650000000196, 3.3547169999999937], [3.3613880000000336, 3.3680630000000065], [3.3747190000000273, 3.3813870000000179], [3.3880599999999959, 3.394724999999994], [3.4013879999999972, 3.4080579999999827], [3.4147140000000036, 3.4213869999999815], [3.4280610000000138, 3.4347139999999854], [3.4413880000000177, 3.448063999999988], [3.454714000000024, 3.461387000000002], [3.4680680000000166, 3.4747189999999932], [3.4813859999999863, 3.4880610000000161], [3.4947250000000167, 3.5013870000000225], [3.5080609999999979, 3.5147130000000288], [3.5213870000000043, 3.5280599999999822], [3.5347130000000107, 3.5413879999999835], [3.5480640000000108, 3.5547129999999925], [3.5613870000000247, 3.5680600000000027], [3.5747989999999845, 3.581388000000004], [3.5880579999999895, 3.5947249999999826], [3.6013879999999858, 3.6080600000000231], [3.6147189999999796, 3.621387000000027], [3.6280610000000024, 3.6347140000000309], [3.6413870000000088, 3.6480640000000335], [3.6547130000000152, 3.6613869999999906], [3.6680580000000305, 3.6747179999999844], [3.6813880000000268, 3.6880620000000022], [3.6947250000000054, 3.7013870000000111], [3.7080579999999941, 3.7147140000000149], [3.7213859999999954, 3.7280630000000201], [3.7347139999999968, 3.7413859999999772], [3.7480639999999994, 3.7547129999999811], [3.7613850000000184, 3.7680560000000014], [3.7747170000000096, 3.7813869999999952], [3.7847659999999905, 3.7913869999999861], [3.7980630000000133, 3.8047159999999849], [3.8113870000000247, 3.8180580000000077], [3.824719000000016, 3.8313870000000065], [3.8380599999999845, 3.8447259999999801], [3.8513869999999883, 3.858064000000013], [3.8647159999999872, 3.868787999999995], [3.8747190000000273, 3.8813870000000179], [3.8880599999999959, 3.8913939999999911], [3.8980640000000335, 3.9047160000000076], [3.9113859999999931, 3.9180630000000178], [3.9247159999999894, 3.9313860000000318], [3.9380600000000072, 3.9447260000000028], [3.9513870000000111, 3.9580609999999865], [3.9647150000000124, 3.9714109999999891], [3.9780600000000277, 3.9847159999999917], [3.991388000000029, 3.9980630000000019], [4.0047150000000329, 4.0113870000000134], [4.0180599999999913, 4.0247160000000122], [4.0313869999999952, 4.0380610000000274], [4.0447250000000281, 4.0513890000000288], [4.0580600000000118, 4.0647160000000326], [4.0714100000000144, 4.0780599999999936], [4.084715000000017, 4.091386], [4.0980620000000272, 4.1047159999999963], [4.1113869999999793, 4.1180659999999989], [4.1247159999999781, 4.1313860000000204], [4.1380609999999933, 4.1447259999999915], [4.1513860000000022, 4.158061000000032], [4.1647150000000011, 4.1714099999999803], [4.1780570000000239, 4.1847180000000321], [4.1913880000000177, 4.1980629999999906], [4.204716000000019, 4.211387000000002], [4.2180599999999799, 4.2247160000000008], [4.2313869999999838, 4.2380600000000186], [4.2447250000000167, 4.2513870000000225], [4.2580679999999802, 4.2647150000000238], [4.2714110000000005, 4.2780599999999822], [4.284717999999998, 4.2913970000000177], [4.2947429999999827, 4.3013870000000338], [4.3080600000000118, 4.3147129999999834], [4.3213870000000156, 4.3280579999999986], [4.334713000000022, 4.3413869999999974], [4.3480640000000221, 4.3547130000000038], [4.3613880000000336, 4.3680610000000115], [4.3747190000000273, 4.3813870000000179], [4.3880589999999984, 4.394724999999994], [4.4013860000000022, 4.4080579999999827], [4.4147130000000061, 4.4213890000000333], [4.4280600000000163, 4.4347129999999879], [4.4413870000000202, 4.448063999999988], [4.454714000000024, 4.4613860000000045], [4.4680599999999799, 4.4747189999999932], [4.4813879999999813, 4.4880590000000211], [4.4947250000000167, 4.5013870000000225], [4.5080710000000295, 4.5147120000000314], [4.5213870000000043, 4.5280589999999847], [4.5347130000000107, 4.5413879999999835], [4.5480650000000082, 4.554711999999995], [4.5613880000000222, 4.5680590000000052], [4.574719000000016, 4.5813870000000065], [4.5880619999999794, 4.5947229999999877], [4.6013869999999883, 4.6080590000000257], [4.6147129999999947, 4.621387000000027], [4.6280590000000075, 4.6347119999999791], [4.6413959999999861, 4.6480660000000285], [4.6547120000000177, 4.6613869999999906], [4.6680590000000279, 4.6747189999999819], [4.6813870000000293, 4.6880590000000097], [4.6947230000000104, 4.7013860000000136], [4.7080589999999916, 4.7147160000000099], [4.7213820000000055, 4.7280600000000277], [4.7347120000000018, 4.741388000000029], [4.7480649999999969, 4.7547119999999836], [4.7613870000000134, 4.7680639999999812], [4.7747200000000021, 4.7813869999999952], [4.7881380000000036, 4.7947240000000306], [4.8013880000000313, 4.8080620000000067], [4.8147160000000326, 4.8213820000000283], [4.8280659999999784, 4.8347120000000245], [4.8413869999999974, 4.8480640000000221], [4.8547130000000038, 4.8613869999999793], [4.8680590000000166, 4.86888399999998], [4.868912000000023, 4.8747220000000198], [4.8813880000000154, 4.8880589999999984], [4.894722999999999, 4.9013879999999972], [4.9080589999999802, 4.9147120000000086], [4.9213869999999815, 4.9280610000000138], [4.9347139999999854, 4.9413880000000177], [4.9480629999999906, 4.9547120000000291], [4.9613879999999995, 4.9680589999999825], [4.9747209999999882, 4.9813879999999813], [4.9880590000000211, 4.9947240000000193], [5.0047160000000304, 5.0113890000000083], [5.0180599999999913, 5.0247160000000122], [5.0313869999999952, 5.0380569999999807], [5.0447219999999788, 5.0513839999999846], [5.0580590000000143, 5.0647149999999783], [5.0714110000000119, 5.0780599999999936], [5.084715000000017, 5.091386], [5.0980620000000272, 5.1047149999999988], [5.1113869999999793, 5.118060000000014], [5.1247149999999806, 5.1313860000000204], [5.1380599999999959, 5.144724999999994], [5.1513869999999997, 5.1580650000000219], [5.1647150000000011, 5.1714109999999778], [5.1780590000000188, 5.1847129999999879], [5.1913870000000202, 5.1980609999999956], [5.2047150000000215, 5.2113860000000045], [5.2180599999999799, 5.2247150000000033], [5.2313869999999838, 5.2380600000000186], [5.2447250000000167, 5.251386000000025], [5.2580600000000004, 5.2647150000000238], [5.271410000000003, 5.2780589999999847], [5.2847160000000031, 5.2913980000000151], [5.2947460000000319, 5.3013859999999795], [5.3080580000000168, 5.3147119999999859], [5.3213870000000156, 5.3280579999999986], [5.3347120000000245, 5.3413869999999974], [5.3480650000000196, 5.3547120000000064], [5.3613869999999793, 5.3680590000000166], [5.3747180000000299, 5.3813870000000179], [5.3880580000000009, 5.394722999999999], [5.4013879999999972, 5.4080579999999827], [5.4147130000000061, 5.421387999999979], [5.4280580000000214, 5.4347119999999904], [5.4413880000000177, 5.4480649999999855], [5.4547120000000291, 5.461387000000002], [5.46805599999999, 5.4747150000000033], [5.4813829999999939, 5.4880640000000085], [5.4947310000000016, 5.5013880000000199], [5.5080629999999928, 5.5147180000000162], [5.5213880000000017, 5.5280619999999772], [5.5347160000000031, 5.5413879999999835], [5.5480739999999855, 5.5547159999999849], [5.5613880000000222, 5.5680629999999951], [5.5747200000000134, 5.5813870000000065], [5.5880579999999895, 5.5947229999999877], [5.6013879999999858, 5.6080590000000257], [5.6147129999999947, 5.621387000000027], [5.6280590000000075, 5.6347119999999791], [5.6413870000000088, 5.648065000000031], [5.6547130000000152, 5.6613869999999906], [5.6680660000000103, 5.6747189999999819], [5.6813880000000268, 5.6880590000000097], [5.6947279999999978, 5.7013870000000111], [5.7080579999999941, 5.7147130000000175], [5.7213869999999929, 5.7280580000000327], [5.7347129999999993, 5.7413870000000315], [5.7480649999999969, 5.7547119999999836], [5.7613880000000108, 5.7680579999999964], [5.7747190000000046, 5.7813879999999926], [5.7880579999999782, 5.7947250000000281], [5.8013870000000338, 5.8080630000000042], [5.8147139999999808, 5.8213890000000106], [5.8280540000000087, 5.8347160000000144], [5.8413869999999974, 5.8480630000000247], [5.8547159999999963, 5.8613849999999843], [5.8680610000000115, 5.8689810000000193], [5.8690119999999979, 5.8747200000000248], [5.8847150000000283, 5.8913860000000113], [5.8980609999999842, 5.9047150000000101], [5.9113859999999931, 5.9180590000000279], [5.9247240000000261, 5.9313860000000318], [5.9380629999999996, 5.9447250000000054], [5.9513860000000136, 5.9580589999999916], [5.9647150000000124, 5.9714099999999917], [5.9780590000000302, 5.9847139999999968], [5.9913859999999772, 5.998061000000007], [6.0014499999999771, 6.0080580000000054], [6.0147120000000314, 6.0213870000000043], [6.0280599999999822, 6.0347120000000132], [6.0413869999999861, 6.0480650000000082], [6.0547129999999925, 6.0613880000000222], [6.0680629999999951, 6.074719000000016], [6.081388000000004, 6.088058999999987], [6.0947229999999877, 6.1013879999999858], [6.1080610000000206, 6.1147129999999947], [6.121387000000027, 6.12805800000001], [6.1347130000000334, 6.1413870000000088], [6.148065000000031, 6.1547120000000177], [6.1613869999999906, 6.1680580000000305], [6.1747179999999844, 6.1813940000000116], [6.1880629999999996, 6.1947230000000104], [6.2013880000000086, 6.2080579999999941], [6.2180609999999774, 6.2247150000000033], [6.2313859999999863, 6.2380600000000186], [6.2447240000000193, 6.2513850000000275], [6.2580590000000029, 6.2647150000000238], [6.2714090000000056, 6.2780599999999822], [6.2847160000000031, 6.2913879999999835], [6.2947619999999915, 6.3013870000000338], [6.3088529999999992, 6.3089919999999893], [6.3096570000000156, 6.3097230000000195], [6.3097650000000272, 6.3112980000000221], [6.3180540000000178, 6.3213870000000156], [6.3214140000000043, 6.3218390000000113], [6.3220039999999926, 6.3221060000000193], [6.3221439999999802, 6.3222460000000069], [6.322275999999988, 6.3223419999999919], [6.3223730000000273, 6.3225239999999872], [6.3225630000000024, 6.3227180000000089], [6.3227610000000141, 6.3228879999999776], [6.322923000000003, 6.3230690000000322], [6.323112999999978, 6.32325000000003], [6.3233539999999948, 6.3313860000000091], [6.341386, 6.3480650000000196], [6.3547149999999988, 6.3613859999999818], [6.3680610000000115, 6.3690450000000283], [6.369103999999993, 6.3747210000000223], [6.3813880000000154, 6.3880589999999984], [6.394722999999999, 6.4013879999999972], [6.408061000000032, 6.4147130000000061], [6.4213869999999815, 6.4280590000000188], [6.4347119999999904, 6.4413880000000177], [6.4480649999999855, 6.4547130000000266], [6.4613879999999995, 6.4680589999999825], [6.4747189999999932, 6.4813879999999813], [6.4880590000000211, 6.4947230000000218], [6.5013870000000225, 6.5080590000000029], [6.5147120000000314, 6.5213870000000043], [6.5280589999999847, 6.5347130000000107], [6.5413879999999835, 6.5480650000000082], [6.554711999999995, 6.5613860000000273], [6.5680550000000153, 6.5747150000000261], [6.581388000000004, 6.5880670000000237], [6.5947259999999801, 6.6013869999999883], [6.6080590000000257, 6.6147139999999922], [6.6213880000000245, 6.6280590000000075], [6.6347130000000334, 6.6413880000000063], [6.6480660000000285, 6.6547120000000177], [6.6613869999999906, 6.6680580000000305], [6.6747189999999819, 6.6813870000000293], [6.6880590000000097, 6.6947319999999877], [6.7013870000000111, 6.7080589999999916], [6.71471200000002, 6.7213889999999878], [6.7280590000000302, 6.7347120000000018], [6.7413870000000315, 6.7480649999999969], [6.7547119999999836, 6.7613870000000134], [6.7680589999999938, 6.7747200000000021], [6.7813859999999977, 6.7880590000000325], [6.7947230000000332, 6.8013870000000338], [6.8080590000000143, 6.8147160000000326], [6.8213880000000131, 6.8280550000000062], [6.8347160000000144, 6.841386], [6.8480720000000019, 6.8547179999999912], [6.861389000000031, 6.8680630000000065], [6.8747200000000248, 6.8813860000000204], [6.8880589999999984, 6.894722999999999], [6.9013869999999997, 6.9080579999999827], [6.9147120000000086, 6.921387999999979], [6.9280580000000214, 6.9347129999999879], [6.9413870000000202, 6.948065999999983], [6.9547120000000291, 6.961387000000002], [6.968057999999985, 6.9747199999999907], [6.9813869999999838, 6.9880590000000211], [6.9947230000000218, 7.0013870000000225], [7.0080590000000029, 7.0147120000000314], [7.0213870000000043, 7.0280609999999797], [7.0347120000000132, 7.0413879999999835], [7.0480630000000133, 7.0547129999999925], [7.0613870000000247, 7.0680580000000077], [7.074719000000016, 7.081389999999999], [7.088058999999987, 7.0947229999999877], [7.1013869999999883, 7.1080630000000156], [7.1147119999999973, 7.1213880000000245], [7.1280590000000075, 7.1347119999999791], [7.1413870000000088, 7.1480629999999792], [7.1547120000000177, 7.1613869999999906], [7.1680590000000279, 7.1747179999999844], [7.1813870000000293, 7.1880530000000249], [7.1947279999999978, 7.2013870000000111], [7.2080660000000307, 7.2147289999999771], [7.2213879999999904, 7.2280630000000201], [7.2347159999999917, 7.241388000000029], [7.2480659999999943, 7.2547160000000304], [7.261382000000026, 7.2680629999999837], [7.2747180000000071, 7.2813869999999952], [7.2880610000000274, 7.2947340000000054], [7.3013870000000338, 7.3080580000000168], [7.3147119999999859, 7.3213850000000207], [7.3280589999999961, 7.334713000000022], [7.3413869999999974, 7.3480630000000247], [7.3547120000000064, 7.3613880000000336], [7.3680630000000065, 7.3691699999999969], [7.369197999999983, 7.3747190000000273], [7.3813870000000179, 7.3880580000000009], [7.3947220000000016, 7.4013899999999921], [7.4080589999999802, 7.4147130000000061], [7.4213869999999815, 7.4247379999999907], [7.4313870000000293, 7.4380600000000072], [7.4447250000000054, 7.4513850000000161], [7.458059999999989, 7.4647209999999973], [7.4714129999999841, 7.4780590000000302], [7.4847179999999867, 7.491388000000029], [7.4980679999999893, 7.5047150000000329], [7.5113860000000159, 7.5180589999999938], [7.5247200000000021, 7.5313840000000027], [7.5380590000000325, 7.5447250000000281], [7.5513859999999795, 7.5580590000000143], [7.5647149999999783, 7.5714140000000043], [7.5780589999999961, 7.5847140000000195], [7.5913850000000025, 7.5980589999999779], [7.6047140000000013, 7.6113839999999868], [7.6180560000000241, 7.6247139999999831], [7.6313840000000255, 7.638056000000006], [7.6447220000000016, 7.6513830000000098], [7.6580589999999802, 7.6647159999999985], [7.6690669999999841, 7.6747189999999819], [7.6813819999999851, 7.6880859999999984], [7.6947329999999852, 7.7013870000000111], [7.7080650000000333, 7.7147180000000048], [7.7213869999999929, 7.7280590000000302], [7.7347129999999993, 7.7413870000000315], [7.7480649999999969, 7.7547109999999861], [7.7613860000000159, 7.7680589999999938], [7.7747180000000071, 7.7813869999999952], [7.7880590000000325, 7.7947219999999788], [7.8013870000000338, 7.8080580000000168], [7.8147109999999884, 7.8213890000000106], [7.8280570000000012, 7.8347190000000069], [7.8413889999999924, 7.8480630000000247], [7.8547120000000064, 7.8613869999999793], [7.8680590000000166, 7.8692409999999882], [7.8692970000000173, 7.8747210000000223], [7.8813870000000179, 7.8880629999999883], [7.894722999999999, 7.9013850000000048], [7.9080579999999827, 7.9147110000000112], [7.9213869999999815, 7.9280590000000188], [7.9347119999999904, 7.9413860000000227], [7.9480649999999855, 7.9547130000000266], [7.9613860000000045, 7.968057999999985], [7.9747219999999857, 7.9813869999999838], [7.9880620000000135, 7.9947220000000243], [8.0013870000000225, 8.0080580000000054], [8.0147120000000314, 8.018066000000033], [8.0192119999999818, 8.0247170000000096], [8.0314180000000306, 8.0380640000000199], [8.0447240000000306, 8.0513859999999795], [8.0580570000000193, 8.0647139999999808], [8.0714179999999942, 8.0780589999999961], [8.0847140000000195, 8.0913850000000025], [8.0980620000000272, 8.1047140000000013], [8.1113859999999818, 8.1180590000000166], [8.1247139999999831, 8.1313860000000204], [8.1380589999999984, 8.1447239999999965], [8.1513860000000022, 8.1580599999999777], [8.1647140000000036, 8.1714109999999778], [8.1780590000000188, 8.1847119999999904], [8.1913860000000227, 8.1980669999999805], [8.204716000000019, 8.2114090000000033], [8.2180599999999799, 8.2247150000000033], [8.2313859999999863, 8.2380590000000211], [8.2447260000000142, 8.2513870000000225], [8.2580600000000004, 8.2647150000000238], [8.2714149999999904, 8.278064000000029], [8.2847160000000031, 8.2913950000000227], [8.3013859999999795, 8.3080580000000168], [8.3147119999999859, 8.3213880000000131], [8.3280579999999986, 8.3347120000000245], [8.3413869999999974, 8.3480640000000221], [8.3547110000000089, 8.3613859999999818], [8.368060000000014, 8.369322000000011], [8.3693680000000086, 8.3747200000000248], [8.3813870000000179, 8.3880609999999933], [8.3947220000000016, 8.4013869999999997], [8.4080690000000118, 8.4147110000000112], [8.4213869999999815, 8.4280800000000227], [8.4347119999999904, 8.4413870000000202], [8.448063999999988, 8.4547130000000266], [8.4613860000000045, 8.468057999999985], [8.4747169999999983, 8.4813859999999863], [8.4880580000000236, 8.4947240000000193], [8.5013870000000225, 8.5080580000000054], [8.514710999999977, 8.5213860000000068], [8.5280579999999873, 8.5347120000000132], [8.5413859999999886, 8.5480670000000032], [8.5547109999999975, 8.5613870000000247], [8.5680580000000077, 8.574719000000016], [8.5813870000000065, 8.588058999999987], [8.5947180000000003, 8.6013829999999984], [8.608050999999989, 8.6147159999999872], [8.6213850000000321, 8.6280600000000049], [8.6347150000000283, 8.6380780000000073], [8.6381210000000124, 8.6447239999999965], [8.6513860000000022, 8.6580579999999827], [8.6647120000000086, 8.671414000000027], [8.6780590000000188, 8.6847139999999854], [8.6913850000000252, 8.6980599999999981], [8.704714000000024, 8.7113860000000045], [8.7180589999999825, 8.7247140000000059], [8.7313849999999888, 8.7380590000000211], [8.7447240000000193, 8.751386000000025], [8.7580590000000029, 8.7647140000000263], [8.7714090000000056, 8.7780589999999847], [8.7847140000000081, 8.7913859999999886], [8.7980650000000082, 8.8047139999999899], [8.8113850000000298, 8.8180610000000001], [8.8247130000000311, 8.8313810000000217], [8.8380599999999845, 8.8447249999999826], [8.8513859999999909, 8.8580600000000231], [8.8647159999999872, 8.86938600000002], [8.8747180000000299, 8.881385000000023], [8.8913830000000189, 8.8980609999999842], [8.9047140000000127, 8.9113879999999881], [8.9180590000000279, 8.9247139999999945], [8.9313860000000318, 8.9380590000000097], [8.9447240000000079, 8.9513850000000161], [8.9580589999999916, 8.9647160000000099], [8.9714099999999917, 8.9780600000000277], [8.9847139999999968, 8.9913859999999772], [8.998061000000007, 9.0047220000000152], [9.0113860000000159, 9.0180589999999938], [9.0247150000000147, 9.0313850000000002], [9.0380590000000325, 9.0447250000000281], [9.051384999999982, 9.0580649999999991], [9.0647139999999808, 9.0714090000000169], [9.0780589999999961, 9.0847140000000195], [9.091386, 9.0980610000000297], [9.1047140000000013, 9.1113849999999843], [9.1180590000000166, 9.1247139999999831], [9.1313860000000204, 9.1380589999999984], [9.1447239999999965, 9.1513860000000022], [9.1580589999999802, 9.1647140000000036], [9.1714099999999803, 9.1780590000000188], [9.1847119999999904, 9.1913860000000227], [9.1980629999999906, 9.2047150000000215], [9.2113860000000045, 9.2180599999999799], [9.2247150000000033, 9.2313869999999838], [9.2380600000000186, 9.2447260000000142], [9.2513870000000225, 9.2580600000000004], [9.2647150000000238, 9.2713990000000308], [9.2780529999999999, 9.2847150000000056], [9.2914119999999798, 9.2947280000000205], [9.2947449999999776, 9.3013870000000338], [9.3080570000000193, 9.311396000000002], [9.3141509999999812, 9.3141770000000292], [9.3142250000000217, 9.3142680000000269], [9.3142900000000282, 9.3147500000000036], [9.3172900000000141, 9.3175049999999828], [9.317545999999993, 9.3176869999999781], [9.3177259999999933, 9.3178690000000302], [9.3179099999999835, 9.3180940000000305], [9.3181490000000053, 9.3182479999999828], [9.3182919999999854, 9.3184170000000108], [9.3184560000000261, 9.3185990000000061], [9.318649999999991, 9.3187810000000013], [9.3198940000000334, 9.3280639999999835], [9.3380599999999845, 9.3447249999999826], [9.3513859999999909, 9.3580590000000257], [9.3647139999999922, 9.3694469999999797], [9.3747200000000248, 9.3813860000000204], [9.3880580000000009, 9.3947220000000016], [9.4013860000000022, 9.4080599999999777], [9.4147120000000086, 9.4213859999999841], [9.4280580000000214, 9.434710999999993], [9.4413880000000177, 9.4480700000000297], [9.4547110000000316, 9.4613860000000045], [9.468057999999985, 9.4747189999999932], [9.4813869999999838, 9.4880580000000236], [9.4947270000000117, 9.501386000000025], [9.5080580000000054, 9.514710999999977], [9.5213860000000068, 9.5280579999999873], [9.5347110000000157, 9.5413859999999886], [9.5480630000000133, 9.5547109999999975], [9.5613860000000273, 9.5680580000000077], [9.5747180000000185, 9.5813870000000065], [9.5880579999999895, 9.5947249999999826], [9.6013869999999883, 9.6080580000000282], [9.6147109999999998, 9.621387000000027], [9.62805800000001, 9.6347130000000334], [9.6414659999999799, 9.6480640000000335], [9.6547130000000152, 9.6613859999999931], [9.6680580000000305, 9.6747179999999844], [9.6813870000000293, 9.6880580000000123], [9.6947220000000129, 9.7013860000000136], [9.7080629999999815, 9.7147110000000225], [9.7213859999999954, 9.7280610000000252], [9.7347120000000018, 9.7413859999999772], [9.7480620000000044, 9.7547109999999861], [9.7647160000000213, 9.771410000000003], [9.7780589999999847, 9.7847150000000056], [9.7913859999999886, 9.7980610000000183], [9.8047139999999899, 9.8113860000000273], [9.8180590000000052, 9.8247140000000286], [9.8313820000000192, 9.8380670000000237], [9.8447239999999852, 9.8514040000000023], [9.8580590000000257, 9.8647119999999973], [9.8695430000000215, 9.8747200000000248], [9.8813870000000179, 9.8880580000000009], [9.8947239999999965, 9.9013860000000022], [9.9080579999999827, 9.9147110000000112], [9.9213869999999815, 9.9280580000000214], [9.934710999999993, 9.9413860000000227], [9.948063999999988, 9.9547110000000316], [9.9613860000000045, 9.9680660000000216], [9.9747189999999932, 9.9813869999999838], [9.9880600000000186, 9.9947220000000243], [10.001387000000022, 10.008057000000008], [10.014714000000026, 10.021387000000004], [10.028057999999987, 10.034713000000011], [10.041386999999986, 10.048064000000011], [10.054712999999992, 10.061386000000027], [10.06805700000001, 10.074717000000021], [10.081387000000007, 10.08805799999999], [10.094723999999985, 10.101386999999988], [10.108058000000028, 10.114711], [10.12138600000003, 10.128062], [10.134711999999979, 10.141386000000011], [10.148064000000034, 10.15471100000002], [10.161383999999998, 10.168057000000033], [10.174716999999987, 10.181386000000032], [10.188057000000015, 10.194729999999993], [10.201386000000014, 10.208060999999987], [10.21471600000001, 10.221386999999993], [10.228065000000015, 10.234714999999994], [10.241385999999977, 10.248063999999999], [10.254715000000033, 10.261387000000013], [10.268060999999989, 10.274718000000007], [10.281385, 10.288066000000015], [10.294758999999999, 10.30138599999998], [10.308059000000014, 10.314713999999981], [10.321385000000021, 10.328058999999996], [10.334714000000019, 10.341385000000002], [10.348062000000027, 10.354714000000001], [10.361385999999982, 10.368059000000017], [10.369590000000017, 10.37471800000003], [10.38138600000002, 10.388059999999996], [10.394723999999997, 10.401386000000002], [10.408056999999985, 10.414712000000009], [10.421385999999984, 10.428057000000024], [10.43471199999999, 10.441386000000023], [10.448062999999991, 10.454712000000029], [10.461385000000007, 10.46805599999999], [10.474714000000006, 10.481381999999996], [10.488069999999993, 10.494726000000014], [10.501385000000028, 10.508064999999988], [10.514716000000021, 10.521386000000007], [10.52806099999998, 10.534716000000003], [10.541384999999991, 10.548065000000008], [10.554714999999987, 10.561387000000025], [10.568061, 10.574717000000021], [10.581386000000009, 10.58805799999999], [10.59472199999999, 10.601385999999991], [10.608061000000021, 10.61471499999999], [10.621387000000027, 10.62805800000001], [10.634710999999982, 10.641387000000009], [10.648064000000034, 10.65471100000002], [10.661385999999993, 10.66805800000003], [10.674717999999984, 10.681387000000029], [10.688058000000012, 10.694722000000013], [10.701386000000014, 10.708057999999994], [10.714711000000023, 10.721383000000003], [10.728062000000023, 10.734711000000004], [10.741385999999977, 10.748067999999989], [10.754710999999986, 10.761386000000016], [10.768057999999996, 10.774718000000007], [10.781385999999998, 10.788057999999978], [10.794721999999979, 10.801394000000016], [10.808058000000017, 10.814710999999988], [10.821386000000018, 10.828059999999994], [10.834713000000022, 10.841386], [10.848064000000022, 10.85472900000002], [10.861385999999982, 10.868057000000022], [10.87471800000003, 10.88139000000001], [10.888059999999996, 10.894726999999989], [10.901386000000002, 10.908056999999985], [10.914711000000011, 10.921385999999984], [10.928058000000021, 10.93471199999999], [10.941386000000023, 10.948064999999986], [10.954711000000032, 10.961387999999999], [10.96805999999998, 10.974718999999993], [10.981385999999986, 10.988058000000024], [10.994722000000024, 11.001387000000022], [11.008062999999993, 11.014712000000031], [11.021386000000007, 11.02805699999999], [11.034714000000008, 11.041386999999986], [11.048064000000011, 11.05471399999999], [11.061387000000025, 11.064731999999992], [11.071408000000019, 11.078058999999996], [11.084714000000019, 11.091385000000002], [11.098060000000032, 11.104714000000001], [11.111385999999982, 11.118059000000017], [11.124713999999983, 11.131385000000023], [11.138063999999986, 11.144723999999997], [11.151386000000002, 11.158057999999983], [11.164714000000004, 11.171406999999988], [11.178059000000019, 11.184712999999988], [11.191380999999978, 11.198060999999996], [11.204714000000024, 11.211386000000005], [11.218058999999982, 11.224714000000006], [11.231383999999991, 11.238058000000024], [11.244724000000019, 11.251385000000028], [11.258065999999985, 11.264713000000029], [11.271408000000008, 11.278059999999982], [11.284715000000006, 11.291383999999994], [11.294764999999984, 11.30138599999998], [11.308058000000017, 11.314716000000033], [11.321387000000016, 11.328071000000023], [11.334714000000019, 11.338060999999982], [11.339955000000032, 11.340082999999993], [11.348067000000015, 11.358060000000023], [11.364727000000016, 11.36966000000001], [11.378060000000005, 11.388058999999998], [11.394722999999999, 11.401387], [11.40805899999998, 11.41139400000003], [11.411417000000029, 11.417912999999999], [11.424716999999987, 11.424965999999984]]}, \"<-transport-4124\": {\"0\": [[0.091611999999997806, 0.091723999999999251], [0.13885099999998829, 0.13894499999997834], [0.13899300000002768, 0.13916100000000142], [0.20311600000002272, 0.20328599999999142], [0.20338900000001559, 0.20342900000002828], [0.25077399999997851, 0.25086299999998118], [0.2509239999999977, 0.25107600000001185], [0.30162599999999884, 0.30172600000003058], [0.30298600000003262, 0.30304100000000744], [0.30981900000000451, 0.30989800000003243], [0.31050499999997783, 0.31055200000002969], [0.31530200000003106, 0.31535800000000336], [0.31591100000002825, 0.31595600000002833]], \"1\": [[0.0042389999999841166, 0.0043229999999994106], [0.0045470000000022992, 0.0045890000000099462], [0.055052999999986696, 0.055117999999993117], [0.055289000000016131, 0.055512000000021544], [0.30785400000002028, 0.30794300000002295], [11.502588000000003, 11.502730999999983], [11.551022999999986, 11.551081000000011], [11.55132100000003, 11.551529000000016], [11.607045000000028, 11.607159000000024], [11.607523000000015, 11.607587000000024], [11.658961000000033, 11.659033000000022], [11.659278000000029, 11.659506000000022], [11.696262999999988, 11.696314000000029], [11.696337000000028, 11.696430000000021], [11.750978000000032, 11.751052000000016], [11.751237000000003, 11.751490999999987]], \"2\": [[11.419073000000026, 11.419165000000021], [11.493042000000003, 11.493110999999999], [11.497786000000019, 11.497843999999986], [11.499757999999986, 11.49980800000003]], \"3\": [[11.502441000000033, 11.502512000000024]]}, \"adbd-4756\": {\"0\": [[0.14075900000000274, 0.14251100000001315]]}, \"adbd-4121\": {\"0\": [[0.13916100000000142, 0.13937800000002198], [0.13938799999999674, 0.14075900000000274], [0.14251100000001315, 0.14339599999999564], [0.20105999999998403, 0.20191499999998541], [0.2027259999999842, 0.20311600000002272], [0.20342900000002828, 0.20365200000003369], [0.25107600000001185, 0.25275099999998929], [0.25421499999998787, 0.2551859999999806], [0.30077299999999241, 0.30116500000002588], [0.30172600000003058, 0.30195000000003347], [0.30238800000000765, 0.30261400000000549], [0.30304100000000744, 0.30319500000001653], [0.30693999999999733, 0.30728299999998399]], \"1\": [[0.0020739999999932479, 0.0022359999999821412], [0.0028910000000337277, 0.0036519999999882202], [0.0043229999999994106, 0.0045470000000022992], [0.004615000000001146, 0.0048070000000279833], [0.055512000000021544, 0.057026000000007571], [0.05914100000001099, 0.05921899999998459], [0.059274000000016258, 0.059381000000030326], [0.059418999999991229, 0.059955999999999676], [0.060095999999987271, 0.060182999999994991], [0.060230999999987489, 0.060489000000018223], [0.090572000000008757, 0.090956000000005588], [0.090991000000030908, 0.091033999999979187], [0.091071999999996933, 0.091146999999978107], [0.091231999999990876, 0.091451000000006388], [0.091471000000012737, 0.091534000000024207], [0.091569999999990159, 0.091785000000015771], [0.091794999999990523, 0.091928999999993266], [0.30794300000002295, 0.30836199999998826], [0.30894599999999173, 0.30928399999999101], [0.30987900000002355, 0.31017300000002024], [0.3105419999999981, 0.31066800000002104], [0.31479999999999109, 0.31496299999997746], [0.31534600000003365, 0.31549100000000863], [0.31554499999998598, 0.31566400000002659], [0.31594599999999673, 0.31607800000000452], [11.417941999999982, 11.418440000000032], [11.551529000000016, 11.551890000000014], [11.551900999999987, 11.553442000000018], [11.555379000000016, 11.555968000000007], [11.556086999999991, 11.556187000000023], [11.556241, 11.556582999999989], [11.604651999999987, 11.604884000000027], [11.605503999999996, 11.605710999999985], [11.605750999999998, 11.606428999999991], [11.607185000000015, 11.607523000000015], [11.607624999999985, 11.607749000000013], [11.659537999999998, 11.661220000000014], [11.663146999999981, 11.663543000000004], [11.663569999999993, 11.66381899999999], [11.663943000000017, 11.664033000000018], [11.664083000000005, 11.664422999999999], [11.695326000000023, 11.695823000000019], [11.69593100000003, 11.696012999999994], [11.696065000000033, 11.696187000000009], [11.69622099999998, 11.696262999999988], [11.696314000000029, 11.696337000000028], [11.696430000000021, 11.696487999999988], [11.696524000000011, 11.696595000000002], [11.696605000000034, 11.696655000000021], [11.696675000000027, 11.696709999999996], [11.696728000000007, 11.696752000000004], [11.696763000000033, 11.697027999999989], [11.751490999999987, 11.751711], [11.751721000000032, 11.753217000000006], [11.755136999999991, 11.755708000000027], [11.75584600000002, 11.755917000000011], [11.755974999999978, 11.756272000000024]], \"2\": [[11.419165000000021, 11.419295000000034], [11.49202200000002, 11.492535000000032], [11.502482999999984, 11.502615999999989], [11.502705999999989, 11.502794999999992]], \"3\": [[11.493106000000012, 11.493227999999988], [11.497225000000014, 11.497334000000023], [11.497853000000021, 11.497964000000024], [11.499095000000011, 11.499206000000015], [11.49980800000003, 11.499916999999982], [11.500724999999989, 11.500755000000026], [11.50166999999999, 11.501994000000025]]}, \"hwrng-160\": {\"0\": [[0.29273100000000341, 0.29275499999999965], [0.2987810000000195, 0.29879699999997911], [0.30607000000003382, 0.30608499999999594], [11.55517500000002, 11.555211999999983], [11.555954999999983, 11.555971999999997], [11.567692000000022, 11.567729999999983], [11.570170000000019, 11.570190000000025]], \"1\": [[11.579076999999984, 11.57910099999998], [11.579716000000019, 11.579729999999984], [11.590310999999986, 11.590332999999987], [11.590669999999989, 11.590681000000018], [11.600266000000033, 11.600303999999994], [11.663104000000033, 11.663146999999981], [11.663543000000004, 11.663569999999993], [11.676062000000002, 11.67613799999998], [11.676449999999988, 11.676478000000031], [11.686762999999985, 11.686837000000025], [11.687192999999979, 11.68722200000002], [11.754867999999988, 11.754923000000019], [11.755833999999993, 11.75584600000002], [11.768164000000013, 11.768232000000012], [11.768816000000015, 11.768841000000009], [11.779659999999978, 11.779685000000029], [11.780289999999979, 11.780301000000009], [11.790655000000015, 11.790699000000018]], \"3\": [[0.05879600000002938, 0.058856999999989057], [0.05982899999997926, 0.059890999999993255], [0.070769999999981792, 0.070819000000028609], [0.070987000000002354, 0.070995999999979631], [0.080726000000026943, 0.080784999999991669], [0.081475000000011732, 0.081506999999987784], [0.1426710000000071, 0.14270399999998062], [0.14477700000003324, 0.14484299999998029], [0.15649500000000671, 0.15655800000001818], [0.15674599999999828, 0.15675399999997808], [0.16735299999999143, 0.16741799999999785], [0.16761000000002468, 0.16761900000000196], [0.18047599999999875, 0.18054300000000012], [0.18125700000001643, 0.18133399999999256], [0.19438500000001113, 0.19445300000000998], [0.25445799999999963, 0.25450399999999718], [0.25657200000000557, 0.25663500000001704], [0.26761399999998048, 0.26767799999998942], [0.26787699999999859, 0.26788499999997839], [0.28259000000002743, 0.28264999999998963], [0.28477800000001707, 0.28484200000002602]]}, \"busybox-4765\": {\"3\": [[0.2883679999999913, 0.28842100000002802], [0.28843899999998257, 0.28848299999998517], [0.28849000000002434, 0.28852200000000039], [0.28852799999998524, 0.28879599999999073], [0.28910300000001143, 0.28932300000002442], [0.28933000000000675, 0.28933899999998403], [0.28953300000000581, 0.28957000000002608]]}, \"shell srvc 4774-4775\": {\"0\": [[11.60539799999998, 11.605772000000002], [11.60579899999999, 11.605890999999986]]}, \"jbd2/sda35-8-529\": {\"0\": [[6.304725000000019, 6.3051270000000272]], \"2\": [[6.3116709999999898, 6.3118759999999838], [6.3130370000000084, 6.3131569999999897]]}, \"su-4787\": {\"0\": [[11.776599000000033, 11.778438999999992]], \"1\": [[11.778505999999993, 11.778618999999992], [11.778646999999978, 11.778670000000034], [11.778679000000011, 11.778705000000002], [11.778715000000034, 11.779659999999978]]}, \"kworker/1:0-13\": {\"1\": [[0.003719999999987067, 0.0037510000000224863], [0.091534000000024207, 0.091569999999990159], [0.3089130000000182, 0.30894599999999173], [0.30942199999998365, 0.3094380000000001], [0.30953499999998257, 0.30954600000001165], [0.31477599999999484, 0.31479999999999109], [0.31552499999997963, 0.31554499999998598], [0.47806100000002516, 0.47811400000000503], [2.2813970000000268, 2.2814290000000028], [3.2814089999999965, 3.2814460000000167], [4.5047270000000026, 4.50482599999998], [4.5048649999999952, 4.5049070000000029], [4.5049490000000105, 4.5049980000000005], [4.5050380000000132, 4.5051799999999957], [5.4914009999999962, 5.4914489999999887], [6.5580640000000017, 6.5581530000000043], [9.2814070000000015, 9.2814470000000142], [10.281400000000019, 10.281431999999995], [10.504729999999995, 10.504785000000027], [11.497168999999985, 11.497191999999984], [11.60654599999998, 11.60659099999998], [11.696187000000009, 11.69622099999998]]}, \"msm_watchdog-32\": {\"0\": [[1.7314180000000192, 1.7317929999999819], [9.7580960000000232, 9.7584499999999821]]}, \"cnss_diag-628\": {\"2\": [[2.9683959999999843, 2.9684940000000211], [2.9705319999999915, 2.9706310000000258]], \"3\": [[2.3184640000000059, 2.3185440000000312], [2.3187330000000088, 2.3190630000000283], [2.4651549999999816, 2.4657430000000318], [2.9693350000000009, 2.9701440000000048], [2.9731310000000235, 2.9735509999999863]]}, \"android.fg-1163\": {\"0\": [[1.8321809999999914, 1.8325080000000185], [1.8326470000000086, 1.8326769999999897], [1.8327179999999998, 1.8327290000000289], [1.8327620000000024, 1.8328579999999874]]}, \"cnd-1118\": {\"2\": [[7.690544999999986, 7.6906630000000291]]}, \"shell srvc 4752-4753\": {\"0\": [[0.090624999999988631, 0.09099900000001071], [0.091020000000014534, 0.091116999999997006]]}, \"su-4755\": {\"0\": [[0.073616000000015447, 0.074856000000011136], [0.074930999999992309, 0.078204000000027918], [0.078257000000007793, 0.084893000000022312]]}, \"rcu_sched-8\": {\"0\": [[0.091839999999990596, 0.091860999999994419], [0.091922000000010939, 0.091930999999988217], [0.20392300000003161, 0.20393400000000383], [0.20413000000002057, 0.20414299999998775], [0.20418200000000297, 0.20419300000003204], [0.20424200000002202, 0.20425099999999929], [0.20827600000001212, 0.20828699999998435]], \"1\": [[0.0037510000000224863, 0.0037760000000162108], [0.0048750000000268301, 0.0048929999999813845], [0.0050200000000018008, 0.005028999999979078], [0.0051149999999893225, 0.0051230000000259679], [0.0081220000000143955, 0.0081380000000308428], [0.0081500000000005457, 0.0081600000000321415], [0.014755999999977121, 0.014769000000001142], [0.091451000000006388, 0.091471000000012737], [0.091964000000018586, 0.091984000000024935], [0.098117999999999483, 0.098134000000015931], [0.1047500000000241, 0.10476399999998876], [11.502272000000005, 11.502292000000011], [11.508113999999978, 11.508141000000023], [11.606523999999979, 11.60654599999998], [11.608311000000015, 11.608341999999993], [11.608394000000033, 11.608407999999997], [11.614754000000005, 11.614770000000021], [11.696515000000034, 11.696524000000011], [11.696595000000002, 11.696605000000034], [11.696666999999991, 11.696675000000027], [11.696721000000025, 11.696728000000007], [11.701474000000019, 11.701488999999981], [11.70808599999998, 11.708099000000004]], \"2\": [[11.502177000000017, 11.502192999999977], [11.502245000000016, 11.502253999999994]], \"3\": [[11.502089000000012, 11.502099999999984], [11.502119999999991, 11.502139]]}, \"su-4759\": {\"0\": [[0.16016799999999876, 0.16839700000002722]]}, \"kworker/0:0-4\": {\"0\": [[0.0028229999999780375, 0.002866999999980635], [1.2947409999999877, 1.2947790000000055], [2.4649110000000292, 2.4650110000000041], [7.2947340000000054, 7.294776000000013]]}, \"kworker/0:3-472\": {\"0\": [[0.14491800000001831, 0.14493500000003223], [0.20101099999999406, 0.20105999999998403], [0.20236099999999624, 0.20248500000002423], [0.2948729999999955, 0.29493000000002212], [0.3007350000000315, 0.30077299999999241], [0.30235499999997728, 0.30238800000000765], [0.30689599999999473, 0.30693999999999733], [0.30904700000002094, 0.30906199999998307], [0.30921599999999216, 0.30923000000001366], [0.3095779999999877, 0.30959000000001424], [0.69140199999998231, 0.69142900000002783], [1.1480819999999881, 1.1481249999999932], [1.358079000000032, 1.3581100000000106], [2.2965480000000298, 2.296572000000026], [2.3614519999999857, 2.3614769999999794], [2.5714590000000044, 2.5714750000000208], [2.8714400000000069, 2.8714570000000208], [2.9647330000000238, 2.9647750000000315], [2.9687119999999823, 2.9687749999999937], [2.9697760000000244, 2.9730470000000082], [2.9847250000000258, 2.9854440000000295], [2.994735999999989, 2.9951260000000275], [2.9952420000000188, 2.9952809999999772], [2.9953899999999862, 2.9954349999999863], [2.995597000000032, 2.9964479999999867], [3.2947369999999978, 3.2947730000000206], [3.5747329999999806, 3.5747690000000034], [3.7847320000000195, 3.7847550000000183], [4.7881150000000048, 4.7881380000000036], [4.9981089999999995, 4.9981240000000184], [5.2913980000000151, 5.2914260000000013], [5.294729000000018, 5.2947460000000319], [5.8780720000000315, 5.8780940000000328], [6.0014009999999871, 6.0014310000000251], [6.2114040000000159, 6.2114290000000096], [7.2147689999999898, 7.214794999999981], [7.4247649999999794, 7.4247790000000009], [8.2114090000000033, 8.2114530000000059], [8.2913950000000227, 8.2914289999999937], [8.2947300000000155, 8.2947470000000294], [8.4280800000000227, 8.428118999999981], [8.6380780000000073, 8.6381069999999909], [9.3115490000000136, 9.3119580000000042], [9.3120910000000094, 9.3121390000000019], [9.3122470000000135, 9.312279999999987], [9.3124030000000175, 9.3124359999999911], [9.3125880000000052, 9.3126340000000027], [9.3127850000000194, 9.312831000000017], [9.312958999999978, 9.3129989999999907], [9.3131339999999909, 9.3131779999999935], [9.3133149999999887, 9.313352000000009], [9.3138720000000035, 9.3140680000000202], [9.6414429999999811, 9.6414659999999799], [9.8514349999999808, 9.8514490000000023], [10.294733000000008, 10.294758999999999], [10.85472900000002, 10.854766999999981], [11.064731999999992, 11.064757999999983]]}, \"kworker/u8:8-924\": {\"0\": [[0.0027460000000019136, 0.0028229999999780375], [0.011427000000026055, 0.011479000000008455], [0.055021000000010645, 0.055326999999977033], [0.055493000000012671, 0.055564000000003944], [0.055707999999981439, 0.05574699999999666], [0.064904000000012729, 0.065065000000004147], [0.071618000000000848, 0.072056000000031872], [0.074856000000011136, 0.074930999999992309], [0.084893000000022312, 0.084985000000017408], [0.098140999999998257, 0.09821199999998953], [0.10814199999998664, 0.10834900000003245], [0.10854999999997972, 0.10860600000000886], [0.10877499999998008, 0.10882600000002185], [0.13894499999997834, 0.13899300000002768], [0.14824500000003127, 0.14836100000002261], [0.15828600000003235, 0.15844400000003134], [0.1784240000000068, 0.17857500000002346], [0.18823500000002014, 0.18836399999997866], [0.19812600000000202, 0.19822800000002871], [0.2081630000000132, 0.20827600000001212], [0.21816899999998896, 0.2182250000000181], [0.25087100000001783, 0.2509239999999977], [0.25826100000000451, 0.25851299999999355], [0.25871100000000524, 0.25879900000001044], [0.26823000000001684, 0.26838600000002089], [0.2716710000000262, 0.27220099999999547], [0.27827700000000277, 0.27839399999999159], [11.788544000000002, 11.788714000000027]], \"1\": [[0.16819400000002815, 0.16833400000001575], [0.17186200000003282, 0.17243700000000217], [11.591486000000032, 11.591568999999993], [11.60149100000001, 11.601715000000013], [11.601747999999986, 11.601765], [11.601878999999997, 11.601973999999984], [11.611484000000019, 11.611553000000015], [11.624864000000002, 11.62491], [11.638170000000002, 11.638289999999984], [11.659033000000022, 11.659278000000029], [11.661248000000001, 11.66134900000003], [11.668194000000028, 11.668293000000006], [11.67187899999999, 11.672436000000005], [11.67835500000001, 11.678512000000012], [11.698147000000006, 11.698236000000009], [11.708099000000004, 11.708324000000005], [11.708497000000023, 11.708546000000013], [11.718289000000027, 11.718335000000025], [11.751052000000016, 11.751098000000013], [11.758236000000011, 11.758490999999992], [11.758692999999994, 11.758825999999999], [11.768232000000012, 11.768402999999978], [11.771681000000001, 11.772285000000011], [11.778322000000003, 11.778505999999993]], \"2\": [[11.325363999999979, 11.325462000000016], [11.327203999999995, 11.327215000000024], [11.327312000000006, 11.327326000000028], [11.327717000000007, 11.327731000000028], [11.32789200000002, 11.3279], [11.327977000000033, 11.327987000000007], [11.32806800000003, 11.328178999999977]], \"3\": [[0.28819199999998091, 0.28830299999998488], [0.29813799999999446, 0.29821600000002491], [0.30813499999999294, 0.30820199999999431], [0.31812600000000657, 0.31818600000002562], [0.32808299999999235, 0.32813800000002402], [0.3380910000000199, 0.33813600000001998], [0.34499699999997802, 0.34520800000001373], [0.34600199999999859, 0.3462170000000242], [0.34625799999997753, 0.3462910000000079], [0.34849400000001651, 0.34865899999999783], [0.35851300000001629, 0.35870299999999133], [0.36848100000003114, 0.36864700000000994], [0.37188000000003285, 0.37241299999999455], [0.37851200000000063, 0.37869999999998072], [0.38849199999998518, 0.38865700000002334], [0.3951600000000326, 0.39546000000001413], [0.39554700000002185, 0.3955789999999979], [0.39851199999998244, 0.39870100000001685], [0.40849200000002384, 0.4086550000000102], [0.41850900000002866, 0.41869300000001886], [0.4284940000000006, 0.42866100000003371], [0.43851000000000795, 0.43869699999999057], [0.44517799999999852, 0.44532400000002781], [0.44849700000003168, 0.44866500000000542], [0.45851399999997966, 0.45870400000001155], [0.46517299999999295, 0.46524900000002845], [0.46532100000001719, 0.46536300000002484], [0.4681810000000155, 0.46831700000001319], [0.47146300000002839, 0.47187000000002399], [0.47808700000001636, 0.47816399999999248], [0.48849200000000792, 0.48864900000000944], [0.49515800000000354, 0.49529100000000881], [0.49848300000002155, 0.49864400000001297], [0.50849099999999225, 0.50865700000002789], [0.51848499999999831, 0.51864799999998468], [0.52849500000002081, 0.52865800000000718], [0.53848099999999022, 0.53863999999998668], [0.54514799999998331, 0.54527899999999363], [0.54849300000000767, 0.54865899999998646], [0.55848500000001877, 0.55864600000001019], [0.56849399999998695, 0.56866300000001502], [0.57181700000001001, 0.57230500000002849], [0.57848300000000563, 0.578645999999992], [0.58849500000002308, 0.58866199999999935], [0.5951650000000086, 0.59529900000001135], [0.59848699999997734, 0.5986480000000256], [0.60849200000001247, 0.60865799999999126], [0.61848200000002862, 0.61864400000001751], [0.62848999999999933, 0.62865599999997812], [0.63848600000000033, 0.63864699999999175], [0.64515499999998838, 0.64528799999999364], [0.64849800000001778, 0.64866799999998648], [0.65848399999998719, 0.65864499999997861], [0.66849700000000212, 0.66866700000002766], [0.67181800000003022, 0.67230799999998681], [0.67848300000002837, 0.67864500000001726], [0.68849199999999655, 0.68865800000003219], [0.69515899999998965, 0.69528800000000501], [0.69849599999997736, 0.69865900000002057], [0.70848999999998341, 0.7086540000000241], [0.71848399999998946, 0.71864900000002763], [0.72849200000001701, 0.72865799999999581], [0.73848099999997885, 0.73864600000001701], [0.74515300000001616, 0.74528200000003153], [0.7484929999999963, 0.74866100000002689], [0.75848400000000993, 0.75864599999999882], [0.76849299999997811, 0.7686570000000188], [0.77182499999997844, 0.77232500000002346], [0.77848000000000184, 0.77864099999999326], [0.78849600000000919, 0.78865999999999303], [0.79515900000001238, 0.79529500000001008], [0.79848300000003292, 0.79864500000002181], [0.8084920000000011, 0.80865599999998494], [0.81808999999998377, 0.81813800000003312], [0.82849600000002965, 0.82865900000001602], [0.83848799999998391, 0.83864699999998038], [0.84514799999999468, 0.845279000000005], [0.84849500000001399, 0.84866099999999278], [0.85848400000003267, 0.85864600000002156], [0.86849699999999075, 0.86866800000001376], [0.87181400000002895, 0.87230299999998806], [0.878483000000017, 0.87865199999998822], [0.88849099999998771, 0.88865300000003344], [0.8951600000000326, 0.89529199999998355], [0.89849099999997861, 0.8986550000000193], [0.90849300000002131, 0.90866599999998243], [0.9184839999999781, 0.91865000000001373], [0.92849599999999555, 0.92866500000002361], [0.93849099999999908, 0.93865199999999049], [0.94514500000002499, 0.94527199999998857], [0.94849399999998241, 0.94866100000001552], [0.95848999999998341, 0.95865200000002915], [0.96849200000002611, 0.96865900000000238], [0.97181299999999737, 0.9723109999999906], [0.97848700000002964, 0.97864900000001853], [0.98849500000000035, 0.98866200000003346], [0.99516799999997829, 0.99529999999998608], [0.99848700000001145, 0.99864700000000539], [1.0084889999999973, 1.0086560000000304], [1.0184810000000084, 1.0186449999999923], [1.0284960000000183, 1.028663999999992], [1.0384799999999927, 1.0386450000000309], [1.0451510000000326, 1.0452809999999886], [1.0484910000000127, 1.0486599999999839], [1.0584870000000137, 1.0586500000000001], [1.0684959999999819, 1.0686640000000125], [1.0718219999999974, 1.0723179999999957], [1.078487999999993, 1.078647999999987], [1.0885000000000105, 1.0886679999999842], [1.0951610000000187, 1.0952899999999772], [1.0984859999999799, 1.0986500000000206], [1.1084950000000049, 1.1086650000000304], [1.1184860000000185, 1.1186500000000024], [1.1284939999999892, 1.1286580000000299], [1.1384840000000054, 1.1386459999999943], [1.1451529999999934, 1.1452800000000138], [1.1484930000000304, 1.1486620000000016], [1.1584829999999897, 1.1586460000000329], [1.1684979999999996, 1.1686569999999961], [1.1714570000000322, 1.1718759999999975], [1.1780880000000025, 1.178149000000019], [1.1884919999999966, 1.1886549999999829], [1.1951680000000238, 1.1952939999999899], [1.1984279999999785, 1.1985629999999787], [1.2084130000000073, 1.2085450000000151], [1.2184819999999945, 1.2186470000000327], [1.2284930000000145, 1.2286569999999983], [1.2384890000000155, 1.2386510000000044], [1.2451490000000263, 1.2452769999999873], [1.2484919999999988, 1.2486600000000294], [1.2584790000000226, 1.2586440000000039], [1.2684909999999832, 1.2686580000000163], [1.2718169999999986, 1.2723169999999868], [1.2784839999999917, 1.2786449999999832], [1.2884990000000016, 1.2886680000000297], [1.2951570000000174, 1.2952920000000177], [1.2984850000000279, 1.2986480000000142], [1.3084910000000036, 1.3086549999999875], [1.3184810000000198, 1.3186440000000061], [1.3284929999999804, 1.3286580000000185], [1.3384889999999814, 1.3386510000000271], [1.3451529999999821, 1.3452819999999974], [1.3484960000000115, 1.3486629999999877], [1.3584870000000251, 1.3586450000000241], [1.3684910000000059, 1.3686549999999897], [1.3718180000000189, 1.3723120000000222], [1.3784820000000195, 1.3786430000000109], [1.3884949999999776, 1.3886610000000132], [1.3951690000000099, 1.3952970000000278], [1.3984829999999988, 1.3986469999999827], [1.4084940000000188, 1.4086580000000026], [1.4184799999999882, 1.4186389999999847], [1.4284900000000107, 1.428656999999987], [1.4384830000000193, 1.4386450000000082], [1.4451460000000225, 1.4452759999999785], [1.4484980000000292, 1.4486630000000105], [1.4584839999999986, 1.458642999999995], [1.4684920000000261, 1.4686629999999923], [1.4718159999999898, 1.4723070000000007], [1.4784809999999879, 1.4786430000000337], [1.4884940000000029, 1.4886620000000335], [1.4951570000000061, 1.4952920000000063], [1.4984880000000089, 1.4986509999999953], [1.5084969999999771, 1.5086610000000178], [1.5184869999999933, 1.5186439999999948], [1.5280970000000025, 1.5281469999999899], [1.5384859999999776, 1.5386530000000107], [1.5451600000000099, 1.5452920000000177], [1.5485140000000115, 1.5487029999999891], [1.5584900000000061, 1.558651999999995], [1.5685090000000059, 1.568698999999981], [1.5718259999999873, 1.5723080000000209], [1.5784919999999829, 1.5786560000000236], [1.5885129999999776, 1.5887010000000146], [1.5951790000000301, 1.5953240000000051], [1.5984960000000115, 1.5986639999999852], [1.6085090000000264, 1.608696000000009], [1.6184930000000008, 1.6186559999999872], [1.6285179999999855, 1.6287040000000275], [1.6384850000000029, 1.6386540000000309], [1.6451589999999783, 1.6452770000000214], [1.6485150000000317, 1.6487050000000067], [1.6584859999999821, 1.6586470000000304], [1.6685100000000261, 1.6686980000000062], [1.6718290000000025, 1.6723220000000083], [1.6784880000000157, 1.6786539999999945], [1.6885030000000256, 1.6886959999999931], [1.6951730000000111, 1.6953199999999811], [1.6985000000000241, 1.6986679999999978], [1.7085089999999923, 1.7086990000000242], [1.7182050000000118, 1.7183689999999956], [1.7284950000000094, 1.7286579999999958], [1.7384820000000332, 1.7386410000000296], [1.7451530000000162, 1.7452799999999797], [1.7484959999999887, 1.7486630000000218], [1.7584879999999998, 1.7586499999999887], [1.7684919999999806, 1.7686600000000112], [1.7718160000000012, 1.7723020000000247], [1.7784819999999968, 1.7786449999999832], [1.7884970000000067, 1.7886629999999855], [1.7951620000000048, 1.7952960000000076], [1.7984880000000203, 1.7986470000000168], [1.8084929999999986, 1.8086589999999774], [1.8182070000000294, 1.8183690000000183], [1.8285079999999994, 1.828694999999982], [1.8384710000000268, 1.8386330000000157], [1.8451509999999871, 1.8452819999999974], [1.8485120000000279, 1.848700000000008], [1.8584969999999998, 1.8586569999999938], [1.8685100000000148, 1.8686989999999923], [1.8718220000000088, 1.8723100000000272], [1.8784899999999993, 1.8786570000000324], [1.8884960000000319, 1.8886630000000082], [1.8951600000000326, 1.8952909999999861], [1.8984849999999938, 1.8986459999999852], [1.9084920000000238, 1.9086599999999976], [1.9184870000000274, 1.9186510000000112], [1.9284959999999955, 1.9286620000000312], [1.9384830000000193, 1.9386470000000031], [1.9451510000000098, 1.9452800000000252], [1.9484949999999799, 1.9486590000000206], [1.9584879999999885, 1.9586489999999799], [1.9684900000000312, 1.9686580000000049], [1.9718179999999847, 1.9723040000000083], [1.9784849999999778, 1.978650000000016], [1.9884959999999978, 1.9886620000000335], [1.9951629999999909, 1.9952920000000063], [1.9984919999999988, 1.9986509999999953], [2.0084919999999897, 2.0086539999999786], [2.0184820000000059, 2.0186469999999872], [2.0284920000000284, 2.0286560000000122], [2.0384839999999826, 2.0386490000000208], [2.0451499999999783, 2.0452789999999936], [2.0484920000000102, 2.0486609999999814], [2.0584820000000263, 2.0586440000000152], [2.0684959999999819, 2.0686660000000074], [2.0718180000000075, 2.0723179999999957], [2.0784820000000082, 2.0786489999999844], [2.0884950000000231, 2.0886590000000069], [2.0951610000000187, 2.0952930000000265], [2.098479999999995, 2.0986439999999789], [2.1084880000000226, 2.1086549999999988], [2.1184890000000109, 2.1186539999999923], [2.1284909999999968, 2.1286630000000173], [2.1384830000000079, 2.1386449999999968], [2.1451529999999934, 2.1452820000000088], [2.1484950000000254, 2.1486639999999966], [2.1584829999999897, 2.1586480000000279], [2.1684920000000147, 2.168658999999991], [2.1718220000000201, 2.1723250000000007], [2.1780899999999974, 2.1781740000000127], [2.1884900000000016, 2.1886580000000322], [2.1951599999999871, 2.1952919999999949], [2.1984870000000001, 2.1986509999999839], [2.2084940000000302, 2.2086610000000064], [2.2184849999999869, 2.2186480000000302], [2.2284950000000094, 2.2286629999999832], [2.2384739999999965, 2.238632999999993], [2.2451490000000263, 2.2452799999999797], [2.2484969999999862, 2.2486650000000168], [2.2584750000000327, 2.2586259999999925], [2.2680980000000091, 2.268162000000018], [2.2714480000000208, 2.2718340000000126], [2.2780920000000151, 2.2781509999999798], [2.2884890000000269, 2.2886429999999791], [2.2957590000000323, 2.2965780000000109], [2.2980979999999818, 2.298150000000021], [2.2981570000000033, 2.2981920000000287], [2.2982000000000085, 2.298230999999987], [2.3080939999999828, 2.3081579999999917], [2.3181369999999788, 2.3183109999999942], [2.3280990000000088, 2.3281709999999975], [2.3380900000000224, 2.3381350000000225], [2.345136000000025, 2.345279000000005], [2.3484940000000165, 2.3486580000000004], [2.3585059999999771, 2.3586930000000166], [2.3684810000000311, 2.3686440000000175], [2.3718250000000012, 2.3723170000000096], [2.3784909999999968, 2.3786549999999806], [2.3884850000000029, 2.3886479999999892], [2.395148000000006, 2.3952750000000265], [2.3984980000000178, 2.3986659999999915], [2.4084839999999872, 2.4086480000000279], [2.4184960000000046, 2.4186619999999834], [2.4284820000000309, 2.4286450000000173], [2.438494999999989, 2.4386610000000246], [2.4451589999999896, 2.4452959999999848], [2.448488999999995, 2.4486540000000332], [2.4584899999999834, 2.4586590000000115], [2.4685180000000173, 2.46870100000001], [2.4718270000000189, 2.4723319999999944], [2.4784270000000106, 2.4785689999999931], [2.4884200000000192, 2.4885669999999891], [2.4950840000000198, 2.4952010000000087], [2.4984939999999938, 2.4986579999999776], [2.5085090000000037, 2.5086949999999888], [2.5184909999999832, 2.5186550000000238], [2.5285119999999779, 2.5286990000000173], [2.5384910000000218, 2.5386570000000006], [2.5451649999999972, 2.5452819999999861], [2.548515000000009, 2.5487029999999891], [2.5584870000000137, 2.5586509999999976], [2.5685129999999958, 2.5687020000000302], [2.5718209999999999, 2.5723070000000234], [2.5784909999999854, 2.5786550000000261], [2.5885059999999953, 2.5886940000000322], [2.5951780000000326, 2.5953230000000076], [2.5984940000000165, 2.5986580000000004], [2.6085090000000264, 2.608698000000004], [2.618487000000016, 2.6186509999999998], [2.6285090000000082, 2.6286979999999858], [2.6384919999999852, 2.6386560000000259], [2.6451579999999808, 2.6452760000000239], [2.6485099999999875, 2.6486970000000269], [2.6584910000000264, 2.6586540000000127], [2.6685039999999844, 2.6686940000000163], [2.6718240000000151, 2.6723140000000285], [2.6784890000000132, 2.6786510000000021], [2.6885120000000029, 2.688699999999983], [2.6951740000000086, 2.6953179999999861], [2.6984939999999824, 2.6986570000000256], [2.7085109999999872, 2.7087010000000191], [2.7184930000000236, 2.7186599999999999], [2.7285069999999791, 2.7286940000000186], [2.7384940000000029, 2.738679999999988], [2.7451599999999985, 2.7452940000000012], [2.7485159999999951, 2.7487050000000295], [2.7584929999999872, 2.7586550000000329], [2.7685139999999819, 2.7687020000000189], [2.7718260000000328, 2.7723210000000336], [2.7784910000000309, 2.7786550000000148], [2.7885150000000181, 2.7887020000000007], [2.7951719999999796, 2.7953190000000063], [2.7984940000000051, 2.7986589999999865], [2.8085080000000175, 2.8086979999999926], [2.8182019999999852, 2.8183609999999817], [2.8284850000000006, 2.828647999999987], [2.8384869999999864, 2.8386490000000322], [2.8451469999999972, 2.8452750000000151], [2.848495000000014, 2.8486609999999928], [2.8584829999999783, 2.8586450000000241], [2.8684949999999958, 2.8686630000000264], [2.8718150000000264, 2.8722970000000032], [2.8784860000000094, 2.8786470000000008], [2.8884980000000269, 2.8886620000000107], [2.8951579999999808, 2.8952899999999886], [2.8984869999999887, 2.8986500000000319], [2.9084930000000213, 2.9086599999999976], [2.9184809999999857, 2.9186419999999771], [2.9284940000000006, 2.9286579999999844], [2.9384860000000117, 2.9386499999999955], [2.9451520000000073, 2.9452810000000227], [2.94849099999999, 2.9486540000000332], [2.958486999999991, 2.9586499999999774], [2.968244000000027, 2.9684270000000197], [2.9720030000000293, 2.9729370000000017], [2.9784849999999778, 2.9786480000000211], [2.9884910000000104, 2.9886420000000271], [2.9951869999999872, 2.995317], [2.9984949999999913, 2.998691000000008], [3.0081000000000131, 3.0081549999999879], [3.0180900000000292, 3.0181360000000268], [3.0284809999999993, 3.0286449999999832], [3.0384920000000193, 3.0386570000000006], [3.0451590000000124, 3.0452760000000012], [3.0484860000000253, 3.0486520000000041], [3.0584920000000011, 3.0586549999999875], [3.0684830000000147, 3.0686469999999986], [3.0718249999999898, 3.0723270000000298], [3.0785139999999842, 3.0787000000000262], [3.0884879999999839, 3.0886580000000095], [3.0951550000000339, 3.0952869999999848], [3.098510000000033, 3.098702000000003], [3.108491000000015, 3.1086549999999988], [3.118518999999992, 3.118707000000029], [3.1284899999999993, 3.1286549999999806], [3.1385119999999915, 3.1387020000000234], [3.1451749999999947, 3.1453129999999874], [3.1484940000000279, 3.1486550000000193], [3.1585089999999809, 3.1586990000000128], [3.1684860000000299, 3.1686540000000036], [3.1718389999999772, 3.1723210000000108], [3.1780909999999949, 3.1781750000000102], [3.1884900000000016, 3.1886559999999804], [3.1951569999999947, 3.1952719999999886], [3.1985109999999963, 3.1987020000000257], [3.2084879999999885, 3.208656000000019], [3.2185140000000274, 3.2187049999999999], [3.2284880000000271, 3.2286550000000034], [3.2385140000000092, 3.2387009999999918], [3.2451760000000149, 3.2453120000000126], [3.2484949999999913, 3.2486600000000294], [3.2582689999999843, 3.2584360000000174], [3.2684970000000249, 3.2686610000000087], [3.2718380000000025, 3.272342999999978], [3.2785069999999905, 3.27869400000003], [3.2884789999999953, 3.2886379999999917], [3.2951570000000174, 3.2952750000000037], [3.2984930000000077, 3.2986569999999915], [3.3084789999999771, 3.3086450000000127], [3.3184929999999895, 3.3186580000000276], [3.3284850000000006, 3.3286489999999844], [3.3384940000000256, 3.3386560000000145], [3.3451630000000137, 3.3452930000000265], [3.3484869999999773, 3.3486490000000231], [3.3584930000000099, 3.3586579999999913], [3.3684840000000236, 3.3686480000000074], [3.3718089999999847, 3.3723110000000247], [3.3785070000000132, 3.3786929999999984], [3.3884869999999978, 3.3886540000000309], [3.3951569999999833, 3.3952859999999987], [3.3985129999999799, 3.3986990000000219], [3.4084940000000188, 3.4086570000000052], [3.4185090000000287, 3.4186950000000138], [3.4284920000000056, 3.4286559999999895], [3.4385070000000155, 3.4386949999999956], [3.4451720000000137, 3.4453100000000063], [3.4484939999999824, 3.4486580000000231], [3.4585079999999948, 3.4586970000000292], [3.4684920000000261, 3.4686510000000226], [3.4718389999999886, 3.4723260000000096], [3.4785130000000208, 3.478699000000006], [3.488490000000013, 3.4886520000000019], [3.4951570000000061, 3.4952930000000038], [3.4985120000000052, 3.4986999999999853], [3.5084899999999948, 3.5086539999999786], [3.5185079999999971, 3.5186939999999822], [3.5284940000000233, 3.5286580000000072], [3.5385120000000256, 3.5386970000000133], [3.5451760000000263, 3.5453110000000265], [3.5484900000000152, 3.5486520000000041], [3.5585080000000175, 3.5586950000000002], [3.5684909999999945, 3.5686560000000327], [3.5718390000000113, 3.5723280000000273], [3.5785060000000044, 3.578692999999987], [3.5884960000000206, 3.5886600000000044], [3.595169999999996, 3.5952990000000113], [3.5985120000000279, 3.598700000000008], [3.6084850000000301, 3.6086480000000165], [3.6185090000000173, 3.6186999999999898], [3.6284899999999993, 3.6286479999999983], [3.6385119999999915, 3.6387050000000158], [3.6451779999999872, 3.6453129999999874], [3.6484940000000279, 3.6486600000000067], [3.6585110000000327, 3.6586990000000128], [3.6684910000000173, 3.6686550000000011], [3.6718339999999898, 3.6723160000000235], [3.6785080000000221, 3.6786950000000047], [3.6884890000000041, 3.6886519999999905], [3.6951579999999922, 3.6952890000000025], [3.6985099999999989, 3.6987010000000282], [3.708486999999991, 3.7086489999999799], [3.7185099999999807, 3.7186980000000176], [3.7284890000000246, 3.7286540000000059], [3.7385080000000244, 3.738695000000007], [3.7451780000000099, 3.745317], [3.7484890000000064, 3.7486559999999827], [3.7584320000000275, 3.7586000000000013], [3.7684130000000096, 3.7685430000000224], [3.7717430000000149, 3.7721779999999967], [3.7785069999999905, 3.7786970000000224], [3.7884839999999826, 3.7886409999999842], [3.7951570000000174, 3.7952860000000328], [3.7985090000000241, 3.7986960000000067], [3.8084900000000061, 3.8086549999999875], [3.8182090000000244, 3.8183680000000209], [3.828487999999993, 3.8286600000000135], [3.8385089999999877, 3.8386980000000221], [3.8451780000000326, 3.8453180000000202], [3.848493000000019, 3.8486649999999827], [3.8585080000000289, 3.858696000000009], [3.8684900000000084, 3.8686559999999872], [3.871830999999986, 3.8723190000000045], [3.8785120000000006, 3.8787009999999782], [3.8884860000000003, 3.8886530000000334], [3.8951569999999833, 3.8952830000000063], [3.8985129999999799, 3.8987020000000143], [3.9084890000000314, 3.9086550000000102], [3.9185110000000236, 3.9186980000000062], [3.9284870000000183, 3.9286539999999945], [3.9385040000000231, 3.9386930000000007], [3.9451740000000086, 3.9453120000000013], [3.9484949999999799, 3.9486590000000206], [3.9585089999999923, 3.9586960000000317], [3.9684900000000312, 3.9686590000000024], [3.9718389999999886, 3.9723390000000336], [3.9785049999999842, 3.9786930000000211], [3.9884890000000155, 3.9886529999999993], [3.9951500000000237, 3.995285000000024], [3.9985090000000127, 3.9986999999999853], [4.0084919999999897, 4.0086539999999786], [4.0185050000000047, 4.0186939999999822], [4.0284910000000309, 4.0286570000000097], [4.0385069999999814, 4.0386960000000158], [4.0451750000000288, 4.045310000000029], [4.0484930000000077, 4.0486599999999839], [4.0585100000000125, 4.058700999999985], [4.0684880000000021, 4.0686529999999834], [4.0718380000000138, 4.0723360000000071], [4.0785139999999842, 4.0787070000000085], [4.0884960000000206, 4.088657000000012], [4.0951600000000212, 4.095292000000029], [4.098510000000033, 4.0987030000000004], [4.1084860000000276, 4.1086480000000165], [4.1185100000000148, 4.1187029999999822], [4.128483000000017, 4.1286460000000034], [4.1385010000000193, 4.1386929999999893], [4.1451769999999897, 4.1453149999999823], [4.1484970000000203, 4.1486620000000016], [4.1585079999999834, 4.1586970000000179], [4.1684930000000122, 4.1686559999999986], [4.1718329999999924, 4.1723350000000323], [4.1782029999999963, 4.1783599999999979], [4.1884919999999966, 4.1886539999999854], [4.1951540000000023, 4.195288000000005], [4.1985139999999888, 4.1987010000000282], [4.2084889999999859, 4.2086570000000165], [4.2185109999999781, 4.2186980000000176], [4.2284900000000221, 4.2286560000000009], [4.2385070000000269, 4.2386970000000019], [4.2451730000000225, 4.2453140000000076], [4.2484959999999887, 4.2486600000000294], [4.2582669999999894, 4.2584370000000149], [4.2684909999999832, 4.2686580000000163], [4.2718389999999999, 4.2723349999999982], [4.2785190000000171, 4.2787089999999921], [4.2884960000000092, 4.288661999999988], [4.2951610000000073, 4.2952900000000227], [4.2985100000000216, 4.2986989999999992], [4.3084880000000112, 4.3086579999999799], [4.3185139999999933, 4.3187020000000302], [4.3284929999999804, 4.3286570000000211], [4.3385040000000004, 4.3386950000000297], [4.3451769999999783, 4.3453130000000328], [4.3484900000000266, 4.348651000000018], [4.3585090000000264, 4.3586970000000065], [4.368485000000021, 4.3686509999999998], [4.3718299999999886, 4.3723259999999868], [4.3785129999999981, 4.37870300000003], [4.3884820000000104, 4.3886420000000044], [4.3951589999999783, 4.3952919999999835], [4.3985119999999824, 4.3987020000000143], [4.4084869999999796, 4.4086500000000228], [4.4185090000000287, 4.4186970000000088], [4.4284880000000157, 4.4286529999999971], [4.438506000000018, 4.4386900000000082], [4.4451730000000111, 4.4453070000000139], [4.44849099999999, 4.448662000000013], [4.45850200000001, 4.4586889999999926], [4.4684879999999794, 4.4686520000000201], [4.4718440000000328, 4.4723470000000134], [4.4785090000000309, 4.478697000000011], [4.4884930000000054, 4.4886660000000234], [4.4951540000000136, 4.495285000000024], [4.4985080000000153, 4.4986979999999903], [4.5084860000000049, 4.5086430000000064], [4.5185069999999996, 4.518698000000029], [4.5284910000000309, 4.5286540000000173], [4.5385120000000256, 4.5387010000000032], [4.5451740000000314, 4.5453170000000114], [4.5484910000000127, 4.5486539999999991], [4.5585100000000125, 4.5586979999999926], [4.5684889999999996, 4.5686509999999885], [4.571832000000029, 4.5723360000000071], [4.5785139999999842, 4.5787030000000186], [4.588483999999994, 4.588641999999993], [4.5951570000000288, 4.5952889999999798], [4.5985079999999812, 4.5986950000000206], [4.6084870000000251, 4.6086520000000064], [4.6185050000000274, 4.6186950000000024], [4.6284919999999943, 4.6286570000000324], [4.6385070000000042, 4.6386969999999792], [4.6451720000000023, 4.6453119999999899], [4.6484950000000254, 4.6486590000000092], [4.6585120000000302, 4.6587000000000103], [4.6684910000000173, 4.6686510000000112], [4.6718319999999949, 4.6723299999999881], [4.6785080000000221, 4.6786960000000022], [4.6884890000000041, 4.6886569999999779], [4.6951599999999871, 4.695288000000005], [4.6985119999999938, 4.6986969999999815], [4.7084889999999859, 4.7086550000000216], [4.7182109999999966, 4.7183709999999905], [4.7284860000000322, 4.728650000000016], [4.7385100000000193, 4.7386989999999969], [4.7451750000000175, 4.7453100000000177], [4.7484919999999988, 4.7486559999999827], [4.7585060000000112, 4.7586939999999913], [4.7684879999999907, 4.7686509999999771], [4.771837000000005, 4.7723330000000033], [4.7785109999999804, 4.7786980000000199], [4.7884870000000319, 4.7886530000000107], [4.7951570000000174, 4.7952920000000177], [4.7985100000000216, 4.7986970000000042], [4.8084910000000036, 4.8086579999999799], [4.818206000000032, 4.8183690000000183], [4.8284919999999829, 4.828659000000016], [4.8385059999999953, 4.8386929999999779], [4.8451749999999834, 4.8453119999999785], [4.8485000000000014, 4.8486649999999827], [4.8585070000000314, 4.8586970000000065], [4.8684910000000059, 4.8686569999999847], [4.871832999999981, 4.8723239999999919], [4.8784969999999817, 4.8786850000000186], [4.8884949999999776, 4.8886590000000183], [4.8951589999999783, 4.8952879999999936], [4.8985129999999799, 4.8987000000000194], [4.9084910000000264, 4.9086550000000102], [4.9185080000000312, 4.9186960000000113], [4.9284910000000082, 4.9286529999999971], [4.9385020000000281, 4.9386910000000057], [4.9451760000000036, 4.9453110000000038], [4.9484899999999925, 4.9486580000000231], [4.9585139999999797, 4.9586990000000242], [4.9684930000000236, 4.96865600000001], [4.9718330000000037, 4.9723339999999894], [4.9785080000000335, 4.9786980000000085], [4.9884890000000155, 4.9886490000000094], [4.9951570000000061, 4.9952890000000139], [4.9985189999999875, 4.9987100000000169], [5.0084929999999872, 5.0086570000000279], [5.0185030000000097, 5.0186919999999873], [5.0284900000000334, 5.0286520000000223], [5.0384300000000053, 5.0385880000000043], [5.0450799999999845, 5.0451869999999985], [5.048419000000024, 5.0485520000000292], [5.0585070000000201, 5.0586979999999926], [5.0684899999999971, 5.0686560000000327], [5.0718350000000214, 5.0723370000000045], [5.0785070000000019, 5.078694999999982], [5.0884889999999814, 5.088655000000017], [5.0951590000000238, 5.0952849999999899], [5.0985079999999812, 5.0986990000000105], [5.1084940000000074, 5.1086589999999887], [5.1185110000000122, 5.1187009999999873], [5.1284890000000019, 5.1286519999999882], [5.138512999999989, 5.1387040000000184], [5.1451739999999972, 5.1453139999999848], [5.1484960000000228, 5.1486580000000117], [5.1585079999999834, 5.1586980000000153], [5.1684930000000122, 5.1686510000000112], [5.1718369999999823, 5.1723309999999856], [5.1782059999999888, 5.1783679999999777], [5.1884870000000092, 5.188652999999988], [5.1951589999999896, 5.195288000000005], [5.198506000000009, 5.1986969999999815], [5.2084950000000276, 5.2086600000000089], [5.2185039999999958, 5.2186920000000327], [5.2284900000000221, 5.2286579999999958], [5.2385080000000244, 5.2386979999999994], [5.2451750000000175, 5.2453120000000126], [5.2484870000000114, 5.2486490000000003], [5.2585020000000213, 5.2586900000000014], [5.2684909999999832, 5.2686550000000238], [5.2718389999999999, 5.2723409999999831], [5.2785099999999829, 5.2786990000000173], [5.2884890000000269, 5.2886530000000107], [5.2951610000000073, 5.2952890000000252], [5.2985120000000165, 5.2987019999999916], [5.3084890000000087, 5.3086559999999849], [5.3185090000000059, 5.3187750000000165], [5.3284889999999905, 5.3286520000000337], [5.3385069999999928, 5.3386960000000272], [5.3451780000000326, 5.3453170000000227], [5.3484920000000216, 5.3486609999999928], [5.3585029999999847, 5.3586930000000166], [5.3684890000000109, 5.3686519999999973], [5.371832999999981, 5.3723400000000083], [5.3785120000000006, 5.3786999999999807], [5.3884929999999827, 5.3886530000000334], [5.3951579999999808, 5.3952919999999835], [5.3985059999999976, 5.3986939999999777], [5.4084920000000238, 5.4086540000000127], [5.4185080000000312, 5.4186940000000163], [5.4284860000000208, 5.4286490000000072], [5.4384979999999814, 5.4386880000000133], [5.445177000000001, 5.4453139999999962], [5.4484949999999799, 5.4486610000000155], [5.4585059999999999, 5.4586960000000317], [5.4651739999999904, 5.4652540000000158], [5.465327000000002, 5.4653660000000173], [5.4681790000000206, 5.4683269999999879], [5.4714700000000107, 5.4717899999999986], [5.4718000000000302, 5.4718890000000329], [5.4780759999999873, 5.4781360000000063], [5.4884830000000306, 5.4886440000000221], [5.4951480000000288, 5.4952759999999898], [5.4984919999999988, 5.4986590000000319], [5.5084879999999998, 5.5086499999999887], [5.5184940000000324, 5.5186590000000137], [5.5284819999999968, 5.5286459999999806], [5.5384970000000067, 5.5386639999999829], [5.5451600000000099, 5.5452940000000126], [5.5484850000000279, 5.5486470000000168], [5.5584880000000112, 5.5586559999999849], [5.5684840000000122, 5.568647999999996], [5.5718200000000024, 5.5723120000000108], [5.5785070000000019, 5.5786959999999794], [5.5884920000000307, 5.5886530000000221], [5.5951570000000288, 5.5952859999999873], [5.5985120000000279, 5.5987030000000004], [5.608491000000015, 5.6086520000000064], [5.6185060000000249, 5.6186950000000024], [5.6284909999999968, 5.6286539999999832], [5.6385119999999915, 5.638699000000031], [5.6451729999999998, 5.6453109999999924], [5.6484960000000228, 5.6486590000000092], [5.6585099999999784, 5.6586980000000153], [5.6684880000000248, 5.6686520000000087], [5.6718389999999772, 5.6723329999999805], [5.6785029999999779, 5.6786920000000123], [5.6884939999999915, 5.6886569999999779], [5.6951540000000023, 5.6952870000000075], [5.6985099999999989, 5.6986969999999815], [5.7084889999999859, 5.7086530000000266], [5.7185049999999933, 5.7186930000000302], [5.7284890000000246, 5.7286530000000084], [5.7385039999999776, 5.738693000000012], [5.7451750000000175, 5.7453130000000101], [5.748486000000014, 5.7486490000000003], [5.7585090000000037, 5.7586939999999913], [5.7684919999999806, 5.7686540000000264], [5.7718360000000075, 5.7723250000000235], [5.7785119999999779, 5.7786990000000173], [5.7884920000000193, 5.7886520000000132], [5.7951580000000149, 5.7952870000000303], [5.7985090000000241, 5.7986989999999992], [5.8084949999999935, 5.8086569999999824], [5.8185090000000059, 5.8186979999999835], [5.8281059999999911, 5.8282270000000267], [5.8384899999999789, 5.8386560000000145], [5.8451570000000288, 5.8452869999999848], [5.8485079999999812, 5.8486990000000105], [5.8584870000000251, 5.8586460000000216], [5.8685080000000198, 5.8686999999999898], [5.8718130000000315, 5.8723110000000247], [5.8785050000000183, 5.8786890000000085], [5.8884909999999877, 5.8886560000000259], [5.8951569999999833, 5.8952899999999886], [5.8985079999999925, 5.898695000000032], [5.9084950000000163, 5.9086609999999951], [5.918502999999987, 5.9186920000000214], [5.9284900000000107, 5.9286519999999996], [5.938508000000013, 5.9386949999999956], [5.9451700000000187, 5.9453080000000114], [5.9484970000000317, 5.9486610000000155], [5.9585040000000049, 5.9586929999999825], [5.9684900000000312, 5.9686530000000175], [5.9718359999999961, 5.9723359999999843], [5.9785080000000335, 5.9786980000000085], [5.9884910000000104, 5.9886529999999993], [5.9951530000000162, 5.9952890000000139], [5.9985090000000127, 5.9986979999999903], [6.0084860000000049, 6.0086529999999811], [6.0185079999999971, 6.0186970000000315], [6.0284930000000259, 6.0286570000000097], [6.0385079999999789, 6.0386970000000133], [6.0451790000000187, 6.0453160000000139], [6.0484989999999925, 6.0486599999999839], [6.0585060000000226, 6.0586950000000002], [6.068491999999992, 6.0686570000000302], [6.0718410000000063, 6.0723449999999843], [6.0785119999999893, 6.0787040000000161], [6.0884910000000332, 6.0886560000000145], [6.0951550000000339, 6.0952879999999823], [6.0985089999999786, 6.0986980000000131], [6.10848900000002, 6.1086510000000089], [6.1185050000000274, 6.1186950000000024], [6.1284919999999943, 6.1286630000000173], [6.1385109999999941, 6.1387020000000234], [6.1451729999999998, 6.1453119999999899], [6.1484940000000279, 6.1486570000000142], [6.1585110000000327, 6.1587000000000103], [6.1684880000000248, 6.1686530000000062], [6.1718369999999823, 6.1723160000000235], [6.1785080000000221, 6.1786960000000022], [6.1884870000000092, 6.1886440000000107], [6.1951660000000288, 6.1952959999999848], [6.1985109999999963, 6.1987000000000307], [6.2084919999999784, 6.208656000000019], [6.2185029999999983, 6.218687999999986], [6.2284880000000271, 6.2286550000000034], [6.2385110000000168, 6.2386970000000019], [6.2451710000000276, 6.2453080000000227], [6.2484900000000039, 6.2486549999999852], [6.2585119999999961, 6.2586969999999837], [6.2684909999999832, 6.2686550000000238], [6.2718310000000201, 6.2723290000000134], [6.278505999999993, 6.27869400000003], [6.2884859999999776, 6.2886520000000132], [6.295154000000025, 6.2952849999999785], [6.298513000000014, 6.2986999999999966], [6.3081690000000208, 6.3083129999999983], [6.310073999999986, 6.3102230000000077], [6.3114499999999794, 6.3114899999999921], [6.3119209999999839, 6.311932000000013], [6.3128810000000044, 6.3130540000000224], [6.3486550000000079, 6.3487250000000017], [7.6904870000000187, 7.6905259999999771], [11.365335000000016, 11.36535600000002], [11.368493000000001, 11.36865499999999], [11.371832999999981, 11.372335000000021], [11.378510000000006, 11.378696999999988], [11.388485000000003, 11.388646999999992], [11.395152999999993, 11.395285999999999], [11.398511999999982, 11.398704000000009], [11.408484999999985, 11.408654000000013], [11.418491000000017, 11.418693000000019], [11.428476999999987, 11.428672000000006], [11.438088999999991, 11.438134999999988], [11.445069999999987, 11.445178999999996], [11.448412000000019, 11.448546000000022], [11.458482000000004, 11.458647999999982], [11.468494000000021, 11.468661999999995], [11.47181999999998, 11.472311999999988], [11.478503999999987, 11.478686999999979], [11.488489000000015, 11.488654999999994], [11.494789000000026, 11.494860000000017], [11.498112999999989, 11.498221999999998], [11.508313999999984, 11.508413000000019], [11.51858500000003, 11.518734999999992], [11.541162999999983, 11.541246000000001], [11.551450999999986, 11.551755000000014], [11.551913000000013, 11.552006000000006], [11.561517999999978, 11.561616000000015], [11.571579999999983, 11.57209899999998], [11.581618999999989, 11.581672000000026], [11.688230000000033, 11.688335999999993]]}, \"task3-4773\": {\"0\": [[0.30923000000001366, 0.30929600000001756], [11.494809000000032, 11.497276999999997], [11.497320999999999, 11.499039999999979], [11.499067000000025, 11.499194999999986]], \"1\": [[0.31472100000002001, 0.31477599999999484], [0.31498700000003055, 0.31534600000003365], [0.32138700000001563, 0.32805300000001125], [0.34138300000000754, 0.34806100000002971], [0.36138599999998178, 0.36804899999998497], [0.38138700000001791, 0.38804900000002363], [0.40138799999999719, 0.40804900000000544], [0.41471200000000863, 0.42138499999998658], [0.42805500000002894, 0.43471499999998287], [0.44138700000002018, 0.4480530000000158], [0.45471500000002152, 0.46138799999999947], [0.46804600000001528, 0.47471699999999828], [0.48471599999999171, 0.49138700000003155], [0.49805300000002717, 0.50471700000002784], [0.51138900000000831, 0.51805100000001403], [0.52471700000000965, 0.53142200000002049], [0.53804999999999836, 0.54471799999998893], [0.5513880000000313, 0.55805500000002439], [0.56471800000002759, 0.57138800000001311], [0.5780510000000163, 0.58471700000001192], [0.59138799999999492, 0.59805299999999306], [0.60471699999999373, 0.61138800000003357], [0.61804999999998245, 0.62471700000003239], [0.63138800000001538, 0.6380500000000211], [0.64471800000001167, 0.65138799999999719], [0.65805000000000291, 0.66471699999999601], [0.671387999999979, 0.6780509999999822], [0.68471900000002961, 0.69138700000002018], [0.69805400000001327, 0.70471700000001647], [0.71138700000000199, 0.71805000000000518], [0.72471699999999828, 0.7313869999999838], [0.73805099999998447, 0.74471799999997756], [0.75138800000001993, 0.75805000000002565], [0.76471700000001874, 0.77138800000000174], [0.77805100000000493, 0.78471700000000055], [0.79138699999998607, 0.79805399999997917], [0.80471799999997984, 0.8113840000000323], [0.8180510000000254, 0.82471700000002102], [0.83138700000000654, 0.83805100000000721], [0.8447180000000003, 0.85138699999998835], [0.85804999999999154, 0.86471699999998464], [0.87138900000002195, 0.87805100000002767], [0.88471700000002329, 0.89138700000000881], [0.89805300000000443, 0.9047170000000051], [0.9113879999999881, 0.91804999999999382], [0.92471699999998691, 0.93142199999999775], [0.93805000000003247, 0.94471700000002556], [0.95138800000000856, 0.95805000000001428], [0.96471700000000737, 0.97138799999999037], [0.97805099999999356, 0.98471699999998918], [0.99138700000003155, 0.99805200000002969], [1.0047170000000278, 1.0113870000000134], [1.0180500000000166, 1.0247160000000122], [1.0313859999999977, 1.0380499999999984], [1.0447169999999915, 1.0513870000000338], [1.0580509999999776, 1.0647170000000301], [1.0713880000000131, 1.0780530000000113], [1.0847190000000069, 1.0913869999999974], [1.0980529999999931, 1.1047169999999937], [1.1113869999999793, 1.1180499999999824], [1.1247170000000324, 1.1313860000000204], [1.1380500000000211, 1.1447160000000167], [1.1513899999999921, 1.1580510000000004], [1.164716999999996, 1.171387999999979], [1.1780469999999923, 1.1847169999999778], [1.1913870000000202, 1.1980510000000208], [1.204716000000019, 1.2113860000000045], [1.2180500000000052, 1.2247169999999983], [1.2313869999999838, 1.2380509999999845], [1.2447169999999801, 1.2513880000000199], [1.2580500000000256, 1.2647160000000213], [1.2713870000000043, 1.2780510000000049], [1.2847170000000006, 1.2913869999999861], [1.2980550000000335, 1.3047169999999824], [1.3113860000000273, 1.3180500000000279], [1.324719000000016, 1.3313860000000091], [1.3380549999999971, 1.3447170000000028], [1.3513869999999883, 1.358050999999989], [1.3647179999999821, 1.371387000000027], [1.3780510000000277, 1.3847170000000233], [1.3913870000000088, 1.3980530000000044], [1.4047170000000051, 1.4113879999999881], [1.4180499999999938, 1.4247169999999869], [1.4313870000000293, 1.4380500000000325], [1.4447170000000256, 1.4513870000000111], [1.4580520000000092, 1.4647170000000074], [1.4713879999999904, 1.4780509999999936], [1.4847189999999841, 1.4913870000000315], [1.4980530000000272, 1.5047170000000278], [1.5113870000000134, 1.5180500000000166], [1.5247130000000197, 1.5313869999999952], [1.5380480000000034, 1.5447149999999965], [1.5513870000000338, 1.5580479999999852], [1.5647139999999808, 1.5713870000000156], [1.5780490000000214, 1.584715000000017], [1.5913869999999974, 1.598056999999983], [1.6047140000000013, 1.6113869999999793], [1.618048999999985, 1.6247139999999831], [1.6313870000000179, 1.6380490000000236], [1.6447160000000167, 1.6513869999999997], [1.658048000000008, 1.6647140000000036], [1.6713869999999815, 1.6780489999999872], [1.6847139999999854, 1.6913890000000151], [1.6980540000000133, 1.704714000000024], [1.7113879999999995, 1.7180470000000128], [1.7247189999999932, 1.7313889999999788], [1.738049999999987, 1.7447159999999826], [1.7513870000000225, 1.7580510000000231], [1.7647160000000213, 1.7713870000000043], [1.7780510000000049, 1.7847160000000031], [1.7913869999999861, 1.7980519999999842], [1.8047169999999824, 1.8113870000000247], [1.8180469999999787, 1.8247180000000185], [1.831388000000004, 1.8380640000000312], [1.8447140000000104, 1.8513859999999909], [1.8580560000000332, 1.8647139999999922], [1.8713880000000245, 1.8780510000000277], [1.8847180000000208, 1.8913880000000063], [1.8980540000000019, 1.9047170000000051], [1.9113879999999881, 1.9180499999999938], [1.9247179999999844, 1.9313870000000293], [1.9380500000000325, 1.9447170000000256], [1.9513880000000086, 1.9580500000000143], [1.9647170000000074, 1.9713859999999954], [1.9780499999999961, 1.9847169999999892], [1.9913870000000315, 1.9980530000000272], [2.0047180000000253, 2.0113880000000108], [2.0180500000000166, 2.0247170000000096], [2.0313869999999952, 2.0380499999999984], [2.0447169999999915, 2.0513870000000338], [2.0580499999999802, 2.0647170000000301], [2.0713870000000156, 2.0780500000000188], [2.0847170000000119, 2.0913869999999974], [2.0980529999999931, 2.1047169999999937], [2.1113869999999793, 2.1180540000000292], [2.1247170000000324, 2.1313870000000179], [2.1380500000000211, 2.1447180000000117], [2.1513869999999997, 2.1580500000000029], [2.164716999999996, 2.171387999999979], [2.1780469999999923, 2.1847190000000296], [2.1913870000000202, 2.1980540000000133], [2.2047170000000165, 2.211387000000002], [2.2180500000000052, 2.2247169999999983], [2.2313859999999863, 2.238049999999987], [2.2447179999999776, 2.2513880000000199], [2.258070000000032, 2.2647140000000263], [2.2713820000000169, 2.2780480000000125], [2.2814290000000028, 2.2880519999999933], [2.2948240000000055, 2.3013829999999871], [2.3080479999999852, 2.3147220000000175], [2.3214030000000321, 2.3280480000000239], [2.334715000000017, 2.3413879999999949], [2.3480559999999855, 2.3547149999999988], [2.361389000000031, 2.3680479999999875], [2.3747210000000223, 2.3813870000000179], [2.3880500000000211, 2.3947170000000142], [2.4013869999999997, 2.4080510000000004], [2.414716999999996, 2.4213869999999815], [2.4280509999999822, 2.4347169999999778], [2.4413880000000177, 2.4480530000000158], [2.4547170000000165, 2.461387000000002], [2.46805599999999, 2.4747179999999958], [2.4813819999999964, 2.4880469999999946], [2.4947129999999902, 2.5013850000000275], [2.5080580000000054, 2.5147150000000238], [2.5213850000000093, 2.5280480000000125], [2.5347150000000056, 2.5413849999999911], [2.5480519999999842, 2.5547149999999874], [2.5613850000000298, 2.5680490000000304], [2.5747210000000109, 2.5813840000000141], [2.5880490000000123, 2.5947150000000079], [2.6013849999999934, 2.608050999999989], [2.6147149999999897, 2.6213850000000321], [2.6280479999999784, 2.6347150000000283], [2.6413870000000088, 2.6480510000000095], [2.6547150000000101, 2.6613849999999957], [2.6680489999999963, 2.6747199999999793], [2.6813860000000318, 2.6880479999999807], [2.6947150000000306, 2.7013850000000161], [2.7080480000000193, 2.7147170000000074], [2.7213840000000005, 2.7280480000000011], [2.7347149999999942, 2.7413859999999772], [2.7480510000000322, 2.7547150000000329], [2.7613850000000184, 2.7680520000000115], [2.7747170000000096, 2.7813850000000002], [2.7880480000000034, 2.7947149999999965], [2.8013859999999795, 2.8080479999999852], [2.8147119999999859, 2.8213800000000333], [2.8280510000000163, 2.8347160000000144], [2.8413879999999949, 2.8480529999999931], [2.8547169999999937, 2.8613869999999793], [2.8680509999999799, 2.8747200000000248], [2.8813880000000154, 2.8880500000000211], [2.8947170000000142, 2.9013879999999972], [2.9080500000000029, 2.914716999999996], [2.9213869999999815, 2.9280499999999847], [2.9347169999999778, 2.9413870000000202], [2.9480530000000158, 2.954716000000019], [2.961387000000002, 2.968057999999985], [2.9747239999999806, 2.9813859999999863], [2.988049999999987, 2.9947149999999851], [3.0013870000000225, 3.0080480000000307], [3.0147140000000263, 3.0213830000000144], [3.0280839999999785, 3.0347170000000006], [3.0413869999999861, 3.0480539999999792], [3.0547169999999824, 3.0613860000000273], [3.0680510000000254, 3.0747210000000109], [3.0813870000000065, 3.0880480000000148], [3.0947140000000104, 3.1013869999999883], [3.1080479999999966, 3.1147139999999922], [3.121389000000022, 3.1280479999999784], [3.1347140000000309, 3.1413860000000113], [3.1480540000000019, 3.1547140000000127], [3.1613859999999931, 3.1680470000000014], [3.174714999999992, 3.1813799999999901], [3.1880469999999832, 3.1947140000000331], [3.2013860000000136, 3.2080470000000219], [3.2147140000000149, 3.2213869999999929], [3.2280480000000011, 3.2347139999999968], [3.241388000000029, 3.2480530000000272], [3.2547139999999786, 3.2613810000000285], [3.2680490000000191, 3.2747190000000046], [3.2814460000000167, 3.2880569999999807], [3.2947169999999915, 3.3013859999999795], [3.3080509999999776, 3.3147170000000301], [3.3213890000000106, 3.3280510000000163], [3.3347180000000094, 3.3413869999999974], [3.3480519999999956, 3.3547169999999937], [3.3613869999999793, 3.3680499999999824], [3.3747190000000273, 3.3813860000000204], [3.3880480000000261, 3.3947150000000192], [3.4013869999999997, 3.408048000000008], [3.4147140000000036, 3.4213869999999815], [3.4280479999999898, 3.4347139999999854], [3.4413870000000202, 3.4480520000000183], [3.4547150000000215, 3.461387000000002], [3.4680490000000077, 3.4747189999999932], [3.4813859999999863, 3.488047999999992], [3.4947159999999826, 3.5013870000000225], [3.5080480000000307, 3.5147140000000263], [3.5213870000000043, 3.5280480000000125], [3.5347140000000081, 3.5413859999999886], [3.5480580000000259, 3.5547139999999899], [3.5613870000000247, 3.568048000000033], [3.5747200000000134, 3.5813870000000065], [3.5880480000000148, 3.5947150000000079], [3.6013879999999858, 3.6080479999999966], [3.6147139999999922, 3.621387000000027], [3.6280479999999784, 3.6347160000000258], [3.6413870000000088, 3.648052000000007], [3.6547140000000127, 3.6613859999999931], [3.6680479999999989, 3.6747179999999844], [3.6813870000000293, 3.6880479999999807], [3.6947150000000306, 3.7013860000000136], [3.7080480000000193, 3.7147140000000149], [3.7213859999999954, 3.7280480000000011], [3.7347139999999968, 3.7413859999999772], [3.7480520000000297, 3.7547139999999786], [3.7613850000000184, 3.7680470000000241], [3.7747170000000096, 3.7813869999999952], [3.7880490000000009, 3.794713999999999], [3.8013859999999795, 3.8080560000000219], [3.8147139999999808, 3.8213800000000333], [3.8280530000000113, 3.8347140000000195], [3.8413869999999974, 3.8480529999999931], [3.8547140000000013, 3.8613859999999818], [3.868048999999985, 3.8747180000000299], [3.8813870000000179, 3.8880480000000261], [3.8947140000000218, 3.9013860000000022], [3.9080470000000105, 3.9147150000000011], [3.9213849999999866, 3.9280469999999923], [3.9347139999999854, 3.9413850000000252], [3.9480530000000158, 3.954714000000024], [3.961385000000007, 3.9680470000000128], [3.9747189999999932, 3.9813849999999888], [3.9880469999999946, 3.9947139999999877], [4.001386000000025, 4.0080470000000332], [4.0147140000000263, 4.0213860000000068], [4.0280480000000125, 4.0347140000000081], [4.0413859999999886, 4.0480519999999842], [4.0547129999999925, 4.0613860000000273], [4.0680520000000229, 4.0747180000000185], [4.0813850000000116, 4.0880470000000173], [4.0947140000000104, 4.1013859999999909], [4.1080469999999991, 4.1147139999999922], [4.1213860000000295, 4.1280469999999809], [4.1347150000000283, 4.1413860000000113], [4.1480549999999994, 4.1547140000000127], [4.1613859999999931, 4.1680470000000014], [4.1747179999999844, 4.1813799999999901], [4.1880469999999832, 4.1947140000000331], [4.2013850000000161, 4.2080470000000219], [4.2147140000000149, 4.2213859999999954], [4.2280470000000037, 4.2347139999999968], [4.2413849999999798, 4.2480520000000297], [4.2547129999999811, 4.2613810000000285], [4.2680500000000166, 4.2747180000000071], [4.2813850000000002, 4.2880470000000059], [4.2947149999999965, 4.3013859999999795], [4.3080479999999852, 4.3147129999999834], [4.3213860000000182, 4.3280540000000087], [4.3347140000000195, 4.3413869999999974], [4.3480519999999956, 4.3547140000000013], [4.3613880000000336, 4.3680479999999875], [4.3747180000000299, 4.3813860000000204], [4.3880460000000312, 4.3947150000000192], [4.4013860000000022, 4.408048000000008], [4.4147140000000036, 4.4213869999999815], [4.4280479999999898, 4.4347139999999854], [4.4413870000000202, 4.4480530000000158], [4.454714000000024, 4.4613860000000045], [4.4680480000000102, 4.4747179999999958], [4.4813859999999863, 4.4880489999999895], [4.4947149999999851, 4.5013870000000225], [4.5113840000000209, 4.5180470000000241], [4.5247140000000172, 4.5313840000000027], [4.5380470000000059, 4.5447149999999965], [4.5513839999999846, 4.5580479999999852], [4.5647139999999808, 4.5713850000000207], [4.5780500000000188, 4.5847140000000195], [4.5913850000000025, 4.5980500000000006], [4.6047140000000013, 4.6113849999999843], [4.6180499999999824, 4.6247139999999831], [4.631385000000023, 4.6380470000000287], [4.6447140000000218, 4.6513840000000073], [4.6580470000000105, 4.6647140000000036], [4.6713849999999866, 4.6780469999999923], [4.6847139999999854, 4.6913860000000227], [4.6980500000000234, 4.704714000000024], [4.711385000000007, 4.7180480000000102], [4.7247169999999983, 4.7313849999999888], [4.7380469999999946, 4.7447139999999877], [4.75138400000003, 4.7580470000000332], [4.7647150000000238, 4.7713850000000093], [4.778047000000015, 4.7847130000000107], [4.7913849999999911, 4.7980499999999893], [4.8047159999999849, 4.8113860000000273], [4.8180439999999862, 4.8247109999999793], [4.8313850000000116, 4.8380470000000173], [4.8447140000000104, 4.8513849999999934], [4.8580469999999991, 4.8647139999999922], [4.8713799999999878, 4.8780469999999809], [4.8847140000000309, 4.8913840000000164], [4.898050000000012, 4.9047140000000127], [4.9113849999999957, 4.9180499999999938], [4.9247139999999945, 4.93138399999998], [4.9380469999999832, 4.9447140000000331], [4.9513840000000187, 4.9580470000000219], [4.9647140000000149, 4.9713849999999979], [4.9780529999999885, 4.9847129999999993], [4.9913849999999798, 4.9980510000000322], [5.0047150000000329, 5.0113870000000134], [5.0180490000000191, 5.0247150000000147], [5.0313850000000002, 5.0380460000000085], [5.0447130000000016, 5.0513819999999896], [5.0580479999999852, 5.0647149999999783], [5.0713850000000207, 5.0780480000000239], [5.0847140000000195, 5.091384000000005], [5.0980500000000006, 5.1047149999999988], [5.1113859999999818, 5.1180479999999875], [5.1247149999999806, 5.131383000000028], [5.1380480000000261, 5.1447140000000218], [5.1513830000000098, 5.1580470000000105], [5.1647150000000011, 5.1713839999999891], [5.1780449999999973, 5.184710999999993], [5.1913850000000252, 5.1980500000000234], [5.204714000000024, 5.2113840000000096], [5.2180480000000102, 5.2247150000000033], [5.2313839999999914, 5.2380509999999845], [5.2447139999999877, 5.25138400000003], [5.2580480000000307, 5.2647150000000238], [5.2713840000000118, 5.2780480000000125], [5.2847140000000081, 5.2913839999999936], [5.2980499999999893, 5.3047139999999899], [5.3113850000000298, 5.318048000000033], [5.3247150000000261, 5.3313850000000116], [5.3380470000000173, 5.3447150000000079], [5.3513839999999959, 5.3580469999999991], [5.3647139999999922, 5.3713809999999853], [5.3780479999999784, 5.3847130000000334], [5.3913830000000189, 5.398050000000012], [5.4047140000000127, 5.4113839999999982], [5.4180489999999963, 5.4247139999999945], [5.4313860000000318, 5.4380469999999832], [5.4447129999999788, 5.4513840000000187], [5.4580470000000219, 5.4647140000000149], [5.4713849999999979, 5.4780470000000037], [5.4847179999999867, 5.4914009999999962], [5.4980580000000145, 5.5047170000000278], [5.5113860000000159, 5.5180500000000166], [5.5247160000000122, 5.5313859999999977], [5.5380499999999984, 5.544715999999994], [5.5513859999999795, 5.5580499999999802], [5.5647160000000326, 5.5713870000000156], [5.5780470000000264, 5.5847140000000195], [5.5913850000000025, 5.5980509999999981], [5.6047140000000013, 5.6113849999999843], [5.6180479999999875, 5.6247139999999831], [5.6313860000000204, 5.6380470000000287], [5.6447140000000218, 5.6513840000000073], [5.6580470000000105, 5.6647140000000036], [5.6713839999999891, 5.6780469999999923], [5.6847139999999854, 5.6913840000000278], [5.6980500000000234, 5.7047150000000215], [5.711385000000007, 5.7180470000000128], [5.7247140000000059, 5.7313839999999914], [5.7380469999999946, 5.7447139999999877], [5.75138400000003, 5.7580520000000206], [5.7647140000000263, 5.7713850000000093], [5.778047000000015, 5.7847140000000081], [5.7913849999999911, 5.7980499999999893], [5.8047139999999899, 5.8113860000000273], [5.8180469999999787, 5.8247109999999793], [5.8313860000000091, 5.8380470000000173], [5.8447140000000104, 5.8513869999999883], [5.8580469999999991, 5.8647139999999922], [5.8713829999999803, 5.8780469999999809], [5.8847150000000283, 5.8913850000000139], [5.898050000000012, 5.9047150000000101], [5.9113839999999982, 5.9180479999999989], [5.924714999999992, 5.93138399999998], [5.9380479999999807, 5.9447170000000256], [5.9513840000000187, 5.9580480000000193], [5.9647140000000149, 5.9713849999999979], [5.9780489999999986, 5.9847139999999968], [5.9913839999999823, 5.9980489999999804], [6.0047139999999786, 6.0113840000000209], [6.018051000000014, 6.0247130000000197], [6.0313850000000002, 6.0380470000000059], [6.044713999999999, 6.0513839999999846], [6.0580469999999877, 6.0647139999999808], [6.0713830000000257, 6.0780470000000264], [6.0847140000000195, 6.0913850000000025], [6.0980500000000006, 6.1047130000000038], [6.1113829999999894, 6.11804699999999], [6.1247139999999831, 6.131385000000023], [6.1380490000000236, 6.1447140000000218], [6.1513850000000048, 6.1580470000000105], [6.1647140000000036, 6.1713849999999866], [6.1780469999999923, 6.184710999999993], [6.1913850000000252, 6.1980500000000234], [6.204714000000024, 6.2113860000000045], [6.2180480000000102, 6.2247150000000033], [6.2313839999999914, 6.238047999999992], [6.2447129999999902, 6.2513830000000326], [6.2580480000000307, 6.2647140000000263], [6.2713840000000118, 6.2780510000000049], [6.2847140000000081, 6.2913849999999911], [6.2980509999999867, 6.3047139999999899], [6.3114009999999894, 6.3180449999999837], [6.3247289999999907, 6.3313840000000141], [6.3380470000000173, 6.3447130000000129], [6.3513859999999909, 6.3580479999999966], [6.3647149999999897, 6.3713839999999777], [6.3780490000000327, 6.3847150000000283], [6.3913850000000139, 6.398050000000012], [6.4047150000000101, 6.4113849999999957], [6.4180460000000039, 6.4247139999999945], [6.4313849999999775, 6.4380469999999832], [6.4447129999999788, 6.4513840000000187], [6.4580500000000143, 6.4647140000000149], [6.4713849999999979, 6.4780470000000037], [6.4847139999999968, 6.4913839999999823], [6.4980499999999779, 6.5047129999999811], [6.5113850000000184, 6.5180470000000241], [6.5247140000000172, 6.5313840000000027], [6.5380529999999908, 6.5447130000000016], [6.5513839999999846, 6.5580640000000017], [6.5647139999999808, 6.5713820000000283], [6.5780540000000087, 6.5847140000000195], [6.5913869999999974, 6.5980509999999981], [6.6047159999999963, 6.6113839999999868], [6.61804699999999, 6.6247139999999831], [6.6313840000000255, 6.6380470000000287], [6.6447140000000218, 6.6513830000000098], [6.6580470000000105, 6.6647140000000036], [6.6713849999999866, 6.6780469999999923], [6.6847129999999879, 6.6913840000000278], [6.6980500000000234, 6.704714000000024], [6.7113840000000096, 6.7180490000000077], [6.7247140000000059, 6.7313839999999914], [6.7380469999999946, 6.7447129999999902], [6.7513830000000326, 6.7580470000000332], [6.7647140000000263, 6.7713840000000118], [6.778047000000015, 6.7847130000000107], [6.7913839999999936, 6.7980529999999817], [6.8047139999999899, 6.811382999999978], [6.8180469999999787, 6.8247109999999793], [6.8313870000000065, 6.8380490000000123], [6.8447150000000079, 6.8513849999999934], [6.8580489999999941, 6.8647159999999872], [6.8713839999999777, 6.8780469999999809], [6.8847140000000309, 6.8913840000000164], [6.898050000000012, 6.9047140000000127], [6.9113839999999982, 6.9180470000000014], [6.9247139999999945, 6.9313849999999775], [6.9380469999999832, 6.9447140000000331], [6.9513840000000187, 6.9580470000000219], [6.9647140000000149, 6.9713869999999929], [6.9780480000000011, 6.9847129999999993], [6.9913839999999823, 6.9980499999999779], [7.0047160000000304, 7.0113840000000209], [7.0180470000000241, 7.0247140000000172], [7.0313840000000027, 7.0380490000000009], [7.0447130000000016, 7.0513829999999871], [7.058052000000032, 7.0647139999999808], [7.0713840000000232, 7.0780470000000264], [7.0847140000000195, 7.091384000000005], [7.0980509999999981, 7.1047140000000013], [7.1113829999999894, 7.1180479999999875], [7.1247139999999831, 7.131383000000028], [7.1380470000000287, 7.1447130000000243], [7.1513840000000073, 7.1580470000000105], [7.1647140000000036, 7.1713829999999916], [7.1780469999999923, 7.184710999999993], [7.1913860000000227, 7.1980520000000183], [7.204716000000019, 7.211385000000007], [7.2180510000000027, 7.2247160000000008], [7.2313849999999888, 7.2380489999999895], [7.2447159999999826, 7.251386000000025], [7.2580530000000181, 7.2647120000000314], [7.2713840000000118, 7.278047000000015], [7.2847130000000107, 7.2913849999999911], [7.2980499999999893, 7.3047139999999899], [7.3113850000000298, 7.3180530000000203], [7.3247140000000286, 7.3313840000000141], [7.3380470000000173, 7.3447140000000104], [7.3513829999999984, 7.3580469999999991], [7.3647139999999922, 7.3713819999999828], [7.3780469999999809, 7.3847130000000334], [7.3913840000000164, 7.3980559999999969], [7.4047160000000076, 7.4113839999999982], [7.4180470000000014, 7.4247139999999945], [7.4313829999999825, 7.4380479999999807], [7.4447140000000331, 7.4513850000000161], [7.4580480000000193, 7.4647140000000149], [7.4713840000000005, 7.4780480000000011], [7.4847209999999791, 7.4913870000000315], [7.4980510000000322, 7.5047139999999786], [7.5113840000000209, 7.5180480000000216], [7.5247180000000071, 7.5313830000000053], [7.5380470000000059, 7.5447149999999965], [7.5513839999999846, 7.5580479999999852], [7.5647139999999808, 7.5713850000000207], [7.5780550000000062, 7.5847140000000195], [7.5913830000000075, 7.5980480000000057], [7.6047130000000038, 7.6113829999999894], [7.6180459999999925, 7.6247129999999856], [7.6313810000000331, 7.6380460000000312], [7.6447130000000243, 7.6513820000000123], [7.6580470000000105, 7.6647140000000036], [7.6714259999999967, 7.6780479999999898], [7.684710999999993, 7.6913860000000227], [7.6980550000000108, 7.7047150000000215], [7.711387000000002, 7.7180460000000153], [7.7247150000000033, 7.7313839999999914], [7.7380469999999946, 7.7447139999999877], [7.7513830000000326, 7.7580470000000332], [7.7647130000000288, 7.7713840000000118], [7.7780460000000176, 7.7847130000000107], [7.7913839999999936, 7.7980499999999893], [7.8047159999999849, 7.8113840000000323], [7.8180459999999812, 7.8247109999999793], [7.8313780000000293, 7.8380510000000072], [7.8447130000000129, 7.8513829999999984], [7.8580469999999991, 7.8647139999999922], [7.8713809999999853, 7.8780469999999809], [7.8847140000000309, 7.8913840000000164], [7.898052000000007, 7.9047140000000127], [7.9113839999999982, 7.9180470000000014], [7.924714999999992, 7.9313849999999775], [7.9380479999999807, 7.9447129999999788], [7.9513840000000187, 7.9580480000000193], [7.9647140000000149, 7.9713840000000005], [7.9780470000000037, 7.9847129999999993], [7.9913829999999848, 7.9980520000000297], [8.0047139999999786, 8.0113840000000209], [8.0180450000000292, 8.0247170000000096], [8.0313820000000078, 8.0380539999999883], [8.044713999999999, 8.0513859999999795], [8.0580469999999877, 8.0647139999999808], [8.0713860000000182, 8.0780480000000239], [8.0847140000000195, 8.091384000000005], [8.0980739999999969, 8.1047140000000013], [8.1113829999999894, 8.11804699999999], [8.1247139999999831, 8.1313840000000255], [8.1380470000000287, 8.1447130000000243], [8.1513840000000073, 8.158048000000008], [8.1647140000000036, 8.1713839999999891], [8.1780479999999898, 8.1847099999999955], [8.1913850000000252, 8.1980520000000183], [8.2047190000000114, 8.2113860000000045], [8.2180490000000077, 8.2247160000000008], [8.2313859999999863, 8.2380489999999895], [8.2447159999999826, 8.251386000000025], [8.2580490000000282, 8.2647150000000238], [8.2713870000000043, 8.2780480000000125], [8.2847140000000081, 8.2913829999999962], [8.2980499999999893, 8.3047139999999899], [8.3113840000000323, 8.3180459999999812], [8.3247130000000311, 8.3313840000000141], [8.3380460000000198, 8.3447130000000129], [8.3513829999999984, 8.3580519999999865], [8.3647139999999922, 8.3713809999999853], [8.3780459999999835, 8.3847140000000309], [8.3913840000000164, 8.398050000000012], [8.4047140000000127, 8.4113830000000007], [8.4180479999999989, 8.4247139999999945], [8.4313860000000318, 8.4380469999999832], [8.4447129999999788, 8.4513830000000212], [8.4580470000000219, 8.4647140000000149], [8.4713840000000005, 8.4780460000000062], [8.4847129999999993, 8.4913859999999772], [8.4980499999999779, 8.5047139999999786], [8.5113860000000159, 8.5180470000000241], [8.5247130000000197, 8.5313840000000027], [8.5380460000000085, 8.5447130000000016], [8.5513829999999871, 8.5580459999999903], [8.5647129999999834, 8.5713840000000232], [8.5780460000000289, 8.584713000000022], [8.5913780000000202, 8.5980519999999956], [8.6047149999999988, 8.6113859999999818], [8.6180550000000267, 8.6247129999999856], [8.631385000000023, 8.6380460000000312], [8.6447130000000243, 8.6513860000000022], [8.658046000000013, 8.6647130000000061], [8.6713869999999815, 8.6780469999999923], [8.6847139999999854, 8.6913840000000278], [8.6980490000000259, 8.704714000000024], [8.711385000000007, 8.7180470000000128], [8.7247140000000059, 8.7313829999999939], [8.7380469999999946, 8.7447129999999902], [8.7513850000000275, 8.7580470000000332], [8.7647140000000263, 8.7713840000000118], [8.7780480000000125, 8.7847140000000081], [8.7913829999999962, 8.7980489999999918], [8.8047139999999899, 8.811382999999978], [8.818048000000033, 8.8247130000000311], [8.8313800000000242, 8.8380490000000123], [8.8447160000000054, 8.8513849999999934], [8.8580489999999941, 8.8647139999999922], [8.8713829999999803, 8.8780520000000251], [8.8847130000000334, 8.8913820000000214], [8.8980490000000145, 8.9047140000000127], [8.9113839999999982, 8.9180470000000014], [8.9247139999999945, 8.93138399999998], [8.9380469999999832, 8.9447129999999788], [8.9513840000000187, 8.9580470000000219], [8.9647140000000149, 8.9713840000000005], [8.9780480000000011, 8.9847139999999968], [8.9913839999999823, 8.9980489999999804], [9.0047160000000304, 9.0113850000000184], [9.0180470000000241, 9.0247150000000147], [9.0313840000000027, 9.0380470000000059], [9.044715999999994, 9.0513839999999846], [9.0580469999999877, 9.0647139999999808], [9.0713840000000232, 9.0780480000000239], [9.0847140000000195, 9.091384000000005], [9.0980500000000006, 9.1047140000000013], [9.1113819999999919, 9.11804699999999], [9.1247139999999831, 9.1313840000000255], [9.1380530000000135, 9.1447130000000243], [9.1513830000000098, 9.1580470000000105], [9.1647140000000036, 9.1713839999999891], [9.1780479999999898, 9.184710999999993], [9.1913860000000227, 9.1980500000000234], [9.2047150000000215, 9.2113860000000045], [9.2180490000000077, 9.2247150000000033], [9.2314220000000091, 9.2380489999999895], [9.2447159999999826, 9.251386000000025], [9.2580490000000282, 9.2647150000000238], [9.2713820000000169, 9.2780460000000176], [9.2814470000000142, 9.2880460000000085], [9.294713999999999, 9.3013859999999795], [9.3080459999999903, 9.3147460000000137], [9.3247180000000185, 9.3313830000000166], [9.3380480000000148, 9.3447140000000104], [9.3513849999999934, 9.3580469999999991], [9.3647139999999922, 9.3713809999999853], [9.3780459999999835, 9.3847150000000283], [9.3913840000000164, 9.3980629999999792], [9.4047130000000152, 9.4113830000000007], [9.4180460000000039, 9.424712999999997], [9.43138399999998, 9.4380459999999857], [9.4447129999999788, 9.4513830000000212], [9.4580480000000193, 9.4647130000000175], [9.4713840000000005, 9.4780460000000062], [9.4847129999999993, 9.4913849999999798], [9.4980499999999779, 9.5047129999999811], [9.5113840000000209, 9.5180480000000216], [9.5247140000000172, 9.5313830000000053], [9.5380490000000009, 9.5447130000000016], [9.5513829999999871, 9.5580469999999877], [9.5647129999999834, 9.5713840000000232], [9.5780460000000289, 9.5847140000000195], [9.5913830000000075, 9.5980490000000032], [9.6047130000000038, 9.6113829999999894], [9.61804699999999, 9.6247129999999856], [9.6313840000000255, 9.6380460000000312], [9.6447140000000218, 9.6513820000000123], [9.6580510000000004, 9.6647130000000061], [9.6713839999999891, 9.6780469999999923], [9.6847129999999879, 9.6913840000000278], [9.6980490000000259, 9.7047130000000266], [9.711385000000007, 9.7180480000000102], [9.7247130000000084, 9.7313829999999939], [9.7380459999999971, 9.7447129999999902], [9.7513830000000326, 9.7580459999999789], [9.7647140000000263, 9.7713840000000118], [9.778047000000015, 9.7847160000000031], [9.7913849999999911, 9.7980499999999893], [9.8047139999999899, 9.8113850000000298], [9.8180469999999787, 9.8247140000000286], [9.8313780000000293, 9.8380510000000072], [9.8447140000000104, 9.8513849999999934], [9.8580460000000016, 9.8647129999999947], [9.8713819999999828, 9.8780459999999835], [9.8847130000000334, 9.8913830000000189], [9.898050000000012, 9.9047130000000152], [9.9113839999999982, 9.9180529999999862], [9.9247139999999945, 9.9313829999999825], [9.9380479999999807, 9.9447129999999788], [9.9513830000000212, 9.9580460000000244], [9.9647130000000175, 9.971383000000003], [9.9780460000000062, 9.9847129999999993], [9.9913839999999823, 9.9980489999999804], [10.004713999999979, 10.011383000000023], [10.018046000000027, 10.02471300000002], [10.031384000000003, 10.038046000000008], [10.044713000000002, 10.051384999999982], [10.058046999999988, 10.064712999999983], [10.071384000000023, 10.078046000000029], [10.084713000000022, 10.091384000000005], [10.098049000000003, 10.104713000000004], [10.111383999999987, 10.11804699999999], [10.124712999999986, 10.131384000000025], [10.138046000000031, 10.144713000000024], [10.15138300000001, 10.158044000000018], [10.164713000000006, 10.171380999999997], [10.178050999999982, 10.18471199999999], [10.191382000000033, 10.198052000000018], [10.204715000000022, 10.211386000000005], [10.218049000000008, 10.224715000000003], [10.231384999999989, 10.238047999999992], [10.24471699999998, 10.251385000000028], [10.258048000000031, 10.264715000000024], [10.271386000000007, 10.278046000000018], [10.281431999999995, 10.288047000000006], [10.294713999999999, 10.301384999999982], [10.308050999999978, 10.314713999999981], [10.321383000000026, 10.328047000000026], [10.334714000000019, 10.341383000000008], [10.348050999999998, 10.354714000000001], [10.361383999999987, 10.36804699999999], [10.37471800000003, 10.38138600000002], [10.388048000000026, 10.394713000000024], [10.401386000000002, 10.408046000000013], [10.414713000000006, 10.421385999999984], [10.428045999999995, 10.434712999999988], [10.441386000000023, 10.448051000000021], [10.454713000000027, 10.461385000000007], [10.46804400000002, 10.474714000000006], [10.481380999999999, 10.488047999999992], [10.494715999999983, 10.50138400000003], [10.511385000000018, 10.518049000000019], [10.524715000000015, 10.531385999999998], [10.538048000000003, 10.544714999999997], [10.551383999999985, 10.558048999999983], [10.564719000000025, 10.571385000000021], [10.578046000000029, 10.584713000000022], [10.591384000000005, 10.598049000000003], [10.604714000000001, 10.611383999999987], [10.618045999999993, 10.624712999999986], [10.631384000000025, 10.638046000000031], [10.644713000000024, 10.65138300000001], [10.65804700000001, 10.664713000000006], [10.671383999999989, 10.678045999999995], [10.684712999999988, 10.69138300000003], [10.698056000000008, 10.704713000000027], [10.71138400000001, 10.718043000000023], [10.724710000000016, 10.731382999999994], [10.738046999999995, 10.74471299999999], [10.751383000000033, 10.758047000000033], [10.764713000000029, 10.771383000000014], [10.778046000000018, 10.784713000000011], [10.791383999999994, 10.798048999999992], [10.80471399999999, 10.811382999999978], [10.818046999999979, 10.824713000000031], [10.831378000000029, 10.838049000000012], [10.844713000000013, 10.851382000000001], [10.858046000000002, 10.864712999999995], [10.871380999999985, 10.878045999999983], [10.884711999999979, 10.891384000000016], [10.898049000000015, 10.904713000000015], [10.911383000000001, 10.918046000000004], [10.924712999999997, 10.931382999999983], [10.938045999999986, 10.944712999999979], [10.951383000000021, 10.958051000000012], [10.964715000000012, 10.971383000000003], [10.978046000000006, 10.984712999999999], [10.991383999999982, 10.99804899999998], [11.004712999999981, 11.011384000000021], [11.018046000000027, 11.02471300000002], [11.031383000000005, 11.038046000000008], [11.044713000000002, 11.05138199999999], [11.05804599999999, 11.064712999999983], [11.071382000000028, 11.078050000000019], [11.084713000000022, 11.091384000000005], [11.098049000000003, 11.104713000000004], [11.111381999999992, 11.11804699999999], [11.124712999999986, 11.131384000000025], [11.138047000000029, 11.144713000000024], [11.15138300000001, 11.15804700000001], [11.164713000000006, 11.171381999999994], [11.178046999999992, 11.184712999999988], [11.191376999999989, 11.198049000000026], [11.204713000000027, 11.21138400000001], [11.218051000000003, 11.224713000000008], [11.231381999999996, 11.238046999999995], [11.24471299999999, 11.251383000000033], [11.258048000000031, 11.26470999999998], [11.271384000000012, 11.278048000000013], [11.284713000000011, 11.291381999999999], [11.298048999999992, 11.304712999999992], [11.311377999999991, 11.318043999999986], [11.328048000000024, 11.334714000000019], [11.341408000000001, 11.348067000000015], [11.354715999999996, 11.361385999999982], [11.36805099999998, 11.374717000000032], [11.381384000000025, 11.388047000000029], [11.394714000000022, 11.401386000000002], [11.40804700000001, 11.414713000000006], [11.418440000000032, 11.424714999999992], [11.43138399999998, 11.438045999999986], [11.444718000000023, 11.451382000000024], [11.458049000000017, 11.464715000000012], [11.471384999999998, 11.478068000000007], [11.484713999999997, 11.491382999999985]]}, \"wlan_logging_th-1454\": {\"2\": [[2.3183579999999893, 2.3184459999999945], [2.9682300000000055, 2.9683959999999843], [2.9701959999999872, 2.9703440000000114]]}, \"shell srvc 4762-4763\": {\"1\": [[11.501627999999982, 11.502029999999991]]}, \"rt-app-4764\": {\"0\": [[0.30608499999999594, 0.30689599999999473], [0.30736100000001443, 0.30884000000003198], [0.30885799999998653, 0.30887000000001308], [0.30888299999998026, 0.30891500000001315], [0.30894000000000688, 0.3090050000000133], [11.497276999999997, 11.497320999999999]], \"1\": [[11.499167999999997, 11.499923000000024]]}, \"cnd-627\": {\"2\": [[0.17897599999997738, 0.17918900000000804], [1.1802769999999896, 1.1804630000000316], [1.7220869999999877, 1.7222810000000095], [2.1818119999999794, 2.1819960000000265], [3.1830719999999815, 3.1832600000000184], [4.1843430000000126, 4.1845380000000318], [4.7231590000000097, 4.7233499999999822], [5.1858960000000138, 5.1860869999999863], [6.1871950000000311, 6.1874050000000125], [7.1884759999999801, 7.1886670000000095], [7.6882110000000239, 7.6886830000000259], [7.6906630000000291, 7.6907239999999888], [7.7238600000000019, 7.7240530000000263], [8.189598999999987, 8.189785000000029], [9.1908700000000181, 9.1910629999999855], [10.192144999999982, 10.192338000000007], [10.724919999999997, 10.725116000000014], [11.193669, 11.193862000000024]]}, \"logd.klogd-429\": {\"0\": [[2.2554910000000064, 2.256163000000015]], \"2\": [[2.2585809999999924, 2.2586160000000177], [2.2680700000000229, 2.2682930000000283], [2.2957590000000323, 2.2963369999999941], [2.3121459999999843, 2.3128320000000144], [2.3214169999999967, 2.3216469999999845], [2.9984949999999913, 2.9991249999999923], [6.5586720000000014, 6.5592159999999922]]}, \"InputDispatcher-1398\": {\"0\": [[1.8326769999999897, 1.8327179999999998], [1.8327290000000289, 1.8327620000000024]]}, \"shell srvc 4756-4757\": {\"0\": [[0.20191499999998541, 0.20224999999999227]]}, \"task1-4771\": {\"0\": [[0.41471999999998843, 0.42139100000002827], [0.42806200000001127, 0.43471399999998539], [0.44138800000001766, 0.4480649999999855], [0.45471700000001647, 0.46138799999999947], [0.46805699999998751, 0.47140699999999924], [0.47805800000003273, 0.48471599999999171], [0.49138800000002902, 0.49806599999999435], [0.50471700000002784, 0.51138900000000831], [0.51806299999998373, 0.52471700000000965], [0.53138899999999012, 0.53806100000002743], [0.54472800000002053, 0.5513880000000313], [0.55806100000000924, 0.56471900000002506], [0.57144499999998288, 0.57806399999998348], [0.58471700000001192, 0.59138999999998987], [0.59806500000001961, 0.60471599999999626], [0.61138800000003357, 0.61806100000001152], [0.62471700000003239, 0.63138800000001538], [0.63806099999999333, 0.64472799999998642], [0.65138799999999719, 0.65806100000003198], [0.66471699999999601, 0.67141500000002452], [0.67806100000001379, 0.68471800000003213], [0.69142900000002783, 0.69806599999998298], [0.70471700000001647, 0.71138799999999947], [0.71806300000002921, 0.72471699999999828], [0.73138599999998632, 0.73806600000000344], [0.74473000000000411, 0.75138800000001993], [0.75806299999999283, 0.76471700000001874], [0.77143899999998666, 0.77806099999997969], [0.78471700000000055, 0.79139400000002524], [0.79806300000001329, 0.80471799999997984], [0.81138299999997798, 0.8180550000000153], [0.82471700000002102, 0.83138800000000401], [0.83806199999997943, 0.8447280000000319], [0.85138799999998582, 0.85806100000002061], [0.86471699999998464, 0.86841800000001967], [0.86845800000003237, 0.87141400000001568], [0.87806299999999737, 0.88471700000002329], [0.89138800000000629, 0.89806299999997918], [0.9047170000000051, 0.91138899999998557], [0.91806100000002289, 0.92471699999998691], [0.93138900000002423, 0.93806200000000217], [0.94472799999999779, 0.95139000000000351], [0.95806099999998651, 0.96471700000000737], [0.97143099999999549, 0.97806100000002516], [0.98471699999998918, 0.99138800000002902], [0.99807099999998172, 1.0047170000000278], [1.0113880000000108, 1.0180609999999888], [1.0247150000000147, 1.0313859999999977], [1.0380610000000274, 1.0447280000000205], [1.0513880000000313, 1.0580610000000092], [1.0647170000000301, 1.0714150000000018], [1.0780609999999911, 1.0847170000000119], [1.0913879999999949, 1.0980650000000196], [1.1047179999999912, 1.1113869999999793], [1.1180610000000115, 1.1247170000000324], [1.1313870000000179, 1.1380609999999933], [1.1447299999999814, 1.1480819999999881], [1.148145999999997, 1.1547180000000026], [1.1613869999999906, 1.1680640000000153], [1.1780540000000315, 1.1847169999999778], [1.1913880000000177, 1.1980609999999956], [1.204716000000019, 1.2113860000000045], [1.2180609999999774, 1.2247169999999983], [1.2313869999999838, 1.238065000000006], [1.2447280000000092, 1.2513880000000199], [1.258070000000032, 1.2647190000000137], [1.2714330000000018, 1.2780609999999797], [1.284717999999998, 1.2913869999999861], [1.2947790000000055, 1.3013880000000313], [1.3080620000000067, 1.3147160000000326], [1.3213880000000131, 1.3280639999999835], [1.3347190000000069, 1.3413879999999949], [1.3480660000000171, 1.3547179999999912], [1.3647179999999821, 1.3684650000000147], [1.3684920000000034, 1.3714150000000132], [1.3780610000000024, 1.3847170000000233], [1.3913890000000038, 1.3980629999999792], [1.4047170000000051, 1.4113889999999856], [1.4180610000000229, 1.4247169999999869], [1.4313870000000293, 1.4380610000000047], [1.4447279999999978, 1.4513880000000086], [1.458061999999984, 1.4647190000000023], [1.4714290000000005, 1.4780640000000176], [1.4847169999999892, 1.4913870000000315], [1.4980669999999918, 1.5047170000000278], [1.5113880000000108, 1.518066000000033], [1.5247130000000197, 1.5313869999999952], [1.5380579999999782, 1.5447250000000281], [1.5513880000000313, 1.5580580000000168], [1.5647139999999808, 1.5714120000000094], [1.5780609999999911, 1.5847140000000195], [1.5913879999999949, 1.5980670000000146], [1.6047140000000013, 1.6113880000000336], [1.6180580000000191, 1.6247139999999831], [1.6313890000000129, 1.6380580000000009], [1.644724999999994, 1.6513879999999972], [1.6580579999999827, 1.6647140000000036], [1.6714269999999942, 1.6780580000000214], [1.6847139999999854, 1.6913890000000151], [1.6980649999999855, 1.704714000000024], [1.7113879999999995, 1.7180569999999875], [1.7247189999999932, 1.7314180000000192], [1.7380620000000135, 1.7447300000000041], [1.7513890000000174, 1.7580629999999928], [1.7647180000000162, 1.7714149999999904], [1.7780690000000163, 1.784717999999998], [1.7913879999999835, 1.7980630000000133], [1.8047169999999824, 1.8113870000000247], [1.8180610000000001, 1.8247200000000134], [1.831388000000004, 1.8318050000000312], [1.8328579999999874, 1.8413899999999899], [1.8480670000000146, 1.8547169999999937], [1.8613869999999793, 1.8680610000000115], [1.8714659999999981, 1.8780639999999948], [1.8847170000000233, 1.8913890000000038], [1.8980629999999792, 1.9047170000000051], [1.911389999999983, 1.9180630000000178], [1.9247179999999844, 1.9313870000000293], [1.9380629999999996, 1.9447279999999978], [1.9513880000000086, 1.9580629999999815], [1.9647170000000074, 1.9714160000000334], [1.9780630000000201, 1.9847169999999892], [1.991388000000029, 1.9980649999999969], [2.0047170000000278, 2.0113890000000083], [2.0180629999999837, 2.0247170000000096], [2.0313879999999926, 2.0380690000000072], [2.0447280000000205, 2.0513880000000313], [2.0580630000000042, 2.0647170000000301], [2.0714320000000157, 2.0780609999999911], [2.0847170000000119, 2.0913869999999974], [2.0980650000000196, 2.1047169999999937], [2.1113880000000336, 2.1180610000000115], [2.1247190000000273, 2.1313880000000154], [2.1380629999999883, 2.1447279999999864], [2.1513879999999972, 2.158061000000032], [2.164716999999996, 2.1714120000000321], [2.1780529999999771, 2.1847190000000296], [2.1913890000000151, 2.1980629999999906], [2.2047170000000165, 2.211387000000002], [2.2180609999999774, 2.2247169999999983], [2.2313859999999863, 2.2380759999999782], [2.2447300000000041, 2.2513940000000048], [2.2613870000000134, 2.2661939999999845], [2.2714550000000031, 2.2724010000000021], [2.2724099999999794, 2.2775199999999813], [2.2826450000000023, 2.2877589999999941], [2.296572000000026, 2.3047159999999849], [2.3247220000000084, 2.331389999999999], [2.3380530000000022, 2.3447320000000218], [2.3513889999999833, 2.3580610000000206], [2.3614769999999794, 2.3680610000000115], [2.3780619999999999, 2.3847180000000208], [2.3913890000000038, 2.3980670000000259], [2.4047170000000051, 2.4113879999999881], [2.4180620000000204, 2.4247169999999869], [2.4313910000000192, 2.4380639999999971], [2.4447279999999978, 2.4513919999999985], [2.4580639999999789, 2.4647160000000099], [2.4714480000000094, 2.4780569999999784], [2.4847129999999993, 2.4913849999999798], [2.4980630000000019, 2.5047129999999811], [2.5113880000000108, 2.5180589999999938], [2.5247780000000262, 2.5313879999999926], [2.5380590000000325, 2.5447230000000332], [2.5513890000000288, 2.5580630000000042], [2.5647129999999834, 2.5714300000000208], [2.578062999999986, 2.584713000000022], [2.5913879999999949, 2.5980650000000196], [2.6047130000000038, 2.6113880000000336], [2.6180590000000166, 2.6247129999999856], [2.6313880000000154, 2.6380589999999984], [2.644722999999999, 2.6513879999999972], [2.6580589999999802, 2.6647130000000061], [2.6714360000000283, 2.6780620000000113], [2.6847159999999803, 2.6913880000000177], [2.6980649999999855, 2.7047130000000266], [2.7113879999999995, 2.7180609999999774], [2.7247130000000084, 2.7313879999999813], [2.7380590000000211, 2.7447230000000218], [2.7513880000000199, 2.7580590000000029], [2.7647120000000314, 2.771411999999998], [2.7780589999999847, 2.7847120000000132], [2.7913869999999861, 2.7980630000000133], [2.8047159999999849, 2.8113880000000222], [2.8180710000000317, 2.8247380000000248], [2.8313890000000015, 2.8380640000000312], [2.8447330000000193, 2.8513879999999858], [2.8580610000000206, 2.8647179999999821], [2.868678999999986, 2.871420999999998], [2.8780610000000024, 2.8847170000000233], [2.8913880000000063, 2.8980660000000285], [2.9047160000000076, 2.9113879999999881], [2.9180620000000204, 2.9247169999999869], [2.9313870000000293, 2.9380610000000047], [2.9447279999999978, 2.9513880000000086], [2.9580609999999865, 2.9647330000000238], [2.981392000000028, 2.9847250000000258], [2.9854440000000295, 2.9913890000000265], [2.9951260000000275, 2.9952420000000188], [2.9952809999999772, 2.9953899999999862], [2.9954349999999863, 2.995597000000032], [2.9964479999999867, 3.0047170000000278], [3.0113850000000184, 3.0180540000000065], [3.024723999999992, 3.0313879999999926], [3.0380630000000224, 3.0447270000000231], [3.0513880000000313, 3.0580640000000017], [3.0647160000000326, 3.0714199999999892], [3.0780720000000201, 3.0847160000000144], [3.091386, 3.0980630000000247], [3.1047169999999937, 3.1113859999999818], [3.1180610000000115, 3.1247159999999781], [3.1313870000000179, 3.1380609999999933], [3.1447279999999864, 3.1513869999999997], [3.158061000000032, 3.1647159999999985], [3.1714109999999778, 3.1780529999999771], [3.1847180000000321, 3.1913870000000202], [3.1980619999999931, 3.204716000000019], [3.2113879999999995, 3.2180609999999774], [3.2247160000000008, 3.2313879999999813], [3.2380610000000161, 3.2447250000000167], [3.2513870000000225, 3.2580679999999802], [3.2647130000000288, 3.2714129999999955], [3.2780609999999797, 3.284719999999993], [3.2913879999999835, 3.2947369999999978], [3.3013859999999795, 3.3080630000000042], [3.3147180000000276, 3.3213890000000106], [3.328062999999986, 3.3347200000000043], [3.3413869999999974, 3.3480650000000196], [3.3547169999999937, 3.3613880000000336], [3.3680630000000065, 3.3687009999999873], [3.3687770000000228, 3.3747190000000273], [3.3813870000000179, 3.3880599999999959], [3.394724999999994, 3.4013879999999972], [3.4080579999999827, 3.4147140000000036], [3.4213869999999815, 3.4280610000000138], [3.4347139999999854, 3.4413880000000177], [3.448063999999988, 3.454714000000024], [3.461387000000002, 3.4680680000000166], [3.4747189999999932, 3.4813859999999863], [3.4880610000000161, 3.4947250000000167], [3.5013870000000225, 3.5080609999999979], [3.5147130000000288, 3.5213870000000043], [3.5280599999999822, 3.5347130000000107], [3.5413879999999835, 3.5480640000000108], [3.5547129999999925, 3.5613870000000247], [3.5680600000000027, 3.5747329999999806], [3.581388000000004, 3.5880579999999895], [3.5947249999999826, 3.6013879999999858], [3.6080600000000231, 3.6147189999999796], [3.621387000000027, 3.6280610000000024], [3.6347140000000309, 3.6413870000000088], [3.6480640000000335, 3.6547130000000152], [3.6613869999999906, 3.6680580000000305], [3.6747179999999844, 3.6813880000000268], [3.6880620000000022, 3.6947250000000054], [3.7013870000000111, 3.7080579999999941], [3.7147140000000149, 3.7213859999999954], [3.7280630000000201, 3.7347139999999968], [3.7413859999999772, 3.7480639999999994], [3.7547129999999811, 3.7613850000000184], [3.7680560000000014, 3.7747170000000096], [3.7813869999999952, 3.7847320000000195], [3.7913869999999861, 3.7980630000000133], [3.8047159999999849, 3.8113870000000247], [3.8180580000000077, 3.824719000000016], [3.8313870000000065, 3.8380599999999845], [3.8447259999999801, 3.8513869999999883], [3.858064000000013, 3.8647159999999872], [3.8688149999999837, 3.8747190000000273], [3.8813870000000179, 3.8880599999999959], [3.8914120000000025, 3.8980640000000335], [3.9047160000000076, 3.9113859999999931], [3.9180630000000178, 3.9247159999999894], [3.9313860000000318, 3.9380600000000072], [3.9447260000000028, 3.9513870000000111], [3.9580609999999865, 3.9647150000000124], [3.9714109999999891, 3.9780600000000277], [3.9847159999999917, 3.991388000000029], [3.9980630000000019, 4.0047150000000329], [4.0113870000000134, 4.0180599999999913], [4.0247160000000122, 4.0313869999999952], [4.0380610000000274, 4.0447250000000281], [4.0513890000000288, 4.0580600000000118], [4.0647160000000326, 4.0714100000000144], [4.0780599999999936, 4.084715000000017], [4.091386, 4.0980620000000272], [4.1047159999999963, 4.1113869999999793], [4.1180659999999989, 4.1247159999999781], [4.1313860000000204, 4.1380609999999933], [4.1447259999999915, 4.1513860000000022], [4.158061000000032, 4.1647150000000011], [4.1714099999999803, 4.1780570000000239], [4.1847180000000321, 4.1913880000000177], [4.1980629999999906, 4.204716000000019], [4.211387000000002, 4.2180599999999799], [4.2247160000000008, 4.2313869999999838], [4.2380600000000186, 4.2447250000000167], [4.2513870000000225, 4.2580679999999802], [4.2647150000000238, 4.2714110000000005], [4.2780599999999822, 4.284717999999998], [4.2914279999999962, 4.294729000000018], [4.3013870000000338, 4.3080600000000118], [4.3147129999999834, 4.3213870000000156], [4.3280579999999986, 4.334713000000022], [4.3413869999999974, 4.3480640000000221], [4.3547130000000038, 4.3613880000000336], [4.3680610000000115, 4.3688339999999926], [4.3688609999999812, 4.3747190000000273], [4.3813870000000179, 4.3880589999999984], [4.394724999999994, 4.4013860000000022], [4.4080579999999827, 4.4147130000000061], [4.4213890000000333, 4.4280600000000163], [4.4347129999999879, 4.4413870000000202], [4.448063999999988, 4.454714000000024], [4.4613860000000045, 4.4680599999999799], [4.4747189999999932, 4.4813879999999813], [4.4880590000000211, 4.4947250000000167], [4.5013870000000225, 4.5080710000000295], [4.5147120000000314, 4.5213870000000043], [4.5280589999999847, 4.5347130000000107], [4.5413879999999835, 4.5480650000000082], [4.554711999999995, 4.5613880000000222], [4.5680590000000052, 4.574719000000016], [4.5813870000000065, 4.5880619999999794], [4.5947229999999877, 4.6013869999999883], [4.6080590000000257, 4.6147129999999947], [4.621387000000027, 4.6280590000000075], [4.6347119999999791, 4.6413959999999861], [4.6480660000000285, 4.6547120000000177], [4.6613869999999906, 4.6680590000000279], [4.6747189999999819, 4.6813870000000293], [4.6880590000000097, 4.6947230000000104], [4.7013860000000136, 4.7080589999999916], [4.7147160000000099, 4.7213820000000055], [4.7280600000000277, 4.7347120000000018], [4.741388000000029, 4.7480649999999969], [4.7547119999999836, 4.7613870000000134], [4.7680639999999812, 4.7747200000000021], [4.7813869999999952, 4.7880759999999896], [4.7947240000000306, 4.8013880000000313], [4.8080620000000067, 4.8147160000000326], [4.8213820000000283, 4.8280659999999784], [4.8347120000000245, 4.8413869999999974], [4.8480640000000221, 4.8547130000000038], [4.8613869999999793, 4.8680590000000166], [4.8747220000000198, 4.8813880000000154], [4.8880589999999984, 4.894722999999999], [4.9013879999999972, 4.9080589999999802], [4.9147120000000086, 4.9213869999999815], [4.9280610000000138, 4.9347139999999854], [4.9413880000000177, 4.9480629999999906], [4.9547120000000291, 4.9613879999999995], [4.9680589999999825, 4.9747209999999882], [4.9813879999999813, 4.9880590000000211], [4.9947240000000193, 4.9980820000000108], [4.9981240000000184, 5.0047160000000304], [5.0113890000000083, 5.0180599999999913], [5.0247160000000122, 5.0313869999999952], [5.0380569999999807, 5.0447219999999788], [5.0513839999999846, 5.0580590000000143], [5.0647149999999783, 5.0714110000000119], [5.0780599999999936, 5.084715000000017], [5.091386, 5.0980620000000272], [5.1047149999999988, 5.1113869999999793], [5.118060000000014, 5.1247149999999806], [5.1313860000000204, 5.1380599999999959], [5.144724999999994, 5.1513869999999997], [5.1580650000000219, 5.1647150000000011], [5.1714109999999778, 5.1780590000000188], [5.1847129999999879, 5.1913870000000202], [5.1980609999999956, 5.2047150000000215], [5.2113860000000045, 5.2180599999999799], [5.2247150000000033, 5.2313869999999838], [5.2380600000000186, 5.2447250000000167], [5.251386000000025, 5.2580600000000004], [5.2647150000000238, 5.271410000000003], [5.2780589999999847, 5.2847160000000031], [5.2914260000000013, 5.294729000000018], [5.3013859999999795, 5.3080580000000168], [5.3147119999999859, 5.3213870000000156], [5.3280579999999986, 5.3347120000000245], [5.3413869999999974, 5.3480650000000196], [5.3547120000000064, 5.3613869999999793], [5.3680590000000166, 5.3689340000000243], [5.368961000000013, 5.3747180000000299], [5.3813870000000179, 5.3880580000000009], [5.394722999999999, 5.4013879999999972], [5.4080579999999827, 5.4147130000000061], [5.421387999999979, 5.4280580000000214], [5.4347119999999904, 5.4413880000000177], [5.4480649999999855, 5.4547120000000291], [5.461387000000002, 5.46805599999999], [5.4747150000000033, 5.4813829999999939], [5.4880640000000085, 5.4947310000000016], [5.5013880000000199, 5.5080629999999928], [5.5147180000000162, 5.5213880000000017], [5.5280619999999772, 5.5347160000000031], [5.5413879999999835, 5.5480739999999855], [5.5547159999999849, 5.5613880000000222], [5.5680629999999951, 5.5747200000000134], [5.5813870000000065, 5.5880579999999895], [5.5947229999999877, 5.6013879999999858], [5.6080590000000257, 5.6147129999999947], [5.621387000000027, 5.6280590000000075], [5.6347119999999791, 5.6413870000000088], [5.648065000000031, 5.6547130000000152], [5.6613869999999906, 5.6680660000000103], [5.6747189999999819, 5.6813880000000268], [5.6880590000000097, 5.6947279999999978], [5.7013870000000111, 5.7080579999999941], [5.7147130000000175, 5.7213869999999929], [5.7280580000000327, 5.7347129999999993], [5.7413870000000315, 5.7480649999999969], [5.7547119999999836, 5.7613880000000108], [5.7680579999999964, 5.7747190000000046], [5.7813879999999926, 5.7880579999999782], [5.7947250000000281, 5.8013870000000338], [5.8080630000000042, 5.8147139999999808], [5.8213890000000106, 5.8280540000000087], [5.8347160000000144, 5.8413869999999974], [5.8480630000000247, 5.8547159999999963], [5.8613849999999843, 5.8680610000000115], [5.8747200000000248, 5.8780720000000315], [5.8780940000000328, 5.8847150000000283], [5.8913860000000113, 5.8980609999999842], [5.9047150000000101, 5.9113859999999931], [5.9180590000000279, 5.9247240000000261], [5.9313860000000318, 5.9380629999999996], [5.9447250000000054, 5.9513860000000136], [5.9580589999999916, 5.9647150000000124], [5.9714099999999917, 5.9780590000000302], [5.9847139999999968, 5.9913859999999772], [5.998061000000007, 6.0014009999999871], [6.0080580000000054, 6.0147120000000314], [6.0213870000000043, 6.0280599999999822], [6.0347120000000132, 6.0413869999999861], [6.0480650000000082, 6.0547129999999925], [6.0613880000000222, 6.0680629999999951], [6.074719000000016, 6.081388000000004], [6.088058999999987, 6.0947229999999877], [6.1013879999999858, 6.1080610000000206], [6.1147129999999947, 6.121387000000027], [6.12805800000001, 6.1347130000000334], [6.1413870000000088, 6.148065000000031], [6.1547120000000177, 6.1613869999999906], [6.1680580000000305, 6.1747179999999844], [6.1813940000000116, 6.1880629999999996], [6.1947230000000104, 6.2013880000000086], [6.2080579999999941, 6.2114040000000159], [6.2114430000000311, 6.2180609999999774], [6.2247150000000033, 6.2313859999999863], [6.2380600000000186, 6.2447240000000193], [6.2513850000000275, 6.2580590000000029], [6.2647150000000238, 6.2714090000000056], [6.2780599999999822, 6.2847160000000031], [6.2913879999999835, 6.2947369999999978], [6.3013870000000338, 6.304725000000019], [6.3065530000000081, 6.3066800000000285], [6.3067250000000286, 6.3068299999999908], [6.3068680000000086, 6.3069869999999923], [6.3070220000000177, 6.30717199999998], [6.3072109999999952, 6.3073630000000094], [6.3074080000000095, 6.3075370000000248], [6.3075749999999857, 6.3077190000000201], [6.3077640000000201, 6.3078980000000229], [6.3080080000000294, 6.3081230000000232], [6.3081859999999779, 6.3083230000000299], [6.3083639999999832, 6.3086099999999874], [6.3086729999999989, 6.3087919999999826], [6.3090250000000196, 6.3095380000000318], [6.3114640000000009, 6.3116959999999835], [6.3117090000000076, 6.312513000000024], [6.3125249999999937, 6.3180540000000178], [6.3313860000000091, 6.341386], [6.3480650000000196, 6.3547149999999988], [6.3613859999999818, 6.3680610000000115], [6.3747210000000223, 6.3813880000000154], [6.3880589999999984, 6.394722999999999], [6.4013879999999972, 6.408061000000032], [6.4147130000000061, 6.4213869999999815], [6.4280590000000188, 6.4347119999999904], [6.4413880000000177, 6.4480649999999855], [6.4547130000000266, 6.4613879999999995], [6.4680589999999825, 6.4747189999999932], [6.4813879999999813, 6.4880590000000211], [6.4947230000000218, 6.5013870000000225], [6.5080590000000029, 6.5147120000000314], [6.5213870000000043, 6.5280589999999847], [6.5347130000000107, 6.5413879999999835], [6.5480650000000082, 6.554711999999995], [6.5613860000000273, 6.5680550000000153], [6.5747150000000261, 6.581388000000004], [6.5880670000000237, 6.5947259999999801], [6.6013869999999883, 6.6080590000000257], [6.6147139999999922, 6.6213880000000245], [6.6280590000000075, 6.6347130000000334], [6.6413880000000063, 6.6480660000000285], [6.6547120000000177, 6.6613869999999906], [6.6680580000000305, 6.6747189999999819], [6.6813870000000293, 6.6880590000000097], [6.6947319999999877, 6.7013870000000111], [6.7080589999999916, 6.71471200000002], [6.7213889999999878, 6.7280590000000302], [6.7347120000000018, 6.7413870000000315], [6.7480649999999969, 6.7547119999999836], [6.7613870000000134, 6.7680589999999938], [6.7747200000000021, 6.7813859999999977], [6.7880590000000325, 6.7947230000000332], [6.8013870000000338, 6.8080590000000143], [6.8147160000000326, 6.8213880000000131], [6.8280550000000062, 6.8347160000000144], [6.841386, 6.8480720000000019], [6.8547179999999912, 6.861389000000031], [6.8680630000000065, 6.8691180000000145], [6.8691519999999855, 6.8747200000000248], [6.8813860000000204, 6.8880589999999984], [6.894722999999999, 6.9013869999999997], [6.9080579999999827, 6.9147120000000086], [6.921387999999979, 6.9280580000000214], [6.9347129999999879, 6.9413870000000202], [6.948065999999983, 6.9547120000000291], [6.961387000000002, 6.968057999999985], [6.9747199999999907, 6.9813869999999838], [6.9880590000000211, 6.9947230000000218], [7.0013870000000225, 7.0080590000000029], [7.0147120000000314, 7.0213870000000043], [7.0280609999999797, 7.0347120000000132], [7.0413879999999835, 7.0480630000000133], [7.0547129999999925, 7.0613870000000247], [7.0680580000000077, 7.074719000000016], [7.081389999999999, 7.088058999999987], [7.0947229999999877, 7.1013869999999883], [7.1080630000000156, 7.1147119999999973], [7.1213880000000245, 7.1280590000000075], [7.1347119999999791, 7.1413870000000088], [7.1480629999999792, 7.1547120000000177], [7.1613869999999906, 7.1680590000000279], [7.1747179999999844, 7.1813870000000293], [7.1880530000000249, 7.1947279999999978], [7.2013870000000111, 7.2080660000000307], [7.214794999999981, 7.2213879999999904], [7.2280630000000201, 7.2347159999999917], [7.241388000000029, 7.2480659999999943], [7.2547160000000304, 7.261382000000026], [7.2680629999999837, 7.2747180000000071], [7.2813869999999952, 7.2880610000000274], [7.294776000000013, 7.3013870000000338], [7.3080580000000168, 7.3147119999999859], [7.3213850000000207, 7.3280589999999961], [7.334713000000022, 7.3413869999999974], [7.3480630000000247, 7.3547120000000064], [7.3613880000000336, 7.3680630000000065], [7.3747190000000273, 7.3813870000000179], [7.3880580000000009, 7.3947220000000016], [7.4013899999999921, 7.4080589999999802], [7.4147130000000061, 7.4213869999999815], [7.4247790000000009, 7.4313870000000293], [7.4380600000000072, 7.4447250000000054], [7.4513850000000161, 7.458059999999989], [7.4647209999999973, 7.4714129999999841], [7.4780590000000302, 7.4847179999999867], [7.491388000000029, 7.4980679999999893], [7.5047150000000329, 7.5113860000000159], [7.5180589999999938, 7.5247200000000021], [7.5313840000000027, 7.5380590000000325], [7.5447250000000281, 7.5513859999999795], [7.5580590000000143, 7.5647149999999783], [7.5714140000000043, 7.5780589999999961], [7.5847140000000195, 7.5913850000000025], [7.5980589999999779, 7.6047140000000013], [7.6113839999999868, 7.6180560000000241], [7.6247139999999831, 7.6313840000000255], [7.638056000000006, 7.6447220000000016], [7.6513830000000098, 7.6580589999999802], [7.6647159999999985, 7.6680610000000229], [7.6747189999999819, 7.6813819999999851], [7.6880859999999984, 7.6947329999999852], [7.7013870000000111, 7.7080650000000333], [7.7147180000000048, 7.7213869999999929], [7.7280590000000302, 7.7347129999999993], [7.7413870000000315, 7.7480649999999969], [7.7547109999999861, 7.7613860000000159], [7.7680589999999938, 7.7747180000000071], [7.7813869999999952, 7.7880590000000325], [7.7947219999999788, 7.8013870000000338], [7.8080580000000168, 7.8147109999999884], [7.8213890000000106, 7.8280570000000012], [7.8347190000000069, 7.8413889999999924], [7.8480630000000247, 7.8547120000000064], [7.8613869999999793, 7.8680590000000166], [7.8747210000000223, 7.8813870000000179], [7.8880629999999883, 7.894722999999999], [7.9013850000000048, 7.9080579999999827], [7.9147110000000112, 7.9213869999999815], [7.9280590000000188, 7.9347119999999904], [7.9413860000000227, 7.9480649999999855], [7.9547130000000266, 7.9613860000000045], [7.968057999999985, 7.9747219999999857], [7.9813869999999838, 7.9880620000000135], [7.9947220000000243, 8.0013870000000225], [8.0080580000000054, 8.0147120000000314], [8.0247170000000096, 8.0314180000000306], [8.0380640000000199, 8.0447240000000306], [8.0513859999999795, 8.0580570000000193], [8.0647139999999808, 8.0714179999999942], [8.0780589999999961, 8.0847140000000195], [8.0913850000000025, 8.0980620000000272], [8.1047140000000013, 8.1113859999999818], [8.1180590000000166, 8.1247139999999831], [8.1313860000000204, 8.1380589999999984], [8.1447239999999965, 8.1513860000000022], [8.1580599999999777, 8.1647140000000036], [8.1714109999999778, 8.1780590000000188], [8.1847119999999904, 8.1913860000000227], [8.1980669999999805, 8.204716000000019], [8.2114530000000059, 8.2180599999999799], [8.2247150000000033, 8.2313859999999863], [8.2380590000000211, 8.2447260000000142], [8.2513870000000225, 8.2580600000000004], [8.2647150000000238, 8.2714149999999904], [8.278064000000029, 8.2847160000000031], [8.2914289999999937, 8.2947300000000155], [8.2947470000000294, 8.3013859999999795], [8.3080580000000168, 8.3147119999999859], [8.3213880000000131, 8.3280579999999986], [8.3347120000000245, 8.3413869999999974], [8.3480640000000221, 8.3547110000000089], [8.3613859999999818, 8.368060000000014], [8.3747200000000248, 8.3813870000000179], [8.3880609999999933, 8.3947220000000016], [8.4013869999999997, 8.4080690000000118], [8.4147110000000112, 8.4213869999999815], [8.4281440000000316, 8.4347119999999904], [8.4413870000000202, 8.448063999999988], [8.4547130000000266, 8.4613860000000045], [8.468057999999985, 8.4747169999999983], [8.4813859999999863, 8.4880580000000236], [8.4947240000000193, 8.5013870000000225], [8.5080580000000054, 8.514710999999977], [8.5213860000000068, 8.5280579999999873], [8.5347120000000132, 8.5413859999999886], [8.5480670000000032, 8.5547109999999975], [8.5613870000000247, 8.5680580000000077], [8.574719000000016, 8.5813870000000065], [8.588058999999987, 8.5947180000000003], [8.6013829999999984, 8.608050999999989], [8.6147159999999872, 8.6213850000000321], [8.6280600000000049, 8.6347150000000283], [8.6447239999999965, 8.6513860000000022], [8.6580579999999827, 8.6647120000000086], [8.671414000000027, 8.6780590000000188], [8.6847139999999854, 8.6913850000000252], [8.6980599999999981, 8.704714000000024], [8.7113860000000045, 8.7180589999999825], [8.7247140000000059, 8.7313849999999888], [8.7380590000000211, 8.7447240000000193], [8.751386000000025, 8.7580590000000029], [8.7647140000000263, 8.7714090000000056], [8.7780589999999847, 8.7847140000000081], [8.7913859999999886, 8.7980650000000082], [8.8047139999999899, 8.8113850000000298], [8.8180610000000001, 8.8247130000000311], [8.8313810000000217, 8.8380599999999845], [8.8447249999999826, 8.8513859999999909], [8.8580600000000231, 8.8647159999999872], [8.8694189999999935, 8.8747180000000299], [8.881385000000023, 8.8847200000000157], [8.8847370000000296, 8.8913830000000189], [8.8980609999999842, 8.9047140000000127], [8.9113879999999881, 8.9180590000000279], [8.9247139999999945, 8.9313860000000318], [8.9380590000000097, 8.9447240000000079], [8.9513850000000161, 8.9580589999999916], [8.9647160000000099, 8.9714099999999917], [8.9780600000000277, 8.9847139999999968], [8.9913859999999772, 8.998061000000007], [9.0047220000000152, 9.0113860000000159], [9.0180589999999938, 9.0247150000000147], [9.0313850000000002, 9.0380590000000325], [9.0447250000000281, 9.051384999999982], [9.0580649999999991, 9.0647139999999808], [9.0714090000000169, 9.0780589999999961], [9.0847140000000195, 9.091386], [9.0980610000000297, 9.1047140000000013], [9.1113849999999843, 9.1180590000000166], [9.1247139999999831, 9.1313860000000204], [9.1380589999999984, 9.1447239999999965], [9.1513860000000022, 9.1580589999999802], [9.1647140000000036, 9.1714099999999803], [9.1780590000000188, 9.1847119999999904], [9.1913860000000227, 9.1980629999999906], [9.2047150000000215, 9.2113860000000045], [9.2180599999999799, 9.2247150000000033], [9.2313869999999838, 9.2380600000000186], [9.2447260000000142, 9.2513870000000225], [9.2580600000000004, 9.2647150000000238], [9.2713990000000308, 9.2780529999999999], [9.2847150000000056, 9.2913899999999785], [9.3013870000000338, 9.3080570000000193], [9.3119580000000042, 9.3120910000000094], [9.3121390000000019, 9.3122470000000135], [9.312279999999987, 9.3124030000000175], [9.3124359999999911, 9.3125880000000052], [9.3126340000000027, 9.3127850000000194], [9.312831000000017, 9.312958999999978], [9.3129989999999907, 9.3131339999999909], [9.3131779999999935, 9.3133149999999887], [9.313352000000009, 9.3138720000000035], [9.3147860000000264, 9.3168880000000058], [9.3280639999999835, 9.3380599999999845], [9.3447249999999826, 9.3513859999999909], [9.3580590000000257, 9.3647139999999922], [9.3695030000000088, 9.3747200000000248], [9.3813860000000204, 9.3880580000000009], [9.3947220000000016, 9.4013860000000022], [9.4080599999999777, 9.4147120000000086], [9.4213859999999841, 9.4280580000000214], [9.434710999999993, 9.4413880000000177], [9.4480700000000297, 9.4547110000000316], [9.4613860000000045, 9.468057999999985], [9.4747189999999932, 9.4813869999999838], [9.4880580000000236, 9.4947270000000117], [9.501386000000025, 9.5080580000000054], [9.514710999999977, 9.5213860000000068], [9.5280579999999873, 9.5347110000000157], [9.5413859999999886, 9.5480630000000133], [9.5547109999999975, 9.5613860000000273], [9.5680580000000077, 9.5747180000000185], [9.5813870000000065, 9.5880579999999895], [9.5947249999999826, 9.6013869999999883], [9.6080580000000282, 9.6147109999999998], [9.621387000000027, 9.62805800000001], [9.6347130000000334, 9.6414040000000227], [9.6480640000000335, 9.6547130000000152], [9.6613859999999931, 9.6680580000000305], [9.6747179999999844, 9.6813870000000293], [9.6880580000000123, 9.6947220000000129], [9.7013860000000136, 9.7080629999999815], [9.7147110000000225, 9.7213859999999954], [9.7280610000000252, 9.7347120000000018], [9.7413859999999772, 9.7480620000000044], [9.7547109999999861, 9.7580960000000232], [9.7584499999999821, 9.7647160000000213], [9.771410000000003, 9.7780589999999847], [9.7847150000000056, 9.7913859999999886], [9.7980610000000183, 9.8047139999999899], [9.8113860000000273, 9.8180590000000052], [9.8247140000000286, 9.8313820000000192], [9.8380670000000237, 9.8447239999999852], [9.8514490000000023, 9.8580590000000257], [9.8647119999999973, 9.8695109999999886], [9.8747200000000248, 9.8813870000000179], [9.8880580000000009, 9.8947239999999965], [9.9013860000000022, 9.9080579999999827], [9.9147110000000112, 9.9213869999999815], [9.9280580000000214, 9.934710999999993], [9.9413860000000227, 9.948063999999988], [9.9547110000000316, 9.9613860000000045], [9.9680660000000216, 9.9747189999999932], [9.9813869999999838, 9.9880600000000186], [9.9947220000000243, 10.001387000000022], [10.008057000000008, 10.014714000000026], [10.021387000000004, 10.028057999999987], [10.034713000000011, 10.041386999999986], [10.048064000000011, 10.054712999999992], [10.061386000000027, 10.06805700000001], [10.074717000000021, 10.081387000000007], [10.08805799999999, 10.094723999999985], [10.101386999999988, 10.108058000000028], [10.114711, 10.12138600000003], [10.128062, 10.134711999999979], [10.141386000000011, 10.148064000000034], [10.15471100000002, 10.161383999999998], [10.168057000000033, 10.174716999999987], [10.181386000000032, 10.188057000000015], [10.194729999999993, 10.201386000000014], [10.208060999999987, 10.21471600000001], [10.221386999999993, 10.228065000000015], [10.234714999999994, 10.241385999999977], [10.248063999999999, 10.254715000000033], [10.261387000000013, 10.268060999999989], [10.274718000000007, 10.281385], [10.288066000000015, 10.294733000000008], [10.30138599999998, 10.308059000000014], [10.314713999999981, 10.321385000000021], [10.328058999999996, 10.334714000000019], [10.341385000000002, 10.348062000000027], [10.354714000000001, 10.361385999999982], [10.368059000000017, 10.369561000000033], [10.37471800000003, 10.38138600000002], [10.388059999999996, 10.394723999999997], [10.401386000000002, 10.408056999999985], [10.414712000000009, 10.421385999999984], [10.428057000000024, 10.43471199999999], [10.441386000000023, 10.448062999999991], [10.454712000000029, 10.461385000000007], [10.46805599999999, 10.474714000000006], [10.481381999999996, 10.488069999999993], [10.494726000000014, 10.501385000000028], [10.508064999999988, 10.514716000000021], [10.521386000000007, 10.52806099999998], [10.534716000000003, 10.541384999999991], [10.548065000000008, 10.554714999999987], [10.561387000000025, 10.568061], [10.574717000000021, 10.581386000000009], [10.58805799999999, 10.59472199999999], [10.601385999999991, 10.608061000000021], [10.61471499999999, 10.621387000000027], [10.62805800000001, 10.634710999999982], [10.641387000000009, 10.648064000000034], [10.65471100000002, 10.661385999999993], [10.66805800000003, 10.674717999999984], [10.681387000000029, 10.688058000000012], [10.694722000000013, 10.701386000000014], [10.708057999999994, 10.714711000000023], [10.721383000000003, 10.728062000000023], [10.734711000000004, 10.741385999999977], [10.748067999999989, 10.754710999999986], [10.761386000000016, 10.768057999999996], [10.774718000000007, 10.781385999999998], [10.788057999999978, 10.794721999999979], [10.801394000000016, 10.808058000000017], [10.814710999999988, 10.821386000000018], [10.828059999999994, 10.834713000000022], [10.841386, 10.848064000000022], [10.854787999999985, 10.861385999999982], [10.868057000000022, 10.86960700000003], [10.869633000000022, 10.87471800000003], [10.88139000000001, 10.888059999999996], [10.894726999999989, 10.901386000000002], [10.908056999999985, 10.914711000000011], [10.921385999999984, 10.928058000000021], [10.93471199999999, 10.941386000000023], [10.948064999999986, 10.954711000000032], [10.961387999999999, 10.96805999999998], [10.974718999999993, 10.981385999999986], [10.988058000000024, 10.994722000000024], [11.001387000000022, 11.008062999999993], [11.014712000000031, 11.021386000000007], [11.02805699999999, 11.034714000000008], [11.041386999999986, 11.048064000000011], [11.05471399999999, 11.061387000000025], [11.064769000000013, 11.071408000000019], [11.078058999999996, 11.084714000000019], [11.091385000000002, 11.098060000000032], [11.104714000000001, 11.111385999999982], [11.118059000000017, 11.124713999999983], [11.131385000000023, 11.138063999999986], [11.144723999999997, 11.151386000000002], [11.158057999999983, 11.164714000000004], [11.171406999999988, 11.178059000000019], [11.184712999999988, 11.191380999999978], [11.198060999999996, 11.204714000000024], [11.211386000000005, 11.218058999999982], [11.224714000000006, 11.231383999999991], [11.238058000000024, 11.244724000000019], [11.251385000000028, 11.258065999999985], [11.264713000000029, 11.271408000000008], [11.278059999999982, 11.284715000000006], [11.291383999999994, 11.294736], [11.30138599999998, 11.308058000000017], [11.314716000000033, 11.321387000000016], [11.328071000000023, 11.334714000000019], [11.338098000000002, 11.338518000000022], [11.338741000000027, 11.338846999999987], [11.338887, 11.338991000000021], [11.339023999999995, 11.339168000000029], [11.33920599999999, 11.339354000000014], [11.339394000000027, 11.339550000000031], [11.339600000000019, 11.33972399999999], [11.33976100000001, 11.339901999999995], [11.340175999999985, 11.348067000000015], [11.358060000000023, 11.364727000000016], [11.369707000000005, 11.378060000000005], [11.388058999999998, 11.394722999999999], [11.401387, 11.40805899999998], [11.417943999999977, 11.424716999999987], [11.424965999999984, 11.491589000000033], [11.491626999999994, 11.491733000000011]], \"1\": [[0.30936100000002398, 0.30942199999998365], [0.3094380000000001, 0.30950899999999137], [0.31496299999997746, 0.31498700000003055], [0.31549100000000863, 0.31552499999997963], [0.31566400000002659, 0.31594599999999673], [0.31607800000000452, 0.32138700000001563], [0.33471300000002202, 0.34138300000000754], [0.35471599999999626, 0.36138599999998178], [0.37472200000001976, 0.38138700000001791], [0.3947170000000142, 0.40138799999999719]]}, \"kworker/3:1H-395\": {\"3\": [[11.32738999999998, 11.327401000000009], [11.327825000000018, 11.327830000000006], [11.328230000000019, 11.328239999999994]]}, \"kworker/u8:1-4684\": {\"2\": [[11.325462000000016, 11.32547900000003], [11.327168000000029, 11.327203999999995], [11.327731000000028, 11.327740000000006], [11.327816999999982, 11.327830000000006], [11.327879999999993, 11.32789200000002], [11.328178999999977, 11.328188000000011], [11.328226000000029, 11.328236000000004], [11.338081999999986, 11.338145999999995], [11.34518700000001, 11.345326999999997], [11.348504999999989, 11.348688999999979], [11.358497999999997, 11.358688000000029], [11.365180000000009, 11.365348999999981]]}, \"OkHttp Connecti-4089\": {\"0\": [[7.6680610000000229, 7.6690669999999841]]}, \"cnss-daemon-629\": {\"2\": [[2.3185960000000136, 2.3186360000000263], [2.3187530000000152, 2.3187669999999798], [2.4651600000000258, 2.465264999999988], [2.9684940000000211, 2.9685289999999895], [2.9693350000000009, 2.9694479999999999], [2.9703440000000114, 2.9704050000000279], [2.9731270000000336, 2.9732109999999921]]}, \"shell srvc 4780-4781\": {\"0\": [[11.69584900000001, 11.696410000000014]]}, \"shell srvc 4747-4748\": {\"0\": [[0.002866999999980635, 0.0032709999999838146]]}, \"thermal-engine-694\": {\"2\": [[0.81953199999998105, 0.81974700000000666], [0.82086600000002363, 0.8210510000000113], [1.821200000000033, 1.8214889999999855], [1.8226109999999949, 1.8227959999999825], [2.8229299999999853, 2.8231490000000008], [2.8242730000000051, 2.8244599999999878], [3.8246100000000069, 3.8248889999999847], [3.826012999999989, 3.8261939999999868], [4.826342000000011, 4.8265519999999924], [4.8276779999999917, 4.8278619999999819], [5.8279830000000175, 5.8282700000000318], [5.8293960000000311, 5.8295810000000188], [6.8297200000000089, 6.8299420000000168], [6.8310630000000288, 6.8312470000000189], [7.8313890000000015, 7.831606000000022], [7.8327239999999847, 7.8329049999999825], [8.8330440000000294, 8.8332680000000323], [8.8343940000000316, 8.8345770000000243], [9.8347180000000094, 9.8349380000000224], [9.83605799999998, 9.8362389999999778], [10.836387000000002, 10.836603000000025], [10.837727000000029, 10.837912000000017]]}}});\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 cluster\n",
+    "trappy.plotter.plot_trace(trace)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Example of CPUs isolation"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 22,
+   "metadata": {
+    "collapsed": false
+   },
+   "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": 23,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Sandbox:\n",
+      "{\n",
+      "    \"memory_pressure\": \"0\", \n",
+      "    \"memory_spread_page\": \"0\", \n",
+      "    \"notify_on_release\": \"0\", \n",
+      "    \"sched_load_balance\": \"1\", \n",
+      "    \"cpus\": \"1-3\", \n",
+      "    \"effective_mems\": \"0\", \n",
+      "    \"memory_spread_slab\": \"0\", \n",
+      "    \"mem_hardwall\": \"0\", \n",
+      "    \"cpu_exclusive\": \"0\", \n",
+      "    \"mem_exclusive\": \"0\", \n",
+      "    \"ls\": \" /data/local/tmp/devlib-target/cgroups/devlib_cgh4/DEVLIB_SBOX/cpuset.*\", \n",
+      "    \"mems\": \"0\", \n",
+      "    \"memory_migrate\": \"0\", \n",
+      "    \"sched_relax_domain_level\": \"-1\", \n",
+      "    \"effective_cpus\": \"1-3\"\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": 24,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Isolated:\n",
+      "{\n",
+      "    \"memory_pressure\": \"0\", \n",
+      "    \"memory_spread_page\": \"0\", \n",
+      "    \"notify_on_release\": \"0\", \n",
+      "    \"sched_load_balance\": \"1\", \n",
+      "    \"cpus\": \"0\", \n",
+      "    \"effective_mems\": \"0\", \n",
+      "    \"memory_spread_slab\": \"0\", \n",
+      "    \"mem_hardwall\": \"0\", \n",
+      "    \"cpu_exclusive\": \"0\", \n",
+      "    \"mem_exclusive\": \"0\", \n",
+      "    \"ls\": \" /data/local/tmp/devlib-target/cgroups/devlib_cgh4/DEVLIB_ISOL/cpuset.*\", \n",
+      "    \"mems\": \"0\", \n",
+      "    \"memory_migrate\": \"0\", \n",
+      "    \"sched_relax_domain_level\": \"-1\", \n",
+      "    \"effective_cpus\": \"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": 25,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "2016-12-08 11:44:50,597 INFO    : Workload     : Workload execution START:\n",
+      "2016-12-08 11:44:50,601 INFO    : Workload     :    /data/local/tmp/bin/rt-app /data/local/tmp/devlib-target/simple_00.json 2>&1\n",
+      "2016-12-08 11:44:57,468 INFO    : Workload     : 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": 26,
+   "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_4f2676f331484d87ae0f74dfcd5fcd65\" 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_4f2676f331484d87ae0f74dfcd5fcd65', '/nbextensions/', {\"lanes\": [{\"id\": 0, \"label\": \"CPU :0\"}, {\"id\": 1, \"label\": \"CPU :1\"}, {\"id\": 2, \"label\": \"CPU :2\"}, {\"id\": 3, \"label\": \"CPU :3\"}], \"colorMap\": null, \"keys\": [\"task1-4969\", \"task2-4970\", \"task0-4968\", \"task3-4971\", \"sh-4975\", \"sh-4958\", \"msm_irqbalance-564\", \"su-4975\", \"sh-4981\", \"su-4962\", \"sh-4955\", \"su-4981\", \"sh-4965\", \"sh-4978\", \"sh-4982\", \"sh-4959\", \"shutils-4963\", \"shutils-4976\", \"shutils-4964\", \"sh-4985\", \"sh-4962\", \"sh-4972\", \"shutils-4977\", \"sh-4950\", \"adbd-4955\", \"sh-4980\", \"adbd-4965\", \"su-4985\", \"sh-4967\", \"adbd-4972\", \"adbd-4959\", \"sh-4957\", \"sh-4953\", \"adbd-4982\", \"adbd-4978\", \"sh-4976\", \"sh-4961\", \"sh-4974\", \"sh-4963\", \"rt-app-4967\", \"sh-4986\", \"adbd-4121\", \"sh-4984\", \"su-4958\", \"shell srvc 4978-4979\", \"shell srvc 4950-4951\", \"shell srvc 4965-4966\", \"shell srvc 4959-4960\", \"rild-871\", \"thermal-engine-694\", \"busybox-4977\", \"shell srvc 4972-4973\", \"busybox-4964\", \"jbd2/sda35-8-529\", \"shell srvc 4955-4956\", \"<-transport-4124\", \"kworker/0:1-33\", \"adbd-4979\", \"adbd-4966\", \"rild-1173\", \"adbd-4973\", \"kworker/u8:1-4684\", \"adbd-4960\", \"adbd-4956\", \"adbd-4983\", \"cnd-627\", \"->transport-4123\", \"wpa_supplicant-1502\", \"rt-app-4971\", \"kworker/1:3-334\", \"POSIX timer 1-1781\", \"msm_watchdog-32\", \"hwrng-160\", \"rt-app-4970\", \"kworker/1:0-13\", \"VosMCThread-1457\", \"ksoftirqd/0-3\", \"kworker/u8:8-924\", \"kworker/1:1-4914\", \"smem_native_rpm-41\", \"rt-app-4968\", \"ksoftirqd/1-12\", \"rt-app-4969\", \"kworker/3:0-21\", \"kworker/2:1-81\", \"kworker/2:2-478\", \"rcu_preempt-7\", \"ksoftirqd/2-16\", \"rcu_sched-8\", \"trace-cmd-4954\", \"ksoftirqd/3-20\", \"kworker/u8:4-247\", \"kworker/0:1H-402\"], \"stride\": false, \"showSummary\": true, \"xDomain\": [0.0, 7.0726089999999999], \"data\": {\"adbd-4959\": {\"1\": [[0.15219199999995681, 0.15355399999998554]]}, \"shell srvc 4959-4960\": {\"1\": [[0.20540199999999231, 0.20574099999998907]]}, \"adbd-4955\": {\"1\": [[0.060070999999993546, 0.061615999999958149]]}, \"adbd-4956\": {\"1\": [[0.068321999999966465, 0.068478999999967982]]}, \"->transport-4123\": {\"1\": [[0.0044709999999668071, 0.0044790000000034524], [0.0045289999999909014, 0.0045599999999694774], [0.0046639999999911197, 0.0049179999999751089], [0.0050190000000043256, 0.0050269999999841275], [0.058700999999985015, 0.058711999999957243], [0.062865999999985434, 0.062978999999984353], [0.063197999999999865, 0.06331199999999626], [0.09635499999996, 0.096451999999999316], [0.09661599999998316, 0.096638999999981934], [0.15210099999995919, 0.15211899999997058], [0.15439699999996037, 0.15450999999995929], [0.15495999999996002, 0.15512300000000323], [0.20574099999998907, 0.20584900000000061], [0.20632899999998244, 0.20637699999997494], [0.20646599999997761, 0.20665099999996528], [0.20671399999997675, 0.20676199999996925], [0.20734199999998282, 0.20737599999995382], [0.20752699999997049, 0.20759199999997691], [0.26395600000000741, 0.26398399999999356], [0.26638099999996712, 0.26648299999999381], [0.26665099999996755, 0.26677200000000312], [0.27928399999996145, 0.27938299999999572], [0.27972399999998743, 0.27977399999997488], [0.28002399999996896, 0.28018499999996038], [0.28063499999996111, 0.28064299999999776], [0.28231599999998025, 0.28246300000000701], [0.2827769999999532, 0.28281899999996085], [0.28307799999998906, 0.28322699999995393], [0.28372400000000653, 0.28377499999999145], [0.28396399999996902, 0.28399199999995517], [0.28410299999995914, 0.28417199999995546], [0.28459199999997509, 0.28460200000000668], [0.28835199999997485, 0.28840999999999894], [0.28866299999998546, 0.28869199999996908], [0.28880599999996548, 0.28889999999995553], [0.28929699999997638, 0.28930700000000797], [0.29514999999997826, 0.29522099999996954], [6.8546499999999924, 6.85483499999998], [6.9091479999999592, 6.9092089999999757], [6.9094419999999559, 6.9095169999999939], [6.955711000000008, 6.9557399999999916], [6.9578970000000027, 6.9582209999999804], [6.9584199999999896, 6.958549000000005], [7.0395969999999579, 7.0396279999999933], [7.042018999999982, 7.0421220000000062], [7.0424789999999575, 7.0426489999999831]], \"2\": [[0.096660999999983233, 0.096724999999992178], [0.29537799999997105, 0.29542699999996103], [0.29549599999995735, 0.29559000000000424], [0.29599099999995815, 0.29601299999995945], [0.29606899999998859, 0.29609099999998989], [0.29614999999995462, 0.29617199999995591], [0.2964279999999917, 0.29643099999998412], [5.2837240000000065, 5.2838160000000016], [5.2839050000000043, 5.2839199999999664], [5.2840149999999539, 5.2840789999999629], [5.2844299999999862, 5.2844339999999761], [6.8032220000000052, 6.803291999999999], [6.8034729999999968, 6.8035029999999779], [6.8036379999999781, 6.8036940000000072], [6.8063549999999964, 6.8063829999999825], [6.8065129999999954, 6.8065579999999954], [6.8519519999999829, 6.8519769999999767], [6.8543669999999679, 6.8544619999999554], [6.9076369999999656, 6.9077139999999986], [6.9078879999999572, 6.9079059999999686], [6.907955999999956, 6.9081569999999601], [6.9082239999999615, 6.9082500000000095]], \"3\": [[0.0033029999999598658, 0.0033960000000092805], [0.0036759999999844695, 0.0036999999999807187], [0.0038609999999721367, 0.0039569999999571337], [0.0040349999999875763, 0.0040569999999888751], [0.097028999999963617, 0.097040999999990163], [5.9624179999999569, 5.9624650000000088], [5.9625499999999647, 5.9625629999999887], [5.9626849999999649, 5.9627329999999574], [5.963121000000001, 5.9631279999999833], [6.1331669999999576, 6.1332129999999552], [6.1332820000000083, 6.1332989999999654], [6.1334349999999631, 6.1334769999999708], [6.1338419999999587, 6.1338499999999954], [6.8039599999999609, 6.803968999999995], [6.8055279999999811, 6.8055650000000014], [6.8058379999999943, 6.8058709999999678], [6.8060389999999984, 6.8061139999999796], [6.8061700000000087, 6.8061969999999974], [6.9919719999999757, 6.992087999999967], [6.9922499999999559, 6.9923099999999749], [6.9931839999999852, 6.9932139999999663]]}, \"rt-app-4969\": {\"1\": [[0.28271999999998343, 0.2827609999999936]]}, \"rt-app-4968\": {\"1\": [[0.28285899999997355, 0.28290699999996605]]}, \"smem_native_rpm-41\": {\"1\": [[0.011863000000005286, 0.011899999999968713], [0.062820999999985361, 0.062865999999985434], [0.15203700000000708, 0.15210099999995919], [0.26228699999995797, 0.26231999999998834], [5.286564999999996, 5.2865939999999796], [5.28676999999999, 5.2867829999999572], [5.2869230000000016, 5.2869359999999688], [5.2870889999999804, 5.2871020000000044], [5.2872729999999706, 5.2872869999999921], [5.2874579999999582, 5.2874709999999823], [5.2876369999999611, 5.2876489999999876], [5.2878309999999829, 5.2878440000000069], [5.2880899999999542, 5.2881039999999757], [5.2882270000000062, 5.2882389999999759], [5.2884139999999888, 5.2884239999999636], [5.288708999999983, 5.2887210000000096], [5.2888859999999909, 5.2888989999999581], [5.3021329999999693, 5.3021589999999605], [5.3023409999999558, 5.3023519999999849], [5.3024879999999825, 5.3025000000000091], [5.3026519999999664, 5.3026639999999929], [5.3028349999999591, 5.3028479999999831], [5.3030210000000011, 5.3030329999999708], [5.3032010000000014, 5.303214999999966], [5.3034049999999979, 5.3034169999999676], [6.8626649999999927, 6.8628539999999703]], \"3\": [[0.3116279999999847, 0.31165599999997085], [0.3618940000000066, 0.3619059999999763]]}, \"kworker/0:1H-402\": {\"0\": [[5.2921529999999848, 5.2921670000000063], [5.2928369999999632, 5.2928509999999847], [5.2929059999999595, 5.2929129999999986]]}, \"rcu_preempt-7\": {\"1\": [[0.0029539999999883548, 0.0029869999999618813], [0.0036199999999553256, 0.0036429999999540996], [0.0038710000000037326, 0.0038920000000075561], [0.0040089999999963766, 0.00402299999996103], [0.0052660000000059881, 0.005300999999974465], [0.0054299999999898318, 0.0054450000000088039], [0.0054869999999596075, 0.0054949999999962529], [0.0055519999999660286, 0.0055610000000001492], [0.011441999999988184, 0.011459000000002106], [0.018121000000007825, 0.018139999999959855], [0.061615999999958149, 0.061659999999960746], [0.068249999999977717, 0.068321999999966465], [0.074922999999955664, 0.074972000000002481], [0.081586999999956333, 0.081662999999991825], [0.083548000000007505, 0.083571000000006279], [0.083596000000000004, 0.083604999999977281], [0.083625999999981104, 0.083633999999960906], [0.083657999999957156, 0.083665999999993801], [0.083688999999992575, 0.083695999999974902], [0.084840999999983069, 0.084876000000008389], [0.084898000000009688, 0.08490799999998444], [0.091532999999969888, 0.091585000000009131], [0.095118999999954212, 0.095154999999977008], [0.095240999999987253, 0.095253999999954431], [0.095290999999974701, 0.095302000000003773], [0.17492899999996325, 0.17499399999996967], [6.8062369999999532, 6.8062529999999697], [6.808119999999974, 6.8081419999999753], [6.8081599999999867, 6.8081709999999589], [6.8081879999999728, 6.8081980000000044], [6.8082459999999969, 6.8082569999999691], [6.8147559999999885, 6.8147720000000049], [6.85483499999998, 6.8548569999999813], [6.8549399999999991, 6.8549549999999613], [6.8549899999999866, 6.8549989999999639], [6.8550219999999626, 6.8550290000000018], [6.8550520000000006, 6.8550589999999829], [6.8550849999999741, 6.8550919999999564], [6.858255999999983, 6.858306999999968], [6.8648759999999811, 6.8649449999999774], [6.8716409999999541, 6.8717149999999947], [6.8781669999999622, 6.8782079999999723], [6.8789119999999571, 6.8789469999999824], [6.8790259999999535, 6.8790369999999825], [6.8790779999999927, 6.8790879999999675], [6.8827719999999886, 6.8827849999999557], [6.8828399999999874, 6.8828499999999622], [6.8828869999999824, 6.8828959999999597], [6.8853449999999725, 6.8853599999999915], [6.8854199999999537, 6.8854319999999802], [6.8854599999999664, 6.885469999999998], [6.8882249999999772, 6.8882519999999658], [6.894916999999964, 6.8949890000000096], [6.8984539999999583, 6.8984869999999887], [6.9040549999999712, 6.9040939999999864], [6.9041990000000055, 6.9042099999999778], [6.9042509999999879, 6.9042639999999551], [6.9047869999999989, 6.9047979999999711], [6.9048369999999863, 6.9048499999999535], [6.9048899999999662, 6.9049009999999953], [6.9073469999999588, 6.907385999999974], [6.9082520000000045, 6.908271999999954], [6.9082989999999995, 6.9083139999999617], [6.9085779999999772, 6.9086019999999735], [6.9097629999999981, 6.909782000000007], [6.9098189999999704, 6.909827000000007], [6.9148700000000076, 6.9148859999999672], [6.9149229999999875, 6.9149329999999622], [6.921436999999969, 6.921449999999993], [6.9250839999999698, 6.9250949999999989], [6.9784689999999614, 6.9784899999999652], [6.978541000000007, 6.9785519999999792], [6.9785860000000071, 6.9785969999999793], [6.9921579999999608, 6.9921749999999747], [6.9922019999999634, 6.9922149999999874], [6.9922389999999837, 6.9922499999999559], [6.992274000000009, 6.9922859999999787], [6.9923789999999713, 6.9924759999999537], [6.9929070000000024, 6.9929199999999696], [6.9948279999999841, 6.9948440000000005], [6.9948609999999576, 6.9948719999999867], [6.9949100000000044, 6.994925999999964], [6.9949839999999881, 6.9949939999999629], [7.0419829999999592, 7.042018999999982], [7.0482999999999834, 7.0483709999999746], [7.0548539999999775, 7.0548939999999902]], \"2\": [[0.096315000000004147, 0.096343999999987773], [0.096412999999984095, 0.096421999999961372], [0.096606000000008407, 0.096612999999990734], [0.096652000000005955, 0.096660999999983233], [0.098120999999991909, 0.098129999999969186], [0.098169999999981883, 0.098177999999961685], [5.2847209999999905, 5.2847299999999677], [5.291375999999957, 5.2913849999999911], [5.2980420000000095, 5.2980499999999893], [5.3080420000000004, 5.3080499999999802], [6.8061020000000099, 6.8061159999999745], [6.8061359999999809, 6.8061459999999556], [6.9251319999999623, 6.9251459999999838], [6.9251889999999889, 6.9251989999999637], [6.9252349999999865, 6.9252429999999663], [6.9584449999999833, 6.9585089999999923], [6.9648300000000063, 6.9648439999999709], [6.9714119999999866, 6.9714239999999563], [6.9780779999999822, 6.9781269999999722], [6.9801620000000071, 6.9801739999999768], [6.9802029999999604, 6.9802109999999971], [6.9802369999999883, 6.9802439999999706], [6.9847659999999792, 6.9847780000000057], [6.9848109999999792, 6.9848199999999565], [6.9848569999999768, 6.9848649999999566], [6.9914069999999811, 6.9914420000000064], [7.05865399999999, 7.0586829999999736], [7.0587129999999547, 7.0587239999999838], [7.0587689999999839, 7.0587779999999611]], \"3\": [[0.096690999999964333, 0.096699000000000979], [0.096744999999998527, 0.096750999999983378], [0.096811999999999898, 0.0968199999999797], [0.09821399999998448, 0.098227000000008502], [0.09823999999997568, 0.098249000000009801], [0.098315999999954329, 0.098329999999975826], [0.098342999999999847, 0.098351999999977124], [0.10143599999997832, 0.10144800000000487], [0.10146099999997205, 0.10147000000000617], [0.10806700000000546, 0.10807799999997769], [0.15511299999997163, 0.15516999999999825], [0.16148199999997814, 0.16149799999999459], [0.16808499999996229, 0.16809599999999136], [0.17880800000000363, 0.17883000000000493], [0.17886999999996078, 0.17887799999999743], [0.17891099999997095, 0.17891699999995581], [0.18279100000000881, 0.18282799999997223], [0.18536100000000033, 0.18538999999998396], [0.18544599999995626, 0.18545899999998028], [0.18548999999995885, 0.1854979999999955], [0.18828800000000001, 0.18829799999997476], [0.18832799999995586, 0.18833499999999503], [0.18836499999997613, 0.18837399999995341], [0.19475899999997637, 0.19477100000000291], [0.19481799999999794, 0.19482599999997774], [0.20207899999996926, 0.2020949999999857], [0.20217700000000605, 0.20218799999997827], [0.20222300000000359, 0.20223199999998087], [0.20318699999995715, 0.20320199999997612], [0.20321200000000772, 0.203220999999985], [0.20326499999998759, 0.20327499999996235], [0.20619199999998727, 0.20620399999995698], [0.20647299999995994, 0.20648399999998901], [0.20768199999997705, 0.2076940000000036], [0.20785599999999249, 0.20786699999996472], [0.21141599999998562, 0.21142599999996037], [0.21146099999998569, 0.21146999999996297], [0.21151099999997314, 0.21152100000000473], [0.21162299999997458, 0.2116359999999986], [0.21174800000000005, 0.2117579999999748], [0.2117799999999761, 0.2117879999999559], [0.21479899999997087, 0.21480999999999995], [0.21484399999997095, 0.21485300000000507], [0.21489800000000514, 0.21490999999997484], [0.21492999999998119, 0.21493999999995594], [0.22142900000000054, 0.22143699999998034], [0.26528400000000829, 0.26535200000000714], [0.27150599999998803, 0.27152000000000953], [0.27807999999998856, 0.27809199999995826], [0.2847370000000069, 0.28474599999998418], [0.29140999999998485, 0.2914199999999596], [0.29808800000000701, 0.29810399999996662], [0.30473399999999629, 0.30474599999996599], [0.31140499999997928, 0.31141299999995908], [4.8948049999999625, 4.8948239999999714], [4.9013759999999706, 4.9013850000000048], [4.9080449999999587, 4.9080549999999903], [4.9147099999999568, 4.914716999999996], [5.9626480000000015, 5.9626549999999838], [5.9626779999999826, 5.9626849999999649], [5.9627679999999827, 5.962778999999955], [5.9628060000000005, 5.9628159999999752], [5.964747999999986, 5.9647579999999607], [5.9647809999999595, 5.9647870000000012], [5.9648229999999671, 5.9648310000000038], [5.9713999999999601, 5.9714109999999891], [5.9714619999999741, 5.9714710000000082], [5.97806700000001, 5.9780889999999545], [6.1333740000000034, 6.1333799999999883], [6.1333929999999555, 6.133404999999982], [6.1334829999999556, 6.1334939999999847], [6.1347480000000019, 6.1347569999999791], [6.1347849999999653, 6.1347930000000019], [6.1348140000000058, 6.1348199999999906], [6.141399999999976, 6.1414120000000025], [6.1414509999999609, 6.1414589999999976], [6.1480649999999741, 6.1480750000000057], [6.8030759999999759, 6.8030819999999608], [6.8030939999999873, 6.8031069999999545], [6.803135999999995, 6.8031449999999722], [6.8031729999999584, 6.803180999999995], [6.804760999999985, 6.8047729999999547], [6.8047959999999534, 6.8048019999999951], [6.8048359999999661, 6.8048430000000053], [6.8058289999999602, 6.8058379999999943], [6.8058709999999678, 6.8058849999999893], [6.8059030000000007, 6.8059129999999755], [6.8059599999999705, 6.8059729999999945], [6.8059849999999642, 6.8059930000000008], [7.0641709999999875, 7.0641999999999712], [7.0642330000000015, 7.0642429999999763], [7.0642750000000092, 7.0642849999999839], [7.0643599999999651, 7.0643670000000043], [7.0644539999999552, 7.0644589999999994], [7.0681789999999864, 7.0682189999999991], [7.0707539999999653, 7.070793999999978], [7.0714600000000019, 7.0714759999999615], [7.071487999999988, 7.0714959999999678], [7.0719169999999849, 7.0719279999999571]]}, \"rt-app-4967\": {\"1\": [[0.27777699999995775, 0.2787569999999846], [0.27938299999999572, 0.27972399999998743], [0.27977399999997488, 0.28002399999996896], [0.28064299999999776, 0.28178099999996675], [6.1333479999999554, 6.1334089999999719], [6.8030599999999595, 6.8037929999999847]]}, \"msm_irqbalance-564\": {\"1\": [[4.8881069999999909, 4.8929789999999684]]}, \"task0-4968\": {\"1\": [[0.28292299999998249, 0.28299299999997629], [0.61149699999998575, 0.61805399999997235], [0.6280479999999784, 0.63139100000000781], [0.63143099999996366, 0.63804999999996426], [0.64804699999996274, 0.65139199999998709], [0.65143499999999221, 0.65805299999999534], [0.66805699999997614, 0.67139499999996133], [0.67144500000000562, 0.67804999999998472], [0.68804799999998068, 0.69139400000000251], [0.69143599999995331, 0.69805099999996401], [0.70804699999996501, 0.71139699999997674], [0.71147099999996044, 0.71805100000000266], [0.72805099999999356, 0.73139199999997118], [0.7314349999999763, 0.73805099999998447], [0.748045999999988, 0.75139200000000983], [0.75143199999996568, 0.7580499999999688], [0.76804999999995971, 0.77139499999998407], [0.77804699999995819, 0.78139099999998507], [0.78143499999998767, 0.78804999999999836], [0.79804599999999937, 0.80139700000000857], [0.80144099999995433, 0.80805199999997512], [0.81804599999998118, 0.82139200000000301], [0.82143600000000561, 0.82805099999995946], [0.83804599999996299, 0.84139099999998734], [0.84143399999999247, 0.84805000000000064], [0.85804699999999912, 0.8614069999999856], [0.86172499999997854, 0.86804999999998245], [0.87143699999995761, 0.8780519999999683], [0.88804799999996931, 0.89139199999999619], [0.89143300000000636, 0.89805200000000696], [0.90804800000000796, 0.91139399999997295], [0.91146299999996927, 0.91805099999999129], [0.92804699999999229, 0.93139099999996233], [0.93143399999996745, 0.9380509999999731], [0.9480469999999741, 0.95139199999999846], [0.95143400000000611, 0.95804999999995744], [0.96805000000000518, 0.97139599999997017], [0.97142700000000559, 0.9813829999999939], [0.981412999999975, 0.99138799999997218], [0.9914309999999773, 0.99805299999997033], [1.0014419999999973, 1.0080519999999638], [1.0180479999999648, 1.0213919999999916], [1.02804900000001, 1.0313889999999901], [1.0314290000000028, 1.0380499999999984], [1.0480479999999943, 1.0513919999999644], [1.0514349999999695, 1.0580489999999827], [1.0680509999999686, 1.071393999999998], [1.071438999999998, 1.0813819999999623], [1.0814229999999725, 1.0880520000000047], [1.0980480000000057, 1.1013919999999757], [1.1014319999999884, 1.1080499999999915], [1.1180479999999875, 1.1213919999999575], [1.1214319999999702, 1.1280479999999784], [1.1380479999999693, 1.1413919999999962], [1.1414350000000013, 1.1480489999999577], [1.1580510000000004, 1.1614059999999995], [1.1614289999999983, 1.188056999999958], [1.1947209999999586, 1.2013949999999909], [3.8047179999999798, 3.8113889999999628], [3.8180449999999837, 3.8247149999999692], [3.8313839999999573, 3.838045999999963], [3.8447150000000079, 3.8513839999999959], [3.8580469999999991, 3.8614000000000033], [3.8680479999999875, 3.8747149999999806], [3.8813839999999686, 3.8880449999999769], [3.8947149999999624, 3.9013850000000048], [3.9080449999999587, 3.9147150000000011], [3.9213839999999891, 3.9280449999999973], [3.9347139999999854, 3.9413839999999709], [3.9480449999999792, 3.9547149999999647], [3.961418999999978, 3.9680459999999584], [3.9747140000000059, 3.9813839999999914], [3.9880459999999971, 3.9947129999999902], [4.0014459999999872, 4.0113869999999565], [4.0180459999999698, 4.0247139999999604], [4.0313850000000002, 4.0380480000000034], [4.044713999999999, 4.0513839999999846], [4.0580439999999953, 4.0613989999999944], [4.0614239999999882, 4.0680479999999761], [4.0747129999999743, 4.0880469999999605], [4.0947160000000054, 4.1013849999999934], [4.1080440000000067, 4.1147159999999872], [4.1213839999999777, 4.1280439999999885], [4.1347129999999765, 4.1413839999999595], [4.1480439999999703, 4.1547139999999558], [4.1614169999999717, 4.1880439999999908], [4.1947149999999738, 4.2013859999999568], [4.2247169999999983, 4.2313869999999838], [4.2380449999999996, 4.244718999999975], [4.2513959999999997, 4.2580449999999814], [4.2614399999999932, 4.2680449999999723], [4.2880449999999541, 4.2947130000000016], [4.301384999999982, 4.3080439999999953], [4.3147129999999834, 4.3213869999999588], [4.3280449999999746, 4.3347129999999652], [4.3413850000000025, 4.3480439999999589], [4.3547140000000013, 4.3613959999999565], [4.3880439999999794, 4.3947129999999675], [4.4013840000000073, 4.4080469999999536], [4.4147140000000036, 4.4213859999999841], [4.4280439999999999, 4.4347129999999879], [4.4413839999999709, 4.4480439999999817], [4.4547129999999697, 4.4613979999999742], [4.488047999999992, 4.4947169999999801], [4.5013839999999732, 4.5080449999999814], [4.5147139999999695, 4.521383999999955], [4.5280459999999607, 4.5347150000000056], [4.5413849999999911, 4.5480440000000044], [4.5547129999999925, 4.561396000000002], [4.5880469999999605, 4.5947139999999536], [4.6180449999999951, 4.6247149999999806], [4.6313869999999611, 4.6380449999999769], [4.6447129999999675, 4.6513840000000073], [4.6580439999999612, 4.6613979999999628], [4.661423999999954, 4.6680450000000064], [4.6880449999999882, 4.6947159999999712], [4.7013859999999568, 4.7027149999999551], [4.702748999999983, 4.7080439999999726], [4.7147149999999556, 4.7213840000000005], [4.7280450000000087, 4.7347139999999968], [4.7413839999999823, 4.748043999999993], [4.7547139999999786, 4.7613989999999831], [4.7880470000000059, 4.7947149999999965], [4.8013839999999846, 4.8080449999999928], [4.8147139999999808, 4.8213839999999664], [4.828047999999967, 4.8347169999999551], [4.841384000000005, 4.8480439999999589], [4.8547149999999988, 4.8613959999999565], [4.8880529999999567, 4.8881069999999909], [4.8929789999999684, 4.9014129999999909], [4.9080459999999562, 4.9114270000000033], [4.9180479999999989, 4.9247159999999894], [4.9313849999999775, 4.9380449999999882], [4.9447139999999763, 4.9513869999999542], [4.9580459999999675, 4.9614109999999982], [4.9614639999999781, 5.0047260000000051], [5.0113900000000058, 5.0180449999999723], [5.0247200000000021, 5.0313859999999977], [5.0380449999999541, 5.044713999999999], [5.0513839999999846, 5.0580449999999928], [5.0680449999999837, 5.088045999999963], [5.0947150000000079, 5.1013839999999959], [5.1080440000000067, 5.1147129999999947], [5.1213839999999777, 5.1280459999999835], [5.1347129999999765, 5.1413839999999595], [5.1480439999999703, 5.1547180000000026], [5.1614270000000033, 5.1880449999999882], [5.1947139999999763, 5.2013849999999593], [5.2080459999999675, 5.2147279999999796], [5.2190850000000069, 5.2201909999999998], [5.2280470000000037, 5.2380440000000021], [5.2447149999999851, 5.2513839999999732], [5.2580449999999814, 5.2614019999999755], [5.2614419999999882, 5.2850159999999846], [5.2852320000000077, 5.286564999999996], [5.2865939999999796, 5.28676999999999], [5.2867829999999572, 5.2869230000000016], [5.2869359999999688, 5.2870889999999804], [5.2871020000000044, 5.2872729999999706], [5.2872869999999921, 5.2874579999999582], [5.2874709999999823, 5.2876369999999611], [5.2876489999999876, 5.2878309999999829], [5.2878440000000069, 5.2880899999999542], [5.2881039999999757, 5.2882270000000062], [5.2882389999999759, 5.2884139999999888], [5.2884239999999636, 5.288708999999983], [5.2887210000000096, 5.2888859999999909], [5.2888989999999581, 5.2921240000000012], [5.2923389999999699, 5.2932109999999852], [5.2933039999999778, 5.3014109999999732], [5.3014479999999935, 5.3018819999999778], [5.3021589999999605, 5.30229700000001], [5.3023519999999849, 5.3024489999999673], [5.3025000000000091, 5.302613000000008], [5.3026639999999929, 5.3027969999999982], [5.3028479999999831, 5.3029809999999884], [5.3030329999999708, 5.3031619999999862], [5.303214999999966, 5.3033449999999789], [5.3034169999999676, 5.3035259999999766], [5.3036239999999566, 5.3614079999999831], [5.3614579999999705, 5.4613999999999692], [5.4614259999999604, 5.5613989999999944], [5.5614229999999907, 5.6113959999999565], [5.6114169999999604, 5.6613979999999628], [5.6614219999999591, 5.7028219999999692], [5.7028740000000084, 5.7613959999999906], [5.7614229999999793, 5.8613980000000083], [5.8614239999999995, 5.9613929999999868], [5.9614129999999932, 5.9780930000000012]], \"2\": [[0.29496000000000322, 0.29500099999995655], [0.29542699999996103, 0.29547499999995352], [0.29559000000000424, 0.29569599999996399], [0.29601299999995945, 0.29606899999998859], [0.29609099999998989, 0.29614999999995462], [0.29617199999995591, 0.29632899999995743], [0.29643099999998412, 0.30470900000000256], [0.31471199999998589, 0.470799999999997], [1.2080449999999701, 1.2147129999999606], [1.2213739999999689, 1.2280439999999544], [1.2347090000000094, 1.241375000000005], [1.2480419999999981, 1.2547089999999912], [1.2613749999999868, 1.2680459999999698], [1.2747099999999705, 1.2813749999999686], [1.2880409999999642, 1.2947089999999548], [3.5513760000000048, 3.5580410000000029], [3.5624899999999684, 3.5680409999999938], [3.5747079999999869, 3.5813739999999825], [3.5880409999999756, 3.5947079999999687], [3.6013739999999643, 3.6080409999999574], [3.6147119999999973, 3.621374000000003], [3.6280409999999961, 3.6347079999999892], [3.6413739999999848, 3.6480409999999779], [3.654707999999971, 3.6613749999999641], [4.2113779999999679, 4.2180419999999685], [4.2720479999999839, 4.2830229999999574], [4.3653589999999554, 4.3830229999999801], [4.4653569999999831, 4.4830230000000029], [4.5654329999999845, 4.5830229999999688], [4.6013759999999593, 4.6080409999999574], [4.6720429999999737, 4.6830229999999915], [4.7653569999999945, 4.7830229999999574], [4.8653589999999554, 4.8830229999999801]], \"3\": [[0.48305299999998397, 0.4913789999999949], [0.49804100000000062, 0.50470799999999372], [0.51137299999999186, 0.57883899999995947], [0.58302699999995866, 0.59137599999996837], [0.59804199999996399, 0.60470899999995709], [1.3013779999999997, 1.3080420000000004], [1.3147089999999935, 1.3213749999999891], [1.3280409999999847, 1.3347089999999753], [1.3413749999999709, 1.3480409999999665], [1.3547089999999571, 1.361376000000007], [1.3680439999999976, 1.3747089999999957], [1.3813749999999914, 1.388040999999987], [1.3947089999999776, 3.2719050000000038], [3.2830229999999574, 3.3653759999999693], [3.3830229999999801, 3.4653599999999756], [3.483037999999965, 3.4913740000000075], [3.4980400000000031, 3.5047059999999988], [3.5113719999999944, 3.518039999999985], [3.5247059999999806, 3.5313719999999762], [3.5380409999999642, 3.5447079999999573], [3.6713780000000042, 3.6780420000000049], [3.6847080000000005, 3.6913739999999962], [3.6980409999999893, 3.7047079999999823], [3.711373999999978, 3.7180409999999711], [3.7247079999999642, 3.7313739999999598], [3.7380430000000047, 3.7447080000000028], [3.7513739999999984, 3.7580409999999915], [3.7647079999999846, 3.7713739999999802], [3.7780419999999708, 3.7847079999999664], [3.7913739999999621, 3.7980409999999551], [5.9781259999999747, 6.1330099999999561], [6.1332129999999552, 6.1332820000000083], [6.1332989999999654, 6.1333339999999907]]}, \"kworker/0:1-33\": {\"0\": [[1.2714519999999538, 1.2714980000000082], [4.8880819999999972, 4.8881259999999997], [5.285145, 5.2865759999999682], [5.2867159999999558, 5.2867799999999647], [5.2868829999999889, 5.2869289999999864], [5.2870499999999652, 5.2870939999999678], [5.2872350000000097, 5.287277999999958], [5.2874170000000049, 5.2874639999999999], [5.2875999999999976, 5.2876410000000078], [5.2877809999999954, 5.2878369999999677], [5.2879609999999957, 5.2881499999999733], [5.2881639999999948, 5.2882329999999911], [5.2883739999999761, 5.2884189999999762], [5.2886540000000082, 5.2887139999999704], [5.2888350000000059, 5.2888919999999757], [5.2890299999999684, 5.2890590000000088], [5.2895679999999743, 5.2896609999999669], [5.2897159999999985, 5.2897499999999695], [5.2898319999999899, 5.2898659999999609], [5.2915349999999535, 5.2916349999999852], [5.2916439999999625, 5.2916829999999777], [5.29168999999996, 5.2918510000000083], [5.2918579999999906, 5.2918859999999768], [5.3014430000000061, 5.3014859999999544], [6.2847929999999792, 6.2848399999999742]]}, \"task2-4970\": {\"1\": [[0.28266700000000355, 0.28271999999998343], [0.28805599999998321, 0.28812699999997449], [0.28840999999999894, 0.28866299999998546], [0.28869199999996908, 0.28880599999996548], [0.28889999999995553, 0.28898299999997334], [0.28930700000000797, 0.29474699999997256], [0.30140199999999595, 0.30806599999999662], [0.31472099999996317, 0.32139300000000048], [0.32804699999996956, 0.3347159999999576], [0.34138599999999997, 0.34804800000000569], [0.35471799999999121, 0.36143599999996923], [0.36804999999998245, 0.37471899999997049], [0.38138799999995854, 0.38804699999997183], [0.39471900000000915, 0.40138699999999972], [0.40804800000000796, 0.41471599999999853], [0.42138599999998405, 0.42804699999999229], [0.43471699999997782, 0.44138599999996586], [0.4480469999999741, 0.45471699999995963], [0.46143200000000206, 0.46804799999995339], [1.6080829999999651, 1.6113959999999565], [1.6114089999999806, 1.6180449999999951], [1.6247139999999831, 1.6313839999999686], [1.6380449999999769, 1.6447179999999548], [1.6513869999999997, 1.6580449999999587], [1.6680470000000014, 1.6747139999999945], [1.6813849999999775, 1.6880469999999832], [1.6947149999999738, 1.7013869999999542], [1.7080449999999701, 1.7147170000000074], [1.7213849999999979, 1.7280450000000087], [1.7347139999999968, 1.7413849999999798], [1.7480449999999905, 1.754716999999971], [1.7614219999999818, 1.7680479999999648], [1.7747170000000096, 1.7813850000000002], [1.7880449999999541, 1.7947149999999965], [1.8013839999999846, 1.8080449999999928], [1.8147139999999808, 1.8213839999999664], [1.8280449999999746, 1.8347149999999601], [1.841384000000005, 1.8480449999999564], [1.8547140000000013, 1.8613949999999591], [1.868048999999985, 1.8747149999999806], [1.8813849999999661, 1.8880449999999769], [1.8947139999999649, 1.9013850000000048], [1.9080449999999587, 1.9147150000000011], [1.9213839999999891, 1.9280459999999948], [1.9347139999999854, 1.9413849999999684], [1.9480449999999792, 1.9547169999999596], [1.9614229999999679, 1.9680459999999584], [1.9747140000000059, 1.9813839999999914], [1.9880449999999996, 1.9947149999999851], [2.0013839999999732, 2.0080459999999789], [2.0147149999999669, 2.021383999999955], [2.0280449999999632, 2.0347189999999955], [2.0413849999999911, 2.0480450000000019], [2.0547139999999899, 2.061396000000002], [2.0680459999999812, 2.0747149999999692], [2.0813839999999573, 2.0880449999999655], [2.0947170000000028, 2.1013849999999934], [2.1080450000000042, 2.1147149999999897], [2.1213849999999752, 2.128044999999986], [2.134713999999974, 2.1413839999999595], [2.1480449999999678, 2.1547139999999558], [2.1614189999999667, 2.1680460000000039], [2.1747139999999945, 2.18138399999998], [2.1880469999999832, 2.1947169999999687], [2.2013849999999593, 2.2024619999999686], [2.2024910000000091, 2.208046999999965], [2.214652000000001, 2.2157579999999939], [2.215896999999984, 2.2213909999999828], [2.2280450000000087, 2.2347139999999968], [2.2413839999999823, 2.2480449999999905], [2.2547129999999811, 2.2614019999999755], [2.2680499999999597, 2.2747149999999579], [2.2813840000000027, 2.2880449999999541], [2.2947199999999839, 2.3013839999999846], [2.3080449999999928, 2.3147149999999783], [2.3213849999999638, 2.3280459999999721], [2.3347139999999627, 2.341384000000005], [2.3480459999999539, 2.3547159999999963], [2.3614239999999995, 2.3680449999999951], [2.3747139999999831, 2.3813839999999686], [2.3880449999999769, 2.3947149999999624], [2.4013840000000073, 2.4080459999999562], [2.4147140000000036, 2.4213849999999866], [2.4280449999999973, 2.4347179999999753], [2.4413859999999659, 2.4480449999999792], [2.4547149999999647, 2.4613969999999767], [2.4680459999999584, 2.4747160000000008], [2.4813839999999914, 2.4880449999999996], [2.4947129999999902, 2.5013839999999732], [2.5080449999999814, 2.5147149999999669], [2.521383999999955, 2.5280449999999632], [2.5347129999999538, 2.5413839999999936], [2.5480459999999994, 2.5547169999999824], [2.5614199999999983, 2.5680469999999787], [2.5747129999999743, 2.5780599999999936], [2.5847129999999652, 2.591384000000005], [2.5980449999999564, 2.6047140000000013], [2.6080779999999777, 2.6113929999999641], [2.6180479999999875, 2.6247139999999831], [2.6313839999999686, 2.6380459999999744], [2.64471199999997, 2.6466350000000034], [2.6468939999999748, 2.6547180000000026], [2.6614480000000071, 2.6680450000000064], [2.674714999999992, 2.6813849999999775], [2.6880459999999857, 2.6947149999999738], [2.7013869999999542, 2.7025160000000028], [2.7025600000000054, 2.7080449999999701], [2.7147160000000099, 2.7213840000000005], [2.7280470000000037, 2.7347169999999892], [2.7413839999999823, 2.748045999999988], [2.754716999999971, 2.7613969999999881], [2.7680479999999648, 2.7747180000000071], [2.7780769999999961, 2.7847170000000006], [2.7947130000000016, 2.8013839999999846], [2.8080459999999903, 2.8147179999999707], [2.8213839999999664, 2.8280449999999746], [2.8347129999999652, 2.841386], [2.8480439999999589, 2.8547140000000013], [2.8614299999999844, 2.8680449999999951], [2.8747139999999831, 2.8813859999999636], [2.8880449999999769, 2.8947149999999624], [2.9013840000000073, 2.9080439999999612], [2.9147140000000036, 2.9213839999999891], [2.9280449999999973, 2.9347149999999829], [2.9413839999999709, 2.9480449999999792], [2.9547139999999672, 2.9613959999999793], [2.9680459999999584, 2.9747150000000033], [2.9813839999999914, 2.9880449999999996], [2.9947139999999877, 3.0013839999999732], [3.0080449999999814, 3.0147149999999669], [3.021383999999955, 3.0280449999999632], [3.0347140000000081, 3.0413839999999936], [3.0480450000000019, 3.0547139999999899], [3.0614180000000033, 3.0680439999999862], [3.0747169999999642, 3.0813839999999573], [3.088043999999968, 3.0947139999999536], [3.1013839999999959, 3.1080450000000042], [3.1147139999999922, 3.1213849999999752], [3.1280439999999885, 3.1347149999999715], [3.1413839999999595, 3.1480439999999703], [3.1547129999999584, 3.1613959999999679], [3.1680460000000039, 3.1747139999999945], [3.1813849999999775, 3.1880439999999908], [3.1947129999999788, 3.2013849999999593], [3.2080499999999574, 3.2147149999999556], [3.2247150000000033, 3.2313849999999888], [3.2380449999999996, 3.2447139999999877], [3.2513839999999732, 3.2580449999999814], [3.2614419999999882, 3.2680459999999698], [3.2880480000000034, 3.2947169999999915], [3.3013839999999846, 3.3080479999999852], [3.3147169999999733, 3.3213839999999664], [3.3280439999999771, 3.3347190000000069], [3.341384000000005, 3.3480439999999589], [3.3547140000000013, 3.361396999999954]], \"2\": [[0.47160299999995914, 0.5591389999999592], [0.55931699999996454, 0.98009899999999561], [0.99137600000000248, 1.0737229999999727], [1.0830249999999637, 1.1653699999999958], [1.1830229999999915, 1.2080449999999701], [1.2147129999999606, 1.2213739999999689], [1.2280439999999544, 1.2347090000000094], [1.241375000000005, 1.2480419999999981], [1.2547089999999912, 1.2613749999999868], [1.2680459999999698, 1.2747099999999705], [1.2813749999999686, 1.2880409999999642], [1.2947089999999548, 1.4013759999999706], [1.4080419999999663, 1.4147099999999568], [1.421374999999955, 1.4280410000000074], [1.434708999999998, 1.4413749999999936], [1.4480409999999893, 1.4547109999999748], [1.4613749999999754, 1.468044999999961], [1.4747089999999616, 1.4813749999999573], [1.4880410000000097, 1.4947090000000003], [1.5013739999999984, 1.5080409999999915], [1.5147089999999821, 1.5213749999999777], [1.5280409999999733, 1.5347089999999639], [1.5413739999999621, 1.5480409999999551], [1.5547090000000026, 1.5603169999999977], [1.5680419999999913, 1.5747099999999818], [1.58137499999998, 1.5880409999999756], [1.5947089999999662, 1.6013749999999618], [3.3913759999999797, 3.3980409999999779], [3.404707999999971, 3.4113739999999666], [3.4180429999999546, 3.4247080000000096], [3.4313740000000053, 3.4380409999999983], [3.4447079999999914, 3.451375999999982], [3.4580409999999802, 3.4647089999999707]], \"3\": [[3.2719050000000038, 3.2830229999999574], [3.3653759999999693, 3.3830229999999801], [3.4681079999999724, 3.483037999999965], [3.4913740000000075, 3.4980400000000031], [3.5047059999999988, 3.5113719999999944], [3.518039999999985, 3.5247059999999806], [3.5313719999999762, 3.5380409999999642], [3.5447079999999573, 3.6713780000000042], [3.6780420000000049, 3.6847080000000005], [3.6913739999999962, 3.6980409999999893], [3.7047079999999823, 3.711373999999978], [3.7180409999999711, 3.7247079999999642], [3.7313739999999598, 3.7380430000000047], [3.7447080000000028, 3.7513739999999984], [3.7580409999999915, 3.7647079999999846], [3.7713739999999802, 3.7780419999999708], [3.7847079999999664, 3.7913739999999621], [3.7980409999999551, 4.5880530000000022], [4.5880799999999908, 4.8948049999999625], [4.8948239999999714, 4.9013759999999706], [4.9013850000000048, 4.9080449999999587], [4.9080549999999903, 4.9147099999999568], [4.914716999999996, 5.5880479999999579], [5.5880689999999618, 5.9622269999999844], [5.9624650000000088, 5.9625499999999647], [5.9625629999999887, 5.9625959999999623]]}, \"sh-4984\": {\"1\": [[7.0545940000000087, 7.0548539999999775], [7.0548939999999902, 7.0563659999999686]], \"2\": [[7.0586309999999912, 7.05865399999999], [7.0586829999999736, 7.0586950000000002]]}, \"sh-4985\": {\"1\": [[7.0529539999999997, 7.0545579999999859]], \"3\": [[7.0649819999999863, 7.0654010000000085], [7.0654059999999959, 7.0681789999999864], [7.0682189999999991, 7.0707539999999653], [7.070793999999978, 7.0714600000000019], [7.0714759999999615, 7.071487999999988], [7.0714959999999678, 7.071790999999962]]}, \"sh-4986\": {\"1\": [[7.0716699999999832, 7.0726089999999999]]}, \"sh-4980\": {\"1\": [[6.9684229999999729, 6.9699579999999628]]}, \"sh-4981\": {\"1\": [[6.9709289999999555, 6.9727249999999685], [6.9808679999999868, 6.98136599999998], [6.9815570000000093, 6.9901719999999727], [6.9919799999999555, 6.9920099999999934]]}, \"sh-4982\": {\"1\": [[7.0410059999999817, 7.0410799999999654], [7.0421220000000062, 7.0424789999999575], [7.0426489999999831, 7.0430670000000077], [7.0430809999999724, 7.0482999999999834], [7.0485199999999963, 7.0529539999999997], [7.0563659999999686, 7.0565320000000042]]}, \"kworker/2:1-81\": {\"2\": [[6.2180799999999863, 6.2180960000000027], [6.4280689999999936, 6.4280759999999759], [6.8057499999999891, 6.8057779999999752], [6.9077139999999986, 6.9077439999999797], [6.9921269999999822, 6.9921579999999608]]}, \"su-4981\": {\"1\": [[6.9727509999999597, 6.9733009999999922], [6.9733139999999594, 6.9782079999999951], [6.9801199999999994, 6.9808469999999829]], \"2\": [[6.9783039999999801, 6.9800599999999804]]}, \"su-4985\": {\"1\": [[7.0565320000000042, 7.0571669999999926], [7.057185000000004, 7.058480999999972], [7.0640689999999609, 7.0642069999999535]], \"3\": [[7.0586319999999887, 7.0615469999999618], [7.0620700000000056, 7.0639600000000087], [7.0642429999999763, 7.0642750000000092], [7.0642849999999839, 7.0643599999999651], [7.0643670000000043, 7.0644539999999552], [7.0644589999999994, 7.0649109999999951]]}, \"POSIX timer 1-1781\": {\"1\": [[0.20221099999997705, 0.20226299999995945], [0.70228199999996832, 0.70233500000000504], [1.2023509999999646, 1.2023929999999723], [1.7024079999999913, 1.7024490000000014], [2.2024619999999686, 2.2024910000000091], [2.7025160000000028, 2.7025600000000054], [3.2025699999999802, 3.2026019999999562], [3.7026149999999802, 3.702652999999998], [4.2026679999999601, 4.2026989999999955], [4.7027149999999551, 4.702748999999983], [5.2027630000000045, 5.2028019999999628], [5.7028219999999692, 5.7028740000000084], [6.2029159999999592, 6.2029679999999985], [6.7030879999999797, 6.7031509999999912]]}, \"rt-app-4970\": {\"1\": [[0.28257999999999583, 0.28264999999998963]]}, \"rt-app-4971\": {\"1\": [[0.28178099999996675, 0.28189499999996315]]}, \"kworker/u8:4-247\": {\"0\": [[5.2923529999999914, 5.2923639999999637], [5.2929269999999633, 5.292933000000005], [5.3314149999999927, 5.3314409999999839], [5.3315240000000017, 5.331530999999984]]}, \"ksoftirqd/2-16\": {\"2\": [[0.083550999999999931, 0.083572000000003754], [0.083596999999997479, 0.083603999999979806], [0.08362699999997858, 0.083634999999958382], [0.083658999999954631, 0.083666999999991276], [0.083688999999992575, 0.083695999999974902], [0.083713999999986299, 0.083720999999968626], [0.084776999999974123, 0.084786000000008244], [0.084805999999957749, 0.084814999999991869], [0.084834999999998217, 0.084842999999978019], [0.084863999999981843, 0.08487299999995912], [0.084895999999957894, 0.084903999999994539], [0.096343999999987773, 0.096384999999997945], [0.096421999999961372, 0.096429000000000542], [0.096612999999990734, 0.096629000000007181], [0.096724999999992178, 0.096770999999989726], [0.096814999999992324, 0.096822999999972126], [0.098129999999969186, 0.098146999999983109], [0.098177999999961685, 0.098188999999990756], [0.098207999999999629, 0.098214999999981956], [0.098235999999985779, 0.098246999999958007], [0.2031769999999824, 0.2031910000000039], [0.2032169999999951, 0.20322599999997237], [0.20324899999997115, 0.20325700000000779], [0.2113109999999665, 0.21132099999999809], [0.21134999999998172, 0.21141999999997552], [0.21145799999999326, 0.21146699999997054], [0.21149499999995669, 0.21150299999999334], [6.8058179999999879, 6.8058399999999892], [6.805862999999988, 6.8058709999999678], [6.8059039999999982, 6.8059189999999603], [6.8059480000000008, 6.8059569999999781], [6.8059869999999592, 6.8060049999999706], [6.8549509999999714, 6.8549669999999878], [6.8549909999999841, 6.8549999999999613], [6.8550219999999626, 6.8550299999999993], [6.8550529999999981, 6.8550609999999779], [6.8550839999999766, 6.855090999999959], [6.8551089999999704, 6.8551160000000095], [6.858086999999955, 6.8580969999999866], [6.8581169999999929, 6.8581249999999727], [6.8581439999999816, 6.8581509999999639], [6.8581699999999728, 6.8581769999999551], [6.858195999999964, 6.8582030000000032], [6.8582209999999577, 6.8582299999999918], [6.8853689999999688, 6.8853919999999675], [6.8854179999999587, 6.8854299999999853], [6.885454999999979, 6.8854629999999588], [6.8881489999999985, 6.8881680000000074], [6.8881900000000087, 6.8881979999999885], [6.8882189999999923, 6.8882259999999746], [6.8984689999999773, 6.8985439999999585], [6.9054199999999923, 6.9054370000000063], [6.9054569999999558, 6.9054649999999924], [6.9054830000000038, 6.9054899999999861], [6.9082039999999552, 6.9082239999999615], [6.908284999999978, 6.9082939999999553], [6.9083149999999591, 6.9083219999999983], [6.9250829999999723, 6.9251319999999623], [6.9251830000000041, 6.9251889999999889], [6.925220999999965, 6.9252349999999865], [6.9801489999999831, 6.9801620000000071], [6.9801959999999781, 6.9802029999999604], [6.9802310000000034, 6.9802369999999883], [6.9848039999999969, 6.9848109999999792], [6.9848399999999629, 6.9848569999999768], [6.992198999999971, 6.99221], [6.9922349999999938, 6.992243999999971], [6.9922669999999698, 6.9922750000000065], [6.9948049999999853, 6.9948249999999916], [6.9948579999999652, 6.9948749999999791], [7.0051449999999704, 7.0052459999999996]]}, \"wpa_supplicant-1502\": {\"2\": [[5.8980479999999602, 5.8981629999999541]]}, \"adbd-4973\": {\"1\": [[6.8617820000000052, 6.8619559999999638]]}, \"adbd-4972\": {\"1\": [[6.8518310000000042, 6.8532969999999978]]}, \"ksoftirqd/1-12\": {\"1\": [[0.0035299999999551801, 0.0036199999999553256], [0.0052509999999870161, 0.0052660000000059881], [0.0053479999999694883, 0.0054299999999898318], [0.0054949999999962529, 0.0055140000000051259], [0.0055610000000001492, 0.0055759999999622778], [0.0056079999999951724, 0.0056179999999699248], [0.0056409999999686988, 0.0056549999999901956], [0.095154999999977008, 0.095199999999977081], [0.095232000000009975, 0.095240999999987253], [0.095281999999997424, 0.095290999999974701], [0.098141999999995733, 0.09816000000000713], [0.098199999999962984, 0.098210999999992055], [0.098241999999970631, 0.09826799999996183], [0.098297999999999774, 0.098309999999969477], [0.098343999999997322, 0.098357999999961976], [0.09838099999996075, 0.098390999999992346], [0.10142199999995682, 0.10143499999998085], [0.10146499999996195, 0.10147899999998344], [0.17881699999998091, 0.17883699999998726], [0.178875000000005, 0.17888699999997471], [0.17891699999995581, 0.1789269999999874], [0.18274499999995442, 0.18276199999996834], [0.18278699999996206, 0.18279799999999113], [0.18281899999999496, 0.18282899999996971], [0.19838799999996581, 0.19839799999999741], [0.20208299999995916, 0.2021289999999567], [0.20226299999995945, 0.20227399999998852], [0.20622399999996333, 0.20632899999998244], [0.20665099999996528, 0.20666899999997668], [0.2076879999999619, 0.20776999999998225], [0.20784099999997352, 0.20785200000000259], [0.21161200000000235, 0.21169399999996585], [0.21172999999998865, 0.21174099999996088], [0.21177499999998872, 0.21178499999996347], [0.21479099999999107, 0.21480499999995573], [0.21483999999998105, 0.2148499999999558], [0.21488299999998617, 0.21489299999996092], [0.21492999999998119, 0.21494799999999259], [4.911564999999996, 4.9115869999999973], [6.8058839999999918, 6.8059189999999603], [6.8059690000000046, 6.8060069999999655], [6.8060859999999934, 6.8061009999999555], [6.8061359999999809, 6.8061899999999582], [6.8062269999999785, 6.8062369999999532], [6.8062799999999584, 6.8062999999999647], [6.8081039999999575, 6.808119999999974], [6.8082200000000057, 6.8082459999999969], [6.8789469999999824, 6.8789850000000001], [6.8790179999999737, 6.8790259999999535], [6.8790699999999561, 6.8790779999999927], [6.8827849999999557, 6.8827989999999772], [6.8828330000000051, 6.8828399999999874], [6.8828800000000001, 6.8828869999999824], [6.8882519999999658, 6.8882759999999621], [6.9040939999999864, 6.904139999999984], [6.9041899999999714, 6.9041990000000055], [6.9042419999999538, 6.9042509999999879], [6.9047759999999698, 6.9047869999999989], [6.9048290000000065, 6.9048369999999863], [6.9048829999999839, 6.9048899999999662], [6.9082359999999881, 6.9082520000000045], [6.9096389999999701, 6.9097629999999981], [6.909827000000007, 6.9098500000000058], [6.9149329999999622, 6.9149529999999686], [6.9784500000000094, 6.9784689999999614], [6.9785190000000057, 6.978541000000007], [6.9785779999999704, 6.9785860000000071], [6.99211600000001, 6.9921439999999961], [6.992321000000004, 6.9923670000000016], [6.9927969999999959, 6.9929070000000024], [6.9948949999999854, 6.9949100000000044], [6.9949699999999666, 6.9949839999999881], [7.0586419999999634, 7.0586639999999647], [7.0587089999999648, 7.0587199999999939], [7.0587509999999725, 7.0587610000000041], [7.0642780000000016, 7.0643249999999966], [7.0643609999999626, 7.0643719999999917], [7.0644429999999829, 7.0644519999999602], [7.0707009999999855, 7.0707209999999918], [7.0707499999999754, 7.070762000000002], [7.0707869999999957, 7.0707979999999679], [7.0714449999999829, 7.0714580000000069], [7.0714929999999754, 7.0715099999999893]]}, \"adbd-4979\": {\"1\": [[6.96820299999996, 6.9684229999999729]]}, \"adbd-4978\": {\"1\": [[6.9557399999999916, 6.9570640000000026]]}, \"ksoftirqd/0-3\": {\"0\": [[0.057709999999985939, 0.057748000000003685], [0.058227999999985514, 0.05826099999995904], [0.14976599999999962, 0.1497969999999782], [0.26164799999997967, 0.26169199999998227], [5.2928509999999847, 5.2929059999999595], [5.2929129999999986, 5.2929169999999885], [6.8496169999999665, 6.849632999999983], [6.908253000000002, 6.9083180000000084], [6.9536049999999818, 6.9536200000000008], [7.0375750000000039, 7.0376089999999749]]}, \"task3-4971\": {\"1\": [[0.28246300000000701, 0.28257999999999583], [0.28299299999997629, 0.28301799999997002], [0.28302999999999656, 0.28307799999998906], [0.28377499999999145, 0.28396399999996902], [0.28399199999995517, 0.28410299999995914], [0.28417199999995546, 0.28428700000000617], [0.28460200000000668, 0.28805599999998321], [0.51805099999995718, 0.52139199999999164], [0.52143699999999171, 0.52805000000000746], [0.53804700000000594, 0.54139199999997345], [0.54143499999997857, 0.54804899999999179], [0.55804599999999027, 0.56140299999998433], [0.56805099999996855, 0.57139599999999291], [0.57143899999999803, 0.57804799999996703], [0.99805299999997033, 1.0013950000000023], [1.0080519999999638, 1.0113900000000058], [1.0114639999999895, 1.0180479999999648], [1.0214339999999993, 1.02804900000001], [1.0380499999999984, 1.0413899999999785], [1.0414319999999861, 1.0480479999999943], [1.0580489999999827, 1.0614069999999742], [1.0617399999999861, 1.0680509999999686], [1.0880520000000047, 1.0913899999999899], [1.0914339999999925, 1.0980480000000057], [1.1080499999999915, 1.1113939999999616], [1.111460999999963, 1.1180479999999875], [1.1280479999999784, 1.1313920000000053], [1.1314319999999611, 1.1380479999999693], [1.1480489999999577, 1.1513919999999871], [1.1514329999999973, 1.1580510000000004], [1.188056999999958, 1.1947209999999586], [1.2013949999999909, 1.2023509999999646], [1.2023929999999723, 1.2129559999999628], [1.213156999999967, 1.2142649999999549], [1.2144099999999867, 1.2614079999999603], [1.2614519999999629, 1.3614019999999982], [1.3614309999999819, 1.3647339999999986], [1.3647799999999961, 1.4614009999999666], [1.4614279999999553, 1.561397999999997], [1.5614209999999957, 1.5747289999999907], [1.5747609999999668, 1.6080549999999789], [1.6180449999999951, 1.6247139999999831], [1.6313839999999686, 1.6380449999999769], [1.6447179999999548, 1.6513869999999997], [1.6580449999999587, 1.6613999999999578], [1.6614289999999983, 1.6680470000000014], [1.6747139999999945, 1.6813849999999775], [1.6880469999999832, 1.6947149999999738], [1.7013869999999542, 1.7024079999999913], [1.7024490000000014, 1.7080449999999701], [1.7147170000000074, 1.7213849999999979], [1.7280450000000087, 1.7347139999999968], [1.7413849999999798, 1.7480449999999905], [1.754716999999971, 1.7613969999999881], [1.7680479999999648, 1.7747170000000096], [1.7813850000000002, 1.7880449999999541], [1.7947149999999965, 1.8013839999999846], [1.8080449999999928, 1.8147139999999808], [1.8213839999999664, 1.8280449999999746], [1.8347149999999601, 1.841384000000005], [1.8480449999999564, 1.8547140000000013], [1.8614169999999604, 1.868048999999985], [1.8747149999999806, 1.8813849999999661], [1.8880449999999769, 1.8947139999999649], [1.9013850000000048, 1.9080449999999587], [1.9147150000000011, 1.9213839999999891], [1.9280459999999948, 1.9347139999999854], [1.9413849999999684, 1.9480449999999792], [1.9547169999999596, 1.9613959999999793], [1.9680459999999584, 1.9747140000000059], [1.9813839999999914, 1.9880449999999996], [1.9947149999999851, 2.0013839999999732], [2.0080459999999789, 2.0147149999999669], [2.021383999999955, 2.0280449999999632], [2.0347189999999955, 2.0413849999999911], [2.0480450000000019, 2.0547139999999899], [2.0614199999999983, 2.0680459999999812], [2.0747149999999692, 2.0813839999999573], [2.0880449999999655, 2.0947170000000028], [2.1013849999999934, 2.1080450000000042], [2.1147149999999897, 2.1213849999999752], [2.128044999999986, 2.134713999999974], [2.1413839999999595, 2.1480449999999678], [2.1547139999999558, 2.1613969999999654], [2.1680460000000039, 2.1747139999999945], [2.18138399999998, 2.1880469999999832], [2.1947169999999687, 2.2013849999999593], [2.208046999999965, 2.2144710000000032], [2.2213909999999828, 2.2280450000000087], [2.2347139999999968, 2.2413839999999823], [2.2480449999999905, 2.2547129999999811], [2.2614360000000033, 2.2680499999999597], [2.2747149999999579, 2.2813840000000027], [2.2880449999999541, 2.2947199999999839], [2.3013839999999846, 2.3080449999999928], [2.3147149999999783, 2.3213849999999638], [2.3280459999999721, 2.3347139999999627], [2.341384000000005, 2.3480459999999539], [2.3547159999999963, 2.3613980000000083], [2.3680449999999951, 2.3747139999999831], [2.3813839999999686, 2.3880449999999769], [2.3947149999999624, 2.4013840000000073], [2.4080459999999562, 2.4147140000000036], [2.4213849999999866, 2.4280449999999973], [2.4347179999999753, 2.4413859999999659], [2.4480449999999792, 2.4547149999999647], [2.461420999999973, 2.4680459999999584], [2.4747160000000008, 2.4813839999999914], [2.4880449999999996, 2.4947129999999902], [2.5013839999999732, 2.5080449999999814], [2.5147149999999669, 2.521383999999955], [2.5280449999999632, 2.5347129999999538], [2.5413839999999936, 2.5480459999999994], [2.5547169999999824, 2.561396000000002], [2.5680469999999787, 2.5747129999999743], [2.5781079999999861, 2.5847129999999652], [2.591384000000005, 2.5980449999999564], [2.6047140000000013, 2.6080539999999814], [2.6114069999999856, 2.6180479999999875], [2.6247139999999831, 2.6313839999999686], [2.6380459999999744, 2.64471199999997], [2.6547180000000026, 2.661405000000002], [2.6680450000000064, 2.674714999999992], [2.6813849999999775, 2.6880459999999857], [2.6947149999999738, 2.7013869999999542], [2.7080449999999701, 2.7147160000000099], [2.7213840000000005, 2.7280470000000037], [2.7347169999999892, 2.7413839999999823], [2.748045999999988, 2.754716999999971], [2.7614219999999818, 2.7680479999999648], [2.7747180000000071, 2.7780579999999873], [2.7847170000000006, 2.788065999999958], [2.7881039999999757, 2.7947130000000016], [2.8013839999999846, 2.8080459999999903], [2.8147179999999707, 2.8213839999999664], [2.8280449999999746, 2.8347129999999652], [2.841386, 2.8480439999999589], [2.8547140000000013, 2.8614000000000033], [2.8680449999999951, 2.8747139999999831], [2.8813859999999636, 2.8880449999999769], [2.8947149999999624, 2.9013840000000073], [2.9080439999999612, 2.9147140000000036], [2.9213839999999891, 2.9280449999999973], [2.9347149999999829, 2.9413839999999709], [2.9480449999999792, 2.9547139999999672], [2.9614229999999679, 2.9680459999999584], [2.9747150000000033, 2.9813839999999914], [2.9880449999999996, 2.9947139999999877], [3.0013839999999732, 3.0080449999999814], [3.0147149999999669, 3.021383999999955], [3.0280449999999632, 3.0347140000000081], [3.0413839999999936, 3.0480450000000019], [3.0547139999999899, 3.061396000000002], [3.0680439999999862, 3.0747169999999642], [3.0813839999999573, 3.088043999999968], [3.0947139999999536, 3.1013839999999959], [3.1080450000000042, 3.1147139999999922], [3.1213849999999752, 3.1280439999999885], [3.1347149999999715, 3.1413839999999595], [3.1480439999999703, 3.1547129999999584], [3.1614149999999768, 3.1680460000000039], [3.1747139999999945, 3.1813849999999775], [3.1880439999999908, 3.1947129999999788], [3.2013849999999593, 3.2025699999999802], [3.2026019999999562, 3.2080499999999574], [3.2147149999999556, 3.2159560000000056], [3.2161389999999983, 3.2172410000000013], [3.217378999999994, 3.2247150000000033], [3.2313849999999888, 3.2380449999999996], [3.2447139999999877, 3.2513839999999732], [3.2580449999999814, 3.2614039999999704], [3.2680459999999698, 3.2880480000000034], [3.2947169999999915, 3.3013839999999846], [3.3080479999999852, 3.3147169999999733], [3.3213839999999664, 3.3280439999999771], [3.3347190000000069, 3.341384000000005], [3.3480439999999589, 3.3547140000000013], [3.3614220000000046, 3.4613949999999818], [3.461418999999978, 3.5613969999999995], [3.5614219999999932, 3.6114000000000033], [3.611424999999997, 3.6613969999999654], [3.6614209999999616, 3.7026149999999802], [3.702652999999998, 3.7613989999999831], [3.7614219999999818, 3.7913939999999684], [3.7914539999999874, 3.8047179999999798], [3.8113889999999628, 3.8180449999999837], [3.8247149999999692, 3.8313839999999573], [3.838045999999963, 3.8447150000000079], [3.8513839999999959, 3.8580469999999991], [3.861424999999997, 3.8680479999999875], [3.8747149999999806, 3.8813839999999686], [3.8880449999999769, 3.8947149999999624], [3.9013850000000048, 3.9080449999999587], [3.9147150000000011, 3.9213839999999891], [3.9280449999999973, 3.9347139999999854], [3.9413839999999709, 3.9480449999999792], [3.9547149999999647, 3.9613969999999767], [3.9680459999999584, 3.9747140000000059], [3.9813839999999914, 3.9880459999999971], [3.9947129999999902, 4.0013999999999896], [4.0113869999999565, 4.0180459999999698], [4.0247139999999604, 4.0313850000000002], [4.0380480000000034, 4.044713999999999], [4.0513839999999846, 4.0580439999999953], [4.0680479999999761, 4.0747129999999743], [4.0880469999999605, 4.0947160000000054], [4.1013849999999934, 4.1080440000000067], [4.1147159999999872, 4.1213839999999777], [4.1280439999999885, 4.1347129999999765], [4.1413839999999595, 4.1480439999999703], [4.1547139999999558, 4.1613959999999679], [4.1880439999999908, 4.1947149999999738], [4.2013859999999568, 4.2026679999999601], [4.2026989999999955, 4.217441000000008], [4.2176159999999641, 4.218721999999957], [4.2188519999999698, 4.2247169999999983], [4.2313869999999838, 4.2380449999999996], [4.244718999999975, 4.2513959999999997], [4.2580449999999814, 4.2614049999999679], [4.2680449999999723, 4.2880449999999541], [4.2947130000000016, 4.301384999999982], [4.3080439999999953, 4.3147129999999834], [4.3213869999999588, 4.3280449999999746], [4.3347129999999652, 4.3413850000000025], [4.3480439999999589, 4.3547140000000013], [4.3614200000000096, 4.3880439999999794], [4.3947129999999675, 4.4013840000000073], [4.4080469999999536, 4.4147140000000036], [4.4213859999999841, 4.4280439999999999], [4.4347129999999879, 4.4413839999999709], [4.4480439999999817, 4.4547129999999697], [4.4614249999999629, 4.488047999999992], [4.4947169999999801, 4.5013839999999732], [4.5080449999999814, 4.5147139999999695], [4.521383999999955, 4.5280459999999607], [4.5347150000000056, 4.5413849999999911], [4.5480440000000044, 4.5547129999999925], [4.5614199999999983, 4.5880469999999605], [4.5947139999999536, 4.6113990000000058], [4.6114189999999553, 4.6180449999999951], [4.6247149999999806, 4.6313869999999611], [4.6380449999999769, 4.6447129999999675], [4.6513840000000073, 4.6580439999999612], [4.6680450000000064, 4.6880449999999882], [4.6947159999999712, 4.7013859999999568], [4.7080439999999726, 4.7147149999999556], [4.7213840000000005, 4.7280450000000087], [4.7347139999999968, 4.7413839999999823], [4.748043999999993, 4.7547139999999786], [4.7614229999999793, 4.7880470000000059], [4.7947149999999965, 4.8013839999999846], [4.8080449999999928, 4.8147139999999808], [4.8213839999999664, 4.828047999999967], [4.8347169999999551, 4.841384000000005], [4.8480439999999589, 4.8547149999999988], [4.8614220000000046, 4.8880529999999567], [4.9014129999999909, 4.9080459999999562], [4.9115869999999973, 4.9180479999999989], [4.9247159999999894, 4.9313849999999775], [4.9380449999999882, 4.9447139999999763], [4.9513869999999542, 4.9580459999999675], [5.0047809999999799, 5.0113900000000058], [5.0180449999999723, 5.0247200000000021], [5.0313859999999977, 5.0380449999999541], [5.044713999999999, 5.0513839999999846], [5.0580449999999928, 5.0614029999999843], [5.061429999999973, 5.0680449999999837], [5.088045999999963, 5.0947150000000079], [5.1013839999999959, 5.1080440000000067], [5.1147129999999947, 5.1213839999999777], [5.1280459999999835, 5.1347129999999765], [5.1413839999999595, 5.1480439999999703], [5.1547180000000026, 5.1613999999999578], [5.1880449999999882, 5.1947139999999763], [5.2013849999999593, 5.2027630000000045], [5.2028019999999628, 5.2080459999999675], [5.2147589999999582, 5.2189109999999914], [5.2203289999999924, 5.2280470000000037], [5.2380440000000021, 5.2447149999999851], [5.2513839999999732, 5.2580449999999814]], \"2\": [[0.29500099999995655, 0.29537799999997105], [0.30470900000000256, 0.31471199999998589], [0.98304699999999912, 0.99137600000000248], [1.0737229999999727, 1.0830249999999637], [1.1653699999999958, 1.1830229999999915], [4.0780869999999823, 4.0830249999999637], [4.1653670000000034, 4.1830229999999915], [4.9653729999999996, 4.9830230000000029], [4.9913760000000025, 4.9980410000000006], [5.0720979999999827, 5.0830229999999688], [5.1653539999999794, 5.1830229999999915], [5.2653669999999693, 5.2830219999999599], [5.2838160000000016, 5.2839050000000043], [5.2839199999999664, 5.2840149999999539], [5.2840789999999629, 5.2842959999999835], [5.2844339999999761, 5.2847209999999905], [5.2847299999999677, 5.291375999999957], [5.2913849999999911, 5.2980420000000095], [5.2980499999999893, 5.3080420000000004], [5.3080499999999802, 5.5646179999999958], [5.5647229999999581, 5.8980479999999602], [5.8981629999999541, 6.0580499999999802], [6.0580649999999991, 6.2180520000000001], [6.2180960000000027, 6.4280509999999822], [6.4280759999999759, 6.5659119999999689]], \"3\": [[0.3181409999999687, 0.32139300000000048], [0.32143399999995381, 0.33138999999999896], [0.33142599999996492, 0.34138599999999997], [0.34142099999996844, 0.35138799999998582], [0.3514229999999543, 0.36143199999997933], [0.3619059999999763, 0.3620199999999727], [0.36206599999997024, 0.37139299999995501], [0.37142999999997528, 0.38138699999996106], [0.38142399999998133, 0.39138599999995449], [0.39142199999997729, 0.40138600000000224], [0.40142099999997072, 0.4113879999999881], [0.41149699999999712, 0.42138599999998405], [0.42142200000000685, 0.43138599999997496], [0.43142199999999775, 0.44138599999996586], [0.44142199999998866, 0.45138800000000856], [0.45142299999997704, 0.46140399999995907], [0.46158700000000863, 0.47101199999997334], [0.4913789999999949, 0.49804100000000062], [0.50470799999999372, 0.51137299999999186], [0.58144699999996874, 0.58302699999995866], [0.59137599999996837, 0.59804199999996399], [0.60470899999995709, 0.97034199999995963], [6.5659349999999677, 6.6113869999999793], [6.6114039999999932, 6.8029329999999959], [6.8029530000000022, 6.8030459999999948]]}, \"ksoftirqd/3-20\": {\"3\": [[0.0038499999999999091, 0.0038609999999721367], [0.0039899999999875035, 0.003999999999962256], [0.0040179999999736538, 0.0040270000000077744], [0.0052949999999896136, 0.0053130000000010114], [0.09661799999997811, 0.096631000000002132], [0.096683999999982007, 0.096690999999964333], [0.096737999999959357, 0.096744999999998527], [0.096786000000008698, 0.096811999999999898], [0.098099999999988086, 0.098106999999970412], [0.098146999999983109, 0.098155999999960386], [0.18538999999998396, 0.18540799999999535], [0.18543899999997393, 0.18544599999995626], [0.185483999999974, 0.18548999999995885], [0.18828099999996084, 0.18828800000000001], [0.18832199999997101, 0.18832799999995586], [0.18835899999999128, 0.18836499999997613], [0.19479799999999159, 0.19481799999999794], [5.9626549999999838, 5.9626779999999826], [5.9627600000000029, 5.9627679999999827], [5.9627999999999588, 5.9628060000000005], [5.9647400000000061, 5.964747999999986], [5.9647870000000012, 5.9647959999999784], [5.9648169999999823, 5.9648229999999671], [5.9714339999999879, 5.9714619999999741], [6.1333799999999883, 6.1333929999999555], [6.1334769999999708, 6.1334829999999556], [6.1347369999999728, 6.1347480000000019], [6.1347789999999804, 6.1347849999999653], [6.1348199999999906, 6.1348279999999704], [6.1414340000000038, 6.1414509999999609], [6.8030819999999608, 6.8030939999999873], [6.8031289999999558, 6.803135999999995], [6.8031659999999761, 6.8031729999999584], [6.8047509999999534, 6.804760999999985], [6.8048019999999951, 6.8048099999999749], [6.8048299999999813, 6.8048359999999661], [6.8081070000000068, 6.8081219999999689], [6.8081569999999942, 6.808164999999974], [6.8081869999999753, 6.8081949999999551], [7.0641459999999938, 7.0641709999999875], [7.0642269999999598, 7.0642330000000015], [7.0719279999999571, 7.0719780000000014]]}, \"adbd-4965\": {\"1\": [[0.26398399999999356, 0.26548800000000483]]}, \"adbd-4966\": {\"1\": [[0.27485799999999472, 0.27504699999997229]]}, \"adbd-4960\": {\"1\": [[0.16149599999999964, 0.16165699999999106]]}, \"busybox-4964\": {\"1\": [[0.19839799999999741, 0.19916999999998097], [0.19923599999998487, 0.19934499999999389], [0.19935799999996107, 0.19942299999996749], [0.19943399999999656, 0.19950399999999036], [0.19951599999996006, 0.19972300000000587], [0.19973499999997557, 0.19974899999999707], [0.19980999999995674, 0.19988499999999476], [0.20195300000000316, 0.20198999999996659]]}, \"sh-4953\": {\"1\": [[0.0, 0.0013480000000072323]]}, \"sh-4950\": {\"1\": [[0.0013480000000072323, 0.0029539999999883548]]}, \"sh-4957\": {\"1\": [[0.081662999999991825, 0.083016999999983909]]}, \"sh-4955\": {\"1\": [[0.061659999999960746, 0.06179599999995844], [0.062978999999984353, 0.063197999999999865], [0.06331199999999626, 0.068249999999977717], [0.068478999999967982, 0.073902999999972963]], \"2\": [[0.083314999999970496, 0.08348799999998846], [0.095137999999963085, 0.096243999999956031]]}, \"sh-4959\": {\"1\": [[0.15358799999995654, 0.1536609999999996], [0.15450999999995929, 0.15489299999995865], [0.15512300000000323, 0.15563399999996363], [0.15564599999999018, 0.16149599999999964], [0.16165699999999106, 0.16533299999997553], [0.16856699999999591, 0.16875099999998611], [0.2031949999999938, 0.20441999999997051]]}, \"sh-4958\": {\"1\": [[0.073902999999972963, 0.074922999999955664], [0.074972000000002481, 0.081586999999956333], [0.086171999999976379, 0.086751999999989948], [0.086762999999962176, 0.091532999999969888], [0.091585000000009131, 0.094996999999978016]]}, \"kworker/2:2-478\": {\"2\": [[0.29547499999995352, 0.29549599999995735], [5.2832859999999755, 5.2833149999999591], [6.0580499999999802, 6.0580649999999991], [6.2180520000000001, 6.2180799999999863], [6.4280509999999822, 6.4280689999999936]]}, \"shell srvc 4972-4973\": {\"1\": [[6.9070360000000051, 6.9073469999999588]]}, \"kworker/3:0-21\": {\"3\": [[0.0035969999999565516, 0.0036259999999970205], [4.5880530000000022, 4.5880799999999908], [5.5880479999999579, 5.5880689999999618], [5.9622269999999844, 5.9622459999999933], [6.1330099999999561, 6.13302699999997], [6.6113869999999793, 6.6114039999999932], [6.8029329999999959, 6.8029530000000022]]}, \"shell srvc 4950-4951\": {\"1\": [[0.0030409999999960746, 0.0033960000000092805]]}, \"kworker/1:1-4914\": {\"1\": [[0.20441999999997051, 0.20452199999999721], [0.20584900000000061, 0.20588199999997414], [0.2787569999999846, 0.27880999999996448], [0.28189499999996315, 0.28193699999997079], [0.28264999999998963, 0.28266700000000355], [0.2827609999999936, 0.2827769999999532], [0.28290699999996605, 0.28292299999998249], [0.28301799999997002, 0.28302999999999656], [0.28812699999997449, 0.28815900000000738], [0.29481999999995878, 0.29485599999998158], [2.6080539999999814, 2.6080779999999777], [2.6113929999999641, 2.6114069999999856], [2.7780579999999873, 2.7780769999999961]]}, \"VosMCThread-1457\": {\"1\": [[0.05771399999997584, 0.057766999999955715], [0.15489299999995865, 0.15495999999996002], [0.26164399999998977, 0.26174199999996972], [0.36149599999998827, 0.3615469999999732], [0.46140599999995402, 0.46143200000000206], [0.56140299999998433, 0.56143099999997048], [0.66140599999999949, 0.66143499999998312], [0.76140899999995781, 0.76143600000000333], [0.8614069999999856, 0.86143199999997933], [0.96140399999995907, 0.96142900000000964], [1.0614069999999742, 1.0614329999999654], [1.1614059999999995, 1.1614289999999983], [1.2614079999999603, 1.2614519999999629], [1.3614019999999982, 1.3614309999999819], [1.4614009999999666, 1.4614279999999553], [1.561397999999997, 1.5614209999999957], [1.6613999999999578, 1.6614289999999983], [1.7613969999999881, 1.7614219999999818], [1.8613949999999591, 1.8614169999999604], [1.9613959999999793, 1.9614229999999679], [2.061396000000002, 2.0614199999999983], [2.1613969999999654, 2.1614189999999667], [2.2614019999999755, 2.2614360000000033], [2.3613980000000083, 2.3614239999999995], [2.4613969999999767, 2.461420999999973], [2.561396000000002, 2.5614199999999983], [2.661405000000002, 2.6614480000000071], [2.7613969999999881, 2.7614219999999818], [2.8614000000000033, 2.8614299999999844], [2.9613959999999793, 2.9614229999999679], [3.061396000000002, 3.0614180000000033], [3.1613959999999679, 3.1614149999999768], [3.2614039999999704, 3.2614419999999882], [3.361396999999954, 3.3614220000000046], [3.4613949999999818, 3.461418999999978], [3.5613969999999995, 3.5614219999999932], [3.6613969999999654, 3.6614209999999616], [3.7613989999999831, 3.7614219999999818], [3.8614000000000033, 3.861424999999997], [3.9613969999999767, 3.961418999999978], [4.0613989999999944, 4.0614239999999882], [4.1613959999999679, 4.1614169999999717], [4.2614049999999679, 4.2614399999999932], [4.3613959999999565, 4.3614200000000096], [4.4613979999999742, 4.4614249999999629], [4.561396000000002, 4.5614199999999983], [4.6613979999999628, 4.661423999999954], [4.7613989999999831, 4.7614229999999793], [4.8613959999999565, 4.8614220000000046], [4.9614109999999982, 4.9614639999999781], [5.0614029999999843, 5.061429999999973], [5.1613999999999578, 5.1614270000000033], [5.2614019999999755, 5.2614419999999882], [5.3614079999999831, 5.3614579999999705], [5.4613999999999692, 5.4614259999999604], [5.5613989999999944, 5.5614229999999907], [5.6613979999999628, 5.6614219999999591], [5.7613959999999906, 5.7614229999999793], [5.8613980000000083, 5.8614239999999995], [5.9613929999999868, 5.9614129999999932], [6.0614869999999996, 6.0615359999999896], [6.1614500000000021, 6.1614950000000022], [6.2614409999999907, 6.2614939999999706], [6.3614339999999743, 6.3614749999999844], [6.4614349999999945, 6.4614659999999731], [6.5614289999999755, 6.5614630000000034], [6.6614339999999856, 6.6614700000000084], [6.7614289999999642, 6.7614729999999668], [6.8616999999999848, 6.8617820000000052], [6.9615799999999695, 6.9616479999999683]], \"3\": [[7.0615469999999618, 7.0616190000000074]]}, \"shutils-4976\": {\"1\": [[6.8882759999999621, 6.894916999999964], [6.8949890000000096, 6.8977529999999661], [6.901081999999974, 6.901143999999988], [6.9012539999999944, 6.9012689999999566], [6.9013349999999605, 6.9013479999999845], [6.9015459999999962, 6.9015640000000076], [6.901773999999989, 6.9017869999999562], [6.9018009999999776, 6.9018639999999891], [6.9019389999999703, 6.9038879999999949]]}, \"shell srvc 4955-4956\": {\"3\": [[0.096322999999983949, 0.096576999999967938]]}, \"busybox-4977\": {\"1\": [[6.9003500000000031, 6.901081999999974], [6.901143999999988, 6.9012539999999944], [6.9012689999999566, 6.9013349999999605], [6.9013479999999845, 6.9015459999999962], [6.9015640000000076, 6.901773999999989], [6.9017869999999562, 6.9018009999999776], [6.9018639999999891, 6.9019389999999703], [6.9038879999999949, 6.9039399999999773]]}, \"shell srvc 4965-4966\": {\"1\": [[6.8054169999999772, 6.8057619999999588]]}, \"rild-871\": {\"2\": [[2.6468279999999709, 2.6471579999999904]]}, \"rild-1173\": {\"1\": [[2.6466350000000034, 2.6468939999999748]], \"2\": [[2.6471579999999904, 2.6471789999999942]]}, \"<-transport-4124\": {\"1\": [[0.0041650000000004184, 0.004290999999966516], [0.0044019999999704851, 0.0044709999999668071], [0.057766999999955715, 0.057893999999976131], [0.058254999999974189, 0.058460999999965679], [0.096852999999953227, 0.09696299999995972], [0.14979099999999335, 0.14985500000000229], [0.14999399999999241, 0.15014199999995981], [0.20679300000000467, 0.20694399999996449], [0.2072809999999663, 0.20734199999998282], [0.26174199999996972, 0.26184399999999641], [0.26194999999995616, 0.26228699999995797], [0.28018499999996038, 0.28033099999998967], [0.28322699999995393, 0.28333299999997053], [0.28428700000000617, 0.2843679999999722], [0.28898299999997334, 0.28906699999998864], [6.9083139999999617, 6.9085779999999772], [6.9092089999999757, 6.9092719999999872], [6.9536379999999554, 6.9537409999999795], [6.953850999999986, 6.95401099999998], [6.9924759999999537, 6.9927189999999655], [7.0375789999999938, 7.0376410000000078], [7.0377569999999992, 7.0379219999999805]], \"2\": [[0.29569599999996399, 0.29577699999998686], [0.29632899999995743, 0.29635500000000548], [5.2842959999999835, 5.2843459999999709], [6.8062029999999822, 6.8062579999999571], [6.8063980000000015, 6.8064349999999649], [6.8500009999999634, 6.8501249999999914], [6.8502819999999929, 6.8504669999999805]], \"3\": [[5.9629579999999578, 5.9630129999999895], [6.1336880000000065, 6.1337409999999863], [6.8038099999999986, 6.8038789999999949]]}, \"shell srvc 4978-4979\": {\"1\": [[6.9915699999999674, 6.9919799999999555]]}, \"adbd-4121\": {\"1\": [[0.004290999999966516, 0.0044019999999704851], [0.0044790000000034524, 0.0045289999999909014], [0.0045599999999694774, 0.0046639999999911197], [0.0049179999999751089, 0.0050190000000043256], [0.0050269999999841275, 0.005162999999981821], [0.058460999999965679, 0.058700999999985015], [0.058711999999957243, 0.060070999999993546], [0.06179599999995844, 0.062820999999985361], [0.095668999999986681, 0.09635499999996], [0.15014199999995981, 0.15203700000000708], [0.1536609999999996, 0.15439699999996037], [0.20452199999999721, 0.20540199999999231], [0.20588199999997414, 0.20606099999997696], [0.20694399999996449, 0.2072809999999663], [0.20737599999995382, 0.20752699999997049], [0.26231999999998834, 0.26395600000000741], [0.26557900000000245, 0.26638099999996712], [0.27880999999996448, 0.27928399999996145], [0.28033099999998967, 0.28063499999996111], [0.28193699999997079, 0.28231599999998025], [0.28333299999997053, 0.28372400000000653], [0.2843679999999722, 0.28459199999997509], [0.28815900000000738, 0.28835199999997485], [0.28906699999998864, 0.28929699999997638], [0.29485599999998158, 0.29514999999997826], [6.9086019999999735, 6.9091479999999592], [6.9092719999999872, 6.9094419999999559], [6.95401099999998, 6.955711000000008], [6.9571689999999649, 6.9578970000000027], [7.0379219999999805, 7.0395969999999579], [7.0410799999999654, 7.0419829999999592]], \"2\": [[0.096445999999957621, 0.096578999999962889], [0.096946000000002641, 0.097059999999999036], [0.29577699999998686, 0.29599099999995815], [0.29635500000000548, 0.2964279999999917], [5.2833149999999591, 5.2837240000000065], [5.2843459999999709, 5.2844299999999862], [6.8030029999999897, 6.8032220000000052], [6.8038849999999798, 6.8039949999999862], [6.8044739999999706, 6.8044969999999694], [6.8054469999999583, 6.8057499999999891], [6.8504669999999805, 6.8519519999999829], [6.8538340000000062, 6.8541060000000016], [6.8541189999999688, 6.8543669999999679], [6.8544619999999554, 6.8548899999999549], [6.9065499999999815, 6.9067679999999996], [6.9070519999999647, 6.9076369999999656], [6.9914420000000064, 6.9921269999999822], [6.9928479999999809, 6.993267000000003]], \"3\": [[0.0021800000000098407, 0.0023239999999873362], [0.003054999999960728, 0.0033029999999598658], [0.0033960000000092805, 0.0035969999999565516], [0.0036259999999970205, 0.0036759999999844695], [0.0036999999999807187, 0.0037820000000010623], [5.9622459999999933, 5.9624179999999569], [5.9630129999999895, 5.963121000000001], [6.13302699999997, 6.1331669999999576], [6.1337409999999863, 6.1338419999999587], [6.8062519999999722, 6.8063849999999775], [6.8064339999999675, 6.8065129999999954]]}, \"hwrng-160\": {\"1\": [[0.086146999999982654, 0.086171999999976379], [0.086751999999989948, 0.086762999999962176], [0.15355399999998554, 0.15358799999995654], [0.15563399999996363, 0.15564599999999018], [0.1669289999999819, 0.16696199999995542], [0.16939299999995683, 0.16941299999996318], [0.17756099999996877, 0.17759599999999409], [0.17835700000000543, 0.17837900000000673], [0.18616499999995995, 0.18617799999998397], [0.18668499999995447, 0.18669599999998354], [0.19831499999997959, 0.19838799999996581], [0.26548800000000483, 0.26550499999996191], [0.26727799999997615, 0.26729299999999512], [0.27774399999998423, 0.27777699999995775], [6.8532969999999978, 6.8533309999999688], [6.9003139999999803, 6.9003500000000031], [6.9570640000000026, 6.9570949999999812], [6.9590619999999603, 6.9590759999999818], [6.9727249999999685, 6.9727509999999597], [6.9733009999999922, 6.9733139999999594], [6.9808469999999829, 6.9808679999999868], [6.98136599999998, 6.9815570000000093], [7.0409740000000056, 7.0410059999999817], [7.0430670000000077, 7.0430809999999724], [7.0545579999999859, 7.0545940000000087], [7.0571669999999926, 7.057185000000004]], \"2\": [[0.061668999999994867, 0.061705999999958294], [0.064145999999993819, 0.06421100000000024], [0.076113999999961379, 0.076163000000008196], [0.076948999999956413, 0.07702199999999948], [6.8541060000000016, 6.8541189999999688], [6.8670599999999808, 6.8671259999999847], [6.8677629999999681, 6.8678390000000036], [6.8780390000000011, 6.8781869999999685], [6.8787159999999972, 6.8787679999999796], [6.8870269999999891, 6.8870979999999804], [6.8872639999999592, 6.8872729999999933]], \"3\": [[7.0649109999999951, 7.0649229999999648], [7.0654010000000085, 7.0654059999999959], [7.072593999999981, 7.0726089999999999]]}, \"sh-4978\": {\"1\": [[6.9570949999999812, 6.9571689999999649], [6.9582209999999804, 6.9584199999999896], [6.958549000000005, 6.9590619999999603], [6.9590759999999818, 6.9615799999999695], [6.9616479999999683, 6.96820299999996], [6.9699579999999628, 6.9709289999999555], [6.9901719999999727, 6.9915699999999674]]}, \"sh-4975\": {\"1\": [[6.8651350000000093, 6.8716409999999541], [6.8782079999999723, 6.8787769999999568]], \"2\": [[6.8788250000000062, 6.8852469999999926], [6.9041909999999689, 6.9053659999999581]]}, \"sh-4974\": {\"1\": [[6.8717149999999947, 6.8732519999999795], [6.8734189999999558, 6.8734289999999874]]}, \"sh-4976\": {\"1\": [[6.8850999999999658, 6.8853449999999725], [6.8853599999999915, 6.8854199999999537], [6.8854319999999802, 6.8854599999999664], [6.885469999999998, 6.8882249999999772]]}, \"sh-4972\": {\"1\": [[6.8533309999999688, 6.8546499999999924], [6.8548569999999813, 6.8549399999999991], [6.8549549999999613, 6.8549899999999866], [6.8549989999999639, 6.8550219999999626], [6.8550290000000018, 6.8550520000000006], [6.8550589999999829, 6.8550849999999741], [6.8550919999999564, 6.858255999999983], [6.858306999999968, 6.8616999999999848], [6.8619559999999638, 6.8626649999999927], [6.8628539999999703, 6.8648759999999811], [6.8649449999999774, 6.8651350000000093], [6.8732519999999795, 6.8734189999999558], [6.9053859999999645, 6.9069789999999784]]}, \"kworker/1:3-334\": {\"1\": [[0.15216999999995551, 0.15219199999995681], [0.3614769999999794, 0.36149599999998827], [0.6113990000000058, 0.61142200000000457], [1.3647339999999986, 1.3647639999999797], [1.5747289999999907, 1.5747489999999971], [2.5780899999999747, 2.5781079999999861], [2.7880879999999593, 2.7881039999999757], [3.6114000000000033, 3.611424999999997], [3.7913939999999684, 3.7914339999999811], [4.0013999999999896, 4.0014319999999657], [5.0047609999999736, 5.0047809999999799], [5.2147469999999885, 5.2147589999999582], [5.3014109999999732, 5.3014479999999935], [5.3018819999999778, 5.3021329999999693], [5.30229700000001, 5.3023409999999558], [5.3024489999999673, 5.3024879999999825], [5.302613000000008, 5.3026519999999664], [5.3027969999999982, 5.3028349999999591], [5.3029809999999884, 5.3030210000000011], [5.3031619999999862, 5.3032010000000014], [5.3033449999999789, 5.3034049999999979], [5.3035259999999766, 5.3036239999999566], [5.6113959999999565, 5.6114169999999604], [6.8053629999999998, 6.8054169999999772], [6.9069789999999784, 6.9070360000000051]]}, \"jbd2/sda35-8-529\": {\"1\": [[5.2850159999999846, 5.2852320000000077], [5.2921240000000012, 5.2923389999999699], [5.2932109999999852, 5.2933039999999778]]}, \"su-4958\": {\"1\": [[0.083016999999983909, 0.083548000000007505], [0.083571000000006279, 0.083596000000000004], [0.083604999999977281, 0.083625999999981104], [0.083633999999960906, 0.083657999999957156], [0.083665999999993801, 0.083688999999992575], [0.083695999999974902, 0.084840999999983069], [0.084876000000008389, 0.084898000000009688], [0.08490799999998444, 0.086146999999982654]]}, \"kworker/1:0-13\": {\"1\": [[0.0029869999999618813, 0.0030409999999960746], [0.096451999999999316, 0.096503999999981716], [0.15211899999997058, 0.15216999999995551], [0.36143599999996923, 0.3614769999999794], [1.3647639999999797, 1.3647799999999961], [1.5747489999999971, 1.5747609999999668], [1.6080549999999789, 1.6080829999999651], [1.6113959999999565, 1.6114089999999806], [2.5780599999999936, 2.5780899999999747], [2.788065999999958, 2.7880879999999593], [3.7914339999999811, 3.7914539999999874], [4.0014319999999657, 4.0014459999999872], [4.6113990000000058, 4.6114189999999553], [4.9114270000000033, 4.911564999999996], [5.0047260000000051, 5.0047609999999736], [5.2147279999999796, 5.2147469999999885]]}, \"adbd-4982\": {\"1\": [[7.0396279999999933, 7.0409740000000056]]}, \"adbd-4983\": {\"1\": [[7.0483709999999746, 7.0485199999999963]]}, \"task1-4969\": {\"1\": [[0.28281899999996085, 0.28285899999997355], [0.29474699999997256, 0.29481999999995878], [0.29522099999996954, 0.30140199999999595], [0.30806599999999662, 0.31472099999996317], [0.32139300000000048, 0.32804699999996956], [0.3347159999999576, 0.34138599999999997], [0.34804800000000569, 0.35471799999999121], [0.3615469999999732, 0.36804999999998245], [0.37471899999997049, 0.38138799999995854], [0.38804699999997183, 0.39471900000000915], [0.40138699999999972, 0.40804800000000796], [0.41471599999999853, 0.42138599999998405], [0.42804699999999229, 0.43471699999997782], [0.44138599999996586, 0.4480469999999741], [0.45471699999995963, 0.46140599999995402], [0.46804799999995339, 0.49139499999995451], [0.49144300000000385, 0.50138499999997066], [0.50142799999997578, 0.51138399999996409], [0.51146899999997686, 0.51805099999995718], [0.52805000000000746, 0.53139099999998507], [0.53143399999999019, 0.53804700000000594], [0.54804899999999179, 0.55139099999996688], [0.55143299999997453, 0.55804599999999027], [0.56190399999996998, 0.56805099999996855], [0.57804799999996703, 0.58138999999999896], [0.58142399999996996, 0.59138599999999997], [0.59142900000000509, 0.60138699999998835], [0.60142799999999852, 0.6113990000000058], [0.61805399999997235, 0.62139099999996006], [0.62143599999996013, 0.6280479999999784], [0.63804999999996426, 0.64139099999999871], [0.64143500000000131, 0.64804699999996274], [0.65805299999999534, 0.66140599999999949], [0.66174399999999878, 0.66805699999997614], [0.67804999999998472, 0.68139199999995981], [0.68143599999996241, 0.68804799999998068], [0.69805099999996401, 0.70139399999999341], [0.70143699999999853, 0.70228199999996832], [0.70233500000000504, 0.70804699999996501], [0.71805100000000266, 0.7213949999999727], [0.72143799999997782, 0.72805099999999356], [0.73805099999998447, 0.74139199999996208], [0.7414349999999672, 0.748045999999988], [0.7580499999999688, 0.76140899999995781], [0.76173399999998992, 0.76804999999995971], [0.77143799999998919, 0.77804699999995819], [0.78804999999999836, 0.79139199999997345], [0.79143299999998362, 0.79804599999999937], [0.80805199999997512, 0.81139500000000453], [0.81146799999999075, 0.81804599999998118], [0.82805099999995946, 0.83139099999999644], [0.83143300000000409, 0.83804599999996299], [0.84805000000000064, 0.85139499999996815], [0.8514369999999758, 0.85804699999999912], [0.86804999999998245, 0.87139099999996006], [0.8780519999999683, 0.88139100000000781], [0.88143299999995861, 0.88804799999996931], [0.89805200000000696, 0.90139899999996942], [0.90144599999996444, 0.90804800000000796], [0.91805099999999129, 0.9213919999999689], [0.92143499999997402, 0.92804699999999229], [0.9380509999999731, 0.94139400000000251], [0.94143900000000258, 0.9480469999999741], [0.95804999999995744, 0.96140399999995907], [0.96169799999995575, 0.96805000000000518]], \"2\": [[1.4013759999999706, 1.4080419999999663], [1.4147099999999568, 1.421374999999955], [1.4280410000000074, 1.434708999999998], [1.4413749999999936, 1.4480409999999893], [1.4547109999999748, 1.4613749999999754], [1.468044999999961, 1.4747089999999616], [1.4813749999999573, 1.4880410000000097], [1.4947090000000003, 1.5013739999999984], [1.5080409999999915, 1.5147089999999821], [1.5213749999999777, 1.5280409999999733], [1.5347089999999639, 1.5413739999999621], [1.5480409999999551, 1.5547090000000026], [1.5603759999999625, 1.5680419999999913], [1.5747099999999818, 1.58137499999998], [1.5880409999999756, 1.5947089999999662], [1.6013749999999618, 2.0658889999999701], [2.0659329999999727, 2.5613779999999906], [2.5614139999999566, 2.6468279999999709], [2.6471789999999942, 3.3913759999999797], [3.3980409999999779, 3.404707999999971], [3.4113739999999666, 3.4180429999999546], [3.4247080000000096, 3.4313740000000053], [3.4380409999999983, 3.4447079999999914], [3.451375999999982, 3.4580409999999802], [3.4647089999999707, 3.5513760000000048], [3.5580410000000029, 3.5624209999999721], [3.5680409999999938, 3.5747079999999869], [3.5813739999999825, 3.5880409999999756], [3.5947079999999687, 3.6013739999999643], [3.6080409999999574, 3.6147119999999973], [3.621374000000003, 3.6280409999999961], [3.6347079999999892, 3.6413739999999848], [3.6480409999999779, 3.654707999999971], [3.6613749999999641, 4.0766269999999736], [4.0830249999999637, 4.1653670000000034], [4.1830229999999915, 4.2113779999999679], [4.2180419999999685, 4.2720479999999839], [4.2830229999999574, 4.3653589999999554], [4.3830229999999801, 4.4653569999999831], [4.4830230000000029, 4.5634979999999814], [4.5635560000000055, 4.5654329999999845], [4.5830229999999688, 4.6013759999999593], [4.6080409999999574, 4.6720429999999737], [4.6830229999999915, 4.7653569999999945], [4.7830229999999574, 4.8653589999999554], [4.8830229999999801, 4.9653729999999996], [4.9830230000000029, 4.9913760000000025], [4.9980410000000006, 5.0670649999999569], [5.0671120000000087, 5.0720979999999827], [5.0830229999999688, 5.1653539999999794], [5.1830229999999915, 5.2653669999999693], [5.2830219999999599, 5.2832859999999755]], \"3\": [[0.97147499999999809, 1.3013779999999997], [1.3080420000000004, 1.3147089999999935], [1.3213749999999891, 1.3280409999999847], [1.3347089999999753, 1.3413749999999709], [1.3480409999999665, 1.3547089999999571], [1.361376000000007, 1.3680439999999976], [1.3747089999999957, 1.3813749999999914], [1.388040999999987, 1.3947089999999776]]}, \"msm_watchdog-32\": {\"1\": [[6.1915009999999597, 6.1915799999999876]]}, \"kworker/u8:8-924\": {\"0\": [[2.6465819999999667, 2.6466389999999933], [5.2896609999999669, 5.2897159999999985], [5.2898189999999659, 5.2898319999999899], [5.2914339999999811, 5.2915349999999535], [5.2916349999999852, 5.2916439999999625], [5.2916829999999777, 5.29168999999996], [5.2918510000000083, 5.2918579999999906], [5.2921670000000063, 5.2921759999999836], [5.2923139999999762, 5.2923529999999914], [5.3314409999999839, 5.3314519999999561], [5.3314599999999928, 5.3315149999999676]]}, \"sh-4963\": {\"1\": [[0.18514699999997219, 0.18616499999995995]]}, \"sh-4962\": {\"1\": [[0.16533299999997553, 0.1669289999999819], [0.17759599999999409, 0.17835700000000543], [0.17837900000000673, 0.17868499999997312]], \"2\": [[0.20214799999996558, 0.2031289999999899]], \"3\": [[0.17872499999998581, 0.17880800000000363], [0.17883000000000493, 0.17886999999996078], [0.17887799999999743, 0.17891099999997095], [0.17891699999995581, 0.18279100000000881], [0.18282799999997223, 0.18527299999999514]]}, \"shutils-4963\": {\"1\": [[0.18617799999998397, 0.18668499999995447], [0.18669599999998354, 0.19616999999999507], [0.19916999999998097, 0.19923599999998487], [0.19934499999999389, 0.19935799999996107], [0.19942299999996749, 0.19943399999999656], [0.19950399999999036, 0.19951599999996006], [0.19972300000000587, 0.19973499999997557], [0.19974899999999707, 0.19980999999995674], [0.19988499999999476, 0.20195300000000316]]}, \"sh-4961\": {\"1\": [[0.16696199999995542, 0.16856699999999591], [0.17499399999996967, 0.17500899999998865]]}, \"sh-4967\": {\"1\": [[0.27624099999997043, 0.27774399999998423]]}, \"shutils-4964\": {\"1\": [[0.19616999999999507, 0.19831499999997959]]}, \"sh-4965\": {\"1\": [[0.26550499999996191, 0.26557900000000245], [0.26648299999999381, 0.26665099999996755], [0.26677200000000312, 0.26727799999997615], [0.26729299999999512, 0.27485799999999472], [0.27504699999997229, 0.27624099999997043], [6.8037929999999847, 6.8053629999999998]]}, \"su-4962\": {\"1\": [[0.16875099999998611, 0.16939299999995683], [0.16941299999996318, 0.17492899999996325], [0.17500899999998865, 0.17756099999996877]]}, \"cnd-627\": {\"2\": [[0.5591389999999592, 0.55931699999996454], [1.5603169999999977, 1.5603759999999625], [2.0658889999999701, 2.0659329999999727], [2.5613779999999906, 2.5614139999999566], [3.5624209999999721, 3.5624899999999684], [4.5634979999999814, 4.5635560000000055], [5.0670649999999569, 5.0671120000000087], [5.5646179999999958, 5.5647229999999581]], \"3\": [[6.565781999999956, 6.5659099999999739]]}, \"shutils-4977\": {\"1\": [[6.8977529999999661, 6.8984539999999583], [6.8984869999999887, 6.9003139999999803]]}, \"su-4975\": {\"1\": [[6.8734289999999874, 6.8781669999999622]]}, \"trace-cmd-4954\": {\"1\": [[0.0033960000000092805, 0.003421000000003005]]}, \"kworker/u8:1-4684\": {\"0\": [[0.011607999999966978, 0.011859999999956017], [0.012047999999992953, 0.012133000000005723], [0.057748000000003685, 0.058227999999985514], [0.05826099999995904, 0.05841099999997823], [0.061666000000002441, 0.061948999999970056], [0.062233999999989464, 0.06228899999996429], [0.065123999999968873, 0.065289000000007036], [0.075180999999986398, 0.075319999999976517], [0.084891999999967993, 0.084998999999982061], [0.095118999999954212, 0.095255000000008749], [1.1614449999999579, 1.1617870000000039], [1.1714249999999993, 1.1714910000000032], [1.1814210000000003, 1.1814829999999574], [1.1914160000000038, 1.1914850000000001], [1.2014179999999897, 1.201484999999991], [1.2114169999999831, 1.2115200000000073], [1.221414999999979, 1.2214960000000019], [1.2314119999999775, 1.2314769999999839], [1.241410999999971, 1.2414779999999723], [1.2514129999999568, 1.2514759999999683], [1.2614130000000046, 1.2618369999999572], [1.2714980000000082, 1.2715609999999629], [1.2813889999999901, 1.2814439999999649], [1.2913879999999835, 1.2914460000000076], [1.3013879999999745, 1.3014450000000011], [1.3113879999999654, 1.3114759999999706], [1.3213879999999563, 1.3214479999999753], [1.331388000000004, 1.3314459999999713], [1.3413869999999974, 1.3414439999999672], [1.3513859999999909, 1.3514449999999556], [1.3614019999999982, 1.3617119999999545], [1.3713919999999575, 1.3714489999999842], [1.3813859999999636, 1.3814419999999927], [1.3913870000000088, 1.3914429999999811], [1.4013869999999997, 1.4014419999999745], [1.4113879999999881, 1.4114720000000034], [1.4213859999999841, 1.4214409999999589], [1.431385999999975, 1.4314400000000091], [1.4413859999999659, 1.4414409999999975], [1.4513869999999542, 1.4514419999999859], [1.4613999999999692, 1.4616770000000088], [1.4713879999999904, 1.4714449999999601], [1.4813869999999838, 1.4814409999999612], [1.4913859999999772, 1.4914420000000064], [1.5013869999999656, 1.5014409999999998], [1.511385999999959, 1.5114689999999769], [1.5213860000000068, 1.521443999999974], [1.5313859999999977, 1.531439999999975], [1.5413859999999886, 1.5414409999999634], [1.5513859999999795, 1.5514399999999569], [1.5613969999999995, 1.5616519999999809], [1.5713910000000055, 1.5714459999999804], [1.5813870000000065, 1.5814429999999788], [1.591386, 1.5914399999999773], [1.6013869999999883, 1.6014409999999657], [1.6113990000000058, 1.6114849999999592], [1.6213899999999626, 1.6214489999999842], [1.631388999999956, 1.6314429999999902], [1.6413909999999987, 1.6414449999999761], [1.6513909999999896, 1.651444999999967], [1.6614009999999553, 1.661692999999957], [1.6713949999999613, 1.671449999999993], [1.6813889999999674, 1.6814430000000016], [1.6913909999999532, 1.6914449999999874], [1.701389000000006, 1.7014429999999834], [1.7113929999999868, 1.7114779999999996], [1.7213889999999878, 1.7214429999999652], [1.7313899999999762, 1.7314439999999536], [1.7413889999999697, 1.7414430000000038], [1.7513909999999555, 1.7514449999999897], [1.7613989999999831, 1.7616739999999709], [1.771396999999979, 1.7714550000000031], [1.7813889999999901, 1.78144199999997], [1.791390999999976, 1.7914460000000076], [1.8013889999999719, 1.8014420000000086], [1.8113889999999628, 1.8114709999999832], [1.8213889999999537, 1.8214429999999879], [1.8313909999999964, 1.8314449999999738], [1.8413889999999924, 1.8414429999999697], [1.8513899999999808, 1.8514429999999606], [1.8613980000000083, 1.861665999999957], [1.8713940000000093, 1.8714499999999816], [1.881388999999956, 1.8814429999999902], [1.8913900000000012, 1.8914429999999811], [1.9013889999999947, 1.9014419999999745], [1.911389999999983, 1.9114710000000059], [1.9213889999999765, 1.9214450000000056], [1.9313899999999649, 1.9314449999999965], [1.9413889999999583, 1.94144399999999], [1.951391000000001, 1.9514449999999783], [1.9613969999999767, 1.9616619999999898], [1.9713929999999777, 1.9714469999999551], [1.9813889999999788, 1.9814429999999561], [1.9913929999999596, 1.9914469999999937], [2.0013889999999606, 2.0014429999999948], [2.0113890000000083, 2.0114719999999693], [2.0213889999999992, 2.0214429999999766], [2.0313909999999851, 2.0314449999999624], [2.041388999999981, 2.0414419999999609], [2.0513889999999719, 2.0514440000000036], [2.0613969999999995, 2.0616529999999784], [2.071393999999998, 2.0714489999999728], [2.0813890000000015, 2.0814439999999763], [2.0913899999999899, 2.0914429999999697], [2.1013889999999833, 2.1014460000000099], [2.1113899999999717, 2.111471999999992], [2.1213889999999651, 2.1214429999999993], [2.1313899999999535, 2.1314439999999877], [2.1413890000000038, 2.1414429999999811], [2.1513909999999896, 2.1514439999999695], [2.1613979999999628, 2.1616579999999885], [2.1713929999999664, 2.171449999999993], [2.1813889999999674, 2.1814439999999991], [2.1914229999999861, 2.1914879999999926], [2.201389000000006, 2.2014429999999834], [2.2113909999999919, 2.211482999999987], [2.2213929999999777, 2.2214549999999917], [2.2313889999999788, 2.2314450000000079], [2.2413869999999747, 2.2414440000000013], [2.2513879999999631, 2.2514429999999948], [2.261402999999973, 2.2617879999999673], [2.2713949999999841, 2.2714499999999589], [2.2813869999999952, 2.28144199999997], [2.2913879999999835, 2.2914429999999584], [2.301386999999977, 2.3014420000000086], [2.3113899999999603, 2.3114709999999832], [2.3213869999999588, 2.3214439999999854], [2.3313890000000015, 2.3314419999999814], [2.3413879999999949, 2.3414439999999672], [2.3513889999999833, 2.3514429999999606], [2.3613990000000058, 2.3616599999999721], [2.3713919999999575, 2.3714489999999842], [2.3813869999999611, 2.3814439999999877], [2.3913890000000038, 2.3914439999999786], [2.4013869999999997, 2.401442999999972], [2.4113889999999856, 2.4114730000000009], [2.421389999999974, 2.4214460000000031], [2.4313889999999674, 2.4314449999999965], [2.4413879999999608, 2.4414449999999874], [2.4513880000000086, 2.4514429999999834], [2.4613969999999767, 2.4616529999999557], [2.4713909999999828, 2.4714490000000069], [2.4813869999999838, 2.4814409999999612], [2.4913879999999722, 2.4914410000000089], [2.5013869999999656, 2.5014419999999973], [2.5113900000000058, 2.5114709999999718], [2.5213870000000043, 2.521443999999974], [2.5313879999999926, 2.53144199999997], [2.5413869999999861, 2.5414409999999634], [2.5513899999999694, 2.5514440000000036], [2.561397999999997, 2.5616489999999885], [2.5713889999999537, 2.5714459999999804], [2.5813919999999939, 2.5814489999999637], [2.5913869999999974, 2.5914419999999723], [2.6013889999999833, 2.6014439999999581], [2.6113949999999591, 2.6114789999999743], [2.6213889999999651, 2.6214420000000018], [2.6313869999999611, 2.6314409999999953], [2.6413909999999987, 2.6414439999999786], [2.6465249999999969, 2.6465819999999667], [2.6466389999999933, 2.6466859999999883], [2.6514029999999593, 2.6514760000000024], [2.6614059999999995, 2.6618249999999648], [2.6713919999999689, 2.671447999999998], [2.6813869999999724, 2.6814410000000066], [2.6913889999999583, 2.6914429999999925], [2.701389000000006, 2.7014449999999783], [2.7113919999999894, 2.7114770000000021], [2.7213869999999929, 2.7214439999999627], [2.7313889999999788, 2.7314439999999536], [2.7413869999999747, 2.7414430000000038], [2.7513879999999631, 2.7514429999999948], [2.7613979999999856, 2.7616820000000075], [2.7713949999999841, 2.7714530000000082], [2.7813939999999775, 2.7814490000000092], [2.7913929999999709, 2.7914470000000051], [2.801386999999977, 2.8014459999999985], [2.8113899999999603, 2.8114719999999807], [2.8213869999999588, 2.821440999999993], [2.831388000000004, 2.8314409999999839], [2.8413879999999949, 2.8414429999999697], [2.8513889999999833, 2.8514419999999632], [2.8614000000000033, 2.8616819999999734], [2.8713909999999601, 2.8714469999999892], [2.881388999999956, 2.8814459999999826], [2.8913890000000038, 2.8914439999999786], [2.9013869999999997, 2.901442999999972], [2.9113889999999856, 2.9114720000000034], [2.9213869999999815, 2.9214429999999538], [2.9313889999999674, 2.9314439999999991], [2.9413879999999608, 2.9414449999999874], [2.9513880000000086, 2.9514429999999834], [2.9613969999999767, 2.9616709999999671], [2.9713929999999777, 2.9714480000000094], [2.9813869999999838, 2.9814429999999561], [2.9913879999999722, 2.9914430000000038], [3.0013869999999656, 3.0014429999999948], [3.0113900000000058, 3.0114719999999693], [3.0213870000000043, 3.0214429999999766], [3.0313879999999926, 3.0314409999999725], [3.0413869999999861, 3.0414419999999609], [3.0513889999999719, 3.0514420000000086], [3.0613969999999995, 3.0616589999999633], [3.0713900000000081, 3.0714459999999804], [3.081388000000004, 3.0814419999999814], [3.0913889999999924, 3.0914429999999697], [3.1013869999999883, 3.1014429999999606], [3.1113899999999717, 3.1114729999999895], [3.1213869999999702, 3.1214410000000044], [3.131388999999956, 3.1314429999999902], [3.1413870000000088, 3.1414409999999862], [3.1513879999999972, 3.1514409999999771], [3.1613969999999654, 3.1616619999999784], [3.1713929999999664, 3.1714470000000006], [3.1813869999999724, 3.1814420000000041], [3.1913879999999608, 3.191441999999995], [3.2013880000000086, 3.2014429999999834], [3.2113919999999894, 3.2114760000000047], [3.2213939999999752, 3.2214559999999892], [3.2313879999999813, 3.2314439999999536], [3.2413889999999697, 3.2414440000000013], [3.2513869999999656, 3.2514409999999998], [3.2614049999999679, 3.2617510000000038], [3.2713909999999942, 3.271445999999969], [3.2813869999999952, 3.2814439999999649], [3.2913929999999709, 3.2914490000000001], [3.3013889999999719, 3.3014450000000011], [3.3113889999999628, 3.3114709999999832], [3.3213889999999537, 3.3214449999999829], [3.331389999999999, 3.3314439999999763], [3.3413889999999924, 3.3414439999999672], [3.3513889999999833, 3.3514439999999581], [3.3613980000000083, 3.3616680000000088], [3.3713879999999676, 3.3714449999999943], [3.3813849999999661, 3.3814399999999978], [3.3913880000000063, 3.3914439999999786], [3.4013869999999997, 3.4014469999999619], [3.4113869999999906, 3.4114689999999541], [3.4213869999999815, 3.4214450000000056], [3.4313849999999775, 3.4314420000000041], [3.4413859999999659, 3.441441999999995], [3.4513849999999593, 3.451439999999991], [3.4613969999999767, 3.4616739999999595], [3.4713899999999853, 3.4714469999999551], [3.4813859999999863, 3.4814409999999612], [3.4913849999999798, 3.4914410000000089], [3.5013859999999681, 3.5014409999999998], [3.5113869999999565, 3.5114679999999794], [3.5213860000000068, 3.5214399999999841], [3.5313850000000002, 3.5314409999999725], [3.5413859999999886, 3.5414409999999634], [3.551386999999977, 3.5514409999999543], [3.5613950000000045, 3.5616559999999708], [3.5713869999999588, 3.5714429999999879], [3.5813849999999547, 3.5814409999999839], [3.591386, 3.5914399999999773], [3.6013859999999909, 3.6014399999999682], [3.6114010000000007, 3.6114829999999642], [3.6213859999999727, 3.6214410000000044], [3.6313869999999611, 3.6314409999999953], [3.6413859999999545, 3.6414429999999811], [3.6513860000000022, 3.6514409999999771], [3.6613969999999654, 3.6616689999999608], [3.671389999999974, 3.671447999999998], [3.6813869999999724, 3.6814439999999991], [3.6913859999999659, 3.6914409999999975], [3.701389000000006, 3.7014469999999733], [3.711387000000002, 3.7114740000000097], [3.7213869999999929, 3.7214419999999677], [3.7313859999999863, 3.7314419999999586], [3.7413869999999747, 3.7414430000000038], [3.7513869999999656, 3.7514419999999973], [3.7613979999999856, 3.761669999999981], [3.7713889999999992, 3.771445999999969], [3.7813859999999977, 3.7814429999999675], [3.7913959999999634, 3.7914619999999672], [3.8013990000000035, 3.8014579999999683], [3.8113930000000096, 3.811476999999968], [3.821392000000003, 3.8214479999999753], [3.831388000000004, 3.8314439999999763], [3.8413879999999949, 3.8414439999999672], [3.8513889999999833, 3.8514429999999606], [3.8614010000000007, 3.8616889999999557], [3.8713919999999575, 3.8714489999999842], [3.881388999999956, 3.8814429999999902], [3.8913900000000012, 3.8914449999999761], [3.9013879999999972, 3.9014409999999771], [3.9113889999999856, 3.9114700000000084], [3.921387999999979, 3.9214429999999538], [3.9313889999999674, 3.9314430000000016], [3.9413879999999608, 3.941441999999995], [3.951389000000006, 3.9514439999999809], [3.9613979999999742, 3.9616550000000075], [3.9713909999999828, 3.9714459999999576], [3.9813889999999788, 3.9814429999999561], [3.9913889999999697, 3.9914440000000013], [4.0014029999999821, 4.0014679999999885], [4.0113890000000083, 4.0114699999999743], [4.0213880000000017, 4.0214449999999715], [4.0313879999999926, 4.0314429999999675], [4.041388999999981, 4.0414449999999533], [4.0513879999999745, 4.0514440000000036], [4.0613989999999944, 4.06166300000001], [4.071392000000003, 4.0714459999999804], [4.0813860000000091, 4.0814419999999814], [4.0913909999999873, 4.0914489999999546], [4.1013889999999833, 4.1014439999999581], [4.1113889999999742, 4.1114709999999945], [4.1213879999999676, 4.1214429999999993], [4.131388999999956, 4.1314429999999902], [4.1413880000000063, 4.1414419999999836], [4.1513889999999947, 4.1514419999999745], [4.1613969999999654, 4.1616669999999658], [4.171387999999979, 4.1714429999999538], [4.181385999999975, 4.1814389999999548], [4.1913899999999558, 4.1914459999999849], [4.201389000000006, 4.2014449999999783], [4.2113899999999944, 4.2114760000000047], [4.221401999999955, 4.2214669999999614], [4.2313919999999712, 4.2314480000000003], [4.2413879999999722, 4.2414440000000013], [4.2513989999999922, 4.2514549999999645], [4.2614059999999654, 4.2617369999999823], [4.2713929999999891, 4.2714479999999639], [4.2813869999999952, 4.28144199999997], [4.2913899999999785, 4.2914470000000051], [4.3013879999999745, 4.3014459999999985], [4.3113889999999628, 4.3114699999999857], [4.3213889999999537, 4.3214439999999854], [4.3313890000000015, 4.3314439999999763], [4.3413879999999949, 4.3414409999999748], [4.3513889999999833, 4.3514439999999581], [4.361396999999954, 4.361665999999957], [4.3713889999999651, 4.3714449999999943], [4.3813859999999636, 4.3814399999999978], [4.3913909999999987, 4.391446999999971], [4.4013879999999972, 4.401444999999967], [4.4113889999999856, 4.4114710000000059], [4.4213869999999815, 4.4214429999999538], [4.4313899999999649, 4.4314449999999965], [4.4413879999999608, 4.4414429999999925], [4.451389000000006, 4.4514439999999809], [4.4613989999999717, 4.4616619999999898], [4.4713879999999904, 4.4714439999999627], [4.4813849999999888, 4.4814399999999637], [4.4913919999999621, 4.4914489999999887], [4.5013879999999631, 4.5014459999999872], [4.5113890000000083, 4.5114709999999718], [4.5213880000000017, 4.5214449999999715], [4.5313889999999901, 4.5314439999999649], [4.5413879999999835, 4.5414439999999558], [4.5513889999999719, 4.5514440000000036], [4.5613969999999995, 4.5616589999999633], [4.5713879999999563, 4.5714439999999854], [4.5813849999999547, 4.5814399999999864], [4.5913909999999873, 4.5914469999999596], [4.6013889999999833, 4.6014499999999998], [4.6114010000000007, 4.6114849999999592], [4.6213899999999626, 4.6214449999999943], [4.6313899999999535, 4.6314449999999852], [4.6413880000000063, 4.6414429999999811], [4.6513879999999972, 4.6514419999999745], [4.6613989999999603, 4.6616819999999848], [4.6713939999999639, 4.671449999999993], [4.6813869999999724, 4.6814410000000066], [4.6913899999999558, 4.6914459999999849], [4.701389000000006, 4.7014459999999758], [4.7113909999999919, 4.7114760000000047], [4.7213879999999904, 4.7214449999999601], [4.7313889999999788, 4.7314439999999536], [4.7413879999999722, 4.7414440000000013], [4.7513889999999606, 4.7514439999999922], [4.7613999999999805, 4.7616739999999709], [4.7713889999999992, 4.771443999999974], [4.7813859999999977, 4.7814389999999776], [4.7913919999999735, 4.7914480000000026], [4.8013879999999745, 4.8014450000000011], [4.8113879999999654, 4.8114699999999857], [4.8213879999999563, 4.8214429999999879], [4.8313890000000015, 4.8314469999999687], [4.8413879999999949, 4.8414429999999697], [4.8513889999999833, 4.8514419999999632], [4.861396999999954, 4.8616669999999544], [4.8713869999999702, 4.8714410000000044], [4.8813849999999661, 4.8814390000000003], [4.888056000000006, 4.8880819999999972], [4.8881259999999997, 4.888136999999972], [4.8914989999999534, 4.8916350000000079], [4.9014159999999833, 4.9015169999999557], [4.911389999999983, 4.9114940000000047], [4.9213929999999664, 4.9214509999999905], [4.9313869999999724, 4.9314420000000041], [4.9413879999999608, 4.9414429999999925], [4.9513880000000086, 4.9514459999999758], [4.9614129999999932, 4.9619769999999903], [4.9713929999999777, 4.9714480000000094], [4.9813859999999863, 4.9814399999999637], [4.9913889999999697, 4.9914459999999963], [5.0013940000000048, 5.0014489999999796], [5.0113929999999982, 5.0114820000000009], [5.0213899999999967, 5.0214469999999665], [5.0313889999999901, 5.0314439999999649], [5.0413899999999785, 5.0414439999999558], [5.0513889999999719, 5.0514430000000061], [5.0614029999999843, 5.0617090000000076], [5.071392000000003, 5.0714469999999778], [5.0813870000000065, 5.0814409999999839], [5.0913909999999873, 5.0914449999999647], [5.1013879999999858, 5.1014449999999556], [5.1113889999999742, 5.1114699999999971], [5.1213879999999676, 5.1214429999999993], [5.131388999999956, 5.1314429999999902], [5.1413880000000063, 5.1414419999999836], [5.1513899999999921, 5.1514439999999695], [5.1614009999999553, 5.1616750000000025], [5.171389999999974, 5.1714460000000031], [5.181385999999975, 5.1814430000000016], [5.1913909999999532, 5.1914449999999874], [5.2013880000000086, 5.2014429999999834], [5.2113889999999969, 5.2114729999999554], [5.2213979999999651, 5.2214579999999842], [5.2313889999999788, 5.2314450000000079], [5.2413879999999722, 5.2414430000000038], [5.2513879999999631, 5.2514419999999973], [5.261402999999973, 5.2617490000000089], [5.2713899999999967, 5.2714469999999665], [5.2813850000000002, 5.2814389999999776], [5.2847309999999652, 5.285145], [5.2865759999999682, 5.2866549999999961], [5.2921759999999836, 5.2923139999999762], [5.2923639999999637, 5.2926329999999666], [5.2929169999999885, 5.2929269999999633], [5.292933000000005, 5.2929469999999696], [5.293218999999965, 5.2932369999999764], [5.3014859999999544, 5.3015780000000063], [5.3114089999999692, 5.3115300000000047], [5.3213889999999537, 5.3214459999999804], [5.3313860000000091, 5.3314149999999927], [5.3314519999999561, 5.3314599999999928], [5.3315149999999676, 5.3315240000000017], [5.331530999999984, 5.3315399999999613], [5.3413869999999974, 5.3414419999999723], [5.3513869999999883, 5.3514399999999682], [5.361409999999978, 5.3619889999999941], [5.3713909999999601, 5.3714479999999867], [5.3813849999999661, 5.3814390000000003], [5.391384999999957, 5.3914389999999912], [5.4013850000000048, 5.4014389999999821], [5.4113879999999881, 5.4114720000000034], [5.4213849999999866, 5.4214399999999614], [5.4313849999999775, 5.4314389999999548], [5.4413879999999608, 5.4414429999999925], [5.4513869999999542, 5.4514419999999859], [5.4613989999999717, 5.4616709999999671], [5.4713879999999904, 5.4714439999999627], [5.4813849999999888, 5.4814379999999687], [5.4913849999999798, 5.4914389999999571], [5.5013849999999707, 5.5014380000000074], [5.511385999999959, 5.5114689999999769], [5.5213880000000017, 5.5214419999999791], [5.5313850000000002, 5.5314389999999776], [5.5413849999999911, 5.5414389999999685], [5.551384999999982, 5.5514379999999619], [5.561397999999997, 5.5616589999999633], [5.5713910000000055, 5.5714459999999804], [5.5813849999999547, 5.5814389999999889], [5.5913850000000025, 5.5914379999999824], [5.6013849999999934, 5.6014379999999733], [5.6113990000000058, 5.6114849999999592], [5.6213849999999752, 5.6214390000000094], [5.6313879999999585, 5.6314409999999953], [5.641384999999957, 5.6414379999999937], [5.6513909999999896, 5.6514439999999695], [5.6613989999999603, 5.6616649999999709], [5.671387999999979, 5.6714429999999538], [5.6813849999999775, 5.6814400000000091], [5.6913849999999684, 5.6914390000000026], [5.7013869999999542, 5.7014409999999884], [5.7113879999999995, 5.7114729999999554], [5.7213849999999979, 5.7214389999999753], [5.7313849999999888, 5.7314379999999687], [5.7413869999999747, 5.7414410000000089], [5.7513859999999681, 5.7514400000000023], [5.7613969999999881, 5.7616799999999557], [5.7713899999999967, 5.771445999999969], [5.7813850000000002, 5.7814389999999776], [5.7913849999999911, 5.791437999999971], [5.801384999999982, 5.8014389999999594], [5.8113859999999704, 5.8114679999999908], [5.8213849999999638, 5.8214399999999955], [5.8313849999999547, 5.8314379999999915], [5.8413850000000025, 5.8414389999999798], [5.8513849999999934, 5.8514379999999733], [5.8613949999999591, 5.8616499999999974], [5.8713899999999626, 5.8714449999999943], [5.8813849999999661, 5.8814399999999978], [5.8913859999999545, 5.8914389999999912], [5.9013860000000022, 5.9014409999999771], [5.9113859999999931, 5.9114659999999617], [5.9213849999999866, 5.9214379999999665], [5.9313849999999775, 5.9314379999999574], [5.9413859999999659, 5.9414400000000001], [5.9513849999999593, 5.951437999999996], [5.9613939999999843, 5.961640999999986], [5.9713989999999626, 5.9714619999999741], [5.9813969999999586, 5.9814450000000079], [5.9913879999999722, 5.9914309999999773], [6.0013869999999656, 6.0014279999999758], [6.011387999999954, 6.0114609999999971], [6.0213870000000043, 6.0214289999999551], [6.0313899999999876, 6.0314319999999952], [6.041388999999981, 6.0414309999999887], [6.0513859999999795, 6.0514279999999872], [6.0614099999999667, 6.0617449999999735], [6.0713900000000081, 6.0714319999999589], [6.0813860000000091, 6.0814279999999599], [6.091386, 6.0914280000000076], [6.1013869999999883, 6.1014279999999985], [6.1113869999999793, 6.1114559999999756], [6.1213879999999676, 6.1214299999999753], [6.1313899999999535, 6.1314319999999611], [6.1413959999999861, 6.1414419999999836], [6.1513889999999947, 6.1514189999999758], [6.1614009999999553, 6.1616980000000012], [6.1713919999999689, 6.1714210000000094], [6.181385999999975, 6.1814159999999561], [6.1913879999999608, 6.1914160000000038], [6.201389000000006, 6.2014259999999695], [6.2113899999999944, 6.2114530000000059], [6.2213939999999752, 6.2214280000000031], [6.2313929999999687, 6.231425999999999], [6.2413859999999772, 6.2414159999999583], [6.2513879999999631, 6.2514170000000036], [6.2613989999999831, 6.2617389999999773], [6.2713899999999967, 6.2714199999999778], [6.2813869999999952, 6.2814189999999712], [6.2914279999999962, 6.2914690000000064], [6.3014239999999972, 6.3014599999999632], [6.3114180000000033, 6.3114860000000022], [6.3214189999999917, 6.3214559999999551], [6.331421999999975, 6.3314570000000003], [6.341417999999976, 6.3414530000000013], [6.3514199999999619, 6.3514539999999897], [6.3614319999999793, 6.3617489999999748], [6.3714289999999778, 6.3714659999999981], [6.3814199999999914, 6.3814539999999624], [6.3914199999999823, 6.3914529999999559], [6.4014179999999783, 6.4014520000000061], [6.4114189999999667, 6.4114809999999807], [6.4214189999999576, 6.4214519999999879], [6.4314210000000003, 6.4314559999999688], [6.4414199999999937, 6.4414539999999647], [6.4514179999999897, 6.4514539999999556], [6.4614320000000021, 6.461674999999957], [6.471429999999998, 6.4714689999999564], [6.4814179999999624, 6.4814519999999902], [6.4914169999999558, 6.4914509999999837], [6.501419999999996, 6.5014529999999695], [6.5114199999999869, 6.5114859999999908], [6.5214179999999828, 6.5214519999999538], [6.5314189999999712, 6.5314529999999991], [6.5414179999999646, 6.541450999999995], [6.5514200000000073, 6.5514529999999809], [6.5614289999999755, 6.5616769999999747], [6.5714350000000081, 6.5714739999999665], [6.5814199999999801, 6.5814550000000054], [6.5914189999999735, 6.5914520000000039], [6.6014189999999644, 6.6014529999999922], [6.6114269999999919, 6.6114890000000059], [6.6214200000000005, 6.621454999999969], [6.631418999999994, 6.6314549999999599], [6.6414189999999849, 6.6414519999999584], [6.6514189999999758, 6.6514530000000036], [6.6614329999999882, 6.661692999999957], [6.6714279999999917, 6.6714670000000069], [6.6814200000000028, 6.6814539999999738], [6.6914179999999988, 6.6914519999999698], [6.7014199999999846, 6.7014539999999556], [6.711435999999992, 6.7115190000000098], [6.7214209999999639, 6.7214579999999842], [6.7314179999999624, 6.7314519999999902], [6.7414179999999533, 6.7414529999999786], [6.7514189999999985, 6.7514529999999695], [6.7614289999999642, 6.7617569999999887], [6.7714289999999551, 6.7714659999999753], [6.7814199999999687, 6.7814539999999965], [6.7914179999999646, 6.7914519999999925], [6.8014179999999556, 6.8014529999999809], [6.8115209999999706, 6.8116229999999973], [6.8316399999999931, 6.8316689999999767], [6.849632999999983, 6.8496849999999654], [6.8584539999999947, 6.8585809999999583], [6.8619069999999738, 6.8626949999999738], [6.8630279999999857, 6.8630729999999858], [6.8685229999999819, 6.8686989999999923], [6.8782329999999661, 6.8783899999999676], [6.8882380000000012, 6.8883789999999863], [6.8983739999999898, 6.898544999999956], [6.9083180000000084, 6.9084489999999619], [6.9149620000000027, 6.915032999999994], [6.9214619999999627, 6.9215179999999918], [6.9536200000000008, 6.9536909999999921], [6.9617020000000025, 6.9622949999999832], [6.9651230000000055, 6.9652429999999868], [6.9718039999999633, 6.9719519999999875], [6.9816999999999894, 6.9818300000000022], [6.991724999999974, 6.9918869999999629], [7.0052749999999833, 7.0053449999999771], [7.0376089999999749, 7.037747999999965], [7.0451600000000099, 7.0453219999999988], [7.0550569999999766, 7.0552119999999832]], \"1\": [[0.49139499999995451, 0.49144300000000385], [0.50138499999997066, 0.50142799999997578], [0.51138399999996409, 0.51146899999997686], [0.52139199999999164, 0.52143699999999171], [0.53139099999998507, 0.53143399999999019], [0.54139199999997345, 0.54143499999997857], [0.55139099999996688, 0.55143299999997453], [0.56143099999997048, 0.56190399999996998], [0.57139599999999291, 0.57143899999999803], [0.58138999999999896, 0.58142399999996996], [0.59138599999999997, 0.59142900000000509], [0.60138699999998835, 0.60142799999999852], [0.61142200000000457, 0.61149699999998575], [0.62139099999996006, 0.62143599999996013], [0.63139100000000781, 0.63143099999996366], [0.64139099999999871, 0.64143500000000131], [0.65139199999998709, 0.65143499999999221], [0.66143499999998312, 0.66174399999999878], [0.67139499999996133, 0.67144500000000562], [0.68139199999995981, 0.68143599999996241], [0.69139400000000251, 0.69143599999995331], [0.70139399999999341, 0.70143699999999853], [0.71139699999997674, 0.71147099999996044], [0.7213949999999727, 0.72143799999997782], [0.73139199999997118, 0.7314349999999763], [0.74139199999996208, 0.7414349999999672], [0.75139200000000983, 0.75143199999996568], [0.76143600000000333, 0.76173399999998992], [0.77139499999998407, 0.77143799999998919], [0.78139099999998507, 0.78143499999998767], [0.79139199999997345, 0.79143299999998362], [0.80139700000000857, 0.80144099999995433], [0.81139500000000453, 0.81146799999999075], [0.82139200000000301, 0.82143600000000561], [0.83139099999999644, 0.83143300000000409], [0.84139099999998734, 0.84143399999999247], [0.85139499999996815, 0.8514369999999758], [0.86143199999997933, 0.86172499999997854], [0.87139099999996006, 0.87143699999995761], [0.88139100000000781, 0.88143299999995861], [0.89139199999999619, 0.89143300000000636], [0.90139899999996942, 0.90144599999996444], [0.91139399999997295, 0.91146299999996927], [0.9213919999999689, 0.92143499999997402], [0.93139099999996233, 0.93143399999996745], [0.94139400000000251, 0.94143900000000258], [0.95139199999999846, 0.95143400000000611], [0.96142900000000964, 0.96169799999995575], [0.97139599999997017, 0.97142700000000559], [0.9813829999999939, 0.981412999999975], [0.99138799999997218, 0.9914309999999773], [1.0013950000000023, 1.0014419999999973], [1.0113900000000058, 1.0114639999999895], [1.0213919999999916, 1.0214339999999993], [1.0313889999999901, 1.0314290000000028], [1.0413899999999785, 1.0414319999999861], [1.0513919999999644, 1.0514349999999695], [1.0614329999999654, 1.0617399999999861], [1.071393999999998, 1.071438999999998], [1.0813819999999623, 1.0814229999999725], [1.0913899999999899, 1.0914339999999925], [1.1013919999999757, 1.1014319999999884], [1.1113939999999616, 1.111460999999963], [1.1213919999999575, 1.1214319999999702], [1.1313920000000053, 1.1314319999999611], [1.1413919999999962, 1.1414350000000013], [1.1513919999999871, 1.1514329999999973]], \"3\": [[0.10475700000000643, 0.10483299999998508], [0.15001200000000381, 0.15029499999997142], [0.15047199999997929, 0.15056099999998196], [0.15821699999997918, 0.1587369999999737], [0.16819099999997889, 0.16823399999998401], [0.17852999999996655, 0.17867899999998826], [0.18816199999997707, 0.18825799999996207], [0.19825900000000729, 0.19836899999995694], [0.21132000000000062, 0.21141599999998562], [0.22141099999998914, 0.22142900000000054], [0.23150299999997515, 0.23152399999997897], [0.26175100000000384, 0.26203799999996136], [0.26262499999995725, 0.26317399999999225], [0.27157399999998688, 0.27167499999995925], [0.28155099999997901, 0.28160599999995384], [0.29149300000000267, 0.29153199999996104], [0.30141499999996313, 0.3014779999999746], [0.31141299999995908, 0.3116279999999847], [0.31179699999995591, 0.31184999999999263], [0.32139300000000048, 0.32143399999995381], [0.33138999999999896, 0.33142599999996492], [0.34138599999999997, 0.34142099999996844], [0.35138799999998582, 0.3514229999999543], [0.36143199999997933, 0.3618940000000066], [0.3620199999999727, 0.36206599999997024], [0.37139299999995501, 0.37142999999997528], [0.38138699999996106, 0.38142399999998133], [0.39138599999995449, 0.39142199999997729], [0.40138600000000224, 0.40142099999997072], [0.4113879999999881, 0.41149699999999712], [0.42138599999998405, 0.42142200000000685], [0.43138599999997496, 0.43142199999999775], [0.44138599999996586, 0.44142199999998866], [0.45138800000000856, 0.45142299999997704], [0.46140399999995907, 0.46158700000000863], [0.47160299999995914, 0.4717239999999947], [0.48140599999999267, 0.48144999999999527], [7.0616190000000074, 7.0620700000000056], [7.0649229999999648, 7.0649819999999863]]}, \"rcu_sched-8\": {\"1\": [[0.20637699999997494, 0.20640299999996614], [0.20666899999997668, 0.20669199999997545], [0.20776999999998225, 0.20779499999997597], [6.8058699999999703, 6.8058839999999918], [6.8059189999999603, 6.8059389999999667], [6.8060069999999655, 6.806020999999987], [6.806069999999977, 6.8060859999999934], [6.8114569999999617, 6.811476999999968], [6.9082159999999817, 6.9082359999999881], [6.9096099999999865, 6.9096389999999701], [6.9148569999999836, 6.9148700000000076], [6.992102999999986, 6.99211600000001], [6.9921439999999961, 6.9921579999999608], [6.9923670000000016, 6.9923789999999713], [6.9927809999999795, 6.9927969999999959], [6.9981280000000083, 6.9981409999999755]], \"2\": [[0.096786000000008698, 0.096794999999985976], [0.10479299999997238, 0.10480300000000398]], \"3\": [[0.0037820000000010623, 0.00379299999997329], [0.0052599999999642932, 0.0052719999999908396], [0.0053609999999935098, 0.0053719999999657375], [0.0055029999999760548, 0.0055160000000000764], [0.0055669999999850006, 0.005576999999959753], [0.0056239999999547763, 0.0056349999999838474], [0.011450999999965461, 0.011460999999997057], [0.096631000000002132, 0.096655999999995856], [0.096699000000000979, 0.096710999999970682], [0.096750999999983378, 0.09675899999996318], [0.098106999999970412, 0.09812499999998181], [0.098155999999960386, 0.098164999999994507]]}, \"thermal-engine-694\": {\"1\": [[0.21129500000000689, 0.21156299999995554], [0.212695999999994, 0.21289899999999307], [1.2129559999999628, 1.213156999999967], [1.2142649999999549, 1.2144099999999867], [2.2144710000000032, 2.214652000000001], [2.2157579999999939, 2.215896999999984], [3.2159560000000056, 3.2161389999999983], [3.2172410000000013, 3.217378999999994], [4.217441000000008, 4.2176159999999641], [4.218721999999957, 4.2188519999999698], [5.2189109999999914, 5.2190850000000069], [5.2201909999999998, 5.2203289999999924], [6.2204479999999762, 6.2206529999999702], [6.221779999999967, 6.2219599999999673]]}}});\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": 27,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "{\n",
+      "    \"4968\": {\n",
+      "        \"residency\": 0.0, \n",
+      "        \"task_name\": \"rt-app\"\n",
+      "    }, \n",
+      "    \"4969\": {\n",
+      "        \"residency\": 0.0, \n",
+      "        \"task_name\": \"rt-app\"\n",
+      "    }, \n",
+      "    \"4970\": {\n",
+      "        \"residency\": 0.0, \n",
+      "        \"task_name\": \"rt-app\"\n",
+      "    }, \n",
+      "    \"4971\": {\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": 28,
+   "metadata": {
+    "collapsed": false
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "True"
+      ]
+     },
+     "execution_count": 28,
+     "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.6"
+  },
+  "toc": {
+   "toc_cell": false,
+   "toc_number_sections": true,
+   "toc_threshold": 6,
+   "toc_window_display": false
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}