content stringlengths 7 1.05M |
|---|
vowels = "aeiou"
#user input
word = input("Enter a word ('quit' to quit): ")
word = word.lower()
if word == 'quit':
quit()
#mainloop
while word != 'quit':
if word[0] in vowels:
word = word + "way"
#if word is one letter consonant
elif word[0] not in vowels and len(word) == 1:
word = word + 'ay'
else:
for i, ch in enumerate(word):
if ch in vowels:
word = word[i:] + word[:i] + "ay"
break
print(word)
#user input
word = input("Enter a word ('quit' to quit): ")
word = word.lower() |
class Event:
def __init__(self, event_date, event_type, machine_name, user):
self.date = event_date
self.type = event_type
self.machine = machine_name
self.user = user
|
pkgname = "python-urllib3"
pkgver = "1.26.9"
pkgrel = 0
build_style = "python_module"
hostmakedepends = ["python-setuptools"]
depends = ["python-six"]
pkgdesc = "HTTP library with thread-safe connection pooling"
maintainer = "q66 <q66@chimera-linux.org>"
license = "MIT"
url = "https://urllib3.readthedocs.io"
source = f"$(PYPI_SITE)/u/urllib3/urllib3-{pkgver}.tar.gz"
sha256 = "aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e"
# unpackaged dependency
options = ["!check", "brokenlinks"]
def post_install(self):
for f in (self.destdir / "usr/lib").glob(
"python*/site-packages/urllib3/packages/six.py"
):
f.unlink()
f.symlink_to("../../six.py")
self.install_license("LICENSE.txt")
|
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
"""
3
/ \
2 5
/ \ \
1 3 1
@问题: 在binary tree中,找到不相邻节点的最大和,比如上面的最大和是 (1+3 + 5 = 9)
@思路: 每一个节点需要记住两个值:不包含自己 和 包含自己 的最大值
- 包含自己的 res[1] = left[0] + right[0] + val
- 不包含自己 res[0] = max(left) + max(right)
"""
# 第一次尝试错了(没读懂题):因为不是逐层比较,右边的5 可以 和 左边的 (1,3) 匹配
def rob(self, root: TreeNode) -> int:
# current level and last level
if not root: return 0
dp = [0, 0]
que = deque([root])
while que:
cursum = 0
for _ in range(len(que)):
cur = que.popleft()
cursum += cur.val
if cur.left: que.append(cur.left)
if cur.right: que.append(cur.right)
dp[0], dp[1] = dp[1], max(dp[0] + cursum, dp[1])
return dp[1]
# 好像自上而下做很难,自下而上很好理解
def rob(self, root: TreeNode) -> int:
def dfs(root):
# :ret max sum
if not root:
return (0, 0)
res = [0, 0]
left = dfs(root.left)
right= dfs(root.right)
# exclude cur node: so both left and right can be included
res[0] = max(left) + max(right)
# include cur node: so neither left nor right can be included
res[1] = left[0] + right[0] + root.val
return res
return max(dfs(root))
|
#!/usr/bin/env python
# Full license can be found in License.md
# Full author list can be found in .zenodo.json file
# DOI:10.5281/zenodo.3824979
# ----------------------------------------------------------------------------
# -*- coding: utf-8 -*-
"""Methods supporting the Global Navigation Satellite System platform
"""
def acknowledgements(name):
"""Provide the acknowledgements for different GNSS instruments
Parameters
----------
name : str
Instrument name
Returns
-------
ackn : str
Acknowledgement information to provide in studies using this data
"""
ackn = {'tec': ''.join(["GPS TEC data products and access through the ",
"Madrigal distributed data system are provided to ",
"the community by the Massachusetts Institute of ",
"Technology under support from U.S. National ",
"Science Foundation grant AGS-1242204. Data for ",
"the TEC processing is provided by the following ",
"organizations: UNAVCO, Scripps Orbit and ",
"Permanent Array Center, Institut Geographique ",
"National, France, International GNSS Service, The",
" Crustal Dynamics Data Information System ",
"(CDDIS), National Geodetic Survey, Instituto ",
"Brasileiro de Geografiae Estatística, RAMSAC ",
"CORS of Instituto Geográfico Nacional del la ",
"República Agentina, Arecibo Observatory, ",
"Low-Latitude Ionospheric Sensor Network (LISN), ",
"Topcon Positioning Systems, Inc., Canadian High ",
"Arctic Ionospheric Network, Institute of Geology",
" and Geophysics, Chinese Academy of Sciences, ",
"China Meterorology Administration, Centro di ",
"Niveau des Eaux Littorales Ricerche Sismogiche, ",
"Système d’Observation du (SONEL), RENAG : ",
"REseau NAtional GPS permanent, and GeoNet—the ",
"official source of geological hazard information ",
"for New Zealand."])}
return ackn[name]
def references(name, tag):
"""Provides suggested references for the specified data set
Parameters
----------
name : str
Instrument name
tag : str
Instrument tag
Returns
-------
refs : str
Suggested Instrument reference(s)
"""
refs = {'tec':
{'vtec': "Rideout and Coster (2006) doi:10.1007/s10291-006-0029-5"}}
return refs[name][tag]
|
# -*- coding:utf-8; -*-
class SolutionV1:
def permute(self, nums):
result = []
def helper(i, nums, r):
# 1. 终止条件
if i == len(nums):
result.append(r)
return
# 2. 处理当前逻辑
newR = []
for k in set(nums) - set(r):
newR.append(r + [k])
# 3. 下探递归
for r in newR:
helper(i + 1, nums, r)
# 4. 清理当前层:当前层没有要清理的
helper(0, nums, [])
return result
class Solution:
""" 从语言层面对代码进行优化
"""
def permute(self, nums):
result = []
numsLen = len(nums)
origNums = set(nums)
def helper(i, nums, r):
if i == numsLen:
result.append(r)
return
for k in origNums - set(r):
helper(i + 1, nums, r + [k])
helper(0, nums, [])
return result
|
# coding=utf-8
__author__ = 'menghui'
# =====================================================================================================================
# 配置文件
DEBUG = True # 是否开启调试模式
# =====================================================================================================================
# 日志处理占位
# 在httpclient中初始化
infoLogger = None
errorLogger = None
debugLogger = None
# =====================================================================================================================
# 配置数据库
SRVDATABASETYPE = "oracle" # 数据查询服务数据库类型
DEFAULTRESTCONN = "stu" # 数据查询服务数据库链接名称,为DATABASES中的KEY名称
# 数据库配置,key为数据库配置别名
DATABASES = {
'default': {
"TYPE":"oracle",
'NAME': 'orcl',
'USER': 'bjntu_er',
'PASSWORD': '123456',
'HOST': '127.0.0.1',
'PORT': '1521'
},
'mdu': {
"TYPE":"oracle",
'ENGINE': 'django.db.backends.oracle',
'NAME': 'orcl',
'USER': 'mdu',
'PASSWORD': 'mdu',
'HOST': '127.0.0.1',
'PORT': '1521'
},
'stu': {
"TYPE":"oracle",
'ENGINE': 'django.db.backends.oracle',
'NAME': 'orcl',
'USER': 'stu',
'PASSWORD': 'stu',
'HOST': '127.0.0.1',
'PORT': '1521'
}
}
# =====================================================================================================================
# 配置单点登录,以下配置没有使用
# 用户认证服务,当前没有使用
USERAUTHSERVICE = 'http://127.0.0.1:8090/wsGDPT/services/UserMgrService?wsdl'
# 单点登录地址,当前没有使用
CAS_SERVER_URL = 'http://127.0.0.1:8090/cas/login'
# 彻底登出,当前没有使用
CAS_LOGOUT_COMPLETELY = True
# 开启单点登出,当前没有使用
CAS_SINGLE_SIGN_OUT = True
# 自动创建新用户,当前没有使用
CAS_AUTO_CREATE_USERS = True
# =====================================================================================================================
# 关闭浏览器Session过期,未在IE中测试,以下配置没有使用
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
# Session过期时间,单位秒
SESSION_COOKIE_AGE = 120
# =====================================================================================================================
# Redis服务器链接
# KEY规则:
# CACHE_ 缓存数据,由下面的CACHE_TABLES配置项定义
# APPKEY_ 应用系统注册信息,后跟应用系统ID,JSON格式
# {"privatekey": "3081c3020100300d06092a864886f70d01010105000481ae3081ab02010002210096f1842616ebce830
# f34fa4a51cb1e6daffc5a12e5629deed96609c9dbc6bc15020301000102203951b7a41b3a2aaedc3c7a
# fb73fa15306df6b150dc14884bd89d73ed2155cfb5021100d9fb8eaffa5e399f1ce82ad08619a13b0211
# 00b144ce4ff75b5eddb37ce8a5c65842ef021100a5f9ca0aaa9b864a65eb4d765b3536b30211008f2e9b
# 521de2b07a744a9503a9748b030210136419178fae85bcb0f54f93d5abb45c", "app_id": "ZNSHZH",
# "publickey": "303c300d06092a864886f70d0101010500032b00302802210096f1842616ebce830f34fa4a51cb1e6da
# ffc5a12e5629deed96609c9dbc6bc150203010001",
# "uname": "SYSUSER_ZNSHZH",
# "services": [8],
# "pwd": "UFdEX1pOU0haSA=="}
# SRV_URL_ 服务信息,后跟服务的URL,不同的服务类型保存的格式不同,JSON格式
# { "secret": "N",
# "serviceid": 6,
# "enabled": 1,
# "msglog": "N",
# "type": 7,
# "serviceName": "testservice_5",
# "tableName": "CACHE_Buffer_stbprp_b_",
# "cachetype": "N",
# "innerjoin": null,
# "fieldlist": null,
# "url": "test_5",
# "schemaName": "redis"}
# PC_ 平台信息,JSON格式:
# { "syspwd": "123456",
# "area": "重庆",
# "contacts": null,
# "platid": 5,
# "pluguel": null,
# "sysusername": "chongqing"}
REDISHOST = '127.0.0.1'
REDISPORT = "6379"
REDISDB = 0
RELOADREDISTIME = 10 # 重新加载redis中数据缓存的时间间隔,单位秒
# 缓存的数据库表
# [SQL,SCHEMA,[DBKEYS],PREKEY,[BUFFER DATA FIELD]]
CACHE_TABLES = [
['select STCD,STNM from su9921.st_stbprp_b', 'stu', ['STCD'], 'stu_st_stbprp_b', ['STNM']],
['select * from su9921.st_stbprp_b', 'stu', ['STCD'], 'Buffer_stbprp_b', []]
]
########################################################################################################################
MSGLOGPATH="/project/project/fangxunii/codes/clouds/restgang/cache/log" #消息日志记录的根目录
HUGESQLPATH="/project/project/fangxunii/codes/clouds/restgang/hugesqls"
DEFAULTCACHETIME=60 |
###tuplas são imutaveis
'''
lanche = ('Hanburguer', 'Suco', 'Batata', 'Pizza')
for c in lanche:
print (c)
print ('-'*30)
for c in range (0, len(lanche)):
print (lanche[c])
for p, c in enumerate(lanche):
print (c)
print (sorted(lanche))
'''
### del(lanche) apaga a variavel
'''
a = (5 ,8 ,4)
b = (4 ,3 ,2)
c = a + b
print (c)
print (c.index(8))
print (c.count(4))
'''
|
"""Kaprekar's Constant.
Have the function KaprekarsConstant(num) take the num parameter being passed which will be a
4-digit number with at least two distinct digits.
Your program should perform the following routine on the number:
Arrange the digits in descending order and in ascending order (adding leading zeroes if needed
to fit it to a 4-digit number), and subtract the smaller number from the bigger number.
Then repeat the previous step.
Performing this routine will always cause you to reach a fixed number: 6174.
Then performing the routine on 6174 will always give you 6174 (7641 - 1467 = 6174).
Your program should return the number of times this routine must be performed until 6174 is reached.
For example: if num is 3524 your program should return 3 because of the following steps:
(1) 5432 - 2345 = 3087,
(2) 8730 - 0378 = 8352,
(3) 8532 - 2358 = 6174.
"""
def kaprekars_constant(n):
"""Kaprekar's constant."""
if n == 6174:
return 1
n = str(n).zfill(4)
g = ''.join(sorted(n)[::-1])
l = ''.join(sorted(n))
n = int(g) - int(l)
return 1 + kaprekars_constant(n) if n != 6174 else 1
|
___assertEqual(0**17, 0)
___assertEqual(17**0, 1)
___assertEqual(0**0, 1)
___assertEqual(17**1, 17)
___assertEqual(2**10, 1024)
___assertEqual(2**-2, 0.25)
|
record4 = [[({'t4.103.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.0': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.0': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.0': [0.559, 10.0], 't3.103.114.0': [0.733, 5.0], 't5.103.114.0': [0.413, 5.0]}), 'newmec-3'], [({'t5.103.114.1': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.1': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.1': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.1': [0.438, 5.0], 't2.103.114.1': [0.452, 5.0], 't3.103.114.1': [0.698, 5.0]}), 'newmec-3'], [({'t5.103.114.2': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.2': [0.413, 5.0], 't2.103.114.2': [0.416, 5.0]}), 'newmec-3'], [({'t4.101.114.3': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.3': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.3': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.3': [0.446, 10.0], 't2.101.114.3': [0.628, 5.0], 't5.101.114.3': [0.564, 5.0]}), 'newmec-1'], [({'t2.102.114.4': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.4': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.4': [0.491, 5.0], 't5.102.114.4': [0.716, 5.0]}), 'newmec-2'], [({'t1.101.114.5': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.5': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.5': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.5': [0.72, 6.667], 't2.101.114.5': [0.648, 5.0], 't3.101.114.5': [0.591, 5.0]}), 'newmec-1'], [({'t3.102.114.6': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.6': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.6': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.6': [0.708, 5.0], 't5.102.114.6': [0.491, 5.0], 't2.102.114.6': [0.557, 5.0]}), 'newmec-2'], [({'t5.101.114.7': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.7': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.7': [0.799, 5.0], 't1.101.114.7': [0.621, 6.667]}), 'newmec-1'], [({'t3.101.114.8': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.8': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.8': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.8': [0.587, 5.0], 't2.101.114.8': [0.538, 5.0], 't4.101.114.8': [0.404, 10.0]}), 'newmec-1'], [({'t2.103.114.9': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.9': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.9': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.9': [0.413, 5.0], 't1.103.114.9': [0.585, 6.667], 't5.103.114.9': [0.797, 5.0]}), 'newmec-3'], [({'t1.102.114.10': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.10': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.10': [0.774, 6.667], 't3.102.114.10': [0.732, 5.0]}), 'newmec-2'], [({'t2.103.114.11': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.11': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.11': [0.644, 5.0], 't4.103.114.11': [0.742, 10.0]}), 'newmec-3'], [({'t2.101.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.12': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.12': [0.697, 5.0], 't5.101.114.12': [0.467, 5.0]}), 'newmec-1'], [({'t4.101.114.13': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.13': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.13': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.13': [0.743, 10.0], 't1.101.114.13': [0.471, 6.667], 't2.101.114.13': [0.609, 5.0]}), 'newmec-1'], [({'t5.101.114.14': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.14': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.14': [0.501, 5.0], 't4.101.114.14': [0.727, 10.0], 't2.101.114.14': [0.433, 5.0]}), 'newmec-1'], [({'t2.101.114.15': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.15': [0.665, 5.0], 't5.101.114.15': [0.552, 5.0]}), 'newmec-1'], [({'t2.101.114.16': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.16': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.16': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.16': [0.693, 5.0], 't3.101.114.16': [0.769, 5.0], 't5.101.114.16': [0.449, 5.0]}), 'newmec-1'], [({'t4.102.114.17': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.17': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.17': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.17': [0.741, 10.0], 't5.102.114.17': [0.701, 5.0], 't3.102.114.17': [0.662, 5.0]}), 'newmec-2'], [({'t2.103.114.18': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.18': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.18': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.18': [0.508, 5.0], 't5.103.114.18': [0.787, 5.0], 't3.103.114.18': [0.757, 5.0]}), 'newmec-3'], [({'t4.103.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.19': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.19': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.19': [0.769, 10.0], 't5.103.114.19': [0.535, 5.0], 't1.103.114.19': [0.556, 6.667]}), 'newmec-3'], [({'t5.101.114.20': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.20': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.20': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.20': [0.504, 5.0], 't3.101.114.20': [0.455, 5.0], 't1.101.114.20': [0.743, 6.667]}), 'newmec-1'], [({'t3.103.114.21': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.21': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.21': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.21': [0.654, 5.0], 't1.103.114.21': [0.523, 6.667], 't2.103.114.21': [0.768, 5.0]}), 'newmec-3'], [({'t1.101.114.22': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.22': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.22': [0.545, 6.667], 't5.101.114.22': [0.419, 5.0]}), 'newmec-1'], [({'t5.103.114.23': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.23': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.23': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.23': [0.699, 5.0], 't3.103.114.23': [0.614, 5.0], 't2.103.114.23': [0.778, 5.0]}), 'newmec-3'], [({'t2.103.114.24': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.24': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.24': [0.787, 5.0], 't1.103.114.24': [0.724, 6.667]}), 'newmec-3'], [({'t1.102.114.25': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.25': [0.784, 6.667], 't4.102.114.25': [0.467, 10.0]}), 'newmec-2'], [({'t1.101.114.26': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.26': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.26': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.26': [0.536, 6.667], 't2.101.114.26': [0.465, 5.0], 't5.101.114.26': [0.742, 5.0]}), 'newmec-1'], [({'t2.101.114.27': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.27': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.27': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.27': [0.55, 5.0], 't4.101.114.27': [0.486, 10.0], 't1.101.114.27': [0.798, 6.667]}), 'newmec-1'], [({'t2.103.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.28': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.28': [0.452, 5.0], 't4.103.114.28': [0.56, 10.0], 't1.103.114.28': [0.724, 6.667]}), 'newmec-3'], [({'t4.103.114.29': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.29': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.29': [0.669, 10.0], 't3.103.114.29': [0.708, 5.0]}), 'newmec-3'], [({'t3.103.114.30': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.30': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.30': [0.784, 5.0], 't5.103.114.30': [0.502, 5.0]}), 'newmec-3'], [({'t1.156.114.31': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.31': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.31': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.31': [0.537, 6.667], 't3.156.114.31': [0.545, 5.0], 't2.156.114.31': [0.61, 5.0]}), 'osboxes-0'], [({'t5.103.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.32': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.32': [0.644, 5.0], 't3.103.114.32': [0.73, 5.0]}), 'newmec-3'], [({'t1.156.114.33': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.33': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.33': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.33': [0.49, 6.667], 't3.156.114.33': [0.648, 5.0], 't2.156.114.33': [0.502, 5.0]}), 'osboxes-0'], [({'t1.103.114.34': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.34': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.34': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.34': [0.474, 6.667], 't4.103.114.34': [0.654, 10.0], 't2.103.114.34': [0.498, 5.0]}), 'newmec-3'], [({'t3.101.114.35': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.35': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.35': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.35': [0.416, 5.0], 't1.101.114.35': [0.674, 6.667], 't5.101.114.35': [0.583, 5.0]}), 'newmec-1'], [({'t3.103.114.36': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.36': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.36': [0.512, 5.0], 't2.103.114.36': [0.535, 5.0]}), 'newmec-3'], [({'t1.101.114.37': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.37': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.37': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.37': [0.789, 6.667], 't4.101.114.37': [0.477, 10.0], 't3.101.114.37': [0.742, 5.0]}), 'newmec-1'], [({'t2.156.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.38': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.38': [0.78, 5.0], 't5.156.114.38': [0.713, 5.0]}), 'osboxes-0'], [({'t3.103.114.39': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.39': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.39': [0.448, 5.0], 't5.103.114.39': [0.763, 5.0]}), 'newmec-3'], [({'t3.102.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.40': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.40': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.40': [0.584, 5.0], 't4.102.114.40': [0.415, 10.0], 't1.102.114.40': [0.458, 6.667]}), 'newmec-2'], [({'t2.101.114.41': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.41': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.41': [0.784, 5.0], 't1.101.114.41': [0.445, 6.667], 't3.101.114.41': [0.703, 5.0]}), 'newmec-1'], [({'t5.103.114.42': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.42': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.42': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.42': [0.555, 5.0], 't2.103.114.42': [0.488, 5.0], 't4.103.114.42': [0.539, 10.0]}), 'newmec-3'], [({'t4.102.114.43': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.43': [0.646, 10.0], 't2.102.114.43': [0.709, 5.0]}), 'newmec-2'], [({'t5.103.114.44': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.44': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.44': [0.435, 5.0], 't4.103.114.44': [0.542, 10.0]}), 'newmec-3'], [({'t4.102.114.45': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.45': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.45': [0.44, 10.0], 't1.102.114.45': [0.692, 6.667]}), 'newmec-2'], [({'t3.102.114.46': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.46': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.46': [0.692, 5.0], 't4.102.114.46': [0.596, 10.0], 't5.102.114.46': [0.624, 5.0]}), 'newmec-2'], [({'t2.101.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.47': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.47': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.47': [0.698, 5.0], 't1.101.114.47': [0.6, 6.667], 't5.101.114.47': [0.429, 5.0]}), 'newmec-1'], [({'t5.101.114.48': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.48': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.48': [0.505, 5.0], 't2.101.114.48': [0.482, 5.0]}), 'newmec-1'], [({'t2.103.114.49': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.49': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.49': [0.707, 5.0], 't1.103.114.49': [0.66, 6.667]}), 'newmec-3'], [({'t4.101.114.50': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.50': [0.683, 10.0], 't2.101.114.50': [0.479, 5.0]}), 'newmec-1'], [({'t3.103.114.51': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.51': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.51': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.51': [0.549, 5.0], 't4.103.114.51': [0.71, 10.0], 't1.103.114.51': [0.432, 6.667]}), 'newmec-3'], [({'t2.101.114.52': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.52': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.52': [0.786, 5.0], 't3.101.114.52': [0.773, 5.0]}), 'newmec-1'], [({'t1.103.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.53': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.53': [0.682, 6.667], 't4.103.114.53': [0.562, 10.0]}), 'newmec-3'], [({'t5.103.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.54': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.54': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.54': [0.675, 5.0], 't4.103.114.54': [0.528, 10.0], 't2.103.114.54': [0.426, 5.0]}), 'newmec-3'], [({'t5.103.114.55': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.55': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.55': [0.486, 5.0], 't2.103.114.55': [0.426, 5.0], 't3.103.114.55': [0.791, 5.0]}), 'newmec-3'], [({'t4.156.114.56': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.56': [0.601, 10.0], 't3.156.114.56': [0.429, 5.0]}), 'osboxes-0'], [({'t4.103.114.57': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.57': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.57': [0.473, 10.0], 't2.103.114.57': [0.489, 5.0]}), 'newmec-3'], [({'t5.101.114.58': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.58': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.58': [0.564, 5.0], 't2.101.114.58': [0.438, 5.0]}), 'newmec-1'], [({'t3.103.114.59': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.59': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.59': [0.449, 5.0], 't5.103.114.59': [0.609, 5.0], 't2.103.114.59': [0.473, 5.0]}), 'newmec-3'], [({'t5.102.114.60': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.60': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.60': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.60': [0.622, 5.0], 't3.102.114.60': [0.594, 5.0], 't2.102.114.60': [0.669, 5.0]}), 'newmec-2'], [({'t3.102.114.61': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.61': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.61': [0.685, 5.0], 't1.102.114.61': [0.465, 6.667]}), 'newmec-2'], [({'t1.101.114.62': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.62': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.62': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.62': [0.755, 6.667], 't4.101.114.62': [0.401, 10.0], 't2.101.114.62': [0.726, 5.0]}), 'newmec-1'], [({'t3.103.114.63': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.63': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.63': [0.594, 5.0], 't5.103.114.63': [0.582, 5.0]}), 'newmec-3'], [({'t2.101.114.64': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.64': [0.787, 5.0], 't5.101.114.64': [0.694, 5.0]}), 'newmec-1'], [({'t1.103.114.65': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.65': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.65': [0.567, 6.667], 't3.103.114.65': [0.582, 5.0]}), 'newmec-3'], [({'t2.156.114.66': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.66': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.66': [0.567, 5.0], 't3.156.114.66': [0.689, 5.0], 't4.156.114.66': [0.478, 10.0]}), 'osboxes-0'], [({'t2.103.114.67': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.67': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.67': [0.433, 5.0], 't1.103.114.67': [0.576, 6.667]}), 'newmec-3'], [({'t1.103.114.68': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.68': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.68': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.68': [0.443, 6.667], 't2.103.114.68': [0.586, 5.0], 't4.103.114.68': [0.739, 10.0]}), 'newmec-3'], [({'t4.101.114.69': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.69': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.69': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.69': [0.548, 10.0], 't3.101.114.69': [0.792, 5.0], 't5.101.114.69': [0.664, 5.0]}), 'newmec-1'], [({'t4.103.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.70': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.70': [0.537, 10.0], 't1.103.114.70': [0.764, 6.667]}), 'newmec-3'], [({'t2.103.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.71': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.71': [0.415, 5.0], 't3.103.114.71': [0.581, 5.0], 't4.103.114.71': [0.478, 10.0]}), 'newmec-3'], [({'t4.102.114.72': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.72': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.72': [0.452, 10.0], 't2.102.114.72': [0.594, 5.0]}), 'newmec-2'], [({'t3.101.114.73': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.73': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.73': [0.44, 5.0], 't5.101.114.73': [0.61, 5.0]}), 'newmec-1'], [({'t1.101.114.74': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.74': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.74': [0.7, 6.667], 't2.101.114.74': [0.641, 5.0], 't4.101.114.74': [0.75, 10.0]}), 'newmec-1'], [({'t3.103.114.75': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.75': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.75': [0.451, 5.0], 't5.103.114.75': [0.57, 5.0]}), 'newmec-3'], [({'t2.103.114.76': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.76': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.76': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.76': [0.56, 5.0], 't1.103.114.76': [0.692, 6.667], 't3.103.114.76': [0.76, 5.0]}), 'newmec-3'], [({'t5.103.114.77': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.77': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.77': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.77': [0.72, 5.0], 't4.103.114.77': [0.506, 10.0], 't1.103.114.77': [0.59, 6.667]}), 'newmec-3'], [({'t3.103.114.78': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.78': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.78': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.78': [0.625, 5.0], 't2.103.114.78': [0.511, 5.0], 't5.103.114.78': [0.672, 5.0]}), 'newmec-3'], [({'t3.101.114.79': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.79': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.79': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.79': [0.785, 5.0], 't1.101.114.79': [0.404, 6.667], 't5.101.114.79': [0.612, 5.0]}), 'newmec-1'], [({'t4.103.114.80': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.80': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.80': [0.752, 10.0], 't5.103.114.80': [0.689, 5.0]}), 'newmec-3'], [({'t3.103.114.81': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.81': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.81': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.81': [0.548, 5.0], 't1.103.114.81': [0.668, 6.667], 't2.103.114.81': [0.756, 5.0]}), 'newmec-3'], [({'t4.101.114.82': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.82': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.82': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.82': [0.413, 10.0], 't2.101.114.82': [0.452, 5.0], 't3.101.114.82': [0.461, 5.0]}), 'newmec-1'], [({'t1.156.114.83': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.83': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.83': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.83': [0.543, 6.667], 't4.156.114.83': [0.736, 10.0], 't2.156.114.83': [0.611, 5.0]}), 'osboxes-0'], [({'t5.101.114.84': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.84': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.84': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.84': [0.635, 5.0], 't1.101.114.84': [0.518, 6.667], 't4.101.114.84': [0.44, 10.0]}), 'newmec-1'], [({'t2.101.114.85': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.85': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.85': [0.444, 5.0], 't4.101.114.85': [0.684, 10.0], 't5.101.114.85': [0.498, 5.0]}), 'newmec-1'], [({'t5.102.114.86': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.86': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.86': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.86': [0.794, 5.0], 't4.102.114.86': [0.546, 10.0], 't2.102.114.86': [0.445, 5.0]}), 'newmec-2'], [({'t4.103.114.87': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.87': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.87': [0.481, 10.0], 't3.103.114.87': [0.46, 5.0]}), 'newmec-3'], [({'t2.101.114.88': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.88': [0.68, 5.0], 't4.101.114.88': [0.616, 10.0]}), 'newmec-1'], [({'t4.101.114.89': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.89': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.89': [0.781, 10.0], 't5.101.114.89': [0.782, 5.0]}), 'newmec-1'], [({'t3.103.114.90': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.90': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.90': [0.618, 5.0], 't2.103.114.90': [0.664, 5.0]}), 'newmec-3'], [({'t5.103.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.91': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.91': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.91': [0.758, 5.0], 't3.103.114.91': [0.747, 5.0], 't4.103.114.91': [0.409, 10.0]}), 'newmec-3'], [({'t5.101.114.92': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.92': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.92': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.92': [0.694, 5.0], 't3.101.114.92': [0.604, 5.0], 't1.101.114.92': [0.597, 6.667]}), 'newmec-1'], [({'t2.101.114.93': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.93': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.93': [0.439, 5.0], 't4.101.114.93': [0.424, 10.0]}), 'newmec-1'], [({'t3.101.114.94': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.94': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.94': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.94': [0.435, 5.0], 't2.101.114.94': [0.736, 5.0], 't4.101.114.94': [0.445, 10.0]}), 'newmec-1'], [({'t5.103.114.95': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.95': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.95': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.95': [0.512, 5.0], 't3.103.114.95': [0.78, 5.0], 't2.103.114.95': [0.715, 5.0]}), 'newmec-3'], [({'t2.156.114.96': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.96': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.96': [0.794, 5.0], 't1.156.114.96': [0.645, 6.667]}), 'osboxes-0'], [({'t4.102.114.97': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.97': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.97': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.97': [0.612, 10.0], 't2.102.114.97': [0.668, 5.0], 't5.102.114.97': [0.61, 5.0]}), 'newmec-2'], [({'t2.103.114.98': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.98': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.98': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.98': [0.784, 5.0], 't5.103.114.98': [0.655, 5.0], 't1.103.114.98': [0.465, 6.667]}), 'newmec-3'], [({'t1.101.114.99': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.99': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.99': [0.72, 6.667], 't4.101.114.99': [0.683, 10.0]}), 'newmec-1'], [({'t1.102.114.100': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.100': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.100': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.100': [0.632, 6.667], 't2.102.114.100': [0.732, 5.0], 't5.102.114.100': [0.797, 5.0]}), 'newmec-2'], [({'t5.103.114.101': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.101': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.101': [0.509, 5.0], 't4.103.114.101': [0.463, 10.0]}), 'newmec-3'], [({'t3.101.114.102': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.102': [0.632, 5.0], 't4.101.114.102': [0.627, 10.0]}), 'newmec-1'], [({'t1.156.114.103': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.103': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.103': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.103': [0.503, 6.667], 't3.156.114.103': [0.78, 5.0], 't5.156.114.103': [0.732, 5.0]}), 'osboxes-0'], [({'t2.103.114.104': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.104': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.104': [0.442, 5.0], 't1.103.114.104': [0.479, 6.667]}), 'newmec-3'], [({'t5.103.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.105': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.105': [0.746, 5.0], 't2.103.114.105': [0.762, 5.0]}), 'newmec-3'], [({'t3.101.114.106': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.106': [0.69, 5.0], 't4.101.114.106': [0.501, 10.0]}), 'newmec-1'], [({'t2.103.114.107': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.107': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.107': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.107': [0.601, 5.0], 't3.103.114.107': [0.629, 5.0], 't1.103.114.107': [0.531, 6.667]}), 'newmec-3'], [({'t5.103.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.108': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.108': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.108': [0.53, 5.0], 't1.103.114.108': [0.673, 6.667], 't4.103.114.108': [0.552, 10.0]}), 'newmec-3'], [({'t3.101.114.109': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.109': [0.61, 5.0], 't2.101.114.109': [0.77, 5.0]}), 'newmec-1'], [({'t4.101.114.110': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.110': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.110': [0.602, 10.0], 't5.101.114.110': [0.798, 5.0]}), 'newmec-1'], [({'t5.103.114.111': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.111': [0.596, 5.0], 't1.103.114.111': [0.42, 6.667]}), 'newmec-3'], [({'t5.103.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.112': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.112': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.112': [0.708, 5.0], 't3.103.114.112': [0.516, 5.0], 't2.103.114.112': [0.541, 5.0]}), 'newmec-3'], [({'t4.101.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.113': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.113': [0.654, 10.0], 't3.101.114.113': [0.609, 5.0]}), 'newmec-1'], [({'t5.103.114.114': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.114': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.114': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.114': [0.699, 5.0], 't4.103.114.114': [0.476, 10.0], 't1.103.114.114': [0.502, 6.667]}), 'newmec-3'], [({'t5.103.114.115': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.115': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.115': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.115': [0.571, 5.0], 't1.103.114.115': [0.727, 6.667], 't3.103.114.115': [0.524, 5.0]}), 'newmec-3'], [({'t2.102.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.116': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.116': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.116': [0.566, 5.0], 't5.102.114.116': [0.63, 5.0], 't4.102.114.116': [0.539, 10.0]}), 'newmec-2'], [({'t3.103.114.117': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.117': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.117': [0.718, 5.0], 't5.103.114.117': [0.571, 5.0]}), 'newmec-3'], [({'t2.102.114.118': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.118': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.118': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.118': [0.703, 5.0], 't3.102.114.118': [0.495, 5.0], 't1.102.114.118': [0.79, 6.667]}), 'newmec-2'], [({'t5.101.114.119': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.119': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.119': [0.615, 5.0], 't2.101.114.119': [0.78, 5.0]}), 'newmec-1'], [({'t5.102.114.120': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.120': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.120': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.120': [0.561, 5.0], 't4.102.114.120': [0.52, 10.0], 't1.102.114.120': [0.53, 6.667]}), 'newmec-2'], [({'t4.103.114.121': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.121': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.121': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.121': [0.595, 10.0], 't2.103.114.121': [0.568, 5.0], 't3.103.114.121': [0.412, 5.0]}), 'newmec-3'], [({'t3.102.114.122': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.122': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.122': [0.652, 5.0], 't1.102.114.122': [0.712, 6.667]}), 'newmec-2'], [({'t4.156.114.123': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.123': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.123': [0.474, 10.0], 't1.156.114.123': [0.734, 6.667]}), 'osboxes-0'], [({'t4.101.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.124': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.124': [0.666, 10.0], 't5.101.114.124': [0.472, 5.0]}), 'newmec-1'], [({'t1.101.114.125': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.125': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.125': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.125': [0.787, 6.667], 't4.101.114.125': [0.433, 10.0], 't3.101.114.125': [0.566, 5.0]}), 'newmec-1'], [({'t5.102.114.126': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.126': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.126': [0.526, 5.0], 't4.102.114.126': [0.8, 10.0]}), 'newmec-2'], [({'t3.156.114.127': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.127': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.127': [0.651, 5.0], 't5.156.114.127': [0.771, 5.0], 't2.156.114.127': [0.719, 5.0]}), 'osboxes-0'], [({'t4.102.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.128': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.128': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.128': [0.471, 10.0], 't1.102.114.128': [0.763, 6.667], 't5.102.114.128': [0.592, 5.0]}), 'newmec-2'], [({'t3.103.114.129': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.129': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.129': [0.657, 5.0], 't1.103.114.129': [0.643, 6.667]}), 'newmec-3'], [({'t2.101.114.130': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.130': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.130': [0.605, 5.0], 't1.101.114.130': [0.424, 6.667]}), 'newmec-1'], [({'t4.103.114.131': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.131': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.131': [0.511, 10.0], 't3.103.114.131': [0.675, 5.0]}), 'newmec-3'], [({'t2.101.114.132': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.132': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.132': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.132': [0.615, 5.0], 't4.101.114.132': [0.739, 10.0], 't5.101.114.132': [0.507, 5.0]}), 'newmec-1'], [({'t1.102.114.133': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.133': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.133': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.133': [0.53, 6.667], 't3.102.114.133': [0.788, 5.0], 't2.102.114.133': [0.611, 5.0]}), 'newmec-2'], [({'t3.103.114.134': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.134': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.134': [0.425, 5.0], 't5.103.114.134': [0.709, 5.0]}), 'newmec-3'], [({'t3.101.114.135': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.135': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.135': [0.685, 5.0], 't5.101.114.135': [0.403, 5.0]}), 'newmec-1'], [({'t4.101.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.136': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.136': [0.775, 10.0], 't5.101.114.136': [0.538, 5.0]}), 'newmec-1'], [({'t1.103.114.137': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.137': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.137': [0.707, 6.667], 't5.103.114.137': [0.729, 5.0], 't4.103.114.137': [0.475, 10.0]}), 'newmec-3'], [({'t4.103.114.138': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.138': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.138': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.138': [0.552, 10.0], 't5.103.114.138': [0.723, 5.0], 't2.103.114.138': [0.655, 5.0]}), 'newmec-3'], [({'t1.102.114.139': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.139': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.139': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.139': [0.733, 6.667], 't3.102.114.139': [0.566, 5.0], 't2.102.114.139': [0.597, 5.0]}), 'newmec-2'], [({'t4.103.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.140': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.140': [0.405, 10.0], 't3.103.114.140': [0.709, 5.0]}), 'newmec-3'], [({'t3.101.114.141': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.141': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.141': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.141': [0.616, 5.0], 't2.101.114.141': [0.781, 5.0], 't4.101.114.141': [0.417, 10.0]}), 'newmec-1'], [({'t5.156.114.142': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.142': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.142': [0.747, 5.0], 't3.156.114.142': [0.423, 5.0]}), 'osboxes-0'], [({'t4.102.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.143': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.143': [0.494, 10.0], 't3.102.114.143': [0.479, 5.0]}), 'newmec-2'], [({'t5.103.114.144': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.144': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.144': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.144': [0.666, 5.0], 't4.103.114.144': [0.542, 10.0], 't3.103.114.144': [0.743, 5.0]}), 'newmec-3'], [({'t2.101.114.145': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.145': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.145': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.145': [0.699, 5.0], 't4.101.114.145': [0.642, 10.0], 't5.101.114.145': [0.475, 5.0]}), 'newmec-1'], [({'t4.101.114.146': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.146': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.146': [0.464, 10.0], 't2.101.114.146': [0.731, 5.0]}), 'newmec-1'], [({'t5.103.114.147': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.147': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.147': [0.562, 5.0], 't2.103.114.147': [0.64, 5.0]}), 'newmec-3'], [({'t3.103.114.148': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.148': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.148': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.148': [0.573, 5.0], 't4.103.114.148': [0.702, 10.0], 't5.103.114.148': [0.563, 5.0]}), 'newmec-3'], [({'t5.103.114.149': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.149': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.149': [0.716, 5.0], 't4.103.114.149': [0.775, 10.0]}), 'newmec-3'], [({'t2.101.114.150': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.150': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.150': [0.74, 5.0], 't3.101.114.150': [0.798, 5.0]}), 'newmec-1'], [({'t4.101.114.151': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.151': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.151': [0.49, 10.0], 't2.101.114.151': [0.679, 5.0]}), 'newmec-1'], [({'t5.101.114.152': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.152': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.152': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.152': [0.687, 5.0], 't3.101.114.152': [0.772, 5.0], 't4.101.114.152': [0.719, 10.0]}), 'newmec-1'], [({'t4.103.114.153': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.153': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.153': [0.443, 10.0], 't2.103.114.153': [0.788, 5.0]}), 'newmec-3'], [({'t4.103.114.154': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.154': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.154': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.154': [0.764, 10.0], 't2.103.114.154': [0.585, 5.0], 't1.103.114.154': [0.788, 6.667]}), 'newmec-3'], [({'t3.101.114.155': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.155': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.155': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.155': [0.46, 5.0], 't5.101.114.155': [0.524, 5.0], 't4.101.114.155': [0.756, 10.0]}), 'newmec-1'], [({'t5.101.114.156': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.156': [0.724, 5.0], 't4.101.114.156': [0.457, 10.0], 't2.101.114.156': [0.619, 5.0]}), 'newmec-1'], [({'t3.103.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.157': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.157': [0.485, 5.0], 't5.103.114.157': [0.712, 5.0]}), 'newmec-3'], [({'t2.103.114.158': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.158': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.158': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.158': [0.797, 5.0], 't3.103.114.158': [0.497, 5.0], 't4.103.114.158': [0.462, 10.0]}), 'newmec-3'], [({'t4.156.114.159': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.159': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.159': [0.676, 10.0], 't1.156.114.159': [0.793, 6.667]}), 'osboxes-0'], [({'t3.103.114.160': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.160': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.160': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.160': [0.606, 5.0], 't4.103.114.160': [0.589, 10.0], 't5.103.114.160': [0.674, 5.0]}), 'newmec-3'], [({'t2.103.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.161': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.161': [0.624, 5.0], 't4.103.114.161': [0.745, 10.0]}), 'newmec-3'], [({'t3.101.114.162': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.162': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.162': [0.419, 5.0], 't2.101.114.162': [0.527, 5.0]}), 'newmec-1'], [({'t4.101.114.163': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.163': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.163': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.163': [0.419, 10.0], 't2.101.114.163': [0.692, 5.0], 't1.101.114.163': [0.564, 6.667]}), 'newmec-1'], [({'t4.156.114.164': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.164': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.164': [0.456, 10.0], 't1.156.114.164': [0.434, 6.667]}), 'osboxes-0'], [({'t5.101.114.165': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.165': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.165': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.165': [0.553, 5.0], 't3.101.114.165': [0.674, 5.0], 't1.101.114.165': [0.604, 6.667]}), 'newmec-1'], [({'t2.103.114.166': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.166': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.166': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.166': [0.447, 5.0], 't4.103.114.166': [0.48, 10.0], 't5.103.114.166': [0.556, 5.0]}), 'newmec-3'], [({'t2.101.114.167': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.167': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.167': [0.459, 5.0], 't4.101.114.167': [0.664, 10.0]}), 'newmec-1'], [({'t5.101.114.168': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.168': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.168': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.168': [0.586, 5.0], 't4.101.114.168': [0.565, 10.0], 't3.101.114.168': [0.691, 5.0]}), 'newmec-1'], [({'t3.101.114.169': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.169': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.169': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.169': [0.602, 5.0], 't2.101.114.169': [0.707, 5.0], 't4.101.114.169': [0.467, 10.0]}), 'newmec-1'], [({'t2.103.114.170': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.170': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.170': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.170': [0.557, 5.0], 't4.103.114.170': [0.697, 10.0], 't5.103.114.170': [0.698, 5.0]}), 'newmec-3'], [({'t4.101.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.171': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.171': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.171': [0.733, 10.0], 't1.101.114.171': [0.758, 6.667], 't2.101.114.171': [0.565, 5.0]}), 'newmec-1'], [({'t2.156.114.172': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.172': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.172': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.172': [0.492, 5.0], 't4.156.114.172': [0.767, 10.0], 't5.156.114.172': [0.619, 5.0]}), 'osboxes-0'], [({'t2.103.114.173': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.173': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.173': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.173': [0.529, 5.0], 't4.103.114.173': [0.557, 10.0], 't5.103.114.173': [0.651, 5.0]}), 'newmec-3'], [({'t5.101.114.174': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.174': [0.625, 5.0], 't2.101.114.174': [0.452, 5.0]}), 'newmec-1'], [({'t2.103.114.175': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.175': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.175': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.175': [0.547, 5.0], 't3.103.114.175': [0.448, 5.0], 't4.103.114.175': [0.76, 10.0]}), 'newmec-3'], [({'t1.101.114.176': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.176': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.176': [0.783, 6.667], 't2.101.114.176': [0.734, 5.0]}), 'newmec-1'], [({'t4.103.114.177': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.177': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.177': [0.441, 10.0], 't1.103.114.177': [0.614, 6.667]}), 'newmec-3'], [({'t4.156.114.178': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.178': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.178': [0.79, 10.0], 't5.156.114.178': [0.562, 5.0]}), 'osboxes-0'], [({'t1.103.114.179': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.179': [0.751, 6.667], 't2.103.114.179': [0.429, 5.0]}), 'newmec-3'], [({'t4.156.114.180': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.180': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.180': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.180': [0.563, 10.0], 't2.156.114.180': [0.776, 5.0], 't3.156.114.180': [0.541, 5.0]}), 'osboxes-0'], [({'t2.101.114.181': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.181': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.181': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.181': [0.413, 5.0], 't3.101.114.181': [0.506, 5.0], 't1.101.114.181': [0.792, 6.667]}), 'newmec-1'], [({'t2.101.114.182': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.182': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.182': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.182': [0.504, 5.0], 't5.101.114.182': [0.532, 5.0], 't4.101.114.182': [0.481, 10.0]}), 'newmec-1'], [({'t5.101.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.183': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.183': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.183': [0.684, 5.0], 't4.101.114.183': [0.776, 10.0], 't1.101.114.183': [0.518, 6.667]}), 'newmec-1'], [({'t2.102.114.184': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.184': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.184': [0.571, 5.0], 't1.102.114.184': [0.659, 6.667]}), 'newmec-2'], [({'t5.103.114.185': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.185': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.185': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.185': [0.416, 5.0], 't4.103.114.185': [0.799, 10.0], 't3.103.114.185': [0.626, 5.0]}), 'newmec-3'], [({'t2.103.114.186': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.186': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.186': [0.564, 5.0], 't4.103.114.186': [0.565, 10.0], 't5.103.114.186': [0.643, 5.0]}), 'newmec-3'], [({'t2.102.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.187': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.187': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.187': [0.701, 5.0], 't5.102.114.187': [0.73, 5.0], 't4.102.114.187': [0.668, 10.0]}), 'newmec-2'], [({'t2.103.114.188': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.188': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.188': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.188': [0.795, 5.0], 't1.103.114.188': [0.666, 6.667], 't3.103.114.188': [0.516, 5.0]}), 'newmec-3'], [({'t2.103.114.189': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.189': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.189': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.189': [0.41, 5.0], 't1.103.114.189': [0.779, 6.667], 't5.103.114.189': [0.767, 5.0]}), 'newmec-3'], [({'t1.101.114.190': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.190': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.190': [0.412, 6.667], 't5.101.114.190': [0.574, 5.0]}), 'newmec-1'], [({'t1.103.114.191': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.191': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.191': [0.453, 6.667], 't4.103.114.191': [0.639, 10.0]}), 'newmec-3'], [({'t5.101.114.192': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.192': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.192': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.192': [0.428, 5.0], 't1.101.114.192': [0.518, 6.667], 't2.101.114.192': [0.766, 5.0]}), 'newmec-1'], [({'t3.101.114.193': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.193': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.193': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.193': [0.609, 5.0], 't5.101.114.193': [0.48, 5.0], 't1.101.114.193': [0.6, 6.667]}), 'newmec-1'], [({'t5.103.114.194': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.194': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.194': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.194': [0.675, 5.0], 't2.103.114.194': [0.779, 5.0], 't1.103.114.194': [0.564, 6.667]}), 'newmec-3'], [({'t5.101.114.195': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.195': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.195': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.195': [0.6, 5.0], 't1.101.114.195': [0.65, 6.667], 't4.101.114.195': [0.551, 10.0]}), 'newmec-1'], [({'t2.101.114.196': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.196': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.196': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.196': [0.516, 5.0], 't1.101.114.196': [0.512, 6.667], 't4.101.114.196': [0.506, 10.0]}), 'newmec-1'], [({'t3.103.114.197': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.197': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.197': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.197': [0.609, 5.0], 't2.103.114.197': [0.412, 5.0], 't5.103.114.197': [0.574, 5.0]}), 'newmec-3'], [({'t5.103.114.198': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.198': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.198': [0.603, 5.0], 't2.103.114.198': [0.756, 5.0]}), 'newmec-3'], [({'t5.101.114.199': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.199': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.199': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.199': [0.648, 5.0], 't4.101.114.199': [0.47, 10.0], 't2.101.114.199': [0.507, 5.0]}), 'newmec-1'], [({'t2.102.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.200': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.200': [0.574, 5.0], 't1.102.114.200': [0.455, 6.667]}), 'newmec-2'], [({'t1.103.114.201': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.201': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.201': [0.62, 6.667], 't4.103.114.201': [0.437, 10.0], 't5.103.114.201': [0.742, 5.0]}), 'newmec-3'], [({'t4.101.114.202': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.202': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.202': [0.608, 10.0], 't3.101.114.202': [0.529, 5.0]}), 'newmec-1'], [({'t3.156.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.203': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.203': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.203': [0.611, 5.0], 't1.156.114.203': [0.542, 6.667], 't4.156.114.203': [0.713, 10.0]}), 'osboxes-0'], [({'t1.103.114.204': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.204': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.204': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.204': [0.41, 6.667], 't5.103.114.204': [0.731, 5.0], 't2.103.114.204': [0.656, 5.0]}), 'newmec-3'], [({'t2.101.114.205': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.205': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.205': [0.522, 5.0], 't1.101.114.205': [0.676, 6.667]}), 'newmec-1'], [({'t3.101.114.206': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.206': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.206': [0.709, 5.0], 't4.101.114.206': [0.675, 10.0]}), 'newmec-1'], [({'t2.103.114.207': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.207': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.207': [0.476, 5.0], 't5.103.114.207': [0.796, 5.0]}), 'newmec-3'], [({'t2.156.114.208': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.208': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.208': [0.658, 5.0], 't3.156.114.208': [0.462, 5.0]}), 'osboxes-0'], [({'t1.101.114.209': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.209': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.209': [0.766, 6.667], 't4.101.114.209': [0.686, 10.0]}), 'newmec-1'], [({'t2.103.114.210': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.210': [0.501, 5.0], 't5.103.114.210': [0.656, 5.0]}), 'newmec-3'], [({'t3.103.114.211': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.211': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.211': [0.749, 5.0], 't4.103.114.211': [0.742, 10.0], 't1.103.114.211': [0.713, 6.667]}), 'newmec-3'], [({'t5.102.114.212': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.212': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.212': [0.695, 5.0], 't2.102.114.212': [0.594, 5.0]}), 'newmec-2'], [({'t3.101.114.213': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.213': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.213': [0.711, 5.0], 't1.101.114.213': [0.59, 6.667]}), 'newmec-1'], [({'t1.103.114.214': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.214': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.214': [0.663, 6.667], 't2.103.114.214': [0.68, 5.0]}), 'newmec-3'], [({'t3.156.114.215': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.215': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.215': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.215': [0.618, 5.0], 't5.156.114.215': [0.581, 5.0], 't4.156.114.215': [0.742, 10.0]}), 'osboxes-0'], [({'t2.102.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.216': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.216': [0.646, 5.0], 't5.102.114.216': [0.489, 5.0]}), 'newmec-2'], [({'t2.102.114.217': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.217': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.217': [0.42, 5.0], 't3.102.114.217': [0.561, 5.0]}), 'newmec-2'], [({'t2.156.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.218': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.218': [0.666, 5.0], 't1.156.114.218': [0.467, 6.667]}), 'osboxes-0'], [({'t5.103.114.219': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.219': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.219': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.219': [0.53, 5.0], 't1.103.114.219': [0.747, 6.667], 't4.103.114.219': [0.648, 10.0]}), 'newmec-3'], [({'t5.103.114.220': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.220': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.220': [0.69, 5.0], 't3.103.114.220': [0.643, 5.0]}), 'newmec-3'], [({'t5.101.114.221': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.221': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.221': [0.436, 5.0], 't3.101.114.221': [0.667, 5.0]}), 'newmec-1'], [({'t4.101.114.222': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.222': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.222': [0.471, 10.0], 't2.101.114.222': [0.467, 5.0]}), 'newmec-1'], [({'t2.103.114.223': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.223': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.223': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.223': [0.774, 5.0], 't3.103.114.223': [0.432, 5.0], 't1.103.114.223': [0.701, 6.667]}), 'newmec-3'], [({'t4.103.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.224': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.224': [0.49, 10.0], 't2.103.114.224': [0.459, 5.0]}), 'newmec-3'], [({'t5.103.114.225': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.225': [0.475, 5.0], 't3.103.114.225': [0.685, 5.0]}), 'newmec-3'], [({'t2.103.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.226': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.226': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.226': [0.53, 5.0], 't3.103.114.226': [0.545, 5.0], 't5.103.114.226': [0.623, 5.0]}), 'newmec-3'], [({'t5.101.114.227': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.227': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.227': [0.78, 5.0], 't2.101.114.227': [0.596, 5.0]}), 'newmec-1'], [({'t4.101.114.228': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.228': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.228': [0.685, 10.0], 't2.101.114.228': [0.723, 5.0]}), 'newmec-1'], [({'t3.103.114.229': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.229': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.229': [0.458, 5.0], 't4.103.114.229': [0.615, 10.0], 't5.103.114.229': [0.421, 5.0]}), 'newmec-3'], [({'t3.101.114.230': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.230': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.230': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.230': [0.719, 5.0], 't2.101.114.230': [0.664, 5.0], 't4.101.114.230': [0.585, 10.0]}), 'newmec-1'], [({'t1.103.114.231': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.231': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.231': [0.752, 6.667], 't4.103.114.231': [0.752, 10.0]}), 'newmec-3'], [({'t5.156.114.232': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.232': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.232': [0.44, 5.0], 't1.156.114.232': [0.596, 6.667]}), 'osboxes-0'], [({'t4.103.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.233': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.233': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.233': [0.505, 10.0], 't3.103.114.233': [0.495, 5.0], 't2.103.114.233': [0.453, 5.0]}), 'newmec-3'], [({'t5.101.114.234': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.234': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.234': [0.774, 5.0], 't1.101.114.234': [0.766, 6.667]}), 'newmec-1'], [({'t5.103.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.235': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.235': [0.476, 5.0], 't2.103.114.235': [0.664, 5.0]}), 'newmec-3'], [({'t2.101.114.236': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.236': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.236': [0.456, 5.0], 't5.101.114.236': [0.559, 5.0]}), 'newmec-1'], [({'t4.103.114.237': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.237': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.237': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.237': [0.65, 10.0], 't2.103.114.237': [0.637, 5.0], 't3.103.114.237': [0.507, 5.0]}), 'newmec-3'], [({'t5.103.114.238': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.238': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.238': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.238': [0.673, 5.0], 't2.103.114.238': [0.742, 5.0], 't1.103.114.238': [0.642, 6.667]}), 'newmec-3'], [({'t3.103.114.239': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.239': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.239': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.239': [0.756, 5.0], 't2.103.114.239': [0.509, 5.0], 't1.103.114.239': [0.6, 6.667]}), 'newmec-3'], [({'t5.102.114.240': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.240': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.240': [0.561, 5.0], 't1.102.114.240': [0.601, 6.667]}), 'newmec-2'], [({'t2.103.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.241': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.241': [0.564, 5.0], 't5.103.114.241': [0.542, 5.0]}), 'newmec-3'], [({'t4.101.114.242': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.242': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.242': [0.733, 10.0], 't1.101.114.242': [0.587, 6.667]}), 'newmec-1'], [({'t5.156.114.243': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.243': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.243': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.243': [0.459, 5.0], 't4.156.114.243': [0.621, 10.0], 't2.156.114.243': [0.635, 5.0]}), 'osboxes-0'], [({'t1.101.114.244': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.244': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.244': [0.679, 6.667], 't2.101.114.244': [0.78, 5.0]}), 'newmec-1'], [({'t4.156.114.245': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.245': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.245': [0.786, 10.0], 't2.156.114.245': [0.755, 5.0]}), 'osboxes-0'], [({'t3.103.114.246': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.246': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.246': [0.735, 5.0], 't2.103.114.246': [0.662, 5.0], 't4.103.114.246': [0.569, 10.0]}), 'newmec-3'], [({'t5.102.114.247': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.247': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.247': [0.7, 5.0], 't4.102.114.247': [0.544, 10.0]}), 'newmec-2'], [({'t4.102.114.248': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.248': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.248': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.248': [0.473, 10.0], 't5.102.114.248': [0.609, 5.0], 't3.102.114.248': [0.539, 5.0]}), 'newmec-2'], [({'t2.103.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.249': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.249': [0.578, 5.0], 't3.103.114.249': [0.742, 5.0]}), 'newmec-3'], [({'t2.103.114.250': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.250': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.250': [0.473, 5.0], 't3.103.114.250': [0.436, 5.0], 't4.103.114.250': [0.524, 10.0]}), 'newmec-3'], [({'t1.103.114.251': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.251': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.251': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.251': [0.494, 6.667], 't2.103.114.251': [0.581, 5.0], 't5.103.114.251': [0.784, 5.0]}), 'newmec-3'], [({'t2.101.114.252': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.252': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.252': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.252': [0.746, 5.0], 't3.101.114.252': [0.457, 5.0], 't1.101.114.252': [0.62, 6.667]}), 'newmec-1'], [({'t2.103.114.253': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.253': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.253': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.253': [0.621, 5.0], 't5.103.114.253': [0.623, 5.0], 't3.103.114.253': [0.483, 5.0]}), 'newmec-3'], [({'t1.103.114.254': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.254': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.254': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.254': [0.623, 6.667], 't5.103.114.254': [0.664, 5.0], 't2.103.114.254': [0.463, 5.0]}), 'newmec-3'], [({'t2.103.114.255': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.255': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.255': [0.656, 5.0], 't5.103.114.255': [0.706, 5.0]}), 'newmec-3'], [({'t2.103.114.256': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.256': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.256': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.256': [0.684, 5.0], 't1.103.114.256': [0.421, 6.667], 't5.103.114.256': [0.767, 5.0]}), 'newmec-3'], [({'t4.103.114.257': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.257': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.257': [0.412, 10.0], 't2.103.114.257': [0.766, 5.0]}), 'newmec-3'], [({'t3.101.114.258': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.258': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.258': [0.764, 5.0], 't1.101.114.258': [0.68, 6.667]}), 'newmec-1'], [({'t4.156.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.259': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.259': [0.53, 10.0], 't1.156.114.259': [0.683, 6.667]}), 'osboxes-0'], [({'t2.156.114.260': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.260': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.260': [0.752, 5.0], 't3.156.114.260': [0.475, 5.0]}), 'osboxes-0'], [({'t4.156.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.261': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.261': [0.489, 10.0], 't2.156.114.261': [0.771, 5.0]}), 'osboxes-0'], [({'t3.103.114.262': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.262': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.262': [0.542, 5.0], 't2.103.114.262': [0.412, 5.0]}), 'newmec-3'], [({'t4.103.114.263': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.263': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.263': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.263': [0.512, 10.0], 't1.103.114.263': [0.683, 6.667], 't2.103.114.263': [0.631, 5.0]}), 'newmec-3'], [({'t3.101.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.264': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.264': [0.407, 5.0], 't5.101.114.264': [0.599, 5.0]}), 'newmec-1'], [({'t3.101.114.265': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.265': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.265': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.265': [0.652, 5.0], 't5.101.114.265': [0.408, 5.0], 't4.101.114.265': [0.434, 10.0]}), 'newmec-1'], [({'t4.156.114.266': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.266': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.266': [0.472, 10.0], 't1.156.114.266': [0.527, 6.667]}), 'osboxes-0'], [({'t5.156.114.267': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.267': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.267': [0.729, 5.0], 't4.156.114.267': [0.579, 10.0]}), 'osboxes-0'], [({'t5.101.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.268': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.268': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.268': [0.746, 5.0], 't4.101.114.268': [0.539, 10.0], 't3.101.114.268': [0.622, 5.0]}), 'newmec-1'], [({'t4.103.114.269': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.269': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.269': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.269': [0.781, 10.0], 't2.103.114.269': [0.763, 5.0], 't1.103.114.269': [0.577, 6.667]}), 'newmec-3'], [({'t2.103.114.270': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.270': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.270': [0.473, 5.0], 't3.103.114.270': [0.466, 5.0]}), 'newmec-3'], [({'t5.103.114.271': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.271': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.271': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.271': [0.635, 5.0], 't3.103.114.271': [0.485, 5.0], 't2.103.114.271': [0.694, 5.0]}), 'newmec-3'], [({'t3.101.114.272': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.272': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.272': [0.514, 5.0], 't4.101.114.272': [0.657, 10.0]}), 'newmec-1'], [({'t5.101.114.273': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.273': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.273': [0.602, 5.0], 't2.101.114.273': [0.485, 5.0], 't4.101.114.273': [0.668, 10.0]}), 'newmec-1'], [({'t3.103.114.274': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.274': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.274': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.274': [0.716, 5.0], 't4.103.114.274': [0.614, 10.0], 't2.103.114.274': [0.51, 5.0]}), 'newmec-3'], [({'t4.101.114.275': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.275': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.275': [0.676, 10.0], 't3.101.114.275': [0.46, 5.0]}), 'newmec-1'], [({'t4.101.114.276': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.276': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.276': [0.618, 10.0], 't5.101.114.276': [0.656, 5.0]}), 'newmec-1'], [({'t3.101.114.277': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.277': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.277': [0.432, 5.0], 't4.101.114.277': [0.695, 10.0]}), 'newmec-1'], [({'t3.156.114.278': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.278': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.278': [0.54, 5.0], 't4.156.114.278': [0.701, 10.0]}), 'osboxes-0'], [({'t2.101.114.279': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.279': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.279': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.279': [0.633, 5.0], 't4.101.114.279': [0.571, 10.0], 't3.101.114.279': [0.489, 5.0]}), 'newmec-1'], [({'t2.101.114.280': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.280': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.280': [0.524, 5.0], 't5.101.114.280': [0.495, 5.0], 't1.101.114.280': [0.742, 6.667]}), 'newmec-1'], [({'t4.101.114.281': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.281': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.281': [0.769, 10.0], 't2.101.114.281': [0.588, 5.0], 't5.101.114.281': [0.627, 5.0]}), 'newmec-1'], [({'t4.101.114.282': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.282': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.282': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.282': [0.53, 10.0], 't3.101.114.282': [0.466, 5.0], 't1.101.114.282': [0.657, 6.667]}), 'newmec-1'], [({'t3.101.114.283': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.283': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.283': [0.526, 5.0], 't1.101.114.283': [0.454, 6.667]}), 'newmec-1'], [({'t2.102.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.284': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.284': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.284': [0.556, 5.0], 't4.102.114.284': [0.639, 10.0], 't3.102.114.284': [0.627, 5.0]}), 'newmec-2'], [({'t5.102.114.285': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.285': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.285': [0.452, 5.0], 't2.102.114.285': [0.776, 5.0]}), 'newmec-2'], [({'t3.102.114.286': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.286': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.286': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.286': [0.662, 5.0], 't1.102.114.286': [0.545, 6.667], 't2.102.114.286': [0.436, 5.0]}), 'newmec-2'], [({'t4.101.114.287': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.287': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.287': [0.764, 10.0], 't3.101.114.287': [0.47, 5.0]}), 'newmec-1'], [({'t1.102.114.288': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.288': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.288': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.288': [0.439, 6.667], 't3.102.114.288': [0.644, 5.0], 't5.102.114.288': [0.689, 5.0]}), 'newmec-2'], [({'t3.101.114.289': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.289': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.289': [0.474, 5.0], 't2.101.114.289': [0.715, 5.0]}), 'newmec-1'], [({'t3.103.114.290': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.290': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.290': [0.612, 5.0], 't4.103.114.290': [0.5, 10.0]}), 'newmec-3'], [({'t1.103.114.291': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.291': [0.779, 6.667], 't2.103.114.291': [0.468, 5.0]}), 'newmec-3'], [({'t4.101.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.292': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.292': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.292': [0.637, 10.0], 't2.101.114.292': [0.676, 5.0], 't5.101.114.292': [0.594, 5.0]}), 'newmec-1'], [({'t2.101.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.293': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.293': [0.657, 5.0], 't4.101.114.293': [0.479, 10.0]}), 'newmec-1'], [({'t2.103.114.294': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.294': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.294': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.294': [0.537, 5.0], 't5.103.114.294': [0.429, 5.0], 't4.103.114.294': [0.69, 10.0]}), 'newmec-3'], [({'t4.103.114.295': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.295': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.295': [0.607, 10.0], 't2.103.114.295': [0.664, 5.0]}), 'newmec-3'], [({'t4.101.114.296': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.296': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.296': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.296': [0.469, 10.0], 't5.101.114.296': [0.62, 5.0], 't1.101.114.296': [0.524, 6.667]}), 'newmec-1'], [({'t3.101.114.297': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.297': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.297': [0.435, 5.0], 't1.101.114.297': [0.529, 6.667]}), 'newmec-1'], [({'t4.102.114.298': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.298': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.298': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.298': [0.643, 10.0], 't2.102.114.298': [0.662, 5.0], 't1.102.114.298': [0.432, 6.667]}), 'newmec-2'], [({'t5.103.114.299': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.299': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.299': [0.591, 5.0], 't4.103.114.299': [0.59, 10.0]}), 'newmec-3'], [({'t3.101.114.300': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.300': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.300': [0.426, 5.0], 't1.101.114.300': [0.623, 6.667]}), 'newmec-1'], [({'t5.101.114.301': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.301': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.301': [0.542, 5.0], 't4.101.114.301': [0.442, 10.0]}), 'newmec-1'], [({'t3.101.114.302': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.302': [0.744, 5.0], 't4.101.114.302': [0.497, 10.0], 't5.101.114.302': [0.668, 5.0]}), 'newmec-1'], [({'t1.103.114.303': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.303': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.303': [0.438, 6.667], 't2.103.114.303': [0.468, 5.0]}), 'newmec-3'], [({'t2.101.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.304': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.304': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.304': [0.491, 5.0], 't3.101.114.304': [0.513, 5.0], 't4.101.114.304': [0.693, 10.0]}), 'newmec-1'], [({'t4.101.114.305': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.305': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.305': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.305': [0.454, 10.0], 't3.101.114.305': [0.745, 5.0], 't2.101.114.305': [0.415, 5.0]}), 'newmec-1'], [({'t3.102.114.306': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.306': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.306': [0.503, 5.0], 't4.102.114.306': [0.556, 10.0]}), 'newmec-2'], [({'t4.103.114.307': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.307': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.307': [0.572, 10.0], 't2.103.114.307': [0.47, 5.0]}), 'newmec-3'], [({'t2.103.114.308': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.308': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.308': [0.752, 5.0], 't1.103.114.308': [0.499, 6.667]}), 'newmec-3'], [({'t3.101.114.309': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.309': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.309': [0.514, 5.0], 't5.101.114.309': [0.515, 5.0], 't4.101.114.309': [0.42, 10.0]}), 'newmec-1'], [({'t5.103.114.310': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.310': [0.444, 5.0], 't3.103.114.310': [0.794, 5.0]}), 'newmec-3'], [({'t3.103.114.311': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.311': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.311': [0.509, 5.0], 't1.103.114.311': [0.422, 6.667]}), 'newmec-3'], [({'t1.102.114.312': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.312': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.312': [0.717, 6.667], 't3.102.114.312': [0.741, 5.0]}), 'newmec-2'], [({'t3.101.114.313': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.313': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.313': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.313': [0.517, 5.0], 't1.101.114.313': [0.552, 6.667], 't2.101.114.313': [0.654, 5.0]}), 'newmec-1'], [({'t3.156.114.314': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.314': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.314': [0.633, 5.0], 't2.156.114.314': [0.786, 5.0]}), 'osboxes-0'], [({'t1.102.114.315': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.315': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.315': [0.552, 6.667], 't5.102.114.315': [0.716, 5.0], 't2.102.114.315': [0.507, 5.0]}), 'newmec-2'], [({'t3.101.114.316': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.316': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.316': [0.486, 5.0], 't5.101.114.316': [0.669, 5.0]}), 'newmec-1'], [({'t3.103.114.317': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.317': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.317': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.317': [0.634, 5.0], 't4.103.114.317': [0.474, 10.0], 't2.103.114.317': [0.773, 5.0]}), 'newmec-3'], [({'t2.101.114.318': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.318': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.318': [0.419, 5.0], 't5.101.114.318': [0.701, 5.0]}), 'newmec-1'], [({'t3.103.114.319': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.319': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.319': [0.626, 5.0], 't2.103.114.319': [0.737, 5.0]}), 'newmec-3'], [({'t5.103.114.320': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.320': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.320': [0.787, 5.0], 't1.103.114.320': [0.449, 6.667]}), 'newmec-3'], [({'t4.101.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.321': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.321': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.321': [0.442, 10.0], 't2.101.114.321': [0.556, 5.0], 't3.101.114.321': [0.653, 5.0]}), 'newmec-1'], [({'t5.156.114.322': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.322': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.322': [0.576, 5.0], 't2.156.114.322': [0.479, 5.0], 't3.156.114.322': [0.411, 5.0]}), 'osboxes-0'], [({'t4.103.114.323': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.323': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.323': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.323': [0.58, 10.0], 't2.103.114.323': [0.611, 5.0], 't3.103.114.323': [0.673, 5.0]}), 'newmec-3'], [({'t5.103.114.324': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.324': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.324': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.324': [0.493, 5.0], 't4.103.114.324': [0.547, 10.0], 't2.103.114.324': [0.635, 5.0]}), 'newmec-3'], [({'t4.103.114.325': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.325': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.325': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.325': [0.615, 10.0], 't1.103.114.325': [0.568, 6.667], 't2.103.114.325': [0.56, 5.0]}), 'newmec-3'], [({'t4.103.114.326': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.326': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.326': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.326': [0.637, 10.0], 't2.103.114.326': [0.457, 5.0], 't1.103.114.326': [0.781, 6.667]}), 'newmec-3'], [({'t1.101.114.327': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.327': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.327': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.327': [0.617, 6.667], 't3.101.114.327': [0.503, 5.0], 't5.101.114.327': [0.496, 5.0]}), 'newmec-1'], [({'t3.156.114.328': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.328': [0.632, 5.0], 't4.156.114.328': [0.511, 10.0], 't5.156.114.328': [0.528, 5.0]}), 'osboxes-0'], [({'t2.103.114.329': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.329': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.329': [0.561, 5.0], 't1.103.114.329': [0.573, 6.667]}), 'newmec-3'], [({'t2.103.114.330': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.330': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.330': [0.601, 5.0], 't1.103.114.330': [0.461, 6.667]}), 'newmec-3'], [({'t4.101.114.331': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.331': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.331': [0.663, 10.0], 't3.101.114.331': [0.591, 5.0]}), 'newmec-1'], [({'t5.102.114.332': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.332': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.332': [0.789, 5.0], 't3.102.114.332': [0.696, 5.0], 't2.102.114.332': [0.488, 5.0]}), 'newmec-2'], [({'t1.101.114.333': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.333': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.333': [0.753, 6.667], 't4.101.114.333': [0.771, 10.0]}), 'newmec-1'], [({'t5.103.114.334': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.334': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.334': [0.717, 5.0], 't2.103.114.334': [0.494, 5.0]}), 'newmec-3'], [({'t4.101.114.335': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.335': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.335': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.335': [0.455, 10.0], 't2.101.114.335': [0.752, 5.0], 't5.101.114.335': [0.566, 5.0]}), 'newmec-1'], [({'t2.101.114.336': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.336': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.336': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.336': [0.684, 5.0], 't5.101.114.336': [0.43, 5.0], 't3.101.114.336': [0.54, 5.0]}), 'newmec-1'], [({'t5.101.114.337': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.337': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.337': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.337': [0.599, 5.0], 't1.101.114.337': [0.713, 6.667], 't3.101.114.337': [0.502, 5.0]}), 'newmec-1'], [({'t3.101.114.338': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.338': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.338': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.338': [0.556, 5.0], 't5.101.114.338': [0.478, 5.0], 't2.101.114.338': [0.639, 5.0]}), 'newmec-1'], [({'t5.156.114.339': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.339': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.339': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.339': [0.515, 5.0], 't3.156.114.339': [0.769, 5.0], 't1.156.114.339': [0.535, 6.667]}), 'osboxes-0'], [({'t2.101.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.340': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.340': [0.474, 5.0], 't5.101.114.340': [0.543, 5.0]}), 'newmec-1'], [({'t5.103.114.341': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.341': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.341': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.341': [0.539, 5.0], 't4.103.114.341': [0.761, 10.0], 't1.103.114.341': [0.63, 6.667]}), 'newmec-3'], [({'t3.156.114.342': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.342': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.342': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.342': [0.555, 5.0], 't2.156.114.342': [0.49, 5.0], 't4.156.114.342': [0.424, 10.0]}), 'osboxes-0'], [({'t3.103.114.343': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.343': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.343': [0.651, 5.0], 't4.103.114.343': [0.417, 10.0]}), 'newmec-3'], [({'t4.101.114.344': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.344': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.344': [0.713, 10.0], 't5.101.114.344': [0.636, 5.0], 't1.101.114.344': [0.672, 6.667]}), 'newmec-1'], [({'t5.103.114.345': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.345': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.345': [0.658, 5.0], 't1.103.114.345': [0.609, 6.667]}), 'newmec-3'], [({'t2.101.114.346': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.346': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.346': [0.548, 5.0], 't4.101.114.346': [0.715, 10.0]}), 'newmec-1'], [({'t4.101.114.347': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.347': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.347': [0.411, 10.0], 't1.101.114.347': [0.622, 6.667]}), 'newmec-1'], [({'t2.101.114.348': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.348': [0.74, 5.0], 't5.101.114.348': [0.456, 5.0]}), 'newmec-1'], [({'t5.103.114.349': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.349': [0.572, 5.0], 't2.103.114.349': [0.764, 5.0]}), 'newmec-3'], [({'t5.103.114.350': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.350': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.350': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.350': [0.788, 5.0], 't4.103.114.350': [0.543, 10.0], 't3.103.114.350': [0.643, 5.0]}), 'newmec-3'], [({'t3.101.114.351': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.351': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.351': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.351': [0.499, 5.0], 't2.101.114.351': [0.604, 5.0], 't4.101.114.351': [0.589, 10.0]}), 'newmec-1'], [({'t2.156.114.352': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.352': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.352': [0.545, 5.0], 't3.156.114.352': [0.402, 5.0], 't5.156.114.352': [0.711, 5.0]}), 'osboxes-0'], [({'t3.103.114.353': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.353': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.353': [0.757, 5.0], 't5.103.114.353': [0.58, 5.0]}), 'newmec-3'], [({'t3.101.114.354': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.354': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.354': [0.455, 5.0], 't2.101.114.354': [0.607, 5.0]}), 'newmec-1'], [({'t3.102.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.355': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.355': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.355': [0.537, 5.0], 't5.102.114.355': [0.794, 5.0], 't2.102.114.355': [0.459, 5.0]}), 'newmec-2'], [({'t5.101.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.356': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.356': [0.776, 5.0], 't3.101.114.356': [0.521, 5.0]}), 'newmec-1'], [({'t4.102.114.357': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.357': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.357': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.357': [0.605, 10.0], 't3.102.114.357': [0.701, 5.0], 't2.102.114.357': [0.415, 5.0]}), 'newmec-2'], [({'t4.102.114.358': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.358': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.358': [0.595, 10.0], 't2.102.114.358': [0.59, 5.0]}), 'newmec-2'], [({'t1.103.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.359': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.359': [0.694, 6.667], 't3.103.114.359': [0.41, 5.0]}), 'newmec-3'], [({'t2.103.114.360': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.360': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.360': [0.523, 5.0], 't3.103.114.360': [0.54, 5.0], 't5.103.114.360': [0.662, 5.0]}), 'newmec-3'], [({'t3.156.114.361': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.361': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.361': [0.56, 5.0], 't4.156.114.361': [0.43, 10.0]}), 'osboxes-0'], [({'t3.103.114.362': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.362': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.362': [0.489, 5.0], 't5.103.114.362': [0.471, 5.0]}), 'newmec-3'], [({'t2.103.114.363': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.363': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.363': [0.479, 5.0], 't5.103.114.363': [0.539, 5.0]}), 'newmec-3'], [({'t3.101.114.364': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.364': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.364': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.364': [0.69, 5.0], 't4.101.114.364': [0.473, 10.0], 't1.101.114.364': [0.428, 6.667]}), 'newmec-1'], [({'t2.101.114.365': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.365': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.365': [0.758, 5.0], 't4.101.114.365': [0.582, 10.0]}), 'newmec-1'], [({'t3.102.114.366': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.366': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.366': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.366': [0.468, 5.0], 't1.102.114.366': [0.41, 6.667], 't2.102.114.366': [0.54, 5.0]}), 'newmec-2'], [({'t5.102.114.367': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.367': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.367': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.367': [0.619, 5.0], 't1.102.114.367': [0.719, 6.667], 't4.102.114.367': [0.416, 10.0]}), 'newmec-2'], [({'t1.103.114.368': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.368': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.368': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.368': [0.653, 6.667], 't2.103.114.368': [0.789, 5.0], 't4.103.114.368': [0.763, 10.0]}), 'newmec-3'], [({'t5.103.114.369': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.369': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.369': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.369': [0.663, 5.0], 't4.103.114.369': [0.441, 10.0], 't1.103.114.369': [0.693, 6.667]}), 'newmec-3'], [({'t1.101.114.370': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.370': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.370': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.370': [0.559, 6.667], 't3.101.114.370': [0.598, 5.0], 't2.101.114.370': [0.569, 5.0]}), 'newmec-1'], [({'t1.101.114.371': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.371': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.371': [0.544, 6.667], 't4.101.114.371': [0.425, 10.0]}), 'newmec-1'], [({'t2.101.114.372': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.372': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.372': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.372': [0.641, 5.0], 't5.101.114.372': [0.614, 5.0], 't3.101.114.372': [0.612, 5.0]}), 'newmec-1'], [({'t5.103.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.373': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.373': [0.416, 5.0], 't2.103.114.373': [0.547, 5.0]}), 'newmec-3'], [({'t2.156.114.374': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.374': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.374': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.374': [0.687, 5.0], 't3.156.114.374': [0.794, 5.0], 't5.156.114.374': [0.437, 5.0]}), 'osboxes-0'], [({'t3.103.114.375': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.375': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.375': [0.62, 5.0], 't4.103.114.375': [0.774, 10.0], 't5.103.114.375': [0.488, 5.0]}), 'newmec-3'], [({'t5.101.114.376': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.376': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.376': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.376': [0.402, 5.0], 't1.101.114.376': [0.752, 6.667], 't2.101.114.376': [0.697, 5.0]}), 'newmec-1'], [({'t5.102.114.377': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.377': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.377': [0.663, 5.0], 't1.102.114.377': [0.711, 6.667], 't4.102.114.377': [0.523, 10.0]}), 'newmec-2'], [({'t5.103.114.378': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.378': [0.798, 5.0], 't2.103.114.378': [0.526, 5.0]}), 'newmec-3'], [({'t2.101.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.379': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.379': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.379': [0.536, 5.0], 't4.101.114.379': [0.45, 10.0], 't3.101.114.379': [0.403, 5.0]}), 'newmec-1'], [({'t1.156.114.380': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.380': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.380': [0.731, 6.667], 't2.156.114.380': [0.624, 5.0]}), 'osboxes-0'], [({'t5.101.114.381': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.381': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.381': [0.793, 5.0], 't2.101.114.381': [0.542, 5.0]}), 'newmec-1'], [({'t1.103.114.382': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.382': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.382': [0.754, 6.667], 't2.103.114.382': [0.677, 5.0]}), 'newmec-3'], [({'t4.101.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.383': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.383': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.383': [0.769, 10.0], 't2.101.114.383': [0.44, 5.0], 't5.101.114.383': [0.675, 5.0]}), 'newmec-1'], [({'t4.101.114.384': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.384': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.384': [0.404, 10.0], 't3.101.114.384': [0.722, 5.0]}), 'newmec-1'], [({'t3.103.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.385': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.385': [0.435, 5.0], 't2.103.114.385': [0.405, 5.0]}), 'newmec-3'], [({'t2.101.114.386': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.386': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.386': [0.433, 5.0], 't4.101.114.386': [0.614, 10.0]}), 'newmec-1'], [({'t3.101.114.387': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.387': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.387': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.387': [0.555, 5.0], 't1.101.114.387': [0.415, 6.667], 't2.101.114.387': [0.516, 5.0]}), 'newmec-1'], [({'t2.103.114.388': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.388': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.388': [0.643, 5.0], 't4.103.114.388': [0.6, 10.0]}), 'newmec-3'], [({'t5.101.114.389': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.389': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.389': [0.732, 5.0], 't3.101.114.389': [0.716, 5.0]}), 'newmec-1'], [({'t1.101.114.390': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.390': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.390': [0.796, 6.667], 't2.101.114.390': [0.718, 5.0]}), 'newmec-1'], [({'t2.103.114.391': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.391': [0.718, 5.0], 't4.103.114.391': [0.741, 10.0]}), 'newmec-3'], [({'t4.101.114.392': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.392': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.392': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.392': [0.686, 10.0], 't3.101.114.392': [0.582, 5.0], 't5.101.114.392': [0.649, 5.0]}), 'newmec-1'], [({'t4.101.114.393': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.393': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.393': [0.734, 10.0], 't3.101.114.393': [0.417, 5.0]}), 'newmec-1'], [({'t2.103.114.394': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.394': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.394': [0.721, 5.0], 't1.103.114.394': [0.629, 6.667]}), 'newmec-3'], [({'t2.101.114.395': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.395': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.395': [0.441, 5.0], 't1.101.114.395': [0.682, 6.667]}), 'newmec-1'], [({'t1.101.114.396': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.396': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.396': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.396': [0.415, 6.667], 't3.101.114.396': [0.513, 5.0], 't4.101.114.396': [0.468, 10.0]}), 'newmec-1'], [({'t5.103.114.397': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.397': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.397': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.397': [0.494, 5.0], 't4.103.114.397': [0.501, 10.0], 't3.103.114.397': [0.532, 5.0]}), 'newmec-3'], [({'t5.101.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.398': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.398': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.398': [0.664, 5.0], 't2.101.114.398': [0.742, 5.0], 't1.101.114.398': [0.417, 6.667]}), 'newmec-1'], [({'t1.103.114.399': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.399': [0.466, 6.667], 't3.103.114.399': [0.643, 5.0]}), 'newmec-3'], [({'t4.103.114.400': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.400': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.400': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.400': [0.598, 10.0], 't1.103.114.400': [0.574, 6.667], 't2.103.114.400': [0.715, 5.0]}), 'newmec-3'], [({'t4.101.114.401': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.401': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.401': [0.72, 10.0], 't1.101.114.401': [0.776, 6.667]}), 'newmec-1'], [({'t5.103.114.402': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.402': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.402': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.402': [0.625, 5.0], 't3.103.114.402': [0.531, 5.0], 't4.103.114.402': [0.578, 10.0]}), 'newmec-3'], [({'t3.101.114.403': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.403': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.403': [0.459, 5.0], 't4.101.114.403': [0.737, 10.0]}), 'newmec-1'], [({'t3.102.114.404': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.404': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.404': [0.795, 5.0], 't4.102.114.404': [0.524, 10.0]}), 'newmec-2'], [({'t2.156.114.405': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.405': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.405': [0.483, 5.0], 't4.156.114.405': [0.523, 10.0]}), 'osboxes-0'], [({'t1.103.114.406': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.406': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.406': [0.492, 6.667], 't2.103.114.406': [0.675, 5.0]}), 'newmec-3'], [({'t1.103.114.407': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.407': [0.759, 6.667], 't5.103.114.407': [0.528, 5.0]}), 'newmec-3'], [({'t2.156.114.408': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.408': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.408': [0.469, 5.0], 't3.156.114.408': [0.71, 5.0]}), 'osboxes-0'], [({'t3.101.114.409': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.409': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.409': [0.554, 5.0], 't2.101.114.409': [0.754, 5.0]}), 'newmec-1'], [({'t4.101.114.410': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.410': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.410': [0.651, 10.0], 't5.101.114.410': [0.423, 5.0]}), 'newmec-1'], [({'t1.102.114.411': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.411': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.411': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.411': [0.687, 6.667], 't5.102.114.411': [0.796, 5.0], 't2.102.114.411': [0.589, 5.0]}), 'newmec-2'], [({'t1.101.114.412': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.412': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.412': [0.668, 6.667], 't4.101.114.412': [0.62, 10.0]}), 'newmec-1'], [({'t4.101.114.413': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.413': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.413': [0.794, 10.0], 't2.101.114.413': [0.648, 5.0]}), 'newmec-1'], [({'t1.101.114.414': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.414': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.414': [0.65, 6.667], 't2.101.114.414': [0.643, 5.0]}), 'newmec-1'], [({'t5.102.114.415': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.415': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.415': [0.579, 5.0], 't3.102.114.415': [0.68, 5.0]}), 'newmec-2'], [({'t2.101.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.416': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.416': [0.795, 5.0], 't5.101.114.416': [0.403, 5.0]}), 'newmec-1'], [({'t5.103.114.417': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.417': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.417': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.417': [0.706, 5.0], 't2.103.114.417': [0.776, 5.0], 't1.103.114.417': [0.69, 6.667]}), 'newmec-3'], [({'t4.102.114.418': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.418': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.418': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.418': [0.588, 10.0], 't2.102.114.418': [0.556, 5.0], 't5.102.114.418': [0.744, 5.0]}), 'newmec-2'], [({'t2.103.114.419': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.419': [0.534, 5.0], 't3.103.114.419': [0.784, 5.0]}), 'newmec-3'], [({'t3.103.114.420': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.420': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.420': [0.749, 5.0], 't5.103.114.420': [0.467, 5.0]}), 'newmec-3'], [({'t4.103.114.421': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.421': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.421': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.421': [0.571, 10.0], 't2.103.114.421': [0.545, 5.0], 't5.103.114.421': [0.517, 5.0]}), 'newmec-3'], [({'t4.101.114.422': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.422': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.422': [0.511, 10.0], 't3.101.114.422': [0.59, 5.0]}), 'newmec-1'], [({'t5.103.114.423': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.423': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.423': [0.495, 5.0], 't2.103.114.423': [0.5, 5.0]}), 'newmec-3'], [({'t4.103.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.424': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.424': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.424': [0.773, 10.0], 't2.103.114.424': [0.715, 5.0], 't3.103.114.424': [0.757, 5.0]}), 'newmec-3'], [({'t3.102.114.425': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.425': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.425': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.425': [0.606, 5.0], 't2.102.114.425': [0.636, 5.0], 't1.102.114.425': [0.543, 6.667]}), 'newmec-2'], [({'t5.101.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.426': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.426': [0.503, 5.0], 't4.101.114.426': [0.478, 10.0]}), 'newmec-1'], [({'t5.101.114.427': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.427': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.427': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.427': [0.743, 5.0], 't2.101.114.427': [0.597, 5.0], 't1.101.114.427': [0.66, 6.667]}), 'newmec-1'], [({'t4.156.114.428': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.428': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.428': [0.775, 10.0], 't3.156.114.428': [0.428, 5.0]}), 'osboxes-0'], [({'t2.101.114.429': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.429': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.429': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.429': [0.668, 5.0], 't4.101.114.429': [0.449, 10.0], 't5.101.114.429': [0.789, 5.0]}), 'newmec-1'], [({'t2.101.114.430': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.430': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.430': [0.596, 5.0], 't3.101.114.430': [0.722, 5.0]}), 'newmec-1'], [({'t4.101.114.431': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.431': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.431': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.431': [0.592, 10.0], 't5.101.114.431': [0.795, 5.0], 't1.101.114.431': [0.719, 6.667]}), 'newmec-1'], [({'t2.103.114.432': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.432': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.432': [0.623, 5.0], 't5.103.114.432': [0.594, 5.0]}), 'newmec-3'], [({'t1.103.114.433': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.433': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.433': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.433': [0.697, 6.667], 't2.103.114.433': [0.512, 5.0], 't3.103.114.433': [0.502, 5.0]}), 'newmec-3'], [({'t5.103.114.434': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.434': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.434': [0.506, 5.0], 't2.103.114.434': [0.445, 5.0]}), 'newmec-3'], [({'t5.101.114.435': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.435': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.435': [0.53, 5.0], 't4.101.114.435': [0.475, 10.0]}), 'newmec-1'], [({'t3.103.114.436': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.436': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.436': [0.533, 5.0], 't5.103.114.436': [0.771, 5.0]}), 'newmec-3'], [({'t2.156.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.437': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.437': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.437': [0.617, 5.0], 't1.156.114.437': [0.455, 6.667], 't3.156.114.437': [0.73, 5.0]}), 'osboxes-0'], [({'t5.156.114.438': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.438': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.438': [0.692, 5.0], 't4.156.114.438': [0.494, 10.0], 't2.156.114.438': [0.563, 5.0]}), 'osboxes-0'], [({'t2.156.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.439': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.439': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.439': [0.47, 5.0], 't1.156.114.439': [0.671, 6.667], 't3.156.114.439': [0.663, 5.0]}), 'osboxes-0'], [({'t2.102.114.440': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.440': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.440': [0.671, 5.0], 't4.102.114.440': [0.76, 10.0], 't5.102.114.440': [0.737, 5.0]}), 'newmec-2'], [({'t4.102.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.441': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.441': [0.583, 10.0], 't2.102.114.441': [0.565, 5.0]}), 'newmec-2'], [({'t2.102.114.442': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.442': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.442': [0.435, 5.0], 't1.102.114.442': [0.71, 6.667], 't3.102.114.442': [0.708, 5.0]}), 'newmec-2'], [({'t2.103.114.443': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.443': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.443': [0.509, 5.0], 't4.103.114.443': [0.691, 10.0]}), 'newmec-3'], [({'t3.103.114.444': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.444': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.444': [0.497, 5.0], 't2.103.114.444': [0.782, 5.0]}), 'newmec-3'], [({'t3.101.114.445': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.445': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.445': [0.658, 5.0], 't5.101.114.445': [0.406, 5.0]}), 'newmec-1'], [({'t2.101.114.446': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.446': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.446': [0.581, 5.0], 't4.101.114.446': [0.772, 10.0]}), 'newmec-1'], [({'t1.156.114.447': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.447': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.447': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.447': [0.744, 6.667], 't4.156.114.447': [0.532, 10.0], 't2.156.114.447': [0.413, 5.0]}), 'osboxes-0'], [({'t5.101.114.448': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.448': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.448': [0.48, 5.0], 't3.101.114.448': [0.455, 5.0]}), 'newmec-1'], [({'t1.101.114.449': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.449': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.449': [0.619, 6.667], 't4.101.114.449': [0.656, 10.0]}), 'newmec-1'], [({'t4.101.114.450': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.450': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.450': [0.47, 10.0], 't3.101.114.450': [0.679, 5.0]}), 'newmec-1'], [({'t5.103.114.451': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.451': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.451': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.451': [0.776, 5.0], 't4.103.114.451': [0.43, 10.0], 't1.103.114.451': [0.79, 6.667]}), 'newmec-3'], [({'t5.103.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.452': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.452': [0.713, 5.0], 't2.103.114.452': [0.572, 5.0]}), 'newmec-3'], [({'t3.103.114.453': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.453': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.453': [0.499, 5.0], 't1.103.114.453': [0.615, 6.667], 't2.103.114.453': [0.757, 5.0]}), 'newmec-3'], [({'t2.102.114.454': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.454': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.454': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.454': [0.663, 5.0], 't3.102.114.454': [0.506, 5.0], 't1.102.114.454': [0.683, 6.667]}), 'newmec-2'], [({'t4.103.114.455': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.455': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.455': [0.582, 10.0], 't2.103.114.455': [0.577, 5.0]}), 'newmec-3'], [({'t4.103.114.456': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.456': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.456': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.456': [0.625, 10.0], 't2.103.114.456': [0.577, 5.0], 't5.103.114.456': [0.534, 5.0]}), 'newmec-3'], [({'t5.103.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.457': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.457': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.457': [0.626, 5.0], 't1.103.114.457': [0.7, 6.667], 't4.103.114.457': [0.424, 10.0]}), 'newmec-3'], [({'t5.103.114.458': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.458': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.458': [0.675, 5.0], 't4.103.114.458': [0.406, 10.0]}), 'newmec-3'], [({'t2.156.114.459': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.459': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.459': [0.424, 5.0], 't3.156.114.459': [0.723, 5.0], 't4.156.114.459': [0.482, 10.0]}), 'osboxes-0'], [({'t2.103.114.460': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.460': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.460': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.460': [0.74, 5.0], 't5.103.114.460': [0.496, 5.0], 't1.103.114.460': [0.763, 6.667]}), 'newmec-3'], [({'t3.156.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.461': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.461': [0.583, 5.0], 't4.156.114.461': [0.494, 10.0]}), 'osboxes-0'], [({'t5.102.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.462': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.462': [0.587, 5.0], 't2.102.114.462': [0.623, 5.0]}), 'newmec-2'], [({'t5.103.114.463': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.463': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.463': [0.556, 5.0], 't1.103.114.463': [0.584, 6.667], 't2.103.114.463': [0.549, 5.0]}), 'newmec-3'], [({'t4.102.114.464': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.464': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.464': [0.783, 10.0], 't3.102.114.464': [0.457, 5.0]}), 'newmec-2'], [({'t3.101.114.465': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.465': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.465': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.465': [0.757, 5.0], 't4.101.114.465': [0.641, 10.0], 't5.101.114.465': [0.558, 5.0]}), 'newmec-1'], [({'t4.156.114.466': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.466': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.466': [0.476, 10.0], 't5.156.114.466': [0.72, 5.0]}), 'osboxes-0'], [({'t4.101.114.467': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.467': [0.424, 10.0], 't3.101.114.467': [0.521, 5.0]}), 'newmec-1'], [({'t4.101.114.468': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.468': [0.783, 10.0], 't2.101.114.468': [0.722, 5.0], 't3.101.114.468': [0.493, 5.0]}), 'newmec-1'], [({'t1.103.114.469': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.469': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.469': [0.531, 6.667], 't4.103.114.469': [0.694, 10.0], 't5.103.114.469': [0.508, 5.0]}), 'newmec-3'], [({'t4.103.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.470': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.470': [0.513, 10.0], 't3.103.114.470': [0.681, 5.0]}), 'newmec-3'], [({'t5.103.114.471': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.471': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.471': [0.488, 5.0], 't1.103.114.471': [0.751, 6.667]}), 'newmec-3'], [({'t3.103.114.472': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.472': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.472': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.472': [0.517, 5.0], 't5.103.114.472': [0.545, 5.0], 't1.103.114.472': [0.482, 6.667]}), 'newmec-3'], [({'t5.101.114.473': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.473': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.473': [0.73, 5.0], 't2.101.114.473': [0.589, 5.0]}), 'newmec-1'], [({'t5.103.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.474': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.474': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.474': [0.74, 5.0], 't3.103.114.474': [0.651, 5.0], 't4.103.114.474': [0.646, 10.0]}), 'newmec-3'], [({'t3.103.114.475': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.475': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.475': [0.408, 5.0], 't5.103.114.475': [0.503, 5.0], 't2.103.114.475': [0.452, 5.0]}), 'newmec-3'], [({'t3.101.114.476': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.476': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.476': [0.472, 5.0], 't5.101.114.476': [0.517, 5.0]}), 'newmec-1'], [({'t5.103.114.477': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.477': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.477': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.477': [0.702, 5.0], 't4.103.114.477': [0.599, 10.0], 't3.103.114.477': [0.519, 5.0]}), 'newmec-3'], [({'t1.103.114.478': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.478': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.478': [0.62, 6.667], 't2.103.114.478': [0.503, 5.0]}), 'newmec-3'], [({'t1.156.114.479': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.479': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.479': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.479': [0.786, 6.667], 't3.156.114.479': [0.565, 5.0], 't4.156.114.479': [0.753, 10.0]}), 'osboxes-0'], [({'t5.103.114.480': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.480': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.480': [0.665, 5.0], 't3.103.114.480': [0.429, 5.0]}), 'newmec-3'], [({'t1.102.114.481': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.481': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.481': [0.503, 6.667], 't2.102.114.481': [0.653, 5.0]}), 'newmec-2'], [({'t1.103.114.482': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.482': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.482': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.482': [0.425, 6.667], 't4.103.114.482': [0.586, 10.0], 't2.103.114.482': [0.608, 5.0]}), 'newmec-3'], [({'t1.103.114.483': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.483': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.483': [0.485, 6.667], 't4.103.114.483': [0.604, 10.0]}), 'newmec-3'], [({'t3.101.114.484': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.484': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.484': [0.774, 5.0], 't2.101.114.484': [0.438, 5.0]}), 'newmec-1'], [({'t5.103.114.485': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.485': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.485': [0.427, 5.0], 't2.103.114.485': [0.702, 5.0]}), 'newmec-3'], [({'t2.103.114.486': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.486': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.486': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.486': [0.602, 5.0], 't4.103.114.486': [0.549, 10.0], 't5.103.114.486': [0.677, 5.0]}), 'newmec-3'], [({'t5.101.114.487': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.487': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.487': [0.684, 5.0], 't2.101.114.487': [0.713, 5.0], 't4.101.114.487': [0.691, 10.0]}), 'newmec-1'], [({'t2.103.114.488': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.488': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.488': [0.434, 5.0], 't1.103.114.488': [0.712, 6.667]}), 'newmec-3'], [({'t1.103.114.489': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.489': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.489': [0.676, 6.667], 't2.103.114.489': [0.697, 5.0]}), 'newmec-3'], [({'t2.156.114.490': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.490': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.490': [0.585, 5.0], 't4.156.114.490': [0.437, 10.0], 't5.156.114.490': [0.485, 5.0]}), 'osboxes-0'], [({'t5.101.114.491': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.491': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.491': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.491': [0.705, 5.0], 't4.101.114.491': [0.751, 10.0], 't2.101.114.491': [0.512, 5.0]}), 'newmec-1'], [({'t4.103.114.492': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.492': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.492': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.492': [0.509, 10.0], 't5.103.114.492': [0.552, 5.0], 't2.103.114.492': [0.745, 5.0]}), 'newmec-3'], [({'t4.101.114.493': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.493': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.493': [0.607, 10.0], 't1.101.114.493': [0.406, 6.667]}), 'newmec-1'], [({'t2.103.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.494': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.494': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.494': [0.515, 5.0], 't4.103.114.494': [0.69, 10.0], 't3.103.114.494': [0.552, 5.0]}), 'newmec-3'], [({'t2.103.114.495': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.495': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.495': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.495': [0.783, 5.0], 't3.103.114.495': [0.408, 5.0], 't4.103.114.495': [0.422, 10.0]}), 'newmec-3'], [({'t3.103.114.496': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.496': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.496': [0.469, 5.0], 't4.103.114.496': [0.764, 10.0]}), 'newmec-3'], [({'t4.102.114.497': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.497': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.497': [0.771, 10.0], 't5.102.114.497': [0.411, 5.0]}), 'newmec-2'], [({'t1.101.114.498': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.498': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.498': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.498': [0.504, 6.667], 't5.101.114.498': [0.644, 5.0], 't2.101.114.498': [0.496, 5.0]}), 'newmec-1'], [({'t3.101.114.499': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.499': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.499': [0.671, 5.0], 't2.101.114.499': [0.645, 5.0]}), 'newmec-1'], [({'t3.102.114.500': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.500': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.500': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.500': [0.66, 5.0], 't2.102.114.500': [0.582, 5.0], 't5.102.114.500': [0.549, 5.0]}), 'newmec-2'], [({'t4.102.114.501': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.501': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.501': [0.52, 10.0], 't5.102.114.501': [0.471, 5.0], 't2.102.114.501': [0.608, 5.0]}), 'newmec-2'], [({'t2.103.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.502': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.502': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.502': [0.789, 5.0], 't3.103.114.502': [0.678, 5.0], 't4.103.114.502': [0.631, 10.0]}), 'newmec-3'], [({'t5.156.114.503': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.503': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.503': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.503': [0.537, 5.0], 't4.156.114.503': [0.583, 10.0], 't1.156.114.503': [0.467, 6.667]}), 'osboxes-0'], [({'t2.102.114.504': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.504': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.504': [0.407, 5.0], 't5.102.114.504': [0.692, 5.0]}), 'newmec-2'], [({'t5.101.114.505': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.505': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.505': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.505': [0.436, 5.0], 't2.101.114.505': [0.549, 5.0], 't4.101.114.505': [0.698, 10.0]}), 'newmec-1'], [({'t2.101.114.506': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.506': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.506': [0.424, 5.0], 't5.101.114.506': [0.777, 5.0]}), 'newmec-1'], [({'t4.103.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.507': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.507': [0.63, 10.0], 't2.103.114.507': [0.758, 5.0]}), 'newmec-3'], [({'t4.101.114.508': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.508': [0.635, 10.0], 't3.101.114.508': [0.457, 5.0]}), 'newmec-1'], [({'t3.156.114.509': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.509': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.509': [0.602, 5.0], 't5.156.114.509': [0.688, 5.0]}), 'osboxes-0'], [({'t3.101.114.510': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.510': [0.468, 5.0], 't2.101.114.510': [0.718, 5.0]}), 'newmec-1'], [({'t2.102.114.511': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.511': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.511': [0.493, 5.0], 't1.102.114.511': [0.487, 6.667]}), 'newmec-2'], [({'t4.101.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.512': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.512': [0.521, 10.0], 't1.101.114.512': [0.427, 6.667], 't5.101.114.512': [0.598, 5.0]}), 'newmec-1'], [({'t2.103.114.513': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.513': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.513': [0.723, 5.0], 't4.103.114.513': [0.487, 10.0]}), 'newmec-3'], [({'t1.103.114.514': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.514': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.514': [0.448, 6.667], 't4.103.114.514': [0.517, 10.0]}), 'newmec-3'], [({'t4.103.114.515': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.515': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.515': [0.489, 10.0], 't2.103.114.515': [0.492, 5.0]}), 'newmec-3'], [({'t1.156.114.516': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.516': [0.718, 6.667], 't2.156.114.516': [0.414, 5.0]}), 'osboxes-0'], [({'t5.103.114.517': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.517': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.517': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.517': [0.568, 5.0], 't2.103.114.517': [0.733, 5.0], 't3.103.114.517': [0.55, 5.0]}), 'newmec-3'], [({'t2.103.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.518': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.518': [0.665, 5.0], 't1.103.114.518': [0.694, 6.667]}), 'newmec-3'], [({'t2.101.114.519': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.519': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.519': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.519': [0.551, 5.0], 't3.101.114.519': [0.442, 5.0], 't1.101.114.519': [0.417, 6.667]}), 'newmec-1'], [({'t5.101.114.520': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.520': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.520': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.520': [0.726, 5.0], 't1.101.114.520': [0.652, 6.667], 't3.101.114.520': [0.534, 5.0]}), 'newmec-1'], [({'t3.103.114.521': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.521': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.521': [0.656, 5.0], 't2.103.114.521': [0.4, 5.0]}), 'newmec-3'], [({'t3.101.114.522': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.522': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.522': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.522': [0.739, 5.0], 't5.101.114.522': [0.699, 5.0], 't2.101.114.522': [0.416, 5.0]}), 'newmec-1'], [({'t5.102.114.523': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.523': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.523': [0.738, 5.0], 't3.102.114.523': [0.403, 5.0]}), 'newmec-2'], [({'t1.103.114.524': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.524': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.524': [0.776, 6.667], 't5.103.114.524': [0.635, 5.0]}), 'newmec-3'], [({'t3.103.114.525': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.525': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.525': [0.566, 5.0], 't4.103.114.525': [0.409, 10.0]}), 'newmec-3'], [({'t3.103.114.526': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.526': [0.763, 5.0], 't2.103.114.526': [0.576, 5.0]}), 'newmec-3'], [({'t1.101.114.527': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.527': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.527': [0.546, 6.667], 't5.101.114.527': [0.477, 5.0]}), 'newmec-1'], [({'t4.103.114.528': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.528': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.528': [0.611, 10.0], 't2.103.114.528': [0.599, 5.0]}), 'newmec-3'], [({'t1.101.114.529': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.529': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.529': [0.437, 6.667], 't5.101.114.529': [0.403, 5.0]}), 'newmec-1'], [({'t3.103.114.530': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.530': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.530': [0.496, 5.0], 't5.103.114.530': [0.676, 5.0], 't4.103.114.530': [0.703, 10.0]}), 'newmec-3'], [({'t2.103.114.531': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.531': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.531': [0.436, 5.0], 't3.103.114.531': [0.511, 5.0]}), 'newmec-3'], [({'t4.156.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.532': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.532': [0.452, 10.0], 't1.156.114.532': [0.695, 6.667]}), 'osboxes-0'], [({'t2.103.114.533': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.533': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.533': [0.682, 5.0], 't3.103.114.533': [0.676, 5.0], 't4.103.114.533': [0.472, 10.0]}), 'newmec-3'], [({'t4.103.114.534': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.534': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.534': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.534': [0.411, 10.0], 't2.103.114.534': [0.451, 5.0], 't3.103.114.534': [0.562, 5.0]}), 'newmec-3'], [({'t3.103.114.535': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.535': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.535': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.535': [0.426, 5.0], 't2.103.114.535': [0.675, 5.0], 't4.103.114.535': [0.731, 10.0]}), 'newmec-3'], [({'t3.102.114.536': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.536': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.536': [0.537, 5.0], 't2.102.114.536': [0.715, 5.0]}), 'newmec-2'], [({'t3.101.114.537': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.537': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.537': [0.608, 5.0], 't5.101.114.537': [0.669, 5.0]}), 'newmec-1'], [({'t2.101.114.538': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.538': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.538': [0.62, 5.0], 't1.101.114.538': [0.645, 6.667], 't5.101.114.538': [0.517, 5.0]}), 'newmec-1'], [({'t4.101.114.539': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.539': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.539': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.539': [0.578, 10.0], 't5.101.114.539': [0.555, 5.0], 't2.101.114.539': [0.59, 5.0]}), 'newmec-1'], [({'t1.101.114.540': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.540': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.540': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.540': [0.568, 6.667], 't3.101.114.540': [0.713, 5.0], 't4.101.114.540': [0.416, 10.0]}), 'newmec-1'], [({'t5.101.114.541': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.541': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.541': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.541': [0.541, 5.0], 't4.101.114.541': [0.765, 10.0], 't3.101.114.541': [0.787, 5.0]}), 'newmec-1'], [({'t2.156.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.542': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.542': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.542': [0.723, 5.0], 't1.156.114.542': [0.501, 6.667], 't4.156.114.542': [0.774, 10.0]}), 'osboxes-0'], [({'t3.103.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.543': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.543': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.543': [0.587, 5.0], 't5.103.114.543': [0.765, 5.0], 't4.103.114.543': [0.689, 10.0]}), 'newmec-3'], [({'t4.101.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.544': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.544': [0.415, 10.0], 't5.101.114.544': [0.646, 5.0]}), 'newmec-1'], [({'t4.102.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.545': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.545': [0.416, 10.0], 't5.102.114.545': [0.793, 5.0]}), 'newmec-2'], [({'t2.103.114.546': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.546': [0.752, 5.0], 't4.103.114.546': [0.424, 10.0]}), 'newmec-3'], [({'t5.103.114.547': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.547': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.547': [0.763, 5.0], 't2.103.114.547': [0.723, 5.0]}), 'newmec-3'], [({'t4.102.114.548': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.548': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.548': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.548': [0.711, 10.0], 't3.102.114.548': [0.573, 5.0], 't1.102.114.548': [0.518, 6.667]}), 'newmec-2'], [({'t5.103.114.549': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.549': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.549': [0.698, 5.0], 't1.103.114.549': [0.505, 6.667], 't2.103.114.549': [0.606, 5.0]}), 'newmec-3'], [({'t3.156.114.550': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.550': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.550': [0.695, 5.0], 't1.156.114.550': [0.716, 6.667]}), 'osboxes-0'], [({'t1.102.114.551': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.551': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.551': [0.687, 6.667], 't5.102.114.551': [0.79, 5.0], 't4.102.114.551': [0.682, 10.0]}), 'newmec-2'], [({'t2.101.114.552': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.552': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.552': [0.406, 5.0], 't5.101.114.552': [0.763, 5.0], 't4.101.114.552': [0.728, 10.0]}), 'newmec-1'], [({'t2.101.114.553': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.553': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.553': [0.53, 5.0], 't3.101.114.553': [0.751, 5.0], 't1.101.114.553': [0.627, 6.667]}), 'newmec-1'], [({'t3.101.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.554': [0.521, 5.0], 't2.101.114.554': [0.603, 5.0]}), 'newmec-1'], [({'t3.156.114.555': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.555': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.555': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.555': [0.486, 5.0], 't2.156.114.555': [0.433, 5.0], 't5.156.114.555': [0.797, 5.0]}), 'osboxes-0'], [({'t1.101.114.556': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.556': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.556': [0.456, 6.667], 't5.101.114.556': [0.506, 5.0]}), 'newmec-1'], [({'t3.102.114.557': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.557': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.557': [0.56, 5.0], 't5.102.114.557': [0.671, 5.0]}), 'newmec-2'], [({'t2.103.114.558': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.558': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.558': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.558': [0.401, 5.0], 't4.103.114.558': [0.448, 10.0], 't3.103.114.558': [0.449, 5.0]}), 'newmec-3'], [({'t5.103.114.559': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.559': [0.67, 5.0], 't4.103.114.559': [0.558, 10.0]}), 'newmec-3'], [({'t5.103.114.560': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.560': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.560': [0.782, 5.0], 't4.103.114.560': [0.689, 10.0], 't2.103.114.560': [0.593, 5.0]}), 'newmec-3'], [({'t5.101.114.561': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.561': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.561': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.561': [0.56, 5.0], 't4.101.114.561': [0.41, 10.0], 't2.101.114.561': [0.483, 5.0]}), 'newmec-1'], [({'t2.103.114.562': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.562': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.562': [0.516, 5.0], 't5.103.114.562': [0.417, 5.0]}), 'newmec-3'], [({'t3.103.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.563': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.563': [0.754, 5.0], 't5.103.114.563': [0.594, 5.0]}), 'newmec-3'], [({'t4.103.114.564': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.564': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.564': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.564': [0.47, 10.0], 't5.103.114.564': [0.768, 5.0], 't2.103.114.564': [0.49, 5.0]}), 'newmec-3'], [({'t5.102.114.565': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.565': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.565': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.565': [0.597, 5.0], 't1.102.114.565': [0.472, 6.667], 't2.102.114.565': [0.413, 5.0]}), 'newmec-2'], [({'t1.101.114.566': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.566': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.566': [0.45, 6.667], 't5.101.114.566': [0.74, 5.0]}), 'newmec-1'], [({'t3.101.114.567': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.567': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.567': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.567': [0.59, 5.0], 't1.101.114.567': [0.559, 6.667], 't5.101.114.567': [0.719, 5.0]}), 'newmec-1'], [({'t2.102.114.568': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.568': [0.567, 5.0], 't5.102.114.568': [0.788, 5.0]}), 'newmec-2'], [({'t2.103.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.569': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.569': [0.764, 5.0], 't3.103.114.569': [0.718, 5.0]}), 'newmec-3'], [({'t5.101.114.570': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.570': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.570': [0.544, 5.0], 't4.101.114.570': [0.407, 10.0]}), 'newmec-1'], [({'t2.103.114.571': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.571': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.571': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.571': [0.453, 5.0], 't3.103.114.571': [0.604, 5.0], 't4.103.114.571': [0.64, 10.0]}), 'newmec-3'], [({'t1.101.114.572': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.572': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.572': [0.669, 6.667], 't3.101.114.572': [0.443, 5.0], 't4.101.114.572': [0.554, 10.0]}), 'newmec-1'], [({'t4.101.114.573': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.573': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.573': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.573': [0.525, 10.0], 't3.101.114.573': [0.462, 5.0], 't2.101.114.573': [0.468, 5.0]}), 'newmec-1'], [({'t3.101.114.574': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.574': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.574': [0.7, 5.0], 't4.101.114.574': [0.793, 10.0]}), 'newmec-1'], [({'t5.101.114.575': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.575': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.575': [0.672, 5.0], 't2.101.114.575': [0.568, 5.0], 't4.101.114.575': [0.732, 10.0]}), 'newmec-1'], [({'t1.101.114.576': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.576': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.576': [0.445, 6.667], 't4.101.114.576': [0.762, 10.0]}), 'newmec-1'], [({'t5.102.114.577': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.577': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.577': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.577': [0.502, 5.0], 't3.102.114.577': [0.754, 5.0], 't1.102.114.577': [0.599, 6.667]}), 'newmec-2'], [({'t2.102.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.578': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.578': [0.49, 5.0], 't4.102.114.578': [0.555, 10.0]}), 'newmec-2'], [({'t5.103.114.579': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.579': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.579': [0.528, 5.0], 't4.103.114.579': [0.677, 10.0]}), 'newmec-3'], [({'t5.101.114.580': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.580': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.580': [0.525, 5.0], 't3.101.114.580': [0.587, 5.0]}), 'newmec-1'], [({'t4.101.114.581': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.581': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.581': [0.404, 10.0], 't3.101.114.581': [0.783, 5.0]}), 'newmec-1'], [({'t1.101.114.582': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.582': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.582': [0.475, 6.667], 't3.101.114.582': [0.441, 5.0], 't4.101.114.582': [0.773, 10.0]}), 'newmec-1'], [({'t5.101.114.583': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.583': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.583': [0.63, 5.0], 't3.101.114.583': [0.701, 5.0]}), 'newmec-1'], [({'t4.156.114.584': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.584': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.584': [0.424, 10.0], 't2.156.114.584': [0.555, 5.0], 't5.156.114.584': [0.754, 5.0]}), 'osboxes-0'], [({'t5.101.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.585': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.585': [0.681, 5.0], 't4.101.114.585': [0.679, 10.0]}), 'newmec-1'], [({'t1.103.114.586': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.586': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.586': [0.738, 6.667], 't5.103.114.586': [0.406, 5.0]}), 'newmec-3'], [({'t2.101.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.587': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.587': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.587': [0.741, 5.0], 't4.101.114.587': [0.722, 10.0], 't3.101.114.587': [0.726, 5.0]}), 'newmec-1'], [({'t4.156.114.588': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.588': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.588': [0.6, 10.0], 't5.156.114.588': [0.444, 5.0]}), 'osboxes-0'], [({'t4.102.114.589': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.589': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.589': [0.733, 10.0], 't5.102.114.589': [0.597, 5.0]}), 'newmec-2'], [({'t4.101.114.590': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.590': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.590': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.590': [0.757, 10.0], 't3.101.114.590': [0.508, 5.0], 't5.101.114.590': [0.47, 5.0]}), 'newmec-1'], [({'t4.101.114.591': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.591': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.591': [0.717, 10.0], 't2.101.114.591': [0.446, 5.0]}), 'newmec-1'], [({'t5.101.114.592': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.592': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.592': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.592': [0.488, 5.0], 't2.101.114.592': [0.461, 5.0], 't3.101.114.592': [0.433, 5.0]}), 'newmec-1'], [({'t1.103.114.593': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.593': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.593': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.593': [0.742, 6.667], 't4.103.114.593': [0.681, 10.0], 't3.103.114.593': [0.499, 5.0]}), 'newmec-3'], [({'t3.101.114.594': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.594': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.594': [0.567, 5.0], 't5.101.114.594': [0.629, 5.0]}), 'newmec-1'], [({'t2.103.114.595': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.595': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.595': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.595': [0.594, 5.0], 't3.103.114.595': [0.748, 5.0], 't5.103.114.595': [0.452, 5.0]}), 'newmec-3'], [({'t2.103.114.596': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.596': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.596': [0.677, 5.0], 't5.103.114.596': [0.498, 5.0]}), 'newmec-3'], [({'t1.156.114.597': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.597': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.597': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.597': [0.765, 6.667], 't2.156.114.597': [0.604, 5.0], 't4.156.114.597': [0.618, 10.0]}), 'osboxes-0'], [({'t5.103.114.598': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.598': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.598': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.598': [0.683, 5.0], 't3.103.114.598': [0.74, 5.0], 't4.103.114.598': [0.578, 10.0]}), 'newmec-3'], [({'t1.102.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.599': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.599': [0.43, 6.667], 't5.102.114.599': [0.672, 5.0], 't3.102.114.599': [0.71, 5.0]}), 'newmec-2']]
host_names4 = {'192.168.122.102': 'newmec-2', '192.168.122.103': 'newmec-3', '192.168.122.156': 'osboxes-0', '192.168.122.101': 'newmec-1'}
record5 = [[({'t4.101.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.0': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.0': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.0': [0.784, 10.0], 't3.101.114.0': [0.666, 5.0], 't1.101.114.0': [0.754, 6.667]}), 'newmec-1'], [({'t1.101.114.1': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.1': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.1': [0.794, 6.667], 't5.101.114.1': [0.703, 5.0]}), 'newmec-1'], [({'t2.156.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.2': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.2': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.2': [0.612, 5.0], 't4.156.114.2': [0.676, 10.0], 't1.156.114.2': [0.773, 6.667]}), 'osboxes-0'], [({'t1.102.114.3': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.3': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.3': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.3': [0.76, 6.667], 't5.102.114.3': [0.593, 5.0], 't4.102.114.3': [0.668, 10.0]}), 'newmec-2'], [({'t2.102.114.4': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.4': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.4': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.4': [0.563, 5.0], 't4.102.114.4': [0.487, 10.0], 't3.102.114.4': [0.616, 5.0]}), 'newmec-2'], [({'t5.104.114.5': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.5': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.5': [0.756, 5.0], 't4.104.114.5': [0.772, 10.0]}), 'newmec-4'], [({'t1.101.114.6': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.6': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.6': [0.593, 6.667], 't2.101.114.6': [0.633, 5.0]}), 'newmec-1'], [({'t2.102.114.7': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.7': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.7': [0.778, 5.0], 't5.102.114.7': [0.5, 5.0]}), 'newmec-2'], [({'t5.103.114.8': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.8': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.8': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.8': [0.699, 5.0], 't3.103.114.8': [0.735, 5.0], 't2.103.114.8': [0.525, 5.0]}), 'newmec-3'], [({'t2.102.114.9': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.9': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.9': [0.606, 5.0], 't4.102.114.9': [0.755, 10.0]}), 'newmec-2'], [({'t1.104.114.10': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.10': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.10': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.10': [0.656, 6.667], 't5.104.114.10': [0.696, 5.0], 't4.104.114.10': [0.654, 10.0]}), 'newmec-4'], [({'t1.156.114.11': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.11': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.11': [0.695, 6.667], 't5.156.114.11': [0.607, 5.0]}), 'osboxes-0'], [({'t4.104.114.12': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.12': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.12': [0.655, 10.0], 't5.104.114.12': [0.658, 5.0], 't2.104.114.12': [0.693, 5.0]}), 'newmec-4'], [({'t5.156.114.13': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.13': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.13': [0.47, 5.0], 't3.156.114.13': [0.536, 5.0]}), 'osboxes-0'], [({'t3.101.114.14': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.14': [0.634, 5.0], 't2.101.114.14': [0.6, 5.0]}), 'newmec-1'], [({'t3.101.114.15': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.15': [0.506, 5.0], 't5.101.114.15': [0.7, 5.0]}), 'newmec-1'], [({'t3.101.114.16': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.16': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.16': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.16': [0.661, 5.0], 't4.101.114.16': [0.714, 10.0], 't2.101.114.16': [0.469, 5.0]}), 'newmec-1'], [({'t3.101.114.17': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.17': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.17': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.17': [0.423, 5.0], 't4.101.114.17': [0.662, 10.0], 't1.101.114.17': [0.464, 6.667]}), 'newmec-1'], [({'t4.102.114.18': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.18': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.18': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.18': [0.459, 10.0], 't5.102.114.18': [0.402, 5.0], 't1.102.114.18': [0.614, 6.667]}), 'newmec-2'], [({'t3.101.114.19': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.19': [0.603, 5.0], 't4.101.114.19': [0.612, 10.0]}), 'newmec-1'], [({'t5.156.114.20': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.20': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.20': [0.515, 5.0], 't4.156.114.20': [0.684, 10.0]}), 'osboxes-0'], [({'t5.102.114.21': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.21': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.21': [0.526, 5.0], 't4.102.114.21': [0.709, 10.0]}), 'newmec-2'], [({'t3.104.114.22': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.22': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.22': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.22': [0.485, 5.0], 't5.104.114.22': [0.545, 5.0], 't2.104.114.22': [0.519, 5.0]}), 'newmec-4'], [({'t5.104.114.23': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.23': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.23': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.23': [0.791, 5.0], 't2.104.114.23': [0.766, 5.0], 't3.104.114.23': [0.671, 5.0]}), 'newmec-4'], [({'t2.156.114.24': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.24': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.24': [0.514, 5.0], 't4.156.114.24': [0.411, 10.0]}), 'osboxes-0'], [({'t1.103.114.25': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.25': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.25': [0.545, 6.667], 't3.103.114.25': [0.624, 5.0], 't4.103.114.25': [0.648, 10.0]}), 'newmec-3'], [({'t2.103.114.26': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.26': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.26': [0.667, 5.0], 't5.103.114.26': [0.74, 5.0]}), 'newmec-3'], [({'t3.156.114.27': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.27': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.27': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.27': [0.626, 5.0], 't1.156.114.27': [0.53, 6.667], 't4.156.114.27': [0.67, 10.0]}), 'osboxes-0'], [({'t4.104.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.28': [0.781, 10.0], 't2.104.114.28': [0.439, 5.0]}), 'newmec-4'], [({'t5.101.114.29': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.29': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.29': [0.418, 5.0], 't2.101.114.29': [0.738, 5.0]}), 'newmec-1'], [({'t3.104.114.30': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.30': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.30': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.30': [0.558, 5.0], 't5.104.114.30': [0.477, 5.0], 't4.104.114.30': [0.494, 10.0]}), 'newmec-4'], [({'t4.104.114.31': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.31': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.31': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.31': [0.48, 10.0], 't2.104.114.31': [0.748, 5.0], 't1.104.114.31': [0.403, 6.667]}), 'newmec-4'], [({'t3.101.114.32': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.32': [0.617, 5.0], 't5.101.114.32': [0.419, 5.0]}), 'newmec-1'], [({'t2.101.114.33': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.33': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.33': [0.491, 5.0], 't5.101.114.33': [0.606, 5.0]}), 'newmec-1'], [({'t3.101.114.34': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.34': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.34': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.34': [0.518, 5.0], 't4.101.114.34': [0.595, 10.0], 't2.101.114.34': [0.4, 5.0]}), 'newmec-1'], [({'t2.104.114.35': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.35': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.35': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.35': [0.775, 5.0], 't3.104.114.35': [0.432, 5.0], 't4.104.114.35': [0.665, 10.0]}), 'newmec-4'], [({'t1.104.114.36': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.36': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.36': [0.471, 6.667], 't4.104.114.36': [0.532, 10.0]}), 'newmec-4'], [({'t2.103.114.37': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.37': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.37': [0.64, 5.0], 't5.103.114.37': [0.49, 5.0]}), 'newmec-3'], [({'t5.101.114.38': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.38': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.38': [0.464, 5.0], 't1.101.114.38': [0.57, 6.667], 't2.101.114.38': [0.764, 5.0]}), 'newmec-1'], [({'t4.102.114.39': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.39': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.39': [0.417, 10.0], 't1.102.114.39': [0.476, 6.667]}), 'newmec-2'], [({'t4.103.114.40': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.40': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.40': [0.633, 10.0], 't5.103.114.40': [0.515, 5.0], 't3.103.114.40': [0.546, 5.0]}), 'newmec-3'], [({'t1.103.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.41': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.41': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.41': [0.748, 6.667], 't3.103.114.41': [0.495, 5.0], 't4.103.114.41': [0.77, 10.0]}), 'newmec-3'], [({'t2.103.114.42': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.42': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.42': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.42': [0.427, 5.0], 't1.103.114.42': [0.638, 6.667], 't3.103.114.42': [0.629, 5.0]}), 'newmec-3'], [({'t4.101.114.43': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.43': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.43': [0.482, 10.0], 't5.101.114.43': [0.602, 5.0], 't2.101.114.43': [0.739, 5.0]}), 'newmec-1'], [({'t5.102.114.44': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.44': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.44': [0.681, 5.0], 't2.102.114.44': [0.665, 5.0]}), 'newmec-2'], [({'t4.101.114.45': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.45': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.45': [0.739, 10.0], 't5.101.114.45': [0.687, 5.0]}), 'newmec-1'], [({'t5.104.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.46': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.46': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.46': [0.654, 5.0], 't2.104.114.46': [0.69, 5.0], 't1.104.114.46': [0.647, 6.667]}), 'newmec-4'], [({'t4.104.114.47': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.47': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.47': [0.434, 10.0], 't2.104.114.47': [0.507, 5.0], 't1.104.114.47': [0.431, 6.667]}), 'newmec-4'], [({'t1.101.114.48': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.48': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.48': [0.55, 6.667], 't3.101.114.48': [0.647, 5.0]}), 'newmec-1'], [({'t2.156.114.49': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.49': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.49': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.49': [0.736, 5.0], 't1.156.114.49': [0.622, 6.667], 't3.156.114.49': [0.673, 5.0]}), 'osboxes-0'], [({'t2.104.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.50': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.50': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.50': [0.639, 5.0], 't5.104.114.50': [0.738, 5.0], 't4.104.114.50': [0.707, 10.0]}), 'newmec-4'], [({'t2.103.114.51': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.51': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.51': [0.673, 5.0], 't3.103.114.51': [0.533, 5.0]}), 'newmec-3'], [({'t2.104.114.52': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.52': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.52': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.52': [0.534, 5.0], 't1.104.114.52': [0.455, 6.667], 't3.104.114.52': [0.607, 5.0]}), 'newmec-4'], [({'t5.101.114.53': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.53': [0.737, 5.0], 't1.101.114.53': [0.423, 6.667]}), 'newmec-1'], [({'t4.102.114.54': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.54': [0.618, 10.0], 't5.102.114.54': [0.555, 5.0]}), 'newmec-2'], [({'t2.101.114.55': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.55': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.55': [0.478, 5.0], 't3.101.114.55': [0.641, 5.0], 't1.101.114.55': [0.482, 6.667]}), 'newmec-1'], [({'t3.102.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.56': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.56': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.56': [0.531, 5.0], 't5.102.114.56': [0.678, 5.0], 't4.102.114.56': [0.688, 10.0]}), 'newmec-2'], [({'t1.103.114.57': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.57': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.57': [0.45, 6.667], 't5.103.114.57': [0.578, 5.0]}), 'newmec-3'], [({'t3.101.114.58': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.58': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.58': [0.685, 5.0], 't4.101.114.58': [0.434, 10.0]}), 'newmec-1'], [({'t3.103.114.59': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.59': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.59': [0.759, 5.0], 't5.103.114.59': [0.564, 5.0], 't2.103.114.59': [0.64, 5.0]}), 'newmec-3'], [({'t1.102.114.60': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.60': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.60': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.60': [0.647, 6.667], 't2.102.114.60': [0.612, 5.0], 't4.102.114.60': [0.78, 10.0]}), 'newmec-2'], [({'t5.156.114.61': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.61': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.61': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.61': [0.784, 5.0], 't4.156.114.61': [0.593, 10.0], 't3.156.114.61': [0.416, 5.0]}), 'osboxes-0'], [({'t5.156.114.62': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.62': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.62': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.62': [0.503, 5.0], 't2.156.114.62': [0.666, 5.0], 't4.156.114.62': [0.573, 10.0]}), 'osboxes-0'], [({'t1.101.114.63': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.63': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.63': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.63': [0.727, 6.667], 't3.101.114.63': [0.693, 5.0], 't2.101.114.63': [0.601, 5.0]}), 'newmec-1'], [({'t5.102.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.64': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.64': [0.532, 5.0], 't3.102.114.64': [0.786, 5.0]}), 'newmec-2'], [({'t4.102.114.65': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.65': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.65': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.65': [0.511, 10.0], 't1.102.114.65': [0.699, 6.667], 't2.102.114.65': [0.483, 5.0]}), 'newmec-2'], [({'t4.102.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.66': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.66': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.66': [0.618, 10.0], 't2.102.114.66': [0.786, 5.0], 't3.102.114.66': [0.597, 5.0]}), 'newmec-2'], [({'t5.156.114.67': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.67': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.67': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.67': [0.747, 5.0], 't2.156.114.67': [0.417, 5.0], 't3.156.114.67': [0.643, 5.0]}), 'osboxes-0'], [({'t5.156.114.68': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.68': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.68': [0.49, 5.0], 't4.156.114.68': [0.432, 10.0]}), 'osboxes-0'], [({'t3.104.114.69': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.69': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.69': [0.67, 5.0], 't2.104.114.69': [0.444, 5.0]}), 'newmec-4'], [({'t1.104.114.70': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.70': [0.676, 6.667], 't4.104.114.70': [0.495, 10.0]}), 'newmec-4'], [({'t5.156.114.71': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.71': [0.465, 5.0], 't2.156.114.71': [0.759, 5.0], 't4.156.114.71': [0.622, 10.0]}), 'osboxes-0'], [({'t1.104.114.72': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.72': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.72': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.72': [0.692, 6.667], 't2.104.114.72': [0.603, 5.0], 't3.104.114.72': [0.604, 5.0]}), 'newmec-4'], [({'t4.102.114.73': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.73': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.73': [0.779, 10.0], 't2.102.114.73': [0.514, 5.0]}), 'newmec-2'], [({'t5.103.114.74': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.74': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.74': [0.799, 5.0], 't3.103.114.74': [0.691, 5.0], 't2.103.114.74': [0.667, 5.0]}), 'newmec-3'], [({'t3.102.114.75': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.75': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.75': [0.55, 5.0], 't2.102.114.75': [0.529, 5.0]}), 'newmec-2'], [({'t4.156.114.76': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.76': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.76': [0.75, 10.0], 't5.156.114.76': [0.675, 5.0]}), 'osboxes-0'], [({'t5.104.114.77': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.77': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.77': [0.785, 5.0], 't2.104.114.77': [0.486, 5.0]}), 'newmec-4'], [({'t4.156.114.78': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.78': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.78': [0.554, 10.0], 't5.156.114.78': [0.487, 5.0]}), 'osboxes-0'], [({'t1.104.114.79': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.79': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.79': [0.782, 6.667], 't2.104.114.79': [0.628, 5.0]}), 'newmec-4'], [({'t2.102.114.80': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.80': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.80': [0.495, 5.0], 't3.102.114.80': [0.482, 5.0]}), 'newmec-2'], [({'t3.104.114.81': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.81': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.81': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.81': [0.744, 5.0], 't1.104.114.81': [0.594, 6.667], 't4.104.114.81': [0.648, 10.0]}), 'newmec-4'], [({'t3.102.114.82': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.82': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.82': [0.79, 5.0], 't5.102.114.82': [0.765, 5.0]}), 'newmec-2'], [({'t1.102.114.83': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.83': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.83': [0.401, 6.667], 't5.102.114.83': [0.663, 5.0]}), 'newmec-2'], [({'t5.104.114.84': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.84': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.84': [0.505, 5.0], 't3.104.114.84': [0.788, 5.0]}), 'newmec-4'], [({'t5.156.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.85': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.85': [0.785, 5.0], 't4.156.114.85': [0.645, 10.0]}), 'osboxes-0'], [({'t2.101.114.86': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.86': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.86': [0.431, 5.0], 't5.101.114.86': [0.471, 5.0]}), 'newmec-1'], [({'t3.156.114.87': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.87': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.87': [0.727, 5.0], 't1.156.114.87': [0.722, 6.667]}), 'osboxes-0'], [({'t4.103.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.88': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.88': [0.581, 10.0], 't2.103.114.88': [0.731, 5.0]}), 'newmec-3'], [({'t3.104.114.89': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.89': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.89': [0.505, 5.0], 't4.104.114.89': [0.713, 10.0]}), 'newmec-4'], [({'t1.103.114.90': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.90': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.90': [0.49, 6.667], 't4.103.114.90': [0.463, 10.0]}), 'newmec-3'], [({'t2.102.114.91': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.91': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.91': [0.511, 5.0], 't4.102.114.91': [0.698, 10.0], 't5.102.114.91': [0.502, 5.0]}), 'newmec-2'], [({'t3.101.114.92': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.92': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.92': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.92': [0.709, 5.0], 't2.101.114.92': [0.547, 5.0], 't5.101.114.92': [0.745, 5.0]}), 'newmec-1'], [({'t5.101.114.93': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.93': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.93': [0.749, 5.0], 't4.101.114.93': [0.446, 10.0]}), 'newmec-1'], [({'t3.156.114.94': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.94': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.94': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.94': [0.528, 5.0], 't2.156.114.94': [0.405, 5.0], 't4.156.114.94': [0.531, 10.0]}), 'osboxes-0'], [({'t4.102.114.95': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.95': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.95': [0.429, 10.0], 't5.102.114.95': [0.622, 5.0]}), 'newmec-2'], [({'t3.103.114.96': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.96': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.96': [0.541, 5.0], 't5.103.114.96': [0.76, 5.0]}), 'newmec-3'], [({'t3.156.114.97': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.97': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.97': [0.529, 5.0], 't5.156.114.97': [0.501, 5.0]}), 'osboxes-0'], [({'t1.104.114.98': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.98': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.98': [0.447, 6.667], 't3.104.114.98': [0.418, 5.0]}), 'newmec-4'], [({'t3.156.114.99': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.99': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.99': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.99': [0.624, 5.0], 't2.156.114.99': [0.507, 5.0], 't5.156.114.99': [0.712, 5.0]}), 'osboxes-0'], [({'t3.156.114.100': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.100': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.100': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.100': [0.551, 5.0], 't5.156.114.100': [0.628, 5.0], 't4.156.114.100': [0.687, 10.0]}), 'osboxes-0'], [({'t2.156.114.101': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.101': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.101': [0.559, 5.0], 't5.156.114.101': [0.749, 5.0]}), 'osboxes-0'], [({'t4.104.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.102': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.102': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.102': [0.481, 10.0], 't3.104.114.102': [0.787, 5.0], 't5.104.114.102': [0.405, 5.0]}), 'newmec-4'], [({'t2.102.114.103': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.103': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.103': [0.756, 5.0], 't4.102.114.103': [0.746, 10.0]}), 'newmec-2'], [({'t1.103.114.104': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.104': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.104': [0.513, 6.667], 't3.103.114.104': [0.497, 5.0]}), 'newmec-3'], [({'t5.104.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.105': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.105': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.105': [0.676, 5.0], 't4.104.114.105': [0.44, 10.0], 't3.104.114.105': [0.411, 5.0]}), 'newmec-4'], [({'t5.156.114.106': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.106': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.106': [0.651, 5.0], 't3.156.114.106': [0.686, 5.0], 't4.156.114.106': [0.564, 10.0]}), 'osboxes-0'], [({'t2.101.114.107': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.107': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.107': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.107': [0.506, 5.0], 't1.101.114.107': [0.731, 6.667], 't3.101.114.107': [0.755, 5.0]}), 'newmec-1'], [({'t3.104.114.108': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.108': [0.543, 5.0], 't5.104.114.108': [0.491, 5.0]}), 'newmec-4'], [({'t3.104.114.109': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.109': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.109': [0.56, 5.0], 't5.104.114.109': [0.758, 5.0], 't2.104.114.109': [0.446, 5.0]}), 'newmec-4'], [({'t4.101.114.110': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.110': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.110': [0.478, 10.0], 't3.101.114.110': [0.536, 5.0]}), 'newmec-1'], [({'t2.101.114.111': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.111': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.111': [0.717, 5.0], 't1.101.114.111': [0.8, 6.667], 't4.101.114.111': [0.681, 10.0]}), 'newmec-1'], [({'t5.104.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.112': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.112': [0.439, 5.0], 't2.104.114.112': [0.68, 5.0]}), 'newmec-4'], [({'t1.101.114.113': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.113': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.113': [0.668, 6.667], 't4.101.114.113': [0.507, 10.0], 't5.101.114.113': [0.647, 5.0]}), 'newmec-1'], [({'t2.156.114.114': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.114': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.114': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.114': [0.405, 5.0], 't1.156.114.114': [0.712, 6.667], 't3.156.114.114': [0.538, 5.0]}), 'osboxes-0'], [({'t1.101.114.115': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.115': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.115': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.115': [0.707, 6.667], 't2.101.114.115': [0.516, 5.0], 't3.101.114.115': [0.667, 5.0]}), 'newmec-1'], [({'t2.101.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.116': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.116': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.116': [0.482, 5.0], 't5.101.114.116': [0.539, 5.0], 't1.101.114.116': [0.703, 6.667]}), 'newmec-1'], [({'t5.102.114.117': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.117': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.117': [0.721, 5.0], 't3.102.114.117': [0.501, 5.0]}), 'newmec-2'], [({'t5.102.114.118': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.118': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.118': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.118': [0.783, 5.0], 't1.102.114.118': [0.716, 6.667], 't4.102.114.118': [0.731, 10.0]}), 'newmec-2'], [({'t3.104.114.119': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.119': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.119': [0.595, 5.0], 't2.104.114.119': [0.783, 5.0]}), 'newmec-4'], [({'t3.104.114.120': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.120': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.120': [0.68, 5.0], 't5.104.114.120': [0.554, 5.0]}), 'newmec-4'], [({'t2.104.114.121': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.121': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.121': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.121': [0.784, 5.0], 't3.104.114.121': [0.596, 5.0], 't5.104.114.121': [0.495, 5.0]}), 'newmec-4'], [({'t5.101.114.122': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.122': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.122': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.122': [0.738, 5.0], 't4.101.114.122': [0.657, 10.0], 't1.101.114.122': [0.444, 6.667]}), 'newmec-1'], [({'t5.156.114.123': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.123': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.123': [0.674, 5.0], 't2.156.114.123': [0.706, 5.0]}), 'osboxes-0'], [({'t4.102.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.124': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.124': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.124': [0.741, 10.0], 't3.102.114.124': [0.437, 5.0], 't2.102.114.124': [0.717, 5.0]}), 'newmec-2'], [({'t5.101.114.125': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.125': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.125': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.125': [0.671, 5.0], 't1.101.114.125': [0.735, 6.667], 't2.101.114.125': [0.593, 5.0]}), 'newmec-1'], [({'t5.103.114.126': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.126': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.126': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.126': [0.501, 5.0], 't3.103.114.126': [0.458, 5.0], 't2.103.114.126': [0.638, 5.0]}), 'newmec-3'], [({'t4.101.114.127': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.127': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.127': [0.446, 10.0], 't1.101.114.127': [0.5, 6.667], 't2.101.114.127': [0.688, 5.0]}), 'newmec-1'], [({'t4.101.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.128': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.128': [0.768, 10.0], 't3.101.114.128': [0.702, 5.0]}), 'newmec-1'], [({'t2.101.114.129': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.129': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.129': [0.651, 5.0], 't4.101.114.129': [0.695, 10.0]}), 'newmec-1'], [({'t3.101.114.130': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.130': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.130': [0.544, 5.0], 't4.101.114.130': [0.617, 10.0]}), 'newmec-1'], [({'t3.102.114.131': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.131': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.131': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.131': [0.657, 5.0], 't2.102.114.131': [0.582, 5.0], 't5.102.114.131': [0.555, 5.0]}), 'newmec-2'], [({'t4.101.114.132': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.132': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.132': [0.412, 10.0], 't3.101.114.132': [0.405, 5.0]}), 'newmec-1'], [({'t4.103.114.133': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.133': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.133': [0.678, 10.0], 't3.103.114.133': [0.61, 5.0]}), 'newmec-3'], [({'t3.104.114.134': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.134': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.134': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.134': [0.623, 5.0], 't5.104.114.134': [0.504, 5.0], 't4.104.114.134': [0.626, 10.0]}), 'newmec-4'], [({'t2.104.114.135': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.135': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.135': [0.615, 5.0], 't5.104.114.135': [0.433, 5.0]}), 'newmec-4'], [({'t3.102.114.136': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.136': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.136': [0.508, 5.0], 't5.102.114.136': [0.703, 5.0], 't4.102.114.136': [0.547, 10.0]}), 'newmec-2'], [({'t4.102.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.137': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.137': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.137': [0.554, 10.0], 't3.102.114.137': [0.795, 5.0], 't2.102.114.137': [0.735, 5.0]}), 'newmec-2'], [({'t2.102.114.138': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.138': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.138': [0.661, 5.0], 't4.102.114.138': [0.47, 10.0]}), 'newmec-2'], [({'t2.156.114.139': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.139': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.139': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.139': [0.559, 5.0], 't4.156.114.139': [0.719, 10.0], 't5.156.114.139': [0.784, 5.0]}), 'osboxes-0'], [({'t4.103.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.140': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.140': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.140': [0.78, 10.0], 't2.103.114.140': [0.438, 5.0], 't3.103.114.140': [0.449, 5.0]}), 'newmec-3'], [({'t5.156.114.141': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.141': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.141': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.141': [0.548, 5.0], 't1.156.114.141': [0.729, 6.667], 't4.156.114.141': [0.598, 10.0]}), 'osboxes-0'], [({'t4.102.114.142': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.142': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.142': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.142': [0.486, 10.0], 't1.102.114.142': [0.61, 6.667], 't2.102.114.142': [0.494, 5.0]}), 'newmec-2'], [({'t5.102.114.143': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.143': [0.496, 5.0], 't4.102.114.143': [0.519, 10.0]}), 'newmec-2'], [({'t4.103.114.144': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.144': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.144': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.144': [0.541, 10.0], 't2.103.114.144': [0.727, 5.0], 't5.103.114.144': [0.627, 5.0]}), 'newmec-3'], [({'t3.104.114.145': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.145': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.145': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.145': [0.53, 5.0], 't4.104.114.145': [0.69, 10.0], 't2.104.114.145': [0.486, 5.0]}), 'newmec-4'], [({'t5.103.114.146': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.146': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.146': [0.471, 5.0], 't3.103.114.146': [0.718, 5.0]}), 'newmec-3'], [({'t3.102.114.147': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.147': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.147': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.147': [0.628, 5.0], 't2.102.114.147': [0.401, 5.0], 't1.102.114.147': [0.551, 6.667]}), 'newmec-2'], [({'t2.101.114.148': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.148': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.148': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.148': [0.682, 5.0], 't4.101.114.148': [0.799, 10.0], 't1.101.114.148': [0.603, 6.667]}), 'newmec-1'], [({'t2.102.114.149': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.149': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.149': [0.555, 5.0], 't3.102.114.149': [0.468, 5.0]}), 'newmec-2'], [({'t5.102.114.150': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.150': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.150': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.150': [0.605, 5.0], 't4.102.114.150': [0.765, 10.0], 't2.102.114.150': [0.59, 5.0]}), 'newmec-2'], [({'t3.102.114.151': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.151': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.151': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.151': [0.619, 5.0], 't1.102.114.151': [0.555, 6.667], 't4.102.114.151': [0.689, 10.0]}), 'newmec-2'], [({'t1.104.114.152': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.152': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.152': [0.576, 6.667], 't2.104.114.152': [0.502, 5.0]}), 'newmec-4'], [({'t5.103.114.153': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.153': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.153': [0.751, 5.0], 't4.103.114.153': [0.474, 10.0]}), 'newmec-3'], [({'t2.104.114.154': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.154': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.154': [0.626, 5.0], 't3.104.114.154': [0.447, 5.0]}), 'newmec-4'], [({'t1.156.114.155': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.155': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.155': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.155': [0.695, 6.667], 't5.156.114.155': [0.466, 5.0], 't2.156.114.155': [0.588, 5.0]}), 'osboxes-0'], [({'t2.156.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.156': [0.437, 5.0], 't4.156.114.156': [0.762, 10.0]}), 'osboxes-0'], [({'t5.101.114.157': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.157': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.157': [0.67, 5.0], 't2.101.114.157': [0.601, 5.0], 't3.101.114.157': [0.693, 5.0]}), 'newmec-1'], [({'t3.101.114.158': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.158': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.158': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.158': [0.427, 5.0], 't4.101.114.158': [0.65, 10.0], 't1.101.114.158': [0.695, 6.667]}), 'newmec-1'], [({'t1.102.114.159': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.159': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.159': [0.797, 6.667], 't2.102.114.159': [0.774, 5.0]}), 'newmec-2'], [({'t5.103.114.160': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.160': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.160': [0.652, 5.0], 't1.103.114.160': [0.613, 6.667]}), 'newmec-3'], [({'t3.104.114.161': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.161': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.161': [0.473, 5.0], 't1.104.114.161': [0.768, 6.667], 't2.104.114.161': [0.475, 5.0]}), 'newmec-4'], [({'t4.101.114.162': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.162': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.162': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.162': [0.797, 10.0], 't1.101.114.162': [0.736, 6.667], 't2.101.114.162': [0.409, 5.0]}), 'newmec-1'], [({'t1.104.114.163': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.163': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.163': [0.631, 6.667], 't4.104.114.163': [0.564, 10.0]}), 'newmec-4'], [({'t1.104.114.164': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.164': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.164': [0.551, 6.667], 't2.104.114.164': [0.502, 5.0]}), 'newmec-4'], [({'t2.101.114.165': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.165': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.165': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.165': [0.792, 5.0], 't5.101.114.165': [0.589, 5.0], 't1.101.114.165': [0.509, 6.667]}), 'newmec-1'], [({'t4.156.114.166': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.166': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.166': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.166': [0.42, 10.0], 't5.156.114.166': [0.527, 5.0], 't1.156.114.166': [0.511, 6.667]}), 'osboxes-0'], [({'t2.102.114.167': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.167': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.167': [0.455, 5.0], 't3.102.114.167': [0.473, 5.0]}), 'newmec-2'], [({'t2.104.114.168': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.168': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.168': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.168': [0.474, 5.0], 't1.104.114.168': [0.71, 6.667], 't3.104.114.168': [0.572, 5.0]}), 'newmec-4'], [({'t5.102.114.169': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.169': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.169': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.169': [0.478, 5.0], 't3.102.114.169': [0.531, 5.0], 't4.102.114.169': [0.709, 10.0]}), 'newmec-2'], [({'t5.102.114.170': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.170': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.170': [0.599, 5.0], 't1.102.114.170': [0.75, 6.667]}), 'newmec-2'], [({'t1.102.114.171': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.171': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.171': [0.448, 6.667], 't3.102.114.171': [0.651, 5.0], 't4.102.114.171': [0.447, 10.0]}), 'newmec-2'], [({'t3.103.114.172': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.172': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.172': [0.425, 5.0], 't4.103.114.172': [0.675, 10.0]}), 'newmec-3'], [({'t4.101.114.173': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.173': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.173': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.173': [0.754, 10.0], 't1.101.114.173': [0.653, 6.667], 't3.101.114.173': [0.416, 5.0]}), 'newmec-1'], [({'t2.102.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.174': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.174': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.174': [0.75, 5.0], 't4.102.114.174': [0.47, 10.0], 't3.102.114.174': [0.404, 5.0]}), 'newmec-2'], [({'t4.101.114.175': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.175': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.175': [0.556, 10.0], 't2.101.114.175': [0.553, 5.0]}), 'newmec-1'], [({'t4.102.114.176': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.176': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.176': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.176': [0.531, 10.0], 't2.102.114.176': [0.762, 5.0], 't1.102.114.176': [0.768, 6.667]}), 'newmec-2'], [({'t3.156.114.177': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.177': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.177': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.177': [0.561, 5.0], 't5.156.114.177': [0.646, 5.0], 't4.156.114.177': [0.43, 10.0]}), 'osboxes-0'], [({'t4.103.114.178': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.178': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.178': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.178': [0.517, 10.0], 't1.103.114.178': [0.633, 6.667], 't2.103.114.178': [0.523, 5.0]}), 'newmec-3'], [({'t3.104.114.179': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.179': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.179': [0.691, 5.0], 't2.104.114.179': [0.518, 5.0], 't5.104.114.179': [0.474, 5.0]}), 'newmec-4'], [({'t1.102.114.180': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.180': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.180': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.180': [0.774, 6.667], 't3.102.114.180': [0.755, 5.0], 't5.102.114.180': [0.61, 5.0]}), 'newmec-2'], [({'t4.104.114.181': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.181': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.181': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.181': [0.609, 10.0], 't3.104.114.181': [0.578, 5.0], 't2.104.114.181': [0.602, 5.0]}), 'newmec-4'], [({'t1.103.114.182': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.182': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.182': [0.762, 6.667], 't5.103.114.182': [0.602, 5.0]}), 'newmec-3'], [({'t5.102.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.183': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.183': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.183': [0.446, 5.0], 't1.102.114.183': [0.576, 6.667], 't3.102.114.183': [0.525, 5.0]}), 'newmec-2'], [({'t5.101.114.184': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.184': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.184': [0.564, 5.0], 't4.101.114.184': [0.514, 10.0]}), 'newmec-1'], [({'t5.102.114.185': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.185': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.185': [0.586, 5.0], 't4.102.114.185': [0.505, 10.0]}), 'newmec-2'], [({'t2.104.114.186': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.186': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.186': [0.47, 5.0], 't5.104.114.186': [0.767, 5.0], 't4.104.114.186': [0.73, 10.0]}), 'newmec-4'], [({'t2.102.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.187': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.187': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.187': [0.614, 5.0], 't4.102.114.187': [0.649, 10.0], 't1.102.114.187': [0.533, 6.667]}), 'newmec-2'], [({'t4.156.114.188': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.188': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.188': [0.607, 10.0], 't5.156.114.188': [0.754, 5.0]}), 'osboxes-0'], [({'t4.101.114.189': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.189': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.189': [0.457, 10.0], 't5.101.114.189': [0.511, 5.0]}), 'newmec-1'], [({'t5.156.114.190': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.190': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.190': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.190': [0.695, 5.0], 't3.156.114.190': [0.746, 5.0], 't2.156.114.190': [0.75, 5.0]}), 'osboxes-0'], [({'t2.104.114.191': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.191': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.191': [0.789, 5.0], 't1.104.114.191': [0.692, 6.667]}), 'newmec-4'], [({'t4.102.114.192': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.192': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.192': [0.775, 10.0], 't1.102.114.192': [0.772, 6.667]}), 'newmec-2'], [({'t5.102.114.193': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.193': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.193': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.193': [0.778, 5.0], 't2.102.114.193': [0.628, 5.0], 't4.102.114.193': [0.731, 10.0]}), 'newmec-2'], [({'t2.101.114.194': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.194': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.194': [0.45, 5.0], 't1.101.114.194': [0.709, 6.667]}), 'newmec-1'], [({'t5.102.114.195': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.195': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.195': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.195': [0.742, 5.0], 't2.102.114.195': [0.504, 5.0], 't1.102.114.195': [0.453, 6.667]}), 'newmec-2'], [({'t1.156.114.196': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.196': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.196': [0.628, 6.667], 't2.156.114.196': [0.466, 5.0]}), 'osboxes-0'], [({'t2.102.114.197': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.197': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.197': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.197': [0.761, 5.0], 't1.102.114.197': [0.598, 6.667], 't4.102.114.197': [0.616, 10.0]}), 'newmec-2'], [({'t5.102.114.198': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.198': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.198': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.198': [0.733, 5.0], 't2.102.114.198': [0.467, 5.0], 't3.102.114.198': [0.651, 5.0]}), 'newmec-2'], [({'t3.101.114.199': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.199': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.199': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.199': [0.468, 5.0], 't1.101.114.199': [0.42, 6.667], 't5.101.114.199': [0.419, 5.0]}), 'newmec-1'], [({'t2.101.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.200': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.200': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.200': [0.681, 5.0], 't4.101.114.200': [0.717, 10.0], 't1.101.114.200': [0.586, 6.667]}), 'newmec-1'], [({'t5.156.114.201': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.201': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.201': [0.46, 5.0], 't1.156.114.201': [0.672, 6.667], 't4.156.114.201': [0.407, 10.0]}), 'osboxes-0'], [({'t5.104.114.202': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.202': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.202': [0.567, 5.0], 't2.104.114.202': [0.473, 5.0]}), 'newmec-4'], [({'t2.103.114.203': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.203': [0.541, 5.0], 't3.103.114.203': [0.703, 5.0]}), 'newmec-3'], [({'t2.156.114.204': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.204': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.204': [0.597, 5.0], 't5.156.114.204': [0.451, 5.0]}), 'osboxes-0'], [({'t1.156.114.205': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.205': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.205': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.205': [0.477, 6.667], 't5.156.114.205': [0.765, 5.0], 't3.156.114.205': [0.554, 5.0]}), 'osboxes-0'], [({'t5.101.114.206': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.206': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.206': [0.683, 5.0], 't2.101.114.206': [0.762, 5.0]}), 'newmec-1'], [({'t5.101.114.207': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.207': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.207': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.207': [0.542, 5.0], 't2.101.114.207': [0.574, 5.0], 't1.101.114.207': [0.754, 6.667]}), 'newmec-1'], [({'t2.101.114.208': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.208': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.208': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.208': [0.661, 5.0], 't5.101.114.208': [0.585, 5.0], 't1.101.114.208': [0.681, 6.667]}), 'newmec-1'], [({'t2.104.114.209': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.209': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.209': [0.615, 5.0], 't1.104.114.209': [0.664, 6.667]}), 'newmec-4'], [({'t5.102.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.210': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.210': [0.693, 5.0], 't4.102.114.210': [0.643, 10.0]}), 'newmec-2'], [({'t3.101.114.211': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.211': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.211': [0.713, 5.0], 't5.101.114.211': [0.513, 5.0], 't4.101.114.211': [0.554, 10.0]}), 'newmec-1'], [({'t4.103.114.212': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.212': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.212': [0.721, 10.0], 't3.103.114.212': [0.631, 5.0]}), 'newmec-3'], [({'t4.104.114.213': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.213': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.213': [0.572, 10.0], 't1.104.114.213': [0.66, 6.667]}), 'newmec-4'], [({'t5.102.114.214': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.214': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.214': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.214': [0.406, 5.0], 't3.102.114.214': [0.771, 5.0], 't1.102.114.214': [0.464, 6.667]}), 'newmec-2'], [({'t2.104.114.215': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.215': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.215': [0.594, 5.0], 't1.104.114.215': [0.636, 6.667]}), 'newmec-4'], [({'t2.103.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.216': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.216': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.216': [0.743, 5.0], 't5.103.114.216': [0.675, 5.0], 't1.103.114.216': [0.78, 6.667]}), 'newmec-3'], [({'t5.104.114.217': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.217': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.217': [0.421, 5.0], 't4.104.114.217': [0.421, 10.0]}), 'newmec-4'], [({'t5.156.114.218': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.218': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.218': [0.511, 5.0], 't4.156.114.218': [0.705, 10.0], 't2.156.114.218': [0.436, 5.0]}), 'osboxes-0'], [({'t3.103.114.219': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.219': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.219': [0.435, 5.0], 't1.103.114.219': [0.532, 6.667]}), 'newmec-3'], [({'t1.103.114.220': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.220': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.220': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.220': [0.559, 6.667], 't3.103.114.220': [0.78, 5.0], 't2.103.114.220': [0.744, 5.0]}), 'newmec-3'], [({'t2.102.114.221': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.221': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.221': [0.441, 5.0], 't5.102.114.221': [0.485, 5.0]}), 'newmec-2'], [({'t1.103.114.222': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.222': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.222': [0.787, 6.667], 't3.103.114.222': [0.4, 5.0]}), 'newmec-3'], [({'t1.103.114.223': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.223': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.223': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.223': [0.552, 6.667], 't5.103.114.223': [0.415, 5.0], 't4.103.114.223': [0.643, 10.0]}), 'newmec-3'], [({'t3.156.114.224': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.224': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.224': [0.686, 5.0], 't2.156.114.224': [0.576, 5.0], 't4.156.114.224': [0.681, 10.0]}), 'osboxes-0'], [({'t3.156.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.225': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.225': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.225': [0.706, 5.0], 't4.156.114.225': [0.641, 10.0], 't1.156.114.225': [0.663, 6.667]}), 'osboxes-0'], [({'t2.101.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.226': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.226': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.226': [0.666, 5.0], 't1.101.114.226': [0.795, 6.667], 't5.101.114.226': [0.45, 5.0]}), 'newmec-1'], [({'t2.102.114.227': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.227': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.227': [0.768, 5.0], 't1.102.114.227': [0.458, 6.667]}), 'newmec-2'], [({'t3.101.114.228': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.228': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.228': [0.676, 5.0], 't5.101.114.228': [0.476, 5.0]}), 'newmec-1'], [({'t1.103.114.229': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.229': [0.659, 6.667], 't5.103.114.229': [0.792, 5.0]}), 'newmec-3'], [({'t5.104.114.230': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.230': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.230': [0.496, 5.0], 't2.104.114.230': [0.718, 5.0]}), 'newmec-4'], [({'t3.103.114.231': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.231': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.231': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.231': [0.625, 5.0], 't5.103.114.231': [0.755, 5.0], 't4.103.114.231': [0.517, 10.0]}), 'newmec-3'], [({'t2.156.114.232': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.232': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.232': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.232': [0.484, 5.0], 't1.156.114.232': [0.638, 6.667], 't4.156.114.232': [0.747, 10.0]}), 'osboxes-0'], [({'t5.101.114.233': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.233': [0.626, 5.0], 't4.101.114.233': [0.66, 10.0]}), 'newmec-1'], [({'t5.103.114.234': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.234': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.234': [0.775, 5.0], 't1.103.114.234': [0.488, 6.667]}), 'newmec-3'], [({'t5.101.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.235': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.235': [0.476, 5.0], 't2.101.114.235': [0.779, 5.0]}), 'newmec-1'], [({'t3.104.114.236': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.236': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.236': [0.552, 5.0], 't4.104.114.236': [0.652, 10.0]}), 'newmec-4'], [({'t2.104.114.237': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.237': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.237': [0.635, 5.0], 't5.104.114.237': [0.731, 5.0]}), 'newmec-4'], [({'t5.156.114.238': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.238': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.238': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.238': [0.446, 5.0], 't2.156.114.238': [0.421, 5.0], 't1.156.114.238': [0.471, 6.667]}), 'osboxes-0'], [({'t5.101.114.239': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.239': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.239': [0.418, 5.0], 't3.101.114.239': [0.513, 5.0]}), 'newmec-1'], [({'t5.104.114.240': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.240': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.240': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.240': [0.655, 5.0], 't1.104.114.240': [0.583, 6.667], 't2.104.114.240': [0.584, 5.0]}), 'newmec-4'], [({'t3.103.114.241': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.241': [0.598, 5.0], 't2.103.114.241': [0.456, 5.0]}), 'newmec-3'], [({'t4.101.114.242': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.242': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.242': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.242': [0.621, 10.0], 't5.101.114.242': [0.685, 5.0], 't3.101.114.242': [0.548, 5.0]}), 'newmec-1'], [({'t5.103.114.243': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.243': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.243': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.243': [0.563, 5.0], 't4.103.114.243': [0.746, 10.0], 't3.103.114.243': [0.763, 5.0]}), 'newmec-3'], [({'t4.156.114.244': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.244': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.244': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.244': [0.689, 10.0], 't1.156.114.244': [0.585, 6.667], 't3.156.114.244': [0.554, 5.0]}), 'osboxes-0'], [({'t4.156.114.245': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.245': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.245': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.245': [0.698, 10.0], 't1.156.114.245': [0.515, 6.667], 't3.156.114.245': [0.695, 5.0]}), 'osboxes-0'], [({'t2.102.114.246': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.246': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.246': [0.711, 5.0], 't1.102.114.246': [0.703, 6.667], 't4.102.114.246': [0.432, 10.0]}), 'newmec-2'], [({'t2.101.114.247': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.247': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.247': [0.766, 5.0], 't5.101.114.247': [0.686, 5.0]}), 'newmec-1'], [({'t4.102.114.248': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.248': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.248': [0.659, 10.0], 't2.102.114.248': [0.506, 5.0]}), 'newmec-2'], [({'t3.102.114.249': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.249': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.249': [0.575, 5.0], 't2.102.114.249': [0.515, 5.0], 't4.102.114.249': [0.758, 10.0]}), 'newmec-2'], [({'t3.104.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.250': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.250': [0.664, 5.0], 't2.104.114.250': [0.592, 5.0]}), 'newmec-4'], [({'t2.101.114.251': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.251': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.251': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.251': [0.692, 5.0], 't5.101.114.251': [0.553, 5.0], 't1.101.114.251': [0.75, 6.667]}), 'newmec-1'], [({'t5.102.114.252': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.252': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.252': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.252': [0.447, 5.0], 't3.102.114.252': [0.473, 5.0], 't1.102.114.252': [0.496, 6.667]}), 'newmec-2'], [({'t2.156.114.253': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.253': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.253': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.253': [0.444, 5.0], 't4.156.114.253': [0.488, 10.0], 't5.156.114.253': [0.527, 5.0]}), 'osboxes-0'], [({'t4.104.114.254': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.254': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.254': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.254': [0.411, 10.0], 't5.104.114.254': [0.414, 5.0], 't2.104.114.254': [0.5, 5.0]}), 'newmec-4'], [({'t5.102.114.255': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.255': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.255': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.255': [0.627, 5.0], 't2.102.114.255': [0.516, 5.0], 't3.102.114.255': [0.533, 5.0]}), 'newmec-2'], [({'t4.101.114.256': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.256': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.256': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.256': [0.681, 10.0], 't5.101.114.256': [0.44, 5.0], 't2.101.114.256': [0.642, 5.0]}), 'newmec-1'], [({'t3.102.114.257': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.257': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.257': [0.601, 5.0], 't5.102.114.257': [0.549, 5.0]}), 'newmec-2'], [({'t4.101.114.258': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.258': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.258': [0.468, 10.0], 't5.101.114.258': [0.634, 5.0]}), 'newmec-1'], [({'t3.103.114.259': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.259': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.259': [0.732, 5.0], 't2.103.114.259': [0.529, 5.0], 't4.103.114.259': [0.761, 10.0]}), 'newmec-3'], [({'t2.103.114.260': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.260': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.260': [0.418, 5.0], 't5.103.114.260': [0.597, 5.0]}), 'newmec-3'], [({'t4.104.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.261': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.261': [0.789, 10.0], 't3.104.114.261': [0.731, 5.0]}), 'newmec-4'], [({'t2.101.114.262': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.262': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.262': [0.713, 5.0], 't3.101.114.262': [0.599, 5.0]}), 'newmec-1'], [({'t3.104.114.263': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.263': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.263': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.263': [0.518, 5.0], 't5.104.114.263': [0.709, 5.0], 't2.104.114.263': [0.784, 5.0]}), 'newmec-4'], [({'t4.103.114.264': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.264': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.264': [0.575, 10.0], 't1.103.114.264': [0.706, 6.667], 't3.103.114.264': [0.475, 5.0]}), 'newmec-3'], [({'t3.102.114.265': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.265': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.265': [0.566, 5.0], 't2.102.114.265': [0.446, 5.0]}), 'newmec-2'], [({'t2.102.114.266': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.266': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.266': [0.461, 5.0], 't1.102.114.266': [0.644, 6.667]}), 'newmec-2'], [({'t5.156.114.267': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.267': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.267': [0.491, 5.0], 't4.156.114.267': [0.461, 10.0]}), 'osboxes-0'], [({'t4.156.114.268': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.268': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.268': [0.511, 10.0], 't2.156.114.268': [0.403, 5.0], 't5.156.114.268': [0.707, 5.0]}), 'osboxes-0'], [({'t5.103.114.269': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.269': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.269': [0.679, 5.0], 't2.103.114.269': [0.554, 5.0]}), 'newmec-3'], [({'t5.101.114.270': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.270': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.270': [0.47, 5.0], 't1.101.114.270': [0.636, 6.667]}), 'newmec-1'], [({'t4.156.114.271': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.271': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.271': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.271': [0.693, 10.0], 't2.156.114.271': [0.557, 5.0], 't5.156.114.271': [0.459, 5.0]}), 'osboxes-0'], [({'t1.102.114.272': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.272': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.272': [0.463, 6.667], 't5.102.114.272': [0.522, 5.0]}), 'newmec-2'], [({'t2.101.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.273': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.273': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.273': [0.435, 5.0], 't5.101.114.273': [0.518, 5.0], 't1.101.114.273': [0.742, 6.667]}), 'newmec-1'], [({'t1.104.114.274': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.274': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.274': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.274': [0.622, 6.667], 't3.104.114.274': [0.763, 5.0], 't5.104.114.274': [0.622, 5.0]}), 'newmec-4'], [({'t5.103.114.275': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.275': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.275': [0.758, 5.0], 't3.103.114.275': [0.756, 5.0]}), 'newmec-3'], [({'t2.104.114.276': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.276': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.276': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.276': [0.711, 5.0], 't5.104.114.276': [0.492, 5.0], 't4.104.114.276': [0.55, 10.0]}), 'newmec-4'], [({'t2.102.114.277': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.277': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.277': [0.665, 5.0], 't5.102.114.277': [0.561, 5.0]}), 'newmec-2'], [({'t3.101.114.278': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.278': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.278': [0.787, 5.0], 't5.101.114.278': [0.718, 5.0]}), 'newmec-1'], [({'t1.103.114.279': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.279': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.279': [0.46, 6.667], 't4.103.114.279': [0.655, 10.0]}), 'newmec-3'], [({'t5.103.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.280': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.280': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.280': [0.588, 5.0], 't2.103.114.280': [0.443, 5.0], 't4.103.114.280': [0.58, 10.0]}), 'newmec-3'], [({'t5.104.114.281': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.281': [0.658, 5.0], 't2.104.114.281': [0.775, 5.0]}), 'newmec-4'], [({'t4.102.114.282': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.282': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.282': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.282': [0.411, 10.0], 't5.102.114.282': [0.76, 5.0], 't1.102.114.282': [0.629, 6.667]}), 'newmec-2'], [({'t1.103.114.283': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.283': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.283': [0.648, 6.667], 't5.103.114.283': [0.407, 5.0]}), 'newmec-3'], [({'t1.102.114.284': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.284': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.284': [0.661, 6.667], 't2.102.114.284': [0.529, 5.0], 't3.102.114.284': [0.604, 5.0]}), 'newmec-2'], [({'t3.104.114.285': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.285': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.285': [0.668, 5.0], 't2.104.114.285': [0.454, 5.0]}), 'newmec-4'], [({'t1.104.114.286': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.286': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.286': [0.506, 6.667], 't2.104.114.286': [0.582, 5.0]}), 'newmec-4'], [({'t2.104.114.287': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.287': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.287': [0.733, 5.0], 't4.104.114.287': [0.408, 10.0]}), 'newmec-4'], [({'t1.103.114.288': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.288': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.288': [0.688, 6.667], 't5.103.114.288': [0.519, 5.0]}), 'newmec-3'], [({'t1.104.114.289': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.289': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.289': [0.684, 6.667], 't4.104.114.289': [0.403, 10.0]}), 'newmec-4'], [({'t5.102.114.290': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.290': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.290': [0.509, 5.0], 't3.102.114.290': [0.55, 5.0]}), 'newmec-2'], [({'t2.104.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.291': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.291': [0.435, 5.0], 't4.104.114.291': [0.715, 10.0]}), 'newmec-4'], [({'t3.102.114.292': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.292': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.292': [0.577, 5.0], 't1.102.114.292': [0.49, 6.667], 't4.102.114.292': [0.474, 10.0]}), 'newmec-2'], [({'t2.104.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.293': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.293': [0.488, 5.0], 't3.104.114.293': [0.685, 5.0]}), 'newmec-4'], [({'t5.103.114.294': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.294': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.294': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.294': [0.749, 5.0], 't4.103.114.294': [0.424, 10.0], 't3.103.114.294': [0.547, 5.0]}), 'newmec-3'], [({'t5.156.114.295': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.295': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.295': [0.645, 5.0], 't3.156.114.295': [0.551, 5.0]}), 'osboxes-0'], [({'t2.102.114.296': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.296': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.296': [0.642, 5.0], 't3.102.114.296': [0.495, 5.0]}), 'newmec-2'], [({'t5.102.114.297': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.297': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.297': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.297': [0.663, 5.0], 't3.102.114.297': [0.453, 5.0], 't2.102.114.297': [0.685, 5.0]}), 'newmec-2'], [({'t4.102.114.298': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.298': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.298': [0.771, 10.0], 't5.102.114.298': [0.584, 5.0]}), 'newmec-2'], [({'t5.156.114.299': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.299': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.299': [0.779, 5.0], 't4.156.114.299': [0.695, 10.0]}), 'osboxes-0'], [({'t2.156.114.300': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.300': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.300': [0.763, 5.0], 't4.156.114.300': [0.442, 10.0]}), 'osboxes-0'], [({'t2.103.114.301': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.301': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.301': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.301': [0.472, 5.0], 't1.103.114.301': [0.536, 6.667], 't3.103.114.301': [0.604, 5.0]}), 'newmec-3'], [({'t1.156.114.302': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.302': [0.515, 6.667], 't5.156.114.302': [0.687, 5.0], 't4.156.114.302': [0.422, 10.0]}), 'osboxes-0'], [({'t2.101.114.303': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.303': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.303': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.303': [0.666, 5.0], 't5.101.114.303': [0.787, 5.0], 't4.101.114.303': [0.764, 10.0]}), 'newmec-1'], [({'t2.104.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.304': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.304': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.304': [0.611, 5.0], 't3.104.114.304': [0.473, 5.0], 't5.104.114.304': [0.496, 5.0]}), 'newmec-4'], [({'t3.101.114.305': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.305': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.305': [0.594, 5.0], 't1.101.114.305': [0.665, 6.667]}), 'newmec-1'], [({'t2.104.114.306': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.306': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.306': [0.529, 5.0], 't1.104.114.306': [0.684, 6.667]}), 'newmec-4'], [({'t2.101.114.307': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.307': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.307': [0.497, 5.0], 't5.101.114.307': [0.744, 5.0]}), 'newmec-1'], [({'t1.104.114.308': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.308': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.308': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.308': [0.663, 6.667], 't3.104.114.308': [0.673, 5.0], 't2.104.114.308': [0.442, 5.0]}), 'newmec-4'], [({'t4.104.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.309': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.309': [0.506, 10.0], 't2.104.114.309': [0.441, 5.0]}), 'newmec-4'], [({'t4.104.114.310': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.310': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.310': [0.664, 10.0], 't3.104.114.310': [0.451, 5.0], 't2.104.114.310': [0.778, 5.0]}), 'newmec-4'], [({'t3.102.114.311': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.311': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.311': [0.692, 5.0], 't1.102.114.311': [0.47, 6.667]}), 'newmec-2'], [({'t2.103.114.312': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.312': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.312': [0.424, 5.0], 't5.103.114.312': [0.786, 5.0]}), 'newmec-3'], [({'t3.104.114.313': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.313': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.313': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.313': [0.556, 5.0], 't1.104.114.313': [0.648, 6.667], 't5.104.114.313': [0.534, 5.0]}), 'newmec-4'], [({'t3.101.114.314': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.314': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.314': [0.458, 5.0], 't5.101.114.314': [0.718, 5.0]}), 'newmec-1'], [({'t5.102.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.315': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.315': [0.745, 5.0], 't3.102.114.315': [0.592, 5.0]}), 'newmec-2'], [({'t4.101.114.316': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.316': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.316': [0.761, 10.0], 't1.101.114.316': [0.654, 6.667]}), 'newmec-1'], [({'t5.156.114.317': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.317': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.317': [0.439, 5.0], 't2.156.114.317': [0.627, 5.0]}), 'osboxes-0'], [({'t4.101.114.318': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.318': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.318': [0.422, 10.0], 't3.101.114.318': [0.684, 5.0]}), 'newmec-1'], [({'t5.103.114.319': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.319': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.319': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.319': [0.431, 5.0], 't3.103.114.319': [0.693, 5.0], 't4.103.114.319': [0.725, 10.0]}), 'newmec-3'], [({'t1.101.114.320': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.320': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.320': [0.72, 6.667], 't3.101.114.320': [0.694, 5.0]}), 'newmec-1'], [({'t5.102.114.321': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.321': [0.742, 5.0], 't4.102.114.321': [0.616, 10.0]}), 'newmec-2'], [({'t3.103.114.322': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.322': [0.644, 5.0], 't2.103.114.322': [0.756, 5.0]}), 'newmec-3'], [({'t4.156.114.323': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.323': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.323': [0.795, 10.0], 't5.156.114.323': [0.772, 5.0]}), 'osboxes-0'], [({'t3.102.114.324': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.324': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.324': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.324': [0.463, 5.0], 't5.102.114.324': [0.512, 5.0], 't2.102.114.324': [0.722, 5.0]}), 'newmec-2'], [({'t5.104.114.325': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.325': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.325': [0.578, 5.0], 't3.104.114.325': [0.45, 5.0]}), 'newmec-4'], [({'t1.101.114.326': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.326': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.326': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.326': [0.711, 6.667], 't5.101.114.326': [0.674, 5.0], 't3.101.114.326': [0.761, 5.0]}), 'newmec-1'], [({'t3.102.114.327': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.327': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.327': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.327': [0.753, 5.0], 't2.102.114.327': [0.545, 5.0], 't1.102.114.327': [0.469, 6.667]}), 'newmec-2'], [({'t4.103.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.328': [0.58, 10.0], 't5.103.114.328': [0.505, 5.0]}), 'newmec-3'], [({'t3.102.114.329': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.329': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.329': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.329': [0.606, 5.0], 't2.102.114.329': [0.798, 5.0], 't4.102.114.329': [0.607, 10.0]}), 'newmec-2'], [({'t2.101.114.330': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.330': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.330': [0.447, 5.0], 't5.101.114.330': [0.597, 5.0]}), 'newmec-1'], [({'t1.102.114.331': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.331': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.331': [0.413, 6.667], 't2.102.114.331': [0.464, 5.0]}), 'newmec-2'], [({'t3.101.114.332': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.332': [0.445, 5.0], 't2.101.114.332': [0.771, 5.0]}), 'newmec-1'], [({'t4.102.114.333': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.333': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.333': [0.649, 10.0], 't5.102.114.333': [0.598, 5.0]}), 'newmec-2'], [({'t3.104.114.334': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.334': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.334': [0.719, 5.0], 't4.104.114.334': [0.605, 10.0]}), 'newmec-4'], [({'t4.156.114.335': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.335': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.335': [0.445, 10.0], 't2.156.114.335': [0.738, 5.0]}), 'osboxes-0'], [({'t4.103.114.336': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.336': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.336': [0.585, 10.0], 't5.103.114.336': [0.688, 5.0]}), 'newmec-3'], [({'t5.103.114.337': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.337': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.337': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.337': [0.493, 5.0], 't1.103.114.337': [0.687, 6.667], 't2.103.114.337': [0.793, 5.0]}), 'newmec-3'], [({'t3.102.114.338': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.338': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.338': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.338': [0.632, 5.0], 't5.102.114.338': [0.662, 5.0], 't4.102.114.338': [0.569, 10.0]}), 'newmec-2'], [({'t4.104.114.339': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.339': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.339': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.339': [0.653, 10.0], 't2.104.114.339': [0.451, 5.0], 't1.104.114.339': [0.695, 6.667]}), 'newmec-4'], [({'t4.104.114.340': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.340': [0.408, 10.0], 't2.104.114.340': [0.602, 5.0]}), 'newmec-4'], [({'t3.104.114.341': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.341': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.341': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.341': [0.437, 5.0], 't2.104.114.341': [0.562, 5.0], 't1.104.114.341': [0.695, 6.667]}), 'newmec-4'], [({'t3.104.114.342': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.342': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.342': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.342': [0.567, 5.0], 't4.104.114.342': [0.729, 10.0], 't1.104.114.342': [0.552, 6.667]}), 'newmec-4'], [({'t2.156.114.343': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.343': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.343': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.343': [0.587, 5.0], 't1.156.114.343': [0.701, 6.667], 't5.156.114.343': [0.658, 5.0]}), 'osboxes-0'], [({'t3.102.114.344': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.344': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.344': [0.573, 5.0], 't5.102.114.344': [0.73, 5.0], 't2.102.114.344': [0.75, 5.0]}), 'newmec-2'], [({'t2.101.114.345': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.345': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.345': [0.608, 5.0], 't3.101.114.345': [0.527, 5.0]}), 'newmec-1'], [({'t4.104.114.346': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.346': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.346': [0.584, 10.0], 't2.104.114.346': [0.78, 5.0]}), 'newmec-4'], [({'t5.104.114.347': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.347': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.347': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.347': [0.596, 5.0], 't1.104.114.347': [0.608, 6.667], 't4.104.114.347': [0.565, 10.0]}), 'newmec-4'], [({'t5.102.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.348': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.348': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.348': [0.552, 5.0], 't3.102.114.348': [0.756, 5.0], 't4.102.114.348': [0.621, 10.0]}), 'newmec-2'], [({'t2.101.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.349': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.349': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.349': [0.604, 5.0], 't5.101.114.349': [0.476, 5.0], 't1.101.114.349': [0.689, 6.667]}), 'newmec-1'], [({'t2.103.114.350': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.350': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.350': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.350': [0.558, 5.0], 't5.103.114.350': [0.745, 5.0], 't1.103.114.350': [0.566, 6.667]}), 'newmec-3'], [({'t2.104.114.351': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.351': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.351': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.351': [0.413, 5.0], 't3.104.114.351': [0.645, 5.0], 't1.104.114.351': [0.632, 6.667]}), 'newmec-4'], [({'t3.103.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.352': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.352': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.352': [0.746, 5.0], 't5.103.114.352': [0.531, 5.0], 't4.103.114.352': [0.424, 10.0]}), 'newmec-3'], [({'t3.104.114.353': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.353': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.353': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.353': [0.481, 5.0], 't1.104.114.353': [0.611, 6.667], 't2.104.114.353': [0.608, 5.0]}), 'newmec-4'], [({'t1.101.114.354': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.354': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.354': [0.515, 6.667], 't2.101.114.354': [0.521, 5.0]}), 'newmec-1'], [({'t3.156.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.355': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.355': [0.756, 5.0], 't2.156.114.355': [0.713, 5.0]}), 'osboxes-0'], [({'t1.156.114.356': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.356': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.356': [0.751, 6.667], 't3.156.114.356': [0.543, 5.0], 't5.156.114.356': [0.457, 5.0]}), 'osboxes-0'], [({'t2.103.114.357': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.357': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.357': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.357': [0.58, 5.0], 't4.103.114.357': [0.425, 10.0], 't1.103.114.357': [0.646, 6.667]}), 'newmec-3'], [({'t5.102.114.358': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.358': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.358': [0.505, 5.0], 't1.102.114.358': [0.71, 6.667]}), 'newmec-2'], [({'t1.104.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.359': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.359': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.359': [0.438, 6.667], 't5.104.114.359': [0.657, 5.0], 't4.104.114.359': [0.443, 10.0]}), 'newmec-4'], [({'t5.101.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.360': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.360': [0.493, 5.0], 't3.101.114.360': [0.455, 5.0]}), 'newmec-1'], [({'t1.104.114.361': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.361': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.361': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.361': [0.441, 6.667], 't5.104.114.361': [0.63, 5.0], 't4.104.114.361': [0.477, 10.0]}), 'newmec-4'], [({'t5.101.114.362': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.362': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.362': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.362': [0.695, 5.0], 't4.101.114.362': [0.714, 10.0], 't1.101.114.362': [0.557, 6.667]}), 'newmec-1'], [({'t4.101.114.363': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.363': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.363': [0.713, 10.0], 't5.101.114.363': [0.65, 5.0]}), 'newmec-1'], [({'t2.104.114.364': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.364': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.364': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.364': [0.648, 5.0], 't4.104.114.364': [0.476, 10.0], 't1.104.114.364': [0.517, 6.667]}), 'newmec-4'], [({'t2.101.114.365': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.365': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.365': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.365': [0.568, 5.0], 't3.101.114.365': [0.663, 5.0], 't5.101.114.365': [0.504, 5.0]}), 'newmec-1'], [({'t2.156.114.366': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.366': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.366': [0.689, 5.0], 't5.156.114.366': [0.541, 5.0]}), 'osboxes-0'], [({'t2.104.114.367': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.367': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.367': [0.793, 5.0], 't5.104.114.367': [0.768, 5.0]}), 'newmec-4'], [({'t1.103.114.368': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.368': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.368': [0.421, 6.667], 't5.103.114.368': [0.661, 5.0]}), 'newmec-3'], [({'t3.103.114.369': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.369': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.369': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.369': [0.492, 5.0], 't4.103.114.369': [0.601, 10.0], 't2.103.114.369': [0.498, 5.0]}), 'newmec-3'], [({'t3.104.114.370': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.370': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.370': [0.416, 5.0], 't2.104.114.370': [0.534, 5.0]}), 'newmec-4'], [({'t2.103.114.371': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.371': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.371': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.371': [0.517, 5.0], 't5.103.114.371': [0.483, 5.0], 't3.103.114.371': [0.567, 5.0]}), 'newmec-3'], [({'t2.102.114.372': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.372': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.372': [0.52, 5.0], 't1.102.114.372': [0.571, 6.667]}), 'newmec-2'], [({'t1.101.114.373': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.373': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.373': [0.636, 6.667], 't4.101.114.373': [0.527, 10.0], 't5.101.114.373': [0.761, 5.0]}), 'newmec-1'], [({'t2.102.114.374': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.374': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.374': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.374': [0.64, 5.0], 't3.102.114.374': [0.623, 5.0], 't5.102.114.374': [0.456, 5.0]}), 'newmec-2'], [({'t3.102.114.375': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.375': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.375': [0.595, 5.0], 't5.102.114.375': [0.634, 5.0], 't2.102.114.375': [0.68, 5.0]}), 'newmec-2'], [({'t2.101.114.376': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.376': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.376': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.376': [0.616, 5.0], 't5.101.114.376': [0.611, 5.0], 't4.101.114.376': [0.516, 10.0]}), 'newmec-1'], [({'t1.102.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.377': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.377': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.377': [0.415, 6.667], 't5.102.114.377': [0.441, 5.0], 't4.102.114.377': [0.702, 10.0]}), 'newmec-2'], [({'t2.102.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.378': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.378': [0.712, 5.0], 't4.102.114.378': [0.738, 10.0]}), 'newmec-2'], [({'t4.102.114.379': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.379': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.379': [0.742, 10.0], 't5.102.114.379': [0.623, 5.0], 't2.102.114.379': [0.545, 5.0]}), 'newmec-2'], [({'t2.156.114.380': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.380': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.380': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.380': [0.471, 5.0], 't4.156.114.380': [0.667, 10.0], 't1.156.114.380': [0.719, 6.667]}), 'osboxes-0'], [({'t3.101.114.381': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.381': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.381': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.381': [0.604, 5.0], 't5.101.114.381': [0.544, 5.0], 't4.101.114.381': [0.52, 10.0]}), 'newmec-1'], [({'t5.103.114.382': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.382': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.382': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.382': [0.693, 5.0], 't3.103.114.382': [0.625, 5.0], 't4.103.114.382': [0.461, 10.0]}), 'newmec-3'], [({'t4.102.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.383': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.383': [0.544, 10.0], 't5.102.114.383': [0.722, 5.0]}), 'newmec-2'], [({'t3.104.114.384': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.384': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.384': [0.658, 5.0], 't2.104.114.384': [0.451, 5.0]}), 'newmec-4'], [({'t2.103.114.385': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.385': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.385': [0.448, 5.0], 't3.103.114.385': [0.743, 5.0], 't5.103.114.385': [0.791, 5.0]}), 'newmec-3'], [({'t4.103.114.386': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.386': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.386': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.386': [0.736, 10.0], 't5.103.114.386': [0.486, 5.0], 't2.103.114.386': [0.543, 5.0]}), 'newmec-3'], [({'t3.156.114.387': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.387': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.387': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.387': [0.635, 5.0], 't4.156.114.387': [0.626, 10.0], 't5.156.114.387': [0.501, 5.0]}), 'osboxes-0'], [({'t5.103.114.388': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.388': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.388': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.388': [0.756, 5.0], 't3.103.114.388': [0.591, 5.0], 't2.103.114.388': [0.765, 5.0]}), 'newmec-3'], [({'t4.102.114.389': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.389': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.389': [0.46, 10.0], 't1.102.114.389': [0.442, 6.667]}), 'newmec-2'], [({'t3.103.114.390': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.390': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.390': [0.524, 5.0], 't1.103.114.390': [0.668, 6.667]}), 'newmec-3'], [({'t4.103.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.391': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.391': [0.563, 10.0], 't1.103.114.391': [0.743, 6.667]}), 'newmec-3'], [({'t5.104.114.392': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.392': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.392': [0.698, 5.0], 't2.104.114.392': [0.754, 5.0]}), 'newmec-4'], [({'t5.102.114.393': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.393': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.393': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.393': [0.602, 5.0], 't3.102.114.393': [0.513, 5.0], 't4.102.114.393': [0.6, 10.0]}), 'newmec-2'], [({'t5.104.114.394': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.394': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.394': [0.41, 5.0], 't1.104.114.394': [0.754, 6.667]}), 'newmec-4'], [({'t4.101.114.395': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.395': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.395': [0.488, 10.0], 't3.101.114.395': [0.442, 5.0]}), 'newmec-1'], [({'t4.156.114.396': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.396': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.396': [0.42, 10.0], 't2.156.114.396': [0.417, 5.0]}), 'osboxes-0'], [({'t1.102.114.397': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.397': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.397': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.397': [0.538, 6.667], 't4.102.114.397': [0.737, 10.0], 't3.102.114.397': [0.785, 5.0]}), 'newmec-2'], [({'t1.102.114.398': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.398': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.398': [0.584, 6.667], 't5.102.114.398': [0.509, 5.0], 't2.102.114.398': [0.606, 5.0]}), 'newmec-2'], [({'t3.103.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.399': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.399': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.399': [0.739, 5.0], 't2.103.114.399': [0.637, 5.0], 't5.103.114.399': [0.513, 5.0]}), 'newmec-3'], [({'t2.101.114.400': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.400': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.400': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.400': [0.478, 5.0], 't4.101.114.400': [0.405, 10.0], 't3.101.114.400': [0.706, 5.0]}), 'newmec-1'], [({'t1.101.114.401': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.401': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.401': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.401': [0.652, 6.667], 't3.101.114.401': [0.423, 5.0], 't5.101.114.401': [0.484, 5.0]}), 'newmec-1'], [({'t2.104.114.402': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.402': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.402': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.402': [0.512, 5.0], 't3.104.114.402': [0.454, 5.0], 't4.104.114.402': [0.485, 10.0]}), 'newmec-4'], [({'t4.102.114.403': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.403': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.403': [0.498, 10.0], 't3.102.114.403': [0.497, 5.0]}), 'newmec-2'], [({'t1.101.114.404': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.404': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.404': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.404': [0.626, 6.667], 't5.101.114.404': [0.537, 5.0], 't3.101.114.404': [0.529, 5.0]}), 'newmec-1'], [({'t3.101.114.405': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.405': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.405': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.405': [0.539, 5.0], 't2.101.114.405': [0.645, 5.0], 't1.101.114.405': [0.437, 6.667]}), 'newmec-1'], [({'t4.101.114.406': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.406': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.406': [0.611, 10.0], 't1.101.114.406': [0.464, 6.667]}), 'newmec-1'], [({'t5.103.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.407': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.407': [0.705, 5.0], 't3.103.114.407': [0.732, 5.0]}), 'newmec-3'], [({'t4.104.114.408': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.408': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.408': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.408': [0.671, 10.0], 't3.104.114.408': [0.647, 5.0], 't2.104.114.408': [0.417, 5.0]}), 'newmec-4'], [({'t1.101.114.409': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.409': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.409': [0.771, 6.667], 't5.101.114.409': [0.643, 5.0]}), 'newmec-1'], [({'t1.102.114.410': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.410': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.410': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.410': [0.626, 6.667], 't5.102.114.410': [0.424, 5.0], 't3.102.114.410': [0.728, 5.0]}), 'newmec-2'], [({'t1.102.114.411': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.411': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.411': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.411': [0.423, 6.667], 't3.102.114.411': [0.762, 5.0], 't4.102.114.411': [0.718, 10.0]}), 'newmec-2'], [({'t4.101.114.412': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.412': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.412': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.412': [0.4, 10.0], 't1.101.114.412': [0.429, 6.667], 't3.101.114.412': [0.578, 5.0]}), 'newmec-1'], [({'t3.104.114.413': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.413': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.413': [0.725, 5.0], 't1.104.114.413': [0.468, 6.667]}), 'newmec-4'], [({'t4.102.114.414': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.414': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.414': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.414': [0.609, 10.0], 't5.102.114.414': [0.699, 5.0], 't3.102.114.414': [0.761, 5.0]}), 'newmec-2'], [({'t4.103.114.415': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.415': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.415': [0.548, 10.0], 't5.103.114.415': [0.607, 5.0]}), 'newmec-3'], [({'t5.101.114.416': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.416': [0.442, 5.0], 't2.101.114.416': [0.565, 5.0]}), 'newmec-1'], [({'t3.101.114.417': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.417': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.417': [0.75, 5.0], 't5.101.114.417': [0.512, 5.0]}), 'newmec-1'], [({'t3.103.114.418': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.418': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.418': [0.667, 5.0], 't5.103.114.418': [0.501, 5.0]}), 'newmec-3'], [({'t3.104.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.419': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.419': [0.527, 5.0], 't4.104.114.419': [0.724, 10.0]}), 'newmec-4'], [({'t2.102.114.420': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.420': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.420': [0.683, 5.0], 't4.102.114.420': [0.667, 10.0]}), 'newmec-2'], [({'t5.101.114.421': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.421': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.421': [0.742, 5.0], 't3.101.114.421': [0.679, 5.0]}), 'newmec-1'], [({'t3.102.114.422': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.422': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.422': [0.44, 5.0], 't1.102.114.422': [0.625, 6.667]}), 'newmec-2'], [({'t3.103.114.423': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.423': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.423': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.423': [0.619, 5.0], 't2.103.114.423': [0.752, 5.0], 't1.103.114.423': [0.634, 6.667]}), 'newmec-3'], [({'t4.102.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.424': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.424': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.424': [0.616, 10.0], 't2.102.114.424': [0.77, 5.0], 't1.102.114.424': [0.784, 6.667]}), 'newmec-2'], [({'t2.156.114.425': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.425': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.425': [0.565, 5.0], 't5.156.114.425': [0.417, 5.0]}), 'osboxes-0'], [({'t1.102.114.426': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.426': [0.512, 6.667], 't5.102.114.426': [0.632, 5.0]}), 'newmec-2'], [({'t3.104.114.427': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.427': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.427': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.427': [0.678, 5.0], 't1.104.114.427': [0.535, 6.667], 't4.104.114.427': [0.581, 10.0]}), 'newmec-4'], [({'t4.103.114.428': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.428': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.428': [0.425, 10.0], 't1.103.114.428': [0.417, 6.667]}), 'newmec-3'], [({'t2.102.114.429': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.429': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.429': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.429': [0.501, 5.0], 't3.102.114.429': [0.597, 5.0], 't1.102.114.429': [0.637, 6.667]}), 'newmec-2'], [({'t5.102.114.430': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.430': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.430': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.430': [0.519, 5.0], 't2.102.114.430': [0.571, 5.0], 't1.102.114.430': [0.689, 6.667]}), 'newmec-2'], [({'t4.103.114.431': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.431': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.431': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.431': [0.779, 10.0], 't3.103.114.431': [0.52, 5.0], 't5.103.114.431': [0.41, 5.0]}), 'newmec-3'], [({'t2.104.114.432': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.432': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.432': [0.662, 5.0], 't3.104.114.432': [0.531, 5.0]}), 'newmec-4'], [({'t1.101.114.433': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.433': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.433': [0.447, 6.667], 't2.101.114.433': [0.457, 5.0]}), 'newmec-1'], [({'t1.104.114.434': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.434': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.434': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.434': [0.437, 6.667], 't5.104.114.434': [0.609, 5.0], 't2.104.114.434': [0.626, 5.0]}), 'newmec-4'], [({'t2.101.114.435': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.435': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.435': [0.441, 5.0], 't3.101.114.435': [0.536, 5.0]}), 'newmec-1'], [({'t3.102.114.436': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.436': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.436': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.436': [0.449, 5.0], 't1.102.114.436': [0.481, 6.667], 't4.102.114.436': [0.751, 10.0]}), 'newmec-2'], [({'t1.104.114.437': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.437': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.437': [0.753, 6.667], 't5.104.114.437': [0.787, 5.0], 't2.104.114.437': [0.58, 5.0]}), 'newmec-4'], [({'t2.102.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.438': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.438': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.438': [0.47, 5.0], 't4.102.114.438': [0.76, 10.0], 't3.102.114.438': [0.656, 5.0]}), 'newmec-2'], [({'t2.156.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.439': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.439': [0.762, 5.0], 't5.156.114.439': [0.538, 5.0]}), 'osboxes-0'], [({'t4.104.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.440': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.440': [0.661, 10.0], 't2.104.114.440': [0.567, 5.0]}), 'newmec-4'], [({'t4.101.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.441': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.441': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.441': [0.548, 10.0], 't2.101.114.441': [0.701, 5.0], 't5.101.114.441': [0.429, 5.0]}), 'newmec-1'], [({'t4.156.114.442': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.442': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.442': [0.415, 10.0], 't3.156.114.442': [0.468, 5.0], 't5.156.114.442': [0.731, 5.0]}), 'osboxes-0'], [({'t3.104.114.443': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.443': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.443': [0.455, 5.0], 't5.104.114.443': [0.576, 5.0]}), 'newmec-4'], [({'t1.103.114.444': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.444': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.444': [0.676, 6.667], 't3.103.114.444': [0.426, 5.0]}), 'newmec-3'], [({'t3.101.114.445': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.445': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.445': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.445': [0.408, 5.0], 't2.101.114.445': [0.626, 5.0], 't4.101.114.445': [0.745, 10.0]}), 'newmec-1'], [({'t4.101.114.446': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.446': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.446': [0.535, 10.0], 't5.101.114.446': [0.458, 5.0]}), 'newmec-1'], [({'t1.102.114.447': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.447': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.447': [0.421, 6.667], 't5.102.114.447': [0.517, 5.0]}), 'newmec-2'], [({'t4.104.114.448': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.448': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.448': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.448': [0.76, 10.0], 't3.104.114.448': [0.456, 5.0], 't5.104.114.448': [0.406, 5.0]}), 'newmec-4'], [({'t4.104.114.449': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.449': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.449': [0.711, 10.0], 't3.104.114.449': [0.71, 5.0]}), 'newmec-4'], [({'t4.104.114.450': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.450': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.450': [0.716, 10.0], 't2.104.114.450': [0.784, 5.0]}), 'newmec-4'], [({'t2.103.114.451': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.451': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.451': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.451': [0.643, 5.0], 't5.103.114.451': [0.591, 5.0], 't3.103.114.451': [0.745, 5.0]}), 'newmec-3'], [({'t1.103.114.452': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.452': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.452': [0.442, 6.667], 't3.103.114.452': [0.774, 5.0], 't5.103.114.452': [0.708, 5.0]}), 'newmec-3'], [({'t1.104.114.453': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.453': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.453': [0.465, 6.667], 't3.104.114.453': [0.68, 5.0], 't2.104.114.453': [0.799, 5.0]}), 'newmec-4'], [({'t3.156.114.454': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.454': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.454': [0.518, 5.0], 't4.156.114.454': [0.427, 10.0]}), 'osboxes-0'], [({'t5.101.114.455': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.455': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.455': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.455': [0.451, 5.0], 't3.101.114.455': [0.701, 5.0], 't1.101.114.455': [0.69, 6.667]}), 'newmec-1'], [({'t1.103.114.456': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.456': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.456': [0.715, 6.667], 't5.103.114.456': [0.549, 5.0]}), 'newmec-3'], [({'t5.156.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.457': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.457': [0.694, 5.0], 't1.156.114.457': [0.465, 6.667]}), 'osboxes-0'], [({'t4.156.114.458': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.458': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.458': [0.55, 10.0], 't3.156.114.458': [0.724, 5.0]}), 'osboxes-0'], [({'t3.103.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.459': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.459': [0.741, 5.0], 't5.103.114.459': [0.449, 5.0]}), 'newmec-3'], [({'t5.102.114.460': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.460': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.460': [0.434, 5.0], 't4.102.114.460': [0.469, 10.0]}), 'newmec-2'], [({'t1.104.114.461': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.461': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.461': [0.645, 6.667], 't3.104.114.461': [0.63, 5.0], 't2.104.114.461': [0.766, 5.0]}), 'newmec-4'], [({'t5.102.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.462': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.462': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.462': [0.565, 5.0], 't4.102.114.462': [0.478, 10.0], 't3.102.114.462': [0.711, 5.0]}), 'newmec-2'], [({'t2.103.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.463': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.463': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.463': [0.42, 5.0], 't3.103.114.463': [0.619, 5.0], 't5.103.114.463': [0.536, 5.0]}), 'newmec-3'], [({'t5.103.114.464': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.464': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.464': [0.625, 5.0], 't2.103.114.464': [0.663, 5.0]}), 'newmec-3'], [({'t3.104.114.465': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.465': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.465': [0.587, 5.0], 't5.104.114.465': [0.565, 5.0]}), 'newmec-4'], [({'t2.102.114.466': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.466': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.466': [0.451, 5.0], 't1.102.114.466': [0.428, 6.667]}), 'newmec-2'], [({'t4.102.114.467': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.467': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.467': [0.693, 10.0], 't3.102.114.467': [0.485, 5.0], 't5.102.114.467': [0.678, 5.0]}), 'newmec-2'], [({'t2.104.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.468': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.468': [0.462, 5.0], 't5.104.114.468': [0.449, 5.0], 't3.104.114.468': [0.631, 5.0]}), 'newmec-4'], [({'t2.101.114.469': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.469': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.469': [0.529, 5.0], 't5.101.114.469': [0.778, 5.0], 't3.101.114.469': [0.538, 5.0]}), 'newmec-1'], [({'t2.102.114.470': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.470': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.470': [0.607, 5.0], 't5.102.114.470': [0.786, 5.0], 't4.102.114.470': [0.557, 10.0]}), 'newmec-2'], [({'t2.156.114.471': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.471': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.471': [0.477, 5.0], 't1.156.114.471': [0.634, 6.667]}), 'osboxes-0'], [({'t3.103.114.472': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.472': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.472': [0.637, 5.0], 't4.103.114.472': [0.778, 10.0]}), 'newmec-3'], [({'t5.156.114.473': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.473': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.473': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.473': [0.5, 5.0], 't4.156.114.473': [0.526, 10.0], 't2.156.114.473': [0.679, 5.0]}), 'osboxes-0'], [({'t3.101.114.474': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.474': [0.709, 5.0], 't5.101.114.474': [0.518, 5.0]}), 'newmec-1'], [({'t2.101.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.475': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.475': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.475': [0.433, 5.0], 't5.101.114.475': [0.729, 5.0], 't3.101.114.475': [0.687, 5.0]}), 'newmec-1'], [({'t4.102.114.476': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.476': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.476': [0.43, 10.0], 't2.102.114.476': [0.657, 5.0]}), 'newmec-2'], [({'t2.103.114.477': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.477': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.477': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.477': [0.654, 5.0], 't5.103.114.477': [0.435, 5.0], 't1.103.114.477': [0.484, 6.667]}), 'newmec-3'], [({'t3.103.114.478': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.478': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.478': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.478': [0.502, 5.0], 't4.103.114.478': [0.644, 10.0], 't2.103.114.478': [0.719, 5.0]}), 'newmec-3'], [({'t2.156.114.479': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.479': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.479': [0.694, 5.0], 't4.156.114.479': [0.77, 10.0]}), 'osboxes-0'], [({'t1.103.114.480': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.480': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.480': [0.415, 6.667], 't4.103.114.480': [0.723, 10.0]}), 'newmec-3'], [({'t4.156.114.481': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.481': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.481': [0.504, 10.0], 't2.156.114.481': [0.794, 5.0]}), 'osboxes-0'], [({'t3.101.114.482': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.482': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.482': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.482': [0.574, 5.0], 't2.101.114.482': [0.411, 5.0], 't5.101.114.482': [0.678, 5.0]}), 'newmec-1'], [({'t3.103.114.483': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.483': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.483': [0.7, 5.0], 't1.103.114.483': [0.451, 6.667]}), 'newmec-3'], [({'t4.104.114.484': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.484': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.484': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.484': [0.59, 10.0], 't5.104.114.484': [0.617, 5.0], 't3.104.114.484': [0.704, 5.0]}), 'newmec-4'], [({'t3.103.114.485': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.485': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.485': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.485': [0.655, 5.0], 't1.103.114.485': [0.624, 6.667], 't4.103.114.485': [0.794, 10.0]}), 'newmec-3'], [({'t2.103.114.486': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.486': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.486': [0.697, 5.0], 't4.103.114.486': [0.596, 10.0]}), 'newmec-3'], [({'t4.103.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.487': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.487': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.487': [0.674, 10.0], 't5.103.114.487': [0.589, 5.0], 't3.103.114.487': [0.525, 5.0]}), 'newmec-3'], [({'t1.104.114.488': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.488': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.488': [0.784, 6.667], 't3.104.114.488': [0.562, 5.0]}), 'newmec-4'], [({'t3.104.114.489': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.489': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.489': [0.711, 5.0], 't2.104.114.489': [0.479, 5.0]}), 'newmec-4'], [({'t2.102.114.490': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.490': [0.598, 5.0], 't5.102.114.490': [0.595, 5.0]}), 'newmec-2'], [({'t4.104.114.491': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.491': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.491': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.491': [0.416, 10.0], 't1.104.114.491': [0.776, 6.667], 't3.104.114.491': [0.735, 5.0]}), 'newmec-4'], [({'t4.103.114.492': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.492': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.492': [0.756, 10.0], 't5.103.114.492': [0.619, 5.0]}), 'newmec-3'], [({'t5.103.114.493': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.493': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.493': [0.78, 5.0], 't3.103.114.493': [0.527, 5.0]}), 'newmec-3'], [({'t1.101.114.494': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.494': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.494': [0.661, 6.667], 't2.101.114.494': [0.524, 5.0], 't3.101.114.494': [0.698, 5.0]}), 'newmec-1'], [({'t3.102.114.495': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.495': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.495': [0.604, 5.0], 't2.102.114.495': [0.593, 5.0]}), 'newmec-2'], [({'t5.156.114.496': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.496': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.496': [0.442, 5.0], 't2.156.114.496': [0.664, 5.0]}), 'osboxes-0'], [({'t1.104.114.497': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.497': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.497': [0.419, 6.667], 't2.104.114.497': [0.466, 5.0]}), 'newmec-4'], [({'t1.156.114.498': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.498': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.498': [0.511, 6.667], 't3.156.114.498': [0.626, 5.0]}), 'osboxes-0'], [({'t4.156.114.499': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.499': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.499': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.499': [0.763, 10.0], 't2.156.114.499': [0.747, 5.0], 't5.156.114.499': [0.666, 5.0]}), 'osboxes-0'], [({'t2.156.114.500': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.500': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.500': [0.615, 5.0], 't4.156.114.500': [0.411, 10.0]}), 'osboxes-0'], [({'t2.101.114.501': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.501': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.501': [0.594, 5.0], 't3.101.114.501': [0.794, 5.0], 't5.101.114.501': [0.589, 5.0]}), 'newmec-1'], [({'t4.101.114.502': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.502': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.502': [0.783, 10.0], 't1.101.114.502': [0.768, 6.667], 't2.101.114.502': [0.594, 5.0]}), 'newmec-1'], [({'t2.102.114.503': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.503': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.503': [0.645, 5.0], 't5.102.114.503': [0.415, 5.0]}), 'newmec-2'], [({'t3.156.114.504': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.504': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.504': [0.709, 5.0], 't2.156.114.504': [0.47, 5.0]}), 'osboxes-0'], [({'t1.101.114.505': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.505': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.505': [0.735, 6.667], 't2.101.114.505': [0.434, 5.0]}), 'newmec-1'], [({'t2.101.114.506': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.506': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.506': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.506': [0.627, 5.0], 't1.101.114.506': [0.428, 6.667], 't5.101.114.506': [0.519, 5.0]}), 'newmec-1'], [({'t1.102.114.507': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.507': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.507': [0.714, 6.667], 't5.102.114.507': [0.538, 5.0], 't4.102.114.507': [0.634, 10.0]}), 'newmec-2'], [({'t3.102.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.508': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.508': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.508': [0.559, 5.0], 't5.102.114.508': [0.681, 5.0], 't2.102.114.508': [0.446, 5.0]}), 'newmec-2'], [({'t4.103.114.509': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.509': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.509': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.509': [0.721, 10.0], 't3.103.114.509': [0.784, 5.0], 't5.103.114.509': [0.551, 5.0]}), 'newmec-3'], [({'t5.102.114.510': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.510': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.510': [0.633, 5.0], 't3.102.114.510': [0.659, 5.0], 't2.102.114.510': [0.42, 5.0]}), 'newmec-2'], [({'t2.104.114.511': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.511': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.511': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.511': [0.72, 5.0], 't4.104.114.511': [0.54, 10.0], 't5.104.114.511': [0.747, 5.0]}), 'newmec-4'], [({'t2.156.114.512': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.512': [0.545, 5.0], 't4.156.114.512': [0.762, 10.0], 't1.156.114.512': [0.608, 6.667]}), 'osboxes-0'], [({'t5.104.114.513': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.513': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.513': [0.422, 5.0], 't1.104.114.513': [0.506, 6.667]}), 'newmec-4'], [({'t4.104.114.514': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.514': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.514': [0.747, 10.0], 't3.104.114.514': [0.666, 5.0]}), 'newmec-4'], [({'t2.156.114.515': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.515': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.515': [0.618, 5.0], 't5.156.114.515': [0.728, 5.0]}), 'osboxes-0'], [({'t3.102.114.516': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.516': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.516': [0.501, 5.0], 't2.102.114.516': [0.613, 5.0], 't4.102.114.516': [0.544, 10.0]}), 'newmec-2'], [({'t4.102.114.517': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.517': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.517': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.517': [0.662, 10.0], 't2.102.114.517': [0.679, 5.0], 't5.102.114.517': [0.668, 5.0]}), 'newmec-2'], [({'t4.103.114.518': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.518': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.518': [0.748, 10.0], 't5.103.114.518': [0.691, 5.0], 't2.103.114.518': [0.623, 5.0]}), 'newmec-3'], [({'t4.101.114.519': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.519': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.519': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.519': [0.723, 10.0], 't3.101.114.519': [0.611, 5.0], 't2.101.114.519': [0.664, 5.0]}), 'newmec-1'], [({'t5.101.114.520': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.520': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.520': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.520': [0.724, 5.0], 't2.101.114.520': [0.539, 5.0], 't4.101.114.520': [0.457, 10.0]}), 'newmec-1'], [({'t2.101.114.521': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.521': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.521': [0.491, 5.0], 't3.101.114.521': [0.58, 5.0]}), 'newmec-1'], [({'t3.102.114.522': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.522': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.522': [0.782, 5.0], 't5.102.114.522': [0.736, 5.0]}), 'newmec-2'], [({'t2.101.114.523': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.523': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.523': [0.608, 5.0], 't4.101.114.523': [0.748, 10.0]}), 'newmec-1'], [({'t5.102.114.524': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.524': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.524': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.524': [0.677, 5.0], 't1.102.114.524': [0.779, 6.667], 't2.102.114.524': [0.638, 5.0]}), 'newmec-2'], [({'t5.102.114.525': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.525': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.525': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.525': [0.618, 5.0], 't3.102.114.525': [0.449, 5.0], 't2.102.114.525': [0.476, 5.0]}), 'newmec-2'], [({'t1.102.114.526': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.526': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.526': [0.756, 6.667], 't5.102.114.526': [0.416, 5.0], 't2.102.114.526': [0.649, 5.0]}), 'newmec-2'], [({'t3.101.114.527': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.527': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.527': [0.484, 5.0], 't4.101.114.527': [0.595, 10.0]}), 'newmec-1'], [({'t2.104.114.528': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.528': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.528': [0.754, 5.0], 't1.104.114.528': [0.531, 6.667]}), 'newmec-4'], [({'t2.156.114.529': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.529': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.529': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.529': [0.595, 5.0], 't5.156.114.529': [0.762, 5.0], 't1.156.114.529': [0.738, 6.667]}), 'osboxes-0'], [({'t4.104.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.530': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.530': [0.606, 10.0], 't2.104.114.530': [0.504, 5.0]}), 'newmec-4'], [({'t1.103.114.531': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.531': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.531': [0.7, 6.667], 't5.103.114.531': [0.738, 5.0]}), 'newmec-3'], [({'t3.156.114.532': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.532': [0.611, 5.0], 't4.156.114.532': [0.729, 10.0]}), 'osboxes-0'], [({'t4.104.114.533': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.533': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.533': [0.566, 10.0], 't2.104.114.533': [0.471, 5.0], 't3.104.114.533': [0.644, 5.0]}), 'newmec-4'], [({'t1.102.114.534': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.534': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.534': [0.657, 6.667], 't3.102.114.534': [0.702, 5.0]}), 'newmec-2'], [({'t2.103.114.535': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.535': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.535': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.535': [0.655, 5.0], 't4.103.114.535': [0.787, 10.0], 't5.103.114.535': [0.682, 5.0]}), 'newmec-3'], [({'t5.104.114.536': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.536': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.536': [0.562, 5.0], 't3.104.114.536': [0.727, 5.0]}), 'newmec-4'], [({'t2.101.114.537': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.537': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.537': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.537': [0.615, 5.0], 't5.101.114.537': [0.452, 5.0], 't3.101.114.537': [0.512, 5.0]}), 'newmec-1'], [({'t5.104.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.538': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.538': [0.642, 5.0], 't3.104.114.538': [0.701, 5.0]}), 'newmec-4'], [({'t1.102.114.539': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.539': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.539': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.539': [0.548, 6.667], 't2.102.114.539': [0.576, 5.0], 't3.102.114.539': [0.748, 5.0]}), 'newmec-2'], [({'t4.104.114.540': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.540': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.540': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.540': [0.775, 10.0], 't5.104.114.540': [0.641, 5.0], 't2.104.114.540': [0.793, 5.0]}), 'newmec-4'], [({'t5.102.114.541': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.541': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.541': [0.694, 5.0], 't2.102.114.541': [0.424, 5.0]}), 'newmec-2'], [({'t1.103.114.542': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.542': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.542': [0.591, 6.667], 't4.103.114.542': [0.621, 10.0], 't2.103.114.542': [0.748, 5.0]}), 'newmec-3'], [({'t1.103.114.543': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.543': [0.464, 6.667], 't3.103.114.543': [0.408, 5.0]}), 'newmec-3'], [({'t2.156.114.544': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.544': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.544': [0.705, 5.0], 't4.156.114.544': [0.476, 10.0], 't5.156.114.544': [0.63, 5.0]}), 'osboxes-0'], [({'t3.104.114.545': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.545': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.545': [0.53, 5.0], 't1.104.114.545': [0.536, 6.667], 't4.104.114.545': [0.773, 10.0]}), 'newmec-4'], [({'t5.101.114.546': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.546': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.546': [0.781, 5.0], 't1.101.114.546': [0.799, 6.667], 't4.101.114.546': [0.711, 10.0]}), 'newmec-1'], [({'t5.104.114.547': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.547': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.547': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.547': [0.633, 5.0], 't3.104.114.547': [0.497, 5.0], 't1.104.114.547': [0.758, 6.667]}), 'newmec-4'], [({'t2.102.114.548': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.548': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.548': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.548': [0.576, 5.0], 't1.102.114.548': [0.609, 6.667], 't4.102.114.548': [0.467, 10.0]}), 'newmec-2'], [({'t1.104.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.549': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.549': [0.654, 6.667], 't2.104.114.549': [0.528, 5.0]}), 'newmec-4'], [({'t5.104.114.550': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.550': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.550': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.550': [0.612, 5.0], 't3.104.114.550': [0.41, 5.0], 't1.104.114.550': [0.412, 6.667]}), 'newmec-4'], [({'t5.103.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.551': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.551': [0.654, 5.0], 't3.103.114.551': [0.475, 5.0]}), 'newmec-3'], [({'t1.102.114.552': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.552': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.552': [0.753, 6.667], 't5.102.114.552': [0.621, 5.0], 't3.102.114.552': [0.65, 5.0]}), 'newmec-2'], [({'t4.102.114.553': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.553': [0.651, 10.0], 't1.102.114.553': [0.712, 6.667]}), 'newmec-2'], [({'t2.104.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.554': [0.581, 5.0], 't3.104.114.554': [0.569, 5.0]}), 'newmec-4'], [({'t4.104.114.555': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.555': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.555': [0.714, 10.0], 't3.104.114.555': [0.437, 5.0]}), 'newmec-4'], [({'t4.101.114.556': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.556': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.556': [0.436, 10.0], 't3.101.114.556': [0.751, 5.0]}), 'newmec-1'], [({'t5.101.114.557': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.557': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.557': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.557': [0.475, 5.0], 't1.101.114.557': [0.643, 6.667], 't4.101.114.557': [0.643, 10.0]}), 'newmec-1'], [({'t2.102.114.558': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.558': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.558': [0.452, 5.0], 't5.102.114.558': [0.529, 5.0]}), 'newmec-2'], [({'t4.102.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.559': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.559': [0.663, 10.0], 't2.102.114.559': [0.66, 5.0]}), 'newmec-2'], [({'t4.156.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.560': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.560': [0.652, 10.0], 't3.156.114.560': [0.579, 5.0]}), 'osboxes-0'], [({'t3.102.114.561': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.561': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.561': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.561': [0.762, 5.0], 't5.102.114.561': [0.525, 5.0], 't4.102.114.561': [0.6, 10.0]}), 'newmec-2'], [({'t2.104.114.562': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.562': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.562': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.562': [0.54, 5.0], 't3.104.114.562': [0.724, 5.0], 't1.104.114.562': [0.403, 6.667]}), 'newmec-4'], [({'t3.104.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.563': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.563': [0.64, 5.0], 't2.104.114.563': [0.405, 5.0]}), 'newmec-4'], [({'t3.103.114.564': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.564': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.564': [0.737, 5.0], 't5.103.114.564': [0.752, 5.0]}), 'newmec-3'], [({'t4.104.114.565': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.565': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.565': [0.76, 10.0], 't3.104.114.565': [0.637, 5.0]}), 'newmec-4'], [({'t1.102.114.566': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.566': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.566': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.566': [0.566, 6.667], 't4.102.114.566': [0.516, 10.0], 't3.102.114.566': [0.409, 5.0]}), 'newmec-2'], [({'t2.101.114.567': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.567': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.567': [0.453, 5.0], 't5.101.114.567': [0.409, 5.0]}), 'newmec-1'], [({'t5.103.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.568': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.568': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.568': [0.683, 5.0], 't3.103.114.568': [0.433, 5.0], 't4.103.114.568': [0.78, 10.0]}), 'newmec-3'], [({'t4.104.114.569': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.569': [0.792, 10.0], 't2.104.114.569': [0.756, 5.0]}), 'newmec-4'], [({'t2.104.114.570': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.570': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.570': [0.729, 5.0], 't5.104.114.570': [0.757, 5.0]}), 'newmec-4'], [({'t5.104.114.571': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.571': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.571': [0.546, 5.0], 't1.104.114.571': [0.52, 6.667]}), 'newmec-4'], [({'t5.104.114.572': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.572': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.572': [0.705, 5.0], 't4.104.114.572': [0.472, 10.0], 't2.104.114.572': [0.61, 5.0]}), 'newmec-4'], [({'t1.101.114.573': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.573': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.573': [0.578, 6.667], 't3.101.114.573': [0.478, 5.0]}), 'newmec-1'], [({'t3.101.114.574': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.574': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.574': [0.518, 5.0], 't4.101.114.574': [0.5, 10.0]}), 'newmec-1'], [({'t3.102.114.575': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.575': [0.613, 5.0], 't2.102.114.575': [0.509, 5.0]}), 'newmec-2'], [({'t3.104.114.576': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.576': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.576': [0.544, 5.0], 't4.104.114.576': [0.631, 10.0]}), 'newmec-4'], [({'t2.104.114.577': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.577': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.577': [0.557, 5.0], 't1.104.114.577': [0.649, 6.667]}), 'newmec-4'], [({'t3.102.114.578': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.578': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.578': [0.543, 5.0], 't2.102.114.578': [0.615, 5.0], 't5.102.114.578': [0.401, 5.0]}), 'newmec-2'], [({'t3.104.114.579': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.579': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.579': [0.4, 5.0], 't5.104.114.579': [0.637, 5.0]}), 'newmec-4'], [({'t4.103.114.580': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.580': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.580': [0.524, 10.0], 't2.103.114.580': [0.64, 5.0]}), 'newmec-3'], [({'t3.104.114.581': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.581': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.581': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.581': [0.442, 5.0], 't5.104.114.581': [0.737, 5.0], 't4.104.114.581': [0.723, 10.0]}), 'newmec-4'], [({'t3.103.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.582': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.582': [0.799, 5.0], 't2.103.114.582': [0.599, 5.0]}), 'newmec-3'], [({'t5.103.114.583': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.583': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.583': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.583': [0.761, 5.0], 't2.103.114.583': [0.697, 5.0], 't3.103.114.583': [0.455, 5.0]}), 'newmec-3'], [({'t3.103.114.584': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.584': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.584': [0.419, 5.0], 't4.103.114.584': [0.764, 10.0], 't5.103.114.584': [0.687, 5.0]}), 'newmec-3'], [({'t4.156.114.585': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.585': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.585': [0.665, 10.0], 't3.156.114.585': [0.666, 5.0], 't5.156.114.585': [0.798, 5.0]}), 'osboxes-0'], [({'t4.104.114.586': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.586': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.586': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.586': [0.535, 10.0], 't2.104.114.586': [0.506, 5.0], 't3.104.114.586': [0.767, 5.0]}), 'newmec-4'], [({'t3.102.114.587': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.587': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.587': [0.42, 5.0], 't5.102.114.587': [0.736, 5.0], 't2.102.114.587': [0.728, 5.0]}), 'newmec-2'], [({'t5.102.114.588': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.588': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.588': [0.63, 5.0], 't3.102.114.588': [0.547, 5.0]}), 'newmec-2'], [({'t2.104.114.589': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.589': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.589': [0.684, 5.0], 't5.104.114.589': [0.635, 5.0]}), 'newmec-4'], [({'t2.103.114.590': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.590': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.590': [0.48, 5.0], 't4.103.114.590': [0.613, 10.0]}), 'newmec-3'], [({'t5.104.114.591': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.591': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.591': [0.645, 5.0], 't3.104.114.591': [0.665, 5.0]}), 'newmec-4'], [({'t1.101.114.592': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.592': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.592': [0.514, 6.667], 't3.101.114.592': [0.571, 5.0]}), 'newmec-1'], [({'t1.104.114.593': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.593': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.593': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.593': [0.605, 6.667], 't4.104.114.593': [0.455, 10.0], 't2.104.114.593': [0.754, 5.0]}), 'newmec-4'], [({'t4.102.114.594': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.594': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.594': [0.614, 10.0], 't2.102.114.594': [0.48, 5.0]}), 'newmec-2'], [({'t5.103.114.595': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.595': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.595': [0.611, 5.0], 't4.103.114.595': [0.743, 10.0]}), 'newmec-3'], [({'t3.102.114.596': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.596': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.596': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.596': [0.421, 5.0], 't5.102.114.596': [0.774, 5.0], 't1.102.114.596': [0.718, 6.667]}), 'newmec-2'], [({'t3.101.114.597': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.597': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.597': [0.614, 5.0], 't2.101.114.597': [0.65, 5.0]}), 'newmec-1'], [({'t5.103.114.598': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.598': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.598': [0.733, 5.0], 't4.103.114.598': [0.742, 10.0]}), 'newmec-3'], [({'t3.103.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.599': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.599': [0.636, 5.0], 't4.103.114.599': [0.532, 10.0], 't1.103.114.599': [0.513, 6.667]}), 'newmec-3']]
host_names5 = {'192.168.122.156': 'osboxes-0', '192.168.122.104': 'newmec-4', '192.168.122.103': 'newmec-3', '192.168.122.102': 'newmec-2', '192.168.122.101': 'newmec-1'}
record6 = [[({'t2.102.114.0': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.0': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.0': [0.489, 5.0], 't4.102.114.0': [0.537, 10.0], 't5.102.114.0': [0.567, 5.0]}), 'newmec-2'], [({'t1.102.114.1': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.1': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.1': [0.658, 6.667], 't2.102.114.1': [0.412, 5.0]}), 'newmec-2'], [({'t5.156.114.2': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.2': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.2': [0.624, 5.0], 't2.156.114.2': [0.408, 5.0], 't3.156.114.2': [0.571, 5.0]}), 'osboxes-0'], [({'t5.101.114.3': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.3': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.3': [0.448, 5.0], 't2.101.114.3': [0.574, 5.0]}), 'newmec-1'], [({'t2.156.114.4': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.4': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.4': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.4': [0.711, 5.0], 't5.156.114.4': [0.723, 5.0], 't4.156.114.4': [0.692, 10.0]}), 'osboxes-0'], [({'t2.102.114.5': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.5': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.5': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.5': [0.771, 5.0], 't3.102.114.5': [0.441, 5.0], 't4.102.114.5': [0.681, 10.0]}), 'newmec-2'], [({'t4.104.114.6': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.6': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.6': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.6': [0.587, 10.0], 't5.104.114.6': [0.48, 5.0], 't3.104.114.6': [0.52, 5.0]}), 'newmec-4'], [({'t3.156.114.7': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.7': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.7': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.7': [0.736, 5.0], 't2.156.114.7': [0.653, 5.0], 't5.156.114.7': [0.635, 5.0]}), 'osboxes-0'], [({'t5.102.114.8': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.8': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.8': [0.481, 5.0], 't2.102.114.8': [0.596, 5.0]}), 'newmec-2'], [({'t3.103.114.9': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.9': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.9': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.9': [0.647, 5.0], 't4.103.114.9': [0.505, 10.0], 't5.103.114.9': [0.457, 5.0]}), 'newmec-3'], [({'t3.104.114.10': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.10': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.10': [0.512, 5.0], 't4.104.114.10': [0.756, 10.0]}), 'newmec-4'], [({'t5.101.114.11': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.11': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.11': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.11': [0.615, 5.0], 't3.101.114.11': [0.672, 5.0], 't2.101.114.11': [0.755, 5.0]}), 'newmec-1'], [({'t2.101.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.12': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.12': [0.684, 5.0], 't5.101.114.12': [0.5, 5.0]}), 'newmec-1'], [({'t4.101.114.13': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.13': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.13': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.13': [0.461, 10.0], 't3.101.114.13': [0.688, 5.0], 't1.101.114.13': [0.714, 6.667]}), 'newmec-1'], [({'t5.103.114.14': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.14': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.14': [0.548, 5.0], 't1.103.114.14': [0.602, 6.667], 't2.103.114.14': [0.438, 5.0]}), 'newmec-3'], [({'t2.101.114.15': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.15': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.15': [0.753, 5.0], 't1.101.114.15': [0.616, 6.667], 't5.101.114.15': [0.757, 5.0]}), 'newmec-1'], [({'t3.101.114.16': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.16': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.16': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.16': [0.404, 5.0], 't5.101.114.16': [0.512, 5.0], 't2.101.114.16': [0.653, 5.0]}), 'newmec-1'], [({'t1.104.114.17': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.17': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.17': [0.582, 6.667], 't5.104.114.17': [0.483, 5.0]}), 'newmec-4'], [({'t5.101.114.18': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.18': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.18': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.18': [0.662, 5.0], 't4.101.114.18': [0.508, 10.0], 't2.101.114.18': [0.683, 5.0]}), 'newmec-1'], [({'t2.102.114.19': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.19': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.19': [0.616, 5.0], 't1.102.114.19': [0.738, 6.667], 't4.102.114.19': [0.723, 10.0]}), 'newmec-2'], [({'t4.101.114.20': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.20': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.20': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.20': [0.516, 10.0], 't3.101.114.20': [0.417, 5.0], 't5.101.114.20': [0.711, 5.0]}), 'newmec-1'], [({'t3.101.114.21': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.21': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.21': [0.54, 5.0], 't1.101.114.21': [0.556, 6.667]}), 'newmec-1'], [({'t5.105.114.22': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.22': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.22': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.22': [0.657, 5.0], 't4.105.114.22': [0.717, 10.0], 't3.105.114.22': [0.72, 5.0]}), 'newmec-5'], [({'t1.102.114.23': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.23': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.23': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.23': [0.623, 6.667], 't4.102.114.23': [0.644, 10.0], 't5.102.114.23': [0.552, 5.0]}), 'newmec-2'], [({'t1.103.114.24': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.24': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.24': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.24': [0.713, 6.667], 't3.103.114.24': [0.687, 5.0], 't5.103.114.24': [0.531, 5.0]}), 'newmec-3'], [({'t3.101.114.25': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.25': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.25': [0.534, 5.0], 't4.101.114.25': [0.728, 10.0], 't2.101.114.25': [0.769, 5.0]}), 'newmec-1'], [({'t5.104.114.26': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.26': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.26': [0.469, 5.0], 't1.104.114.26': [0.413, 6.667]}), 'newmec-4'], [({'t3.104.114.27': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.27': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.27': [0.747, 5.0], 't5.104.114.27': [0.615, 5.0]}), 'newmec-4'], [({'t3.102.114.28': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.28': [0.64, 5.0], 't2.102.114.28': [0.433, 5.0], 't4.102.114.28': [0.726, 10.0]}), 'newmec-2'], [({'t3.101.114.29': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.29': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.29': [0.47, 5.0], 't2.101.114.29': [0.767, 5.0]}), 'newmec-1'], [({'t1.102.114.30': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.30': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.30': [0.556, 6.667], 't2.102.114.30': [0.506, 5.0]}), 'newmec-2'], [({'t5.101.114.31': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.31': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.31': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.31': [0.578, 5.0], 't3.101.114.31': [0.642, 5.0], 't1.101.114.31': [0.643, 6.667]}), 'newmec-1'], [({'t5.102.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.32': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.32': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.32': [0.762, 5.0], 't4.102.114.32': [0.49, 10.0], 't3.102.114.32': [0.525, 5.0]}), 'newmec-2'], [({'t3.156.114.33': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.33': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.33': [0.628, 5.0], 't4.156.114.33': [0.572, 10.0]}), 'osboxes-0'], [({'t5.101.114.34': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.34': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.34': [0.601, 5.0], 't1.101.114.34': [0.705, 6.667]}), 'newmec-1'], [({'t1.104.114.35': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.35': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.35': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.35': [0.671, 6.667], 't5.104.114.35': [0.412, 5.0], 't4.104.114.35': [0.403, 10.0]}), 'newmec-4'], [({'t2.101.114.36': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.36': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.36': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.36': [0.484, 5.0], 't4.101.114.36': [0.463, 10.0], 't1.101.114.36': [0.444, 6.667]}), 'newmec-1'], [({'t3.103.114.37': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.37': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.37': [0.765, 5.0], 't1.103.114.37': [0.564, 6.667]}), 'newmec-3'], [({'t4.104.114.38': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.38': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.38': [0.586, 10.0], 't2.104.114.38': [0.562, 5.0], 't1.104.114.38': [0.444, 6.667]}), 'newmec-4'], [({'t5.102.114.39': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.39': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.39': [0.573, 5.0], 't3.102.114.39': [0.621, 5.0]}), 'newmec-2'], [({'t3.104.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.40': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.40': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.40': [0.692, 5.0], 't1.104.114.40': [0.72, 6.667], 't2.104.114.40': [0.647, 5.0]}), 'newmec-4'], [({'t1.101.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.41': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.41': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.41': [0.627, 6.667], 't5.101.114.41': [0.424, 5.0], 't3.101.114.41': [0.491, 5.0]}), 'newmec-1'], [({'t4.101.114.42': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.42': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.42': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.42': [0.435, 10.0], 't1.101.114.42': [0.734, 6.667], 't5.101.114.42': [0.502, 5.0]}), 'newmec-1'], [({'t2.102.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.43': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.43': [0.512, 5.0], 't5.102.114.43': [0.722, 5.0]}), 'newmec-2'], [({'t5.156.114.44': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.44': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.44': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.44': [0.756, 5.0], 't1.156.114.44': [0.444, 6.667], 't2.156.114.44': [0.727, 5.0]}), 'osboxes-0'], [({'t5.101.114.45': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.45': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.45': [0.419, 5.0], 't1.101.114.45': [0.72, 6.667]}), 'newmec-1'], [({'t1.102.114.46': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.46': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.46': [0.564, 6.667], 't5.102.114.46': [0.694, 5.0], 't2.102.114.46': [0.572, 5.0]}), 'newmec-2'], [({'t5.105.114.47': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.47': [0.626, 5.0], 't2.105.114.47': [0.694, 5.0]}), 'newmec-5'], [({'t3.102.114.48': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.48': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.48': [0.46, 5.0], 't5.102.114.48': [0.551, 5.0]}), 'newmec-2'], [({'t5.102.114.49': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.49': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.49': [0.693, 5.0], 't4.102.114.49': [0.612, 10.0]}), 'newmec-2'], [({'t3.102.114.50': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.50': [0.702, 5.0], 't2.102.114.50': [0.76, 5.0]}), 'newmec-2'], [({'t5.103.114.51': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.51': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.51': [0.717, 5.0], 't3.103.114.51': [0.41, 5.0]}), 'newmec-3'], [({'t2.102.114.52': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.52': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.52': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.52': [0.425, 5.0], 't3.102.114.52': [0.613, 5.0], 't4.102.114.52': [0.477, 10.0]}), 'newmec-2'], [({'t1.102.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.53': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.53': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.53': [0.647, 6.667], 't3.102.114.53': [0.693, 5.0], 't4.102.114.53': [0.623, 10.0]}), 'newmec-2'], [({'t2.104.114.54': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.54': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.54': [0.502, 5.0], 't1.104.114.54': [0.476, 6.667], 't5.104.114.54': [0.406, 5.0]}), 'newmec-4'], [({'t2.102.114.55': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.55': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.55': [0.452, 5.0], 't3.102.114.55': [0.794, 5.0], 't1.102.114.55': [0.551, 6.667]}), 'newmec-2'], [({'t3.101.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.56': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.56': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.56': [0.575, 5.0], 't2.101.114.56': [0.555, 5.0], 't4.101.114.56': [0.574, 10.0]}), 'newmec-1'], [({'t5.102.114.57': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.57': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.57': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.57': [0.587, 5.0], 't3.102.114.57': [0.533, 5.0], 't2.102.114.57': [0.502, 5.0]}), 'newmec-2'], [({'t3.102.114.58': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.58': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.58': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.58': [0.594, 5.0], 't1.102.114.58': [0.638, 6.667], 't4.102.114.58': [0.783, 10.0]}), 'newmec-2'], [({'t4.102.114.59': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.59': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.59': [0.541, 10.0], 't2.102.114.59': [0.773, 5.0], 't3.102.114.59': [0.539, 5.0]}), 'newmec-2'], [({'t4.102.114.60': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.60': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.60': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.60': [0.604, 10.0], 't2.102.114.60': [0.496, 5.0], 't3.102.114.60': [0.635, 5.0]}), 'newmec-2'], [({'t2.102.114.61': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.61': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.61': [0.596, 5.0], 't4.102.114.61': [0.646, 10.0]}), 'newmec-2'], [({'t1.102.114.62': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.62': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.62': [0.465, 6.667], 't4.102.114.62': [0.628, 10.0]}), 'newmec-2'], [({'t1.105.114.63': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.63': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.105.114.63': [0.426, 6.667], 't5.105.114.63': [0.524, 5.0]}), 'newmec-5'], [({'t5.102.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.64': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.64': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.64': [0.612, 5.0], 't2.102.114.64': [0.435, 5.0], 't1.102.114.64': [0.577, 6.667]}), 'newmec-2'], [({'t3.101.114.65': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.65': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.65': [0.519, 5.0], 't4.101.114.65': [0.594, 10.0]}), 'newmec-1'], [({'t5.101.114.66': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.66': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.66': [0.45, 5.0], 't1.101.114.66': [0.447, 6.667], 't4.101.114.66': [0.68, 10.0]}), 'newmec-1'], [({'t3.101.114.67': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.67': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.67': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.67': [0.542, 5.0], 't2.101.114.67': [0.791, 5.0], 't4.101.114.67': [0.634, 10.0]}), 'newmec-1'], [({'t5.102.114.68': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.68': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.68': [0.512, 5.0], 't4.102.114.68': [0.535, 10.0]}), 'newmec-2'], [({'t5.103.114.69': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.69': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.69': [0.481, 5.0], 't4.103.114.69': [0.488, 10.0]}), 'newmec-3'], [({'t2.101.114.70': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.70': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.70': [0.407, 5.0], 't3.101.114.70': [0.503, 5.0], 't4.101.114.70': [0.783, 10.0]}), 'newmec-1'], [({'t1.102.114.71': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.71': [0.579, 6.667], 't2.102.114.71': [0.536, 5.0], 't4.102.114.71': [0.712, 10.0]}), 'newmec-2'], [({'t2.102.114.72': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.72': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.72': [0.435, 5.0], 't5.102.114.72': [0.535, 5.0]}), 'newmec-2'], [({'t5.102.114.73': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.73': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.73': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.73': [0.488, 5.0], 't4.102.114.73': [0.566, 10.0], 't2.102.114.73': [0.653, 5.0]}), 'newmec-2'], [({'t3.101.114.74': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.74': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.74': [0.68, 5.0], 't4.101.114.74': [0.773, 10.0], 't2.101.114.74': [0.624, 5.0]}), 'newmec-1'], [({'t4.103.114.75': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.75': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.75': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.75': [0.65, 10.0], 't2.103.114.75': [0.471, 5.0], 't1.103.114.75': [0.639, 6.667]}), 'newmec-3'], [({'t3.103.114.76': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.76': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.76': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.76': [0.746, 5.0], 't2.103.114.76': [0.783, 5.0], 't5.103.114.76': [0.535, 5.0]}), 'newmec-3'], [({'t3.102.114.77': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.77': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.77': [0.515, 5.0], 't4.102.114.77': [0.477, 10.0]}), 'newmec-2'], [({'t2.102.114.78': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.78': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.78': [0.718, 5.0], 't4.102.114.78': [0.535, 10.0]}), 'newmec-2'], [({'t2.102.114.79': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.79': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.79': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.79': [0.733, 5.0], 't3.102.114.79': [0.652, 5.0], 't4.102.114.79': [0.505, 10.0]}), 'newmec-2'], [({'t3.102.114.80': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.80': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.80': [0.608, 5.0], 't1.102.114.80': [0.74, 6.667]}), 'newmec-2'], [({'t1.102.114.81': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.81': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.81': [0.768, 6.667], 't4.102.114.81': [0.517, 10.0]}), 'newmec-2'], [({'t2.101.114.82': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.82': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.82': [0.771, 5.0], 't4.101.114.82': [0.773, 10.0]}), 'newmec-1'], [({'t2.104.114.83': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.83': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.83': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.83': [0.562, 5.0], 't5.104.114.83': [0.746, 5.0], 't4.104.114.83': [0.724, 10.0]}), 'newmec-4'], [({'t4.102.114.84': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.84': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.84': [0.411, 10.0], 't2.102.114.84': [0.66, 5.0]}), 'newmec-2'], [({'t3.102.114.85': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.85': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.85': [0.423, 5.0], 't2.102.114.85': [0.786, 5.0], 't5.102.114.85': [0.726, 5.0]}), 'newmec-2'], [({'t3.101.114.86': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.86': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.86': [0.649, 5.0], 't2.101.114.86': [0.4, 5.0]}), 'newmec-1'], [({'t3.105.114.87': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.87': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.87': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.87': [0.559, 5.0], 't4.105.114.87': [0.739, 10.0], 't2.105.114.87': [0.466, 5.0]}), 'newmec-5'], [({'t1.101.114.88': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.88': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.88': [0.483, 6.667], 't3.101.114.88': [0.691, 5.0], 't4.101.114.88': [0.608, 10.0]}), 'newmec-1'], [({'t5.102.114.89': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.89': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.89': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.89': [0.76, 5.0], 't3.102.114.89': [0.661, 5.0], 't4.102.114.89': [0.509, 10.0]}), 'newmec-2'], [({'t4.104.114.90': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.90': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.90': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.90': [0.767, 10.0], 't3.104.114.90': [0.733, 5.0], 't5.104.114.90': [0.46, 5.0]}), 'newmec-4'], [({'t4.102.114.91': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.91': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.91': [0.496, 10.0], 't2.102.114.91': [0.447, 5.0], 't5.102.114.91': [0.759, 5.0]}), 'newmec-2'], [({'t1.101.114.92': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.92': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.92': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.92': [0.581, 6.667], 't5.101.114.92': [0.614, 5.0], 't2.101.114.92': [0.554, 5.0]}), 'newmec-1'], [({'t2.102.114.93': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.93': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.93': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.93': [0.703, 5.0], 't3.102.114.93': [0.645, 5.0], 't1.102.114.93': [0.708, 6.667]}), 'newmec-2'], [({'t2.102.114.94': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.94': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.94': [0.654, 5.0], 't5.102.114.94': [0.749, 5.0]}), 'newmec-2'], [({'t4.102.114.95': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.95': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.95': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.95': [0.423, 10.0], 't2.102.114.95': [0.785, 5.0], 't3.102.114.95': [0.564, 5.0]}), 'newmec-2'], [({'t4.104.114.96': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.96': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.96': [0.491, 10.0], 't5.104.114.96': [0.733, 5.0]}), 'newmec-4'], [({'t1.101.114.97': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.97': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.97': [0.695, 6.667], 't3.101.114.97': [0.435, 5.0]}), 'newmec-1'], [({'t2.104.114.98': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.98': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.98': [0.541, 5.0], 't3.104.114.98': [0.432, 5.0]}), 'newmec-4'], [({'t4.102.114.99': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.99': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.99': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.99': [0.463, 10.0], 't2.102.114.99': [0.755, 5.0], 't5.102.114.99': [0.414, 5.0]}), 'newmec-2'], [({'t1.103.114.100': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.100': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.100': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.100': [0.552, 6.667], 't2.103.114.100': [0.71, 5.0], 't4.103.114.100': [0.577, 10.0]}), 'newmec-3'], [({'t2.102.114.101': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.101': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.101': [0.579, 5.0], 't1.102.114.101': [0.561, 6.667]}), 'newmec-2'], [({'t2.102.114.102': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.102': [0.451, 5.0], 't4.102.114.102': [0.519, 10.0]}), 'newmec-2'], [({'t5.101.114.103': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.103': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.103': [0.701, 5.0], 't4.101.114.103': [0.494, 10.0]}), 'newmec-1'], [({'t1.102.114.104': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.104': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.104': [0.584, 6.667], 't3.102.114.104': [0.77, 5.0]}), 'newmec-2'], [({'t5.101.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.105': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.105': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.105': [0.671, 5.0], 't2.101.114.105': [0.423, 5.0], 't3.101.114.105': [0.738, 5.0]}), 'newmec-1'], [({'t2.102.114.106': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.106': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.106': [0.512, 5.0], 't4.102.114.106': [0.705, 10.0], 't5.102.114.106': [0.642, 5.0]}), 'newmec-2'], [({'t5.102.114.107': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.107': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.107': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.107': [0.692, 5.0], 't4.102.114.107': [0.724, 10.0], 't3.102.114.107': [0.608, 5.0]}), 'newmec-2'], [({'t1.102.114.108': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.108': [0.411, 6.667], 't5.102.114.108': [0.794, 5.0]}), 'newmec-2'], [({'t3.156.114.109': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.109': [0.552, 5.0], 't2.156.114.109': [0.544, 5.0]}), 'osboxes-0'], [({'t1.101.114.110': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.110': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.110': [0.589, 6.667], 't5.101.114.110': [0.583, 5.0]}), 'newmec-1'], [({'t4.103.114.111': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.111': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.111': [0.638, 10.0], 't1.103.114.111': [0.752, 6.667], 't2.103.114.111': [0.74, 5.0]}), 'newmec-3'], [({'t4.105.114.112': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.112': [0.542, 10.0], 't5.105.114.112': [0.761, 5.0]}), 'newmec-5'], [({'t4.102.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.113': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.113': [0.412, 10.0], 't5.102.114.113': [0.669, 5.0]}), 'newmec-2'], [({'t2.102.114.114': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.114': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.114': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.114': [0.798, 5.0], 't4.102.114.114': [0.532, 10.0], 't3.102.114.114': [0.432, 5.0]}), 'newmec-2'], [({'t3.105.114.115': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.115': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.115': [0.571, 5.0], 't5.105.114.115': [0.441, 5.0]}), 'newmec-5'], [({'t5.101.114.116': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.116': [0.755, 5.0], 't2.101.114.116': [0.771, 5.0]}), 'newmec-1'], [({'t5.102.114.117': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.117': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.117': [0.601, 5.0], 't2.102.114.117': [0.506, 5.0]}), 'newmec-2'], [({'t2.105.114.118': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.118': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.118': [0.718, 5.0], 't4.105.114.118': [0.5, 10.0]}), 'newmec-5'], [({'t3.105.114.119': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.119': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.119': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.119': [0.535, 5.0], 't2.105.114.119': [0.633, 5.0], 't4.105.114.119': [0.464, 10.0]}), 'newmec-5'], [({'t1.104.114.120': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.120': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.120': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.120': [0.426, 6.667], 't2.104.114.120': [0.642, 5.0], 't4.104.114.120': [0.786, 10.0]}), 'newmec-4'], [({'t2.105.114.121': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.121': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.121': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.121': [0.44, 5.0], 't3.105.114.121': [0.634, 5.0], 't4.105.114.121': [0.42, 10.0]}), 'newmec-5'], [({'t1.102.114.122': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.122': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.122': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.122': [0.742, 6.667], 't3.102.114.122': [0.536, 5.0], 't4.102.114.122': [0.764, 10.0]}), 'newmec-2'], [({'t4.101.114.123': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.123': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.123': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.123': [0.601, 10.0], 't3.101.114.123': [0.581, 5.0], 't5.101.114.123': [0.559, 5.0]}), 'newmec-1'], [({'t2.103.114.124': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.124': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.124': [0.456, 5.0], 't5.103.114.124': [0.793, 5.0], 't4.103.114.124': [0.562, 10.0]}), 'newmec-3'], [({'t4.102.114.125': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.125': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.125': [0.548, 10.0], 't2.102.114.125': [0.765, 5.0]}), 'newmec-2'], [({'t1.101.114.126': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.126': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.126': [0.77, 6.667], 't2.101.114.126': [0.561, 5.0]}), 'newmec-1'], [({'t4.101.114.127': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.127': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.127': [0.545, 10.0], 't1.101.114.127': [0.617, 6.667], 't2.101.114.127': [0.623, 5.0]}), 'newmec-1'], [({'t4.103.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.128': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.128': [0.794, 10.0], 't1.103.114.128': [0.576, 6.667]}), 'newmec-3'], [({'t3.156.114.129': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.129': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.129': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.129': [0.424, 5.0], 't1.156.114.129': [0.522, 6.667], 't5.156.114.129': [0.661, 5.0]}), 'osboxes-0'], [({'t4.102.114.130': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.130': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.130': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.130': [0.757, 10.0], 't2.102.114.130': [0.479, 5.0], 't1.102.114.130': [0.601, 6.667]}), 'newmec-2'], [({'t1.102.114.131': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.131': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.131': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.131': [0.499, 6.667], 't5.102.114.131': [0.625, 5.0], 't3.102.114.131': [0.574, 5.0]}), 'newmec-2'], [({'t2.101.114.132': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.132': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.132': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.132': [0.401, 5.0], 't5.101.114.132': [0.475, 5.0], 't3.101.114.132': [0.709, 5.0]}), 'newmec-1'], [({'t2.101.114.133': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.133': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.133': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.133': [0.553, 5.0], 't5.101.114.133': [0.589, 5.0], 't4.101.114.133': [0.458, 10.0]}), 'newmec-1'], [({'t5.102.114.134': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.134': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.134': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.134': [0.452, 5.0], 't4.102.114.134': [0.493, 10.0], 't1.102.114.134': [0.793, 6.667]}), 'newmec-2'], [({'t1.101.114.135': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.135': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.135': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.135': [0.587, 6.667], 't4.101.114.135': [0.407, 10.0], 't3.101.114.135': [0.787, 5.0]}), 'newmec-1'], [({'t4.104.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.136': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.136': [0.778, 10.0], 't2.104.114.136': [0.622, 5.0]}), 'newmec-4'], [({'t2.102.114.137': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.137': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.137': [0.412, 5.0], 't4.102.114.137': [0.52, 10.0], 't1.102.114.137': [0.558, 6.667]}), 'newmec-2'], [({'t4.102.114.138': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.138': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.138': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.138': [0.603, 10.0], 't5.102.114.138': [0.682, 5.0], 't3.102.114.138': [0.539, 5.0]}), 'newmec-2'], [({'t4.102.114.139': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.139': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.139': [0.63, 10.0], 't1.102.114.139': [0.637, 6.667]}), 'newmec-2'], [({'t4.104.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.140': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.140': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.140': [0.565, 10.0], 't2.104.114.140': [0.624, 5.0], 't3.104.114.140': [0.436, 5.0]}), 'newmec-4'], [({'t5.101.114.141': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.141': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.141': [0.642, 5.0], 't2.101.114.141': [0.755, 5.0]}), 'newmec-1'], [({'t1.102.114.142': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.142': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.142': [0.788, 6.667], 't2.102.114.142': [0.753, 5.0]}), 'newmec-2'], [({'t2.101.114.143': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.143': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.143': [0.41, 5.0], 't4.101.114.143': [0.458, 10.0], 't3.101.114.143': [0.603, 5.0]}), 'newmec-1'], [({'t2.104.114.144': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.144': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.144': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.144': [0.633, 5.0], 't1.104.114.144': [0.603, 6.667], 't3.104.114.144': [0.555, 5.0]}), 'newmec-4'], [({'t3.156.114.145': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.145': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.145': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.145': [0.573, 5.0], 't1.156.114.145': [0.679, 6.667], 't5.156.114.145': [0.619, 5.0]}), 'osboxes-0'], [({'t1.102.114.146': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.146': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.146': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.146': [0.462, 6.667], 't3.102.114.146': [0.749, 5.0], 't2.102.114.146': [0.499, 5.0]}), 'newmec-2'], [({'t5.156.114.147': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.147': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.147': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.147': [0.654, 5.0], 't3.156.114.147': [0.66, 5.0], 't4.156.114.147': [0.507, 10.0]}), 'osboxes-0'], [({'t2.105.114.148': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.148': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.148': [0.587, 5.0], 't1.105.114.148': [0.632, 6.667]}), 'newmec-5'], [({'t2.102.114.149': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.149': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.149': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.149': [0.484, 5.0], 't4.102.114.149': [0.769, 10.0], 't3.102.114.149': [0.424, 5.0]}), 'newmec-2'], [({'t5.101.114.150': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.150': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.150': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.150': [0.546, 5.0], 't2.101.114.150': [0.573, 5.0], 't4.101.114.150': [0.487, 10.0]}), 'newmec-1'], [({'t5.156.114.151': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.151': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.151': [0.736, 5.0], 't3.156.114.151': [0.412, 5.0]}), 'osboxes-0'], [({'t4.102.114.152': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.152': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.152': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.152': [0.794, 10.0], 't1.102.114.152': [0.409, 6.667], 't2.102.114.152': [0.592, 5.0]}), 'newmec-2'], [({'t1.103.114.153': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.153': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.153': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.153': [0.665, 6.667], 't2.103.114.153': [0.694, 5.0], 't3.103.114.153': [0.681, 5.0]}), 'newmec-3'], [({'t3.103.114.154': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.154': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.154': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.154': [0.666, 5.0], 't2.103.114.154': [0.54, 5.0], 't4.103.114.154': [0.656, 10.0]}), 'newmec-3'], [({'t1.104.114.155': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.155': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.155': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.155': [0.627, 6.667], 't2.104.114.155': [0.438, 5.0], 't3.104.114.155': [0.64, 5.0]}), 'newmec-4'], [({'t4.102.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.156': [0.746, 10.0], 't2.102.114.156': [0.401, 5.0]}), 'newmec-2'], [({'t4.101.114.157': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.157': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.157': [0.785, 10.0], 't3.101.114.157': [0.546, 5.0], 't2.101.114.157': [0.677, 5.0]}), 'newmec-1'], [({'t1.101.114.158': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.158': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.158': [0.565, 6.667], 't2.101.114.158': [0.592, 5.0]}), 'newmec-1'], [({'t5.102.114.159': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.159': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.159': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.159': [0.52, 5.0], 't4.102.114.159': [0.759, 10.0], 't3.102.114.159': [0.691, 5.0]}), 'newmec-2'], [({'t5.156.114.160': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.160': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.160': [0.633, 5.0], 't3.156.114.160': [0.491, 5.0]}), 'osboxes-0'], [({'t1.102.114.161': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.161': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.161': [0.625, 6.667], 't5.102.114.161': [0.655, 5.0], 't2.102.114.161': [0.672, 5.0]}), 'newmec-2'], [({'t5.102.114.162': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.162': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.162': [0.437, 5.0], 't2.102.114.162': [0.511, 5.0]}), 'newmec-2'], [({'t1.105.114.163': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.163': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.105.114.163': [0.592, 6.667], 't3.105.114.163': [0.454, 5.0]}), 'newmec-5'], [({'t2.101.114.164': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.164': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.164': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.164': [0.648, 5.0], 't1.101.114.164': [0.42, 6.667], 't3.101.114.164': [0.471, 5.0]}), 'newmec-1'], [({'t2.103.114.165': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.165': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.165': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.165': [0.645, 5.0], 't1.103.114.165': [0.742, 6.667], 't4.103.114.165': [0.721, 10.0]}), 'newmec-3'], [({'t4.101.114.166': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.166': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.166': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.166': [0.426, 10.0], 't1.101.114.166': [0.559, 6.667], 't2.101.114.166': [0.741, 5.0]}), 'newmec-1'], [({'t4.156.114.167': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.167': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.167': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.167': [0.446, 10.0], 't3.156.114.167': [0.77, 5.0], 't1.156.114.167': [0.743, 6.667]}), 'osboxes-0'], [({'t2.103.114.168': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.168': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.168': [0.547, 5.0], 't5.103.114.168': [0.596, 5.0]}), 'newmec-3'], [({'t5.104.114.169': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.169': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.169': [0.663, 5.0], 't1.104.114.169': [0.45, 6.667]}), 'newmec-4'], [({'t1.104.114.170': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.170': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.170': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.170': [0.559, 6.667], 't3.104.114.170': [0.445, 5.0], 't2.104.114.170': [0.535, 5.0]}), 'newmec-4'], [({'t4.101.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.171': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.171': [0.619, 10.0], 't3.101.114.171': [0.578, 5.0]}), 'newmec-1'], [({'t2.101.114.172': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.172': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.172': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.172': [0.753, 5.0], 't5.101.114.172': [0.484, 5.0], 't3.101.114.172': [0.65, 5.0]}), 'newmec-1'], [({'t2.103.114.173': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.173': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.173': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.173': [0.632, 5.0], 't1.103.114.173': [0.541, 6.667], 't4.103.114.173': [0.449, 10.0]}), 'newmec-3'], [({'t2.101.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.174': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.174': [0.475, 5.0], 't5.101.114.174': [0.408, 5.0]}), 'newmec-1'], [({'t4.105.114.175': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.175': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.175': [0.472, 10.0], 't5.105.114.175': [0.572, 5.0]}), 'newmec-5'], [({'t5.102.114.176': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.176': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.176': [0.595, 5.0], 't4.102.114.176': [0.688, 10.0]}), 'newmec-2'], [({'t2.104.114.177': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.177': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.177': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.177': [0.741, 5.0], 't1.104.114.177': [0.432, 6.667], 't4.104.114.177': [0.675, 10.0]}), 'newmec-4'], [({'t1.101.114.178': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.178': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.178': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.178': [0.415, 6.667], 't3.101.114.178': [0.409, 5.0], 't4.101.114.178': [0.412, 10.0]}), 'newmec-1'], [({'t2.105.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.179': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.179': [0.414, 5.0], 't1.105.114.179': [0.432, 6.667]}), 'newmec-5'], [({'t2.101.114.180': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.180': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.180': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.180': [0.544, 5.0], 't1.101.114.180': [0.578, 6.667], 't4.101.114.180': [0.579, 10.0]}), 'newmec-1'], [({'t5.101.114.181': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.181': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.181': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.181': [0.647, 5.0], 't2.101.114.181': [0.578, 5.0], 't1.101.114.181': [0.464, 6.667]}), 'newmec-1'], [({'t2.102.114.182': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.182': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.182': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.182': [0.545, 5.0], 't1.102.114.182': [0.61, 6.667], 't3.102.114.182': [0.782, 5.0]}), 'newmec-2'], [({'t4.104.114.183': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.183': [0.595, 10.0], 't5.104.114.183': [0.426, 5.0]}), 'newmec-4'], [({'t5.102.114.184': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.184': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.184': [0.737, 5.0], 't4.102.114.184': [0.748, 10.0]}), 'newmec-2'], [({'t3.104.114.185': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.185': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.185': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.185': [0.68, 5.0], 't1.104.114.185': [0.448, 6.667], 't2.104.114.185': [0.662, 5.0]}), 'newmec-4'], [({'t5.102.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.186': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.186': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.186': [0.531, 5.0], 't1.102.114.186': [0.522, 6.667], 't2.102.114.186': [0.568, 5.0]}), 'newmec-2'], [({'t2.102.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.187': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.187': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.187': [0.768, 5.0], 't5.102.114.187': [0.79, 5.0], 't3.102.114.187': [0.746, 5.0]}), 'newmec-2'], [({'t3.101.114.188': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.188': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.188': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.188': [0.545, 5.0], 't5.101.114.188': [0.659, 5.0], 't4.101.114.188': [0.513, 10.0]}), 'newmec-1'], [({'t1.102.114.189': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.189': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.189': [0.627, 6.667], 't4.102.114.189': [0.497, 10.0]}), 'newmec-2'], [({'t2.104.114.190': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.190': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.190': [0.413, 5.0], 't1.104.114.190': [0.753, 6.667]}), 'newmec-4'], [({'t5.104.114.191': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.191': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.191': [0.536, 5.0], 't1.104.114.191': [0.725, 6.667]}), 'newmec-4'], [({'t5.101.114.192': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.192': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.192': [0.634, 5.0], 't3.101.114.192': [0.699, 5.0]}), 'newmec-1'], [({'t1.103.114.193': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.193': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.193': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.193': [0.466, 6.667], 't5.103.114.193': [0.74, 5.0], 't3.103.114.193': [0.492, 5.0]}), 'newmec-3'], [({'t2.104.114.194': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.194': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.194': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.194': [0.547, 5.0], 't3.104.114.194': [0.556, 5.0], 't4.104.114.194': [0.755, 10.0]}), 'newmec-4'], [({'t2.103.114.195': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.195': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.195': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.195': [0.627, 5.0], 't5.103.114.195': [0.662, 5.0], 't4.103.114.195': [0.45, 10.0]}), 'newmec-3'], [({'t4.103.114.196': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.196': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.196': [0.468, 10.0], 't2.103.114.196': [0.554, 5.0]}), 'newmec-3'], [({'t4.101.114.197': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.197': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.197': [0.753, 10.0], 't2.101.114.197': [0.582, 5.0]}), 'newmec-1'], [({'t3.104.114.198': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.198': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.198': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.198': [0.607, 5.0], 't2.104.114.198': [0.684, 5.0], 't4.104.114.198': [0.408, 10.0]}), 'newmec-4'], [({'t3.102.114.199': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.199': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.199': [0.48, 5.0], 't2.102.114.199': [0.517, 5.0]}), 'newmec-2'], [({'t3.101.114.200': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.200': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.200': [0.552, 5.0], 't5.101.114.200': [0.511, 5.0], 't2.101.114.200': [0.8, 5.0]}), 'newmec-1'], [({'t4.102.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.201': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.201': [0.696, 10.0], 't3.102.114.201': [0.704, 5.0]}), 'newmec-2'], [({'t4.104.114.202': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.202': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.202': [0.696, 10.0], 't3.104.114.202': [0.418, 5.0]}), 'newmec-4'], [({'t3.156.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.203': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.203': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.203': [0.554, 5.0], 't4.156.114.203': [0.518, 10.0], 't5.156.114.203': [0.667, 5.0]}), 'osboxes-0'], [({'t1.101.114.204': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.204': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.204': [0.556, 6.667], 't5.101.114.204': [0.666, 5.0]}), 'newmec-1'], [({'t4.103.114.205': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.205': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.205': [0.476, 10.0], 't2.103.114.205': [0.55, 5.0]}), 'newmec-3'], [({'t4.101.114.206': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.206': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.206': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.206': [0.734, 10.0], 't3.101.114.206': [0.651, 5.0], 't5.101.114.206': [0.49, 5.0]}), 'newmec-1'], [({'t3.102.114.207': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.207': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.207': [0.502, 5.0], 't4.102.114.207': [0.753, 10.0]}), 'newmec-2'], [({'t3.104.114.208': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.208': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.208': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.208': [0.674, 5.0], 't5.104.114.208': [0.658, 5.0], 't1.104.114.208': [0.468, 6.667]}), 'newmec-4'], [({'t2.101.114.209': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.209': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.209': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.209': [0.516, 5.0], 't4.101.114.209': [0.599, 10.0], 't5.101.114.209': [0.679, 5.0]}), 'newmec-1'], [({'t5.102.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.210': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.210': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.210': [0.589, 5.0], 't2.102.114.210': [0.724, 5.0], 't4.102.114.210': [0.423, 10.0]}), 'newmec-2'], [({'t3.101.114.211': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.211': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.211': [0.505, 5.0], 't2.101.114.211': [0.677, 5.0], 't4.101.114.211': [0.779, 10.0]}), 'newmec-1'], [({'t2.104.114.212': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.212': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.212': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.212': [0.553, 5.0], 't4.104.114.212': [0.728, 10.0], 't5.104.114.212': [0.49, 5.0]}), 'newmec-4'], [({'t4.102.114.213': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.213': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.213': [0.447, 10.0], 't3.102.114.213': [0.494, 5.0]}), 'newmec-2'], [({'t1.101.114.214': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.214': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.214': [0.485, 6.667], 't4.101.114.214': [0.433, 10.0]}), 'newmec-1'], [({'t5.102.114.215': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.215': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.215': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.215': [0.613, 5.0], 't4.102.114.215': [0.632, 10.0], 't3.102.114.215': [0.761, 5.0]}), 'newmec-2'], [({'t2.104.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.216': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.216': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.216': [0.681, 5.0], 't4.104.114.216': [0.727, 10.0], 't5.104.114.216': [0.751, 5.0]}), 'newmec-4'], [({'t3.105.114.217': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.217': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.217': [0.63, 5.0], 't2.105.114.217': [0.609, 5.0]}), 'newmec-5'], [({'t4.103.114.218': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.218': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.218': [0.705, 10.0], 't3.103.114.218': [0.64, 5.0], 't2.103.114.218': [0.75, 5.0]}), 'newmec-3'], [({'t2.102.114.219': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.219': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.219': [0.507, 5.0], 't3.102.114.219': [0.784, 5.0]}), 'newmec-2'], [({'t4.101.114.220': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.220': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.220': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.220': [0.624, 10.0], 't1.101.114.220': [0.401, 6.667], 't5.101.114.220': [0.401, 5.0]}), 'newmec-1'], [({'t4.105.114.221': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.221': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.221': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.221': [0.474, 10.0], 't3.105.114.221': [0.445, 5.0], 't1.105.114.221': [0.702, 6.667]}), 'newmec-5'], [({'t2.103.114.222': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.222': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.222': [0.437, 5.0], 't5.103.114.222': [0.58, 5.0]}), 'newmec-3'], [({'t5.156.114.223': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.223': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.223': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.223': [0.792, 5.0], 't3.156.114.223': [0.7, 5.0], 't4.156.114.223': [0.687, 10.0]}), 'osboxes-0'], [({'t1.102.114.224': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.224': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.224': [0.709, 6.667], 't5.102.114.224': [0.613, 5.0], 't4.102.114.224': [0.553, 10.0]}), 'newmec-2'], [({'t5.102.114.225': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.225': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.225': [0.546, 5.0], 't3.102.114.225': [0.454, 5.0], 't2.102.114.225': [0.796, 5.0]}), 'newmec-2'], [({'t2.104.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.226': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.226': [0.674, 5.0], 't1.104.114.226': [0.719, 6.667]}), 'newmec-4'], [({'t2.105.114.227': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.227': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.227': [0.491, 5.0], 't1.105.114.227': [0.507, 6.667]}), 'newmec-5'], [({'t5.103.114.228': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.228': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.228': [0.643, 5.0], 't2.103.114.228': [0.628, 5.0]}), 'newmec-3'], [({'t5.102.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.229': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.229': [0.681, 5.0], 't2.102.114.229': [0.491, 5.0]}), 'newmec-2'], [({'t5.101.114.230': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.230': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.230': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.230': [0.724, 5.0], 't4.101.114.230': [0.777, 10.0], 't1.101.114.230': [0.594, 6.667]}), 'newmec-1'], [({'t1.102.114.231': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.231': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.231': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.231': [0.747, 6.667], 't3.102.114.231': [0.498, 5.0], 't4.102.114.231': [0.742, 10.0]}), 'newmec-2'], [({'t2.105.114.232': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.232': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.232': [0.453, 5.0], 't4.105.114.232': [0.729, 10.0]}), 'newmec-5'], [({'t2.101.114.233': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.233': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.233': [0.447, 5.0], 't4.101.114.233': [0.712, 10.0], 't5.101.114.233': [0.727, 5.0]}), 'newmec-1'], [({'t2.101.114.234': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.234': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.234': [0.591, 5.0], 't4.101.114.234': [0.428, 10.0]}), 'newmec-1'], [({'t5.102.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.235': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.235': [0.663, 5.0], 't4.102.114.235': [0.788, 10.0]}), 'newmec-2'], [({'t2.105.114.236': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.236': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.236': [0.74, 5.0], 't4.105.114.236': [0.61, 10.0]}), 'newmec-5'], [({'t2.102.114.237': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.237': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.237': [0.473, 5.0], 't4.102.114.237': [0.771, 10.0]}), 'newmec-2'], [({'t4.102.114.238': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.238': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.238': [0.6, 10.0], 't3.102.114.238': [0.416, 5.0]}), 'newmec-2'], [({'t2.102.114.239': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.239': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.239': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.239': [0.417, 5.0], 't3.102.114.239': [0.533, 5.0], 't4.102.114.239': [0.705, 10.0]}), 'newmec-2'], [({'t3.104.114.240': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.240': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.240': [0.644, 5.0], 't4.104.114.240': [0.795, 10.0]}), 'newmec-4'], [({'t3.102.114.241': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.241': [0.756, 5.0], 't2.102.114.241': [0.685, 5.0]}), 'newmec-2'], [({'t3.102.114.242': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.242': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.242': [0.463, 5.0], 't2.102.114.242': [0.789, 5.0]}), 'newmec-2'], [({'t2.105.114.243': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.243': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.243': [0.511, 5.0], 't1.105.114.243': [0.468, 6.667]}), 'newmec-5'], [({'t5.102.114.244': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.244': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.244': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.244': [0.404, 5.0], 't4.102.114.244': [0.748, 10.0], 't2.102.114.244': [0.627, 5.0]}), 'newmec-2'], [({'t1.104.114.245': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.245': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.245': [0.49, 6.667], 't2.104.114.245': [0.594, 5.0]}), 'newmec-4'], [({'t4.101.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.246': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.246': [0.766, 10.0], 't3.101.114.246': [0.409, 5.0]}), 'newmec-1'], [({'t2.101.114.247': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.247': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.247': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.247': [0.532, 5.0], 't4.101.114.247': [0.745, 10.0], 't5.101.114.247': [0.708, 5.0]}), 'newmec-1'], [({'t5.101.114.248': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.248': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.248': [0.659, 5.0], 't3.101.114.248': [0.674, 5.0]}), 'newmec-1'], [({'t2.102.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.249': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.249': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.249': [0.555, 5.0], 't1.102.114.249': [0.576, 6.667], 't5.102.114.249': [0.608, 5.0]}), 'newmec-2'], [({'t3.104.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.250': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.250': [0.704, 5.0], 't2.104.114.250': [0.601, 5.0]}), 'newmec-4'], [({'t5.101.114.251': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.251': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.251': [0.465, 5.0], 't3.101.114.251': [0.489, 5.0]}), 'newmec-1'], [({'t5.101.114.252': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.252': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.252': [0.468, 5.0], 't2.101.114.252': [0.567, 5.0]}), 'newmec-1'], [({'t4.103.114.253': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.253': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.253': [0.662, 10.0], 't3.103.114.253': [0.702, 5.0]}), 'newmec-3'], [({'t4.101.114.254': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.254': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.254': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.254': [0.451, 10.0], 't2.101.114.254': [0.647, 5.0], 't1.101.114.254': [0.429, 6.667]}), 'newmec-1'], [({'t4.105.114.255': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.255': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.255': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.255': [0.795, 10.0], 't3.105.114.255': [0.433, 5.0], 't1.105.114.255': [0.696, 6.667]}), 'newmec-5'], [({'t3.101.114.256': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.256': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.256': [0.675, 5.0], 't4.101.114.256': [0.624, 10.0]}), 'newmec-1'], [({'t4.102.114.257': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.257': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.257': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.257': [0.437, 10.0], 't5.102.114.257': [0.79, 5.0], 't3.102.114.257': [0.467, 5.0]}), 'newmec-2'], [({'t3.102.114.258': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.258': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.258': [0.708, 5.0], 't5.102.114.258': [0.799, 5.0]}), 'newmec-2'], [({'t3.103.114.259': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.259': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.259': [0.764, 5.0], 't5.103.114.259': [0.668, 5.0], 't4.103.114.259': [0.468, 10.0]}), 'newmec-3'], [({'t5.104.114.260': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.260': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.260': [0.792, 5.0], 't1.104.114.260': [0.498, 6.667]}), 'newmec-4'], [({'t4.102.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.261': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.261': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.261': [0.493, 10.0], 't2.102.114.261': [0.439, 5.0], 't3.102.114.261': [0.778, 5.0]}), 'newmec-2'], [({'t2.156.114.262': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.262': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.262': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.262': [0.71, 5.0], 't3.156.114.262': [0.779, 5.0], 't5.156.114.262': [0.551, 5.0]}), 'osboxes-0'], [({'t3.102.114.263': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.263': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.263': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.263': [0.412, 5.0], 't1.102.114.263': [0.437, 6.667], 't2.102.114.263': [0.458, 5.0]}), 'newmec-2'], [({'t3.102.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.264': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.264': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.264': [0.451, 5.0], 't4.102.114.264': [0.475, 10.0], 't2.102.114.264': [0.753, 5.0]}), 'newmec-2'], [({'t2.103.114.265': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.265': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.265': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.265': [0.685, 5.0], 't5.103.114.265': [0.483, 5.0], 't4.103.114.265': [0.613, 10.0]}), 'newmec-3'], [({'t5.103.114.266': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.266': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.266': [0.672, 5.0], 't3.103.114.266': [0.79, 5.0]}), 'newmec-3'], [({'t3.105.114.267': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.267': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.267': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.267': [0.528, 5.0], 't2.105.114.267': [0.727, 5.0], 't1.105.114.267': [0.722, 6.667]}), 'newmec-5'], [({'t1.104.114.268': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.268': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.268': [0.719, 6.667], 't5.104.114.268': [0.593, 5.0], 't3.104.114.268': [0.562, 5.0]}), 'newmec-4'], [({'t5.102.114.269': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.269': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.269': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.269': [0.665, 5.0], 't4.102.114.269': [0.438, 10.0], 't3.102.114.269': [0.616, 5.0]}), 'newmec-2'], [({'t2.102.114.270': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.270': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.270': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.270': [0.641, 5.0], 't1.102.114.270': [0.795, 6.667], 't4.102.114.270': [0.592, 10.0]}), 'newmec-2'], [({'t5.101.114.271': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.271': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.271': [0.76, 5.0], 't4.101.114.271': [0.658, 10.0]}), 'newmec-1'], [({'t4.101.114.272': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.272': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.272': [0.478, 10.0], 't3.101.114.272': [0.518, 5.0]}), 'newmec-1'], [({'t5.102.114.273': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.273': [0.497, 5.0], 't2.102.114.273': [0.736, 5.0]}), 'newmec-2'], [({'t2.104.114.274': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.274': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.274': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.274': [0.494, 5.0], 't1.104.114.274': [0.443, 6.667], 't5.104.114.274': [0.548, 5.0]}), 'newmec-4'], [({'t1.101.114.275': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.275': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.275': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.275': [0.488, 6.667], 't3.101.114.275': [0.515, 5.0], 't5.101.114.275': [0.461, 5.0]}), 'newmec-1'], [({'t2.101.114.276': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.276': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.276': [0.749, 5.0], 't1.101.114.276': [0.546, 6.667]}), 'newmec-1'], [({'t3.101.114.277': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.277': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.277': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.277': [0.671, 5.0], 't4.101.114.277': [0.535, 10.0], 't2.101.114.277': [0.483, 5.0]}), 'newmec-1'], [({'t5.101.114.278': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.278': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.278': [0.752, 5.0], 't3.101.114.278': [0.772, 5.0]}), 'newmec-1'], [({'t4.104.114.279': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.279': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.279': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.279': [0.549, 10.0], 't3.104.114.279': [0.476, 5.0], 't5.104.114.279': [0.661, 5.0]}), 'newmec-4'], [({'t2.105.114.280': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.280': [0.58, 5.0], 't5.105.114.280': [0.429, 5.0]}), 'newmec-5'], [({'t2.103.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.281': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.281': [0.626, 5.0], 't4.103.114.281': [0.693, 10.0]}), 'newmec-3'], [({'t5.104.114.282': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.282': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.282': [0.599, 5.0], 't3.104.114.282': [0.425, 5.0]}), 'newmec-4'], [({'t5.101.114.283': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.283': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.283': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.283': [0.532, 5.0], 't2.101.114.283': [0.528, 5.0], 't3.101.114.283': [0.782, 5.0]}), 'newmec-1'], [({'t2.102.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.284': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.284': [0.429, 5.0], 't4.102.114.284': [0.4, 10.0]}), 'newmec-2'], [({'t4.102.114.285': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.285': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.285': [0.553, 10.0], 't3.102.114.285': [0.722, 5.0]}), 'newmec-2'], [({'t3.101.114.286': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.286': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.286': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.286': [0.571, 5.0], 't2.101.114.286': [0.75, 5.0], 't4.101.114.286': [0.585, 10.0]}), 'newmec-1'], [({'t2.102.114.287': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.287': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.287': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.287': [0.639, 5.0], 't5.102.114.287': [0.55, 5.0], 't4.102.114.287': [0.492, 10.0]}), 'newmec-2'], [({'t4.101.114.288': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.288': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.288': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.288': [0.692, 10.0], 't1.101.114.288': [0.58, 6.667], 't5.101.114.288': [0.52, 5.0]}), 'newmec-1'], [({'t3.104.114.289': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.289': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.289': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.289': [0.745, 5.0], 't5.104.114.289': [0.442, 5.0], 't2.104.114.289': [0.502, 5.0]}), 'newmec-4'], [({'t4.102.114.290': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.290': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.290': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.290': [0.587, 10.0], 't5.102.114.290': [0.437, 5.0], 't2.102.114.290': [0.608, 5.0]}), 'newmec-2'], [({'t3.103.114.291': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.291': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.291': [0.623, 5.0], 't4.103.114.291': [0.69, 10.0], 't2.103.114.291': [0.407, 5.0]}), 'newmec-3'], [({'t3.101.114.292': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.292': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.292': [0.643, 5.0], 't4.101.114.292': [0.603, 10.0], 't1.101.114.292': [0.653, 6.667]}), 'newmec-1'], [({'t5.101.114.293': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.293': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.293': [0.455, 5.0], 't2.101.114.293': [0.741, 5.0], 't4.101.114.293': [0.628, 10.0]}), 'newmec-1'], [({'t3.101.114.294': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.294': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.294': [0.719, 5.0], 't1.101.114.294': [0.539, 6.667]}), 'newmec-1'], [({'t3.104.114.295': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.295': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.295': [0.629, 5.0], 't5.104.114.295': [0.407, 5.0]}), 'newmec-4'], [({'t1.101.114.296': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.296': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.296': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.296': [0.62, 6.667], 't3.101.114.296': [0.679, 5.0], 't2.101.114.296': [0.653, 5.0]}), 'newmec-1'], [({'t2.103.114.297': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.297': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.297': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.297': [0.59, 5.0], 't5.103.114.297': [0.494, 5.0], 't3.103.114.297': [0.648, 5.0]}), 'newmec-3'], [({'t2.104.114.298': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.298': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.298': [0.462, 5.0], 't5.104.114.298': [0.777, 5.0]}), 'newmec-4'], [({'t5.101.114.299': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.299': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.299': [0.468, 5.0], 't2.101.114.299': [0.529, 5.0]}), 'newmec-1'], [({'t3.102.114.300': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.300': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.300': [0.475, 5.0], 't1.102.114.300': [0.607, 6.667]}), 'newmec-2'], [({'t2.101.114.301': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.301': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.301': [0.646, 5.0], 't5.101.114.301': [0.532, 5.0]}), 'newmec-1'], [({'t5.105.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.302': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.302': [0.738, 5.0], 't2.105.114.302': [0.736, 5.0], 't4.105.114.302': [0.625, 10.0]}), 'newmec-5'], [({'t4.102.114.303': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.303': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.303': [0.544, 10.0], 't1.102.114.303': [0.591, 6.667]}), 'newmec-2'], [({'t2.101.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.304': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.304': [0.516, 5.0], 't5.101.114.304': [0.731, 5.0]}), 'newmec-1'], [({'t3.104.114.305': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.305': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.305': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.305': [0.45, 5.0], 't4.104.114.305': [0.443, 10.0], 't1.104.114.305': [0.775, 6.667]}), 'newmec-4'], [({'t5.104.114.306': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.306': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.306': [0.522, 5.0], 't4.104.114.306': [0.55, 10.0]}), 'newmec-4'], [({'t4.101.114.307': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.307': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.307': [0.563, 10.0], 't5.101.114.307': [0.587, 5.0]}), 'newmec-1'], [({'t4.105.114.308': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.308': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.308': [0.448, 10.0], 't1.105.114.308': [0.553, 6.667]}), 'newmec-5'], [({'t3.102.114.309': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.309': [0.579, 5.0], 't4.102.114.309': [0.772, 10.0]}), 'newmec-2'], [({'t5.105.114.310': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.310': [0.645, 5.0], 't3.105.114.310': [0.427, 5.0]}), 'newmec-5'], [({'t4.101.114.311': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.311': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.311': [0.689, 10.0], 't5.101.114.311': [0.569, 5.0]}), 'newmec-1'], [({'t2.102.114.312': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.312': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.312': [0.603, 5.0], 't1.102.114.312': [0.491, 6.667]}), 'newmec-2'], [({'t3.103.114.313': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.313': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.313': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.313': [0.49, 5.0], 't4.103.114.313': [0.461, 10.0], 't5.103.114.313': [0.691, 5.0]}), 'newmec-3'], [({'t1.101.114.314': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.314': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.314': [0.44, 6.667], 't4.101.114.314': [0.615, 10.0]}), 'newmec-1'], [({'t5.104.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.315': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.315': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.315': [0.546, 5.0], 't2.104.114.315': [0.574, 5.0], 't4.104.114.315': [0.495, 10.0]}), 'newmec-4'], [({'t3.101.114.316': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.316': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.316': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.316': [0.63, 5.0], 't2.101.114.316': [0.581, 5.0], 't4.101.114.316': [0.426, 10.0]}), 'newmec-1'], [({'t5.102.114.317': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.317': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.317': [0.661, 5.0], 't4.102.114.317': [0.584, 10.0]}), 'newmec-2'], [({'t5.105.114.318': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.318': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.318': [0.566, 5.0], 't1.105.114.318': [0.541, 6.667]}), 'newmec-5'], [({'t3.102.114.319': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.319': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.319': [0.546, 5.0], 't1.102.114.319': [0.635, 6.667]}), 'newmec-2'], [({'t3.105.114.320': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.320': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.320': [0.541, 5.0], 't2.105.114.320': [0.752, 5.0]}), 'newmec-5'], [({'t4.102.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.321': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.321': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.321': [0.43, 10.0], 't2.102.114.321': [0.739, 5.0], 't5.102.114.321': [0.585, 5.0]}), 'newmec-2'], [({'t3.104.114.322': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.322': [0.58, 5.0], 't2.104.114.322': [0.453, 5.0]}), 'newmec-4'], [({'t4.102.114.323': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.323': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.323': [0.428, 10.0], 't3.102.114.323': [0.689, 5.0]}), 'newmec-2'], [({'t2.101.114.324': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.324': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.324': [0.527, 5.0], 't5.101.114.324': [0.506, 5.0]}), 'newmec-1'], [({'t3.102.114.325': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.325': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.325': [0.482, 5.0], 't4.102.114.325': [0.57, 10.0]}), 'newmec-2'], [({'t5.102.114.326': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.326': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.326': [0.442, 5.0], 't2.102.114.326': [0.545, 5.0]}), 'newmec-2'], [({'t1.102.114.327': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.327': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.327': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.327': [0.689, 6.667], 't5.102.114.327': [0.476, 5.0], 't4.102.114.327': [0.651, 10.0]}), 'newmec-2'], [({'t4.102.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.328': [0.572, 10.0], 't5.102.114.328': [0.666, 5.0]}), 'newmec-2'], [({'t4.105.114.329': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.329': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.329': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.329': [0.771, 10.0], 't5.105.114.329': [0.699, 5.0], 't3.105.114.329': [0.476, 5.0]}), 'newmec-5'], [({'t3.105.114.330': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.330': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.330': [0.464, 5.0], 't4.105.114.330': [0.581, 10.0]}), 'newmec-5'], [({'t3.101.114.331': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.331': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.331': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.331': [0.509, 5.0], 't2.101.114.331': [0.52, 5.0], 't4.101.114.331': [0.74, 10.0]}), 'newmec-1'], [({'t2.101.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.332': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.332': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.332': [0.452, 5.0], 't5.101.114.332': [0.732, 5.0], 't4.101.114.332': [0.419, 10.0]}), 'newmec-1'], [({'t1.102.114.333': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.333': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.333': [0.763, 6.667], 't5.102.114.333': [0.614, 5.0]}), 'newmec-2'], [({'t3.105.114.334': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.334': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.334': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.334': [0.531, 5.0], 't5.105.114.334': [0.43, 5.0], 't4.105.114.334': [0.527, 10.0]}), 'newmec-5'], [({'t5.105.114.335': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.335': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.335': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.335': [0.769, 5.0], 't2.105.114.335': [0.609, 5.0], 't3.105.114.335': [0.76, 5.0]}), 'newmec-5'], [({'t2.101.114.336': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.336': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.336': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.336': [0.637, 5.0], 't4.101.114.336': [0.623, 10.0], 't3.101.114.336': [0.554, 5.0]}), 'newmec-1'], [({'t3.102.114.337': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.337': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.337': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.337': [0.436, 5.0], 't2.102.114.337': [0.586, 5.0], 't4.102.114.337': [0.585, 10.0]}), 'newmec-2'], [({'t1.103.114.338': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.338': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.338': [0.41, 6.667], 't4.103.114.338': [0.719, 10.0]}), 'newmec-3'], [({'t2.102.114.339': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.339': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.339': [0.658, 5.0], 't5.102.114.339': [0.635, 5.0]}), 'newmec-2'], [({'t1.104.114.340': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.340': [0.758, 6.667], 't2.104.114.340': [0.587, 5.0]}), 'newmec-4'], [({'t4.101.114.341': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.341': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.341': [0.645, 10.0], 't2.101.114.341': [0.455, 5.0]}), 'newmec-1'], [({'t2.102.114.342': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.342': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.342': [0.645, 5.0], 't5.102.114.342': [0.637, 5.0]}), 'newmec-2'], [({'t3.102.114.343': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.343': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.343': [0.453, 5.0], 't5.102.114.343': [0.521, 5.0]}), 'newmec-2'], [({'t3.101.114.344': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.344': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.344': [0.499, 5.0], 't1.101.114.344': [0.454, 6.667], 't5.101.114.344': [0.781, 5.0]}), 'newmec-1'], [({'t4.101.114.345': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.345': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.345': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.345': [0.709, 10.0], 't5.101.114.345': [0.574, 5.0], 't2.101.114.345': [0.592, 5.0]}), 'newmec-1'], [({'t1.105.114.346': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.346': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.346': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.105.114.346': [0.583, 6.667], 't4.105.114.346': [0.408, 10.0], 't5.105.114.346': [0.439, 5.0]}), 'newmec-5'], [({'t4.102.114.347': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.347': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.347': [0.417, 10.0], 't5.102.114.347': [0.533, 5.0]}), 'newmec-2'], [({'t5.104.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.348': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.348': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.348': [0.734, 5.0], 't1.104.114.348': [0.678, 6.667], 't2.104.114.348': [0.479, 5.0]}), 'newmec-4'], [({'t5.102.114.349': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.349': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.349': [0.573, 5.0], 't2.102.114.349': [0.598, 5.0], 't3.102.114.349': [0.471, 5.0]}), 'newmec-2'], [({'t5.101.114.350': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.350': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.350': [0.599, 5.0], 't4.101.114.350': [0.547, 10.0]}), 'newmec-1'], [({'t2.102.114.351': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.351': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.351': [0.411, 5.0], 't4.102.114.351': [0.567, 10.0]}), 'newmec-2'], [({'t2.101.114.352': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.352': [0.723, 5.0], 't3.101.114.352': [0.481, 5.0]}), 'newmec-1'], [({'t5.101.114.353': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.353': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.353': [0.631, 5.0], 't2.101.114.353': [0.421, 5.0]}), 'newmec-1'], [({'t5.102.114.354': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.354': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.354': [0.634, 5.0], 't1.102.114.354': [0.517, 6.667]}), 'newmec-2'], [({'t3.101.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.355': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.355': [0.54, 5.0], 't1.101.114.355': [0.688, 6.667]}), 'newmec-1'], [({'t1.101.114.356': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.356': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.356': [0.776, 6.667], 't2.101.114.356': [0.781, 5.0], 't5.101.114.356': [0.464, 5.0]}), 'newmec-1'], [({'t4.104.114.357': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.357': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.357': [0.592, 10.0], 't2.104.114.357': [0.538, 5.0]}), 'newmec-4'], [({'t3.101.114.358': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.358': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.358': [0.458, 5.0], 't1.101.114.358': [0.494, 6.667]}), 'newmec-1'], [({'t3.104.114.359': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.359': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.359': [0.613, 5.0], 't5.104.114.359': [0.404, 5.0], 't1.104.114.359': [0.519, 6.667]}), 'newmec-4'], [({'t2.101.114.360': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.360': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.360': [0.689, 5.0], 't5.101.114.360': [0.502, 5.0], 't1.101.114.360': [0.79, 6.667]}), 'newmec-1'], [({'t4.103.114.361': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.361': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.361': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.361': [0.422, 10.0], 't3.103.114.361': [0.658, 5.0], 't5.103.114.361': [0.476, 5.0]}), 'newmec-3'], [({'t5.102.114.362': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.362': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.362': [0.636, 5.0], 't2.102.114.362': [0.697, 5.0]}), 'newmec-2'], [({'t1.102.114.363': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.363': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.363': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.363': [0.414, 6.667], 't2.102.114.363': [0.785, 5.0], 't3.102.114.363': [0.75, 5.0]}), 'newmec-2'], [({'t1.101.114.364': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.364': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.364': [0.58, 6.667], 't3.101.114.364': [0.459, 5.0]}), 'newmec-1'], [({'t4.104.114.365': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.365': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.365': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.365': [0.541, 10.0], 't3.104.114.365': [0.438, 5.0], 't5.104.114.365': [0.761, 5.0]}), 'newmec-4'], [({'t5.102.114.366': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.366': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.366': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.366': [0.583, 5.0], 't1.102.114.366': [0.512, 6.667], 't4.102.114.366': [0.73, 10.0]}), 'newmec-2'], [({'t2.105.114.367': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.367': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.367': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.367': [0.426, 5.0], 't4.105.114.367': [0.787, 10.0], 't3.105.114.367': [0.74, 5.0]}), 'newmec-5'], [({'t4.102.114.368': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.368': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.368': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.368': [0.734, 10.0], 't3.102.114.368': [0.507, 5.0], 't1.102.114.368': [0.615, 6.667]}), 'newmec-2'], [({'t5.101.114.369': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.369': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.369': [0.524, 5.0], 't3.101.114.369': [0.432, 5.0]}), 'newmec-1'], [({'t5.101.114.370': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.370': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.370': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.370': [0.641, 5.0], 't1.101.114.370': [0.743, 6.667], 't4.101.114.370': [0.515, 10.0]}), 'newmec-1'], [({'t1.101.114.371': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.371': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.371': [0.518, 6.667], 't5.101.114.371': [0.494, 5.0]}), 'newmec-1'], [({'t2.101.114.372': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.372': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.372': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.372': [0.751, 5.0], 't4.101.114.372': [0.603, 10.0], 't5.101.114.372': [0.557, 5.0]}), 'newmec-1'], [({'t2.101.114.373': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.373': [0.698, 5.0], 't5.101.114.373': [0.787, 5.0]}), 'newmec-1'], [({'t2.102.114.374': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.374': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.374': [0.78, 5.0], 't3.102.114.374': [0.427, 5.0]}), 'newmec-2'], [({'t3.102.114.375': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.375': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.375': [0.61, 5.0], 't5.102.114.375': [0.707, 5.0], 't1.102.114.375': [0.458, 6.667]}), 'newmec-2'], [({'t4.105.114.376': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.376': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.376': [0.765, 10.0], 't1.105.114.376': [0.482, 6.667]}), 'newmec-5'], [({'t1.102.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.377': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.377': [0.592, 6.667], 't4.102.114.377': [0.46, 10.0]}), 'newmec-2'], [({'t2.102.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.378': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.378': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.378': [0.584, 5.0], 't3.102.114.378': [0.516, 5.0], 't5.102.114.378': [0.522, 5.0]}), 'newmec-2'], [({'t5.103.114.379': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.379': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.379': [0.525, 5.0], 't3.103.114.379': [0.424, 5.0], 't2.103.114.379': [0.424, 5.0]}), 'newmec-3'], [({'t4.101.114.380': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.380': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.380': [0.684, 10.0], 't5.101.114.380': [0.565, 5.0]}), 'newmec-1'], [({'t3.101.114.381': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.381': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.381': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.381': [0.667, 5.0], 't2.101.114.381': [0.717, 5.0], 't5.101.114.381': [0.464, 5.0]}), 'newmec-1'], [({'t2.102.114.382': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.382': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.382': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.382': [0.738, 5.0], 't5.102.114.382': [0.536, 5.0], 't4.102.114.382': [0.43, 10.0]}), 'newmec-2'], [({'t5.102.114.383': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.383': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.383': [0.781, 5.0], 't2.102.114.383': [0.703, 5.0], 't4.102.114.383': [0.529, 10.0]}), 'newmec-2'], [({'t5.102.114.384': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.384': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.384': [0.66, 5.0], 't4.102.114.384': [0.761, 10.0]}), 'newmec-2'], [({'t4.104.114.385': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.385': [0.52, 10.0], 't3.104.114.385': [0.755, 5.0]}), 'newmec-4'], [({'t1.104.114.386': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.386': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.386': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.386': [0.626, 6.667], 't2.104.114.386': [0.59, 5.0], 't3.104.114.386': [0.586, 5.0]}), 'newmec-4'], [({'t4.101.114.387': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.387': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.387': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.387': [0.478, 10.0], 't3.101.114.387': [0.579, 5.0], 't1.101.114.387': [0.627, 6.667]}), 'newmec-1'], [({'t3.105.114.388': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.388': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.388': [0.738, 5.0], 't4.105.114.388': [0.791, 10.0]}), 'newmec-5'], [({'t1.102.114.389': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.389': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.389': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.389': [0.7, 6.667], 't2.102.114.389': [0.713, 5.0], 't4.102.114.389': [0.777, 10.0]}), 'newmec-2'], [({'t5.102.114.390': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.390': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.390': [0.743, 5.0], 't1.102.114.390': [0.587, 6.667]}), 'newmec-2'], [({'t4.105.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.391': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.391': [0.492, 10.0], 't1.105.114.391': [0.437, 6.667]}), 'newmec-5'], [({'t5.102.114.392': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.392': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.392': [0.48, 5.0], 't1.102.114.392': [0.414, 6.667]}), 'newmec-2'], [({'t2.101.114.393': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.393': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.393': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.393': [0.434, 5.0], 't1.101.114.393': [0.729, 6.667], 't3.101.114.393': [0.538, 5.0]}), 'newmec-1'], [({'t2.103.114.394': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.394': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.394': [0.545, 5.0], 't5.103.114.394': [0.753, 5.0]}), 'newmec-3'], [({'t4.104.114.395': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.395': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.395': [0.615, 10.0], 't2.104.114.395': [0.745, 5.0]}), 'newmec-4'], [({'t4.156.114.396': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.396': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.396': [0.641, 10.0], 't5.156.114.396': [0.478, 5.0]}), 'osboxes-0'], [({'t5.104.114.397': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.397': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.397': [0.635, 5.0], 't1.104.114.397': [0.421, 6.667]}), 'newmec-4'], [({'t5.101.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.398': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.398': [0.53, 5.0], 't2.101.114.398': [0.427, 5.0]}), 'newmec-1'], [({'t3.105.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.399': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.399': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.399': [0.536, 5.0], 't4.105.114.399': [0.414, 10.0], 't2.105.114.399': [0.616, 5.0]}), 'newmec-5'], [({'t5.101.114.400': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.400': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.400': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.400': [0.75, 5.0], 't3.101.114.400': [0.683, 5.0], 't4.101.114.400': [0.689, 10.0]}), 'newmec-1'], [({'t2.103.114.401': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.401': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.401': [0.736, 5.0], 't4.103.114.401': [0.504, 10.0]}), 'newmec-3'], [({'t5.102.114.402': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.402': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.402': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.402': [0.706, 5.0], 't1.102.114.402': [0.429, 6.667], 't2.102.114.402': [0.493, 5.0]}), 'newmec-2'], [({'t2.105.114.403': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.403': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.403': [0.471, 5.0], 't5.105.114.403': [0.498, 5.0]}), 'newmec-5'], [({'t2.104.114.404': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.404': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.404': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.404': [0.675, 5.0], 't1.104.114.404': [0.482, 6.667], 't5.104.114.404': [0.406, 5.0]}), 'newmec-4'], [({'t1.101.114.405': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.405': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.405': [0.572, 6.667], 't5.101.114.405': [0.706, 5.0]}), 'newmec-1'], [({'t5.101.114.406': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.406': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.406': [0.577, 5.0], 't3.101.114.406': [0.431, 5.0]}), 'newmec-1'], [({'t5.101.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.407': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.407': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.407': [0.733, 5.0], 't1.101.114.407': [0.618, 6.667], 't4.101.114.407': [0.689, 10.0]}), 'newmec-1'], [({'t3.102.114.408': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.408': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.408': [0.67, 5.0], 't1.102.114.408': [0.745, 6.667]}), 'newmec-2'], [({'t4.102.114.409': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.409': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.409': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.409': [0.442, 10.0], 't2.102.114.409': [0.455, 5.0], 't5.102.114.409': [0.401, 5.0]}), 'newmec-2'], [({'t4.101.114.410': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.410': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.410': [0.607, 10.0], 't2.101.114.410': [0.647, 5.0]}), 'newmec-1'], [({'t5.101.114.411': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.411': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.411': [0.578, 5.0], 't4.101.114.411': [0.782, 10.0]}), 'newmec-1'], [({'t3.101.114.412': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.412': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.412': [0.615, 5.0], 't4.101.114.412': [0.788, 10.0]}), 'newmec-1'], [({'t4.102.114.413': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.413': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.413': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.413': [0.459, 10.0], 't1.102.114.413': [0.499, 6.667], 't5.102.114.413': [0.614, 5.0]}), 'newmec-2'], [({'t2.101.114.414': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.414': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.414': [0.406, 5.0], 't5.101.114.414': [0.693, 5.0]}), 'newmec-1'], [({'t1.102.114.415': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.415': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.415': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.415': [0.56, 6.667], 't2.102.114.415': [0.722, 5.0], 't3.102.114.415': [0.606, 5.0]}), 'newmec-2'], [({'t2.102.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.416': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.416': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.416': [0.565, 5.0], 't3.102.114.416': [0.406, 5.0], 't5.102.114.416': [0.477, 5.0]}), 'newmec-2'], [({'t4.101.114.417': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.417': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.417': [0.605, 10.0], 't3.101.114.417': [0.506, 5.0]}), 'newmec-1'], [({'t2.102.114.418': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.418': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.418': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.418': [0.5, 5.0], 't4.102.114.418': [0.416, 10.0], 't1.102.114.418': [0.766, 6.667]}), 'newmec-2'], [({'t2.104.114.419': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.419': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.419': [0.498, 5.0], 't3.104.114.419': [0.686, 5.0], 't5.104.114.419': [0.789, 5.0]}), 'newmec-4'], [({'t5.101.114.420': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.420': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.420': [0.531, 5.0], 't4.101.114.420': [0.462, 10.0]}), 'newmec-1'], [({'t2.103.114.421': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.421': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.421': [0.514, 5.0], 't4.103.114.421': [0.774, 10.0]}), 'newmec-3'], [({'t2.101.114.422': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.422': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.422': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.422': [0.71, 5.0], 't3.101.114.422': [0.702, 5.0], 't4.101.114.422': [0.556, 10.0]}), 'newmec-1'], [({'t2.101.114.423': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.423': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.423': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.423': [0.55, 5.0], 't4.101.114.423': [0.448, 10.0], 't5.101.114.423': [0.799, 5.0]}), 'newmec-1'], [({'t4.104.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.424': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.424': [0.539, 10.0], 't2.104.114.424': [0.443, 5.0]}), 'newmec-4'], [({'t5.101.114.425': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.425': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.425': [0.441, 5.0], 't4.101.114.425': [0.792, 10.0]}), 'newmec-1'], [({'t5.102.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.426': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.426': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.426': [0.747, 5.0], 't3.102.114.426': [0.524, 5.0], 't1.102.114.426': [0.724, 6.667]}), 'newmec-2'], [({'t3.102.114.427': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.427': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.427': [0.783, 5.0], 't4.102.114.427': [0.409, 10.0]}), 'newmec-2'], [({'t2.101.114.428': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.428': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.428': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.428': [0.454, 5.0], 't5.101.114.428': [0.726, 5.0], 't4.101.114.428': [0.723, 10.0]}), 'newmec-1'], [({'t1.101.114.429': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.429': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.429': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.429': [0.589, 6.667], 't4.101.114.429': [0.558, 10.0], 't2.101.114.429': [0.587, 5.0]}), 'newmec-1'], [({'t2.101.114.430': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.430': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.430': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.430': [0.529, 5.0], 't4.101.114.430': [0.602, 10.0], 't5.101.114.430': [0.415, 5.0]}), 'newmec-1'], [({'t2.105.114.431': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.431': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.431': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.431': [0.411, 5.0], 't5.105.114.431': [0.589, 5.0], 't3.105.114.431': [0.717, 5.0]}), 'newmec-5'], [({'t5.104.114.432': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.432': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.432': [0.462, 5.0], 't3.104.114.432': [0.557, 5.0]}), 'newmec-4'], [({'t3.102.114.433': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.433': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.433': [0.584, 5.0], 't5.102.114.433': [0.452, 5.0]}), 'newmec-2'], [({'t1.101.114.434': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.434': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.434': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.434': [0.513, 6.667], 't5.101.114.434': [0.752, 5.0], 't3.101.114.434': [0.473, 5.0]}), 'newmec-1'], [({'t1.104.114.435': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.435': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.435': [0.544, 6.667], 't2.104.114.435': [0.741, 5.0]}), 'newmec-4'], [({'t5.104.114.436': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.436': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.436': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.436': [0.408, 5.0], 't4.104.114.436': [0.622, 10.0], 't1.104.114.436': [0.742, 6.667]}), 'newmec-4'], [({'t4.102.114.437': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.437': [0.661, 10.0], 't2.102.114.437': [0.787, 5.0]}), 'newmec-2'], [({'t2.104.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.438': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.438': [0.687, 5.0], 't5.104.114.438': [0.433, 5.0]}), 'newmec-4'], [({'t2.104.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.439': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.439': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.439': [0.468, 5.0], 't3.104.114.439': [0.784, 5.0], 't1.104.114.439': [0.507, 6.667]}), 'newmec-4'], [({'t2.105.114.440': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.440': [0.449, 5.0], 't4.105.114.440': [0.422, 10.0]}), 'newmec-5'], [({'t4.102.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.441': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.441': [0.658, 10.0], 't1.102.114.441': [0.591, 6.667]}), 'newmec-2'], [({'t1.102.114.442': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.442': [0.506, 6.667], 't3.102.114.442': [0.719, 5.0]}), 'newmec-2'], [({'t3.101.114.443': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.443': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.443': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.443': [0.42, 5.0], 't2.101.114.443': [0.696, 5.0], 't1.101.114.443': [0.405, 6.667]}), 'newmec-1'], [({'t5.102.114.444': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.444': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.444': [0.472, 5.0], 't1.102.114.444': [0.557, 6.667]}), 'newmec-2'], [({'t5.101.114.445': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.445': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.445': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.445': [0.603, 5.0], 't2.101.114.445': [0.567, 5.0], 't1.101.114.445': [0.445, 6.667]}), 'newmec-1'], [({'t5.102.114.446': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.446': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.446': [0.442, 5.0], 't3.102.114.446': [0.505, 5.0]}), 'newmec-2'], [({'t1.101.114.447': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.447': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.447': [0.744, 6.667], 't2.101.114.447': [0.756, 5.0]}), 'newmec-1'], [({'t1.101.114.448': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.448': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.448': [0.507, 6.667], 't4.101.114.448': [0.608, 10.0]}), 'newmec-1'], [({'t4.101.114.449': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.449': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.449': [0.472, 10.0], 't3.101.114.449': [0.72, 5.0]}), 'newmec-1'], [({'t2.102.114.450': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.450': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.450': [0.713, 5.0], 't3.102.114.450': [0.419, 5.0]}), 'newmec-2'], [({'t2.103.114.451': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.451': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.451': [0.62, 5.0], 't4.103.114.451': [0.751, 10.0]}), 'newmec-3'], [({'t5.105.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.452': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.452': [0.793, 5.0], 't2.105.114.452': [0.572, 5.0]}), 'newmec-5'], [({'t2.102.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.453': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.453': [0.543, 5.0], 't3.102.114.453': [0.638, 5.0]}), 'newmec-2'], [({'t4.102.114.454': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.454': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.454': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.454': [0.654, 10.0], 't3.102.114.454': [0.671, 5.0], 't5.102.114.454': [0.721, 5.0]}), 'newmec-2'], [({'t3.102.114.455': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.455': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.455': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.455': [0.776, 5.0], 't2.102.114.455': [0.54, 5.0], 't4.102.114.455': [0.651, 10.0]}), 'newmec-2'], [({'t3.101.114.456': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.456': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.456': [0.579, 5.0], 't2.101.114.456': [0.633, 5.0]}), 'newmec-1'], [({'t2.102.114.457': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.457': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.457': [0.62, 5.0], 't1.102.114.457': [0.662, 6.667], 't5.102.114.457': [0.619, 5.0]}), 'newmec-2'], [({'t2.103.114.458': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.458': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.458': [0.703, 5.0], 't1.103.114.458': [0.648, 6.667]}), 'newmec-3'], [({'t3.101.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.459': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.459': [0.693, 5.0], 't4.101.114.459': [0.676, 10.0]}), 'newmec-1'], [({'t4.101.114.460': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.460': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.460': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.460': [0.585, 10.0], 't2.101.114.460': [0.622, 5.0], 't5.101.114.460': [0.694, 5.0]}), 'newmec-1'], [({'t3.103.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.461': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.461': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.461': [0.489, 5.0], 't2.103.114.461': [0.59, 5.0], 't5.103.114.461': [0.7, 5.0]}), 'newmec-3'], [({'t4.105.114.462': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.462': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.462': [0.53, 10.0], 't5.105.114.462': [0.704, 5.0], 't1.105.114.462': [0.719, 6.667]}), 'newmec-5'], [({'t2.102.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.463': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.463': [0.471, 5.0], 't3.102.114.463': [0.745, 5.0]}), 'newmec-2'], [({'t3.105.114.464': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.464': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.464': [0.72, 5.0], 't4.105.114.464': [0.514, 10.0]}), 'newmec-5'], [({'t2.102.114.465': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.465': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.465': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.465': [0.508, 5.0], 't3.102.114.465': [0.79, 5.0], 't1.102.114.465': [0.532, 6.667]}), 'newmec-2'], [({'t5.101.114.466': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.466': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.466': [0.446, 5.0], 't2.101.114.466': [0.497, 5.0]}), 'newmec-1'], [({'t3.105.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.467': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.467': [0.731, 5.0], 't4.105.114.467': [0.496, 10.0]}), 'newmec-5'], [({'t2.101.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.468': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.468': [0.493, 5.0], 't3.101.114.468': [0.644, 5.0], 't1.101.114.468': [0.667, 6.667]}), 'newmec-1'], [({'t4.101.114.469': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.469': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.469': [0.628, 10.0], 't2.101.114.469': [0.477, 5.0], 't5.101.114.469': [0.682, 5.0]}), 'newmec-1'], [({'t4.101.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.470': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.470': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.470': [0.685, 10.0], 't2.101.114.470': [0.659, 5.0], 't3.101.114.470': [0.775, 5.0]}), 'newmec-1'], [({'t2.102.114.471': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.471': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.471': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.471': [0.742, 5.0], 't4.102.114.471': [0.741, 10.0], 't3.102.114.471': [0.535, 5.0]}), 'newmec-2'], [({'t1.101.114.472': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.472': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.472': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.472': [0.72, 6.667], 't4.101.114.472': [0.648, 10.0], 't5.101.114.472': [0.708, 5.0]}), 'newmec-1'], [({'t4.105.114.473': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.473': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.473': [0.528, 10.0], 't1.105.114.473': [0.556, 6.667]}), 'newmec-5'], [({'t1.101.114.474': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.474': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.474': [0.618, 6.667], 't5.101.114.474': [0.657, 5.0], 't2.101.114.474': [0.639, 5.0]}), 'newmec-1'], [({'t2.104.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.475': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.475': [0.791, 5.0], 't3.104.114.475': [0.68, 5.0]}), 'newmec-4'], [({'t3.104.114.476': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.476': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.476': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.476': [0.451, 5.0], 't2.104.114.476': [0.503, 5.0], 't1.104.114.476': [0.714, 6.667]}), 'newmec-4'], [({'t5.102.114.477': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.477': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.477': [0.657, 5.0], 't3.102.114.477': [0.7, 5.0]}), 'newmec-2'], [({'t2.101.114.478': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.478': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.478': [0.692, 5.0], 't1.101.114.478': [0.403, 6.667]}), 'newmec-1'], [({'t1.105.114.479': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.479': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.479': [0.698, 6.667], 't2.105.114.479': [0.621, 5.0]}), 'newmec-5'], [({'t3.102.114.480': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.480': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.480': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.480': [0.673, 5.0], 't1.102.114.480': [0.702, 6.667], 't4.102.114.480': [0.502, 10.0]}), 'newmec-2'], [({'t5.101.114.481': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.481': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.481': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.481': [0.791, 5.0], 't1.101.114.481': [0.739, 6.667], 't2.101.114.481': [0.402, 5.0]}), 'newmec-1'], [({'t5.103.114.482': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.482': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.482': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.482': [0.604, 5.0], 't1.103.114.482': [0.743, 6.667], 't3.103.114.482': [0.751, 5.0]}), 'newmec-3'], [({'t4.101.114.483': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.483': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.483': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.483': [0.605, 10.0], 't2.101.114.483': [0.74, 5.0], 't5.101.114.483': [0.405, 5.0]}), 'newmec-1'], [({'t4.102.114.484': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.484': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.484': [0.718, 10.0], 't2.102.114.484': [0.464, 5.0]}), 'newmec-2'], [({'t4.101.114.485': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.485': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.485': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.485': [0.522, 10.0], 't3.101.114.485': [0.473, 5.0], 't1.101.114.485': [0.51, 6.667]}), 'newmec-1'], [({'t1.101.114.486': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.486': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.486': [0.503, 6.667], 't3.101.114.486': [0.676, 5.0]}), 'newmec-1'], [({'t5.101.114.487': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.487': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.487': [0.609, 5.0], 't4.101.114.487': [0.692, 10.0], 't1.101.114.487': [0.505, 6.667]}), 'newmec-1'], [({'t3.105.114.488': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.488': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.488': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.488': [0.633, 5.0], 't5.105.114.488': [0.514, 5.0], 't1.105.114.488': [0.702, 6.667]}), 'newmec-5'], [({'t4.104.114.489': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.489': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.489': [0.494, 10.0], 't5.104.114.489': [0.526, 5.0]}), 'newmec-4'], [({'t5.105.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.490': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.490': [0.485, 5.0], 't1.105.114.490': [0.44, 6.667]}), 'newmec-5'], [({'t2.104.114.491': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.491': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.491': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.491': [0.793, 5.0], 't3.104.114.491': [0.508, 5.0], 't1.104.114.491': [0.7, 6.667]}), 'newmec-4'], [({'t3.102.114.492': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.492': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.492': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.492': [0.797, 5.0], 't4.102.114.492': [0.759, 10.0], 't2.102.114.492': [0.552, 5.0]}), 'newmec-2'], [({'t1.104.114.493': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.493': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.493': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.493': [0.536, 6.667], 't2.104.114.493': [0.597, 5.0], 't4.104.114.493': [0.671, 10.0]}), 'newmec-4'], [({'t5.104.114.494': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.494': [0.557, 5.0], 't2.104.114.494': [0.565, 5.0]}), 'newmec-4'], [({'t5.102.114.495': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.495': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.495': [0.532, 5.0], 't4.102.114.495': [0.432, 10.0]}), 'newmec-2'], [({'t4.105.114.496': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.496': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.496': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.496': [0.546, 10.0], 't3.105.114.496': [0.669, 5.0], 't5.105.114.496': [0.686, 5.0]}), 'newmec-5'], [({'t2.101.114.497': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.497': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.497': [0.756, 5.0], 't4.101.114.497': [0.432, 10.0]}), 'newmec-1'], [({'t1.105.114.498': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.498': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.498': [0.559, 6.667], 't2.105.114.498': [0.6, 5.0]}), 'newmec-5'], [({'t5.101.114.499': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.499': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.499': [0.779, 5.0], 't3.101.114.499': [0.638, 5.0]}), 'newmec-1'], [({'t5.102.114.500': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.500': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.500': [0.686, 5.0], 't3.102.114.500': [0.576, 5.0]}), 'newmec-2'], [({'t5.104.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.501': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.501': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.501': [0.443, 5.0], 't1.104.114.501': [0.686, 6.667], 't4.104.114.501': [0.74, 10.0]}), 'newmec-4'], [({'t2.104.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.502': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.502': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.502': [0.432, 5.0], 't5.104.114.502': [0.459, 5.0], 't1.104.114.502': [0.543, 6.667]}), 'newmec-4'], [({'t2.104.114.503': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.503': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.503': [0.688, 5.0], 't4.104.114.503': [0.797, 10.0]}), 'newmec-4'], [({'t5.102.114.504': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.504': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.504': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.504': [0.588, 5.0], 't3.102.114.504': [0.426, 5.0], 't4.102.114.504': [0.411, 10.0]}), 'newmec-2'], [({'t2.105.114.505': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.505': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.505': [0.696, 5.0], 't4.105.114.505': [0.637, 10.0]}), 'newmec-5'], [({'t4.103.114.506': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.506': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.506': [0.646, 10.0], 't3.103.114.506': [0.482, 5.0]}), 'newmec-3'], [({'t4.101.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.507': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.507': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.507': [0.698, 10.0], 't3.101.114.507': [0.75, 5.0], 't1.101.114.507': [0.686, 6.667]}), 'newmec-1'], [({'t2.101.114.508': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.508': [0.774, 5.0], 't3.101.114.508': [0.599, 5.0]}), 'newmec-1'], [({'t3.101.114.509': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.509': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.509': [0.465, 5.0], 't1.101.114.509': [0.54, 6.667]}), 'newmec-1'], [({'t2.104.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.510': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.510': [0.493, 5.0], 't4.104.114.510': [0.659, 10.0]}), 'newmec-4'], [({'t5.101.114.511': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.511': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.511': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.511': [0.64, 5.0], 't1.101.114.511': [0.516, 6.667], 't4.101.114.511': [0.672, 10.0]}), 'newmec-1'], [({'t2.105.114.512': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.512': [0.4, 5.0], 't1.105.114.512': [0.495, 6.667], 't4.105.114.512': [0.6, 10.0]}), 'newmec-5'], [({'t1.102.114.513': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.513': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.513': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.513': [0.522, 6.667], 't3.102.114.513': [0.767, 5.0], 't4.102.114.513': [0.418, 10.0]}), 'newmec-2'], [({'t1.103.114.514': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.514': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.514': [0.76, 6.667], 't5.103.114.514': [0.665, 5.0]}), 'newmec-3'], [({'t1.101.114.515': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.515': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.515': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.515': [0.506, 6.667], 't4.101.114.515': [0.65, 10.0], 't3.101.114.515': [0.648, 5.0]}), 'newmec-1'], [({'t3.102.114.516': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.516': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.516': [0.772, 5.0], 't5.102.114.516': [0.558, 5.0], 't2.102.114.516': [0.409, 5.0]}), 'newmec-2'], [({'t1.105.114.517': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.517': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.517': [0.791, 6.667], 't2.105.114.517': [0.428, 5.0]}), 'newmec-5'], [({'t3.102.114.518': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.518': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.518': [0.543, 5.0], 't4.102.114.518': [0.587, 10.0], 't2.102.114.518': [0.691, 5.0]}), 'newmec-2'], [({'t4.104.114.519': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.519': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.519': [0.722, 10.0], 't5.104.114.519': [0.701, 5.0]}), 'newmec-4'], [({'t3.101.114.520': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.520': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.520': [0.459, 5.0], 't1.101.114.520': [0.522, 6.667]}), 'newmec-1'], [({'t4.102.114.521': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.521': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.521': [0.403, 10.0], 't1.102.114.521': [0.602, 6.667]}), 'newmec-2'], [({'t4.102.114.522': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.522': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.522': [0.558, 10.0], 't1.102.114.522': [0.647, 6.667]}), 'newmec-2'], [({'t3.102.114.523': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.523': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.523': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.523': [0.576, 5.0], 't2.102.114.523': [0.652, 5.0], 't5.102.114.523': [0.674, 5.0]}), 'newmec-2'], [({'t3.101.114.524': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.524': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.524': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.524': [0.624, 5.0], 't4.101.114.524': [0.439, 10.0], 't1.101.114.524': [0.581, 6.667]}), 'newmec-1'], [({'t4.104.114.525': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.525': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.525': [0.702, 10.0], 't2.104.114.525': [0.425, 5.0]}), 'newmec-4'], [({'t2.102.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.526': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.526': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.526': [0.784, 5.0], 't5.102.114.526': [0.497, 5.0], 't3.102.114.526': [0.705, 5.0]}), 'newmec-2'], [({'t5.102.114.527': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.527': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.527': [0.723, 5.0], 't4.102.114.527': [0.562, 10.0]}), 'newmec-2'], [({'t4.101.114.528': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.528': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.528': [0.471, 10.0], 't1.101.114.528': [0.602, 6.667]}), 'newmec-1'], [({'t5.104.114.529': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.529': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.529': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.529': [0.474, 5.0], 't1.104.114.529': [0.679, 6.667], 't2.104.114.529': [0.739, 5.0]}), 'newmec-4'], [({'t1.105.114.530': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.530': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.530': [0.542, 6.667], 't4.105.114.530': [0.772, 10.0], 't2.105.114.530': [0.723, 5.0]}), 'newmec-5'], [({'t5.101.114.531': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.531': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.531': [0.423, 5.0], 't3.101.114.531': [0.469, 5.0]}), 'newmec-1'], [({'t3.103.114.532': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.532': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.532': [0.651, 5.0], 't4.103.114.532': [0.406, 10.0], 't5.103.114.532': [0.74, 5.0]}), 'newmec-3'], [({'t3.102.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.533': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.533': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.533': [0.745, 5.0], 't1.102.114.533': [0.643, 6.667], 't2.102.114.533': [0.561, 5.0]}), 'newmec-2'], [({'t5.101.114.534': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.534': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.534': [0.507, 5.0], 't1.101.114.534': [0.747, 6.667]}), 'newmec-1'], [({'t3.105.114.535': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.535': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.535': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.535': [0.607, 5.0], 't5.105.114.535': [0.712, 5.0], 't1.105.114.535': [0.737, 6.667]}), 'newmec-5'], [({'t2.156.114.536': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.536': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.536': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.536': [0.433, 5.0], 't5.156.114.536': [0.683, 5.0], 't3.156.114.536': [0.569, 5.0]}), 'osboxes-0'], [({'t4.101.114.537': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.537': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.537': [0.58, 10.0], 't2.101.114.537': [0.684, 5.0]}), 'newmec-1'], [({'t5.101.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.538': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.538': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.538': [0.501, 5.0], 't2.101.114.538': [0.796, 5.0], 't3.101.114.538': [0.695, 5.0]}), 'newmec-1'], [({'t2.103.114.539': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.539': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.539': [0.659, 5.0], 't3.103.114.539': [0.731, 5.0]}), 'newmec-3'], [({'t5.103.114.540': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.540': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.540': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.540': [0.773, 5.0], 't4.103.114.540': [0.445, 10.0], 't1.103.114.540': [0.606, 6.667]}), 'newmec-3'], [({'t4.101.114.541': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.541': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.541': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.541': [0.717, 10.0], 't1.101.114.541': [0.478, 6.667], 't2.101.114.541': [0.703, 5.0]}), 'newmec-1'], [({'t3.102.114.542': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.542': [0.705, 5.0], 't2.102.114.542': [0.551, 5.0]}), 'newmec-2'], [({'t4.102.114.543': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.543': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.543': [0.587, 10.0], 't1.102.114.543': [0.727, 6.667], 't3.102.114.543': [0.527, 5.0]}), 'newmec-2'], [({'t2.104.114.544': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.544': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.544': [0.409, 5.0], 't3.104.114.544': [0.484, 5.0], 't4.104.114.544': [0.456, 10.0]}), 'newmec-4'], [({'t2.101.114.545': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.545': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.545': [0.465, 5.0], 't4.101.114.545': [0.685, 10.0], 't1.101.114.545': [0.716, 6.667]}), 'newmec-1'], [({'t4.101.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.546': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.546': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.546': [0.759, 10.0], 't2.101.114.546': [0.412, 5.0], 't1.101.114.546': [0.469, 6.667]}), 'newmec-1'], [({'t5.104.114.547': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.547': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.547': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.547': [0.537, 5.0], 't4.104.114.547': [0.524, 10.0], 't3.104.114.547': [0.599, 5.0]}), 'newmec-4'], [({'t3.102.114.548': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.548': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.548': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.548': [0.67, 5.0], 't4.102.114.548': [0.701, 10.0], 't5.102.114.548': [0.747, 5.0]}), 'newmec-2'], [({'t5.103.114.549': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.549': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.549': [0.789, 5.0], 't1.103.114.549': [0.649, 6.667], 't4.103.114.549': [0.465, 10.0]}), 'newmec-3'], [({'t4.101.114.550': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.550': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.550': [0.444, 10.0], 't5.101.114.550': [0.439, 5.0]}), 'newmec-1'], [({'t3.104.114.551': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.551': [0.612, 5.0], 't5.104.114.551': [0.438, 5.0]}), 'newmec-4'], [({'t4.101.114.552': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.552': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.552': [0.76, 10.0], 't5.101.114.552': [0.432, 5.0], 't1.101.114.552': [0.401, 6.667]}), 'newmec-1'], [({'t2.101.114.553': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.553': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.553': [0.545, 5.0], 't1.101.114.553': [0.516, 6.667], 't4.101.114.553': [0.631, 10.0]}), 'newmec-1'], [({'t3.102.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.554': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.554': [0.528, 5.0], 't4.102.114.554': [0.756, 10.0], 't2.102.114.554': [0.477, 5.0]}), 'newmec-2'], [({'t5.101.114.555': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.555': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.555': [0.614, 5.0], 't4.101.114.555': [0.612, 10.0]}), 'newmec-1'], [({'t5.101.114.556': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.556': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.556': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.556': [0.69, 5.0], 't3.101.114.556': [0.617, 5.0], 't1.101.114.556': [0.547, 6.667]}), 'newmec-1'], [({'t5.103.114.557': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.557': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.557': [0.454, 5.0], 't4.103.114.557': [0.472, 10.0]}), 'newmec-3'], [({'t2.102.114.558': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.558': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.558': [0.563, 5.0], 't3.102.114.558': [0.623, 5.0]}), 'newmec-2'], [({'t3.101.114.559': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.559': [0.408, 5.0], 't4.101.114.559': [0.506, 10.0]}), 'newmec-1'], [({'t4.101.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.560': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.560': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.560': [0.664, 10.0], 't5.101.114.560': [0.539, 5.0], 't2.101.114.560': [0.455, 5.0]}), 'newmec-1'], [({'t2.101.114.561': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.561': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.561': [0.626, 5.0], 't1.101.114.561': [0.778, 6.667]}), 'newmec-1'], [({'t4.103.114.562': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.562': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.562': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.562': [0.577, 10.0], 't1.103.114.562': [0.612, 6.667], 't5.103.114.562': [0.419, 5.0]}), 'newmec-3'], [({'t5.103.114.563': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.563': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.563': [0.439, 5.0], 't4.103.114.563': [0.772, 10.0], 't3.103.114.563': [0.429, 5.0]}), 'newmec-3'], [({'t4.101.114.564': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.564': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.564': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.564': [0.523, 10.0], 't5.101.114.564': [0.57, 5.0], 't1.101.114.564': [0.669, 6.667]}), 'newmec-1'], [({'t2.102.114.565': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.565': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.565': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.565': [0.663, 5.0], 't4.102.114.565': [0.683, 10.0], 't5.102.114.565': [0.635, 5.0]}), 'newmec-2'], [({'t3.102.114.566': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.566': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.566': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.566': [0.641, 5.0], 't4.102.114.566': [0.51, 10.0], 't2.102.114.566': [0.607, 5.0]}), 'newmec-2'], [({'t3.102.114.567': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.567': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.567': [0.555, 5.0], 't2.102.114.567': [0.707, 5.0]}), 'newmec-2'], [({'t1.102.114.568': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.568': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.568': [0.645, 6.667], 't4.102.114.568': [0.538, 10.0], 't5.102.114.568': [0.407, 5.0]}), 'newmec-2'], [({'t4.156.114.569': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.569': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.569': [0.579, 10.0], 't2.156.114.569': [0.473, 5.0], 't1.156.114.569': [0.462, 6.667]}), 'osboxes-0'], [({'t2.102.114.570': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.570': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.570': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.570': [0.657, 5.0], 't4.102.114.570': [0.733, 10.0], 't3.102.114.570': [0.529, 5.0]}), 'newmec-2'], [({'t2.102.114.571': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.571': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.571': [0.494, 5.0], 't4.102.114.571': [0.612, 10.0]}), 'newmec-2'], [({'t4.102.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.572': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.572': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.572': [0.586, 10.0], 't3.102.114.572': [0.749, 5.0], 't2.102.114.572': [0.763, 5.0]}), 'newmec-2'], [({'t5.101.114.573': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.573': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.573': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.573': [0.647, 5.0], 't2.101.114.573': [0.446, 5.0], 't3.101.114.573': [0.79, 5.0]}), 'newmec-1'], [({'t3.101.114.574': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.574': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.574': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.574': [0.716, 5.0], 't5.101.114.574': [0.701, 5.0], 't1.101.114.574': [0.48, 6.667]}), 'newmec-1'], [({'t2.102.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.575': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.575': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.575': [0.442, 5.0], 't5.102.114.575': [0.515, 5.0], 't1.102.114.575': [0.563, 6.667]}), 'newmec-2'], [({'t3.101.114.576': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.576': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.576': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.576': [0.753, 5.0], 't1.101.114.576': [0.699, 6.667], 't5.101.114.576': [0.765, 5.0]}), 'newmec-1'], [({'t3.101.114.577': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.577': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.577': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.577': [0.667, 5.0], 't4.101.114.577': [0.483, 10.0], 't1.101.114.577': [0.404, 6.667]}), 'newmec-1'], [({'t4.156.114.578': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.578': [0.721, 10.0], 't2.156.114.578': [0.573, 5.0]}), 'osboxes-0'], [({'t3.102.114.579': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.579': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.579': [0.716, 5.0], 't2.102.114.579': [0.421, 5.0]}), 'newmec-2'], [({'t2.104.114.580': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.580': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.580': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.580': [0.707, 5.0], 't1.104.114.580': [0.596, 6.667], 't4.104.114.580': [0.513, 10.0]}), 'newmec-4'], [({'t4.101.114.581': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.581': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.581': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.581': [0.483, 10.0], 't1.101.114.581': [0.497, 6.667], 't2.101.114.581': [0.434, 5.0]}), 'newmec-1'], [({'t3.102.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.582': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.582': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.582': [0.799, 5.0], 't4.102.114.582': [0.643, 10.0], 't5.102.114.582': [0.514, 5.0]}), 'newmec-2'], [({'t2.102.114.583': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.583': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.583': [0.638, 5.0], 't3.102.114.583': [0.54, 5.0]}), 'newmec-2'], [({'t1.101.114.584': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.584': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.584': [0.526, 6.667], 't5.101.114.584': [0.699, 5.0], 't2.101.114.584': [0.63, 5.0]}), 'newmec-1'], [({'t5.103.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.585': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.585': [0.705, 5.0], 't3.103.114.585': [0.461, 5.0]}), 'newmec-3'], [({'t5.101.114.586': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.586': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.586': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.586': [0.576, 5.0], 't1.101.114.586': [0.444, 6.667], 't2.101.114.586': [0.755, 5.0]}), 'newmec-1'], [({'t4.101.114.587': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.587': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.587': [0.503, 10.0], 't2.101.114.587': [0.736, 5.0], 't1.101.114.587': [0.423, 6.667]}), 'newmec-1'], [({'t2.104.114.588': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.588': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.588': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.588': [0.738, 5.0], 't4.104.114.588': [0.666, 10.0], 't1.104.114.588': [0.655, 6.667]}), 'newmec-4'], [({'t2.103.114.589': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.589': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.589': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.589': [0.711, 5.0], 't5.103.114.589': [0.657, 5.0], 't3.103.114.589': [0.539, 5.0]}), 'newmec-3'], [({'t3.104.114.590': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.590': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.590': [0.427, 5.0], 't5.104.114.590': [0.462, 5.0]}), 'newmec-4'], [({'t3.101.114.591': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.591': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.591': [0.688, 5.0], 't4.101.114.591': [0.549, 10.0]}), 'newmec-1'], [({'t3.102.114.592': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.592': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.592': [0.571, 5.0], 't4.102.114.592': [0.705, 10.0]}), 'newmec-2'], [({'t5.101.114.593': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.593': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.593': [0.717, 5.0], 't2.101.114.593': [0.436, 5.0]}), 'newmec-1'], [({'t2.102.114.594': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.594': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.594': [0.49, 5.0], 't5.102.114.594': [0.602, 5.0]}), 'newmec-2'], [({'t5.102.114.595': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.595': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.595': [0.546, 5.0], 't1.102.114.595': [0.521, 6.667]}), 'newmec-2'], [({'t1.102.114.596': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.596': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.596': [0.754, 6.667], 't2.102.114.596': [0.535, 5.0]}), 'newmec-2'], [({'t5.102.114.597': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.597': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.597': [0.766, 5.0], 't4.102.114.597': [0.539, 10.0]}), 'newmec-2'], [({'t4.102.114.598': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.598': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.598': [0.434, 10.0], 't5.102.114.598': [0.432, 5.0]}), 'newmec-2'], [({'t3.101.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.599': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.599': [0.728, 5.0], 't2.101.114.599': [0.46, 5.0], 't1.101.114.599': [0.406, 6.667]}), 'newmec-1']]
host_names6 = {'192.168.122.156': 'osboxes-0', '192.168.122.102': 'newmec-2', '192.168.122.103': 'newmec-3', '192.168.122.104': 'newmec-4', '192.168.122.105': 'newmec-5', '192.168.122.101': 'newmec-1'}
record7 = [[({'t5.101.114.0': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.0': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.0': [0.714, 5.0], 't4.101.114.0': [0.592, 10.0], 't2.101.114.0': [0.492, 5.0]}), 'newmec-1'], [({'t4.103.114.1': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.1': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.1': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.1': [0.438, 10.0], 't2.103.114.1': [0.578, 5.0], 't3.103.114.1': [0.56, 5.0]}), 'newmec-3'], [({'t3.105.114.2': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.2': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.2': [0.659, 5.0], 't2.105.114.2': [0.583, 5.0], 't5.105.114.2': [0.559, 5.0]}), 'newmec-5'], [({'t3.102.114.3': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.3': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.3': [0.429, 5.0], 't1.102.114.3': [0.734, 6.667]}), 'newmec-2'], [({'t4.103.114.4': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.4': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.4': [0.613, 10.0], 't1.103.114.4': [0.41, 6.667]}), 'newmec-3'], [({'t3.102.114.5': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.5': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.5': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.5': [0.729, 5.0], 't5.102.114.5': [0.653, 5.0], 't2.102.114.5': [0.581, 5.0]}), 'newmec-2'], [({'t2.101.114.6': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.6': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.6': [0.612, 5.0], 't5.101.114.6': [0.436, 5.0]}), 'newmec-1'], [({'t2.102.114.7': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.7': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.7': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.7': [0.624, 5.0], 't3.102.114.7': [0.792, 5.0], 't4.102.114.7': [0.442, 10.0]}), 'newmec-2'], [({'t5.102.114.8': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.8': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.8': [0.705, 5.0], 't4.102.114.8': [0.431, 10.0]}), 'newmec-2'], [({'t5.103.114.9': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.9': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.9': [0.529, 5.0], 't4.103.114.9': [0.596, 10.0]}), 'newmec-3'], [({'t5.103.114.10': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.10': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.10': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.10': [0.742, 5.0], 't2.103.114.10': [0.726, 5.0], 't4.103.114.10': [0.71, 10.0]}), 'newmec-3'], [({'t2.104.114.11': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.11': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.11': [0.683, 5.0], 't4.104.114.11': [0.427, 10.0]}), 'newmec-4'], [({'t2.103.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.12': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.12': [0.766, 5.0], 't4.103.114.12': [0.668, 10.0]}), 'newmec-3'], [({'t2.106.114.13': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.13': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.106.114.13': [0.788, 5.0], 't1.106.114.13': [0.727, 6.667]}), 'newmec-6'], [({'t5.101.114.14': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.14': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.14': [0.497, 5.0], 't4.101.114.14': [0.735, 10.0], 't2.101.114.14': [0.63, 5.0]}), 'newmec-1'], [({'t3.102.114.15': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.15': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.15': [0.595, 5.0], 't5.102.114.15': [0.631, 5.0], 't2.102.114.15': [0.442, 5.0]}), 'newmec-2'], [({'t5.101.114.16': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.16': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.16': [0.673, 5.0], 't1.101.114.16': [0.437, 6.667]}), 'newmec-1'], [({'t2.103.114.17': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.17': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.17': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.17': [0.693, 5.0], 't5.103.114.17': [0.797, 5.0], 't4.103.114.17': [0.574, 10.0]}), 'newmec-3'], [({'t3.104.114.18': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.18': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.18': [0.715, 5.0], 't2.104.114.18': [0.779, 5.0]}), 'newmec-4'], [({'t5.103.114.19': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.19': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.19': [0.641, 5.0], 't2.103.114.19': [0.76, 5.0], 't4.103.114.19': [0.698, 10.0]}), 'newmec-3'], [({'t2.102.114.20': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.20': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.20': [0.792, 5.0], 't4.102.114.20': [0.693, 10.0]}), 'newmec-2'], [({'t4.103.114.21': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.21': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.21': [0.515, 10.0], 't5.103.114.21': [0.562, 5.0]}), 'newmec-3'], [({'t1.104.114.22': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.22': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.22': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.22': [0.798, 6.667], 't4.104.114.22': [0.626, 10.0], 't2.104.114.22': [0.767, 5.0]}), 'newmec-4'], [({'t2.103.114.23': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.23': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.23': [0.785, 5.0], 't4.103.114.23': [0.419, 10.0]}), 'newmec-3'], [({'t5.106.114.24': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.24': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.24': [0.722, 5.0], 't2.106.114.24': [0.587, 5.0]}), 'newmec-6'], [({'t2.102.114.25': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.25': [0.491, 5.0], 't4.102.114.25': [0.423, 10.0]}), 'newmec-2'], [({'t1.106.114.26': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.106.114.26': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.106.114.26': [0.612, 6.667], 't2.106.114.26': [0.571, 5.0]}), 'newmec-6'], [({'t5.105.114.27': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.27': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.27': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.27': [0.574, 5.0], 't1.105.114.27': [0.634, 6.667], 't4.105.114.27': [0.772, 10.0]}), 'newmec-5'], [({'t2.156.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.28': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.28': [0.676, 5.0], 't5.156.114.28': [0.556, 5.0], 't4.156.114.28': [0.413, 10.0]}), 'osboxes-0'], [({'t4.156.114.29': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.29': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.29': [0.53, 10.0], 't5.156.114.29': [0.494, 5.0]}), 'osboxes-0'], [({'t2.103.114.30': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.30': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.30': [0.613, 5.0], 't4.103.114.30': [0.778, 10.0]}), 'newmec-3'], [({'t4.102.114.31': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.31': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.31': [0.539, 10.0], 't3.102.114.31': [0.496, 5.0]}), 'newmec-2'], [({'t5.103.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.32': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.32': [0.576, 5.0], 't4.103.114.32': [0.472, 10.0]}), 'newmec-3'], [({'t2.102.114.33': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.33': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.33': [0.725, 5.0], 't1.102.114.33': [0.652, 6.667]}), 'newmec-2'], [({'t4.105.114.34': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.34': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.34': [0.5, 10.0], 't2.105.114.34': [0.559, 5.0]}), 'newmec-5'], [({'t5.101.114.35': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.35': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.35': [0.595, 5.0], 't1.101.114.35': [0.796, 6.667]}), 'newmec-1'], [({'t4.104.114.36': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.36': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.36': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.36': [0.484, 10.0], 't5.104.114.36': [0.435, 5.0], 't2.104.114.36': [0.456, 5.0]}), 'newmec-4'], [({'t1.103.114.37': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.37': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.37': [0.609, 6.667], 't3.103.114.37': [0.717, 5.0]}), 'newmec-3'], [({'t3.103.114.38': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.38': [0.64, 5.0], 't2.103.114.38': [0.725, 5.0]}), 'newmec-3'], [({'t4.103.114.39': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.39': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.39': [0.414, 10.0], 't2.103.114.39': [0.594, 5.0]}), 'newmec-3'], [({'t4.103.114.40': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.40': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.40': [0.53, 10.0], 't2.103.114.40': [0.517, 5.0], 't3.103.114.40': [0.425, 5.0]}), 'newmec-3'], [({'t5.103.114.41': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.41': [0.796, 5.0], 't1.103.114.41': [0.491, 6.667]}), 'newmec-3'], [({'t1.106.114.42': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.106.114.42': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.42': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.106.114.42': [0.649, 6.667], 't3.106.114.42': [0.686, 5.0], 't5.106.114.42': [0.463, 5.0]}), 'newmec-6'], [({'t5.101.114.43': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.43': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.43': [0.439, 5.0], 't4.101.114.43': [0.628, 10.0], 't2.101.114.43': [0.448, 5.0]}), 'newmec-1'], [({'t4.105.114.44': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.44': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.44': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.44': [0.659, 10.0], 't2.105.114.44': [0.604, 5.0], 't3.105.114.44': [0.606, 5.0]}), 'newmec-5'], [({'t2.102.114.45': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.45': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.45': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.45': [0.76, 5.0], 't5.102.114.45': [0.475, 5.0], 't4.102.114.45': [0.506, 10.0]}), 'newmec-2'], [({'t2.106.114.46': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.46': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.106.114.46': [0.603, 5.0], 't5.106.114.46': [0.553, 5.0], 't1.106.114.46': [0.587, 6.667]}), 'newmec-6'], [({'t5.106.114.47': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.47': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.47': [0.521, 5.0], 't2.106.114.47': [0.748, 5.0], 't4.106.114.47': [0.688, 10.0]}), 'newmec-6'], [({'t1.101.114.48': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.48': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.48': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.48': [0.672, 6.667], 't3.101.114.48': [0.758, 5.0], 't5.101.114.48': [0.599, 5.0]}), 'newmec-1'], [({'t2.156.114.49': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.49': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.49': [0.662, 5.0], 't4.156.114.49': [0.615, 10.0]}), 'osboxes-0'], [({'t2.106.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.50': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.50': [0.436, 5.0], 't3.106.114.50': [0.466, 5.0]}), 'newmec-6'], [({'t5.102.114.51': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.51': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.51': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.51': [0.643, 5.0], 't2.102.114.51': [0.568, 5.0], 't1.102.114.51': [0.584, 6.667]}), 'newmec-2'], [({'t5.156.114.52': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.52': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.52': [0.625, 5.0], 't1.156.114.52': [0.412, 6.667]}), 'osboxes-0'], [({'t2.101.114.53': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.53': [0.435, 5.0], 't1.101.114.53': [0.721, 6.667]}), 'newmec-1'], [({'t5.104.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.54': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.54': [0.646, 5.0], 't1.104.114.54': [0.687, 6.667]}), 'newmec-4'], [({'t5.106.114.55': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.55': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.55': [0.408, 5.0], 't3.106.114.55': [0.788, 5.0], 't4.106.114.55': [0.518, 10.0]}), 'newmec-6'], [({'t3.104.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.56': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.56': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.56': [0.525, 5.0], 't5.104.114.56': [0.484, 5.0], 't2.104.114.56': [0.551, 5.0]}), 'newmec-4'], [({'t1.156.114.57': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.57': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.57': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.57': [0.432, 6.667], 't2.156.114.57': [0.415, 5.0], 't4.156.114.57': [0.524, 10.0]}), 'osboxes-0'], [({'t2.106.114.58': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.58': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.106.114.58': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.58': [0.724, 5.0], 't1.106.114.58': [0.671, 6.667], 't3.106.114.58': [0.523, 5.0]}), 'newmec-6'], [({'t4.156.114.59': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.59': [0.443, 10.0], 't2.156.114.59': [0.597, 5.0]}), 'osboxes-0'], [({'t4.105.114.60': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.60': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.60': [0.47, 10.0], 't3.105.114.60': [0.619, 5.0]}), 'newmec-5'], [({'t4.105.114.61': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.61': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.61': [0.428, 10.0], 't2.105.114.61': [0.422, 5.0]}), 'newmec-5'], [({'t2.104.114.62': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.62': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.62': [0.673, 5.0], 't1.104.114.62': [0.681, 6.667]}), 'newmec-4'], [({'t2.106.114.63': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.63': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.63': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.106.114.63': [0.692, 5.0], 't4.106.114.63': [0.508, 10.0], 't5.106.114.63': [0.617, 5.0]}), 'newmec-6'], [({'t5.104.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.64': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.64': [0.561, 5.0], 't4.104.114.64': [0.468, 10.0]}), 'newmec-4'], [({'t2.104.114.65': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.65': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.65': [0.77, 5.0], 't1.104.114.65': [0.549, 6.667]}), 'newmec-4'], [({'t4.105.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.66': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.66': [0.709, 10.0], 't5.105.114.66': [0.406, 5.0]}), 'newmec-5'], [({'t5.101.114.67': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.67': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.67': [0.702, 5.0], 't4.101.114.67': [0.47, 10.0]}), 'newmec-1'], [({'t3.106.114.68': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.68': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.68': [0.703, 5.0], 't1.106.114.68': [0.705, 6.667]}), 'newmec-6'], [({'t3.102.114.69': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.69': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.69': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.69': [0.602, 5.0], 't2.102.114.69': [0.513, 5.0], 't5.102.114.69': [0.778, 5.0]}), 'newmec-2'], [({'t4.102.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.70': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.70': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.70': [0.531, 10.0], 't3.102.114.70': [0.762, 5.0], 't2.102.114.70': [0.499, 5.0]}), 'newmec-2'], [({'t4.105.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.71': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.71': [0.572, 10.0], 't1.105.114.71': [0.791, 6.667], 't2.105.114.71': [0.51, 5.0]}), 'newmec-5'], [({'t5.102.114.72': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.72': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.72': [0.588, 5.0], 't3.102.114.72': [0.734, 5.0]}), 'newmec-2'], [({'t3.102.114.73': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.73': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.73': [0.584, 5.0], 't5.102.114.73': [0.569, 5.0]}), 'newmec-2'], [({'t4.103.114.74': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.74': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.74': [0.459, 10.0], 't2.103.114.74': [0.778, 5.0], 't5.103.114.74': [0.774, 5.0]}), 'newmec-3'], [({'t3.102.114.75': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.75': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.75': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.75': [0.711, 5.0], 't4.102.114.75': [0.553, 10.0], 't2.102.114.75': [0.779, 5.0]}), 'newmec-2'], [({'t4.101.114.76': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.76': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.76': [0.789, 10.0], 't2.101.114.76': [0.559, 5.0]}), 'newmec-1'], [({'t3.156.114.77': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.77': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.77': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.77': [0.69, 5.0], 't2.156.114.77': [0.535, 5.0], 't1.156.114.77': [0.77, 6.667]}), 'osboxes-0'], [({'t3.106.114.78': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.78': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.106.114.78': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.78': [0.658, 5.0], 't1.106.114.78': [0.67, 6.667], 't5.106.114.78': [0.576, 5.0]}), 'newmec-6'], [({'t5.103.114.79': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.79': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.79': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.79': [0.483, 5.0], 't4.103.114.79': [0.777, 10.0], 't3.103.114.79': [0.606, 5.0]}), 'newmec-3'], [({'t4.104.114.80': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.80': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.80': [0.479, 10.0], 't3.104.114.80': [0.701, 5.0]}), 'newmec-4'], [({'t4.101.114.81': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.81': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.81': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.81': [0.746, 10.0], 't3.101.114.81': [0.453, 5.0], 't5.101.114.81': [0.543, 5.0]}), 'newmec-1'], [({'t2.105.114.82': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.82': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.82': [0.405, 5.0], 't4.105.114.82': [0.587, 10.0]}), 'newmec-5'], [({'t1.102.114.83': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.83': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.83': [0.714, 6.667], 't2.102.114.83': [0.414, 5.0]}), 'newmec-2'], [({'t5.103.114.84': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.84': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.84': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.84': [0.635, 5.0], 't2.103.114.84': [0.715, 5.0], 't1.103.114.84': [0.784, 6.667]}), 'newmec-3'], [({'t3.103.114.85': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.85': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.85': [0.645, 5.0], 't1.103.114.85': [0.764, 6.667], 't5.103.114.85': [0.704, 5.0]}), 'newmec-3'], [({'t1.156.114.86': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.86': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.86': [0.538, 6.667], 't5.156.114.86': [0.523, 5.0]}), 'osboxes-0'], [({'t5.102.114.87': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.87': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.87': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.87': [0.614, 5.0], 't2.102.114.87': [0.721, 5.0], 't4.102.114.87': [0.536, 10.0]}), 'newmec-2'], [({'t5.102.114.88': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.88': [0.572, 5.0], 't4.102.114.88': [0.545, 10.0]}), 'newmec-2'], [({'t2.102.114.89': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.89': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.89': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.89': [0.555, 5.0], 't5.102.114.89': [0.466, 5.0], 't3.102.114.89': [0.711, 5.0]}), 'newmec-2'], [({'t4.101.114.90': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.90': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.90': [0.754, 10.0], 't2.101.114.90': [0.48, 5.0]}), 'newmec-1'], [({'t5.106.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.91': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.91': [0.727, 5.0], 't1.106.114.91': [0.681, 6.667]}), 'newmec-6'], [({'t3.104.114.92': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.92': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.92': [0.612, 5.0], 't2.104.114.92': [0.443, 5.0]}), 'newmec-4'], [({'t4.106.114.93': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.93': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.93': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.93': [0.474, 10.0], 't3.106.114.93': [0.625, 5.0], 't5.106.114.93': [0.722, 5.0]}), 'newmec-6'], [({'t1.101.114.94': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.94': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.94': [0.437, 6.667], 't5.101.114.94': [0.746, 5.0]}), 'newmec-1'], [({'t4.105.114.95': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.95': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.95': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.95': [0.659, 10.0], 't1.105.114.95': [0.656, 6.667], 't5.105.114.95': [0.734, 5.0]}), 'newmec-5'], [({'t2.106.114.96': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.96': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.96': [0.714, 5.0], 't4.106.114.96': [0.575, 10.0]}), 'newmec-6'], [({'t3.102.114.97': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.97': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.97': [0.756, 5.0], 't4.102.114.97': [0.554, 10.0]}), 'newmec-2'], [({'t5.156.114.98': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.98': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.98': [0.603, 5.0], 't2.156.114.98': [0.78, 5.0]}), 'osboxes-0'], [({'t1.103.114.99': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.99': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.99': [0.632, 6.667], 't5.103.114.99': [0.573, 5.0]}), 'newmec-3'], [({'t5.103.114.100': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.100': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.100': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.100': [0.624, 5.0], 't2.103.114.100': [0.713, 5.0], 't3.103.114.100': [0.43, 5.0]}), 'newmec-3'], [({'t2.103.114.101': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.101': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.101': [0.405, 5.0], 't4.103.114.101': [0.718, 10.0]}), 'newmec-3'], [({'t4.101.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.102': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.102': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.102': [0.727, 10.0], 't3.101.114.102': [0.681, 5.0], 't5.101.114.102': [0.554, 5.0]}), 'newmec-1'], [({'t2.104.114.103': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.103': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.103': [0.651, 5.0], 't5.104.114.103': [0.431, 5.0]}), 'newmec-4'], [({'t4.105.114.104': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.104': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.104': [0.474, 10.0], 't2.105.114.104': [0.505, 5.0]}), 'newmec-5'], [({'t5.103.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.105': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.105': [0.424, 5.0], 't3.103.114.105': [0.638, 5.0]}), 'newmec-3'], [({'t2.106.114.106': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.106': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.106.114.106': [0.687, 5.0], 't4.106.114.106': [0.659, 10.0], 't5.106.114.106': [0.698, 5.0]}), 'newmec-6'], [({'t4.105.114.107': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.107': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.107': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.107': [0.52, 10.0], 't1.105.114.107': [0.416, 6.667], 't2.105.114.107': [0.531, 5.0]}), 'newmec-5'], [({'t2.102.114.108': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.108': [0.41, 5.0], 't5.102.114.108': [0.663, 5.0]}), 'newmec-2'], [({'t2.106.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.109': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.106.114.109': [0.443, 5.0], 't1.106.114.109': [0.662, 6.667]}), 'newmec-6'], [({'t3.156.114.110': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.110': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.110': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.110': [0.414, 5.0], 't5.156.114.110': [0.607, 5.0], 't2.156.114.110': [0.598, 5.0]}), 'osboxes-0'], [({'t3.156.114.111': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.111': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.111': [0.417, 5.0], 't1.156.114.111': [0.487, 6.667], 't5.156.114.111': [0.733, 5.0]}), 'osboxes-0'], [({'t5.106.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.112': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.112': [0.405, 5.0], 't4.106.114.112': [0.43, 10.0]}), 'newmec-6'], [({'t4.105.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.113': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.113': [0.768, 10.0], 't5.105.114.113': [0.637, 5.0]}), 'newmec-5'], [({'t2.101.114.114': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.114': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.114': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.114': [0.527, 5.0], 't3.101.114.114': [0.582, 5.0], 't1.101.114.114': [0.424, 6.667]}), 'newmec-1'], [({'t5.105.114.115': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.115': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.115': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.115': [0.486, 5.0], 't4.105.114.115': [0.765, 10.0], 't2.105.114.115': [0.708, 5.0]}), 'newmec-5'], [({'t1.102.114.116': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.116': [0.559, 6.667], 't2.102.114.116': [0.631, 5.0]}), 'newmec-2'], [({'t3.103.114.117': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.117': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.117': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.117': [0.615, 5.0], 't2.103.114.117': [0.441, 5.0], 't1.103.114.117': [0.57, 6.667]}), 'newmec-3'], [({'t2.105.114.118': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.118': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.118': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.118': [0.449, 5.0], 't3.105.114.118': [0.548, 5.0], 't1.105.114.118': [0.603, 6.667]}), 'newmec-5'], [({'t5.103.114.119': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.119': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.119': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.119': [0.633, 5.0], 't3.103.114.119': [0.513, 5.0], 't4.103.114.119': [0.438, 10.0]}), 'newmec-3'], [({'t5.101.114.120': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.120': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.120': [0.595, 5.0], 't3.101.114.120': [0.618, 5.0]}), 'newmec-1'], [({'t5.103.114.121': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.121': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.121': [0.424, 5.0], 't4.103.114.121': [0.738, 10.0]}), 'newmec-3'], [({'t2.106.114.122': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.122': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.122': [0.451, 5.0], 't4.106.114.122': [0.787, 10.0]}), 'newmec-6'], [({'t3.103.114.123': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.123': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.123': [0.793, 5.0], 't2.103.114.123': [0.637, 5.0]}), 'newmec-3'], [({'t2.104.114.124': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.124': [0.422, 5.0], 't4.104.114.124': [0.763, 10.0]}), 'newmec-4'], [({'t2.105.114.125': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.125': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.125': [0.608, 5.0], 't3.105.114.125': [0.781, 5.0]}), 'newmec-5'], [({'t2.103.114.126': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.126': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.126': [0.682, 5.0], 't3.103.114.126': [0.654, 5.0]}), 'newmec-3'], [({'t5.103.114.127': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.127': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.127': [0.563, 5.0], 't2.103.114.127': [0.686, 5.0], 't1.103.114.127': [0.676, 6.667]}), 'newmec-3'], [({'t3.102.114.128': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.128': [0.412, 5.0], 't4.102.114.128': [0.432, 10.0]}), 'newmec-2'], [({'t4.103.114.129': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.129': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.129': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.129': [0.407, 10.0], 't5.103.114.129': [0.56, 5.0], 't2.103.114.129': [0.506, 5.0]}), 'newmec-3'], [({'t3.104.114.130': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.130': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.130': [0.426, 5.0], 't4.104.114.130': [0.417, 10.0]}), 'newmec-4'], [({'t5.101.114.131': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.131': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.131': [0.68, 5.0], 't2.101.114.131': [0.424, 5.0]}), 'newmec-1'], [({'t2.104.114.132': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.132': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.132': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.132': [0.528, 5.0], 't5.104.114.132': [0.69, 5.0], 't4.104.114.132': [0.416, 10.0]}), 'newmec-4'], [({'t4.106.114.133': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.133': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.106.114.133': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.133': [0.448, 10.0], 't1.106.114.133': [0.766, 6.667], 't5.106.114.133': [0.411, 5.0]}), 'newmec-6'], [({'t1.104.114.134': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.134': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.134': [0.735, 6.667], 't2.104.114.134': [0.766, 5.0]}), 'newmec-4'], [({'t4.104.114.135': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.135': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.135': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.135': [0.646, 10.0], 't3.104.114.135': [0.492, 5.0], 't2.104.114.135': [0.59, 5.0]}), 'newmec-4'], [({'t2.105.114.136': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.136': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.136': [0.463, 5.0], 't4.105.114.136': [0.4, 10.0], 't5.105.114.136': [0.769, 5.0]}), 'newmec-5'], [({'t4.156.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.137': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.137': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.137': [0.741, 10.0], 't5.156.114.137': [0.411, 5.0], 't3.156.114.137': [0.685, 5.0]}), 'osboxes-0'], [({'t5.103.114.138': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.138': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.138': [0.49, 5.0], 't1.103.114.138': [0.506, 6.667]}), 'newmec-3'], [({'t5.105.114.139': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.139': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.139': [0.486, 5.0], 't4.105.114.139': [0.501, 10.0]}), 'newmec-5'], [({'t4.103.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.140': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.140': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.140': [0.732, 10.0], 't1.103.114.140': [0.642, 6.667], 't5.103.114.140': [0.581, 5.0]}), 'newmec-3'], [({'t3.104.114.141': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.141': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.141': [0.721, 5.0], 't5.104.114.141': [0.522, 5.0]}), 'newmec-4'], [({'t4.156.114.142': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.142': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.142': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.142': [0.578, 10.0], 't3.156.114.142': [0.515, 5.0], 't1.156.114.142': [0.448, 6.667]}), 'osboxes-0'], [({'t3.106.114.143': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.143': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.143': [0.648, 5.0], 't4.106.114.143': [0.689, 10.0], 't1.106.114.143': [0.455, 6.667]}), 'newmec-6'], [({'t5.104.114.144': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.144': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.144': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.144': [0.65, 5.0], 't2.104.114.144': [0.719, 5.0], 't1.104.114.144': [0.535, 6.667]}), 'newmec-4'], [({'t2.105.114.145': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.145': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.145': [0.442, 5.0], 't3.105.114.145': [0.795, 5.0]}), 'newmec-5'], [({'t2.105.114.146': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.146': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.146': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.146': [0.594, 5.0], 't4.105.114.146': [0.77, 10.0], 't3.105.114.146': [0.6, 5.0]}), 'newmec-5'], [({'t3.104.114.147': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.147': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.147': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.147': [0.788, 5.0], 't1.104.114.147': [0.597, 6.667], 't2.104.114.147': [0.741, 5.0]}), 'newmec-4'], [({'t3.101.114.148': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.148': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.148': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.148': [0.711, 5.0], 't2.101.114.148': [0.587, 5.0], 't5.101.114.148': [0.74, 5.0]}), 'newmec-1'], [({'t5.103.114.149': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.149': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.149': [0.521, 5.0], 't3.103.114.149': [0.724, 5.0]}), 'newmec-3'], [({'t4.103.114.150': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.150': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.150': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.150': [0.699, 10.0], 't3.103.114.150': [0.405, 5.0], 't5.103.114.150': [0.443, 5.0]}), 'newmec-3'], [({'t5.101.114.151': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.151': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.151': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.151': [0.64, 5.0], 't3.101.114.151': [0.796, 5.0], 't1.101.114.151': [0.571, 6.667]}), 'newmec-1'], [({'t5.106.114.152': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.152': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.152': [0.614, 5.0], 't2.106.114.152': [0.406, 5.0]}), 'newmec-6'], [({'t5.106.114.153': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.153': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.153': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.153': [0.427, 5.0], 't4.106.114.153': [0.654, 10.0], 't3.106.114.153': [0.568, 5.0]}), 'newmec-6'], [({'t1.104.114.154': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.154': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.154': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.154': [0.642, 6.667], 't5.104.114.154': [0.711, 5.0], 't4.104.114.154': [0.687, 10.0]}), 'newmec-4'], [({'t5.101.114.155': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.155': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.155': [0.505, 5.0], 't2.101.114.155': [0.461, 5.0]}), 'newmec-1'], [({'t2.103.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.156': [0.593, 5.0], 't4.103.114.156': [0.612, 10.0]}), 'newmec-3'], [({'t3.104.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.157': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.157': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.157': [0.498, 5.0], 't5.104.114.157': [0.421, 5.0], 't4.104.114.157': [0.434, 10.0]}), 'newmec-4'], [({'t3.102.114.158': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.158': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.158': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.158': [0.553, 5.0], 't5.102.114.158': [0.609, 5.0], 't4.102.114.158': [0.541, 10.0]}), 'newmec-2'], [({'t5.102.114.159': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.159': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.159': [0.414, 5.0], 't1.102.114.159': [0.633, 6.667]}), 'newmec-2'], [({'t2.102.114.160': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.160': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.160': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.160': [0.609, 5.0], 't3.102.114.160': [0.516, 5.0], 't4.102.114.160': [0.645, 10.0]}), 'newmec-2'], [({'t5.104.114.161': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.161': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.161': [0.782, 5.0], 't1.104.114.161': [0.646, 6.667], 't2.104.114.161': [0.799, 5.0]}), 'newmec-4'], [({'t5.101.114.162': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.162': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.162': [0.554, 5.0], 't1.101.114.162': [0.52, 6.667]}), 'newmec-1'], [({'t4.104.114.163': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.163': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.163': [0.574, 10.0], 't2.104.114.163': [0.606, 5.0]}), 'newmec-4'], [({'t5.101.114.164': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.164': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.164': [0.578, 5.0], 't2.101.114.164': [0.554, 5.0]}), 'newmec-1'], [({'t3.103.114.165': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.165': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.165': [0.734, 5.0], 't2.103.114.165': [0.57, 5.0]}), 'newmec-3'], [({'t5.101.114.166': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.166': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.166': [0.531, 5.0], 't1.101.114.166': [0.422, 6.667]}), 'newmec-1'], [({'t2.104.114.167': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.167': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.167': [0.692, 5.0], 't1.104.114.167': [0.8, 6.667]}), 'newmec-4'], [({'t2.102.114.168': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.168': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.168': [0.704, 5.0], 't1.102.114.168': [0.577, 6.667]}), 'newmec-2'], [({'t4.156.114.169': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.169': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.169': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.169': [0.557, 10.0], 't5.156.114.169': [0.407, 5.0], 't3.156.114.169': [0.435, 5.0]}), 'osboxes-0'], [({'t3.106.114.170': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.170': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.170': [0.628, 5.0], 't1.106.114.170': [0.589, 6.667]}), 'newmec-6'], [({'t4.103.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.171': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.171': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.171': [0.609, 10.0], 't2.103.114.171': [0.607, 5.0], 't3.103.114.171': [0.743, 5.0]}), 'newmec-3'], [({'t1.104.114.172': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.172': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.172': [0.786, 6.667], 't5.104.114.172': [0.541, 5.0]}), 'newmec-4'], [({'t5.103.114.173': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.173': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.173': [0.514, 5.0], 't1.103.114.173': [0.401, 6.667]}), 'newmec-3'], [({'t2.104.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.174': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.174': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.174': [0.643, 5.0], 't4.104.114.174': [0.514, 10.0], 't5.104.114.174': [0.789, 5.0]}), 'newmec-4'], [({'t1.104.114.175': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.175': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.175': [0.423, 6.667], 't3.104.114.175': [0.447, 5.0]}), 'newmec-4'], [({'t1.104.114.176': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.176': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.176': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.176': [0.494, 6.667], 't4.104.114.176': [0.443, 10.0], 't5.104.114.176': [0.798, 5.0]}), 'newmec-4'], [({'t2.105.114.177': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.177': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.177': [0.763, 5.0], 't5.105.114.177': [0.605, 5.0]}), 'newmec-5'], [({'t3.101.114.178': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.178': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.178': [0.548, 5.0], 't2.101.114.178': [0.522, 5.0]}), 'newmec-1'], [({'t3.101.114.179': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.179': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.179': [0.708, 5.0], 't1.101.114.179': [0.696, 6.667], 't2.101.114.179': [0.477, 5.0]}), 'newmec-1'], [({'t3.106.114.180': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.180': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.180': [0.532, 5.0], 't2.106.114.180': [0.776, 5.0]}), 'newmec-6'], [({'t1.102.114.181': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.181': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.181': [0.484, 6.667], 't3.102.114.181': [0.76, 5.0]}), 'newmec-2'], [({'t4.156.114.182': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.182': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.182': [0.633, 10.0], 't3.156.114.182': [0.416, 5.0]}), 'osboxes-0'], [({'t5.103.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.183': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.183': [0.667, 5.0], 't1.103.114.183': [0.763, 6.667]}), 'newmec-3'], [({'t5.106.114.184': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.184': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.106.114.184': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.184': [0.585, 5.0], 't1.106.114.184': [0.781, 6.667], 't2.106.114.184': [0.658, 5.0]}), 'newmec-6'], [({'t1.106.114.185': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.106.114.185': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.106.114.185': [0.702, 6.667], 't2.106.114.185': [0.573, 5.0]}), 'newmec-6'], [({'t3.102.114.186': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.186': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.186': [0.517, 5.0], 't1.102.114.186': [0.709, 6.667], 't5.102.114.186': [0.435, 5.0]}), 'newmec-2'], [({'t3.156.114.187': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.187': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.187': [0.736, 5.0], 't2.156.114.187': [0.723, 5.0], 't5.156.114.187': [0.626, 5.0]}), 'osboxes-0'], [({'t3.104.114.188': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.188': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.188': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.188': [0.402, 5.0], 't5.104.114.188': [0.705, 5.0], 't4.104.114.188': [0.654, 10.0]}), 'newmec-4'], [({'t5.102.114.189': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.189': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.189': [0.46, 5.0], 't3.102.114.189': [0.477, 5.0]}), 'newmec-2'], [({'t5.104.114.190': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.190': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.190': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.190': [0.752, 5.0], 't3.104.114.190': [0.65, 5.0], 't1.104.114.190': [0.425, 6.667]}), 'newmec-4'], [({'t5.104.114.191': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.191': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.191': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.191': [0.789, 5.0], 't2.104.114.191': [0.71, 5.0], 't3.104.114.191': [0.63, 5.0]}), 'newmec-4'], [({'t4.106.114.192': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.192': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.192': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.192': [0.688, 10.0], 't3.106.114.192': [0.757, 5.0], 't5.106.114.192': [0.783, 5.0]}), 'newmec-6'], [({'t1.104.114.193': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.193': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.193': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.193': [0.78, 6.667], 't3.104.114.193': [0.732, 5.0], 't4.104.114.193': [0.634, 10.0]}), 'newmec-4'], [({'t4.103.114.194': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.194': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.194': [0.548, 10.0], 't3.103.114.194': [0.422, 5.0]}), 'newmec-3'], [({'t3.106.114.195': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.195': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.195': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.195': [0.418, 5.0], 't4.106.114.195': [0.449, 10.0], 't1.106.114.195': [0.47, 6.667]}), 'newmec-6'], [({'t3.101.114.196': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.196': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.196': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.196': [0.662, 5.0], 't1.101.114.196': [0.598, 6.667], 't4.101.114.196': [0.73, 10.0]}), 'newmec-1'], [({'t1.105.114.197': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.197': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.105.114.197': [0.431, 6.667], 't3.105.114.197': [0.712, 5.0]}), 'newmec-5'], [({'t5.102.114.198': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.198': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.198': [0.766, 5.0], 't1.102.114.198': [0.446, 6.667]}), 'newmec-2'], [({'t4.101.114.199': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.199': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.199': [0.417, 10.0], 't1.101.114.199': [0.677, 6.667]}), 'newmec-1'], [({'t3.103.114.200': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.200': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.200': [0.638, 5.0], 't5.103.114.200': [0.77, 5.0], 't2.103.114.200': [0.788, 5.0]}), 'newmec-3'], [({'t4.103.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.201': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.201': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.201': [0.681, 10.0], 't5.103.114.201': [0.593, 5.0], 't2.103.114.201': [0.609, 5.0]}), 'newmec-3'], [({'t5.156.114.202': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.202': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.202': [0.581, 5.0], 't3.156.114.202': [0.635, 5.0]}), 'osboxes-0'], [({'t4.103.114.203': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.203': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.203': [0.509, 10.0], 't3.103.114.203': [0.719, 5.0], 't5.103.114.203': [0.425, 5.0]}), 'newmec-3'], [({'t2.106.114.204': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.204': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.204': [0.559, 5.0], 't3.106.114.204': [0.509, 5.0]}), 'newmec-6'], [({'t2.104.114.205': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.205': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.205': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.205': [0.643, 5.0], 't1.104.114.205': [0.763, 6.667], 't5.104.114.205': [0.645, 5.0]}), 'newmec-4'], [({'t1.104.114.206': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.206': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.206': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.206': [0.775, 6.667], 't4.104.114.206': [0.776, 10.0], 't2.104.114.206': [0.504, 5.0]}), 'newmec-4'], [({'t4.104.114.207': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.207': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.207': [0.642, 10.0], 't5.104.114.207': [0.634, 5.0]}), 'newmec-4'], [({'t3.102.114.208': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.208': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.208': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.208': [0.637, 5.0], 't2.102.114.208': [0.611, 5.0], 't5.102.114.208': [0.518, 5.0]}), 'newmec-2'], [({'t3.105.114.209': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.209': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.209': [0.779, 5.0], 't5.105.114.209': [0.418, 5.0]}), 'newmec-5'], [({'t2.103.114.210': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.210': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.210': [0.721, 5.0], 't5.103.114.210': [0.769, 5.0], 't3.103.114.210': [0.416, 5.0]}), 'newmec-3'], [({'t4.103.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.211': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.211': [0.638, 10.0], 't1.103.114.211': [0.546, 6.667]}), 'newmec-3'], [({'t4.105.114.212': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.212': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.212': [0.542, 10.0], 't3.105.114.212': [0.712, 5.0]}), 'newmec-5'], [({'t4.102.114.213': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.213': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.213': [0.676, 10.0], 't1.102.114.213': [0.597, 6.667]}), 'newmec-2'], [({'t3.105.114.214': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.214': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.214': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.214': [0.769, 5.0], 't5.105.114.214': [0.669, 5.0], 't2.105.114.214': [0.643, 5.0]}), 'newmec-5'], [({'t1.105.114.215': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.215': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.215': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.215': [0.772, 6.667], 't4.105.114.215': [0.548, 10.0], 't2.105.114.215': [0.508, 5.0]}), 'newmec-5'], [({'t2.156.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.216': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.216': [0.537, 5.0], 't3.156.114.216': [0.795, 5.0]}), 'osboxes-0'], [({'t2.102.114.217': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.217': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.217': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.217': [0.438, 5.0], 't3.102.114.217': [0.519, 5.0], 't4.102.114.217': [0.636, 10.0]}), 'newmec-2'], [({'t2.104.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.218': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.218': [0.755, 5.0], 't1.104.114.218': [0.672, 6.667]}), 'newmec-4'], [({'t5.102.114.219': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.219': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.219': [0.682, 5.0], 't4.102.114.219': [0.598, 10.0]}), 'newmec-2'], [({'t2.105.114.220': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.220': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.220': [0.796, 5.0], 't4.105.114.220': [0.78, 10.0]}), 'newmec-5'], [({'t5.106.114.221': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.221': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.221': [0.536, 5.0], 't4.106.114.221': [0.681, 10.0]}), 'newmec-6'], [({'t3.103.114.222': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.222': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.222': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.222': [0.699, 5.0], 't5.103.114.222': [0.502, 5.0], 't4.103.114.222': [0.731, 10.0]}), 'newmec-3'], [({'t4.101.114.223': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.223': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.223': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.223': [0.585, 10.0], 't3.101.114.223': [0.582, 5.0], 't2.101.114.223': [0.572, 5.0]}), 'newmec-1'], [({'t4.103.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.224': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.224': [0.483, 10.0], 't3.103.114.224': [0.485, 5.0]}), 'newmec-3'], [({'t4.104.114.225': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.225': [0.78, 10.0], 't3.104.114.225': [0.597, 5.0]}), 'newmec-4'], [({'t4.106.114.226': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.226': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.226': [0.486, 10.0], 't2.106.114.226': [0.576, 5.0], 't1.106.114.226': [0.576, 6.667]}), 'newmec-6'], [({'t4.103.114.227': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.227': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.227': [0.721, 10.0], 't3.103.114.227': [0.731, 5.0]}), 'newmec-3'], [({'t1.105.114.228': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.228': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.228': [0.5, 6.667], 't2.105.114.228': [0.614, 5.0]}), 'newmec-5'], [({'t5.103.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.229': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.229': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.229': [0.566, 5.0], 't4.103.114.229': [0.767, 10.0], 't1.103.114.229': [0.672, 6.667]}), 'newmec-3'], [({'t2.103.114.230': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.230': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.230': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.230': [0.76, 5.0], 't3.103.114.230': [0.527, 5.0], 't4.103.114.230': [0.794, 10.0]}), 'newmec-3'], [({'t3.106.114.231': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.231': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.231': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.231': [0.547, 5.0], 't5.106.114.231': [0.573, 5.0], 't2.106.114.231': [0.546, 5.0]}), 'newmec-6'], [({'t3.103.114.232': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.232': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.232': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.232': [0.536, 5.0], 't2.103.114.232': [0.695, 5.0], 't5.103.114.232': [0.648, 5.0]}), 'newmec-3'], [({'t5.105.114.233': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.233': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.233': [0.431, 5.0], 't4.105.114.233': [0.712, 10.0], 't1.105.114.233': [0.508, 6.667]}), 'newmec-5'], [({'t5.104.114.234': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.234': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.234': [0.585, 5.0], 't4.104.114.234': [0.534, 10.0]}), 'newmec-4'], [({'t4.106.114.235': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.235': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.235': [0.702, 10.0], 't5.106.114.235': [0.419, 5.0], 't2.106.114.235': [0.786, 5.0]}), 'newmec-6'], [({'t3.103.114.236': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.236': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.236': [0.667, 5.0], 't5.103.114.236': [0.494, 5.0]}), 'newmec-3'], [({'t4.106.114.237': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.237': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.106.114.237': [0.78, 10.0], 't3.106.114.237': [0.745, 5.0]}), 'newmec-6'], [({'t3.103.114.238': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.238': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.238': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.238': [0.479, 5.0], 't5.103.114.238': [0.486, 5.0], 't4.103.114.238': [0.516, 10.0]}), 'newmec-3'], [({'t2.103.114.239': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.239': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.239': [0.485, 5.0], 't1.103.114.239': [0.553, 6.667]}), 'newmec-3'], [({'t3.103.114.240': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.240': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.240': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.240': [0.786, 5.0], 't2.103.114.240': [0.587, 5.0], 't5.103.114.240': [0.452, 5.0]}), 'newmec-3'], [({'t3.102.114.241': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.241': [0.65, 5.0], 't2.102.114.241': [0.46, 5.0]}), 'newmec-2'], [({'t2.101.114.242': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.242': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.242': [0.676, 5.0], 't1.101.114.242': [0.424, 6.667]}), 'newmec-1'], [({'t1.103.114.243': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.243': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.243': [0.466, 6.667], 't5.103.114.243': [0.428, 5.0]}), 'newmec-3'], [({'t2.102.114.244': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.244': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.244': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.244': [0.754, 5.0], 't4.102.114.244': [0.629, 10.0], 't1.102.114.244': [0.421, 6.667]}), 'newmec-2'], [({'t5.103.114.245': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.245': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.245': [0.607, 5.0], 't3.103.114.245': [0.524, 5.0]}), 'newmec-3'], [({'t2.156.114.246': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.246': [0.537, 5.0], 't4.156.114.246': [0.415, 10.0]}), 'osboxes-0'], [({'t4.106.114.247': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.247': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.247': [0.626, 10.0], 't2.106.114.247': [0.617, 5.0]}), 'newmec-6'], [({'t1.104.114.248': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.248': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.248': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.248': [0.477, 6.667], 't2.104.114.248': [0.42, 5.0], 't3.104.114.248': [0.496, 5.0]}), 'newmec-4'], [({'t4.103.114.249': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.249': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.249': [0.765, 10.0], 't1.103.114.249': [0.72, 6.667], 't2.103.114.249': [0.436, 5.0]}), 'newmec-3'], [({'t5.101.114.250': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.250': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.250': [0.789, 5.0], 't3.101.114.250': [0.418, 5.0], 't4.101.114.250': [0.697, 10.0]}), 'newmec-1'], [({'t2.104.114.251': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.251': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.251': [0.424, 5.0], 't3.104.114.251': [0.669, 5.0]}), 'newmec-4'], [({'t3.106.114.252': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.252': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.252': [0.464, 5.0], 't1.106.114.252': [0.733, 6.667]}), 'newmec-6'], [({'t5.102.114.253': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.253': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.253': [0.623, 5.0], 't4.102.114.253': [0.779, 10.0]}), 'newmec-2'], [({'t1.104.114.254': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.254': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.254': [0.739, 6.667], 't4.104.114.254': [0.761, 10.0]}), 'newmec-4'], [({'t5.106.114.255': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.255': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.255': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.255': [0.444, 5.0], 't2.106.114.255': [0.663, 5.0], 't1.106.114.255': [0.512, 6.667]}), 'newmec-6'], [({'t2.104.114.256': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.256': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.256': [0.716, 5.0], 't1.104.114.256': [0.755, 6.667]}), 'newmec-4'], [({'t5.103.114.257': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.257': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.257': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.257': [0.407, 5.0], 't2.103.114.257': [0.494, 5.0], 't4.103.114.257': [0.755, 10.0]}), 'newmec-3'], [({'t1.102.114.258': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.258': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.258': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.258': [0.422, 6.667], 't4.102.114.258': [0.788, 10.0], 't5.102.114.258': [0.714, 5.0]}), 'newmec-2'], [({'t1.156.114.259': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.259': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.259': [0.406, 6.667], 't4.156.114.259': [0.577, 10.0], 't5.156.114.259': [0.645, 5.0]}), 'osboxes-0'], [({'t3.103.114.260': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.260': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.260': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.260': [0.798, 5.0], 't1.103.114.260': [0.66, 6.667], 't5.103.114.260': [0.644, 5.0]}), 'newmec-3'], [({'t4.106.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.261': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.261': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.261': [0.571, 10.0], 't3.106.114.261': [0.498, 5.0], 't1.106.114.261': [0.734, 6.667]}), 'newmec-6'], [({'t4.104.114.262': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.262': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.262': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.262': [0.64, 10.0], 't5.104.114.262': [0.402, 5.0], 't1.104.114.262': [0.781, 6.667]}), 'newmec-4'], [({'t3.103.114.263': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.263': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.263': [0.792, 5.0], 't4.103.114.263': [0.703, 10.0]}), 'newmec-3'], [({'t3.103.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.264': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.264': [0.442, 5.0], 't2.103.114.264': [0.748, 5.0]}), 'newmec-3'], [({'t3.101.114.265': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.265': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.265': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.265': [0.566, 5.0], 't5.101.114.265': [0.573, 5.0], 't1.101.114.265': [0.699, 6.667]}), 'newmec-1'], [({'t1.156.114.266': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.266': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.266': [0.724, 6.667], 't5.156.114.266': [0.533, 5.0]}), 'osboxes-0'], [({'t1.105.114.267': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.267': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.267': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.105.114.267': [0.55, 6.667], 't3.105.114.267': [0.753, 5.0], 't4.105.114.267': [0.426, 10.0]}), 'newmec-5'], [({'t3.104.114.268': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.268': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.268': [0.676, 5.0], 't4.104.114.268': [0.635, 10.0], 't5.104.114.268': [0.67, 5.0]}), 'newmec-4'], [({'t4.104.114.269': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.269': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.269': [0.715, 10.0], 't3.104.114.269': [0.564, 5.0]}), 'newmec-4'], [({'t5.102.114.270': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.270': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.270': [0.701, 5.0], 't4.102.114.270': [0.752, 10.0]}), 'newmec-2'], [({'t2.102.114.271': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.271': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.271': [0.719, 5.0], 't4.102.114.271': [0.595, 10.0]}), 'newmec-2'], [({'t2.156.114.272': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.272': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.272': [0.613, 5.0], 't5.156.114.272': [0.641, 5.0]}), 'osboxes-0'], [({'t4.103.114.273': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.273': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.273': [0.602, 10.0], 't1.103.114.273': [0.791, 6.667], 't2.103.114.273': [0.425, 5.0]}), 'newmec-3'], [({'t5.103.114.274': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.274': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.274': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.274': [0.579, 5.0], 't3.103.114.274': [0.646, 5.0], 't4.103.114.274': [0.733, 10.0]}), 'newmec-3'], [({'t1.104.114.275': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.275': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.275': [0.585, 6.667], 't5.104.114.275': [0.58, 5.0]}), 'newmec-4'], [({'t5.102.114.276': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.276': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.276': [0.547, 5.0], 't4.102.114.276': [0.412, 10.0]}), 'newmec-2'], [({'t5.106.114.277': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.277': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.277': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.277': [0.401, 5.0], 't3.106.114.277': [0.63, 5.0], 't1.106.114.277': [0.778, 6.667]}), 'newmec-6'], [({'t5.105.114.278': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.278': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.278': [0.708, 5.0], 't2.105.114.278': [0.684, 5.0]}), 'newmec-5'], [({'t1.102.114.279': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.279': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.279': [0.428, 6.667], 't3.102.114.279': [0.566, 5.0]}), 'newmec-2'], [({'t5.103.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.280': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.280': [0.643, 5.0], 't1.103.114.280': [0.672, 6.667]}), 'newmec-3'], [({'t3.103.114.281': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.281': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.281': [0.502, 5.0], 't2.103.114.281': [0.666, 5.0], 't5.103.114.281': [0.653, 5.0]}), 'newmec-3'], [({'t1.104.114.282': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.282': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.282': [0.556, 6.667], 't2.104.114.282': [0.567, 5.0]}), 'newmec-4'], [({'t4.105.114.283': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.283': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.283': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.283': [0.587, 10.0], 't1.105.114.283': [0.452, 6.667], 't5.105.114.283': [0.465, 5.0]}), 'newmec-5'], [({'t2.101.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.284': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.284': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.284': [0.638, 5.0], 't1.101.114.284': [0.769, 6.667], 't5.101.114.284': [0.59, 5.0]}), 'newmec-1'], [({'t2.105.114.285': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.285': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.285': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.285': [0.777, 5.0], 't5.105.114.285': [0.634, 5.0], 't1.105.114.285': [0.759, 6.667]}), 'newmec-5'], [({'t4.103.114.286': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.286': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.286': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.286': [0.526, 10.0], 't5.103.114.286': [0.663, 5.0], 't3.103.114.286': [0.618, 5.0]}), 'newmec-3'], [({'t1.104.114.287': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.287': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.287': [0.602, 6.667], 't5.104.114.287': [0.405, 5.0]}), 'newmec-4'], [({'t2.102.114.288': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.288': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.288': [0.636, 5.0], 't4.102.114.288': [0.47, 10.0]}), 'newmec-2'], [({'t5.106.114.289': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.289': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.289': [0.408, 5.0], 't1.106.114.289': [0.747, 6.667]}), 'newmec-6'], [({'t4.156.114.290': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.290': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.290': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.290': [0.769, 10.0], 't5.156.114.290': [0.763, 5.0], 't1.156.114.290': [0.649, 6.667]}), 'osboxes-0'], [({'t2.104.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.291': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.291': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.291': [0.497, 5.0], 't4.104.114.291': [0.693, 10.0], 't5.104.114.291': [0.533, 5.0]}), 'newmec-4'], [({'t2.104.114.292': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.292': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.292': [0.526, 5.0], 't4.104.114.292': [0.683, 10.0], 't3.104.114.292': [0.469, 5.0]}), 'newmec-4'], [({'t2.102.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.293': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.293': [0.449, 5.0], 't3.102.114.293': [0.65, 5.0]}), 'newmec-2'], [({'t5.101.114.294': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.294': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.294': [0.777, 5.0], 't4.101.114.294': [0.63, 10.0]}), 'newmec-1'], [({'t1.103.114.295': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.295': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.295': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.295': [0.522, 6.667], 't2.103.114.295': [0.653, 5.0], 't3.103.114.295': [0.698, 5.0]}), 'newmec-3'], [({'t4.103.114.296': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.296': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.296': [0.595, 10.0], 't3.103.114.296': [0.518, 5.0]}), 'newmec-3'], [({'t5.103.114.297': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.297': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.297': [0.672, 5.0], 't2.103.114.297': [0.642, 5.0]}), 'newmec-3'], [({'t5.104.114.298': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.298': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.298': [0.699, 5.0], 't4.104.114.298': [0.434, 10.0]}), 'newmec-4'], [({'t4.104.114.299': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.299': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.299': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.299': [0.455, 10.0], 't1.104.114.299': [0.484, 6.667], 't3.104.114.299': [0.731, 5.0]}), 'newmec-4'], [({'t4.103.114.300': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.300': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.300': [0.438, 10.0], 't3.103.114.300': [0.643, 5.0]}), 'newmec-3'], [({'t1.156.114.301': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.301': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.301': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.301': [0.714, 6.667], 't3.156.114.301': [0.607, 5.0], 't4.156.114.301': [0.734, 10.0]}), 'osboxes-0'], [({'t4.104.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.302': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.302': [0.613, 10.0], 't5.104.114.302': [0.79, 5.0], 't2.104.114.302': [0.705, 5.0]}), 'newmec-4'], [({'t3.105.114.303': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.303': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.303': [0.714, 5.0], 't1.105.114.303': [0.677, 6.667]}), 'newmec-5'], [({'t3.102.114.304': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.304': [0.65, 5.0], 't2.102.114.304': [0.727, 5.0]}), 'newmec-2'], [({'t4.103.114.305': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.305': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.305': [0.425, 10.0], 't1.103.114.305': [0.546, 6.667]}), 'newmec-3'], [({'t2.105.114.306': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.306': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.306': [0.656, 5.0], 't4.105.114.306': [0.45, 10.0]}), 'newmec-5'], [({'t2.104.114.307': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.307': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.307': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.307': [0.434, 5.0], 't5.104.114.307': [0.765, 5.0], 't4.104.114.307': [0.708, 10.0]}), 'newmec-4'], [({'t5.103.114.308': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.308': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.308': [0.722, 5.0], 't3.103.114.308': [0.418, 5.0]}), 'newmec-3'], [({'t4.104.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.309': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.309': [0.55, 10.0], 't1.104.114.309': [0.501, 6.667]}), 'newmec-4'], [({'t3.156.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.310': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.310': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.310': [0.668, 5.0], 't4.156.114.310': [0.602, 10.0], 't1.156.114.310': [0.737, 6.667]}), 'osboxes-0'], [({'t5.102.114.311': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.311': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.311': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.311': [0.773, 5.0], 't2.102.114.311': [0.639, 5.0], 't3.102.114.311': [0.558, 5.0]}), 'newmec-2'], [({'t3.101.114.312': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.312': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.312': [0.441, 5.0], 't2.101.114.312': [0.476, 5.0]}), 'newmec-1'], [({'t4.103.114.313': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.313': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.313': [0.716, 10.0], 't2.103.114.313': [0.425, 5.0]}), 'newmec-3'], [({'t4.106.114.314': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.314': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.314': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.314': [0.685, 10.0], 't5.106.114.314': [0.573, 5.0], 't2.106.114.314': [0.527, 5.0]}), 'newmec-6'], [({'t2.104.114.315': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.315': [0.567, 5.0], 't5.104.114.315': [0.751, 5.0]}), 'newmec-4'], [({'t2.103.114.316': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.316': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.316': [0.768, 5.0], 't1.103.114.316': [0.491, 6.667]}), 'newmec-3'], [({'t4.104.114.317': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.317': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.317': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.317': [0.513, 10.0], 't1.104.114.317': [0.56, 6.667], 't3.104.114.317': [0.467, 5.0]}), 'newmec-4'], [({'t5.101.114.318': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.318': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.318': [0.485, 5.0], 't4.101.114.318': [0.63, 10.0]}), 'newmec-1'], [({'t1.101.114.319': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.319': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.319': [0.566, 6.667], 't2.101.114.319': [0.54, 5.0]}), 'newmec-1'], [({'t5.104.114.320': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.320': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.320': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.320': [0.426, 5.0], 't4.104.114.320': [0.449, 10.0], 't3.104.114.320': [0.513, 5.0]}), 'newmec-4'], [({'t5.104.114.321': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.321': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.321': [0.557, 5.0], 't2.104.114.321': [0.527, 5.0], 't4.104.114.321': [0.493, 10.0]}), 'newmec-4'], [({'t2.102.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.322': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.322': [0.655, 5.0], 't5.102.114.322': [0.439, 5.0]}), 'newmec-2'], [({'t5.103.114.323': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.323': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.323': [0.739, 5.0], 't1.103.114.323': [0.746, 6.667]}), 'newmec-3'], [({'t4.156.114.324': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.324': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.324': [0.72, 10.0], 't3.156.114.324': [0.616, 5.0]}), 'osboxes-0'], [({'t5.104.114.325': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.325': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.325': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.325': [0.583, 5.0], 't2.104.114.325': [0.682, 5.0], 't1.104.114.325': [0.78, 6.667]}), 'newmec-4'], [({'t3.101.114.326': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.326': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.326': [0.752, 5.0], 't2.101.114.326': [0.636, 5.0]}), 'newmec-1'], [({'t4.101.114.327': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.327': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.327': [0.632, 10.0], 't5.101.114.327': [0.401, 5.0]}), 'newmec-1'], [({'t2.104.114.328': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.328': [0.715, 5.0], 't5.104.114.328': [0.784, 5.0], 't4.104.114.328': [0.441, 10.0]}), 'newmec-4'], [({'t4.156.114.329': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.329': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.329': [0.556, 10.0], 't2.156.114.329': [0.467, 5.0]}), 'osboxes-0'], [({'t1.156.114.330': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.330': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.330': [0.517, 6.667], 't5.156.114.330': [0.53, 5.0]}), 'osboxes-0'], [({'t4.104.114.331': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.331': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.331': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.331': [0.52, 10.0], 't5.104.114.331': [0.63, 5.0], 't3.104.114.331': [0.727, 5.0]}), 'newmec-4'], [({'t5.102.114.332': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.332': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.332': [0.436, 5.0], 't2.102.114.332': [0.452, 5.0], 't3.102.114.332': [0.42, 5.0]}), 'newmec-2'], [({'t1.105.114.333': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.333': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.105.114.333': [0.476, 6.667], 't3.105.114.333': [0.69, 5.0]}), 'newmec-5'], [({'t4.104.114.334': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.334': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.334': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.334': [0.604, 10.0], 't2.104.114.334': [0.594, 5.0], 't1.104.114.334': [0.751, 6.667]}), 'newmec-4'], [({'t4.103.114.335': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.335': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.335': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.335': [0.701, 10.0], 't3.103.114.335': [0.48, 5.0], 't1.103.114.335': [0.431, 6.667]}), 'newmec-3'], [({'t1.156.114.336': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.336': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.336': [0.495, 6.667], 't5.156.114.336': [0.521, 5.0]}), 'osboxes-0'], [({'t5.105.114.337': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.337': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.337': [0.611, 5.0], 't4.105.114.337': [0.604, 10.0]}), 'newmec-5'], [({'t4.102.114.338': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.338': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.338': [0.704, 10.0], 't1.102.114.338': [0.726, 6.667]}), 'newmec-2'], [({'t1.105.114.339': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.339': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.105.114.339': [0.582, 6.667], 't4.105.114.339': [0.426, 10.0]}), 'newmec-5'], [({'t2.103.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.340': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.340': [0.74, 5.0], 't1.103.114.340': [0.537, 6.667]}), 'newmec-3'], [({'t4.102.114.341': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.341': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.341': [0.429, 10.0], 't3.102.114.341': [0.782, 5.0]}), 'newmec-2'], [({'t2.106.114.342': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.342': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.342': [0.486, 5.0], 't4.106.114.342': [0.75, 10.0]}), 'newmec-6'], [({'t5.105.114.343': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.343': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.343': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.343': [0.584, 5.0], 't3.105.114.343': [0.792, 5.0], 't4.105.114.343': [0.631, 10.0]}), 'newmec-5'], [({'t5.103.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.344': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.344': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.344': [0.781, 5.0], 't4.103.114.344': [0.497, 10.0], 't2.103.114.344': [0.654, 5.0]}), 'newmec-3'], [({'t4.101.114.345': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.345': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.345': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.345': [0.679, 10.0], 't2.101.114.345': [0.613, 5.0], 't3.101.114.345': [0.507, 5.0]}), 'newmec-1'], [({'t5.102.114.346': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.346': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.346': [0.413, 5.0], 't3.102.114.346': [0.405, 5.0]}), 'newmec-2'], [({'t3.101.114.347': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.347': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.347': [0.491, 5.0], 't2.101.114.347': [0.526, 5.0]}), 'newmec-1'], [({'t3.106.114.348': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.348': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.348': [0.783, 5.0], 't2.106.114.348': [0.644, 5.0], 't5.106.114.348': [0.652, 5.0]}), 'newmec-6'], [({'t2.102.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.349': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.349': [0.471, 5.0], 't4.102.114.349': [0.624, 10.0]}), 'newmec-2'], [({'t4.103.114.350': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.350': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.350': [0.432, 10.0], 't1.103.114.350': [0.533, 6.667]}), 'newmec-3'], [({'t5.105.114.351': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.351': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.351': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.351': [0.65, 5.0], 't1.105.114.351': [0.445, 6.667], 't4.105.114.351': [0.573, 10.0]}), 'newmec-5'], [({'t4.103.114.352': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.352': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.352': [0.437, 10.0], 't2.103.114.352': [0.558, 5.0], 't3.103.114.352': [0.652, 5.0]}), 'newmec-3'], [({'t2.103.114.353': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.353': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.353': [0.755, 5.0], 't3.103.114.353': [0.644, 5.0]}), 'newmec-3'], [({'t3.105.114.354': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.354': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.354': [0.486, 5.0], 't2.105.114.354': [0.424, 5.0]}), 'newmec-5'], [({'t3.106.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.355': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.355': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.106.114.355': [0.63, 5.0], 't5.106.114.355': [0.685, 5.0], 't4.106.114.355': [0.511, 10.0]}), 'newmec-6'], [({'t5.102.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.356': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.356': [0.512, 5.0], 't4.102.114.356': [0.589, 10.0]}), 'newmec-2'], [({'t3.106.114.357': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.357': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.106.114.357': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.357': [0.416, 5.0], 't1.106.114.357': [0.531, 6.667], 't5.106.114.357': [0.544, 5.0]}), 'newmec-6'], [({'t3.106.114.358': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.358': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.358': [0.658, 5.0], 't2.106.114.358': [0.506, 5.0]}), 'newmec-6'], [({'t2.101.114.359': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.359': [0.629, 5.0], 't1.101.114.359': [0.782, 6.667]}), 'newmec-1'], [({'t1.103.114.360': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.360': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.360': [0.759, 6.667], 't5.103.114.360': [0.589, 5.0], 't4.103.114.360': [0.624, 10.0]}), 'newmec-3'], [({'t5.156.114.361': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.361': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.361': [0.761, 5.0], 't3.156.114.361': [0.789, 5.0]}), 'osboxes-0'], [({'t1.105.114.362': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.362': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.105.114.362': [0.604, 6.667], 't4.105.114.362': [0.659, 10.0]}), 'newmec-5'], [({'t5.104.114.363': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.363': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.363': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.363': [0.535, 5.0], 't4.104.114.363': [0.489, 10.0], 't1.104.114.363': [0.716, 6.667]}), 'newmec-4'], [({'t4.156.114.364': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.364': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.364': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.364': [0.744, 10.0], 't5.156.114.364': [0.506, 5.0], 't3.156.114.364': [0.454, 5.0]}), 'osboxes-0'], [({'t4.104.114.365': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.365': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.365': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.365': [0.676, 10.0], 't2.104.114.365': [0.474, 5.0], 't1.104.114.365': [0.705, 6.667]}), 'newmec-4'], [({'t2.106.114.366': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.366': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.366': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.366': [0.692, 5.0], 't3.106.114.366': [0.541, 5.0], 't4.106.114.366': [0.403, 10.0]}), 'newmec-6'], [({'t4.102.114.367': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.367': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.367': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.367': [0.572, 10.0], 't2.102.114.367': [0.483, 5.0], 't5.102.114.367': [0.555, 5.0]}), 'newmec-2'], [({'t2.106.114.368': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.368': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.368': [0.539, 5.0], 't3.106.114.368': [0.529, 5.0]}), 'newmec-6'], [({'t5.106.114.369': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.369': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.369': [0.47, 5.0], 't2.106.114.369': [0.756, 5.0]}), 'newmec-6'], [({'t3.105.114.370': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.370': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.370': [0.568, 5.0], 't2.105.114.370': [0.643, 5.0]}), 'newmec-5'], [({'t2.101.114.371': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.371': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.371': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.371': [0.515, 5.0], 't4.101.114.371': [0.639, 10.0], 't1.101.114.371': [0.4, 6.667]}), 'newmec-1'], [({'t5.103.114.372': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.372': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.372': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.372': [0.445, 5.0], 't4.103.114.372': [0.584, 10.0], 't1.103.114.372': [0.697, 6.667]}), 'newmec-3'], [({'t5.102.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.373': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.373': [0.575, 5.0], 't2.102.114.373': [0.576, 5.0]}), 'newmec-2'], [({'t1.104.114.374': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.374': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.374': [0.41, 6.667], 't5.104.114.374': [0.789, 5.0]}), 'newmec-4'], [({'t5.102.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.375': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.375': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.375': [0.454, 5.0], 't2.102.114.375': [0.473, 5.0], 't4.102.114.375': [0.636, 10.0]}), 'newmec-2'], [({'t4.156.114.376': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.376': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.376': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.376': [0.766, 10.0], 't3.156.114.376': [0.418, 5.0], 't5.156.114.376': [0.787, 5.0]}), 'osboxes-0'], [({'t5.105.114.377': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.377': [0.743, 5.0], 't1.105.114.377': [0.601, 6.667]}), 'newmec-5'], [({'t4.156.114.378': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.378': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.378': [0.571, 10.0], 't3.156.114.378': [0.763, 5.0], 't2.156.114.378': [0.524, 5.0]}), 'osboxes-0'], [({'t5.105.114.379': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.379': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.379': [0.768, 5.0], 't1.105.114.379': [0.572, 6.667], 't2.105.114.379': [0.622, 5.0]}), 'newmec-5'], [({'t3.106.114.380': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.380': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.380': [0.696, 5.0], 't1.106.114.380': [0.751, 6.667]}), 'newmec-6'], [({'t1.101.114.381': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.381': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.381': [0.476, 6.667], 't4.101.114.381': [0.581, 10.0]}), 'newmec-1'], [({'t2.104.114.382': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.382': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.382': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.382': [0.763, 5.0], 't5.104.114.382': [0.609, 5.0], 't3.104.114.382': [0.596, 5.0]}), 'newmec-4'], [({'t4.156.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.383': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.383': [0.438, 10.0], 't1.156.114.383': [0.659, 6.667]}), 'osboxes-0'], [({'t2.103.114.384': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.384': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.384': [0.717, 5.0], 't1.103.114.384': [0.559, 6.667]}), 'newmec-3'], [({'t2.106.114.385': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.385': [0.699, 5.0], 't3.106.114.385': [0.669, 5.0]}), 'newmec-6'], [({'t3.156.114.386': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.386': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.386': [0.492, 5.0], 't5.156.114.386': [0.751, 5.0]}), 'osboxes-0'], [({'t5.105.114.387': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.387': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.387': [0.408, 5.0], 't1.105.114.387': [0.741, 6.667]}), 'newmec-5'], [({'t2.103.114.388': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.388': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.388': [0.601, 5.0], 't1.103.114.388': [0.402, 6.667]}), 'newmec-3'], [({'t3.103.114.389': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.389': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.389': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.389': [0.413, 5.0], 't2.103.114.389': [0.475, 5.0], 't1.103.114.389': [0.414, 6.667]}), 'newmec-3'], [({'t2.105.114.390': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.390': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.390': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.390': [0.64, 5.0], 't4.105.114.390': [0.534, 10.0], 't5.105.114.390': [0.484, 5.0]}), 'newmec-5'], [({'t4.106.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.391': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.391': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.391': [0.677, 10.0], 't2.106.114.391': [0.685, 5.0], 't5.106.114.391': [0.503, 5.0]}), 'newmec-6'], [({'t3.104.114.392': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.392': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.392': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.392': [0.557, 5.0], 't4.104.114.392': [0.508, 10.0], 't1.104.114.392': [0.476, 6.667]}), 'newmec-4'], [({'t4.102.114.393': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.393': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.393': [0.684, 10.0], 't2.102.114.393': [0.454, 5.0]}), 'newmec-2'], [({'t4.105.114.394': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.394': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.394': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.394': [0.739, 10.0], 't5.105.114.394': [0.507, 5.0], 't1.105.114.394': [0.565, 6.667]}), 'newmec-5'], [({'t5.156.114.395': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.395': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.395': [0.471, 5.0], 't4.156.114.395': [0.565, 10.0]}), 'osboxes-0'], [({'t2.156.114.396': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.396': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.396': [0.736, 5.0], 't5.156.114.396': [0.712, 5.0]}), 'osboxes-0'], [({'t4.103.114.397': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.397': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.397': [0.495, 10.0], 't2.103.114.397': [0.553, 5.0]}), 'newmec-3'], [({'t5.104.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.398': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.398': [0.578, 5.0], 't4.104.114.398': [0.654, 10.0]}), 'newmec-4'], [({'t5.106.114.399': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.399': [0.75, 5.0], 't3.106.114.399': [0.519, 5.0]}), 'newmec-6'], [({'t2.105.114.400': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.400': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.400': [0.541, 5.0], 't3.105.114.400': [0.424, 5.0]}), 'newmec-5'], [({'t4.105.114.401': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.401': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.401': [0.595, 10.0], 't2.105.114.401': [0.734, 5.0]}), 'newmec-5'], [({'t2.102.114.402': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.402': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.402': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.402': [0.659, 5.0], 't4.102.114.402': [0.795, 10.0], 't5.102.114.402': [0.65, 5.0]}), 'newmec-2'], [({'t5.156.114.403': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.403': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.403': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.403': [0.454, 5.0], 't2.156.114.403': [0.783, 5.0], 't4.156.114.403': [0.64, 10.0]}), 'osboxes-0'], [({'t2.102.114.404': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.404': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.404': [0.65, 5.0], 't4.102.114.404': [0.663, 10.0]}), 'newmec-2'], [({'t1.104.114.405': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.405': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.405': [0.711, 6.667], 't5.104.114.405': [0.537, 5.0]}), 'newmec-4'], [({'t4.103.114.406': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.406': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.406': [0.506, 10.0], 't5.103.114.406': [0.433, 5.0]}), 'newmec-3'], [({'t3.101.114.407': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.407': [0.558, 5.0], 't5.101.114.407': [0.546, 5.0]}), 'newmec-1'], [({'t1.104.114.408': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.408': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.408': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.408': [0.678, 6.667], 't2.104.114.408': [0.414, 5.0], 't5.104.114.408': [0.645, 5.0]}), 'newmec-4'], [({'t4.106.114.409': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.409': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.409': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.409': [0.778, 10.0], 't2.106.114.409': [0.681, 5.0], 't1.106.114.409': [0.666, 6.667]}), 'newmec-6'], [({'t3.105.114.410': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.410': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.410': [0.582, 5.0], 't1.105.114.410': [0.674, 6.667]}), 'newmec-5'], [({'t5.104.114.411': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.411': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.411': [0.678, 5.0], 't1.104.114.411': [0.551, 6.667]}), 'newmec-4'], [({'t3.106.114.412': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.412': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.412': [0.451, 5.0], 't2.106.114.412': [0.779, 5.0]}), 'newmec-6'], [({'t4.106.114.413': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.413': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.413': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.413': [0.676, 10.0], 't3.106.114.413': [0.417, 5.0], 't2.106.114.413': [0.708, 5.0]}), 'newmec-6'], [({'t5.103.114.414': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.414': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.414': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.414': [0.789, 5.0], 't2.103.114.414': [0.512, 5.0], 't4.103.114.414': [0.783, 10.0]}), 'newmec-3'], [({'t4.103.114.415': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.415': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.415': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.415': [0.744, 10.0], 't3.103.114.415': [0.741, 5.0], 't2.103.114.415': [0.765, 5.0]}), 'newmec-3'], [({'t2.106.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.416': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.416': [0.527, 5.0], 't3.106.114.416': [0.628, 5.0]}), 'newmec-6'], [({'t2.105.114.417': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.417': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.417': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.417': [0.475, 5.0], 't4.105.114.417': [0.758, 10.0], 't3.105.114.417': [0.55, 5.0]}), 'newmec-5'], [({'t3.105.114.418': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.418': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.418': [0.495, 5.0], 't5.105.114.418': [0.614, 5.0]}), 'newmec-5'], [({'t3.102.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.419': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.419': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.419': [0.604, 5.0], 't2.102.114.419': [0.567, 5.0], 't5.102.114.419': [0.612, 5.0]}), 'newmec-2'], [({'t4.106.114.420': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.420': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.106.114.420': [0.625, 10.0], 't3.106.114.420': [0.468, 5.0]}), 'newmec-6'], [({'t1.156.114.421': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.421': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.421': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.421': [0.607, 6.667], 't4.156.114.421': [0.501, 10.0], 't3.156.114.421': [0.467, 5.0]}), 'osboxes-0'], [({'t5.156.114.422': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.422': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.422': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.422': [0.437, 5.0], 't4.156.114.422': [0.493, 10.0], 't2.156.114.422': [0.789, 5.0]}), 'osboxes-0'], [({'t3.101.114.423': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.423': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.423': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.423': [0.455, 5.0], 't4.101.114.423': [0.508, 10.0], 't1.101.114.423': [0.644, 6.667]}), 'newmec-1'], [({'t3.104.114.424': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.424': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.424': [0.659, 5.0], 't5.104.114.424': [0.755, 5.0], 't4.104.114.424': [0.686, 10.0]}), 'newmec-4'], [({'t3.105.114.425': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.425': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.425': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.425': [0.54, 5.0], 't1.105.114.425': [0.621, 6.667], 't5.105.114.425': [0.591, 5.0]}), 'newmec-5'], [({'t5.103.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.426': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.426': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.426': [0.531, 5.0], 't2.103.114.426': [0.54, 5.0], 't1.103.114.426': [0.711, 6.667]}), 'newmec-3'], [({'t3.106.114.427': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.427': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.427': [0.746, 5.0], 't5.106.114.427': [0.422, 5.0]}), 'newmec-6'], [({'t1.105.114.428': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.428': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.428': [0.762, 6.667], 't2.105.114.428': [0.487, 5.0]}), 'newmec-5'], [({'t5.156.114.429': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.429': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.429': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.429': [0.697, 5.0], 't4.156.114.429': [0.558, 10.0], 't3.156.114.429': [0.57, 5.0]}), 'osboxes-0'], [({'t3.104.114.430': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.430': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.430': [0.528, 5.0], 't5.104.114.430': [0.591, 5.0]}), 'newmec-4'], [({'t4.103.114.431': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.431': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.431': [0.444, 10.0], 't1.103.114.431': [0.614, 6.667]}), 'newmec-3'], [({'t5.105.114.432': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.432': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.432': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.432': [0.571, 5.0], 't2.105.114.432': [0.741, 5.0], 't1.105.114.432': [0.775, 6.667]}), 'newmec-5'], [({'t3.103.114.433': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.433': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.433': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.433': [0.609, 5.0], 't1.103.114.433': [0.621, 6.667], 't2.103.114.433': [0.568, 5.0]}), 'newmec-3'], [({'t2.104.114.434': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.434': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.434': [0.421, 5.0], 't3.104.114.434': [0.637, 5.0]}), 'newmec-4'], [({'t4.105.114.435': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.435': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.435': [0.617, 10.0], 't3.105.114.435': [0.78, 5.0]}), 'newmec-5'], [({'t1.103.114.436': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.436': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.436': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.436': [0.569, 6.667], 't2.103.114.436': [0.726, 5.0], 't5.103.114.436': [0.436, 5.0]}), 'newmec-3'], [({'t3.103.114.437': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.437': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.437': [0.538, 5.0], 't1.103.114.437': [0.628, 6.667], 't2.103.114.437': [0.442, 5.0]}), 'newmec-3'], [({'t2.104.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.438': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.438': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.438': [0.505, 5.0], 't5.104.114.438': [0.508, 5.0], 't4.104.114.438': [0.461, 10.0]}), 'newmec-4'], [({'t2.103.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.439': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.439': [0.796, 5.0], 't4.103.114.439': [0.43, 10.0]}), 'newmec-3'], [({'t4.105.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.440': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.440': [0.729, 10.0], 't5.105.114.440': [0.751, 5.0]}), 'newmec-5'], [({'t1.103.114.441': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.441': [0.727, 6.667], 't4.103.114.441': [0.707, 10.0]}), 'newmec-3'], [({'t3.103.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.442': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.442': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.442': [0.495, 5.0], 't1.103.114.442': [0.636, 6.667], 't2.103.114.442': [0.439, 5.0]}), 'newmec-3'], [({'t5.103.114.443': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.443': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.443': [0.578, 5.0], 't4.103.114.443': [0.523, 10.0]}), 'newmec-3'], [({'t3.106.114.444': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.444': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.106.114.444': [0.551, 5.0], 't4.106.114.444': [0.65, 10.0]}), 'newmec-6'], [({'t5.102.114.445': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.445': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.445': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.445': [0.67, 5.0], 't3.102.114.445': [0.713, 5.0], 't2.102.114.445': [0.449, 5.0]}), 'newmec-2'], [({'t4.103.114.446': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.446': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.446': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.446': [0.775, 10.0], 't5.103.114.446': [0.775, 5.0], 't2.103.114.446': [0.523, 5.0]}), 'newmec-3'], [({'t5.103.114.447': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.447': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.447': [0.441, 5.0], 't4.103.114.447': [0.775, 10.0]}), 'newmec-3'], [({'t2.156.114.448': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.448': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.448': [0.642, 5.0], 't5.156.114.448': [0.517, 5.0]}), 'osboxes-0'], [({'t5.101.114.449': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.449': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.449': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.449': [0.564, 5.0], 't2.101.114.449': [0.681, 5.0], 't1.101.114.449': [0.599, 6.667]}), 'newmec-1'], [({'t2.103.114.450': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.450': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.450': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.450': [0.482, 5.0], 't3.103.114.450': [0.764, 5.0], 't1.103.114.450': [0.679, 6.667]}), 'newmec-3'], [({'t3.102.114.451': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.451': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.451': [0.446, 5.0], 't1.102.114.451': [0.658, 6.667]}), 'newmec-2'], [({'t2.102.114.452': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.452': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.452': [0.627, 5.0], 't1.102.114.452': [0.664, 6.667], 't5.102.114.452': [0.639, 5.0]}), 'newmec-2'], [({'t2.105.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.453': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.453': [0.612, 5.0], 't4.105.114.453': [0.681, 10.0]}), 'newmec-5'], [({'t5.102.114.454': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.454': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.454': [0.471, 5.0], 't4.102.114.454': [0.599, 10.0]}), 'newmec-2'], [({'t4.101.114.455': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.455': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.455': [0.558, 10.0], 't3.101.114.455': [0.652, 5.0]}), 'newmec-1'], [({'t4.106.114.456': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.456': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.456': [0.487, 10.0], 't2.106.114.456': [0.412, 5.0]}), 'newmec-6'], [({'t4.103.114.457': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.457': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.457': [0.78, 10.0], 't5.103.114.457': [0.658, 5.0], 't2.103.114.457': [0.661, 5.0]}), 'newmec-3'], [({'t4.105.114.458': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.458': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.458': [0.523, 10.0], 't3.105.114.458': [0.633, 5.0]}), 'newmec-5'], [({'t3.101.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.459': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.459': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.459': [0.409, 5.0], 't4.101.114.459': [0.639, 10.0], 't1.101.114.459': [0.64, 6.667]}), 'newmec-1'], [({'t4.105.114.460': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.460': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.460': [0.422, 10.0], 't2.105.114.460': [0.7, 5.0]}), 'newmec-5'], [({'t5.101.114.461': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.461': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.461': [0.64, 5.0], 't4.101.114.461': [0.71, 10.0], 't3.101.114.461': [0.692, 5.0]}), 'newmec-1'], [({'t5.106.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.462': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.462': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.462': [0.496, 5.0], 't4.106.114.462': [0.53, 10.0], 't3.106.114.462': [0.722, 5.0]}), 'newmec-6'], [({'t4.156.114.463': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.463': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.463': [0.736, 10.0], 't5.156.114.463': [0.401, 5.0], 't2.156.114.463': [0.42, 5.0]}), 'osboxes-0'], [({'t5.105.114.464': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.464': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.464': [0.463, 5.0], 't4.105.114.464': [0.682, 10.0]}), 'newmec-5'], [({'t2.104.114.465': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.465': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.465': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.465': [0.528, 5.0], 't4.104.114.465': [0.541, 10.0], 't5.104.114.465': [0.504, 5.0]}), 'newmec-4'], [({'t2.156.114.466': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.466': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.466': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.466': [0.453, 5.0], 't5.156.114.466': [0.454, 5.0], 't3.156.114.466': [0.439, 5.0]}), 'osboxes-0'], [({'t2.103.114.467': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.467': [0.705, 5.0], 't3.103.114.467': [0.772, 5.0]}), 'newmec-3'], [({'t4.106.114.468': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.468': [0.578, 10.0], 't3.106.114.468': [0.424, 5.0], 't2.106.114.468': [0.681, 5.0]}), 'newmec-6'], [({'t2.101.114.469': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.469': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.469': [0.585, 5.0], 't5.101.114.469': [0.653, 5.0], 't3.101.114.469': [0.721, 5.0]}), 'newmec-1'], [({'t2.103.114.470': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.470': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.470': [0.462, 5.0], 't4.103.114.470': [0.66, 10.0], 't5.103.114.470': [0.658, 5.0]}), 'newmec-3'], [({'t4.106.114.471': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.471': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.471': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.471': [0.715, 10.0], 't2.106.114.471': [0.548, 5.0], 't5.106.114.471': [0.665, 5.0]}), 'newmec-6'], [({'t1.103.114.472': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.472': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.472': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.472': [0.689, 6.667], 't4.103.114.472': [0.599, 10.0], 't2.103.114.472': [0.616, 5.0]}), 'newmec-3'], [({'t3.104.114.473': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.473': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.473': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.473': [0.712, 5.0], 't2.104.114.473': [0.523, 5.0], 't4.104.114.473': [0.728, 10.0]}), 'newmec-4'], [({'t4.104.114.474': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.474': [0.713, 10.0], 't5.104.114.474': [0.637, 5.0]}), 'newmec-4'], [({'t2.102.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.475': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.475': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.475': [0.623, 5.0], 't4.102.114.475': [0.643, 10.0], 't5.102.114.475': [0.604, 5.0]}), 'newmec-2'], [({'t3.103.114.476': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.476': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.476': [0.48, 5.0], 't1.103.114.476': [0.731, 6.667]}), 'newmec-3'], [({'t4.103.114.477': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.477': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.477': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.477': [0.715, 10.0], 't1.103.114.477': [0.504, 6.667], 't2.103.114.477': [0.533, 5.0]}), 'newmec-3'], [({'t4.104.114.478': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.478': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.478': [0.788, 10.0], 't3.104.114.478': [0.424, 5.0]}), 'newmec-4'], [({'t2.101.114.479': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.479': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.479': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.479': [0.691, 5.0], 't4.101.114.479': [0.789, 10.0], 't5.101.114.479': [0.767, 5.0]}), 'newmec-1'], [({'t1.102.114.480': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.480': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.480': [0.74, 6.667], 't3.102.114.480': [0.634, 5.0]}), 'newmec-2'], [({'t5.106.114.481': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.481': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.481': [0.479, 5.0], 't3.106.114.481': [0.561, 5.0]}), 'newmec-6'], [({'t5.103.114.482': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.482': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.482': [0.634, 5.0], 't4.103.114.482': [0.572, 10.0]}), 'newmec-3'], [({'t1.156.114.483': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.483': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.483': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.483': [0.514, 6.667], 't2.156.114.483': [0.752, 5.0], 't3.156.114.483': [0.583, 5.0]}), 'osboxes-0'], [({'t2.103.114.484': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.484': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.484': [0.697, 5.0], 't4.103.114.484': [0.607, 10.0]}), 'newmec-3'], [({'t2.103.114.485': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.485': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.485': [0.485, 5.0], 't1.103.114.485': [0.751, 6.667]}), 'newmec-3'], [({'t3.106.114.486': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.486': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.486': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.486': [0.47, 5.0], 't4.106.114.486': [0.654, 10.0], 't2.106.114.486': [0.418, 5.0]}), 'newmec-6'], [({'t2.105.114.487': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.487': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.487': [0.623, 5.0], 't1.105.114.487': [0.46, 6.667], 't4.105.114.487': [0.678, 10.0]}), 'newmec-5'], [({'t2.103.114.488': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.488': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.488': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.488': [0.67, 5.0], 't5.103.114.488': [0.454, 5.0], 't4.103.114.488': [0.623, 10.0]}), 'newmec-3'], [({'t2.156.114.489': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.489': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.489': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.489': [0.468, 5.0], 't4.156.114.489': [0.623, 10.0], 't5.156.114.489': [0.484, 5.0]}), 'osboxes-0'], [({'t3.103.114.490': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.490': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.490': [0.606, 5.0], 't5.103.114.490': [0.418, 5.0], 't4.103.114.490': [0.642, 10.0]}), 'newmec-3'], [({'t5.102.114.491': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.491': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.491': [0.513, 5.0], 't1.102.114.491': [0.657, 6.667]}), 'newmec-2'], [({'t2.104.114.492': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.492': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.492': [0.691, 5.0], 't5.104.114.492': [0.405, 5.0]}), 'newmec-4'], [({'t2.104.114.493': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.493': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.493': [0.563, 5.0], 't3.104.114.493': [0.562, 5.0]}), 'newmec-4'], [({'t4.106.114.494': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.494': [0.711, 10.0], 't2.106.114.494': [0.581, 5.0]}), 'newmec-6'], [({'t2.103.114.495': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.495': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.495': [0.708, 5.0], 't5.103.114.495': [0.7, 5.0]}), 'newmec-3'], [({'t4.101.114.496': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.496': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.496': [0.75, 10.0], 't2.101.114.496': [0.701, 5.0]}), 'newmec-1'], [({'t3.105.114.497': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.497': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.497': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.497': [0.609, 5.0], 't2.105.114.497': [0.493, 5.0], 't5.105.114.497': [0.451, 5.0]}), 'newmec-5'], [({'t4.103.114.498': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.498': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.498': [0.782, 10.0], 't3.103.114.498': [0.762, 5.0]}), 'newmec-3'], [({'t3.105.114.499': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.499': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.499': [0.65, 5.0], 't4.105.114.499': [0.705, 10.0]}), 'newmec-5'], [({'t3.103.114.500': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.500': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.500': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.500': [0.599, 5.0], 't1.103.114.500': [0.727, 6.667], 't5.103.114.500': [0.579, 5.0]}), 'newmec-3'], [({'t5.103.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.501': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.501': [0.607, 5.0], 't1.103.114.501': [0.758, 6.667]}), 'newmec-3'], [({'t3.105.114.502': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.502': [0.68, 5.0], 't2.105.114.502': [0.789, 5.0]}), 'newmec-5'], [({'t3.103.114.503': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.503': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.503': [0.548, 5.0], 't1.103.114.503': [0.665, 6.667]}), 'newmec-3'], [({'t4.103.114.504': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.504': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.504': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.504': [0.611, 10.0], 't3.103.114.504': [0.721, 5.0], 't2.103.114.504': [0.794, 5.0]}), 'newmec-3'], [({'t1.156.114.505': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.505': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.505': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.505': [0.673, 6.667], 't4.156.114.505': [0.559, 10.0], 't5.156.114.505': [0.732, 5.0]}), 'osboxes-0'], [({'t1.105.114.506': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.506': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.105.114.506': [0.716, 6.667], 't5.105.114.506': [0.69, 5.0]}), 'newmec-5'], [({'t2.101.114.507': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.507': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.507': [0.674, 5.0], 't4.101.114.507': [0.73, 10.0], 't5.101.114.507': [0.521, 5.0]}), 'newmec-1'], [({'t1.102.114.508': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.508': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.508': [0.768, 6.667], 't2.102.114.508': [0.424, 5.0], 't3.102.114.508': [0.609, 5.0]}), 'newmec-2'], [({'t4.105.114.509': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.509': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.509': [0.491, 10.0], 't2.105.114.509': [0.56, 5.0]}), 'newmec-5'], [({'t2.102.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.510': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.510': [0.489, 5.0], 't3.102.114.510': [0.691, 5.0]}), 'newmec-2'], [({'t2.106.114.511': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.511': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.511': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.511': [0.544, 5.0], 't5.106.114.511': [0.715, 5.0], 't4.106.114.511': [0.635, 10.0]}), 'newmec-6'], [({'t4.105.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.512': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.512': [0.622, 10.0], 't2.105.114.512': [0.615, 5.0], 't1.105.114.512': [0.443, 6.667]}), 'newmec-5'], [({'t5.102.114.513': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.513': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.513': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.513': [0.495, 5.0], 't3.102.114.513': [0.765, 5.0], 't2.102.114.513': [0.478, 5.0]}), 'newmec-2'], [({'t4.105.114.514': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.514': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.514': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.514': [0.642, 10.0], 't2.105.114.514': [0.705, 5.0], 't1.105.114.514': [0.464, 6.667]}), 'newmec-5'], [({'t1.156.114.515': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.515': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.515': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.515': [0.578, 6.667], 't5.156.114.515': [0.647, 5.0], 't2.156.114.515': [0.652, 5.0]}), 'osboxes-0'], [({'t1.104.114.516': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.516': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.516': [0.653, 6.667], 't2.104.114.516': [0.553, 5.0], 't5.104.114.516': [0.746, 5.0]}), 'newmec-4'], [({'t5.103.114.517': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.517': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.517': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.517': [0.472, 5.0], 't1.103.114.517': [0.72, 6.667], 't3.103.114.517': [0.559, 5.0]}), 'newmec-3'], [({'t4.106.114.518': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.518': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.518': [0.6, 10.0], 't2.106.114.518': [0.786, 5.0], 't1.106.114.518': [0.781, 6.667]}), 'newmec-6'], [({'t2.103.114.519': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.519': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.519': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.519': [0.798, 5.0], 't4.103.114.519': [0.659, 10.0], 't1.103.114.519': [0.676, 6.667]}), 'newmec-3'], [({'t4.103.114.520': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.520': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.520': [0.585, 10.0], 't5.103.114.520': [0.574, 5.0]}), 'newmec-3'], [({'t3.103.114.521': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.521': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.521': [0.685, 5.0], 't4.103.114.521': [0.679, 10.0]}), 'newmec-3'], [({'t4.104.114.522': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.522': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.522': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.522': [0.542, 10.0], 't5.104.114.522': [0.422, 5.0], 't2.104.114.522': [0.406, 5.0]}), 'newmec-4'], [({'t3.106.114.523': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.523': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.523': [0.405, 5.0], 't1.106.114.523': [0.461, 6.667]}), 'newmec-6'], [({'t5.102.114.524': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.524': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.524': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.524': [0.714, 5.0], 't3.102.114.524': [0.465, 5.0], 't4.102.114.524': [0.441, 10.0]}), 'newmec-2'], [({'t3.105.114.525': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.525': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.525': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.525': [0.6, 5.0], 't4.105.114.525': [0.738, 10.0], 't2.105.114.525': [0.547, 5.0]}), 'newmec-5'], [({'t3.106.114.526': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.526': [0.712, 5.0], 't2.106.114.526': [0.426, 5.0]}), 'newmec-6'], [({'t4.103.114.527': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.527': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.527': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.527': [0.464, 10.0], 't2.103.114.527': [0.701, 5.0], 't3.103.114.527': [0.693, 5.0]}), 'newmec-3'], [({'t4.101.114.528': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.528': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.528': [0.569, 10.0], 't2.101.114.528': [0.565, 5.0]}), 'newmec-1'], [({'t3.101.114.529': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.529': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.529': [0.758, 5.0], 't4.101.114.529': [0.464, 10.0]}), 'newmec-1'], [({'t4.103.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.530': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.530': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.530': [0.719, 10.0], 't5.103.114.530': [0.751, 5.0], 't3.103.114.530': [0.506, 5.0]}), 'newmec-3'], [({'t4.105.114.531': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.531': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.531': [0.726, 10.0], 't2.105.114.531': [0.598, 5.0]}), 'newmec-5'], [({'t2.103.114.532': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.532': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.532': [0.752, 5.0], 't3.103.114.532': [0.435, 5.0], 't4.103.114.532': [0.438, 10.0]}), 'newmec-3'], [({'t3.101.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.533': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.533': [0.604, 5.0], 't4.101.114.533': [0.617, 10.0]}), 'newmec-1'], [({'t3.104.114.534': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.534': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.534': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.534': [0.743, 5.0], 't4.104.114.534': [0.685, 10.0], 't5.104.114.534': [0.481, 5.0]}), 'newmec-4'], [({'t4.101.114.535': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.535': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.535': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.535': [0.502, 10.0], 't3.101.114.535': [0.766, 5.0], 't1.101.114.535': [0.724, 6.667]}), 'newmec-1'], [({'t1.103.114.536': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.536': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.536': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.536': [0.438, 6.667], 't2.103.114.536': [0.653, 5.0], 't4.103.114.536': [0.704, 10.0]}), 'newmec-3'], [({'t2.101.114.537': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.537': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.537': [0.746, 5.0], 't5.101.114.537': [0.636, 5.0]}), 'newmec-1'], [({'t5.156.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.538': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.538': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.538': [0.416, 5.0], 't4.156.114.538': [0.712, 10.0], 't3.156.114.538': [0.475, 5.0]}), 'osboxes-0'], [({'t5.104.114.539': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.539': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.539': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.539': [0.476, 5.0], 't4.104.114.539': [0.781, 10.0], 't1.104.114.539': [0.605, 6.667]}), 'newmec-4'], [({'t3.105.114.540': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.540': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.540': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.540': [0.736, 5.0], 't1.105.114.540': [0.741, 6.667], 't2.105.114.540': [0.776, 5.0]}), 'newmec-5'], [({'t5.103.114.541': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.541': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.541': [0.429, 5.0], 't4.103.114.541': [0.585, 10.0]}), 'newmec-3'], [({'t4.106.114.542': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.542': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.542': [0.701, 10.0], 't3.106.114.542': [0.553, 5.0], 't2.106.114.542': [0.473, 5.0]}), 'newmec-6'], [({'t3.156.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.543': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.543': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.543': [0.748, 5.0], 't1.156.114.543': [0.559, 6.667], 't4.156.114.543': [0.531, 10.0]}), 'osboxes-0'], [({'t5.103.114.544': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.544': [0.64, 5.0], 't4.103.114.544': [0.601, 10.0]}), 'newmec-3'], [({'t4.103.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.545': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.545': [0.712, 10.0], 't2.103.114.545': [0.523, 5.0]}), 'newmec-3'], [({'t2.106.114.546': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.546': [0.423, 5.0], 't4.106.114.546': [0.418, 10.0]}), 'newmec-6'], [({'t2.102.114.547': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.547': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.547': [0.676, 5.0], 't1.102.114.547': [0.731, 6.667]}), 'newmec-2'], [({'t2.156.114.548': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.548': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.548': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.548': [0.62, 5.0], 't1.156.114.548': [0.484, 6.667], 't5.156.114.548': [0.696, 5.0]}), 'osboxes-0'], [({'t2.106.114.549': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.106.114.549': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.549': [0.736, 5.0], 't1.106.114.549': [0.648, 6.667], 't3.106.114.549': [0.628, 5.0]}), 'newmec-6'], [({'t2.102.114.550': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.550': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.550': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.550': [0.605, 5.0], 't1.102.114.550': [0.53, 6.667], 't5.102.114.550': [0.506, 5.0]}), 'newmec-2'], [({'t2.105.114.551': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.551': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.551': [0.726, 5.0], 't5.105.114.551': [0.663, 5.0], 't1.105.114.551': [0.734, 6.667]}), 'newmec-5'], [({'t5.102.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.552': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.552': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.552': [0.427, 5.0], 't4.102.114.552': [0.644, 10.0], 't2.102.114.552': [0.597, 5.0]}), 'newmec-2'], [({'t1.156.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.553': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.553': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.553': [0.564, 6.667], 't5.156.114.553': [0.643, 5.0], 't2.156.114.553': [0.435, 5.0]}), 'osboxes-0'], [({'t2.156.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.554': [0.7, 5.0], 't3.156.114.554': [0.498, 5.0]}), 'osboxes-0'], [({'t4.103.114.555': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.555': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.555': [0.416, 10.0], 't3.103.114.555': [0.433, 5.0]}), 'newmec-3'], [({'t2.104.114.556': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.556': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.556': [0.58, 5.0], 't5.104.114.556': [0.5, 5.0]}), 'newmec-4'], [({'t2.105.114.557': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.557': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.557': [0.605, 5.0], 't1.105.114.557': [0.458, 6.667]}), 'newmec-5'], [({'t1.104.114.558': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.558': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.558': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.558': [0.768, 6.667], 't5.104.114.558': [0.57, 5.0], 't3.104.114.558': [0.69, 5.0]}), 'newmec-4'], [({'t3.106.114.559': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.106.114.559': [0.565, 5.0], 't4.106.114.559': [0.446, 10.0]}), 'newmec-6'], [({'t4.104.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.560': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.560': [0.52, 10.0], 't1.104.114.560': [0.566, 6.667]}), 'newmec-4'], [({'t5.103.114.561': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.561': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.561': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.561': [0.78, 5.0], 't2.103.114.561': [0.634, 5.0], 't3.103.114.561': [0.523, 5.0]}), 'newmec-3'], [({'t4.105.114.562': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.562': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.562': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.562': [0.427, 10.0], 't2.105.114.562': [0.433, 5.0], 't1.105.114.562': [0.534, 6.667]}), 'newmec-5'], [({'t4.156.114.563': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.563': [0.739, 10.0], 't3.156.114.563': [0.44, 5.0]}), 'osboxes-0'], [({'t2.156.114.564': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.564': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.564': [0.632, 5.0], 't4.156.114.564': [0.551, 10.0]}), 'osboxes-0'], [({'t3.104.114.565': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.565': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.565': [0.764, 5.0], 't4.104.114.565': [0.652, 10.0]}), 'newmec-4'], [({'t4.103.114.566': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.566': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.566': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.566': [0.711, 10.0], 't2.103.114.566': [0.415, 5.0], 't1.103.114.566': [0.7, 6.667]}), 'newmec-3'], [({'t2.101.114.567': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.567': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.567': [0.488, 5.0], 't4.101.114.567': [0.533, 10.0]}), 'newmec-1'], [({'t3.103.114.568': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.568': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.568': [0.482, 5.0], 't5.103.114.568': [0.427, 5.0], 't2.103.114.568': [0.519, 5.0]}), 'newmec-3'], [({'t3.104.114.569': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.569': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.569': [0.588, 5.0], 't2.104.114.569': [0.44, 5.0], 't4.104.114.569': [0.56, 10.0]}), 'newmec-4'], [({'t4.106.114.570': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.570': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.570': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.570': [0.643, 10.0], 't2.106.114.570': [0.695, 5.0], 't1.106.114.570': [0.76, 6.667]}), 'newmec-6'], [({'t3.101.114.571': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.571': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.571': [0.548, 5.0], 't2.101.114.571': [0.77, 5.0]}), 'newmec-1'], [({'t4.105.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.572': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.572': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.572': [0.678, 10.0], 't1.105.114.572': [0.641, 6.667], 't3.105.114.572': [0.453, 5.0]}), 'newmec-5'], [({'t2.106.114.573': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.573': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.106.114.573': [0.644, 5.0], 't5.106.114.573': [0.628, 5.0]}), 'newmec-6'], [({'t4.105.114.574': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.574': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.574': [0.438, 10.0], 't5.105.114.574': [0.554, 5.0]}), 'newmec-5'], [({'t2.106.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.575': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.575': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.575': [0.778, 5.0], 't3.106.114.575': [0.744, 5.0], 't4.106.114.575': [0.51, 10.0]}), 'newmec-6'], [({'t2.156.114.576': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.576': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.576': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.576': [0.669, 5.0], 't5.156.114.576': [0.442, 5.0], 't1.156.114.576': [0.55, 6.667]}), 'osboxes-0'], [({'t5.104.114.577': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.577': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.577': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.577': [0.793, 5.0], 't2.104.114.577': [0.428, 5.0], 't3.104.114.577': [0.712, 5.0]}), 'newmec-4'], [({'t2.103.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.578': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.578': [0.475, 5.0], 't4.103.114.578': [0.485, 10.0]}), 'newmec-3'], [({'t5.102.114.579': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.579': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.579': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.579': [0.488, 5.0], 't3.102.114.579': [0.628, 5.0], 't2.102.114.579': [0.751, 5.0]}), 'newmec-2'], [({'t5.103.114.580': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.580': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.580': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.580': [0.745, 5.0], 't4.103.114.580': [0.554, 10.0], 't2.103.114.580': [0.638, 5.0]}), 'newmec-3'], [({'t3.156.114.581': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.581': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.581': [0.573, 5.0], 't2.156.114.581': [0.783, 5.0]}), 'osboxes-0'], [({'t5.105.114.582': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.582': [0.491, 5.0], 't3.105.114.582': [0.777, 5.0]}), 'newmec-5'], [({'t5.104.114.583': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.583': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.583': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.583': [0.712, 5.0], 't4.104.114.583': [0.664, 10.0], 't2.104.114.583': [0.47, 5.0]}), 'newmec-4'], [({'t2.104.114.584': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.584': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.584': [0.754, 5.0], 't4.104.114.584': [0.414, 10.0], 't5.104.114.584': [0.442, 5.0]}), 'newmec-4'], [({'t3.106.114.585': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.585': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.585': [0.708, 5.0], 't5.106.114.585': [0.671, 5.0], 't2.106.114.585': [0.476, 5.0]}), 'newmec-6'], [({'t5.102.114.586': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.586': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.586': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.586': [0.768, 5.0], 't2.102.114.586': [0.582, 5.0], 't3.102.114.586': [0.496, 5.0]}), 'newmec-2'], [({'t2.103.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.587': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.587': [0.476, 5.0], 't4.103.114.587': [0.534, 10.0]}), 'newmec-3'], [({'t4.101.114.588': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.588': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.588': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.588': [0.575, 10.0], 't5.101.114.588': [0.687, 5.0], 't1.101.114.588': [0.437, 6.667]}), 'newmec-1'], [({'t2.106.114.589': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.589': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.589': [0.795, 5.0], 't3.106.114.589': [0.552, 5.0]}), 'newmec-6'], [({'t3.102.114.590': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.590': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.590': [0.466, 5.0], 't4.102.114.590': [0.794, 10.0]}), 'newmec-2'], [({'t4.105.114.591': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.591': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.591': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.591': [0.624, 10.0], 't5.105.114.591': [0.729, 5.0], 't2.105.114.591': [0.628, 5.0]}), 'newmec-5'], [({'t4.104.114.592': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.592': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.592': [0.78, 10.0], 't2.104.114.592': [0.778, 5.0]}), 'newmec-4'], [({'t2.106.114.593': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.593': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.593': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.593': [0.602, 5.0], 't5.106.114.593': [0.548, 5.0], 't3.106.114.593': [0.499, 5.0]}), 'newmec-6'], [({'t1.102.114.594': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.594': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.594': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.594': [0.617, 6.667], 't5.102.114.594': [0.742, 5.0], 't2.102.114.594': [0.717, 5.0]}), 'newmec-2'], [({'t2.104.114.595': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.595': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.595': [0.422, 5.0], 't1.104.114.595': [0.645, 6.667]}), 'newmec-4'], [({'t1.103.114.596': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.596': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.596': [0.577, 6.667], 't4.103.114.596': [0.401, 10.0]}), 'newmec-3'], [({'t2.103.114.597': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.597': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.597': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.597': [0.798, 5.0], 't5.103.114.597': [0.497, 5.0], 't3.103.114.597': [0.553, 5.0]}), 'newmec-3'], [({'t3.103.114.598': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.598': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.598': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.598': [0.496, 5.0], 't1.103.114.598': [0.483, 6.667], 't2.103.114.598': [0.766, 5.0]}), 'newmec-3'], [({'t3.106.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.599': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.599': [0.571, 5.0], 't4.106.114.599': [0.647, 10.0], 't1.106.114.599': [0.467, 6.667]}), 'newmec-6']]
host_names7 = {'192.168.122.102': 'newmec-2', '192.168.122.103': 'newmec-3', '192.168.122.104': 'newmec-4', '192.168.122.105': 'newmec-5', '192.168.122.106': 'newmec-6', '192.168.122.156': 'osboxes-0', '192.168.122.101': 'newmec-1'}
|
class MemberStore:
"""docstring for MemberStore"""
members = []
last_id = 1
def get_all(self):
return MemberStore.members
def add(self, member):
member.id = MemberStore.last_id
self.members.append(member)
MemberStore.last_id += 1
def get_by_id(self, id):
all_mem = self.get_all()
res = None
for member in all_mem :
if member.id == id:
res = member
break
return res
def entity_exists(self, member):
res = True
if self.get_by_id(member.id) is None:
res = False
return res
def delete(self, id):
member = self.get_by_id(id)
MemberStore.members.remove(member)
def update(self, member):
all_mem = self.get_all()
for i, me in enumerate(all_mem):
if member.id == me.id:
all_mem[i] = member
break
class PostStore:
"""docstring for PostStore"""
postsS = []
last_id = 1
def get_all(self):
return PostStore.postsS
def add(self, post):
post.id = PostStore.last_id
PostStore.postsS.append(post)
PostStore.last_id += 1
def get_by_id(self, id):
all_pos = self.get_all()
res = None
for post in all_pos:
if post.id == id :
res = post
break
return res
def entity_exists(self, post):
res = True
if self.get_by_id(post.id) is None :
res = False
return res
def delete(self, id):
post = self.get_by_id(id)
PostStore.postsS.remove(post)
|
# Initialize step_end
step_end = 10
# Loop for step_end steps
for step in range(step_end):
# Compute value of t
t = step * dt
# Compute value of i at this time step
i = i_mean * (1 + np.sin((t * 2 * np.pi) / 0.01))
# Print value of t and i
print(f'{t:.3f} {i:.4e}') |
"""
##########################################
## Developed By:Mustafa Raad Mutashar ##
## mustafa.raad.7@gmail.com 2020 ##
##########################################
"""
|
# OpenWeatherMap API Key
weather_api_key = "229c3f533e63b8b69792de2ba65d3645"
# Google API Key
g_key = "AIzaSyCv1BWR1Jm0cxoY8oqWxYHWU2g6Aq91SvE"
|
n1 = float(input('Primeira reta: '))
n2 = float(input('Segunda reta: '))
n3 = float(input('Terceira reta: '))
if n1 < n2 + n3 and n2 < n1 + n3 and n3 < n1 + n2:
print('Sim, é possivel fazer um triângulo com essas três retas!')
else:
print('Não é possivel fazer um triângulo com essas três retas: ')
|
# get stem leaf plot in dictionary
def stemleaf(data):
stem_leaf = {}
for x in data:
x_str = str(x)
if (len(x_str) == 1):
x_str = "0" + x_str
stem = int(x_str[:-1])
leaf = int(x_str[-1])
if (stem not in stem_leaf):
stem_leaf[stem] = [leaf]
else:
stem_leaf[stem] = stem_leaf[stem] + [leaf]
return stem_leaf
|
"""
A small set of functions for math operations
"""
# Write a function named add that adds two values
def add(A, B):
"""
Just writing this comment because it will pop up when asked for help
"""
C=A+B
return C
def mult(A,B):
"""
A*B
"""
return A*B
def div(A,B):
"""
A/B
"""
return A/B
def exp(A,B):
"""
A^B
"""
return A**B
|
f1 = 'bully_and_attack_mode'
f2 = 'happy_child_mode'
f3 = 'punishing_parent_mode'
f4 = 'vulnerable_child_mode'
f5 = 'demanding_parent_mode'
f6 = 'compliand_surrender_mode'
f7 = 'self_aggrandizer_mode'
f8 = 'impulsive_child_mode'
f9 = 'undiscilined_child_mode'
f10 = 'engraed_child_mode'
f11 = 'healthyy_adult_mode'
f12 = 'angry_child_mode'
f13 = 'detached_protoctor_mode'
f14 = 'detached_self_soother_mode'
factors_names = (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14)
factors = {
1 :(f1,)
, 2 :(f2,)
, 3 :(f3,)
, 4 :(f4,)
, 5 :(f3,)
, 6 :(f4,)
, 7:(f5,)
, 8 :(f6,)
, 9 :(f3,)
, 10 :(f7,)
, 11 :(f7,)
, 12 :(f8,)
, 13 :(f9,)
, 14 :(f10,)
, 15 :(f8,)
, 16 :(f2 , f3,)
#, 17 :('',)###
, 18 :(f6,)
, 19 :(f2,)
, 20 :(f11,)
, 21 :(f9,)
, 22 :(f12,)
, 23 :(f5,)
, 24 :(f1,)
, 25 :(f10 ,)
, 26 :(f10 ,)
, 27 :(f7 ,)
, 28:(f13,)
, 29 :(f11,)
, 30 :(f9,)
, 31 :(f7,)
, 32 :(f1,)
, 33 :(f13,)
, 34 :(f13,)
, 35 :(f8,)
, 36 :(f4,)
, 37 :(f6,)
, 38 :(f6,)
, 39 :(f13,)
, 40 :(f8,)
, 41 :(f14,)
, 42 :(f12,)
, 43 :(f13,)
, 44 :( f7,)
, 45 :(f5 ,)
, 46 :(f10,)
, 47:(f12,)
, 48 :(f2,)
, 49 :(f12,)
, 50 :(f4,)
, 51 :(f5,)
, 52 :(f14,)
, 53 :(f1,)
, 54 :(f10,)
, 55 :(f6,)
, 56 :(f12,)
, 57 :(f14,)
, 58 :(f3,)
, 59 :(f13,)
, 60 :(f10 ,)
, 61 :(f8 , f2 )#
, 62 :(f11 ,)
, 63 :(f12 ,)
, 64 :(f13 ,)
, 65 :(f9 ,)
#, 66 :('' ,)
, 67 :(f4 ,)
, 68:(f2 ,)
, 69 :(f8,)
, 70 :(f9,)
, 71 :(f4,)
, 72 :(f3,)
, 73 :(f11,)
, 74 :(f7,)
, 75 :(f13,)
, 76 :(f12,)
, 77 :(f1,)
, 78 :(f8,)
, 79 :(f12,)
, 80 :(f11,)
, 81 :(f7,)
, 82 :(f5,)
, 83 :(f5,)
, 84 :( f3,)
, 85 :(f11,)
, 86 :(f14,)
, 87:(f3,)
, 88 :(f13,)
, 89 :(f7,)
, 90 :(f5,)
, 91 :(f7,)
, 92 :(f10,)
, 93 :(f1,)
, 94 :(f3,)
, 95 :(f2,)
, 96 :(f2,)
, 97 :(f8,)
, 98 :(f10 ,)
, 99 :(f1,)
, 100 :(f6 ,)
, 101 :(f10,)
, 102 :(f1,)
, 103 :(f12,)
, 104 :(f5,)
, 105 :(f4,)
#, 106 :('',)
, 107 :(f9,)
, 108:(f6,)
, 109 :(f12,)
, 110 :(f8,)
, 111 :(f4,)
, 112 :(f1,)
, 113 :(f2,)
, 114 :(f7,)
, 115 :(f5,)
, 116 :(f5,)
, 117 :(f11,)
, 118 :(f3,)
, 119 :(f4,)
, 120 :(f11,)
, 121 :(f11,)
, 122 :(f2,)
, 123 :(f10,)
, 124 :(f11,)
} |
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'target_defaults': {
'variables': {
'chromium_code': 1,
'enable_wexit_time_destructors': 1,
},
'include_dirs': [
'<(DEPTH)',
# To allow including "version.h"
'<(SHARED_INTERMEDIATE_DIR)',
],
'defines' : [
'COMPILE_CONTENT_STATICALLY',
'SECURITY_WIN32',
'STRICT',
'_ATL_APARTMENT_THREADED',
'_ATL_CSTRING_EXPLICIT_CONSTRUCTORS',
'_ATL_NO_COM_SUPPORT',
'_ATL_NO_AUTOMATIC_NAMESPACE',
'_ATL_NO_EXCEPTIONS',
],
},
'targets': [
{
# GN version: //cloud_print/service/win:cloud_print_service
'target_name': 'cloud_print_service',
'type': 'executable',
'sources': [
'<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_exe_version.rc',
'cloud_print_service.cc',
],
'includes': [
'service_resources.gypi'
],
'dependencies': [
'<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_resources',
'<(DEPTH)/cloud_print/service/service.gyp:cloud_print_service_lib',
],
'msvs_settings': {
'VCLinkerTool': {
'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE
'UACExecutionLevel': '2', # /level='requireAdministrator'
'AdditionalDependencies': [
'secur32.lib',
],
},
},
},
{
# GN version: //cloud_print/service/win:cloud_print_service_config
'target_name': 'cloud_print_service_config',
'type': 'executable',
'sources': [
'<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_config_exe_version.rc',
'cloud_print_service_config.cc',
],
'includes': [
'service_resources.gypi'
],
'dependencies': [
'<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_resources',
'<(DEPTH)/cloud_print/common/common.gyp:cloud_print_install_lib',
'<(DEPTH)/cloud_print/service/service.gyp:cloud_print_service_lib',
],
'msvs_settings': {
'VCManifestTool': {
'AdditionalManifestFiles': [
'common-controls.manifest',
],
},
'VCLinkerTool': {
'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
'UACExecutionLevel': '2', # /level='requireAdministrator'
'AdditionalDependencies': [
'secur32.lib',
],
},
'conditions': [
['clang==1', {
# TODO: Remove once cloud_print_service_config.cc no longer depends
# on atlapp.h, http://crbug.com/5027
'VCCLCompilerTool': {
'AdditionalOptions': [
# atlapp.h contains a global "using namespace WTL;".
'-Wno-header-hygiene',
# atlgdi.h does an intentional assignment in an if conditional.
'-Wno-parentheses',
# atlgdi.h fails with -Wreorder enabled.
'-Wno-reorder',
# atlgdi.h doesn't use braces around subobject initializers.
'-Wno-missing-braces',
],
},
}],
],
},
},
{
# GN version: //cloud_print/service/win:cloud_print_service_setup
'target_name': 'cloud_print_service_setup',
'type': 'executable',
'sources': [
'<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_setup_exe_version.rc',
'installer.cc',
'installer.h',
],
'includes': [
'service_resources.gypi'
],
'dependencies': [
'<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_resources',
'<(DEPTH)/cloud_print/common/common.gyp:cloud_print_install_lib',
'<(DEPTH)/cloud_print/service/service.gyp:cloud_print_service_lib',
],
'msvs_settings': {
'VCLinkerTool': {
'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
'UACExecutionLevel': '2', # /level='requireAdministrator'
'AdditionalDependencies': [
'secur32.lib',
],
},
},
},
],
}
|
'''all custom exceptions should go here'''
class EmptyP2THDirectory(Exception):
'''no transactions on this P2TH directory'''
class P2THImportFailed(Exception):
'''Importing of PeerAssets P2TH privkeys failed.'''
class InvalidDeckIssueModeCombo(Exception):
'''When verfiying deck issue_mode combinations.'''
class UnsupportedNetwork(Exception):
'''This network is not suppored by pypeerassets.'''
class InvalidDeckSpawn(Exception):
'''Invalid deck_spawn, deck is not properly tagged.'''
class InvalidDeckMetainfo(Exception):
'''Deck metainfo incomplete, deck must have a name.'''
class InvalidDeckVersion(Exception):
'''Deck version mistmatch.'''
class InvalidDeckIssueMode(Exception):
'''Deck Issue mode is wrong.'''
class DeckP2THImportError(Exception):
'''When Deck P2TH import goes wrong.'''
class InvalidCardTransferP2TH(Exception):
'''card_transfer does not pay to deck p2th in vout[0]'''
class CardVersionMismatch(Exception):
'''card_transfers version must match deck.version'''
class CardNumberOfDecimalsMismatch(Exception):
'''card_tranfer number of decimals does not match deck rules.'''
class RecieverAmountMismatch(Exception):
'''card_transfer list of recievers is not equal to list of amounts'''
class InsufficientFunds(Exception):
'''this address does not have enough assigned UTXOs'''
class InvalidNulldataOutput(Exception):
'''mallformed OP_RETURN transaction output.'''
class InvalidVoutOrder(Exception):
'''mallformed vout sequence'''
class OverSizeOPReturn(Exception):
'''op_return size is exceeding the maximum size allowed by this network.'''
|
class Templates:
@staticmethod
def simple_react_class_component(name):
return """import {{ Component }} from "react";
import React from "react";
export default class {0} extends Component {{
render() {{
return <div>{{this.props.children}}</div>;
}}
}}
""".format(name)
@staticmethod
def react_class_component_with_props_and_state(name):
return """import {{ Component, HTMLAttributes }} from "react";
import React from "react";
interface Props extends HTMLAttributes<HTMLElement> {{}}
interface State {{}}
export default class {0} extends Component<Props, State> {{
constructor(props: Props) {{
super(props);
this.state = {{}};
}}
render() {{
return <div>{{this.props.children}}</div>;
}}
}}
""".format(name)
|
"""
Configuration for docs
"""
# source_link = "https://github.com/[org_name]/wmo"
# docs_base_url = "https://[org_name].github.io/wmo"
# headline = "App that does everything"
# sub_heading = "Yes, you got that right the first time, everything"
def get_context(context):
context.brand_html = "World Memon Organization"
|
class Sack:
def __init__(self, wt, val):
self.wt = wt
self.val = val
self.cost = val // wt
def __lt__(self, other):
return self.cost < other.cost
def knapsack(wt, val, W):
item = []
for i in range(len(wt)):
item.append(Sack(wt[i], val[i]))
item.sort(reverse=True)
totalValue = 0
for i in range(len(item)):
curWt = item[i].wt
curVal = item[i].val
if W - curWt >= 0:
W -= curWt
totalValue += curVal
else:
fraction = W / curWt
totalValue += curVal * fraction
W = int(W - (curWt * fraction))
break
return totalValue
def main():
wt = [10, 40, 20, 30]
val = [60, 40, 100, 120]
W = 50
print(knapsack(wt, val, W))
if __name__ == "__main__":
main()
|
"""Constants for all the OCR post-correction experiments with the multisource model.
These can be modified for different languages/settings as needed.
Copyright (c) 2021, Shruti Rijhwani
All rights reserved.
This source code is licensed under the BSD-style license found in the
LICENSE file in the root directory of this source tree.
"""
LSTM_NUM_OF_LAYERS = 1
EMBEDDING_DIM = 128
HIDDEN_DIM = 256
ATTENTION_SIZE = 256
UNK = "<unk>"
EOS = "<eos>"
COV_LOSS_WEIGHT = 1.0
DIAG_LOSS_WEIGHT = 1.0
EPOCHS = 150
PATIENCE = 10
|
"""
DESAFIO 060: Cálculo do Fatorial
Faça um programa que leia um número qualquer e mostre seu fatorial.
Ex: 5! = 5 x 4 x 3 x 2 x 1 = 120
"""
"""
# Feito com for
numero = int(input('Digite um número para descobrir seu fatorial: '))
copia = numero
resultado = numero
add = ''
for n in range(numero):
if copia != numero:
resultado *= copia
add += str(copia)
if copia != 1:
add += ' x '
copia -= 1
print('{}! = {} = {}'.format(numero, add, resultado))
"""
# Feito com while
numero = int(input('Digite um número para descobrir seu fatorial: '))
copia = numero
resultado = numero
add = ''
while copia > 0:
if copia != numero:
resultado *= copia
add += str(copia)
if copia != 1:
add += ' x '
copia -= 1
print('{}! = {} = {}'.format(numero, add, resultado))
|
'''
It is time now to piece together everything you have learned so far into a pipeline for classification! Your job in this exercise is to build a pipeline that includes scaling and hyperparameter tuning to classify wine quality.
You'll return to using the SVM classifier you were briefly introduced to earlier in this chapter. The hyperparameters you will tune are C
and gamma. C controls the regularization strength. It is analogous to the C you tuned for logistic regression in Chapter 3, while gamma
controls the kernel coefficient: Do not worry about this now as it is beyond the scope of this course.
The following modules and functions have been pre-loaded: Pipeline, SVC, train_test_split, GridSearchCV, classification_report, accuracy_score. The feature and target variable arrays X and y have also been pre-loaded.
'''
# Setup the pipeline
steps = [('scaler', StandardScaler()),
('SVM', SVC())]
pipeline = Pipeline(steps)
# Specify the hyperparameter space
parameters = {'SVM__C':[1, 10, 100],
'SVM__gamma':[0.1, 0.01]}
# Create train and test sets
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=21)
# Instantiate the GridSearchCV object: cv
cv = GridSearchCV(pipeline, parameters, cv=3)
# Fit to the training set
cv.fit(X_train, y_train)
# Predict the labels of the test set: y_pred
y_pred = cv.predict(X_test)
# Compute and print metrics
print("Accuracy: {}".format(cv.score(X_test, y_test)))
print(classification_report(y_test, y_pred))
print("Tuned Model Parameters: {}".format(cv.best_params_))
|
# -*- coding: utf-8 -*-
"""
Copyright Enrique Martín <emartinm@ucm.es> 2020
Custom exceptions when running LearnSQL
"""
class IncorrectNumberOfSentencesException(Exception):
"""Problem solution with an incorrect number of sentences"""
class ZipFileParsingException(Exception):
"""Error while parsing a ZIP file containing a problem (or a set of problems)"""
class ExecutorException(Exception):
"""Exception when calling the DB executor"""
def __init__(self, error_code, message='', statement='', position=(0, 0)):
super().__init__(message)
self.message = message
# value from types.SelectStatusCode
self.error_code = error_code
self.statement = statement
self.position = position
class DESException(Exception):
""" Error while invoking or parsing DES output """
|
m: int; n: int
m = int(input("Quantas linhas vai ter cada matriz? "))
n = int(input("Quantas colunas vai ter cada matriz? "))
a: [[int]] = [[0 for x in range(n)] for x in range(m)]
b: [[int]] = [[0 for x in range(n)] for x in range(m)]
c: [[int]] = [[0 for x in range(n)] for x in range(m)]
print("Digite os valores da matriz A:")
for i in range(m):
for j in range(n):
a[i][j] = int(input(f"Elemento [{i},{j}]: "))
print("Digite os valores da matriz B:")
for i in range(m):
for j in range(n):
b[i][j] = int(input(f"Elemento [{i},{j}]: "))
for i in range(m):
for j in range(n):
c[i][j] = a[i][j] + b[i][j]
print("MATRIZ SOMA:")
for i in range(m):
for j in range(n):
print(f"{c[i][j]} ", end="")
print()
|
#R바위 P보 S가위
for _ in range(int(input())):
Ascore = 0
Bscore = 0
for i in range(int(input())):
a,b = map(str,input().split())
if a == "R":
if b == "R":
Ascore+=1
Bscore+=1
elif b == "P":
Bscore+=1
elif b =="S":
Ascore+=1
elif a == "P":
if b == "P":
Ascore+=1
Bscore+=1
elif b == "S":
Bscore+=1
elif b =="R":
Ascore+=1
elif a == "S":
if b == "S":
Ascore+=1
Bscore+=1
elif b == "R":
Bscore+=1
elif b =="P":
Ascore+=1
if Ascore > Bscore:
print("Player 1")
elif Ascore == Bscore:
print("TIE")
elif Ascore < Bscore:
print("Player 2") |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@author: ying jun
@email: wandy1208@live.com
@time: 2021/12/12 22:55
"""
|
"""
Application constants
"""
REQUEST_TIMEOUT = 100
CONNECTION_TIMEOUT = 30
BASE_URL = 'https://graph.microsoft.com/v1.0'
SDK_VERSION = '0.0.3'
# Used as the key for AuthMiddlewareOption in MiddlewareControl
AUTH_MIDDLEWARE_OPTIONS = 'AUTH_MIDDLEWARE_OPTIONS'
|
##############################################################################
# Parte do livro Introdução à Programação com Python
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2020
# Primeira edição - Novembro/2010 - ISBN 978-85-7522-250-8
# Segunda edição - Junho/2014 - ISBN 978-85-7522-408-3
# Terceira Edição - Janeiro/2019 - ISBN 978-85-7522-718-3
#
# Site: https://python.nilo.pro.br/
#
# Arquivo: exercicios3\capitulo 06\exercicio-06-06.py
##############################################################################
último = 0
fila1 = []
fila2 = []
while True:
print(f"\nExistem {len(fila1)} clientes na fila 1 e {len(fila2)} na fila 2.")
print("Fila 1 atual:", fila1)
print("Fila 2 autal:", fila2)
print("Digite F para adicionar um cliente ao fim da fila 1 (ou G para fila 2),")
print("ou A para realizar o atendimento a fila 1 (ou B para fila 2")
print("S para sair.")
operação = input("Operação (F, G, A, B ou S):")
x = 0
sair = False
while x < len(operação):
# Aqui vamos usar fila como referência a fila 1
# ou a fila 2, dependendo da operação.
if operação[x] == "A" or operação[x] == "F":
fila = fila1
else:
fila = fila2
if operação[x] == "A" or operação[x] == "B":
if len(fila) > 0:
atendido = fila.pop(0)
print(f"Cliente {atendido} atendido")
else:
print("Fila vazia! Ninguém para atender.")
elif operação[x] == "F" or operação[x] == "G":
último += 1 # Incrementa o ticket do novo cliente
fila.append(último)
elif operação[x] == "S":
sair = True
break
else:
print(f"Operação inválida: {operação[x]} na posição {x}! Digite apenas F, A ou S!")
x = x + 1
if sair:
break
|
# -*- coding: iso-8859-1 -*-
"""
MoinMoin - <short description>
<what this stuff does ... - verbose enough>
@copyright: 2007 MoinMoin:YourNameHere
@license: GNU GPL, see COPYING for details.
"""
|
# © 2019 KidsCanCode LLC / All rights reserved.
# game options/settings
TITLE = "Leapin' Wizards!"
WIDTH = 480
HEIGHT = 600
FPS = 60
FONT_NAME = 'arial'
SPRITESHEET = 'GameSprites2.png'
# Environment options
GRAVITY = 9.8
# Player properties
PLAYER_ACC = 0.5
PLAYER_FRICTION = -0.1
PLAYER_JUMPPOWER = 15
# Monster properties
MONSTER_ACC = 0.5
MONSTER_FRICTION = -0.1
MONSTER_JUMPPOWER = 10
# define colors
BGCOLOR = (100, 100, 100)
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
LIGHTGREEN = (150, 255, 150)
LIGHTBLUE = (150, 150, 255)
BLUE = (0, 0, 255)
LIGHTBLUE = (200, 220, 255)
YELLOW = (255, 255, 0) |
objetivo = int(input('Escoge un numero: '))
epsilon = 0.0001
paso = epsilon**2
respuesta = 0.0
while abs(respuesta**2 - objetivo) >= epsilon and respuesta <= objetivo:
print(abs(respuesta**2 - objetivo), respuesta)
respuesta += paso
if abs(respuesta**2 - objetivo) >= epsilon:
print(f'No se encontro la raiz cuadrada {objetivo}')
else:
print(f'La raiz cudrada de {objetivo} es {respuesta}')
|
# You can copy consecutive elements of a list to build another list.
# For example, if you have this list…
print("p01")
cities = ["Atlanta", "Baltimore", "Chicago", "Denver", "Los Angeles", "Seattle"]
print(cities)
# …you can copy elements 2 through 4 to create another list…
print("p02")
smaller_list_of_cities = cities[2:5]
print(cities)
print(smaller_list_of_cities)
# When the first element of the slice is the first element of the original list the element with
# an index of 0—you can omit the first number altogether:
# smaller_list_of_cities = cities[:5]
print("p03")
print(smaller_list_of_cities)
print(smaller_list_of_cities[:2])
# When the last element of the slice is the last element of the original list, you
# can omit the second number:
# smaller_list_of_cities = cities[2:]
print("p04")
smaller_list_of_cities = smaller_list_of_cities + ["Atlanta", "Dallas"]
print(smaller_list_of_cities)
print(smaller_list_of_cities[3:])
# пока не вижу, как вывести индекс
# Exercise 1
# In the following code, smaller_list_of_cities is assigned __ elements of the cities list. (Enter a numeral.)
# smaller_list_of_cities = cities[2:5]
print("ex01")
print(cities)
print("list legth %s" %len(cities))
smaller_list_of_cities = cities[2:5]
print("smaller_list_of_cities = cities[2:5]")
print(smaller_list_of_cities)
print("index of 'LA': %s" %cities.index("Los Angeles"))
# Exercise 2
# Fill in the blank. The first element in the slice is the second element in the list.
# The last element in the slice is the third element in the list.
# smaller_list_of_cities = cities[____]
print("ex02")
smaller_list_of_cities = cities[1:3]
print(cities)
print("smaller_list_of_cities = cities[1:3]")
print(smaller_list_of_cities)
# Exercise 3
# In the orange box type the next character. I'll autocomplete. Don't type spaces or carriage returns.
# Copy the second through eighth elements from the list y and assign the slice to the list x.
print("ex03")
y = [1,2,3,4,5,6,7,8,9,10]
x = y[1:8]
print(y)
print(x)
# Exercise 4
# Fail-safe coding. If you type the wrong character, I'll cancel the keystroke.
# Type spaces. When the exercise is complete, I'll turn the exercise number green.
# Reduce the list x to a slice of itself—the sixth through 8th elements.
print("ex04")
x = y
print(x)
x = x[5:8]
print(x)
# Exercise 5
# Copy some elements from a list and assign the slice to another list. Make up the list names and the index numbers.
print("ex05")
print(y)
x = y[1:5] # это индексы. Первый входит, последний не входит
print(x)
# Exercise 6
# What is the index number of the last element in the slice?
# x = y[7:9]
print("ex06")
print(y) # 10 элементов
print("длинна массива %s" %len(y))
x = y[7:9] # из 10 элементов (индексы 0-9), выбирается с элемента с индексом 7 [8] по элемент с индексом 9 [10]
print("x = y[7:9]")
print(x)
# Exercise 7
# Fill in the blank to slice the first through ninth element with minimal coding.
# x = y[____]
print("ex07")
y2 = y + [11,12,13,14,15]
y2.reverse() # просто разворачивает массив без присвоения его новому.
print("длинна массива %s" %len(y2))
print(y2)
print("x = y3[:9]")
print(("элемент %s" %y2[9])+("(индекс %s - десятый элемент списка!)")%y2.index(6) + ", в промежуток не входит")
x = y2[:9] #(выводит элемент с индексом 8, значит, 9 - граничное значение, не включено)
print(x)
print("длинна списка %s" %len(x))
print("индекс элемента 7: %s" %y2.index(7))
print("десятый элемент %s" %y2[9])
|
# -*- coding: utf-8 -*-
class ImdbScraperPipeline(object):
def process_item(self, item, spider):
return item
|
high_income = True
low_income = False
if high_income == True and low_income == False:
print("u little bitch ")
#above code is noob kind of code
#bettter way
if high_income and low_income:
print("u little bitch")
#high_income and low_income are already boolean so we don't need to compare it with == True and == False
# age between 18 and 65
age = 45
if age > 10 and age <65:
print("Eligible")
#another way of same thing
message = "Eligible" if age > 18 and age < 65 else "Not Eligible"
print(message)
if 18 <= age < 65 :
print("Eligible")
else :
print("Not Eligible")
|
def print_artist(album):
print(album['Artist_Name'])
def change_list(list_from_user):
list_from_user[2] = 5
def print_name(album):
print(album["Album_Title"])
def make_album(name, title, numSongs=10):
album = {'Artist_Name': name, 'Album_Title': title}
if numSongs:
album["Song_Count"] = numSongs
return album
def main():
albums = []
bsb = make_album("Back Street Boys","I want it that way")
print_artist(bsb)
print_name(bsb)
num_track = [1,3,6,7]
print(num_track)
change_list(num_track)
print(num_track)
# bsb = {
# Artist_Name: "Back Street Boys"
# Album_Title: "I want it that way"
# Song_count: 10
# }
artist1 = "Joe"
title1 = "Buck"
albums.append(make_album(artist1,title1))
albums.append(make_album('Marylin Manson', 'Mechanical Animals'))
albums.append(make_album('Less Than Jake', 'Borders and Boundaries', 12))
albums.append(make_album("N'Sync", 'No Strings Attached'))
print(albums)
main() |
class Vector:
"""
Constructor
self: a reference to the object we are creating
vals: a list of integers which are the contents of our vector
"""
def __init__(self, vals):
self.vals = vals
# print("Assigned values ", vals, " to vector.")
"""
String Function
Converts the object to a string in readable format for programmers
"""
def __str__(self):
return str(self.vals)
"""
Elementwise power: raises each element in our vector to the given power
"""
def __pow__(self, power):
return Vector([i ** power for i in self.vals])
"""
Addition: adds each element to corresponding element in other vector
"""
def __add__(self, vec):
return Vector(
[self.vals[i] + vec.vals[i] for i in range(len(self.vals))]
)
"""
Multiplies each element in the vector by a specified constant
"""
def __mul__(self, constant):
return Vector([self.vals[i] * constant for i in range(len(self.vals))])
"""
Elementwise subtraction: does same as addition, just subtraction instead
"""
def __sub__(self, vec):
return self + (vec * (-1))
vec = Vector([2, 3, 2])
otherVec = Vector([3, 4, 5])
print(str(vec)) # [2, 3, 2]
print(vec ** 2) # [4, 9, 4]
print(vec - otherVec) # [-1, -1, -3]
print(vec + otherVec) # [5, 7, 7]
print(vec * 5) # [10, 15, 10]
|
class Block:
def __init__(self, block_id, alignment):
self.id = block_id
self.alignment = alignment
self.toroot = self # parent in find-union tree
self.shift = 0 # order relative to parent
self.reorder_shift = 0 # modification caused by edges inserted within group
self.orient = 1 # orientation relative to parent
self.flanks = {-1: 0, 1: 0} # blocks in group with negative/positive order (only in root)
def find(self):
if self.toroot is self:
return self
else:
root = self.toroot.find()
# let's update atributes for flattened tree structure
self.orient *= self.toroot.orient
self.shift = self.shift*self.toroot.orient+self.toroot.shift
self.reorder_shift *= self.toroot.orient
self.toroot = root
return root
def orientation(self):
self.find()
return self.orient
def order(self):
self.find()
return self.shift+self.reorder_shift
def reorder(self, n):
self.reorder_shift += n - self.order()
def size(self):
rootflanks = self.find().flanks
return rootflanks[1]+rootflanks[-1]+1
def minimum(self):
root = self.find()
return -root.flanks[-1]
def maximum(self):
root = self.find()
return root.flanks[1]
def unionto(self, other, reverse, flank): # join self to other
selfroot = self.find()
otheroot = other.find()
selfroot.orient = reverse
selfroot.reorder_shift *= reverse
selfroot.shift = flank*(otheroot.flanks[flank]+selfroot.flanks[-reverse*flank]+1)
otheroot.flanks[flank] += selfroot.flanks[-1]+selfroot.flanks[1]+1
selfroot.toroot = otheroot
del selfroot.flanks
def orient_maf_block(self):
# Modify alignment according to block orientation
if self.orientation() == -1:
for u in self.alignment:
u.seq = u.seq.reverse_complement()
u.annotations["strand"] *= -1
u.annotations["start"] = u.annotations["srcSize"] - u.annotations["size"] - u.annotations["start"]
|
def get_major_dot_minor_version(version):
"""
Convert full VERSION Django tuple to
a dotted string containing MAJOR.MINOR.
For example, (1, 9, 3, 'final', 0) will result in '1.9'
"""
return '.'.join([str(v) for v in version[:2]])
def get_module_short_name(klass):
"""
Return the short module name.
For example, full module name is `django.forms.fields` and
the short module name will be `fields`.
"""
return klass.__module__.rsplit('.', 1)[-1]
|
result = []
for line in DATA.splitlines():
d, t, lvl, msg = line.strip().split(', ', maxsplit=3)
d = date.fromisoformat(d)
t = time.fromisoformat(t)
dt = datetime.combine(d, t)
result.append({'when': dt, 'level': lvl, 'message': msg})
|
#!/usr/bin/env python
#####################################
# Installation module for ike-scan
#####################################
# AUTHOR OF MODULE NAME
AUTHOR="Jason Ashton (ninewires)"
# DESCRIPTION OF THE MODULE
DESCRIPTION="This module will install/update ike-scan - a command-line tool for discovering, fingerprinting and testing IPsec VPN systems"
# INSTALL TYPE GIT, SVN, FILE DOWNLOAD
# OPTIONS = GIT, SVN, FILE
INSTALL_TYPE="GIT"
# LOCATION OF THE FILE OR GIT/SVN REPOSITORY
REPOSITORY_LOCATION="https://github.com/royhills/ike-scan.git"
# WHERE DO YOU WANT TO INSTALL IT
INSTALL_LOCATION="ike-scan"
# DEPENDS FOR DEBIAN INSTALLS
DEBIAN="git,gcc,make"
# DEPENDS FOR FEDORA INSTALLS
FEDORA="git,gcc,make"
# DEPENDS FOR ARCHLINUX INSTALLS
ARCHLINUX="git,gcc,make"
# COMMANDS TO RUN AFTER
AFTER_COMMANDS="cd {INSTALL_LOCATION}, autoreconf --install, ./configure --with-openssl, make, make install"
# THIS WILL CREATE AN AUTOMATIC LAUNCHER FOR THE TOOL
LAUNCHER="ike-scan"
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
File: __init__.py.py
Author: limingdong
Date: 12/31/14
Description:
""" |
"""
Vicki Langer
Class: CS 521 - Fall 1
Date: 28 Sep 2021
Homework Problem # 4_1
taking a list of integers and creating a new one
with sum of nearest neighbors and itself
"""
INPUT_LIST = list(range(55, 0, -10)) # [55, 45, 35, 25, 15, 5]
max_index = len(INPUT_LIST) - 1
# output: 55+45=100 55+45+35=135 45+35+25=105 35+25+15=75 25+15+5=45 15+5=20
output_list = [] # expected: [100, 135, 105, 75, 45, 20]
current_index = 0
while len(output_list) < len(INPUT_LIST): # same num of elements as input list
# each int should be sum of nearest neighbors and itself from original list
# ints at beginning and end of list only have one nearest neighbor
if current_index == 0:
next_num = INPUT_LIST[current_index] + INPUT_LIST[current_index + 1]
current_index += 1
elif current_index > 0 and current_index != max_index:
next_num = (INPUT_LIST[current_index]
+ INPUT_LIST[current_index - 1]
+ INPUT_LIST[current_index + 1])
current_index += 1
else:
next_num = INPUT_LIST[current_index] + INPUT_LIST[current_index - 1]
current_index += 1
output_list.append(next_num)
# Print input and output lists
print("Input List:", INPUT_LIST)
print("Output List:", output_list)
# could refactor
# should use list comprehension with enumerate to manage less stuff
|
nr=int(input())
for i in range(1,nr+1):
print("*"*i)
|
# Copyright 2018 AT&T Intellectual Property. All other rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Subdags
ALL_PREFLIGHT_CHECKS_DAG_NAME = 'preflight'
ARMADA_BUILD_DAG_NAME = 'armada_build'
DESTROY_SERVER_DAG_NAME = 'destroy_server'
DRYDOCK_BUILD_DAG_NAME = 'drydock_build'
VALIDATE_SITE_DESIGN_DAG_NAME = 'validate_site_design'
RELABEL_NODES_DAG_NAME = 'relabel_nodes'
# Steps
ACTION_XCOM = 'action_xcom'
ARMADA_TEST_RELEASES = 'armada_test_releases'
CONCURRENCY_CHECK = 'dag_concurrency_check'
CREATE_ACTION_TAG = 'create_action_tag'
DECIDE_AIRFLOW_UPGRADE = 'decide_airflow_upgrade'
DEPLOYMENT_CONFIGURATION = 'deployment_configuration'
GET_RENDERED_DOC = 'get_rendered_doc'
SKIP_UPGRADE_AIRFLOW = 'skip_upgrade_airflow'
UPGRADE_AIRFLOW = 'upgrade_airflow'
DESTROY_SERVER = 'destroy_nodes'
|
name = 'geo5038801mod'
apical_dendriteEnd = 79
total_user5 = 70
f = open(name + '.hoc','r')
new_ls = ''
for line in f:
if 'user5[' in line and 'create' not in line and 'append' not in line:
parts = line.split('user5[')
#sdfs
if '{user5[51] connect user5[52](0), 1}' in line:
pass
#asdas
pass
for i in range(len(parts)):
if i in range(1,len(parts)):
#asdas
parts[i]
num = int(parts[i][:parts[i].index(']')])
num = num + apical_dendriteEnd
new_ls += 'apic[' + str(num) + ']' + parts[i][parts[i].index(']')+1:].replace('apical_dendrite','apic')
else:
new_ls += parts[i].replace('apical_dendrite','apic')
elif 'create user5' in line:
new_ls +='\n'
elif 'user5al.append()' in line:
new_ls +=' for i=' + str(apical_dendriteEnd) + ', ' + \
str(apical_dendriteEnd + total_user5-1) +' apic[i] user5al.append()\n'
elif 'user5[i] all.append()' in line:
new_ls +='\n'
elif 'apical_dendrite[i] all.append()' in line:
new_ls += ' for i=0, '+ str(apical_dendriteEnd + total_user5-1) +' apic[i] all.append()'
elif 'apical_dendrite' in line and 'create' not in line:
new_ls += line.replace('apical_dendrite','apic').replace('apical_dendrite','apic').replace('apical_dendrite','apic')
elif 'create apical_dendrite' in line:
parts = line.split('apical_dendrite[')
new_ls += parts[0] + 'apic[' + str(apical_dendriteEnd+total_user5) + parts[1][parts[1].index(']'):]
elif 'template' in line:
new_ls += line.replace(name, name + 'Mod')
else:
new_ls += line
f.close()
f1 = open(name + 'Mod.hoc', 'w')
f1.write(new_ls)
f1.close()
|
"""
"""
data = """dataone: 81070
arxiv_oai: 72681
crossref: 71312
pubmed: 47506
figshare: 36462
scitech: 18362
clinicaltrials: 10244
plos: 9555
mit: 2488
vtech: 713
cmu: 601
columbia: 386
calpoly: 377
opensiuc: 293
doepages: 123
stcloud: 47
spdataverse: 40
trinity: 32
texasstate: 31
valposcholar: 26
utaustin: 13
uwashington: 12
uiucideals: 6
ucescholarship: 0
upennsylvania: 0
utaustin: 0
waynestate: 0"""
def return_providers(provider_data=None):
if not provider_data:
provider_data = data
providers = []
lines = provider_data.split('\n')
for line in lines:
if line != '':
line_split = line.split(':')
provider = line_split[0]
providers.append(provider)
return providers |
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
基础协议类
"""
class BaseProtocol(object):
def process_data(self, device_info, data_msg):
"""
返回device_data
:param data_msg:
:return:
"""
return None, None
def process_cmd(self, device_info, device_cmd):
"""
返回cmd_msg
:param device_cmd:
:return:
"""
return None
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Automated Action Rules',
'version': '1.0',
'category': 'Sales/Sales',
'description': """
This module allows to implement action rules for any object.
============================================================
Use automated actions to automatically trigger actions for various screens.
**Example:** A lead created by a specific user may be automatically set to a specific
Sales Team, or an opportunity which still has status pending after 14 days might
trigger an automatic reminder email.
""",
'depends': ['base', 'resource', 'mail'],
'data': [
'security/ir.model.access.csv',
'data/base_automation_data.xml',
'views/base_automation_view.xml',
],
'demo': [
'data/base_automation_demo.xml',
],
'license': 'LGPL-3',
}
|
#!/usr/bin/env python
command += maketx("../common/textures/mandrill.tif --wrap clamp -o mandrill.tx")
command += testshade("-g 64 64 --center -od uint8 -o Cblack black.tif -o Cclamp clamp.tif -o Cperiodic periodic.tif -o Cmirror mirror.tif -o Cdefault default.tif test")
outputs = [ "out.txt", "black.tif", "clamp.tif", "periodic.tif", "mirror.tif",
"default.tif" ]
|
#!usr/bin/env python
#-*- coding:utf-8 -*-
class Model(object):
"""
DNN LM
"""
def __init__(self, model_path):
pass
def score(self, sentence):
pass
def PPL(self, sentence):
pass
|
"""
This is the PyTurbSim package. For more information visit the `PyTurbSim home page <http://lkilcher.github.io/pyTurbSim/>`_.
"""
#from api import *
|
class Solution(object):
def findDuplicates(self, nums):
"""
:type nums: List[int]
:rtype: List[int]
"""
return self.noExtraSpace(nums)
def extraSpace(self, nums):
count = {}
for i in range(len(nums)):
count[nums[i]] = count.setdefault(nums[i], 0) + 1
return [num for num in count.keys() if count[num] > 1]
def noExtraSpace(self, nums):
for num in nums:
idx = abs(num) - 1
nums[idx] = -abs(nums[idx])
for num in nums:
idx = abs(num) - 1
nums[idx] = -nums[idx]
return [i + 1 for i in range(len(nums)) if nums[i] < 0] |
# You are given two non-empty linked lists representing two non-negative integers.
# The digits are stored in reverse order and each of their nodes contain a single digit.
# Add the two numbers and return it as a linked list.
# You may assume the two numbers do not contain any leading zero, except the number 0 itself.
# Example:
# Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
# Output: 7 -> 0 -> 8
# Explanation: 342 + 465 = 807.
class ListNode:
def __init__(self, x):
self.val = x
self.next = None
class Solution:
def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode:
num1, num2 = 0, 0
i, j = 0, 0
while l1:
num1 += l1.val * (10 ** i)
i += 1
l1 = l1.next
while l2:
num2 += l2.val * (10 ** j)
j += 1
l2 = l2.next
num = num1 + num2
head = ListNode(num % 10)
num = num // 10
cur = head
while num != 0:
cur.next = ListNode(num % 10)
cur = cur.next
num = num // 10
return head
|
source_data = 'day17/input.txt'
with open(source_data, 'r') as f:
input = [x.replace('\n', '') for x in f.readlines()]
target = [[int(y) for y in x.split('=')[1].split('..')] for x in input[0].split(',')]
x = target[0]
y = target[1]
options = {}
testing_velocities = range(-200, 200)
for x_test in testing_velocities:
for y_test in testing_velocities:
current_velocity = [x_test, y_test]
current_location = [0, 0]
max_y = 0
while current_location[1] >= y[0]:
current_location = list(map(sum, zip(current_velocity, current_location)))
current_velocity[0] = max(0, current_velocity[0] - 1)
current_velocity[1] = current_velocity[1] - 1
max_y = max(max_y, current_location[1])
if (current_location[0] <= x[1]) and \
(current_location[0] >= x[0]) and \
(current_location[1] <= y[1]) and \
(current_location[1] >= y[0]):
options[(x_test, y_test)] = max_y
break
max_x = max([x[0] for x in options.keys()])
max_y = max([x[1] for x in options.keys()])
print(len(options))
# > 394
|
def strip_name_amount(arg: str):
"""
Strip the name and the last position integer
Args:
arg: string
Returns:
string and integer with the default value 1
"""
strings = arg.split()
try:
first = ' '.join(strings[:-1])
second = int(strings[-1])
except (ValueError, IndexError):
first = ' '.join(strings)
second = 1
return first, second
|
atributes = [
{"name":"color", "value":{'amarillo': 0, 'morado': 1, 'azul': 2, 'verde': 3, 'naranja': 4, 'rojo': 5}},
{"name":"size", "value":{'m': 2, 's': 1, 'xxl': 5, 'xs': 0, 'l': 3, 'xl': 4}},
{"name":"brand", "value":{'blue': 0, 'polo': 1, 'adidas': 2, 'zara': 3, 'nike': 4}},
{"name": "precio", "value": {2333: 0, 11000: 1, 4569: 2, 14000: 3, 4789: 4, 4444: 5, 8889: 6, 1540: 7, 4447: 8, 4558: 9, 9500: 10, 15000: 11, 10000: 12}}
]
products = [
{
"id": 1,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "blue",
"precio": 2333
}
},
{
"id": 2,
"atrr": {
"color": "morado",
"size": "m",
"brand": "polo",
"precio": 11000
}
},
{
"id": 3,
"atrr": {
"color": "azul",
"size": "s",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 4,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "blue",
"precio": 14000
}
},
{
"id": 5,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "zara",
"precio": 4789
}
},
{
"id": 6,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "nike",
"precio": 4789
}
},
{
"id": 7,
"atrr": {
"color": "morado",
"size": "l",
"brand": "blue",
"precio": 4444
}
},
{
"id": 8,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "adidas",
"precio": 14000
}
},
{
"id": 9,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 8889
}
},
{
"id": 10,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 4789
}
},
{
"id": 11,
"atrr": {
"color": "verde",
"size": "s",
"brand": "polo",
"precio": 4444
}
},
{
"id": 12,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 1540
}
},
{
"id": 13,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "nike",
"precio": 4447
}
},
{
"id": 14,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 15,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 4447
}
},
{
"id": 16,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 4569
}
},
{
"id": 17,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "blue",
"precio": 4558
}
},
{
"id": 18,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "zara",
"precio": 11000
}
},
{
"id": 19,
"atrr": {
"color": "verde",
"size": "m",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 20,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "nike",
"precio": 8889
}
},
{
"id": 21,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 22,
"atrr": {
"color": "verde",
"size": "m",
"brand": "zara",
"precio": 2333
}
},
{
"id": 23,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 24,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "polo",
"precio": 9500
}
},
{
"id": 25,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 26,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 27,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 14000
}
},
{
"id": 28,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "blue",
"precio": 8889
}
},
{
"id": 29,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 30,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "adidas",
"precio": 9500
}
},
{
"id": 31,
"atrr": {
"color": "verde",
"size": "m",
"brand": "blue",
"precio": 4558
}
},
{
"id": 32,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "nike",
"precio": 4558
}
},
{
"id": 33,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 34,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 1540
}
},
{
"id": 35,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 36,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 4558
}
},
{
"id": 37,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "zara",
"precio": 9500
}
},
{
"id": 38,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "zara",
"precio": 2333
}
},
{
"id": 39,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "polo",
"precio": 11000
}
},
{
"id": 40,
"atrr": {
"color": "morado",
"size": "s",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 41,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "blue",
"precio": 4444
}
},
{
"id": 42,
"atrr": {
"color": "verde",
"size": "s",
"brand": "blue",
"precio": 4558
}
},
{
"id": 43,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "nike",
"precio": 8889
}
},
{
"id": 44,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "zara",
"precio": 11000
}
},
{
"id": 45,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "polo",
"precio": 14000
}
},
{
"id": 46,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "polo",
"precio": 4789
}
},
{
"id": 47,
"atrr": {
"color": "verde",
"size": "s",
"brand": "nike",
"precio": 2333
}
},
{
"id": 48,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "nike",
"precio": 1540
}
},
{
"id": 49,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "polo",
"precio": 10000
}
},
{
"id": 50,
"atrr": {
"color": "azul",
"size": "s",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 51,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 52,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "polo",
"precio": 4444
}
},
{
"id": 53,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "nike",
"precio": 2333
}
},
{
"id": 54,
"atrr": {
"color": "morado",
"size": "m",
"brand": "nike",
"precio": 8889
}
},
{
"id": 55,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "adidas",
"precio": 9500
}
},
{
"id": 56,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 57,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "blue",
"precio": 4569
}
},
{
"id": 58,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 4444
}
},
{
"id": 59,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "nike",
"precio": 10000
}
},
{
"id": 60,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "blue",
"precio": 2333
}
},
{
"id": 61,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "zara",
"precio": 2333
}
},
{
"id": 62,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "blue",
"precio": 10000
}
},
{
"id": 63,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "blue",
"precio": 4569
}
},
{
"id": 64,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 10000
}
},
{
"id": 65,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "polo",
"precio": 4447
}
},
{
"id": 66,
"atrr": {
"color": "morado",
"size": "s",
"brand": "nike",
"precio": 4789
}
},
{
"id": 67,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "polo",
"precio": 4447
}
},
{
"id": 68,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 69,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "zara",
"precio": 9500
}
},
{
"id": 70,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "blue",
"precio": 1540
}
},
{
"id": 71,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "zara",
"precio": 15000
}
},
{
"id": 72,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "nike",
"precio": 8889
}
},
{
"id": 73,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "nike",
"precio": 4444
}
},
{
"id": 74,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "nike",
"precio": 1540
}
},
{
"id": 75,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "polo",
"precio": 15000
}
},
{
"id": 76,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 77,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "polo",
"precio": 15000
}
},
{
"id": 78,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "nike",
"precio": 15000
}
},
{
"id": 79,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "blue",
"precio": 4558
}
},
{
"id": 80,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 81,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 82,
"atrr": {
"color": "morado",
"size": "l",
"brand": "blue",
"precio": 8889
}
},
{
"id": 83,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "zara",
"precio": 4789
}
},
{
"id": 84,
"atrr": {
"color": "azul",
"size": "l",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 85,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 15000
}
},
{
"id": 86,
"atrr": {
"color": "azul",
"size": "m",
"brand": "nike",
"precio": 1540
}
},
{
"id": 87,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "nike",
"precio": 8889
}
},
{
"id": 88,
"atrr": {
"color": "morado",
"size": "s",
"brand": "zara",
"precio": 10000
}
},
{
"id": 89,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 90,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "polo",
"precio": 15000
}
},
{
"id": 91,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "zara",
"precio": 8889
}
},
{
"id": 92,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 4447
}
},
{
"id": 93,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 94,
"atrr": {
"color": "verde",
"size": "l",
"brand": "zara",
"precio": 11000
}
},
{
"id": 95,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 96,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "nike",
"precio": 4447
}
},
{
"id": 97,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 98,
"atrr": {
"color": "azul",
"size": "s",
"brand": "nike",
"precio": 9500
}
},
{
"id": 99,
"atrr": {
"color": "morado",
"size": "s",
"brand": "polo",
"precio": 8889
}
},
{
"id": 100,
"atrr": {
"color": "verde",
"size": "l",
"brand": "nike",
"precio": 2333
}
},
{
"id": 101,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "blue",
"precio": 4789
}
},
{
"id": 102,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 103,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "nike",
"precio": 15000
}
},
{
"id": 104,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "polo",
"precio": 4447
}
},
{
"id": 105,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "zara",
"precio": 4558
}
},
{
"id": 106,
"atrr": {
"color": "azul",
"size": "s",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 107,
"atrr": {
"color": "verde",
"size": "s",
"brand": "blue",
"precio": 11000
}
},
{
"id": 108,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 9500
}
},
{
"id": 109,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "nike",
"precio": 15000
}
},
{
"id": 110,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "zara",
"precio": 9500
}
},
{
"id": 111,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "nike",
"precio": 8889
}
},
{
"id": 112,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 113,
"atrr": {
"color": "verde",
"size": "m",
"brand": "nike",
"precio": 14000
}
},
{
"id": 114,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "polo",
"precio": 11000
}
},
{
"id": 115,
"atrr": {
"color": "morado",
"size": "s",
"brand": "blue",
"precio": 2333
}
},
{
"id": 116,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 117,
"atrr": {
"color": "azul",
"size": "m",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 118,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "zara",
"precio": 4558
}
},
{
"id": 119,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "polo",
"precio": 4789
}
},
{
"id": 120,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 121,
"atrr": {
"color": "morado",
"size": "s",
"brand": "nike",
"precio": 14000
}
},
{
"id": 122,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "zara",
"precio": 9500
}
},
{
"id": 123,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 124,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "polo",
"precio": 4444
}
},
{
"id": 125,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "adidas",
"precio": 14000
}
},
{
"id": 126,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "zara",
"precio": 11000
}
},
{
"id": 127,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "zara",
"precio": 9500
}
},
{
"id": 128,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "polo",
"precio": 9500
}
},
{
"id": 129,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 15000
}
},
{
"id": 130,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 131,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "zara",
"precio": 4569
}
},
{
"id": 132,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "nike",
"precio": 4444
}
},
{
"id": 133,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 134,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "polo",
"precio": 9500
}
},
{
"id": 135,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "zara",
"precio": 8889
}
},
{
"id": 136,
"atrr": {
"color": "verde",
"size": "l",
"brand": "zara",
"precio": 2333
}
},
{
"id": 137,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 138,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 4789
}
},
{
"id": 139,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "zara",
"precio": 8889
}
},
{
"id": 140,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "polo",
"precio": 14000
}
},
{
"id": 141,
"atrr": {
"color": "azul",
"size": "m",
"brand": "nike",
"precio": 4569
}
},
{
"id": 142,
"atrr": {
"color": "azul",
"size": "m",
"brand": "blue",
"precio": 4569
}
},
{
"id": 143,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 144,
"atrr": {
"color": "verde",
"size": "s",
"brand": "polo",
"precio": 15000
}
},
{
"id": 145,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "polo",
"precio": 8889
}
},
{
"id": 146,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "blue",
"precio": 8889
}
},
{
"id": 147,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "zara",
"precio": 4569
}
},
{
"id": 148,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "polo",
"precio": 10000
}
},
{
"id": 149,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "zara",
"precio": 14000
}
},
{
"id": 150,
"atrr": {
"color": "verde",
"size": "m",
"brand": "polo",
"precio": 10000
}
},
{
"id": 151,
"atrr": {
"color": "morado",
"size": "m",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 152,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 153,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "polo",
"precio": 8889
}
},
{
"id": 154,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 14000
}
},
{
"id": 155,
"atrr": {
"color": "azul",
"size": "l",
"brand": "blue",
"precio": 2333
}
},
{
"id": 156,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 8889
}
},
{
"id": 157,
"atrr": {
"color": "verde",
"size": "s",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 158,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 11000
}
},
{
"id": 159,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "zara",
"precio": 4789
}
},
{
"id": 160,
"atrr": {
"color": "morado",
"size": "m",
"brand": "blue",
"precio": 4444
}
},
{
"id": 161,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "nike",
"precio": 11000
}
},
{
"id": 162,
"atrr": {
"color": "verde",
"size": "m",
"brand": "nike",
"precio": 14000
}
},
{
"id": 163,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 164,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "blue",
"precio": 1540
}
},
{
"id": 165,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "nike",
"precio": 4444
}
},
{
"id": 166,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 4569
}
},
{
"id": 167,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "nike",
"precio": 1540
}
},
{
"id": 168,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "blue",
"precio": 4444
}
},
{
"id": 169,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 15000
}
},
{
"id": 170,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "polo",
"precio": 14000
}
},
{
"id": 171,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "blue",
"precio": 1540
}
},
{
"id": 172,
"atrr": {
"color": "verde",
"size": "s",
"brand": "nike",
"precio": 4558
}
},
{
"id": 173,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "nike",
"precio": 14000
}
},
{
"id": 174,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "zara",
"precio": 4447
}
},
{
"id": 175,
"atrr": {
"color": "azul",
"size": "s",
"brand": "zara",
"precio": 4444
}
},
{
"id": 176,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "polo",
"precio": 9500
}
},
{
"id": 177,
"atrr": {
"color": "morado",
"size": "s",
"brand": "blue",
"precio": 8889
}
},
{
"id": 178,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 179,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 180,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 181,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 182,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "zara",
"precio": 4444
}
},
{
"id": 183,
"atrr": {
"color": "azul",
"size": "l",
"brand": "nike",
"precio": 4789
}
},
{
"id": 184,
"atrr": {
"color": "verde",
"size": "m",
"brand": "polo",
"precio": 2333
}
},
{
"id": 185,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "polo",
"precio": 4789
}
},
{
"id": 186,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "blue",
"precio": 4558
}
},
{
"id": 187,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "zara",
"precio": 4447
}
},
{
"id": 188,
"atrr": {
"color": "azul",
"size": "m",
"brand": "zara",
"precio": 9500
}
},
{
"id": 189,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "polo",
"precio": 4569
}
},
{
"id": 190,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "blue",
"precio": 4447
}
},
{
"id": 191,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "nike",
"precio": 11000
}
},
{
"id": 192,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "nike",
"precio": 4447
}
},
{
"id": 193,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "polo",
"precio": 15000
}
},
{
"id": 194,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "polo",
"precio": 9500
}
},
{
"id": 195,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "blue",
"precio": 4789
}
},
{
"id": 196,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "zara",
"precio": 4444
}
},
{
"id": 197,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "zara",
"precio": 4447
}
},
{
"id": 198,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 199,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 200,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 8889
}
},
{
"id": 201,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "blue",
"precio": 8889
}
},
{
"id": 202,
"atrr": {
"color": "azul",
"size": "m",
"brand": "zara",
"precio": 4569
}
},
{
"id": 203,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "zara",
"precio": 4569
}
},
{
"id": 204,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "nike",
"precio": 1540
}
},
{
"id": 205,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 2333
}
},
{
"id": 206,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 207,
"atrr": {
"color": "azul",
"size": "l",
"brand": "zara",
"precio": 10000
}
},
{
"id": 208,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "zara",
"precio": 1540
}
},
{
"id": 209,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "zara",
"precio": 14000
}
},
{
"id": 210,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 211,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "zara",
"precio": 4558
}
},
{
"id": 212,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 213,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 4444
}
},
{
"id": 214,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "nike",
"precio": 1540
}
},
{
"id": 215,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "polo",
"precio": 15000
}
},
{
"id": 216,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 217,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "polo",
"precio": 11000
}
},
{
"id": 218,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "zara",
"precio": 4558
}
},
{
"id": 219,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "nike",
"precio": 4558
}
},
{
"id": 220,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "blue",
"precio": 1540
}
},
{
"id": 221,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "blue",
"precio": 2333
}
},
{
"id": 222,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 2333
}
},
{
"id": 223,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "polo",
"precio": 4558
}
},
{
"id": 224,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "blue",
"precio": 14000
}
},
{
"id": 225,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "nike",
"precio": 4444
}
},
{
"id": 226,
"atrr": {
"color": "verde",
"size": "l",
"brand": "polo",
"precio": 4447
}
},
{
"id": 227,
"atrr": {
"color": "verde",
"size": "l",
"brand": "zara",
"precio": 11000
}
},
{
"id": 228,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "blue",
"precio": 1540
}
},
{
"id": 229,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 230,
"atrr": {
"color": "azul",
"size": "m",
"brand": "nike",
"precio": 8889
}
},
{
"id": 231,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "blue",
"precio": 4789
}
},
{
"id": 232,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 4447
}
},
{
"id": 233,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "zara",
"precio": 4447
}
},
{
"id": 234,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 235,
"atrr": {
"color": "azul",
"size": "s",
"brand": "nike",
"precio": 15000
}
},
{
"id": 236,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "zara",
"precio": 4569
}
},
{
"id": 237,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 238,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "zara",
"precio": 14000
}
},
{
"id": 239,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 14000
}
},
{
"id": 240,
"atrr": {
"color": "azul",
"size": "s",
"brand": "zara",
"precio": 4558
}
},
{
"id": 241,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 242,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 243,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "polo",
"precio": 14000
}
},
{
"id": 244,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 245,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "polo",
"precio": 8889
}
},
{
"id": 246,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "polo",
"precio": 8889
}
},
{
"id": 247,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "blue",
"precio": 4789
}
},
{
"id": 248,
"atrr": {
"color": "azul",
"size": "l",
"brand": "polo",
"precio": 4789
}
},
{
"id": 249,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "zara",
"precio": 4789
}
},
{
"id": 250,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 251,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 252,
"atrr": {
"color": "morado",
"size": "m",
"brand": "zara",
"precio": 4444
}
},
{
"id": 253,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 2333
}
},
{
"id": 254,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "nike",
"precio": 4447
}
},
{
"id": 255,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 9500
}
},
{
"id": 256,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "polo",
"precio": 4447
}
},
{
"id": 257,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "polo",
"precio": 4444
}
},
{
"id": 258,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "blue",
"precio": 4569
}
},
{
"id": 259,
"atrr": {
"color": "azul",
"size": "m",
"brand": "blue",
"precio": 14000
}
},
{
"id": 260,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 10000
}
},
{
"id": 261,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "polo",
"precio": 2333
}
},
{
"id": 262,
"atrr": {
"color": "verde",
"size": "s",
"brand": "polo",
"precio": 4447
}
},
{
"id": 263,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 4558
}
},
{
"id": 264,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "nike",
"precio": 4789
}
},
{
"id": 265,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "blue",
"precio": 14000
}
},
{
"id": 266,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "polo",
"precio": 4444
}
},
{
"id": 267,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "zara",
"precio": 2333
}
},
{
"id": 268,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "zara",
"precio": 8889
}
},
{
"id": 269,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 8889
}
},
{
"id": 270,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 271,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 272,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "blue",
"precio": 4447
}
},
{
"id": 273,
"atrr": {
"color": "morado",
"size": "m",
"brand": "zara",
"precio": 4569
}
},
{
"id": 274,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 4558
}
},
{
"id": 275,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "polo",
"precio": 4447
}
},
{
"id": 276,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "nike",
"precio": 15000
}
},
{
"id": 277,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "nike",
"precio": 4569
}
},
{
"id": 278,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "nike",
"precio": 11000
}
},
{
"id": 279,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "polo",
"precio": 4569
}
},
{
"id": 280,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 281,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "nike",
"precio": 14000
}
},
{
"id": 282,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "polo",
"precio": 4558
}
},
{
"id": 283,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 9500
}
},
{
"id": 284,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 285,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 286,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 287,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 9500
}
},
{
"id": 288,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "nike",
"precio": 14000
}
},
{
"id": 289,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "blue",
"precio": 4447
}
},
{
"id": 290,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 291,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 11000
}
},
{
"id": 292,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "blue",
"precio": 11000
}
},
{
"id": 293,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "zara",
"precio": 8889
}
},
{
"id": 294,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "polo",
"precio": 1540
}
},
{
"id": 295,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "nike",
"precio": 1540
}
},
{
"id": 296,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "polo",
"precio": 8889
}
},
{
"id": 297,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 298,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 299,
"atrr": {
"color": "verde",
"size": "l",
"brand": "blue",
"precio": 8889
}
},
{
"id": 300,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "blue",
"precio": 11000
}
},
{
"id": 301,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "nike",
"precio": 4447
}
},
{
"id": 302,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "nike",
"precio": 4789
}
},
{
"id": 303,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "blue",
"precio": 9500
}
},
{
"id": 304,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "zara",
"precio": 9500
}
},
{
"id": 305,
"atrr": {
"color": "morado",
"size": "m",
"brand": "zara",
"precio": 4569
}
},
{
"id": 306,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "polo",
"precio": 4569
}
},
{
"id": 307,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "polo",
"precio": 4789
}
},
{
"id": 308,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 10000
}
},
{
"id": 309,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 8889
}
},
{
"id": 310,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "zara",
"precio": 4444
}
},
{
"id": 311,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 312,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "polo",
"precio": 4569
}
},
{
"id": 313,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "blue",
"precio": 10000
}
},
{
"id": 314,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 315,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "zara",
"precio": 11000
}
},
{
"id": 316,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 15000
}
},
{
"id": 317,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 318,
"atrr": {
"color": "morado",
"size": "m",
"brand": "nike",
"precio": 11000
}
},
{
"id": 319,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "nike",
"precio": 4569
}
},
{
"id": 320,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "nike",
"precio": 2333
}
},
{
"id": 321,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "zara",
"precio": 4789
}
},
{
"id": 322,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "nike",
"precio": 4789
}
},
{
"id": 323,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 10000
}
},
{
"id": 324,
"atrr": {
"color": "morado",
"size": "s",
"brand": "blue",
"precio": 4447
}
},
{
"id": 325,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 326,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "zara",
"precio": 4569
}
},
{
"id": 327,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "adidas",
"precio": 9500
}
},
{
"id": 328,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "zara",
"precio": 14000
}
},
{
"id": 329,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 330,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "polo",
"precio": 4447
}
},
{
"id": 331,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "blue",
"precio": 2333
}
},
{
"id": 332,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "blue",
"precio": 8889
}
},
{
"id": 333,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "blue",
"precio": 4444
}
},
{
"id": 334,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "nike",
"precio": 4447
}
},
{
"id": 335,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "blue",
"precio": 10000
}
},
{
"id": 336,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 10000
}
},
{
"id": 337,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "polo",
"precio": 2333
}
},
{
"id": 338,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "polo",
"precio": 1540
}
},
{
"id": 339,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "nike",
"precio": 8889
}
},
{
"id": 340,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "blue",
"precio": 11000
}
},
{
"id": 341,
"atrr": {
"color": "morado",
"size": "l",
"brand": "blue",
"precio": 8889
}
},
{
"id": 342,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "polo",
"precio": 4447
}
},
{
"id": 343,
"atrr": {
"color": "morado",
"size": "m",
"brand": "polo",
"precio": 15000
}
},
{
"id": 344,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "nike",
"precio": 9500
}
},
{
"id": 345,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 4444
}
},
{
"id": 346,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 347,
"atrr": {
"color": "morado",
"size": "m",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 348,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 349,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "blue",
"precio": 1540
}
},
{
"id": 350,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "blue",
"precio": 4789
}
},
{
"id": 351,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "polo",
"precio": 11000
}
},
{
"id": 352,
"atrr": {
"color": "azul",
"size": "m",
"brand": "polo",
"precio": 4444
}
},
{
"id": 353,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "nike",
"precio": 4558
}
},
{
"id": 354,
"atrr": {
"color": "azul",
"size": "s",
"brand": "polo",
"precio": 4569
}
},
{
"id": 355,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "nike",
"precio": 4558
}
},
{
"id": 356,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "blue",
"precio": 14000
}
},
{
"id": 357,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "nike",
"precio": 4789
}
},
{
"id": 358,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 15000
}
},
{
"id": 359,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "blue",
"precio": 8889
}
},
{
"id": 360,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "polo",
"precio": 1540
}
},
{
"id": 361,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "nike",
"precio": 2333
}
},
{
"id": 362,
"atrr": {
"color": "azul",
"size": "s",
"brand": "nike",
"precio": 11000
}
},
{
"id": 363,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 1540
}
},
{
"id": 364,
"atrr": {
"color": "verde",
"size": "l",
"brand": "zara",
"precio": 10000
}
},
{
"id": 365,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 4444
}
},
{
"id": 366,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "zara",
"precio": 1540
}
},
{
"id": 367,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "zara",
"precio": 8889
}
},
{
"id": 368,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 369,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 370,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "blue",
"precio": 4569
}
},
{
"id": 371,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "blue",
"precio": 1540
}
},
{
"id": 372,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "zara",
"precio": 1540
}
},
{
"id": 373,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "zara",
"precio": 4789
}
},
{
"id": 374,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "blue",
"precio": 2333
}
},
{
"id": 375,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "nike",
"precio": 11000
}
},
{
"id": 376,
"atrr": {
"color": "morado",
"size": "l",
"brand": "adidas",
"precio": 14000
}
},
{
"id": 377,
"atrr": {
"color": "azul",
"size": "l",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 378,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 15000
}
},
{
"id": 379,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 9500
}
},
{
"id": 380,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 381,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "blue",
"precio": 14000
}
},
{
"id": 382,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "zara",
"precio": 4444
}
},
{
"id": 383,
"atrr": {
"color": "azul",
"size": "m",
"brand": "polo",
"precio": 4447
}
},
{
"id": 384,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "polo",
"precio": 8889
}
},
{
"id": 385,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 10000
}
},
{
"id": 386,
"atrr": {
"color": "verde",
"size": "l",
"brand": "nike",
"precio": 4558
}
},
{
"id": 387,
"atrr": {
"color": "azul",
"size": "s",
"brand": "blue",
"precio": 1540
}
},
{
"id": 388,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "blue",
"precio": 1540
}
},
{
"id": 389,
"atrr": {
"color": "morado",
"size": "m",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 390,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 8889
}
},
{
"id": 391,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "polo",
"precio": 10000
}
},
{
"id": 392,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 393,
"atrr": {
"color": "azul",
"size": "l",
"brand": "polo",
"precio": 14000
}
},
{
"id": 394,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 395,
"atrr": {
"color": "azul",
"size": "m",
"brand": "zara",
"precio": 8889
}
},
{
"id": 396,
"atrr": {
"color": "morado",
"size": "s",
"brand": "nike",
"precio": 10000
}
},
{
"id": 397,
"atrr": {
"color": "azul",
"size": "s",
"brand": "polo",
"precio": 9500
}
},
{
"id": 398,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "polo",
"precio": 14000
}
},
{
"id": 399,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 400,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "blue",
"precio": 4558
}
},
{
"id": 401,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 402,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "polo",
"precio": 11000
}
},
{
"id": 403,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "nike",
"precio": 2333
}
},
{
"id": 404,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "blue",
"precio": 11000
}
},
{
"id": 405,
"atrr": {
"color": "verde",
"size": "m",
"brand": "zara",
"precio": 10000
}
},
{
"id": 406,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 4789
}
},
{
"id": 407,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 408,
"atrr": {
"color": "verde",
"size": "s",
"brand": "polo",
"precio": 4558
}
},
{
"id": 409,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "zara",
"precio": 4569
}
},
{
"id": 410,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 411,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 412,
"atrr": {
"color": "azul",
"size": "l",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 413,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "polo",
"precio": 4558
}
},
{
"id": 414,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 415,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "nike",
"precio": 4558
}
},
{
"id": 416,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 417,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "polo",
"precio": 4789
}
},
{
"id": 418,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 15000
}
},
{
"id": 419,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "zara",
"precio": 4447
}
},
{
"id": 420,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 421,
"atrr": {
"color": "verde",
"size": "s",
"brand": "polo",
"precio": 15000
}
},
{
"id": 422,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "nike",
"precio": 4569
}
},
{
"id": 423,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 4789
}
},
{
"id": 424,
"atrr": {
"color": "morado",
"size": "m",
"brand": "nike",
"precio": 8889
}
},
{
"id": 425,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "blue",
"precio": 15000
}
},
{
"id": 426,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "zara",
"precio": 15000
}
},
{
"id": 427,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 428,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "blue",
"precio": 9500
}
},
{
"id": 429,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 4447
}
},
{
"id": 430,
"atrr": {
"color": "azul",
"size": "m",
"brand": "blue",
"precio": 10000
}
},
{
"id": 431,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 432,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "polo",
"precio": 2333
}
},
{
"id": 433,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "zara",
"precio": 4447
}
},
{
"id": 434,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "blue",
"precio": 11000
}
},
{
"id": 435,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "nike",
"precio": 4789
}
},
{
"id": 436,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "polo",
"precio": 4558
}
},
{
"id": 437,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 14000
}
},
{
"id": 438,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "blue",
"precio": 4444
}
},
{
"id": 439,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 440,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "blue",
"precio": 8889
}
},
{
"id": 441,
"atrr": {
"color": "verde",
"size": "s",
"brand": "polo",
"precio": 14000
}
},
{
"id": 442,
"atrr": {
"color": "morado",
"size": "l",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 443,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 4444
}
},
{
"id": 444,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "zara",
"precio": 4789
}
},
{
"id": 445,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "blue",
"precio": 4447
}
},
{
"id": 446,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "blue",
"precio": 4569
}
},
{
"id": 447,
"atrr": {
"color": "verde",
"size": "l",
"brand": "blue",
"precio": 11000
}
},
{
"id": 448,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 449,
"atrr": {
"color": "azul",
"size": "l",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 450,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 451,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 452,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "blue",
"precio": 4447
}
},
{
"id": 453,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 454,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 455,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 4789
}
},
{
"id": 456,
"atrr": {
"color": "verde",
"size": "s",
"brand": "blue",
"precio": 4789
}
},
{
"id": 457,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 458,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 4569
}
},
{
"id": 459,
"atrr": {
"color": "azul",
"size": "l",
"brand": "polo",
"precio": 14000
}
},
{
"id": 460,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "zara",
"precio": 4558
}
},
{
"id": 461,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 462,
"atrr": {
"color": "azul",
"size": "s",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 463,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "blue",
"precio": 2333
}
},
{
"id": 464,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "polo",
"precio": 4558
}
},
{
"id": 465,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "blue",
"precio": 4558
}
},
{
"id": 466,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "zara",
"precio": 4569
}
},
{
"id": 467,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 468,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "zara",
"precio": 4569
}
},
{
"id": 469,
"atrr": {
"color": "morado",
"size": "s",
"brand": "blue",
"precio": 10000
}
},
{
"id": 470,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 471,
"atrr": {
"color": "azul",
"size": "m",
"brand": "polo",
"precio": 1540
}
},
{
"id": 472,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 14000
}
},
{
"id": 473,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 4444
}
},
{
"id": 474,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "nike",
"precio": 1540
}
},
{
"id": 475,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "nike",
"precio": 4447
}
},
{
"id": 476,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "blue",
"precio": 4558
}
},
{
"id": 477,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 9500
}
},
{
"id": 478,
"atrr": {
"color": "azul",
"size": "l",
"brand": "nike",
"precio": 10000
}
},
{
"id": 479,
"atrr": {
"color": "azul",
"size": "l",
"brand": "zara",
"precio": 4569
}
},
{
"id": 480,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 481,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 4569
}
},
{
"id": 482,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 483,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 4569
}
},
{
"id": 484,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 485,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "zara",
"precio": 2333
}
},
{
"id": 486,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 11000
}
},
{
"id": 487,
"atrr": {
"color": "morado",
"size": "l",
"brand": "blue",
"precio": 8889
}
},
{
"id": 488,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 8889
}
},
{
"id": 489,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "blue",
"precio": 4444
}
},
{
"id": 490,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "zara",
"precio": 4789
}
},
{
"id": 491,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "polo",
"precio": 4569
}
},
{
"id": 492,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "blue",
"precio": 9500
}
},
{
"id": 493,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 494,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "zara",
"precio": 1540
}
},
{
"id": 495,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "zara",
"precio": 8889
}
},
{
"id": 496,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "blue",
"precio": 4789
}
},
{
"id": 497,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "polo",
"precio": 4444
}
},
{
"id": 498,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 499,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "zara",
"precio": 11000
}
},
{
"id": 500,
"atrr": {
"color": "azul",
"size": "s",
"brand": "zara",
"precio": 14000
}
},
{
"id": 501,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 502,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "nike",
"precio": 11000
}
},
{
"id": 503,
"atrr": {
"color": "verde",
"size": "m",
"brand": "blue",
"precio": 9500
}
},
{
"id": 504,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 505,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "polo",
"precio": 4789
}
},
{
"id": 506,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 4558
}
},
{
"id": 507,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "polo",
"precio": 4569
}
},
{
"id": 508,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "zara",
"precio": 4444
}
},
{
"id": 509,
"atrr": {
"color": "azul",
"size": "s",
"brand": "nike",
"precio": 4569
}
},
{
"id": 510,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "zara",
"precio": 4569
}
},
{
"id": 511,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 10000
}
},
{
"id": 512,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "blue",
"precio": 10000
}
},
{
"id": 513,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "zara",
"precio": 10000
}
},
{
"id": 514,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "polo",
"precio": 14000
}
},
{
"id": 515,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "nike",
"precio": 2333
}
},
{
"id": 516,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "blue",
"precio": 8889
}
},
{
"id": 517,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "adidas",
"precio": 14000
}
},
{
"id": 518,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "polo",
"precio": 4444
}
},
{
"id": 519,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "polo",
"precio": 14000
}
},
{
"id": 520,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "zara",
"precio": 2333
}
},
{
"id": 521,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "zara",
"precio": 8889
}
},
{
"id": 522,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "zara",
"precio": 14000
}
},
{
"id": 523,
"atrr": {
"color": "morado",
"size": "m",
"brand": "zara",
"precio": 4444
}
},
{
"id": 524,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "blue",
"precio": 1540
}
},
{
"id": 525,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "nike",
"precio": 11000
}
},
{
"id": 526,
"atrr": {
"color": "verde",
"size": "m",
"brand": "nike",
"precio": 8889
}
},
{
"id": 527,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "polo",
"precio": 11000
}
},
{
"id": 528,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 9500
}
},
{
"id": 529,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "nike",
"precio": 15000
}
},
{
"id": 530,
"atrr": {
"color": "verde",
"size": "s",
"brand": "blue",
"precio": 9500
}
},
{
"id": 531,
"atrr": {
"color": "azul",
"size": "l",
"brand": "nike",
"precio": 4789
}
},
{
"id": 532,
"atrr": {
"color": "azul",
"size": "m",
"brand": "adidas",
"precio": 14000
}
},
{
"id": 533,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "nike",
"precio": 1540
}
},
{
"id": 534,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 4558
}
},
{
"id": 535,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "polo",
"precio": 11000
}
},
{
"id": 536,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "zara",
"precio": 4444
}
},
{
"id": 537,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 538,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "blue",
"precio": 9500
}
},
{
"id": 539,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 540,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "nike",
"precio": 10000
}
},
{
"id": 541,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 542,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "adidas",
"precio": 14000
}
},
{
"id": 543,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 11000
}
},
{
"id": 544,
"atrr": {
"color": "morado",
"size": "s",
"brand": "blue",
"precio": 4447
}
},
{
"id": 545,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 4569
}
},
{
"id": 546,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "zara",
"precio": 15000
}
},
{
"id": 547,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 548,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "polo",
"precio": 9500
}
},
{
"id": 549,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "blue",
"precio": 11000
}
},
{
"id": 550,
"atrr": {
"color": "azul",
"size": "s",
"brand": "blue",
"precio": 4789
}
},
{
"id": 551,
"atrr": {
"color": "verde",
"size": "m",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 552,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 14000
}
},
{
"id": 553,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "zara",
"precio": 8889
}
},
{
"id": 554,
"atrr": {
"color": "morado",
"size": "s",
"brand": "polo",
"precio": 4789
}
},
{
"id": 555,
"atrr": {
"color": "azul",
"size": "l",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 556,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "zara",
"precio": 15000
}
},
{
"id": 557,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 15000
}
},
{
"id": 558,
"atrr": {
"color": "verde",
"size": "l",
"brand": "zara",
"precio": 4569
}
},
{
"id": 559,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "zara",
"precio": 14000
}
},
{
"id": 560,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "blue",
"precio": 9500
}
},
{
"id": 561,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "blue",
"precio": 14000
}
},
{
"id": 562,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "nike",
"precio": 4789
}
},
{
"id": 563,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 4789
}
},
{
"id": 564,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "polo",
"precio": 14000
}
},
{
"id": 565,
"atrr": {
"color": "azul",
"size": "s",
"brand": "nike",
"precio": 10000
}
},
{
"id": 566,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 567,
"atrr": {
"color": "morado",
"size": "l",
"brand": "polo",
"precio": 4558
}
},
{
"id": 568,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "blue",
"precio": 8889
}
},
{
"id": 569,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "zara",
"precio": 10000
}
},
{
"id": 570,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 15000
}
},
{
"id": 571,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "blue",
"precio": 4569
}
},
{
"id": 572,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "zara",
"precio": 4569
}
},
{
"id": 573,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 9500
}
},
{
"id": 574,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 575,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "blue",
"precio": 11000
}
},
{
"id": 576,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "blue",
"precio": 4789
}
},
{
"id": 577,
"atrr": {
"color": "morado",
"size": "s",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 578,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "nike",
"precio": 15000
}
},
{
"id": 579,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "blue",
"precio": 4444
}
},
{
"id": 580,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "zara",
"precio": 15000
}
},
{
"id": 581,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "polo",
"precio": 4569
}
},
{
"id": 582,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 11000
}
},
{
"id": 583,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "polo",
"precio": 11000
}
},
{
"id": 584,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "nike",
"precio": 10000
}
},
{
"id": 585,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 586,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 4569
}
},
{
"id": 587,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 588,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "nike",
"precio": 15000
}
},
{
"id": 589,
"atrr": {
"color": "morado",
"size": "s",
"brand": "nike",
"precio": 4569
}
},
{
"id": 590,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 2333
}
},
{
"id": 591,
"atrr": {
"color": "verde",
"size": "l",
"brand": "zara",
"precio": 4789
}
},
{
"id": 592,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 593,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "zara",
"precio": 4569
}
},
{
"id": 594,
"atrr": {
"color": "verde",
"size": "m",
"brand": "blue",
"precio": 4444
}
},
{
"id": 595,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "zara",
"precio": 8889
}
},
{
"id": 596,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "nike",
"precio": 2333
}
},
{
"id": 597,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "polo",
"precio": 4447
}
},
{
"id": 598,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "zara",
"precio": 4444
}
},
{
"id": 599,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "nike",
"precio": 4558
}
},
{
"id": 600,
"atrr": {
"color": "azul",
"size": "l",
"brand": "blue",
"precio": 4447
}
},
{
"id": 601,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "nike",
"precio": 4569
}
},
{
"id": 602,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 14000
}
},
{
"id": 603,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "nike",
"precio": 2333
}
},
{
"id": 604,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "zara",
"precio": 15000
}
},
{
"id": 605,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "polo",
"precio": 10000
}
},
{
"id": 606,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "adidas",
"precio": 14000
}
},
{
"id": 607,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 15000
}
},
{
"id": 608,
"atrr": {
"color": "morado",
"size": "l",
"brand": "nike",
"precio": 4447
}
},
{
"id": 609,
"atrr": {
"color": "azul",
"size": "l",
"brand": "nike",
"precio": 11000
}
},
{
"id": 610,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "nike",
"precio": 10000
}
},
{
"id": 611,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 612,
"atrr": {
"color": "azul",
"size": "s",
"brand": "nike",
"precio": 4558
}
},
{
"id": 613,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "blue",
"precio": 8889
}
},
{
"id": 614,
"atrr": {
"color": "azul",
"size": "m",
"brand": "polo",
"precio": 2333
}
},
{
"id": 615,
"atrr": {
"color": "verde",
"size": "l",
"brand": "blue",
"precio": 4558
}
},
{
"id": 616,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "nike",
"precio": 15000
}
},
{
"id": 617,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "zara",
"precio": 4569
}
},
{
"id": 618,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "zara",
"precio": 9500
}
},
{
"id": 619,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "nike",
"precio": 8889
}
},
{
"id": 620,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 9500
}
},
{
"id": 621,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "nike",
"precio": 4569
}
},
{
"id": 622,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "zara",
"precio": 4569
}
},
{
"id": 623,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "zara",
"precio": 4569
}
},
{
"id": 624,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "zara",
"precio": 4444
}
},
{
"id": 625,
"atrr": {
"color": "azul",
"size": "l",
"brand": "zara",
"precio": 15000
}
},
{
"id": 626,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 4569
}
},
{
"id": 627,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "blue",
"precio": 11000
}
},
{
"id": 628,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 9500
}
},
{
"id": 629,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 630,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 631,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 632,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "nike",
"precio": 4569
}
},
{
"id": 633,
"atrr": {
"color": "verde",
"size": "l",
"brand": "zara",
"precio": 4447
}
},
{
"id": 634,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "blue",
"precio": 4444
}
},
{
"id": 635,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 4558
}
},
{
"id": 636,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 14000
}
},
{
"id": 637,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 9500
}
},
{
"id": 638,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 639,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "zara",
"precio": 9500
}
},
{
"id": 640,
"atrr": {
"color": "verde",
"size": "m",
"brand": "polo",
"precio": 4444
}
},
{
"id": 641,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 642,
"atrr": {
"color": "azul",
"size": "m",
"brand": "zara",
"precio": 8889
}
},
{
"id": 643,
"atrr": {
"color": "azul",
"size": "m",
"brand": "blue",
"precio": 1540
}
},
{
"id": 644,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "nike",
"precio": 15000
}
},
{
"id": 645,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "blue",
"precio": 14000
}
},
{
"id": 646,
"atrr": {
"color": "verde",
"size": "m",
"brand": "zara",
"precio": 14000
}
},
{
"id": 647,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "polo",
"precio": 4558
}
},
{
"id": 648,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 4444
}
},
{
"id": 649,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 650,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "zara",
"precio": 9500
}
},
{
"id": 651,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "polo",
"precio": 9500
}
},
{
"id": 652,
"atrr": {
"color": "morado",
"size": "m",
"brand": "polo",
"precio": 4569
}
},
{
"id": 653,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 4444
}
},
{
"id": 654,
"atrr": {
"color": "azul",
"size": "m",
"brand": "polo",
"precio": 8889
}
},
{
"id": 655,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 656,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 2333
}
},
{
"id": 657,
"atrr": {
"color": "morado",
"size": "l",
"brand": "blue",
"precio": 14000
}
},
{
"id": 658,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "zara",
"precio": 4789
}
},
{
"id": 659,
"atrr": {
"color": "morado",
"size": "m",
"brand": "zara",
"precio": 4447
}
},
{
"id": 660,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "polo",
"precio": 10000
}
},
{
"id": 661,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "nike",
"precio": 15000
}
},
{
"id": 662,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "nike",
"precio": 11000
}
},
{
"id": 663,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "blue",
"precio": 1540
}
},
{
"id": 664,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 665,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 4789
}
},
{
"id": 666,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "blue",
"precio": 4447
}
},
{
"id": 667,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 668,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "blue",
"precio": 15000
}
},
{
"id": 669,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 670,
"atrr": {
"color": "morado",
"size": "m",
"brand": "blue",
"precio": 4444
}
},
{
"id": 671,
"atrr": {
"color": "azul",
"size": "l",
"brand": "nike",
"precio": 15000
}
},
{
"id": 672,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 9500
}
},
{
"id": 673,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 674,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "zara",
"precio": 2333
}
},
{
"id": 675,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "polo",
"precio": 1540
}
},
{
"id": 676,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "zara",
"precio": 11000
}
},
{
"id": 677,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "blue",
"precio": 9500
}
},
{
"id": 678,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "zara",
"precio": 4447
}
},
{
"id": 679,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "zara",
"precio": 4569
}
},
{
"id": 680,
"atrr": {
"color": "verde",
"size": "l",
"brand": "blue",
"precio": 4558
}
},
{
"id": 681,
"atrr": {
"color": "azul",
"size": "l",
"brand": "nike",
"precio": 4447
}
},
{
"id": 682,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 683,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "polo",
"precio": 4444
}
},
{
"id": 684,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "zara",
"precio": 14000
}
},
{
"id": 685,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 9500
}
},
{
"id": 686,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "zara",
"precio": 15000
}
},
{
"id": 687,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "nike",
"precio": 8889
}
},
{
"id": 688,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 4558
}
},
{
"id": 689,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "zara",
"precio": 1540
}
},
{
"id": 690,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 10000
}
},
{
"id": 691,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "nike",
"precio": 4569
}
},
{
"id": 692,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 693,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "polo",
"precio": 4789
}
},
{
"id": 694,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "blue",
"precio": 9500
}
},
{
"id": 695,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "polo",
"precio": 4558
}
},
{
"id": 696,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "blue",
"precio": 15000
}
},
{
"id": 697,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 9500
}
},
{
"id": 698,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "blue",
"precio": 1540
}
},
{
"id": 699,
"atrr": {
"color": "azul",
"size": "l",
"brand": "polo",
"precio": 4569
}
},
{
"id": 700,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "nike",
"precio": 4789
}
},
{
"id": 701,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "nike",
"precio": 10000
}
},
{
"id": 702,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "polo",
"precio": 4789
}
},
{
"id": 703,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "zara",
"precio": 15000
}
},
{
"id": 704,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 705,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 706,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "polo",
"precio": 4447
}
},
{
"id": 707,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "zara",
"precio": 8889
}
},
{
"id": 708,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "nike",
"precio": 1540
}
},
{
"id": 709,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "zara",
"precio": 14000
}
},
{
"id": 710,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "nike",
"precio": 11000
}
},
{
"id": 711,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "nike",
"precio": 8889
}
},
{
"id": 712,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "polo",
"precio": 4447
}
},
{
"id": 713,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "nike",
"precio": 9500
}
},
{
"id": 714,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "blue",
"precio": 10000
}
},
{
"id": 715,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 15000
}
},
{
"id": 716,
"atrr": {
"color": "verde",
"size": "m",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 717,
"atrr": {
"color": "azul",
"size": "m",
"brand": "zara",
"precio": 4558
}
},
{
"id": 718,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 4558
}
},
{
"id": 719,
"atrr": {
"color": "morado",
"size": "l",
"brand": "polo",
"precio": 2333
}
},
{
"id": 720,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 4444
}
},
{
"id": 721,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "blue",
"precio": 9500
}
},
{
"id": 722,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "nike",
"precio": 11000
}
},
{
"id": 723,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "polo",
"precio": 4447
}
},
{
"id": 724,
"atrr": {
"color": "azul",
"size": "s",
"brand": "polo",
"precio": 4444
}
},
{
"id": 725,
"atrr": {
"color": "morado",
"size": "l",
"brand": "nike",
"precio": 1540
}
},
{
"id": 726,
"atrr": {
"color": "verde",
"size": "m",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 727,
"atrr": {
"color": "morado",
"size": "m",
"brand": "zara",
"precio": 11000
}
},
{
"id": 728,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "nike",
"precio": 4447
}
},
{
"id": 729,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 730,
"atrr": {
"color": "morado",
"size": "l",
"brand": "nike",
"precio": 14000
}
},
{
"id": 731,
"atrr": {
"color": "azul",
"size": "m",
"brand": "blue",
"precio": 4558
}
},
{
"id": 732,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "zara",
"precio": 2333
}
},
{
"id": 733,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "zara",
"precio": 4447
}
},
{
"id": 734,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "zara",
"precio": 4569
}
},
{
"id": 735,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 736,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 4789
}
},
{
"id": 737,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 738,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "nike",
"precio": 15000
}
},
{
"id": 739,
"atrr": {
"color": "verde",
"size": "s",
"brand": "nike",
"precio": 15000
}
},
{
"id": 740,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 741,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "blue",
"precio": 1540
}
},
{
"id": 742,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "nike",
"precio": 4447
}
},
{
"id": 743,
"atrr": {
"color": "verde",
"size": "l",
"brand": "zara",
"precio": 4447
}
},
{
"id": 744,
"atrr": {
"color": "verde",
"size": "l",
"brand": "nike",
"precio": 4447
}
},
{
"id": 745,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 746,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "polo",
"precio": 4444
}
},
{
"id": 747,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "nike",
"precio": 8889
}
},
{
"id": 748,
"atrr": {
"color": "azul",
"size": "m",
"brand": "nike",
"precio": 10000
}
},
{
"id": 749,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "nike",
"precio": 11000
}
},
{
"id": 750,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "zara",
"precio": 4569
}
},
{
"id": 751,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "nike",
"precio": 4558
}
},
{
"id": 752,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "polo",
"precio": 4569
}
},
{
"id": 753,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "blue",
"precio": 8889
}
},
{
"id": 754,
"atrr": {
"color": "morado",
"size": "l",
"brand": "nike",
"precio": 4789
}
},
{
"id": 755,
"atrr": {
"color": "azul",
"size": "l",
"brand": "nike",
"precio": 10000
}
},
{
"id": 756,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 14000
}
},
{
"id": 757,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "adidas",
"precio": 9500
}
},
{
"id": 758,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "blue",
"precio": 4444
}
},
{
"id": 759,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "blue",
"precio": 8889
}
},
{
"id": 760,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "polo",
"precio": 4558
}
},
{
"id": 761,
"atrr": {
"color": "verde",
"size": "m",
"brand": "polo",
"precio": 10000
}
},
{
"id": 762,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "blue",
"precio": 1540
}
},
{
"id": 763,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "blue",
"precio": 1540
}
},
{
"id": 764,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 765,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "zara",
"precio": 1540
}
},
{
"id": 766,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "zara",
"precio": 4444
}
},
{
"id": 767,
"atrr": {
"color": "morado",
"size": "m",
"brand": "blue",
"precio": 4789
}
},
{
"id": 768,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "nike",
"precio": 4447
}
},
{
"id": 769,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "adidas",
"precio": 9500
}
},
{
"id": 770,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "zara",
"precio": 2333
}
},
{
"id": 771,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "zara",
"precio": 2333
}
},
{
"id": 772,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "zara",
"precio": 2333
}
},
{
"id": 773,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "zara",
"precio": 2333
}
},
{
"id": 774,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 9500
}
},
{
"id": 775,
"atrr": {
"color": "morado",
"size": "s",
"brand": "blue",
"precio": 4558
}
},
{
"id": 776,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 777,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 778,
"atrr": {
"color": "morado",
"size": "s",
"brand": "polo",
"precio": 4447
}
},
{
"id": 779,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "blue",
"precio": 4447
}
},
{
"id": 780,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "blue",
"precio": 1540
}
},
{
"id": 781,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "polo",
"precio": 10000
}
},
{
"id": 782,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "blue",
"precio": 11000
}
},
{
"id": 783,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "blue",
"precio": 8889
}
},
{
"id": 784,
"atrr": {
"color": "verde",
"size": "l",
"brand": "blue",
"precio": 15000
}
},
{
"id": 785,
"atrr": {
"color": "verde",
"size": "l",
"brand": "polo",
"precio": 4789
}
},
{
"id": 786,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 787,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 788,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 789,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 14000
}
},
{
"id": 790,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "blue",
"precio": 4569
}
},
{
"id": 791,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "blue",
"precio": 10000
}
},
{
"id": 792,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "zara",
"precio": 11000
}
},
{
"id": 793,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "polo",
"precio": 1540
}
},
{
"id": 794,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "polo",
"precio": 4444
}
},
{
"id": 795,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 9500
}
},
{
"id": 796,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "polo",
"precio": 8889
}
},
{
"id": 797,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "zara",
"precio": 11000
}
},
{
"id": 798,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "nike",
"precio": 9500
}
},
{
"id": 799,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "zara",
"precio": 14000
}
},
{
"id": 800,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "nike",
"precio": 4444
}
},
{
"id": 801,
"atrr": {
"color": "morado",
"size": "s",
"brand": "polo",
"precio": 11000
}
},
{
"id": 802,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "zara",
"precio": 4789
}
},
{
"id": 803,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "polo",
"precio": 4444
}
},
{
"id": 804,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 805,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "polo",
"precio": 8889
}
},
{
"id": 806,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "zara",
"precio": 15000
}
},
{
"id": 807,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 808,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "blue",
"precio": 9500
}
},
{
"id": 809,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 2333
}
},
{
"id": 810,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "nike",
"precio": 11000
}
},
{
"id": 811,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "nike",
"precio": 4447
}
},
{
"id": 812,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 4789
}
},
{
"id": 813,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 814,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "polo",
"precio": 11000
}
},
{
"id": 815,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "polo",
"precio": 10000
}
},
{
"id": 816,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "blue",
"precio": 4447
}
},
{
"id": 817,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "polo",
"precio": 15000
}
},
{
"id": 818,
"atrr": {
"color": "verde",
"size": "l",
"brand": "zara",
"precio": 11000
}
},
{
"id": 819,
"atrr": {
"color": "morado",
"size": "s",
"brand": "zara",
"precio": 2333
}
},
{
"id": 820,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "polo",
"precio": 4569
}
},
{
"id": 821,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 822,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "zara",
"precio": 2333
}
},
{
"id": 823,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "nike",
"precio": 9500
}
},
{
"id": 824,
"atrr": {
"color": "azul",
"size": "m",
"brand": "polo",
"precio": 11000
}
},
{
"id": 825,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "polo",
"precio": 10000
}
},
{
"id": 826,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "zara",
"precio": 2333
}
},
{
"id": 827,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "polo",
"precio": 8889
}
},
{
"id": 828,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "blue",
"precio": 11000
}
},
{
"id": 829,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "polo",
"precio": 14000
}
},
{
"id": 830,
"atrr": {
"color": "morado",
"size": "m",
"brand": "nike",
"precio": 4569
}
},
{
"id": 831,
"atrr": {
"color": "morado",
"size": "s",
"brand": "blue",
"precio": 4447
}
},
{
"id": 832,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "blue",
"precio": 2333
}
},
{
"id": 833,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "nike",
"precio": 4447
}
},
{
"id": 834,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 835,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "zara",
"precio": 2333
}
},
{
"id": 836,
"atrr": {
"color": "verde",
"size": "xxl",
"brand": "polo",
"precio": 1540
}
},
{
"id": 837,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 838,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "zara",
"precio": 11000
}
},
{
"id": 839,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 4447
}
},
{
"id": 840,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "nike",
"precio": 10000
}
},
{
"id": 841,
"atrr": {
"color": "morado",
"size": "s",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 842,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "zara",
"precio": 4569
}
},
{
"id": 843,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "blue",
"precio": 2333
}
},
{
"id": 844,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "polo",
"precio": 10000
}
},
{
"id": 845,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "polo",
"precio": 14000
}
},
{
"id": 846,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 847,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 848,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "blue",
"precio": 4789
}
},
{
"id": 849,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "zara",
"precio": 1540
}
},
{
"id": 850,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "nike",
"precio": 4447
}
},
{
"id": 851,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "adidas",
"precio": 1540
}
},
{
"id": 852,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "polo",
"precio": 1540
}
},
{
"id": 853,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "blue",
"precio": 14000
}
},
{
"id": 854,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 855,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "polo",
"precio": 4789
}
},
{
"id": 856,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "blue",
"precio": 4569
}
},
{
"id": 857,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "zara",
"precio": 4444
}
},
{
"id": 858,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "zara",
"precio": 9500
}
},
{
"id": 859,
"atrr": {
"color": "morado",
"size": "l",
"brand": "polo",
"precio": 10000
}
},
{
"id": 860,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "polo",
"precio": 14000
}
},
{
"id": 861,
"atrr": {
"color": "morado",
"size": "l",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 862,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "polo",
"precio": 4789
}
},
{
"id": 863,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 864,
"atrr": {
"color": "verde",
"size": "s",
"brand": "polo",
"precio": 4558
}
},
{
"id": 865,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "adidas",
"precio": 14000
}
},
{
"id": 866,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 867,
"atrr": {
"color": "azul",
"size": "m",
"brand": "zara",
"precio": 8889
}
},
{
"id": 868,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 869,
"atrr": {
"color": "morado",
"size": "s",
"brand": "polo",
"precio": 11000
}
},
{
"id": 870,
"atrr": {
"color": "azul",
"size": "m",
"brand": "polo",
"precio": 9500
}
},
{
"id": 871,
"atrr": {
"color": "verde",
"size": "m",
"brand": "polo",
"precio": 4447
}
},
{
"id": 872,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "polo",
"precio": 4789
}
},
{
"id": 873,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "zara",
"precio": 4569
}
},
{
"id": 874,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "zara",
"precio": 4569
}
},
{
"id": 875,
"atrr": {
"color": "morado",
"size": "s",
"brand": "blue",
"precio": 9500
}
},
{
"id": 876,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 2333
}
},
{
"id": 877,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "polo",
"precio": 1540
}
},
{
"id": 878,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "blue",
"precio": 4558
}
},
{
"id": 879,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "polo",
"precio": 4444
}
},
{
"id": 880,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "zara",
"precio": 15000
}
},
{
"id": 881,
"atrr": {
"color": "azul",
"size": "s",
"brand": "blue",
"precio": 10000
}
},
{
"id": 882,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "adidas",
"precio": 4569
}
},
{
"id": 883,
"atrr": {
"color": "verde",
"size": "s",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 884,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 885,
"atrr": {
"color": "morado",
"size": "l",
"brand": "polo",
"precio": 10000
}
},
{
"id": 886,
"atrr": {
"color": "morado",
"size": "m",
"brand": "zara",
"precio": 9500
}
},
{
"id": 887,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "zara",
"precio": 1540
}
},
{
"id": 888,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 14000
}
},
{
"id": 889,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 890,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "zara",
"precio": 2333
}
},
{
"id": 891,
"atrr": {
"color": "rojo",
"size": "xxl",
"brand": "zara",
"precio": 10000
}
},
{
"id": 892,
"atrr": {
"color": "amarillo",
"size": "m",
"brand": "nike",
"precio": 9500
}
},
{
"id": 893,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 4569
}
},
{
"id": 894,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "nike",
"precio": 4789
}
},
{
"id": 895,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 896,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 897,
"atrr": {
"color": "verde",
"size": "m",
"brand": "nike",
"precio": 15000
}
},
{
"id": 898,
"atrr": {
"color": "verde",
"size": "m",
"brand": "zara",
"precio": 4558
}
},
{
"id": 899,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 15000
}
},
{
"id": 900,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "zara",
"precio": 9500
}
},
{
"id": 901,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "zara",
"precio": 2333
}
},
{
"id": 902,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "zara",
"precio": 4558
}
},
{
"id": 903,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 14000
}
},
{
"id": 904,
"atrr": {
"color": "azul",
"size": "l",
"brand": "nike",
"precio": 10000
}
},
{
"id": 905,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 11000
}
},
{
"id": 906,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "nike",
"precio": 15000
}
},
{
"id": 907,
"atrr": {
"color": "morado",
"size": "s",
"brand": "polo",
"precio": 15000
}
},
{
"id": 908,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 909,
"atrr": {
"color": "morado",
"size": "m",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 910,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 911,
"atrr": {
"color": "verde",
"size": "l",
"brand": "zara",
"precio": 4558
}
},
{
"id": 912,
"atrr": {
"color": "rojo",
"size": "l",
"brand": "nike",
"precio": 10000
}
},
{
"id": 913,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "blue",
"precio": 8889
}
},
{
"id": 914,
"atrr": {
"color": "azul",
"size": "m",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 915,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "blue",
"precio": 2333
}
},
{
"id": 916,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 917,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 9500
}
},
{
"id": 918,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "blue",
"precio": 4789
}
},
{
"id": 919,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "nike",
"precio": 2333
}
},
{
"id": 920,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "blue",
"precio": 1540
}
},
{
"id": 921,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "polo",
"precio": 4569
}
},
{
"id": 922,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "nike",
"precio": 4569
}
},
{
"id": 923,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 14000
}
},
{
"id": 924,
"atrr": {
"color": "azul",
"size": "s",
"brand": "zara",
"precio": 9500
}
},
{
"id": 925,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "nike",
"precio": 4558
}
},
{
"id": 926,
"atrr": {
"color": "azul",
"size": "m",
"brand": "blue",
"precio": 10000
}
},
{
"id": 927,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "zara",
"precio": 10000
}
},
{
"id": 928,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 9500
}
},
{
"id": 929,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 930,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "polo",
"precio": 4569
}
},
{
"id": 931,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "blue",
"precio": 2333
}
},
{
"id": 932,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "blue",
"precio": 14000
}
},
{
"id": 933,
"atrr": {
"color": "azul",
"size": "l",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 934,
"atrr": {
"color": "morado",
"size": "m",
"brand": "zara",
"precio": 14000
}
},
{
"id": 935,
"atrr": {
"color": "azul",
"size": "l",
"brand": "polo",
"precio": 4444
}
},
{
"id": 936,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "blue",
"precio": 4789
}
},
{
"id": 937,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 8889
}
},
{
"id": 938,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 939,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "nike",
"precio": 11000
}
},
{
"id": 940,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "nike",
"precio": 4569
}
},
{
"id": 941,
"atrr": {
"color": "azul",
"size": "m",
"brand": "blue",
"precio": 4569
}
},
{
"id": 942,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 15000
}
},
{
"id": 943,
"atrr": {
"color": "naranja",
"size": "s",
"brand": "polo",
"precio": 10000
}
},
{
"id": 944,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "adidas",
"precio": 11000
}
},
{
"id": 945,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "zara",
"precio": 15000
}
},
{
"id": 946,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "blue",
"precio": 4558
}
},
{
"id": 947,
"atrr": {
"color": "naranja",
"size": "m",
"brand": "zara",
"precio": 8889
}
},
{
"id": 948,
"atrr": {
"color": "morado",
"size": "m",
"brand": "nike",
"precio": 4569
}
},
{
"id": 949,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "nike",
"precio": 10000
}
},
{
"id": 950,
"atrr": {
"color": "naranja",
"size": "xl",
"brand": "zara",
"precio": 15000
}
},
{
"id": 951,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "nike",
"precio": 2333
}
},
{
"id": 952,
"atrr": {
"color": "amarillo",
"size": "xl",
"brand": "zara",
"precio": 4789
}
},
{
"id": 953,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "zara",
"precio": 10000
}
},
{
"id": 954,
"atrr": {
"color": "verde",
"size": "xl",
"brand": "polo",
"precio": 8889
}
},
{
"id": 955,
"atrr": {
"color": "morado",
"size": "s",
"brand": "zara",
"precio": 14000
}
},
{
"id": 956,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "blue",
"precio": 15000
}
},
{
"id": 957,
"atrr": {
"color": "morado",
"size": "s",
"brand": "adidas",
"precio": 8889
}
},
{
"id": 958,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "polo",
"precio": 2333
}
},
{
"id": 959,
"atrr": {
"color": "azul",
"size": "xl",
"brand": "zara",
"precio": 10000
}
},
{
"id": 960,
"atrr": {
"color": "amarillo",
"size": "xxl",
"brand": "adidas",
"precio": 4444
}
},
{
"id": 961,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "polo",
"precio": 4447
}
},
{
"id": 962,
"atrr": {
"color": "rojo",
"size": "m",
"brand": "adidas",
"precio": 15000
}
},
{
"id": 963,
"atrr": {
"color": "azul",
"size": "l",
"brand": "adidas",
"precio": 2333
}
},
{
"id": 964,
"atrr": {
"color": "morado",
"size": "s",
"brand": "zara",
"precio": 9500
}
},
{
"id": 965,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "polo",
"precio": 10000
}
},
{
"id": 966,
"atrr": {
"color": "morado",
"size": "s",
"brand": "polo",
"precio": 2333
}
},
{
"id": 967,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 968,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 14000
}
},
{
"id": 969,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "blue",
"precio": 15000
}
},
{
"id": 970,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 971,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "blue",
"precio": 4558
}
},
{
"id": 972,
"atrr": {
"color": "morado",
"size": "s",
"brand": "nike",
"precio": 9500
}
},
{
"id": 973,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "polo",
"precio": 4569
}
},
{
"id": 974,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "polo",
"precio": 10000
}
},
{
"id": 975,
"atrr": {
"color": "azul",
"size": "l",
"brand": "polo",
"precio": 4447
}
},
{
"id": 976,
"atrr": {
"color": "amarillo",
"size": "xs",
"brand": "blue",
"precio": 15000
}
},
{
"id": 977,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "adidas",
"precio": 4789
}
},
{
"id": 978,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 979,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "blue",
"precio": 14000
}
},
{
"id": 980,
"atrr": {
"color": "verde",
"size": "s",
"brand": "nike",
"precio": 11000
}
},
{
"id": 981,
"atrr": {
"color": "naranja",
"size": "xs",
"brand": "adidas",
"precio": 10000
}
},
{
"id": 982,
"atrr": {
"color": "rojo",
"size": "s",
"brand": "zara",
"precio": 4558
}
},
{
"id": 983,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "polo",
"precio": 4569
}
},
{
"id": 984,
"atrr": {
"color": "azul",
"size": "s",
"brand": "adidas",
"precio": 4558
}
},
{
"id": 985,
"atrr": {
"color": "morado",
"size": "l",
"brand": "polo",
"precio": 4444
}
},
{
"id": 986,
"atrr": {
"color": "amarillo",
"size": "s",
"brand": "zara",
"precio": 4447
}
},
{
"id": 987,
"atrr": {
"color": "verde",
"size": "s",
"brand": "zara",
"precio": 4444
}
},
{
"id": 988,
"atrr": {
"color": "amarillo",
"size": "l",
"brand": "blue",
"precio": 4444
}
},
{
"id": 989,
"atrr": {
"color": "morado",
"size": "xs",
"brand": "zara",
"precio": 8889
}
},
{
"id": 990,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "adidas",
"precio": 4447
}
},
{
"id": 991,
"atrr": {
"color": "rojo",
"size": "xl",
"brand": "blue",
"precio": 10000
}
},
{
"id": 992,
"atrr": {
"color": "morado",
"size": "xxl",
"brand": "adidas",
"precio": 9500
}
},
{
"id": 993,
"atrr": {
"color": "rojo",
"size": "xs",
"brand": "zara",
"precio": 2333
}
},
{
"id": 994,
"atrr": {
"color": "naranja",
"size": "xxl",
"brand": "zara",
"precio": 9500
}
},
{
"id": 995,
"atrr": {
"color": "verde",
"size": "xs",
"brand": "nike",
"precio": 11000
}
},
{
"id": 996,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "blue",
"precio": 4789
}
},
{
"id": 997,
"atrr": {
"color": "azul",
"size": "xxl",
"brand": "nike",
"precio": 4558
}
},
{
"id": 998,
"atrr": {
"color": "naranja",
"size": "l",
"brand": "zara",
"precio": 15000
}
},
{
"id": 999,
"atrr": {
"color": "azul",
"size": "xs",
"brand": "nike",
"precio": 1540
}
},
{
"id": 1000,
"atrr": {
"color": "morado",
"size": "xl",
"brand": "nike",
"precio": 15000
}
}
]
|
# 1 point
a = int(input())
b = int(input())
c = int(input())
print(a and b and c and "Нет нулевых значений!!!")
# 2 point
print(a or b or c or "Введены все нули!")
# 3-4 point
if a > (b + c):
print(a - b - c)
else:
print(b + c - a)
# 5 point
if a > 50 and (b > a or c > a):
print("Вася")
# 6 point
if a > 5 or (b == c == 7):
print("Петя")
|
def repeated(words):
distance = float('inf')
d = {}
for i, word in enumerate(words):
if word in d:
temp = abs(d[word] - i)
if temp < distance:
distance = temp
d[word] = i
return distance
|
class Skin(object):
menu_positions = ["left", "right"]
height_decrement = 150
def get_base_template(self, module):
t = self.base_template
if module and module.has_local_nav():
t = self.local_nav_template
return t
def initialize(self, appshell):
pass
|
# Day5 of my 100DaysOfCode Challenge
# Program to learn is and in
# use of is
number = None
if (number is None):
print("Yes")
else:
print("No")
# use of in
list = [45, 34, 67, 99]
print(34 in list) |
def multiplication(factor, multiplier):
product = factor * multiplier
if (product % 1) == 0:
return int(product)
else:
return product
|
# Given a sorted array nums, remove the duplicates in-place such that duplicates appeared at most twice and return the new length.
# Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.
# Example 1:
# Given nums = [1,1,1,2,2,3],
# Your function should return length = 5, with the first five elements of nums being 1, 1, 2, 2 and 3 respectively.
# It doesn't matter what you leave beyond the returned length.
# Example 2:
# Given nums = [0,0,1,1,1,1,2,3,3],
# Your function should return length = 7, with the first seven elements of nums being modified to 0, 0, 1, 1, 2, 3 and 3 respectively.
# It doesn't matter what values are set beyond the returned length.
# Clarification:
# Confused why the returned value is an integer but your answer is an array?
# Note that the input array is passed in by reference, which means modification to the input array will be known to the caller as well.
# Internally you can think of this:
# // nums is passed in by reference. (i.e., without making a copy)
# int len = removeDuplicates(nums);
# // any modification to nums in your function would be known by the caller.
# // using the length returned by your function, it prints the first len elements.
# for (int i = 0; i < len; i++) {
# print(nums[i]);
# }
class Solution(object):
def removeDuplicates(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
# 重复数字移到数组尾部
# M1.
n = len(nums)
if n < 3:
return n
loc = 2
for idx in range(2, n):
if not (nums[loc-1] == nums[loc-2] and nums[idx] == nums[loc-1]):
nums[loc] = nums[idx]
loc += 1
return loc
# M2.
tail = 0
for num in nums:
if tail < 2 or num != nums[tail-1] or num != nums[tail-2]:
nums[tail] = num
tail += 1
return tail |
[ ## this file was manually modified by jt
{
'functor' : {
'description' : ['returns a scalar integer value composed by the highiest bits.',
'of each vector element'],
'module' : 'boost',
'arity' : '1',
'call_types' : [],
'ret_arity' : '0',
'rturn' : {
'default' : 'T',
},
'special' : ['reduction'],
'type_defs' : [],
'types' : ['real_', 'signed_int_', 'unsigned_int_']
},
'info' : 'manually modified',
'unit' : {
'global_header' : {
'first_stamp' : 'created by jt the 24/02/2011',
'included' : [],
'simd_included' : ['#include <boost/simd/include/functions/bits.hpp>',
'#include <boost/simd/include/functions/shri.hpp>'],
'cover_included' : ['#include <boost/simd/include/functions/bits.hpp>'],
'no_ulp' : 'True',
'notes' : [],
'stamp' : 'modified by jt the 24/02/2011',
},
'ranges' : {
'default' : [['boost::simd::Valmin<T>()', 'boost::simd::Valmax<T>()']],
},
'specific_values' : {
'signed_int_' : {
'boost::simd::One<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',},
'boost::simd::Zero<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',},
'boost::simd::Signmask<T>()' : {'result' : 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)','ulp_thresh' : '0',},
'boost::simd::Allbits<T>()' : {'result' : 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)','ulp_thresh' : '0',},
},
'unsigned_int_' : {
'boost::simd::One<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',},
'boost::simd::Zero<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',},
'boost::simd::Allbits<T>()' : {'result' : 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)','ulp_thresh' : '0',},
},
'real_' : {
'boost::simd::Inf<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',},
'boost::simd::Minf<T>()' : {'result' : 'boost::simd::shri(boost::simd::Mone<boost::simd::int32_t>(),int(32-boost::simd::meta::cardinal_of<vT>::value))','ulp_thresh' : '0',},
'boost::simd::Mone<T>()' : {'result' : 'boost::simd::shri(boost::simd::Mone<boost::simd::int32_t>(),int(32-boost::simd::meta::cardinal_of<vT>::value))','ulp_thresh' : '0',},
'boost::simd::Nan<T>()' : {'result' : 'boost::simd::shri(boost::simd::Mone<boost::simd::int32_t>(),int(32-boost::simd::meta::cardinal_of<vT>::value))','ulp_thresh' : '0',},
'boost::simd::One<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',},
'boost::simd::Zero<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',},
'boost::simd::Signmask<T>()' : {'result' : 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)','ulp_thresh' : '0',},
'boost::simd::Allbits<T>()' : {'result' : 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)','ulp_thresh' : '0',},
},
},
'verif_test' : {
'nb_rand' : {
'default' : 'NT2_NB_RANDOM_TEST',
},
'property_call' : {
'default' : ['boost::simd::hmsb(a0)'],
},
'property_value' : {
'default' : ['boost::simd::b_and(a0, boost::simd::Signmask<r_t>()) != 0'],
},
'ulp_thresh' : {
'default' : ['0'],
},
'scalar_simul' :{
'default' : [
" int z = 0;",
" int N = cardinal_of<n_t>::value;",
" for(int i = 0; i< N; ++i)",
" {",
" z |= boost::simd::bits(a0[i]) >> (sizeof(iT)*CHAR_BIT - 1) << (N-i-1);"
" }",
" NT2_TEST_EQUAL( v,z);",
]
},
},
},
},
]
|
sal = float(input('Digite o salário do funcionário: R$'))
if sal > 1250.00:
print('O novo salário será de R${:.2f} com 10% de aumento!'.format(sal + (sal * 10 / 100)))
else:
print('O novo salário será de R${:.2f} com 15% de aumento!'.format(sal + (sal * 15 / 100)))
|
class Source:
source_list = []
def __init__(self, id, description, url, category):
self.id = id
self.description = description
self.url = url
self.category = category
class Articles:
def __init__(self, id,author, title, urlToImage, url):
self.id = id
self.author = author
self.title = title
self.urlToImage= urlToImage
self.url = url
|
#! /usr/bin/python
def _zeros(size):
out = [[0 for _ in range(size)] for _ in range(size)]
return out
def _enforce_self_dist(dist_matrix, scale):
longest = max((max(row) for row in dist_matrix))
longest *= scale
for i in range(len(dist_matrix)):
dist_matrix[i][i] = longest
return dist_matrix
def build_distance(hub_distance, patient_distance, scale):
out = _zeros(len(patient_distance) + 1)
for i, d in enumerate(hub_distance, 1):
out[0][i] = d
out[i][0] = d
for i, row in enumerate(patient_distance, 1):
for j, d in enumerate(row, 1):
out[i][j] = d
return _enforce_self_dist(out, scale)
|
frase = str(input('Digite uma frase: ')).strip().upper()
print('Quantas vezes aparece a letra "A"? {}'.format(frase.count('A')))
print('Em que posição a letra "A" aparece primeiro? {}'.format(frase.find('A')))
print('Em que posição a letra "A" aparece pela última vez? {}'.format((frase.rfind('A'))))
|
# Parameters template.
#
# This should agree with the current params.ini with the exception of the
# fields we wish to modify.
#
# This template is called by run_sample.py for producing many outputs that are
# needed to run a convergence study.
finess_data_template = '''
; Parameters common to FINESS applications
[finess]
ndims = 2 ; 1, 2, or 3
nout = 1 ; number of output times to print results
tfinal = 1.0 ; final time
initial_dt = 1.0 ; initial dt
max_dt = 1.0 ; max allowable dt
max_cfl = 0.4 ; max allowable Courant number
desired_cfl = 0.35 ; desired Courant number
nv = 500000 ; max number of time steps per call to DogSolve
time_stepping_method = %(ts_method_str)s ; (e.g., Runge-Kutta, Lax-Wendroff, Multiderivative, User-Defined)
space_order = %(s_order)i ; order of accuracy in space
time_order = %(t_order)i ; order of accuracy in time
verbosity = 1 ; verbosity of output
mcapa = 0 ; mcapa (capacity function index in aux arrays)
maux = 2 ; maux (number of aux arrays, maux >= mcapa)
source_term = false ; source term (1-yes, 0-no)
meqn = 1 ; number of equations
output_dir = %(output)s ; location of the output directory
; -------------------------------------------------
; Cartesian grid data (ignored if Unstructured)
; -------------------------------------------------
[grid]
mx = %(mx)i ; number of grid elements in x-direction
my = %(my)i ; number of grid elements in y-direction
mbc = 3 ; number of ghost cells on each boundary
xlow = 0.0e0 ; left end point
xhigh = 1.0e0 ; right end point
ylow = 0.0e0 ; lower end point
yhigh = 1.0e0 ; upper end point
; -------------------------------------------------
; WENO values
; -------------------------------------------------
[weno]
weno_version = JS ; type of WENO reconstruction (e.g. JS, FD, Z)
epsilon = 1e-29 ; regulization parameter ( epsilon > 0.0 )
alpha_scaling = 1.1 ; scaling parameter ( alpha_scaling >= 1.0 )
'''
|
# https://leetcode.com/problems/sort-colors/
class Solution:
def sortColors(self, nums):
"""
:type nums: List[int]
:rtype: void Do not return anything, modify nums in-place instead.
"""
if len(nums) < 2: return
l, r = 0, len(nums) - 1
while l < r:
while l < r and nums[l] in (0, 1): l += 1
while r > l and nums[r] == 2: r -= 1
if l < r:
nums[l], nums[r] = nums[r], nums[l]
l += 1
r -= 1
l = 0
if nums[r] == 2: r -= 1
while l < r:
while l < r and nums[l] == 0: l += 1
while r > l and nums[r] == 1: r -= 1
if l < r:
nums[l], nums[r] = nums[r], nums[l]
l += 1
r -= 1
|
A = int(input())
B = int(input())
H = int(input())
if ((H>=A) and (B>=H)):
print("Это нормально")
elif (A>H):
print("Недосып")
else:
print("Пересып") |
class People:
nome = ""
def __init__(self, nome):
self.nome = nome
def talk(self):
print('Meu nome é ' + self.nome)
p1 = People("joão")
p1.talk()
#https://pt.stackoverflow.com/q/514661/101
|
class AST:
def __init__(self, root_symbol, rule, *children):
self.root_symbol = root_symbol
self.rule = rule
self.children = children
def __str__(self):
return str(self.root_symbol)
class Leaf(AST):
def __init__(self, root_symbol, actual_input):
super(Leaf, self).__init__(root_symbol, None)
self.actual_input = actual_input
def __str__(self):
return str(self.actual_input)
|
# Copyright 2020-present NAVER Corp. Under BSD 3-clause license
"""
OpenSfM to kapture import and export.
"""
|
product = 1
i = 1
while product > 0.5:
product *= (365.0 - i) / 365.0
i += 1
print(product, i)
|
"""Faça um programa que leia um ano qualquer e mostre se ele é BISSEXTO"""
ano = int(input('Informe um ano: '))
if ano % 4 == 0:
print('Ano BISSEXTO')
else:
print('Não é BISSEXTO')
|
class Direcao:
def __init__(self):
self.posicoes = ("Norte", "Leste", "Sul", "Oeste")
self.direcao_atual = 0
def girar_a_direita(self):
self.direcao_atual += 1
self.direcao_atual = min(3, self.direcao_atual)
#if self.direcao_atual > 3:
#self.direcao_atual = 0
def girar_a_esquerda(self):
self.direcao_atual -= 1
self.direcao_atual = max(-3, self.direcao_atual)
##if self.direcao_atual < -3:
##self.direcao_atual = 0
if __name__ == '__main__':
d = Direcao()
print(d.direcao_atual)
d.girar_a_direita()
print(d.direcao_atual)
d.girar_a_direita()
print(d.direcao_atual)
d.girar_a_direita()
print(d.direcao_atual)
d.girar_a_direita()
print(d.direcao_atual)
d.girar_a_esquerda()
print(d.direcao_atual)
d.girar_a_esquerda()
print(d.direcao_atual)
d.girar_a_esquerda()
print(d.direcao_atual)
d.girar_a_esquerda()
print(d.direcao_atual)
|
#__author__:baobao
#date:2018/3/24
print("hello"*2)#重复输出字符串
print("hello"[2:])#从第二个开始取到最后
print("he" in "hello")#判断是否在字符串中
a = '123'
b = 'abc'
d = '444'
c = a + b
print(c)
#适用大量拼接
c = '*********'.join([a,b,d]) #【用的比较多】把列表以某个字符拼接成字符串,和php的implode差不多 123*********abc*********444,
print(c)
#########################字符串的内置方法
st = 'he\tllo kitty'
st.count('l') #【用的比较多】计算字符个数
st.capitalize() #字符串首字母大写
print(st.center(50,'-')) #【用的比较多】把字符串放到自定义数量的自定义字符中间 -------------------hello kitty--------------------
st.endswith('y') #判断是否以某个字符串为结尾,返回布尔值
st.startswith('he') #【用的比较多】判断是否以某个字符串为开始
st.expandtabs(tabsize=10) #设置字符串中的\t(tab键)相当于多少个空格
st2 = 'hello kitty'
st2.find('t') #【用的比较多】查找第一个字符,并返回在字符串中对应的索引值
st2.rfind("t")
st3 = 'hello {name},is {age}'
print(st3.format(name="kudoxi",age="25")) #【用的比较多】格式化输出的另一种方法
st3.format_map({'name':"katja","age":"25"})#功能同上,只不过是以字典形式写
st4 = 'hello {{}} {name} '
print(st4.format(name="kudoxi")) #如果字符串里本身就有大括号,想让其保留而不作为格式化
st4.index('t') #和find一样,只是如果查不到字符,index会报错,find不会报错,会返回-1
'123asn'.isalnum() #判断字符串是否包含数字和字母,返回布尔值
'00101'.isdecimal() #检查字符串是否只包含十进制字符
'123'.isdigit() #判断是否为整型数字类型的字符串
'ass'.isnumeric() #同上
'23ad'.isidentifier() #判断是不是非法变量名
'Sash'.islower() #是否全都是小写字母
'ASDK'.isupper() #是否全大写字母
' '.isspace() #判断是否全是空格
'Ssdh Tsad'.istitle() #判断每个单词的首字母是否都是大写
'Ssdh'.lower() #【用的比较多】大写全变为小写
'Ssdh'.upper() #【用的比较多】小写全变大写
'Ssdh'.swapcase() #把大写的变成小写,小写的变成大写
'Ssdh'.ljust(50,"-") #和center差不多,只是字符在左边
'Ssdh'.rjust(50,'-') #和center差不多,只是字符在右边
' \tSsdh\n'.strip() #【用的比较多】去掉左右换行符和空格,和php的trim差不多
' \tSsdh\n'.lstrip() #去掉左换行符和空格,和php的trim差不多
' \tSsdh\n'.rstrip() #去掉右换行符和空格,和php的trim差不多
'hello kudoxi kudoxi'.replace('kudoxi','katja',1)#【用的比较多】替换旧内容换成新内容,第三个参数不填就默认全部替换,第三个参数控制替换个数
'hello kudoxi'.split(' ') #【用的比较多】通过某个字符来把字符串分割成列表,和php的explode差不多
'hello kudoxi kudoxi kudoxi'.rsplit(' ',1) #从右开始,分割1次
'hello kudoxi kudoxi kudoxi'.title() #把所有首字母都大写化
|
br, bc = map(int, input().split())
dr, dc = map(int, input().split())
jr, jc = map(int, input().split())
bessie = max(abs(br - jr), abs(bc - jc))
daisy = abs(dr - jr) + abs(dc - jc)
if bessie == daisy:
print('tie')
elif bessie < daisy:
print('bessie')
else:
print('daisy')
|
######################################################################################################################
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. #
# #
# Licensed under the Apache License, Version 2.0 (the 'License'). You may not use this file except in compliance #
# with the License. A copy of the License is located at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES #
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions #
# and limitations under the License. #
######################################################################################################################
def slot_types(language):
slot_type_values = {
"English": [
{"sampleValue": {"value": "cleaning"}},
{"sampleValue": {"value": "root canal"}},
{"sampleValue": {"value": "whitening"}},
],
"French": [
{"sampleValue": {"value": "nettoyage"}},
{"sampleValue": {"value": "traitement du canal radiculaire"}},
{"sampleValue": {"value": "blanchiment"}},
],
"Italian": [
{"sampleValue": {"value": "pulizia"}},
{"sampleValue": {"value": "devitalizzazione"}},
{"sampleValue": {"value": "blanchiment"}},
],
"Spanish": [
{"sampleValue": {"value": "limpieza"}},
{"sampleValue": {"value": "endodoncia"}},
{"sampleValue": {"value": "blanqueamiento"}},
],
"German": [
{"sampleValue": {"value": "Reinigung"}},
{"sampleValue": {"value": "Wurzelbehandlung"}},
{"sampleValue": {"value": "Weißen"}},
],
"Japanese": [
{"sampleValue": {"value": "クリーニング"}},
{"sampleValue": {"value": "虫歯治療"}},
{"sampleValue": {"value": "ホワイトニング"}},
],
}
return slot_type_values[language]
def utterances(language):
utterance_values = {
"English": [
{"utterance": "I would like to book an appointment"},
{"utterance": "Book an appointment"},
{"utterance": "Book a {AppointmentType}"},
],
"French": [
{"utterance": "Je souhaiterais prendre rendez-vous"},
{"utterance": "Prendre rendez-vous"},
{"utterance": "Réserver un {AppointmentType}"},
],
"Italian": [
{"utterance": "Vorrei fissare un appuntamento"},
{"utterance": "Fissa un appuntamento"},
{"utterance": "Prenota un'operazione di {AppointmentType}"},
],
"Spanish": [
{"utterance": "Querría pedir una cita"},
{"utterance": "Reservar una cita"},
{"utterance": "Pedir cita para {AppointmentType}"},
],
"German": [
{"utterance": "Ich möchte einen Termin buchen."},
{"utterance": "Einen Termin buchen"},
{"utterance": "Einen Termin des Typs {AppointmentType} buchen"},
],
"Japanese": [
{"utterance": "歯医者を予約したい"},
{"utterance": "歯医者の予約をする"},
{"utterance": "{AppointmentType}の予約をする"},
],
}
return utterance_values[language]
def clarification_prompt(language):
prompt = {
"English": "I didn't understand you, what would you like me to do?",
"French": "Je n'ai pas bien compris votre demande, que puis-je faire pour vous?",
"Italian": "Non ho capito, cosa preferisci che faccia?",
"Spanish": "No lo entendí, ¿qué le gustaría que haga?",
"German": "Ich habe Sie nicht verstanden. Bitte sagen Sie mir, was ich für Sie tun soll.",
"Japanese": "申し訳ありません、内容を理解できませんでした。何をお手伝いできますでしょうか",
}
return prompt[language]
def confirmation_prompt(language):
confirmation_prompt_value = {
"English": {
"value": "{Time} is available, should I go ahead and book your appointment?"
},
"French": {
"value": "Je peux prendre rendez-vous à {Time}, est-ce que je peux confirmer cette horaire ?"
},
"Italian": {
"value": "L'orario {Time} è disponibile. Procedo con la prenotazione dell'appuntamento?"
},
"Spanish": {
"value": "A las {Time} están libres, ¿quieres que pida la cita para esa hora?"
},
"German": {
"value": "{Time} ist verfügbar. Soll ich den Termin für Sie buchen?"
},
"Japanese": {
"value": "{Time}は予約可能です。予約してよろしいですか"
},
}
return confirmation_prompt_value[language]
def decline_reponse(language):
decline_response_value = {
"English": {"value": "Okay, I will not schedule an appointment."},
"French": {"value": "D'accord, je ne confirmerai pas ce rendez-vous."},
"Italian": {"value": "OK. Non programmerò un appuntamento."},
"Spanish": {"value": "Vale, no pediré la cita."},
"German": {"value": "OK, ich werde keinen Termin planen."},
"Japanese": {"value": "わかりました。予約を行いませんでした。"},
}
return decline_response_value[language]
def closing_response(language):
closing_response_value = {
"English": {"value": "Done."},
"French": {"value": "Fini."},
"Italian": {"value": "Finito."},
"Spanish": {"value": "Terminado."},
"German": {"value": "Fertig."},
"Japanese": {"value": "予約が完了しました。"},
}
return closing_response_value[language]
def slot_message(language, slot_type):
slot_message_values = {
"English": {
"appointmentType": {
"value": "What type of appointment would you like to schedule?"
},
"date": {"value": "When should I schedule your appointment?"},
"time": {"value": "At what time should I schedule your appointment?"},
},
"French": {
"appointmentType": {
"value": "Quel type de rendez-vous souhaitez-vous prendre ?"
},
"date": {"value": "Quand souhaitez-vous prendre rendez-vous ?"},
"time": {"value": "À quelle heure souhaitez-vous prendre rendez-vous ?"},
},
"Italian": {
"appointmentType": {
"value": "Quale tipo di appuntamento vorresti programmare?"
},
"date": {"value": "Quando devo programmare il tuo appuntamento?"},
"time": {"value": "A che ora devo programmare il tuo appuntamento?"},
},
"Spanish": {
"appointmentType": {"value": "¿Qué tipo de cita quieres pedir?"},
"date": {"value": "¿Para cuándo quieres la cita?"},
"time": {"value": "¿Para qué hora te pido la cita?"},
},
"German": {
"appointmentType": {"value": "Welchen Typ von Termin möchten Sie planen?"},
"date": {"value": "Für welches Datum soll ich den Termin planen?"},
"time": {"value": "Für welche Uhrzeit soll ich den Termin planen?"},
},
"Japanese": {
"appointmentType": {"value": "どのような予約を行いたいですか?"},
"date": {"value": "何日に予約を入れればいいですか?"},
"time": {"value": "何時に予約を入れればいいですか?"},
},
}
return slot_message_values[language][slot_type]
|
# we write a function that computes x factorial recursively
def recursiveFactorial(x):
# we check that x is positive
if x < 0:
raise exception("factorials of non-negative numbers only")
# we check if x is either 0 or 1
if x <= 1:
# we return the asnwer 1
return 1
else:
# we recurse
return x * recursiveFactorial(x - 1) |
#!/bin/python3
def hackerrankInString(s):
find = "hackerrank"
i = 0
for c in s:
if find[i] == c:
i += 1
if i >= len(find):
return("YES")
return("NO")
if __name__ == "__main__":
q = int(input().strip())
for a0 in range(q):
s = input().strip()
result = hackerrankInString(s)
print(result)
|
filein = input('Input an email log txt file please: ')
emaillog = open(filein)
days = dict()
for x in emaillog:
if 'From ' in x:
array = x.split()
day = array[1]
day = day.split('@')
day = day[1]
days[day] = days.get(day, 0)+1
else:
continue
print(days)
# most = max(days, key=days.get)
# print(most, days[most])
|
known = {}
def binomial_coeff_memoized(n, k):
"""Uses recursion to compute the binomial coefficient "n choose k", sped up by memoization
n: number of trials
k: number of successes
returns: int
"""
breakpoint()
if k == 0:
return 1
if n == 0:
return 0
if (n, k) in known:
return known[n, k]
result = binomial_coeff_memoized(n-1, k) + binomial_coeff_memoized(n-1, k-1)
known[(n, k)] = result
return result
n = 150
k = 4
t = binomial_coeff_memoized(n, k)
print(t)
|
'''
删除字符串中出现次数最少的字符,
返回与原字符串顺序一致的删除后字符串
'''
while True:
try:
strin=input()
d=[] # d stores char counts
l=[] # l stores str after deleting
for i in strin:
d.append(strin.count(i))
m=min(d)
for i in range(len(d)):
if d[i]!=m:
l.append(strin[i])
res=''.join(map(str,l))
print(res)
except:
break
# test
# abcab |
def attack(encrypt_oracle, decrypt_oracle, iv, c, t):
"""
Uses a chosen-ciphertext attack to decrypt the ciphertext.
:param encrypt_oracle: the encryption oracle
:param decrypt_oracle: the decryption oracle
:param iv: the initialization vector
:param c: the ciphertext
:param t: the tag corresponding to the ciphertext
:return: the plaintext
"""
p_ = bytes(16) + iv + c
iv_, c_, t_ = encrypt_oracle(p_)
c__ = iv + c
p__ = decrypt_oracle(iv_, c__, c_[-32:-16])
return p__[16:]
|
# 21303 - [Job Adv] (Lv.60) Aran
sm.setSpeakerID(1203001)
sm.sendNext("*Sob sob* #p1203001# is sad. #p1203001# is mad. #p1203001# cries. *Sob sob*")
sm.setPlayerAsSpeaker()
sm.sendNext("Wh...What's wrong?")
sm.setSpeakerID(1203001)
sm.sendNext("#p1203001# made gem. #bGem as red as apple#k. But #rthief#k stole gem. #p1203001# no longer has gem. #p1203001# is sad...")
sm.setPlayerAsSpeaker()
sm.sendNext("A thief stole your red gem?")
sm.setSpeakerID(1203001)
if sm.sendAskYesNo("yes, #p1203001# wants gem back. #p1203001# reward you if you find gem. Catch thief and you get reward."):
sm.startQuest(parentID)
sm.sendNext("The thief wen that way! Which way? Hold on...eat with right hand, not left hand... #bLeft#k! He went left! Go left and you find thief.")
sm.dispose()
else:
sm.dispose() |
pkgname = "efl"
pkgver = "1.26.1"
pkgrel = 0
build_style = "meson"
configure_args = [
"-Dbuild-tests=false",
"-Dbuild-examples=false",
"-Dembedded-lz4=false",
"-Dcrypto=openssl",
"-Decore-imf-loaders-disabler=scim",
# rlottie (json) is pretty useless and unstable so keep that off
"-Devas-loaders-disabler=json",
"-Dlua-interpreter=lua",
"-Dbindings=cxx",
"-Dopengl=es-egl",
"-Dphysics=false",
"-Delua=false",
"-Dsystemd=true",
"-Dx11=true",
"-Dxpresent=true",
"-Dxinput2=true",
"-Dxinput22=true",
"-Dfb=true",
"-Dwl=true",
"-Ddrm=true",
"-Dgstreamer=true",
"-Dpulseaudio=true",
"-Dharfbuzz=true",
"-Dglib=true",
]
hostmakedepends = ["meson", "pkgconf", "gettext-tiny-devel"]
makedepends = [
"gettext-tiny-devel", "openssl-devel", "eudev-devel", "elogind-devel",
"libmount-devel", "libdrm-devel", "libinput-devel", "libxkbcommon-devel",
"mesa-devel", "wayland-protocols", "wayland-devel", "libxrandr-devel",
"libxscrnsaver-devel", "libxcomposite-devel", "libxcursor-devel",
"libxdamage-devel", "libxrender-devel", "libxext-devel", "libxtst-devel",
"libxi-devel", "libxinerama-devel", "libxpresent-devel", "xcb-util-devel",
"xcb-util-keysyms-devel", "xcb-util-image-devel", "xcb-util-wm-devel",
"xcb-util-renderutil-devel", "xorgproto", "liblz4-devel", "zlib-devel",
"fontconfig-devel", "fribidi-devel", "harfbuzz-devel", "freetype-devel",
"libjpeg-turbo-devel", "libpng-devel", "giflib-devel", "libtiff-devel",
"libwebp-devel", "openjpeg-devel", "libavif-devel", "libheif-devel",
"libpulse-devel", "libraw-devel", "librsvg-devel", "libspectre-devel",
"libpoppler-cpp-devel", "libsndfile-devel", "gstreamer-devel",
"gst-plugins-base-devel", "glib-devel", "avahi-devel", "lua5.1-devel",
"ibus-devel",
]
checkdepends = ["dbus", "xvfb-run", "check-devel"]
pkgdesc = "Enlightenment Foundation Libraries"
maintainer = "q66 <q66@chimera-linux.org>"
license = "BSD-2-Clause AND LGPL-2.1-only AND Zlib AND custom:small"
url = "https://enlightenment.org"
source = f"https://download.enlightenment.org/rel/libs/{pkgname}/{pkgname}-{pkgver}.tar.xz"
sha256 = "86a9677e3d48dd0c13a399ebb417bd417bd8d150d6b06cc491bc92275c88a642"
# xvfb-run is unpackaged for now, and would need a special do_check
options = ["!check"]
match self.profile().arch:
case "ppc64le" | "aarch64": # requires SSE3 on x86, so not there
configure_args.append("-Dnative-arch-optimization=true")
case _:
configure_args.append("-Dnative-arch-optimization=false")
if self.profile().cross:
hostmakedepends.append("efl-devel")
def post_install(self):
self.install_license("licenses/COPYING.BSD")
self.install_license("licenses/COPYING.SMALL")
self.install_license("licenses/COPYING.DNS")
# service files: maybe reimplement for dinit later
self.rm(self.destdir / "usr/lib/systemd", recursive = True)
self.rm(self.destdir / "usr/lib/ecore/system/systemd", recursive = True)
@subpackage("efl-ibus")
def _ibus(self):
self.pkgdesc = f"{pkgdesc} (IBus support)"
self.install_if = [f"{pkgname}={pkgver}-r{pkgrel}", "ibus"]
return ["usr/lib/ecore_imf/modules/ibus"]
@subpackage("efl-devel")
def _devel(self):
return self.default_devel()
|
description = 'FOV linear axis for the large box (300 x 300)'
group = 'optional'
excludes = ['fov_100x100', 'fov_190x190']
includes = ['frr']
devices = dict(
fov_300_mot = device('nicos.devices.generic.VirtualReferenceMotor',
description = 'FOV motor',
visibility = (),
abslimits = (275, 950),
userlimits = (276, 949),
refswitch = 'low',
refpos = 275,
unit = 'mm',
speed = 5,
),
# fov_300_enc = device('nicos.devices.generic.VirtualCoder',
# description = 'FOV encoder',
# motor = 'fov_300_mot',
# visibility = (),
# ),
fov_300 = device('nicos.devices.generic.Axis',
description = 'FOV linear axis',
pollinterval = 5,
maxage = 10,
precision = 0.1,
fmtstr = '%.2f',
motor = 'fov_300_mot',
# coder = 'fov_300_enc',
),
)
|
para_str = """this is a long string that is made up of
several lines and non-printable characters such as
TAB ( \t ) and they will show up that way when displayed.
NEWLINEs within the string, whether explicitly given like
this within the brackets [ \n ], or just a NEWLINE within
the variable assignment will also show up.
"""
print (para_str)
|
'''
.remove(x)
This operation removes element from the set.
If element does not exist, it raises a KeyError.
The .remove(x) operation returns None.
Example
>>> s = set([1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> s.remove(5)
>>> print s
set([1, 2, 3, 4, 6, 7, 8, 9])
>>> print s.remove(4)
None
>>> print s
set([1, 2, 3, 6, 7, 8, 9])
>>> s.remove(0)
KeyError: 0
.discard(x)
This operation also removes element from the set.
If element does not exist, it does not raise a KeyError.
The .discard(x) operation returns None.
Example
>>> s = set([1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> s.discard(5)
>>> print s
set([1, 2, 3, 4, 6, 7, 8, 9])
>>> print s.discard(4)
None
>>> print s
set([1, 2, 3, 6, 7, 8, 9])
>>> s.discard(0)
>>> print s
set([1, 2, 3, 6, 7, 8, 9])
.pop()
This operation removes and return an arbitrary element from the set.
If there are no elements to remove, it raises a KeyError.
Example
>>> s = set([1])
>>> print s.pop()
1
>>> print s
set([])
>>> print s.pop()
KeyError: pop from an empty set
Task
You have a non-empty set , and you have to execute commands given in lines.
The commands will be pop, remove and discard.
Input Format
The first line contains integer , the number of elements in the set .
The second line contains space separated elements of set . All of the elements are non-negative integers, less than or equal to 9.
The third line contains integer , the number of commands.
The next lines contains either pop, remove and/or discard commands followed by their associated value.
Output Format
Print the sum of the elements of set on a single line.
Sample Input
9
1 2 3 4 5 6 7 8 9
10
pop
remove 9
discard 9
discard 8
remove 7
pop
discard 6
remove 5
pop
discard 5
Sample Output
4
Explanation
After completing these 10 operations on the set, we get set([4]). Hence, the sum is 4.
Note: Convert the elements of set s to integers while you are assigning them. To ensure the proper input of the set, we have added the first two lines of code to the editor.
'''
n = int(input())
s = set(map(int, input().split()))
n = int(input())
for i in range(n):
a = input()
b = list(map(str, a.split()))
if b[0] == 'pop':
s.pop()
elif b[0] == 'discard':
s.discard(int(b[1]))
elif b[0] == 'remove':
try:
s.remove(int(b[1]))
except KeyError:
pass
sum = 0
for i in range(len(s)):
sum += s.pop()
print(sum) |
class Article():
def __init__(self, title, authors, link, date):
self.title = title
self.authors = authors
self.link = link
self.date = date
|
# A part of pdfrw (https://github.com/pmaupin/pdfrw)
# Copyright (C) 2006-2015 Patrick Maupin, Austin, Texas
# MIT license -- See LICENSE.txt for details
class _NotLoaded(object):
pass
class PdfIndirect(tuple):
''' A placeholder for an object that hasn't been read in yet.
The object itself is the (object number, generation number) tuple.
The attributes include information about where the object is
referenced from and the file object to retrieve the real object from.
'''
value = _NotLoaded
def real_value(self, NotLoaded=_NotLoaded):
value = self.value
if value is NotLoaded:
value = self.value = self._loader(self)
return value
|
n = int(input())
num_list = list(map(int,input().split()))
# n = 10
# num_list = [1, 5, 2, 1, 4, 3, 4, 5, 2, 1]
dp_f = [0] * (n+1)
dp_b = [0] * (n+1)
dp_f[0] = 1
dp_b[n] = 1
# 주요 아이디어:
# 11053 문제의 가장긴 증가 부분 수열을 정방향으로 구한값과 역방향으로 구한값을 각각 계산하고
# 같은 index에서 그 값을 더해주어서 정방향(증가수열) 역방향(감소수열) 의 관계를 가지도록 계산한다.
# 정방향 : 숫자가 증가하는 수열
# 역방향 : (정방향 계산의 방향을 바꾸어줌)숫자가 감소하는 수열
# -1을 해주는 이유 : 방향이 바뀌는 순간(증가->감소) 해당 값이 2번 카운팅 되므로
# forward 계산
for i in range(1,n):
for j in range(i):
if num_list[i] > num_list[j] and dp_f[i] < dp_f[j]:
dp_f[i] = dp_f[j]
dp_f[i] += 1
# backward 계산
for i in range(n-1,-1,-1):
for j in range(n-1, i,-1):
if num_list[i] > num_list[j] and dp_b[i] < dp_b[j]:
dp_b[i] = dp_b[j]
dp_b[i] += 1
# 다른 방법
# forward 방식을 num_list를 reserver를 한 후 구하고 그 결과값을 다시 뒤집는다.
# 이떄 idx 자리를 유의하여 dp_f + dp_b - 1 계산을 수행한다.
dp = list(map(lambda x,y: x + y - 1, dp_b, dp_f))
print(max(dp))
|
importe,descompte = int(input('Importe: ')),20
preudescomptat = importe*(descompte/100)
noupreu = importe-preudescomptat
print('Descompte: -'+str(descompte)+'%\nPreu: '+str(importe)+'€\nT\'estalvies: '+str(preudescomptat)+'€\nPreu Final: '+str(noupreu)+'€') |
# An irrational decimal fraction is created by concatenating the positive integers:
# 0.123456789101112131415161718192021...
# It can be seen that the 12th digit of the fractional part is 1.
# If dn represents the nth digit of the fractional part, find the value of the following expression.
# d1 × d10 × d100 × d1000 × d10000 × d100000 × d1000000
#---------------------------------------------------------------------
#quick but ugly
n = 22
number = str(123456789101112131415161718192021)
while len(number) < 1000000:
number += str(n)
n += 1
print(int(number[0]) * int(number[9]) * int(number[99]) * int(number[999]) * int(number[9999]) * int(number[99999]) * int(number[999999]) ) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.