content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
##########################################################################################
#
# Asteroid Version
#
# (c) University of Rhode Island
##########################################################################################
VERSION = "0.1.0"
| version = '0.1.0' |
class User:
def __init__(self,account_name,card,pin):
self.account_name = account_name
self.card = card
self.pin = pin | class User:
def __init__(self, account_name, card, pin):
self.account_name = account_name
self.card = card
self.pin = pin |
CFG = {
'in_ch': 3,
'out_ch': 24,
'kernel_size': 3,
'stride': 2,
'width_mult': 1,
'divisor': 8,
'actn_layer': None,
'layers': [
{'channels': 24, 'expansion': 1, 'kernel_size': 3, 'stride': 1,
'nums': 2, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2,
'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True,
'use_se': False},
{'channels': 48, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 4, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2,
'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True,
'use_se': False},
{'channels': 64, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 4, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2,
'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True,
'use_se': False},
{'channels': 128, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 6, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2,
'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False,
'use_se': True},
{'channels': 160, 'expansion': 6, 'kernel_size': 3, 'stride': 1,
'nums': 9, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2,
'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False,
'use_se': True},
{'channels': 256, 'expansion': 6, 'kernel_size': 3, 'stride': 2,
'nums': 15, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2,
'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False,
'use_se': True}
]
}
def get_default_cfg():
return CFG
def get_cfg(name='efficientnetv2_s'):
name = name.lower()
if name == 'efficientnetv2_s':
cfg = get_default_cfg()
elif name == 'efficientnetv2_m':
cfg = get_default_cfg()
cfg['layers'] = [
{'channels': 24, 'expansion': 1, 'kernel_size': 3, 'stride': 1,
'nums': 3, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': True, 'use_se': False},
{'channels': 48, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 5, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': True, 'use_se': False},
{'channels': 80, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 5, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': True, 'use_se': False},
{'channels': 160, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 7, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True},
{'channels': 176, 'expansion': 6, 'kernel_size': 3, 'stride': 1,
'nums': 14, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True},
{'channels': 304, 'expansion': 6, 'kernel_size': 3, 'stride': 2,
'nums': 18, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True},
{'channels': 512, 'expansion': 6, 'kernel_size': 3, 'stride': 1,
'nums': 5, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True}
]
elif name == 'efficientnetv2_l':
cfg = get_default_cfg()
cfg['layers'] = [
{'channels': 32, 'expansion': 1, 'kernel_size': 3, 'stride': 1,
'nums': 4, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': True, 'use_se': False},
{'channels': 64, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 7, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': True, 'use_se': False},
{'channels': 96, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 7, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': True, 'use_se': False},
{'channels': 192, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 10, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True},
{'channels': 224, 'expansion': 6, 'kernel_size': 3, 'stride': 1,
'nums': 19, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True},
{'channels': 384, 'expansion': 6, 'kernel_size': 3, 'stride': 2,
'nums': 25, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True},
{'channels': 640, 'expansion': 6, 'kernel_size': 3, 'stride': 1,
'nums': 7, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True}
]
elif name == 'efficientnetv2_xl':
cfg = get_default_cfg()
cfg['layers'] = [
{'channels': 32, 'expansion': 1, 'kernel_size': 3, 'stride': 1,
'nums': 4, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': True, 'use_se': False},
{'channels': 64, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 8, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': True, 'use_se': False},
{'channels': 96, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 8, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': True, 'use_se': False},
{'channels': 192, 'expansion': 4, 'kernel_size': 3, 'stride': 2,
'nums': 16, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True},
{'channels': 256, 'expansion': 6, 'kernel_size': 3, 'stride': 1,
'nums': 24, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True},
{'channels': 512, 'expansion': 6, 'kernel_size': 3, 'stride': 2,
'nums': 32, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True},
{'channels': 640, 'expansion': 6, 'kernel_size': 3, 'stride': 1,
'nums': 8, 'norm_layer': None, 'dropout_ratio': 0.1,
'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None,
'fused': False, 'use_se': True}
]
else:
raise ValueError("No pretrained config available"
" for name {}".format(name))
return cfg
| cfg = {'in_ch': 3, 'out_ch': 24, 'kernel_size': 3, 'stride': 2, 'width_mult': 1, 'divisor': 8, 'actn_layer': None, 'layers': [{'channels': 24, 'expansion': 1, 'kernel_size': 3, 'stride': 1, 'nums': 2, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 48, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 4, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 64, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 4, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 128, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 6, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}, {'channels': 160, 'expansion': 6, 'kernel_size': 3, 'stride': 1, 'nums': 9, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}, {'channels': 256, 'expansion': 6, 'kernel_size': 3, 'stride': 2, 'nums': 15, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}]}
def get_default_cfg():
return CFG
def get_cfg(name='efficientnetv2_s'):
name = name.lower()
if name == 'efficientnetv2_s':
cfg = get_default_cfg()
elif name == 'efficientnetv2_m':
cfg = get_default_cfg()
cfg['layers'] = [{'channels': 24, 'expansion': 1, 'kernel_size': 3, 'stride': 1, 'nums': 3, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 48, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 5, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 80, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 5, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 160, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 7, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}, {'channels': 176, 'expansion': 6, 'kernel_size': 3, 'stride': 1, 'nums': 14, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}, {'channels': 304, 'expansion': 6, 'kernel_size': 3, 'stride': 2, 'nums': 18, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}, {'channels': 512, 'expansion': 6, 'kernel_size': 3, 'stride': 1, 'nums': 5, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}]
elif name == 'efficientnetv2_l':
cfg = get_default_cfg()
cfg['layers'] = [{'channels': 32, 'expansion': 1, 'kernel_size': 3, 'stride': 1, 'nums': 4, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 64, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 7, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 96, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 7, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 192, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 10, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}, {'channels': 224, 'expansion': 6, 'kernel_size': 3, 'stride': 1, 'nums': 19, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}, {'channels': 384, 'expansion': 6, 'kernel_size': 3, 'stride': 2, 'nums': 25, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}, {'channels': 640, 'expansion': 6, 'kernel_size': 3, 'stride': 1, 'nums': 7, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}]
elif name == 'efficientnetv2_xl':
cfg = get_default_cfg()
cfg['layers'] = [{'channels': 32, 'expansion': 1, 'kernel_size': 3, 'stride': 1, 'nums': 4, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 64, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 8, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 96, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 8, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': True, 'use_se': False}, {'channels': 192, 'expansion': 4, 'kernel_size': 3, 'stride': 2, 'nums': 16, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}, {'channels': 256, 'expansion': 6, 'kernel_size': 3, 'stride': 1, 'nums': 24, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}, {'channels': 512, 'expansion': 6, 'kernel_size': 3, 'stride': 2, 'nums': 32, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}, {'channels': 640, 'expansion': 6, 'kernel_size': 3, 'stride': 1, 'nums': 8, 'norm_layer': None, 'dropout_ratio': 0.1, 'dc_ratio': 0.2, 'reduction_ratio': 0.25, 'actn_layer': None, 'fused': False, 'use_se': True}]
else:
raise value_error('No pretrained config available for name {}'.format(name))
return cfg |
READ_DOCSTRING = """
Read the input ``table`` and return the table. Most of
the default behavior for various parameters is determined by the Reader
class.
See also:
- http://docs.astropy.org/en/stable/io/ascii/
- http://docs.astropy.org/en/stable/io/ascii/read.html
Parameters
----------
table : str, file-like, list, `pathlib.Path` object
Input table as a file name, file-like object, list of strings,
single newline-separated string or `pathlib.Path` object .
guess : bool
Try to guess the table format. Defaults to None.
format : str, `~astropy.io.ascii.BaseReader`
Input table format
Inputter : `~astropy.io.ascii.BaseInputter`
Inputter class
Outputter : `~astropy.io.ascii.BaseOutputter`
Outputter class
delimiter : str
Column delimiter string
comment : str
Regular expression defining a comment line in table
quotechar : str
One-character string to quote fields containing special characters
header_start : int
Line index for the header line not counting comment or blank lines.
A line with only whitespace is considered blank.
data_start : int
Line index for the start of data not counting comment or blank lines.
A line with only whitespace is considered blank.
data_end : int
Line index for the end of data not counting comment or blank lines.
This value can be negative to count from the end.
converters : dict
Dictionary of converters
data_Splitter : `~astropy.io.ascii.BaseSplitter`
Splitter class to split data columns
header_Splitter : `~astropy.io.ascii.BaseSplitter`
Splitter class to split header columns
names : list
List of names corresponding to each data column
include_names : list
List of names to include in output.
exclude_names : list
List of names to exclude from output (applied after ``include_names``)
fill_values : dict
specification of fill values for bad or missing table values
fill_include_names : list
List of names to include in fill_values.
fill_exclude_names : list
List of names to exclude from fill_values (applied after ``fill_include_names``)
fast_reader : bool or dict
Whether to use the C engine, can also be a dict with options which
defaults to `False`; parameters for options dict:
use_fast_converter: bool
enable faster but slightly imprecise floating point conversion method
parallel: bool or int
multiprocessing conversion using ``cpu_count()`` or ``'number'`` processes
exponent_style: str
One-character string defining the exponent or ``'Fortran'`` to auto-detect
Fortran-style scientific notation like ``'3.14159D+00'`` (``'E'``, ``'D'``, ``'Q'``),
all case-insensitive; default ``'E'``, all other imply ``use_fast_converter``
chunk_size : int
If supplied with a value > 0 then read the table in chunks of
approximately ``chunk_size`` bytes. Default is reading table in one pass.
chunk_generator : bool
If True and ``chunk_size > 0`` then return an iterator that returns a
table for each chunk. The default is to return a single stacked table
for all the chunks.
encoding : str
Allow to specify encoding to read the file (default= ``None``).
Returns
-------
dat : `~astropy.table.Table` OR <generator>
Output table
"""
WRITE_DOCSTRING = """
Write the input ``table`` to ``filename``. Most of the default behavior
for various parameters is determined by the Writer class.
See also:
- http://docs.astropy.org/en/stable/io/ascii/
- http://docs.astropy.org/en/stable/io/ascii/write.html
Parameters
----------
table : `~astropy.io.ascii.BaseReader`, array_like, str, file_like, list
Input table as a Reader object, Numpy struct array, file name,
file-like object, list of strings, or single newline-separated string.
output : str, file_like
Output [filename, file-like object]. Defaults to``sys.stdout``.
format : str
Output table format. Defaults to 'basic'.
delimiter : str
Column delimiter string
comment : str
String defining a comment line in table
quotechar : str
One-character string to quote fields containing special characters
formats : dict
Dictionary of format specifiers or formatting functions
strip_whitespace : bool
Strip surrounding whitespace from column values.
names : list
List of names corresponding to each data column
include_names : list
List of names to include in output.
exclude_names : list
List of names to exclude from output (applied after ``include_names``)
fast_writer : bool
Whether to use the fast Cython writer.
overwrite : bool
If ``overwrite=None`` (default) and the file exists, then a
warning will be issued. In a future release this will instead
generate an exception. If ``overwrite=False`` and the file
exists, then an exception is raised.
This parameter is ignored when the ``output`` arg is not a string
(e.g., a file object).
"""
| read_docstring = "\n Read the input ``table`` and return the table. Most of\n the default behavior for various parameters is determined by the Reader\n class.\n\n See also:\n\n - http://docs.astropy.org/en/stable/io/ascii/\n - http://docs.astropy.org/en/stable/io/ascii/read.html\n\n Parameters\n ----------\n table : str, file-like, list, `pathlib.Path` object\n Input table as a file name, file-like object, list of strings,\n single newline-separated string or `pathlib.Path` object .\n guess : bool\n Try to guess the table format. Defaults to None.\n format : str, `~astropy.io.ascii.BaseReader`\n Input table format\n Inputter : `~astropy.io.ascii.BaseInputter`\n Inputter class\n Outputter : `~astropy.io.ascii.BaseOutputter`\n Outputter class\n delimiter : str\n Column delimiter string\n comment : str\n Regular expression defining a comment line in table\n quotechar : str\n One-character string to quote fields containing special characters\n header_start : int\n Line index for the header line not counting comment or blank lines.\n A line with only whitespace is considered blank.\n data_start : int\n Line index for the start of data not counting comment or blank lines.\n A line with only whitespace is considered blank.\n data_end : int\n Line index for the end of data not counting comment or blank lines.\n This value can be negative to count from the end.\n converters : dict\n Dictionary of converters\n data_Splitter : `~astropy.io.ascii.BaseSplitter`\n Splitter class to split data columns\n header_Splitter : `~astropy.io.ascii.BaseSplitter`\n Splitter class to split header columns\n names : list\n List of names corresponding to each data column\n include_names : list\n List of names to include in output.\n exclude_names : list\n List of names to exclude from output (applied after ``include_names``)\n fill_values : dict\n specification of fill values for bad or missing table values\n fill_include_names : list\n List of names to include in fill_values.\n fill_exclude_names : list\n List of names to exclude from fill_values (applied after ``fill_include_names``)\n fast_reader : bool or dict\n Whether to use the C engine, can also be a dict with options which\n defaults to `False`; parameters for options dict:\n\n use_fast_converter: bool\n enable faster but slightly imprecise floating point conversion method\n parallel: bool or int\n multiprocessing conversion using ``cpu_count()`` or ``'number'`` processes\n exponent_style: str\n One-character string defining the exponent or ``'Fortran'`` to auto-detect\n Fortran-style scientific notation like ``'3.14159D+00'`` (``'E'``, ``'D'``, ``'Q'``),\n all case-insensitive; default ``'E'``, all other imply ``use_fast_converter``\n chunk_size : int\n If supplied with a value > 0 then read the table in chunks of\n approximately ``chunk_size`` bytes. Default is reading table in one pass.\n chunk_generator : bool\n If True and ``chunk_size > 0`` then return an iterator that returns a\n table for each chunk. The default is to return a single stacked table\n for all the chunks.\n\n encoding : str\n Allow to specify encoding to read the file (default= ``None``).\n\n Returns\n -------\n dat : `~astropy.table.Table` OR <generator>\n Output table\n\n "
write_docstring = "\n Write the input ``table`` to ``filename``. Most of the default behavior\n for various parameters is determined by the Writer class.\n\n See also:\n\n - http://docs.astropy.org/en/stable/io/ascii/\n - http://docs.astropy.org/en/stable/io/ascii/write.html\n\n Parameters\n ----------\n table : `~astropy.io.ascii.BaseReader`, array_like, str, file_like, list\n Input table as a Reader object, Numpy struct array, file name,\n file-like object, list of strings, or single newline-separated string.\n output : str, file_like\n Output [filename, file-like object]. Defaults to``sys.stdout``.\n format : str\n Output table format. Defaults to 'basic'.\n delimiter : str\n Column delimiter string\n comment : str\n String defining a comment line in table\n quotechar : str\n One-character string to quote fields containing special characters\n formats : dict\n Dictionary of format specifiers or formatting functions\n strip_whitespace : bool\n Strip surrounding whitespace from column values.\n names : list\n List of names corresponding to each data column\n include_names : list\n List of names to include in output.\n exclude_names : list\n List of names to exclude from output (applied after ``include_names``)\n fast_writer : bool\n Whether to use the fast Cython writer.\n overwrite : bool\n If ``overwrite=None`` (default) and the file exists, then a\n warning will be issued. In a future release this will instead\n generate an exception. If ``overwrite=False`` and the file\n exists, then an exception is raised.\n This parameter is ignored when the ``output`` arg is not a string\n (e.g., a file object).\n\n " |
# -*- coding: utf-8 -*-
"""
Internal exceptions
===================
"""
class NotRegisteredError(KeyError):
pass
class UnknowConfigError(KeyError):
pass
class UnknowModeError(KeyError):
pass
class UnknowThemeError(KeyError):
pass
class CodeMirrorFieldBundleError(KeyError):
pass
| """
Internal exceptions
===================
"""
class Notregisterederror(KeyError):
pass
class Unknowconfigerror(KeyError):
pass
class Unknowmodeerror(KeyError):
pass
class Unknowthemeerror(KeyError):
pass
class Codemirrorfieldbundleerror(KeyError):
pass |
pod_examples = [
dict(
apiVersion='v1',
kind='Pod',
metadata=dict(
name='good',
namespace='default'
),
spec=dict(
serviceAccountName='default'
)
),
dict(
apiVersion='v1',
kind='Pod',
metadata=dict(
name='bad',
namespace='default'
),
spec=dict(
serviceAccountName='bad'
)
),
dict(
apiVersion='v1',
kind='Pod',
metadata=dict(
name='raise',
namespace='default'
),
spec=dict(
serviceAccountName='bad'
)
)
]
| pod_examples = [dict(apiVersion='v1', kind='Pod', metadata=dict(name='good', namespace='default'), spec=dict(serviceAccountName='default')), dict(apiVersion='v1', kind='Pod', metadata=dict(name='bad', namespace='default'), spec=dict(serviceAccountName='bad')), dict(apiVersion='v1', kind='Pod', metadata=dict(name='raise', namespace='default'), spec=dict(serviceAccountName='bad'))] |
######################################################################
#
# Copyright (C) 2013
# Associated Universities, Inc. Washington DC, USA,
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Library General Public License as published by
# the Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This library is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
# License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with this library; if not, write to the Free Software Foundation,
# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
#
# Correspondence concerning VLA Pipelines should be addressed as follows:
# Please register and submit helpdesk tickets via: https://help.nrao.edu
# Postal address:
# National Radio Astronomy Observatory
# VLA Pipeline Support Office
# PO Box O
# Socorro, NM, USA
#
######################################################################
# Version that removes rflagging for spectral line data
# CHECKING FLAGGING OF ALL CALIBRATED DATA, INCLUDING TARGET
# use rflag mode of flagdata
logprint("Starting EVLA_pipe_targetflag_lines.py", logfileout='logs/targetflag.log')
time_list = runtiming('checkflag', 'start')
QA2_targetflag = 'Pass'
logprint("Checking RFI flagging of all targets",
logfileout='logs/targetflag.log')
# Run on all calibrator scans
default('flagdata')
vis = ms_active
mode = 'rflag'
field = ''
correlation = 'ABS_' + corrstring
scan = ''
intent = '*CALIBRATE*'
ntime = 'scan'
combinescans = False
datacolumn = 'corrected'
winsize = 3
timedevscale = 4.0
freqdevscale = 4.0
extendflags = False
action = 'apply'
display = ''
flagbackup = True
savepars = True
flagdata()
# clearstat()
# Save final version of flags
default('flagmanager')
vis = ms_active
mode = 'save'
versionname = 'finalflags'
comment = 'Final flags saved after calibrations and rflag'
merge = 'replace'
flagmanager()
logprint("Flag column saved to " + versionname,
logfileout='logs/targetflag.log')
# calculate final flag statistics
default('flagdata')
vis = ms_active
mode = 'summary'
spwchan = True
spwcorr = True
basecnt = True
action = 'calculate'
savepars = False
final_flags = flagdata()
frac_flagged_on_source2 = 1.0 - \
((start_total - final_flags['flagged']) / init_on_source_vis)
logprint("Final fraction of on-source data flagged = " +
str(frac_flagged_on_source2), logfileout='logs/targetflag.log')
if (frac_flagged_on_source2 >= 0.6):
QA2_targetflag = 'Fail'
logprint("QA2 score: " + QA2_targetflag, logfileout='logs/targetflag.log')
logprint("Finished EVLA_pipe_targetflag_lines.py", logfileout='logs/targetflag.log')
time_list = runtiming('targetflag', 'end')
pipeline_save()
######################################################################
| logprint('Starting EVLA_pipe_targetflag_lines.py', logfileout='logs/targetflag.log')
time_list = runtiming('checkflag', 'start')
qa2_targetflag = 'Pass'
logprint('Checking RFI flagging of all targets', logfileout='logs/targetflag.log')
default('flagdata')
vis = ms_active
mode = 'rflag'
field = ''
correlation = 'ABS_' + corrstring
scan = ''
intent = '*CALIBRATE*'
ntime = 'scan'
combinescans = False
datacolumn = 'corrected'
winsize = 3
timedevscale = 4.0
freqdevscale = 4.0
extendflags = False
action = 'apply'
display = ''
flagbackup = True
savepars = True
flagdata()
default('flagmanager')
vis = ms_active
mode = 'save'
versionname = 'finalflags'
comment = 'Final flags saved after calibrations and rflag'
merge = 'replace'
flagmanager()
logprint('Flag column saved to ' + versionname, logfileout='logs/targetflag.log')
default('flagdata')
vis = ms_active
mode = 'summary'
spwchan = True
spwcorr = True
basecnt = True
action = 'calculate'
savepars = False
final_flags = flagdata()
frac_flagged_on_source2 = 1.0 - (start_total - final_flags['flagged']) / init_on_source_vis
logprint('Final fraction of on-source data flagged = ' + str(frac_flagged_on_source2), logfileout='logs/targetflag.log')
if frac_flagged_on_source2 >= 0.6:
qa2_targetflag = 'Fail'
logprint('QA2 score: ' + QA2_targetflag, logfileout='logs/targetflag.log')
logprint('Finished EVLA_pipe_targetflag_lines.py', logfileout='logs/targetflag.log')
time_list = runtiming('targetflag', 'end')
pipeline_save() |
regularServingPancakes = 24
cupsOfFlourrPer24Pancakes = 4.5
noOfEggsPer24Pancakes = 4
litresOfMilkPer24Pancakes = 1
noOfPancakes = float(input("How many pancakes do you want to make: "))
expectedCupsOfFlour = ( noOfPancakes / regularServingPancakes ) * \
cupsOfFlourrPer24Pancakes
expectedNoOfEggs = ( noOfPancakes / regularServingPancakes ) * \
noOfEggsPer24Pancakes
expectedLitresOfMilk = ( noOfPancakes / regularServingPancakes ) * \
litresOfMilkPer24Pancakes
print ( "For " + str(noOfPancakes ) + " you will need " + \
str( expectedCupsOfFlour ) + " cups of flour " + \
str( expectedNoOfEggs ) + " eggs " + \
str( expectedLitresOfMilk ) + " litres of milk" )
| regular_serving_pancakes = 24
cups_of_flourr_per24_pancakes = 4.5
no_of_eggs_per24_pancakes = 4
litres_of_milk_per24_pancakes = 1
no_of_pancakes = float(input('How many pancakes do you want to make: '))
expected_cups_of_flour = noOfPancakes / regularServingPancakes * cupsOfFlourrPer24Pancakes
expected_no_of_eggs = noOfPancakes / regularServingPancakes * noOfEggsPer24Pancakes
expected_litres_of_milk = noOfPancakes / regularServingPancakes * litresOfMilkPer24Pancakes
print('For ' + str(noOfPancakes) + ' you will need ' + str(expectedCupsOfFlour) + ' cups of flour ' + str(expectedNoOfEggs) + ' eggs ' + str(expectedLitresOfMilk) + ' litres of milk') |
def generated_per_next_split(max_day):
# generate a table saying how many lanternfish result from a lanternfish
# which next split is on a given day
table = {}
for i in range(max_day+10, 0, -1):
table[i] = 1 if i >= max_day else (table[i+7] + table[i+9])
return table
def solve(next_splits, max_day):
table = generated_per_next_split(max_day)
return sum([table[next_split] for next_split in next_splits])
def parse(input_path):
with open(input_path, 'r') as f:
return list(map(int, f.readline().split(',')))
if __name__ == "__main__":
parsed = parse("data.txt")
print('Part 1 :', solve(parsed, 80))
print('Part 2 :', solve(parsed, 256))
| def generated_per_next_split(max_day):
table = {}
for i in range(max_day + 10, 0, -1):
table[i] = 1 if i >= max_day else table[i + 7] + table[i + 9]
return table
def solve(next_splits, max_day):
table = generated_per_next_split(max_day)
return sum([table[next_split] for next_split in next_splits])
def parse(input_path):
with open(input_path, 'r') as f:
return list(map(int, f.readline().split(',')))
if __name__ == '__main__':
parsed = parse('data.txt')
print('Part 1 :', solve(parsed, 80))
print('Part 2 :', solve(parsed, 256)) |
n = int(input())
xs = []
ys = []
numToPosX = dict()
numToPosY = dict()
for i in range(n):
x, y = list(map(float, input().split()))
numToPosX.setdefault(x, i)
numToPosY.setdefault(y, i)
xs.append(x)
ys.append(y)
xs.sort()
ys.sort()
resX = [0] * n
resY = [0] * n
for i in range(n):
resX[numToPosX[xs[i]]] = i
resY[numToPosY[ys[i]]] = i
print(format(1.0 - 6.0 * sum(map(lambda x: (x[0] - x[1]) ** 2, zip(resX, resY)))/(n ** 3 - n), ".9f")) | n = int(input())
xs = []
ys = []
num_to_pos_x = dict()
num_to_pos_y = dict()
for i in range(n):
(x, y) = list(map(float, input().split()))
numToPosX.setdefault(x, i)
numToPosY.setdefault(y, i)
xs.append(x)
ys.append(y)
xs.sort()
ys.sort()
res_x = [0] * n
res_y = [0] * n
for i in range(n):
resX[numToPosX[xs[i]]] = i
resY[numToPosY[ys[i]]] = i
print(format(1.0 - 6.0 * sum(map(lambda x: (x[0] - x[1]) ** 2, zip(resX, resY))) / (n ** 3 - n), '.9f')) |
def setup():
size(400,400)
stroke(225)
background(192, 64, 0)
def draw():
line(200, 200, mouseX, mouseY)
def mousePressed():
saveFrame("Output.png")
| def setup():
size(400, 400)
stroke(225)
background(192, 64, 0)
def draw():
line(200, 200, mouseX, mouseY)
def mouse_pressed():
save_frame('Output.png') |
class random:
def __init__(self, animaltype, name, canfly):
self.animaltype = animaltype
self.name = name
self.fly = canfly
def getanimaltype(self):
return self.animaltype
def getobjects(self):
print('{} {} {}'.format(self.animaltype, self.name, self.fly))
ok = random('bird', 'penguin', 'no').getobjects()
| class Random:
def __init__(self, animaltype, name, canfly):
self.animaltype = animaltype
self.name = name
self.fly = canfly
def getanimaltype(self):
return self.animaltype
def getobjects(self):
print('{} {} {}'.format(self.animaltype, self.name, self.fly))
ok = random('bird', 'penguin', 'no').getobjects() |
class ValidationResult:
def __init__(self, is_success, error_message=None):
self.is_success = is_success
self.error_message = error_message
@classmethod
def success(cls):
return cls(True)
@classmethod
def error(cls, error_message):
return cls(False, error_message)
print(ValidationResult(True).__dict__)
print(ValidationResult(False, "Some error").__dict__)
print(ValidationResult.success().__dict__)
print(ValidationResult.error('Another error').__dict__)
class Pizza:
def __init__(self, ingredients):
self.ingredients = ['bread'] + ingredients
@classmethod
def pepperoni(cls):
return cls(['tomato sauce', 'parmesan', 'pepperoni'])
class ItalianPizza(Pizza):
def __init__(self, ingredients):
super().__init__(ingredients)
self.ingredients = ['italian bread'] + ingredients
print(Pizza.pepperoni().__dict__)
print(Pizza(['tomato sauce', 'parmesan', 'pepperoni']).__dict__)
print(ItalianPizza.pepperoni().__dict__)
| class Validationresult:
def __init__(self, is_success, error_message=None):
self.is_success = is_success
self.error_message = error_message
@classmethod
def success(cls):
return cls(True)
@classmethod
def error(cls, error_message):
return cls(False, error_message)
print(validation_result(True).__dict__)
print(validation_result(False, 'Some error').__dict__)
print(ValidationResult.success().__dict__)
print(ValidationResult.error('Another error').__dict__)
class Pizza:
def __init__(self, ingredients):
self.ingredients = ['bread'] + ingredients
@classmethod
def pepperoni(cls):
return cls(['tomato sauce', 'parmesan', 'pepperoni'])
class Italianpizza(Pizza):
def __init__(self, ingredients):
super().__init__(ingredients)
self.ingredients = ['italian bread'] + ingredients
print(Pizza.pepperoni().__dict__)
print(pizza(['tomato sauce', 'parmesan', 'pepperoni']).__dict__)
print(ItalianPizza.pepperoni().__dict__) |
def eval_chunk_size(rm):
chunks = []
chunk_size = 0
for row in range(rm.max_row):
for col in range(rm.max_col):
if (rm.seats[row][col] == None or rm.seats[row][col].sid == -1) and chunk_size > 0:
chunks.append(chunk_size)
chunk_size = 0
else:
chunk_size += 1
if chunk_size > 0:
chunks.append(chunk_size)
chunk_size = 0
score = sum(chunks) / len(chunks)
# Remove decimals past 2 sigfigs
score *= 100
score = round(score) / 100
print(score)
| def eval_chunk_size(rm):
chunks = []
chunk_size = 0
for row in range(rm.max_row):
for col in range(rm.max_col):
if (rm.seats[row][col] == None or rm.seats[row][col].sid == -1) and chunk_size > 0:
chunks.append(chunk_size)
chunk_size = 0
else:
chunk_size += 1
if chunk_size > 0:
chunks.append(chunk_size)
chunk_size = 0
score = sum(chunks) / len(chunks)
score *= 100
score = round(score) / 100
print(score) |
class Circle:
def __init__(self,d):
self.diameter=d
self.__pi=3.14
def calculate_circumference(self):
c=self.__pi*self.diameter
return c
def calculate_area(self):
r=self.diameter/2
return self.__pi*(r*r)
def calculate_area_of_sector(self,angle):
c=self.calculate_circumference(); r=self.diameter/2
a=(angle*c)/360
sectorS=(r/2)*a
return sectorS
#test
circle1=Circle(10)
print(f"{circle1.calculate_circumference():.2f}\n{circle1.calculate_area():.2f}\n{circle1.calculate_area_of_sector(5):.2f}")
| class Circle:
def __init__(self, d):
self.diameter = d
self.__pi = 3.14
def calculate_circumference(self):
c = self.__pi * self.diameter
return c
def calculate_area(self):
r = self.diameter / 2
return self.__pi * (r * r)
def calculate_area_of_sector(self, angle):
c = self.calculate_circumference()
r = self.diameter / 2
a = angle * c / 360
sector_s = r / 2 * a
return sectorS
circle1 = circle(10)
print(f'{circle1.calculate_circumference():.2f}\n{circle1.calculate_area():.2f}\n{circle1.calculate_area_of_sector(5):.2f}') |
# cxd
class Solution:
def threeSumClosest(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: int
"""
nums.sort()
ret = nums[0] + nums[1] + nums[-1]
value = abs(nums[0] + nums[1] + nums[-1] - target)
i = 0
while i < len(nums)-2:
k = len(nums)-1
j = i+1
while j < k:
if abs(nums[i] + nums[j] + nums[k] - target) < value:
ret = nums[i] + nums[j] + nums[k]
value = abs(nums[i] + nums[j] + nums[k] - target)
if nums[i] + nums[j] + nums[k] - target > 0:
k -= 1
elif nums[i] + nums[j] + nums[k] - target < 0:
j += 1
else:
# value = 0
return nums[i] + nums[j] + nums[k]
i += 1
while i < len(nums)-2 and nums[i] == nums[i-1]:
i += 1
return ret
# lmf
class Solution(object):
def threeSumClosest(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: int
"""
if not nums:
return 0
nums.sort()
res = 2**32 - 1
for i in range(len(nums)-2):
j = i + 1
k = len(nums) - 1
while j < k:
sum = nums[i] + nums[j] + nums[k]
if sum == target:
return target
elif sum > target:
k -= 1
else:
j += 1
res = sum if abs(sum - target) < abs(res - target) else res
return res
s = Solution()
nums = [-1, 2, 1, -4]
target = 1
print(s.threeSumClosest(nums, target))
| class Solution:
def three_sum_closest(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: int
"""
nums.sort()
ret = nums[0] + nums[1] + nums[-1]
value = abs(nums[0] + nums[1] + nums[-1] - target)
i = 0
while i < len(nums) - 2:
k = len(nums) - 1
j = i + 1
while j < k:
if abs(nums[i] + nums[j] + nums[k] - target) < value:
ret = nums[i] + nums[j] + nums[k]
value = abs(nums[i] + nums[j] + nums[k] - target)
if nums[i] + nums[j] + nums[k] - target > 0:
k -= 1
elif nums[i] + nums[j] + nums[k] - target < 0:
j += 1
else:
return nums[i] + nums[j] + nums[k]
i += 1
while i < len(nums) - 2 and nums[i] == nums[i - 1]:
i += 1
return ret
class Solution(object):
def three_sum_closest(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: int
"""
if not nums:
return 0
nums.sort()
res = 2 ** 32 - 1
for i in range(len(nums) - 2):
j = i + 1
k = len(nums) - 1
while j < k:
sum = nums[i] + nums[j] + nums[k]
if sum == target:
return target
elif sum > target:
k -= 1
else:
j += 1
res = sum if abs(sum - target) < abs(res - target) else res
return res
s = solution()
nums = [-1, 2, 1, -4]
target = 1
print(s.threeSumClosest(nums, target)) |
class Solution:
def coinChange(self, coins: List[int], amount: int) -> int:
amounts = [float('inf')] * (amount + 1)
amounts[0] = 0
for coin in coins:
for amt in range(coin, amount + 1):
amounts[amt] = min(amounts[amt], amounts[amt - coin] + 1)
if amounts[amount] == float('inf'):
return -1
return amounts[amount]
| class Solution:
def coin_change(self, coins: List[int], amount: int) -> int:
amounts = [float('inf')] * (amount + 1)
amounts[0] = 0
for coin in coins:
for amt in range(coin, amount + 1):
amounts[amt] = min(amounts[amt], amounts[amt - coin] + 1)
if amounts[amount] == float('inf'):
return -1
return amounts[amount] |
""" Lottery module """
class Astro:
""" Create an Astro ticket """
def __init__(self):
"""
Initialize Astro ticket
"""
self.name = "Astro"
| """ Lottery module """
class Astro:
""" Create an Astro ticket """
def __init__(self):
"""
Initialize Astro ticket
"""
self.name = 'Astro' |
"""
Tests if nose can see the test directory
"""
def test_true():
assert True
| """
Tests if nose can see the test directory
"""
def test_true():
assert True |
"""
This script contains some global variables that are used throughout this specific dataset.
"""
# Dataset file names
raw_input_file_all = '/home/travail/datasets/urban_tracker/sherbrooke/sherbrooke_annotations/sherbrooke_gt.sqlite'
input_raw_image_frame_path = '/home/travail/datasets/urban_tracker/sherbrooke/sherbrooke_frames/'
raw_input_file_peds = raw_input_file_all[:raw_input_file_all.rfind('.')] + '_pedestrians.sqlite'
raw_input_file_cars = raw_input_file_all[:raw_input_file_all.rfind('.')] + '_cars.sqlite'
raw_input_file_names = [raw_input_file_peds, raw_input_file_cars]
raw_input_file_all_2 = 'C:/Users/panka/PyCharmProjects/Dataset/sherbrooke_annotations/sherbrooke_annotations/sherbrooke_gt.sqlite'
input_raw_image_frame_path_2 = 'C:/Users/panka/PyCharmProjects/Dataset/sherbrooke_frames/sherbrooke_frames/'
raw_input_file_peds_2 = raw_input_file_all_2[:raw_input_file_all_2.rfind('.')] + '_pedestrians.sqlite'
raw_input_file_cars_2 = raw_input_file_all_2[:raw_input_file_all_2.rfind('.')] + '_cars.sqlite'
raw_input_file_names_2 = [raw_input_file_peds_2, raw_input_file_cars_2]
# Used for generating velocities
video_data_fps = 30
best_deep_ae_model = 58
| """
This script contains some global variables that are used throughout this specific dataset.
"""
raw_input_file_all = '/home/travail/datasets/urban_tracker/sherbrooke/sherbrooke_annotations/sherbrooke_gt.sqlite'
input_raw_image_frame_path = '/home/travail/datasets/urban_tracker/sherbrooke/sherbrooke_frames/'
raw_input_file_peds = raw_input_file_all[:raw_input_file_all.rfind('.')] + '_pedestrians.sqlite'
raw_input_file_cars = raw_input_file_all[:raw_input_file_all.rfind('.')] + '_cars.sqlite'
raw_input_file_names = [raw_input_file_peds, raw_input_file_cars]
raw_input_file_all_2 = 'C:/Users/panka/PyCharmProjects/Dataset/sherbrooke_annotations/sherbrooke_annotations/sherbrooke_gt.sqlite'
input_raw_image_frame_path_2 = 'C:/Users/panka/PyCharmProjects/Dataset/sherbrooke_frames/sherbrooke_frames/'
raw_input_file_peds_2 = raw_input_file_all_2[:raw_input_file_all_2.rfind('.')] + '_pedestrians.sqlite'
raw_input_file_cars_2 = raw_input_file_all_2[:raw_input_file_all_2.rfind('.')] + '_cars.sqlite'
raw_input_file_names_2 = [raw_input_file_peds_2, raw_input_file_cars_2]
video_data_fps = 30
best_deep_ae_model = 58 |
if __name__ == "__main__":
s = 'A\tB\tC'
print(len(s))
print(ord('\n'))
s = 'A\0B\0C'
print(len(s))
print(s)
print('-' * 50)
msg = """
aaaaaaaaa
bbbbbb''''bbbbb
ccccccc
"""
print(msg)
| if __name__ == '__main__':
s = 'A\tB\tC'
print(len(s))
print(ord('\n'))
s = 'A\x00B\x00C'
print(len(s))
print(s)
print('-' * 50)
msg = "\n aaaaaaaaa\n bbbbbb''''bbbbb\n ccccccc\n "
print(msg) |
def partial_async_gen(f, *args):
"""
Returns an async generator function which is equalivalent to the passed in function,
but only takes in one parameter (the first one).
"""
async def inner(first_param):
async for x in f(first_param, *args):
yield x
return inner
def partial_async(f, *args):
"""
Returns an async function which is equalivalent to the passed in function,
but only takes in one parameter (the first one).
"""
async def inner(first_param):
return await f(first_param, *args)
return inner
| def partial_async_gen(f, *args):
"""
Returns an async generator function which is equalivalent to the passed in function,
but only takes in one parameter (the first one).
"""
async def inner(first_param):
async for x in f(first_param, *args):
yield x
return inner
def partial_async(f, *args):
"""
Returns an async function which is equalivalent to the passed in function,
but only takes in one parameter (the first one).
"""
async def inner(first_param):
return await f(first_param, *args)
return inner |
names = ["Katya", "Max", "Oleksii", "Olesya", "Oleh", "Yaroslav", "Anastasiia"]
age = [25, 54, 18, 23, 45, 21, 21]
isPaid = [True, False, True, True, False, True, False]
namesFromDatabaseClear = names.index("Max")
ageMax = age[namesFromDatabaseClear]
print(ageMax)
| names = ['Katya', 'Max', 'Oleksii', 'Olesya', 'Oleh', 'Yaroslav', 'Anastasiia']
age = [25, 54, 18, 23, 45, 21, 21]
is_paid = [True, False, True, True, False, True, False]
names_from_database_clear = names.index('Max')
age_max = age[namesFromDatabaseClear]
print(ageMax) |
# -*- coding: utf-8 -*-
SEXO = (
('F', 'Feminino'),
('M', 'Masculino'),
) | sexo = (('F', 'Feminino'), ('M', 'Masculino')) |
"""Exports Standard Interface Template boundary conditions."""
# 1. Standard python modules
# 2. Third party modules
# 3. Aquaveo modules
# 4. Local modules
__copyright__ = "(C) Copyright Aquaveo 2020"
__license__ = "All rights reserved"
class BoundaryConditionsWriter:
"""A class for writing out boundary condition data for the Standard Interface Template."""
def __init__(self, file_name, arc_to_ids, arc_points, bc_component):
"""
Constructor.
Args:
file_name (str): The name of the file to write.
arc_to_ids (dict): The arc to component id of the boundary conditions component.
arc_points (dict): The arc to node ids of the grid.
bc_component (BoundaryCoverageComponent): The boundary conditions data to export.
"""
self._file_name = file_name
self._data = bc_component
self._arc_to_component_id = arc_to_ids
self._arc_to_node_ids = arc_points
def write(self):
"""Write the simulation file."""
with open(self._file_name, 'w') as file:
file.write('###This is a boundary conditions file for Standard Interface Template.###\n')
df = self._data.data.coverage_data.to_dataframe()
for arc, component_id in self._arc_to_component_id.items():
df_row = df.loc[df['comp_id'] == component_id]
if df_row.empty:
# Write default values.
file.write(f'BC {arc} A "Hello World!"\n')
else:
# Write values.
file.write(f'BC {arc} {df_row.user_option[0]} "{df_row.user_text[0]}"\n')
file.write('Points:')
if arc in self._arc_to_node_ids:
for node in self._arc_to_node_ids[arc]:
file.write(f' {node + 1}')
file.write('\n')
| """Exports Standard Interface Template boundary conditions."""
__copyright__ = '(C) Copyright Aquaveo 2020'
__license__ = 'All rights reserved'
class Boundaryconditionswriter:
"""A class for writing out boundary condition data for the Standard Interface Template."""
def __init__(self, file_name, arc_to_ids, arc_points, bc_component):
"""
Constructor.
Args:
file_name (str): The name of the file to write.
arc_to_ids (dict): The arc to component id of the boundary conditions component.
arc_points (dict): The arc to node ids of the grid.
bc_component (BoundaryCoverageComponent): The boundary conditions data to export.
"""
self._file_name = file_name
self._data = bc_component
self._arc_to_component_id = arc_to_ids
self._arc_to_node_ids = arc_points
def write(self):
"""Write the simulation file."""
with open(self._file_name, 'w') as file:
file.write('###This is a boundary conditions file for Standard Interface Template.###\n')
df = self._data.data.coverage_data.to_dataframe()
for (arc, component_id) in self._arc_to_component_id.items():
df_row = df.loc[df['comp_id'] == component_id]
if df_row.empty:
file.write(f'BC {arc} A "Hello World!"\n')
else:
file.write(f'BC {arc} {df_row.user_option[0]} "{df_row.user_text[0]}"\n')
file.write('Points:')
if arc in self._arc_to_node_ids:
for node in self._arc_to_node_ids[arc]:
file.write(f' {node + 1}')
file.write('\n') |
"""This package contains modules for working with Fireplace devices."""
__all__ = (
"fireplace",
"fireplace_device",
"fireplace_light_exception",
"fireplace_pilot_light_event",
"fireplace_state",
"fireplace_state_change_event",
"fireplace_timeout_event"
)
| """This package contains modules for working with Fireplace devices."""
__all__ = ('fireplace', 'fireplace_device', 'fireplace_light_exception', 'fireplace_pilot_light_event', 'fireplace_state', 'fireplace_state_change_event', 'fireplace_timeout_event') |
"""
Instruction names
"""
POP_TOP = 'POP_TOP'
ROT_TWO = 'ROT_TWO'
ROT_THREE = 'ROT_THREE'
DUP_TOP = 'DUP_TOP'
DUP_TOP_TWO = 'DUP_TOP_TWO'
NOP = 'NOP'
UNARY_POSITIVE = 'UNARY_POSITIVE'
UNARY_NEGATIVE = 'UNARY_NEGATIVE'
UNARY_NOT = 'UNARY_NOT'
UNARY_INVERT = 'UNARY_INVERT'
BINARY_MATRIX_MULTIPLY = 'BINARY_MATRIX_MULTIPLY'
INPLACE_MATRIX_MULTIPLY = 'INPLACE_MATRIX_MULTIPLY'
BINARY_POWER = 'BINARY_POWER'
BINARY_MULTIPLY = 'BINARY_MULTIPLY'
BINARY_MODULO = 'BINARY_MODULO'
BINARY_ADD = 'BINARY_ADD'
BINARY_SUBTRACT = 'BINARY_SUBTRACT'
BINARY_SUBSCR = 'BINARY_SUBSCR'
BINARY_FLOOR_DIVIDE = 'BINARY_FLOOR_DIVIDE'
BINARY_TRUE_DIVIDE = 'BINARY_TRUE_DIVIDE'
INPLACE_FLOOR_DIVIDE = 'INPLACE_FLOOR_DIVIDE'
INPLACE_TRUE_DIVIDE = 'INPLACE_TRUE_DIVIDE'
GET_AITER = 'GET_AITER'
GET_ANEXT = 'GET_ANEXT'
BEFORE_ASYNC_WITH = 'BEFORE_ASYNC_WITH'
INPLACE_ADD = 'INPLACE_ADD'
INPLACE_SUBTRACT = 'INPLACE_SUBTRACT'
INPLACE_MULTIPLY = 'INPLACE_MULTIPLY'
INPLACE_MODULO = 'INPLACE_MODULO'
STORE_SUBSCR = 'STORE_SUBSCR'
DELETE_SUBSCR = 'DELETE_SUBSCR'
BINARY_LSHIFT = 'BINARY_LSHIFT'
BINARY_RSHIFT = 'BINARY_RSHIFT'
BINARY_AND = 'BINARY_AND'
BINARY_XOR = 'BINARY_XOR'
BINARY_OR = 'BINARY_OR'
INPLACE_POWER = 'INPLACE_POWER'
GET_ITER = 'GET_ITER'
GET_YIELD_FROM_ITER = 'GET_YIELD_FROM_ITER'
PRINT_EXPR = 'PRINT_EXPR'
LOAD_BUILD_CLASS = 'LOAD_BUILD_CLASS'
YIELD_FROM = 'YIELD_FROM'
GET_AWAITABLE = 'GET_AWAITABLE'
INPLACE_LSHIFT = 'INPLACE_LSHIFT'
INPLACE_RSHIFT = 'INPLACE_RSHIFT'
INPLACE_AND = 'INPLACE_AND'
INPLACE_XOR = 'INPLACE_XOR'
INPLACE_OR = 'INPLACE_OR'
BREAK_LOOP = 'BREAK_LOOP'
WITH_CLEANUP_START = 'WITH_CLEANUP_START'
WITH_CLEANUP_FINISH = 'WITH_CLEANUP_FINISH'
RETURN_VALUE = 'RETURN_VALUE'
IMPORT_STAR = 'IMPORT_STAR'
SETUP_ANNOTATIONS = 'SETUP_ANNOTATIONS'
YIELD_VALUE = 'YIELD_VALUE'
POP_BLOCK = 'POP_BLOCK'
END_FINALLY = 'END_FINALLY'
POP_EXCEPT = 'POP_EXCEPT'
STORE_NAME = 'STORE_NAME'
DELETE_NAME = 'DELETE_NAME'
UNPACK_SEQUENCE = 'UNPACK_SEQUENCE'
FOR_ITER = 'FOR_ITER'
UNPACK_EX = 'UNPACK_EX'
STORE_ATTR = 'STORE_ATTR'
DELETE_ATTR = 'DELETE_ATTR'
STORE_GLOBAL = 'STORE_GLOBAL'
DELETE_GLOBAL = 'DELETE_GLOBAL'
LOAD_CONST = 'LOAD_CONST'
LOAD_NAME = 'LOAD_NAME'
BUILD_TUPLE = 'BUILD_TUPLE'
BUILD_LIST = 'BUILD_LIST'
BUILD_SET = 'BUILD_SET'
BUILD_MAP = 'BUILD_MAP'
LOAD_ATTR = 'LOAD_ATTR'
COMPARE_OP = 'COMPARE_OP'
IMPORT_NAME = 'IMPORT_NAME'
IMPORT_FROM = 'IMPORT_FROM'
JUMP_FORWARD = 'JUMP_FORWARD'
JUMP_IF_FALSE_OR_POP = 'JUMP_IF_FALSE_OR_POP'
JUMP_IF_TRUE_OR_POP = 'JUMP_IF_TRUE_OR_POP'
JUMP_ABSOLUTE = 'JUMP_ABSOLUTE'
POP_JUMP_IF_FALSE = 'POP_JUMP_IF_FALSE'
POP_JUMP_IF_TRUE = 'POP_JUMP_IF_TRUE'
LOAD_GLOBAL = 'LOAD_GLOBAL'
CONTINUE_LOOP = 'CONTINUE_LOOP'
SETUP_LOOP = 'SETUP_LOOP'
SETUP_EXCEPT = 'SETUP_EXCEPT'
SETUP_FINALLY = 'SETUP_FINALLY'
LOAD_FAST = 'LOAD_FAST'
STORE_FAST = 'STORE_FAST'
DELETE_FAST = 'DELETE_FAST'
RAISE_VARARGS = 'RAISE_VARARGS'
CALL_FUNCTION = 'CALL_FUNCTION'
MAKE_FUNCTION = 'MAKE_FUNCTION'
MAKE_CLOSURE = 'MAKE_CLOSURE'
BUILD_SLICE = 'BUILD_SLICE'
LOAD_CLOSURE = 'LOAD_CLOSURE'
LOAD_DEREF = 'LOAD_DEREF'
STORE_DEREF = 'STORE_DEREF'
DELETE_DEREF = 'DELETE_DEREF'
CALL_FUNCTION_KW = 'CALL_FUNCTION_KW'
CALL_FUNCTION_EX = 'CALL_FUNCTION_EX'
SETUP_WITH = 'SETUP_WITH'
LIST_APPEND = 'LIST_APPEND'
SET_ADD = 'SET_ADD'
MAP_ADD = 'MAP_ADD'
LOAD_CLASSDEREF = 'LOAD_CLASSDEREF'
EXTENDED_ARG = 'EXTENDED_ARG'
BUILD_LIST_UNPACK = 'BUILD_LIST_UNPACK'
BUILD_MAP_UNPACK = 'BUILD_MAP_UNPACK'
BUILD_MAP_UNPACK_WITH_CALL = 'BUILD_MAP_UNPACK_WITH_CALL'
BUILD_TUPLE_UNPACK = 'BUILD_TUPLE_UNPACK'
BUILD_SET_UNPACK = 'BUILD_SET_UNPACK'
SETUP_ASYNC_WITH = 'SETUP_ASYNC_WITH'
FORMAT_VALUE = 'FORMAT_VALUE'
BUILD_CONST_KEY_MAP = 'BUILD_CONST_KEY_MAP'
BUILD_STRING = 'BUILD_STRING'
BUILD_TUPLE_UNPACK_WITH_CALL = 'BUILD_TUPLE_UNPACK_WITH_CALL'
LOAD_METHOD = 'LOAD_METHOD'
CALL_METHOD = 'CALL_METHOD'
| """
Instruction names
"""
pop_top = 'POP_TOP'
rot_two = 'ROT_TWO'
rot_three = 'ROT_THREE'
dup_top = 'DUP_TOP'
dup_top_two = 'DUP_TOP_TWO'
nop = 'NOP'
unary_positive = 'UNARY_POSITIVE'
unary_negative = 'UNARY_NEGATIVE'
unary_not = 'UNARY_NOT'
unary_invert = 'UNARY_INVERT'
binary_matrix_multiply = 'BINARY_MATRIX_MULTIPLY'
inplace_matrix_multiply = 'INPLACE_MATRIX_MULTIPLY'
binary_power = 'BINARY_POWER'
binary_multiply = 'BINARY_MULTIPLY'
binary_modulo = 'BINARY_MODULO'
binary_add = 'BINARY_ADD'
binary_subtract = 'BINARY_SUBTRACT'
binary_subscr = 'BINARY_SUBSCR'
binary_floor_divide = 'BINARY_FLOOR_DIVIDE'
binary_true_divide = 'BINARY_TRUE_DIVIDE'
inplace_floor_divide = 'INPLACE_FLOOR_DIVIDE'
inplace_true_divide = 'INPLACE_TRUE_DIVIDE'
get_aiter = 'GET_AITER'
get_anext = 'GET_ANEXT'
before_async_with = 'BEFORE_ASYNC_WITH'
inplace_add = 'INPLACE_ADD'
inplace_subtract = 'INPLACE_SUBTRACT'
inplace_multiply = 'INPLACE_MULTIPLY'
inplace_modulo = 'INPLACE_MODULO'
store_subscr = 'STORE_SUBSCR'
delete_subscr = 'DELETE_SUBSCR'
binary_lshift = 'BINARY_LSHIFT'
binary_rshift = 'BINARY_RSHIFT'
binary_and = 'BINARY_AND'
binary_xor = 'BINARY_XOR'
binary_or = 'BINARY_OR'
inplace_power = 'INPLACE_POWER'
get_iter = 'GET_ITER'
get_yield_from_iter = 'GET_YIELD_FROM_ITER'
print_expr = 'PRINT_EXPR'
load_build_class = 'LOAD_BUILD_CLASS'
yield_from = 'YIELD_FROM'
get_awaitable = 'GET_AWAITABLE'
inplace_lshift = 'INPLACE_LSHIFT'
inplace_rshift = 'INPLACE_RSHIFT'
inplace_and = 'INPLACE_AND'
inplace_xor = 'INPLACE_XOR'
inplace_or = 'INPLACE_OR'
break_loop = 'BREAK_LOOP'
with_cleanup_start = 'WITH_CLEANUP_START'
with_cleanup_finish = 'WITH_CLEANUP_FINISH'
return_value = 'RETURN_VALUE'
import_star = 'IMPORT_STAR'
setup_annotations = 'SETUP_ANNOTATIONS'
yield_value = 'YIELD_VALUE'
pop_block = 'POP_BLOCK'
end_finally = 'END_FINALLY'
pop_except = 'POP_EXCEPT'
store_name = 'STORE_NAME'
delete_name = 'DELETE_NAME'
unpack_sequence = 'UNPACK_SEQUENCE'
for_iter = 'FOR_ITER'
unpack_ex = 'UNPACK_EX'
store_attr = 'STORE_ATTR'
delete_attr = 'DELETE_ATTR'
store_global = 'STORE_GLOBAL'
delete_global = 'DELETE_GLOBAL'
load_const = 'LOAD_CONST'
load_name = 'LOAD_NAME'
build_tuple = 'BUILD_TUPLE'
build_list = 'BUILD_LIST'
build_set = 'BUILD_SET'
build_map = 'BUILD_MAP'
load_attr = 'LOAD_ATTR'
compare_op = 'COMPARE_OP'
import_name = 'IMPORT_NAME'
import_from = 'IMPORT_FROM'
jump_forward = 'JUMP_FORWARD'
jump_if_false_or_pop = 'JUMP_IF_FALSE_OR_POP'
jump_if_true_or_pop = 'JUMP_IF_TRUE_OR_POP'
jump_absolute = 'JUMP_ABSOLUTE'
pop_jump_if_false = 'POP_JUMP_IF_FALSE'
pop_jump_if_true = 'POP_JUMP_IF_TRUE'
load_global = 'LOAD_GLOBAL'
continue_loop = 'CONTINUE_LOOP'
setup_loop = 'SETUP_LOOP'
setup_except = 'SETUP_EXCEPT'
setup_finally = 'SETUP_FINALLY'
load_fast = 'LOAD_FAST'
store_fast = 'STORE_FAST'
delete_fast = 'DELETE_FAST'
raise_varargs = 'RAISE_VARARGS'
call_function = 'CALL_FUNCTION'
make_function = 'MAKE_FUNCTION'
make_closure = 'MAKE_CLOSURE'
build_slice = 'BUILD_SLICE'
load_closure = 'LOAD_CLOSURE'
load_deref = 'LOAD_DEREF'
store_deref = 'STORE_DEREF'
delete_deref = 'DELETE_DEREF'
call_function_kw = 'CALL_FUNCTION_KW'
call_function_ex = 'CALL_FUNCTION_EX'
setup_with = 'SETUP_WITH'
list_append = 'LIST_APPEND'
set_add = 'SET_ADD'
map_add = 'MAP_ADD'
load_classderef = 'LOAD_CLASSDEREF'
extended_arg = 'EXTENDED_ARG'
build_list_unpack = 'BUILD_LIST_UNPACK'
build_map_unpack = 'BUILD_MAP_UNPACK'
build_map_unpack_with_call = 'BUILD_MAP_UNPACK_WITH_CALL'
build_tuple_unpack = 'BUILD_TUPLE_UNPACK'
build_set_unpack = 'BUILD_SET_UNPACK'
setup_async_with = 'SETUP_ASYNC_WITH'
format_value = 'FORMAT_VALUE'
build_const_key_map = 'BUILD_CONST_KEY_MAP'
build_string = 'BUILD_STRING'
build_tuple_unpack_with_call = 'BUILD_TUPLE_UNPACK_WITH_CALL'
load_method = 'LOAD_METHOD'
call_method = 'CALL_METHOD' |
cats_path = "python_crash_course/exceptions/cats.txt"
dogs_path = "python_crash_course/exceptions/dogs.txt"
try:
with open(cats_path) as file_object:
cats = file_object.read()
print("Koty:")
print(cats)
except FileNotFoundError:
pass
try:
with open(dogs_path) as file_object:
dogs = file_object.read()
print("\nPsy:")
print(dogs)
except FileNotFoundError:
pass
| cats_path = 'python_crash_course/exceptions/cats.txt'
dogs_path = 'python_crash_course/exceptions/dogs.txt'
try:
with open(cats_path) as file_object:
cats = file_object.read()
print('Koty:')
print(cats)
except FileNotFoundError:
pass
try:
with open(dogs_path) as file_object:
dogs = file_object.read()
print('\nPsy:')
print(dogs)
except FileNotFoundError:
pass |
def has_unique_chars(string: str) -> bool:
if len(string) == 1:
return True
unique = []
for item in string:
if item not in unique:
unique.append(item)
else:
return False
return True | def has_unique_chars(string: str) -> bool:
if len(string) == 1:
return True
unique = []
for item in string:
if item not in unique:
unique.append(item)
else:
return False
return True |
#
# PySNMP MIB module ChrComPmSonetSNT-PFE-Interval-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ChrComPmSonetSNT-PFE-Interval-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 18:20:44 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint")
chrComIfifIndex, = mibBuilder.importSymbols("ChrComIfifTable-MIB", "chrComIfifIndex")
TruthValue, = mibBuilder.importSymbols("ChrTyp-MIB", "TruthValue")
chrComPmSonet, = mibBuilder.importSymbols("Chromatis-MIB", "chrComPmSonet")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
TimeTicks, Bits, Gauge32, ModuleIdentity, iso, MibIdentifier, Counter64, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, Counter32, IpAddress, Integer32, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "Bits", "Gauge32", "ModuleIdentity", "iso", "MibIdentifier", "Counter64", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "Counter32", "IpAddress", "Integer32", "ObjectIdentity")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
chrComPmSonetSNT_PFE_IntervalTable = MibTable((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14), ).setLabel("chrComPmSonetSNT-PFE-IntervalTable")
if mibBuilder.loadTexts: chrComPmSonetSNT_PFE_IntervalTable.setStatus('current')
chrComPmSonetSNT_PFE_IntervalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1), ).setLabel("chrComPmSonetSNT-PFE-IntervalEntry").setIndexNames((0, "ChrComIfifTable-MIB", "chrComIfifIndex"), (0, "ChrComPmSonetSNT-PFE-Interval-MIB", "chrComPmSonetIntervalNumber"))
if mibBuilder.loadTexts: chrComPmSonetSNT_PFE_IntervalEntry.setStatus('current')
chrComPmSonetIntervalNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: chrComPmSonetIntervalNumber.setStatus('current')
chrComPmSonetSuspectedInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: chrComPmSonetSuspectedInterval.setStatus('current')
chrComPmSonetElapsedTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: chrComPmSonetElapsedTime.setStatus('current')
chrComPmSonetSuppressedIntrvls = MibTableColumn((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 4), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: chrComPmSonetSuppressedIntrvls.setStatus('current')
chrComPmSonetES = MibTableColumn((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 5), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: chrComPmSonetES.setStatus('current')
chrComPmSonetSES = MibTableColumn((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 6), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: chrComPmSonetSES.setStatus('current')
chrComPmSonetCV = MibTableColumn((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 7), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: chrComPmSonetCV.setStatus('current')
chrComPmSonetUAS = MibTableColumn((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 8), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: chrComPmSonetUAS.setStatus('current')
mibBuilder.exportSymbols("ChrComPmSonetSNT-PFE-Interval-MIB", chrComPmSonetCV=chrComPmSonetCV, chrComPmSonetElapsedTime=chrComPmSonetElapsedTime, chrComPmSonetUAS=chrComPmSonetUAS, chrComPmSonetES=chrComPmSonetES, chrComPmSonetSuspectedInterval=chrComPmSonetSuspectedInterval, chrComPmSonetSNT_PFE_IntervalTable=chrComPmSonetSNT_PFE_IntervalTable, chrComPmSonetSNT_PFE_IntervalEntry=chrComPmSonetSNT_PFE_IntervalEntry, chrComPmSonetSES=chrComPmSonetSES, chrComPmSonetIntervalNumber=chrComPmSonetIntervalNumber, chrComPmSonetSuppressedIntrvls=chrComPmSonetSuppressedIntrvls)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, value_size_constraint, single_value_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint')
(chr_com_ifif_index,) = mibBuilder.importSymbols('ChrComIfifTable-MIB', 'chrComIfifIndex')
(truth_value,) = mibBuilder.importSymbols('ChrTyp-MIB', 'TruthValue')
(chr_com_pm_sonet,) = mibBuilder.importSymbols('Chromatis-MIB', 'chrComPmSonet')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(time_ticks, bits, gauge32, module_identity, iso, mib_identifier, counter64, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, counter32, ip_address, integer32, object_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'Bits', 'Gauge32', 'ModuleIdentity', 'iso', 'MibIdentifier', 'Counter64', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'Counter32', 'IpAddress', 'Integer32', 'ObjectIdentity')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
chr_com_pm_sonet_snt_pfe__interval_table = mib_table((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14)).setLabel('chrComPmSonetSNT-PFE-IntervalTable')
if mibBuilder.loadTexts:
chrComPmSonetSNT_PFE_IntervalTable.setStatus('current')
chr_com_pm_sonet_snt_pfe__interval_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1)).setLabel('chrComPmSonetSNT-PFE-IntervalEntry').setIndexNames((0, 'ChrComIfifTable-MIB', 'chrComIfifIndex'), (0, 'ChrComPmSonetSNT-PFE-Interval-MIB', 'chrComPmSonetIntervalNumber'))
if mibBuilder.loadTexts:
chrComPmSonetSNT_PFE_IntervalEntry.setStatus('current')
chr_com_pm_sonet_interval_number = mib_table_column((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
chrComPmSonetIntervalNumber.setStatus('current')
chr_com_pm_sonet_suspected_interval = mib_table_column((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 2), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
chrComPmSonetSuspectedInterval.setStatus('current')
chr_com_pm_sonet_elapsed_time = mib_table_column((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
chrComPmSonetElapsedTime.setStatus('current')
chr_com_pm_sonet_suppressed_intrvls = mib_table_column((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 4), gauge32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
chrComPmSonetSuppressedIntrvls.setStatus('current')
chr_com_pm_sonet_es = mib_table_column((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 5), gauge32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
chrComPmSonetES.setStatus('current')
chr_com_pm_sonet_ses = mib_table_column((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 6), gauge32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
chrComPmSonetSES.setStatus('current')
chr_com_pm_sonet_cv = mib_table_column((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 7), gauge32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
chrComPmSonetCV.setStatus('current')
chr_com_pm_sonet_uas = mib_table_column((1, 3, 6, 1, 4, 1, 3695, 1, 10, 2, 14, 1, 8), gauge32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
chrComPmSonetUAS.setStatus('current')
mibBuilder.exportSymbols('ChrComPmSonetSNT-PFE-Interval-MIB', chrComPmSonetCV=chrComPmSonetCV, chrComPmSonetElapsedTime=chrComPmSonetElapsedTime, chrComPmSonetUAS=chrComPmSonetUAS, chrComPmSonetES=chrComPmSonetES, chrComPmSonetSuspectedInterval=chrComPmSonetSuspectedInterval, chrComPmSonetSNT_PFE_IntervalTable=chrComPmSonetSNT_PFE_IntervalTable, chrComPmSonetSNT_PFE_IntervalEntry=chrComPmSonetSNT_PFE_IntervalEntry, chrComPmSonetSES=chrComPmSonetSES, chrComPmSonetIntervalNumber=chrComPmSonetIntervalNumber, chrComPmSonetSuppressedIntrvls=chrComPmSonetSuppressedIntrvls) |
DEBUG = True
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'local_database.db',
'TEST_NAME': ':memory:',
}
}
SECRET_KEY = '9(-c^&tzdv(d-*x$cefm2pddz=0!_*8iu*i8fh+krpa!5ebk)+'
ROOT_URLCONF = 'test_project.urls'
TEMPLATE_DIRS = (
'templates',
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'formwizard',
'testapp',
'testapp2',
)
#TEST_RUNNER = 'django-test-coverage.runner.run_tests' | debug = True
databases = {'default': {'ENGINE': 'django.db.backends.sqlite3', 'NAME': 'local_database.db', 'TEST_NAME': ':memory:'}}
secret_key = '9(-c^&tzdv(d-*x$cefm2pddz=0!_*8iu*i8fh+krpa!5ebk)+'
root_urlconf = 'test_project.urls'
template_dirs = ('templates',)
installed_apps = ('django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'formwizard', 'testapp', 'testapp2') |
class Course:
def __init__(self, link, code, title, credits, campus, dept, year, semester, semester_code, faculty, courselvl, description, prereq, coreq, exclusion, breadth, apsc, flags):
self.link = link.strip()
self.code = code.strip()
self.title = title.strip()
self.credits = credits.strip()
self.campus = campus.strip()
self.dept = dept.strip()
self.year = year.strip()
self.semester = semester.strip()
self.semester_code = semester_code.strip()
self.faculty = faculty.strip()
self.courselvl = courselvl.strip()
self.description = description.strip()
self.prereq = prereq.strip()
self.coreq = coreq.strip()
self.exclusion = exclusion.strip()
self.breadth = breadth.strip()
self.apsc = apsc.strip()
self.flags = flags
def __repr__(self):
return '\nLink: ' + self.link + '\nCode: ' + self.code + '\nTitle: ' + self.title + '\nCredits: ' + self.credits + '\nCampus: ' + self.campus + '\nDepartment: ' + self.dept + '\nYear: ' + self.year + '\nSemester: ' + self.semester + '\nSemester code: ' + self.semester_code + '\nFaculty: ' + self.faculty + '\nCourse level: ' + self.courselvl + '\nDescription: ' + self.description + '\nPre-requisites: ' + self.prereq + '\nCo-requisites: ' + self.coreq + '\nExclusion: ' + self.exclusion + '\nBreadth: ' + self.breadth + '\nAPSC electives: ' + self.apsc + '\nFlags: ' + str(self.flags) | class Course:
def __init__(self, link, code, title, credits, campus, dept, year, semester, semester_code, faculty, courselvl, description, prereq, coreq, exclusion, breadth, apsc, flags):
self.link = link.strip()
self.code = code.strip()
self.title = title.strip()
self.credits = credits.strip()
self.campus = campus.strip()
self.dept = dept.strip()
self.year = year.strip()
self.semester = semester.strip()
self.semester_code = semester_code.strip()
self.faculty = faculty.strip()
self.courselvl = courselvl.strip()
self.description = description.strip()
self.prereq = prereq.strip()
self.coreq = coreq.strip()
self.exclusion = exclusion.strip()
self.breadth = breadth.strip()
self.apsc = apsc.strip()
self.flags = flags
def __repr__(self):
return '\nLink: ' + self.link + '\nCode: ' + self.code + '\nTitle: ' + self.title + '\nCredits: ' + self.credits + '\nCampus: ' + self.campus + '\nDepartment: ' + self.dept + '\nYear: ' + self.year + '\nSemester: ' + self.semester + '\nSemester code: ' + self.semester_code + '\nFaculty: ' + self.faculty + '\nCourse level: ' + self.courselvl + '\nDescription: ' + self.description + '\nPre-requisites: ' + self.prereq + '\nCo-requisites: ' + self.coreq + '\nExclusion: ' + self.exclusion + '\nBreadth: ' + self.breadth + '\nAPSC electives: ' + self.apsc + '\nFlags: ' + str(self.flags) |
# Generates comments with the specified indentation and wrapping-length
def generateComment(comment, length=100, indentation=""):
out = ""
for commentChunk in [
comment[i : i + length] for i in range(0, len(comment), length)
]:
out += indentation + "// " + commentChunk + "\n"
return out
# Generates C++ pointer data references from an XML element
def getDataReference(element, root):
for parent in root.iter():
# Check to make sure parent is actually a parent of element
if element in parent:
return getDataReference(parent, root) + "->" + element.attrib["id"]
return root.attrib["id"]
def capitalize(string):
return string.capitalize()[0] + string[1:]
def getMutexReference(struct, root):
return getDataReference(struct, root) + "->" + struct.attrib["id"] + "Mutex"
def getGetReference(struct, field):
return "get" + capitalize(struct.attrib["id"]) + capitalize(field.attrib["id"])
def getSetReference(struct, field):
return "set" + capitalize(struct.attrib["id"]) + capitalize(field.attrib["id"])
| def generate_comment(comment, length=100, indentation=''):
out = ''
for comment_chunk in [comment[i:i + length] for i in range(0, len(comment), length)]:
out += indentation + '// ' + commentChunk + '\n'
return out
def get_data_reference(element, root):
for parent in root.iter():
if element in parent:
return get_data_reference(parent, root) + '->' + element.attrib['id']
return root.attrib['id']
def capitalize(string):
return string.capitalize()[0] + string[1:]
def get_mutex_reference(struct, root):
return get_data_reference(struct, root) + '->' + struct.attrib['id'] + 'Mutex'
def get_get_reference(struct, field):
return 'get' + capitalize(struct.attrib['id']) + capitalize(field.attrib['id'])
def get_set_reference(struct, field):
return 'set' + capitalize(struct.attrib['id']) + capitalize(field.attrib['id']) |
"""Error definitions."""
class VictimsDBError(Exception):
"""Generic VictimsDB error."""
class ParseError(VictimsDBError):
"""Error parsing YAML files."""
| """Error definitions."""
class Victimsdberror(Exception):
"""Generic VictimsDB error."""
class Parseerror(VictimsDBError):
"""Error parsing YAML files.""" |
# -*- coding: utf-8 -*-
class Solution:
def exist(self, board, word):
visited = set()
for i in range(len(board)):
for j in range(len(board[0])):
if self.startsHere(board, word, visited, 0, i, j):
return True
return False
def startsHere(self, board, word, visited, current, i, j):
if current == len(word):
return True
out_of_bounds = i < 0 or i >= len(board) or j < 0 or j >= len(board[0])
if out_of_bounds:
return False
already_visited = (i, j) in visited
wrong_current_letter = board[i][j] != word[current]
if already_visited or wrong_current_letter:
return False
visited.add((i, j))
result = (
self.startsHere(board, word, visited, current + 1, i - 1, j) or
self.startsHere(board, word, visited, current + 1, i, j - 1) or
self.startsHere(board, word, visited, current + 1, i + 1, j) or
self.startsHere(board, word, visited, current + 1, i, j + 1)
)
visited.remove((i, j))
return result
if __name__ == '__main__':
solution = Solution()
assert solution.exist([
['A', 'B', 'C', 'E'],
['S', 'F', 'C', 'S'],
['A', 'D', 'E', 'E'],
], 'ABCCED')
assert solution.exist([
['A', 'B', 'C', 'E'],
['S', 'F', 'C', 'S'],
['A', 'D', 'E', 'E'],
], 'SEE')
assert not solution.exist([
['A', 'B', 'C', 'E'],
['S', 'F', 'C', 'S'],
['A', 'D', 'E', 'E'],
], 'ABCB')
| class Solution:
def exist(self, board, word):
visited = set()
for i in range(len(board)):
for j in range(len(board[0])):
if self.startsHere(board, word, visited, 0, i, j):
return True
return False
def starts_here(self, board, word, visited, current, i, j):
if current == len(word):
return True
out_of_bounds = i < 0 or i >= len(board) or j < 0 or (j >= len(board[0]))
if out_of_bounds:
return False
already_visited = (i, j) in visited
wrong_current_letter = board[i][j] != word[current]
if already_visited or wrong_current_letter:
return False
visited.add((i, j))
result = self.startsHere(board, word, visited, current + 1, i - 1, j) or self.startsHere(board, word, visited, current + 1, i, j - 1) or self.startsHere(board, word, visited, current + 1, i + 1, j) or self.startsHere(board, word, visited, current + 1, i, j + 1)
visited.remove((i, j))
return result
if __name__ == '__main__':
solution = solution()
assert solution.exist([['A', 'B', 'C', 'E'], ['S', 'F', 'C', 'S'], ['A', 'D', 'E', 'E']], 'ABCCED')
assert solution.exist([['A', 'B', 'C', 'E'], ['S', 'F', 'C', 'S'], ['A', 'D', 'E', 'E']], 'SEE')
assert not solution.exist([['A', 'B', 'C', 'E'], ['S', 'F', 'C', 'S'], ['A', 'D', 'E', 'E']], 'ABCB') |
"""
1. Clarification
2. Possible solutions
- Brute force
- HashSet
3. Coding
4. Tests
"""
# # T=O(mn), S=O(1)
# class Solution:
# def numJewelsInStones(self, jewels: str, stones: str) -> int:
# return sum(s in jewels for s in stones)
# T=O(m+n), S=O(m)
class Solution:
def numJewelsInStones(self, jewels: str, stones: str) -> int:
jewelsSet = set(jewels)
return sum(s in jewelsSet for s in stones)
| """
1. Clarification
2. Possible solutions
- Brute force
- HashSet
3. Coding
4. Tests
"""
class Solution:
def num_jewels_in_stones(self, jewels: str, stones: str) -> int:
jewels_set = set(jewels)
return sum((s in jewelsSet for s in stones)) |
#-------------------------------------------------------------------------------
# Name: Removing duplicates
# Purpose:
#
# Author: Ben Jones
#
# Created: 03/02/2022
# Copyright: (c) Ben Jones 2022
#-------------------------------------------------------------------------------
new_menu = ['Hawaiian', 'Margherita', 'Mushroom', 'Prosciutto', 'Meat Feast', 'Hawaiian', 'Bacon', 'Black Olive Special', 'Sausage', 'Sausage']
final_new_menu = list(dict.fromkeys(new_menu))
print(final_new_menu)
| new_menu = ['Hawaiian', 'Margherita', 'Mushroom', 'Prosciutto', 'Meat Feast', 'Hawaiian', 'Bacon', 'Black Olive Special', 'Sausage', 'Sausage']
final_new_menu = list(dict.fromkeys(new_menu))
print(final_new_menu) |
word_size = 8
num_words = 256
num_banks = 1
tech_name = "freepdk45"
process_corners = ["TT"]
supply_voltages = [1.0]
temperatures = [25]
| word_size = 8
num_words = 256
num_banks = 1
tech_name = 'freepdk45'
process_corners = ['TT']
supply_voltages = [1.0]
temperatures = [25] |
# Definition for a binary tree node.
# class Node(object):
# def __init__(self, val=" ", left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def checkEquivalence(self, root1: 'Node', root2: 'Node') -> bool:
def post_order(node):
ans = collections.Counter()
if node is None:
return ans
if node.left is None and node.right is None:
ans[node.val] += 1
else:
l = post_order(node.left)
r = post_order(node.right)
for val, cnt in l.items():
ans[val] += cnt
for val, cnt in r.items():
ans[val] += cnt
return ans
r1 = post_order(root1)
r2 = post_order(root2)
return r1 == r2
| class Solution:
def check_equivalence(self, root1: 'Node', root2: 'Node') -> bool:
def post_order(node):
ans = collections.Counter()
if node is None:
return ans
if node.left is None and node.right is None:
ans[node.val] += 1
else:
l = post_order(node.left)
r = post_order(node.right)
for (val, cnt) in l.items():
ans[val] += cnt
for (val, cnt) in r.items():
ans[val] += cnt
return ans
r1 = post_order(root1)
r2 = post_order(root2)
return r1 == r2 |
# Panel settings: /project/<default>/api_access
PANEL_DASHBOARD = 'project'
PANEL_GROUP = 'default'
PANEL = 'api_access'
# The default _was_ "overview", but that gives 403s.
# Make this the default in this dashboard.
DEFAULT_PANEL = 'api_access'
| panel_dashboard = 'project'
panel_group = 'default'
panel = 'api_access'
default_panel = 'api_access' |
"""
Representing a single file in a commit
@name name of file
@loc lines of code in file
@authors all authors of the file
@nuc number of unique changes made to the file
"""
class CommitFile:
def __init__(self, name, loc, authors, lastchanged, owner,co_commited_files,adev):
self.name = name # File name
self.loc = loc # LOC in file
self.authors = authors # Array of authors
self.lastchanged = lastchanged # unix time stamp of when last changed
self.nuc = 1
self.owner = owner
self.co_commited_files = co_commited_files
self.adev = adev # number of unique changes to the file
| """
Representing a single file in a commit
@name name of file
@loc lines of code in file
@authors all authors of the file
@nuc number of unique changes made to the file
"""
class Commitfile:
def __init__(self, name, loc, authors, lastchanged, owner, co_commited_files, adev):
self.name = name
self.loc = loc
self.authors = authors
self.lastchanged = lastchanged
self.nuc = 1
self.owner = owner
self.co_commited_files = co_commited_files
self.adev = adev |
# python stack using list #
my_Stack = [10, 12, 13, 11, 33, 24, 56, 78, 13, 56, 31, 32, 33, 10, 15] # array #
print(my_Stack)
print(my_Stack.pop())
# think python simple just pop and push #
print(my_Stack.pop())
print(my_Stack.pop())
print(my_Stack.pop())
| my__stack = [10, 12, 13, 11, 33, 24, 56, 78, 13, 56, 31, 32, 33, 10, 15]
print(my_Stack)
print(my_Stack.pop())
print(my_Stack.pop())
print(my_Stack.pop())
print(my_Stack.pop()) |
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
del dict['Name'] # remove entry with key 'Name'
dict.clear() # remove all entries in dict
del dict # delete entire dictionary
print ("dict['Age']: ", dict['Age'])
print ("dict['School']: ", dict['School']) | dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
del dict['Name']
dict.clear()
del dict
print("dict['Age']: ", dict['Age'])
print("dict['School']: ", dict['School']) |
'''
URL: https://leetcode.com/problems/maximum-nesting-depth-of-the-parentheses/
Difficulty: Easy
Description: Maximum Nesting Depth of the Parentheses
A string is a valid parentheses string (denoted VPS) if it meets one of the following:
It is an empty string "", or a single character not equal to "(" or ")",
It can be written as AB (A concatenated with B), where A and B are VPS's, or
It can be written as (A), where A is a VPS.
We can similarly define the nesting depth depth(S) of any VPS S as follows:
depth("") = 0
depth(C) = 0, where C is a string with a single character not equal to "(" or ")".
depth(A + B) = max(depth(A), depth(B)), where A and B are VPS's.
depth("(" + A + ")") = 1 + depth(A), where A is a VPS.
For example, "", "()()", and "()(()())" are VPS's (with nesting depths 0, 1, and 2), and ")(" and "(()" are not VPS's.
Given a VPS represented as string s, return the nesting depth of s.
Example 1:
Input: s = "(1+(2*3)+((8)/4))+1"
Output: 3
Explanation: Digit 8 is inside of 3 nested parentheses in the string.
Example 2:
Input: s = "(1)+((2))+(((3)))"
Output: 3
Example 3:
Input: s = "1+(2*3)/(2-1)"
Output: 1
Example 4:
Input: s = "1"
Output: 0
Constraints:
1 <= s.length <= 100
s consists of digits 0-9 and characters '+', '-', '*', '/', '(', and ')'.
It is guaranteed that parentheses expression s is a VPS.
'''
class Solution:
def maxDepth(self, s):
maxD = -float('inf')
currD = 0
for ch in s:
if ch not in ["(", ")"]:
continue
if ch == "(":
currD += 1
else:
maxD = max(maxD, currD)
currD -= 1
return maxD if maxD != -float('inf') else currD
| """
URL: https://leetcode.com/problems/maximum-nesting-depth-of-the-parentheses/
Difficulty: Easy
Description: Maximum Nesting Depth of the Parentheses
A string is a valid parentheses string (denoted VPS) if it meets one of the following:
It is an empty string "", or a single character not equal to "(" or ")",
It can be written as AB (A concatenated with B), where A and B are VPS's, or
It can be written as (A), where A is a VPS.
We can similarly define the nesting depth depth(S) of any VPS S as follows:
depth("") = 0
depth(C) = 0, where C is a string with a single character not equal to "(" or ")".
depth(A + B) = max(depth(A), depth(B)), where A and B are VPS's.
depth("(" + A + ")") = 1 + depth(A), where A is a VPS.
For example, "", "()()", and "()(()())" are VPS's (with nesting depths 0, 1, and 2), and ")(" and "(()" are not VPS's.
Given a VPS represented as string s, return the nesting depth of s.
Example 1:
Input: s = "(1+(2*3)+((8)/4))+1"
Output: 3
Explanation: Digit 8 is inside of 3 nested parentheses in the string.
Example 2:
Input: s = "(1)+((2))+(((3)))"
Output: 3
Example 3:
Input: s = "1+(2*3)/(2-1)"
Output: 1
Example 4:
Input: s = "1"
Output: 0
Constraints:
1 <= s.length <= 100
s consists of digits 0-9 and characters '+', '-', '*', '/', '(', and ')'.
It is guaranteed that parentheses expression s is a VPS.
"""
class Solution:
def max_depth(self, s):
max_d = -float('inf')
curr_d = 0
for ch in s:
if ch not in ['(', ')']:
continue
if ch == '(':
curr_d += 1
else:
max_d = max(maxD, currD)
curr_d -= 1
return maxD if maxD != -float('inf') else currD |
# example of except/from exception usage
try:
1 / 0
except Exception as E:
raise NameError('bad') from E
"""
Traceback (most recent call last):
File "except_from.py", line 4, in <module>
1 / 0
ZeroDivisionError: division by zero
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "except_from.py", line 6, in <module>
raise NameError('bad') from E
NameError: bad
"""
# *implicit related exception
# try:
# 1 / 0
# except:
# wrongname # NameError
# raise <exceptionnsme> from None complitly stops relation of exception
| try:
1 / 0
except Exception as E:
raise name_error('bad') from E
'\nTraceback (most recent call last):\n File "except_from.py", line 4, in <module>\n 1 / 0\nZeroDivisionError: division by zero\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File "except_from.py", line 6, in <module>\n raise NameError(\'bad\') from E\nNameError: bad\n' |
#
# PySNMP MIB module CISCO-EVC-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-EVC-MIB
# Produced by pysmi-0.3.4 at Wed May 1 11:57:43 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion", "ValueSizeConstraint")
ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt")
CiscoCosList, = mibBuilder.importSymbols("CISCO-TC", "CiscoCosList")
ifIndex, InterfaceIndexOrZero = mibBuilder.importSymbols("IF-MIB", "ifIndex", "InterfaceIndexOrZero")
VlanId, VlanIdOrNone = mibBuilder.importSymbols("Q-BRIDGE-MIB", "VlanId", "VlanIdOrNone")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ObjectGroup, ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "ModuleCompliance", "NotificationGroup")
ObjectIdentity, Unsigned32, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, IpAddress, MibIdentifier, TimeTicks, Gauge32, iso, ModuleIdentity, NotificationType, Counter64, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Unsigned32", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "IpAddress", "MibIdentifier", "TimeTicks", "Gauge32", "iso", "ModuleIdentity", "NotificationType", "Counter64", "Counter32")
RowStatus, TruthValue, MacAddress, StorageType, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "RowStatus", "TruthValue", "MacAddress", "StorageType", "DisplayString", "TextualConvention")
ciscoEvcMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 613))
ciscoEvcMIB.setRevisions(('2012-05-21 00:00', '2008-05-01 00:00', '2007-12-20 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: ciscoEvcMIB.setRevisionsDescriptions(('- Added following objects to cevcSITable: * cevcSICreationType * cevcSIType - Added following objects to cevcSIForwardBdTable: * cevcSIForwardBdNumberBase * cevcSIForwardBdNumber1kBitmap * cevcSIForwardBdNumber2kBitmap * cevcSIForwardBdNumber3kBitmap * cevcSIForwardBdNumber4kBitmap - Added MacSecurityViolation OID subtree and following objects: * cevcMacAddress * cevcMaxMacConfigLimit * cevcSIID - Deprecated cevcEvcNotificationGroup and added cevcEvcNotificationGroupRev1 and added cevcMacSecurityViolationNotification - Deprecated cevcSIGroup and added cevcSIGroupRev1 and added cevcSICreationType and cevcSIType - Deprecated cevcSIForwardGroup and added cevcSIForwardGroupRev1 and added the new objects mentioned in cevcSIForwardBdTable - Added CevcMacSecurityViolationCause Textual convention - Added new ciscoEvcMIBComplianceRev2', '- Added following enums to cevcSIOperStatus: * deleted(4) * errorDisabled(5) * unknown(6) - Added following named bits to cevcSIMatchEncapValid: * payloadTypes(3) * priorityCos(4) * dot1qNativeVlan(5) * dot1adNativeVlan(6) * encapExact(7) - The Object cevcSIMatchEncapPayloadType is replaced by new object cevcSIMatchEncapPayloadTypes to support multiple payload types for service instance match criteria. - Added new object cevcSIMatchEncapPriorityCos to cevcSIMatchEncapTable. - Added new Compliance ciscoEvcMIBComplianceRev1. - Added new Object Group cevcSIMatchCriteriaGroupRev1. - Miscellaneous updates/corrections.', 'Initial version of this MIB module.',))
if mibBuilder.loadTexts: ciscoEvcMIB.setLastUpdated('201205210000Z')
if mibBuilder.loadTexts: ciscoEvcMIB.setOrganization('Cisco Systems, Inc.')
if mibBuilder.loadTexts: ciscoEvcMIB.setContactInfo('Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS E-mail: cs-ethermibs@cisco.com')
if mibBuilder.loadTexts: ciscoEvcMIB.setDescription("Metro Ethernet services can support a wide range of applications and subscriber needs easily, efficiently and cost-effectively. Using standard Ethernet interfaces, subscribers can set up secure, private Ethernet Virtual Connections, to connect their sites together and connect to business partners, suppliers and the Internet. This MIB module defines the managed objects and notifications describing Ethernet Virtual Connections. Ethernet Virtual Connections (EVC), are defined by the Metro Ethernet Forum (MEF), as an association between two or more UNIs. Frames within an EVC can only be exchanged among the associated UNIs. Frames sent into the MEN via a particular UNI must not be delivered back to the UNI from which it originated. Along an EVC path, there are demarcation flow points on associated ingress and egress interface, of every device, through which the EVC passes. A service instance represents these flow points where a service passes through an interface. From an operational perspective, a service instance serves three purposes: 1. Defines the instance of a particular EVC service on a specific interface and identifies all frames that belongs to that particular service/flow. 2. To provide the capability of applying the configured features to those frames belonging to the service. 3. To optionally define how to forward those frames in the data-path. The association of a service instance to an EVC depicts an instance of an Ethernet flow on a particular interface for an end-to-end (UNI-to-UNI) Ethernet service for a subscriber. The following diagram illustrates the association of EVC, UNIs and service instances. UNI physical ports are depicted as 'U', and service instances as 'x'. CE MEN MEN CE ------- ------- ------- ------- | | | | () | | | | | |--------Ux x|--( )--|x xU--------| | | | | | () | | | | ------- ------- ------- ------- ^ ^ | | -------- EVC --------- This MIB module addresses the functional areas of network management for EVC, including: The operational mode for interfaces that are providing Ethernet service(s). The service attributes regarding an interface behaving as UNI, such as CE-VLAN mapping and layer 2 control protocol (eg. stp, vtp, cdp) processing. The provisioning of service instances to define flow points for an Ethernet service. The operational status of EVCs for notifications of status changes, and EVC creation and deletion. Definition of terms and acronyms: B-Tag: Backbone Tag field in Ethernet 802.1ah frame CE: Customer Edge CE-VLAN: Customer Edge VLAN CoS: Class Of Service EVC: Ethernet Virtual Connection I-SID: Service Instance Identifier field in Ethernet 802.1ah frame MAC: Media Access Control MEN: Metro Ethernet Network NNI: Network to Network Interface OAM: Operations Administration and Management PPPoE: Point-to-Point Protocol over Ethernet Service frame: An Ethernet frame transmitted across the UNI toward the service provider or an Ethernet frame transmitted across the UNI toward the Subscriber. Service Instance: A flow point of an Ethernet service Service provider: The organization providing Ethernet service(s). Subscriber: The organization purchasing and/or using Ethernet service(s). UNI: User Network Interface The physical demarcation point between the responsibility of the service provider and the responsibility of the Subscriber. UNI-C: User Network Interface, subscriber side UNI-N: User Network Interface, service provider side VLAN: Virtual Local Area Network")
ciscoEvcMIBNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 0))
ciscoEvcMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1))
ciscoEvcMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 2))
cevcSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 1))
cevcPort = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2))
cevcEvc = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3))
cevcServiceInstance = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4))
cevcEvcNotificationConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 5))
cevcMacSecurityViolation = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 6))
class CevcMacSecurityViolationCauseType(TextualConvention, Integer32):
description = "An integer value which identifies the cause for the MAC Security Violation. If the system MAC Address limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedSystemLimit' value. If the Bridge domain limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedBdLimit' value. If the Service Instance limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedSILimit' value. If the MAC address is present in the Black list then cevcMacSecurityViolationCauseType will contain 'blackListDeny' value."
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("exceedSystemLimit", 1), ("exceedBdLimit", 2), ("exceedSILimit", 3), ("blackListDeny", 4))
class CiscoEvcIndex(TextualConvention, Unsigned32):
description = 'An integer-value which uniquely identifies the EVC.'
status = 'current'
subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(1, 4294967295)
class CiscoEvcIndexOrZero(TextualConvention, Unsigned32):
description = "This textual convention is an extension to textual convention 'CiscoEvcIndex'. It includes the value of '0' in addition to the range of 1-429496725. Value of '0' indicates that the EVC has been neither configured nor assigned."
status = 'current'
subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(0, 4294967295)
class CevcL2ControlProtocolType(TextualConvention, Integer32):
description = "Defines the different types of layer 2 control protocols: 'other' None of the following. 'cdp' Cisco Discovery Protocol. 'dtp' Dynamic Trunking Protocol. 'pagp' Port Aggregration Protocol. 'udld' UniDirectional Link Detection. 'vtp' Vlan Trunking Protocol. 'lacp' Link Aggregation Control Protocol. 'dot1x' IEEE 802.1x 'stp' Spanning Tree Protocol."
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9))
namedValues = NamedValues(("other", 1), ("cdp", 2), ("dtp", 3), ("pagp", 4), ("udld", 5), ("vtp", 6), ("lacp", 7), ("dot1x", 8), ("stp", 9))
class ServiceInstanceTarget(TextualConvention, OctetString):
description = "Denotes a generic service instance target. An ServiceInstanceTarget value is always interpreted within the context of an ServiceInstanceTargetType value. Every usage of the ServiceInstanceTarget textual convention is required to specify the ServiceInstanceTargetType object which provides the context. It is suggested that the ServiceInstanceTargetType object is logically registered before the object(s) which use the ServiceInstanceTarget textual convention if they appear in the same logical row. The value of an ServiceInstanceTarget object must always be consistent with the value of the associated ServiceInstanceTargetType object. Attempts to set an ServiceInstanceTarget object to a value which is inconsistent with the associated ServiceInstanceTargetType must fail with an inconsistentValue error. When this textual convention is used as the syntax of an index object, there may be issues with the limit of 128 sub-identifiers specified in SMIv2, STD 58. In this case, the object definition MUST include a 'SIZE' clause to limit the number of potential instance sub-identifiers."
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 40)
class ServiceInstanceTargetType(TextualConvention, Integer32):
description = "Defines the type of interface/media to which a service instance is attached. 'other' None of the following. This value MUST be used if the value of the corresponding ServiceInstanceTarget object is a zero-length string. 'interface' Service instance is attached to the the interface defined by ServiceInstanceInterface textual convention. Each definition of a concrete ServiceInstanceTargetType value must be accompanied by a definition of a textual convention for use with that ServiceInstanceTargetType. To support future extensions, the ServiceInstanceTargetType textual convention SHOULD NOT be sub-typed in object type definitions. It MAY be sub-typed in compliance statements in order to require only a subset of these target types for a compliant implementation. Implementations must ensure that ServiceInstanceTargetType objects and any dependent objects (e.g. ServiceInstanceTarget objects) are consistent. An inconsistentValue error must be generated if an attempt to change an ServiceInstanceTargetType object would, for example, lead to an undefined ServiceInstanceTarget value. In particular, ServiceInstanceTargetType/ServiceInstanceTarget pairs must be changed together if the service instance taget type changes."
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("other", 1), ("interface", 2))
class ServiceInstanceInterface(TextualConvention, OctetString):
description = "This textual convention indicates the ifIndex which identifies the interface that the service instance is attached, for which the corresponding ifType has the value of (but not limited to) 'ethernetCsmacd'. octets contents encoding 1-4 ifIndex network-byte order The corresponding ServiceInstanceTargetType value is interface(2)."
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(4, 4)
fixedLength = 4
cevcMacAddress = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 6, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcMacAddress.setStatus('current')
if mibBuilder.loadTexts: cevcMacAddress.setDescription('This object indicates the MAC Address which has violated the Mac security rules.')
cevcMaxMacConfigLimit = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 6, 2), Unsigned32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cevcMaxMacConfigLimit.setStatus('current')
if mibBuilder.loadTexts: cevcMaxMacConfigLimit.setDescription('This object specifies the maximum MAC configuration limit. This is also sent as a part of MAC security violation notification. Every platform has their own forwarding table limitation. User can also set the maximum MAC configuration limit and if the limit set by user is not supported by platform then the object returns error.')
cevcSIID = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 6, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcSIID.setStatus('current')
if mibBuilder.loadTexts: cevcSIID.setDescription('This object indicates the service instance ID for the MAC security violation notification.')
cevcViolationCause = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 6, 4), CevcMacSecurityViolationCauseType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcViolationCause.setStatus('current')
if mibBuilder.loadTexts: cevcViolationCause.setDescription("This object indicates the MAC security violation cause. When the system MAC Address limit is exceeded, the cevcMacSecurityViolationCause will contain 'exceedSystemLimit' value. When the Bridge domain limit is exceeded, the cevcMacSecurityViolationCause will contain 'exceedBdLimit' value. When the Service Instance limit is exceeded, the cevcMacSecurityViolationCause will contain 'exceedSILimit' value. If the MAC address is present in the Black list then cevcMacSecurityViolationCause will contain 'blackListDeny' value.")
cevcMaxNumEvcs = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 1, 1), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcMaxNumEvcs.setStatus('current')
if mibBuilder.loadTexts: cevcMaxNumEvcs.setDescription('This object indicates the maximum number of EVCs that the system supports.')
cevcNumCfgEvcs = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 1, 2), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcNumCfgEvcs.setStatus('current')
if mibBuilder.loadTexts: cevcNumCfgEvcs.setDescription('This object indicates the actual number of EVCs currently configured on the system.')
cevcPortTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 1), )
if mibBuilder.loadTexts: cevcPortTable.setStatus('current')
if mibBuilder.loadTexts: cevcPortTable.setDescription("This table provides the operational mode and configuration limitations of the physical interfaces (ports) that provide Ethernet services for the MEN. This table has a sparse depedent relationship on the ifTable, containing a row for each ifEntry having an ifType of 'ethernetCsmacd' capable of supporting Ethernet services.")
cevcPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: cevcPortEntry.setStatus('current')
if mibBuilder.loadTexts: cevcPortEntry.setDescription("This entry represents a port, a physical point, at which signals can enter or leave the network en route to or from another network to provide Ethernet services for the MEN. The system automatically creates an entry for each ifEntry in the ifTable having an ifType of 'ethernetCsmacd' capable of supporting Ethernet services and entries are automatically destroyed when the corresponding row in the ifTable is destroyed.")
cevcPortMode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("uni", 1), ("nni", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cevcPortMode.setStatus('current')
if mibBuilder.loadTexts: cevcPortMode.setDescription("Port denotes the physcial interface which can provide Ethernet services. This object indicates the mode of the port and its operational behaviour in the MEN. 'uni' User Network Interface The port resides on the interface between the end user and the network. Additional information related to the UNI is included in cevcUniTable. 'nni' Network to Network Interface. The port resides on the interface between two networks.")
cevcPortMaxNumEVCs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 1, 1, 2), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcPortMaxNumEVCs.setStatus('current')
if mibBuilder.loadTexts: cevcPortMaxNumEVCs.setDescription('This object indicates the maximum number of EVCs that the interface can support.')
cevcPortMaxNumServiceInstances = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 1, 1, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcPortMaxNumServiceInstances.setStatus('current')
if mibBuilder.loadTexts: cevcPortMaxNumServiceInstances.setDescription('This object indicates the maximum number of service instances that the interface can support.')
cevcUniTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 2), )
if mibBuilder.loadTexts: cevcUniTable.setStatus('current')
if mibBuilder.loadTexts: cevcUniTable.setDescription("This table contains a list of UNIs locally configured on the system. This table has a sparse dependent relationship on the cevcPortTable, containing a row for each cevcPortEntry having a cevcPortMode column value 'uni'.")
cevcUniEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: cevcUniEntry.setStatus('current')
if mibBuilder.loadTexts: cevcUniEntry.setDescription("This entry represents an UNI and its service attributes. The system automatically creates an entry when the system or the EMS/NMS creates a row in the cevcPortTable with a cevcPortMode of 'uni'. Likewise, the system automatically destroys an entry when the system or the EMS/NMS destroys the corresponding row in the cevcPortTable.")
cevcUniIdentifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 2, 1, 1), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcUniIdentifier.setReference("MEF 16, 'Ethernet Local Management Interface (E-LMI)', January 2006")
if mibBuilder.loadTexts: cevcUniIdentifier.setStatus('current')
if mibBuilder.loadTexts: cevcUniIdentifier.setDescription('This object specifies a string-value assigned to a UNI for identification. When the UNI identifier is configured by the system or the EMS/NMS, it should be unique among all UNIs for the MEN. If the UNI identifier value is not specified, the value of the cevcUniIdentifier column is a zero-length string.')
cevcUniPortType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dot1q", 1), ("dot1ad", 2))).clone('dot1q')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcUniPortType.setStatus('current')
if mibBuilder.loadTexts: cevcUniPortType.setDescription("This object specifies the UNI port type. 'dot1q' The UNI port is an IEEE 802.1q port. 'dot1ad' The UNI port is an IEEE 802.1ad port.")
cevcUniServiceAttributes = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 2, 1, 3), Bits().clone(namedValues=NamedValues(("serviceMultiplexing", 0), ("bundling", 1), ("allToOneBundling", 2))).clone(namedValues=NamedValues(("serviceMultiplexing", 0), ("bundling", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcUniServiceAttributes.setStatus('current')
if mibBuilder.loadTexts: cevcUniServiceAttributes.setDescription("This object specifies the UNI service attributes. 'serviceMultiplexing' This bit specifies whether the UNI supports multiple EVCs. Point-to-Point EVCs and Multipoint-to-Multipoint EVCs may be multiplexed in any combination at the UNI if this bit is set to '1'. 'bundling' This bit specifies whether the UNI has the bundling attribute configured. If this bit is set to '1', more than one CE-VLAN ID can map to a particular EVC at the UNI. 'allToOneBundling' This bit specifies whether the UNI has the all to one bundling attribute. If this bit is set to '1', all CE-VLAN IDs map to a single EVC at the UNI. To summarize the valid combinations of serviceMultiplexing(0), bundling(1) and allToOneBundling(2) bits for an UNI, consider the following diagram: VALID COMBINATIONS +---------------+-------+-------+-------+-------+-------+ |UNI ATTRIBUTES | 1 | 2 | 3 | 4 | 5 | +---------------+-------+------+------------------------+ |Service | | | | | | |Multiplexing | | Y | Y | | | | | | | | | | +---------------+-------+-------+-------+-------+-------+ | | | | | | | |Bundling | | | Y | Y | | | | | | | | | +---------------+-------+-------+-------+-------+-------+ |All to One | | | | | | |Bundling | | | | | Y | | | | | | | | +---------------+-------+-------+------ +-------+-------+")
cevcPortL2ControlProtocolTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 3), )
if mibBuilder.loadTexts: cevcPortL2ControlProtocolTable.setStatus('current')
if mibBuilder.loadTexts: cevcPortL2ControlProtocolTable.setDescription('This table lists the layer 2 control protocol processing attributes at UNI ports. This table has an expansion dependent relationship on the cevcUniTable, containing zero or more rows for each UNI.')
cevcPortL2ControlProtocolEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-EVC-MIB", "cevcPortL2ControlProtocolType"))
if mibBuilder.loadTexts: cevcPortL2ControlProtocolEntry.setStatus('current')
if mibBuilder.loadTexts: cevcPortL2ControlProtocolEntry.setDescription('This entry represents the layer 2 control protocol processing at the UNI. The system automatically creates an entry for each layer 2 control protocol type when an entry is created in the cevcUniTable, and entries are automatically destroyed when the system destroys the corresponding row in the cevcUniTable.')
cevcPortL2ControlProtocolType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 3, 1, 1), CevcL2ControlProtocolType())
if mibBuilder.loadTexts: cevcPortL2ControlProtocolType.setStatus('current')
if mibBuilder.loadTexts: cevcPortL2ControlProtocolType.setDescription('This object indicates the type of layer 2 control protocol service frame as denoted by the value of cevcPortL2ControlProtocolAction column.')
cevcPortL2ControlProtocolAction = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("discard", 1), ("peer", 2), ("passToEvc", 3), ("peerAndPassToEvc", 4))).clone('discard')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcPortL2ControlProtocolAction.setStatus('current')
if mibBuilder.loadTexts: cevcPortL2ControlProtocolAction.setDescription("This object specifies the action to be taken for the given layer 2 control protocol service frames which matches the cevcPortL2ControlProtocolType, including: 'discard' The port must discard all ingress service frames carrying the layer 2 control protocol service frames and the port must not generate any egress service frames carrying the layer 2 control protocol service frames. When this action is set at the port, an EVC cannot process the layer 2 control protocol service frames. 'peer' The port must act as a peer, meaning it actively participates with the Customer Equipment, in the operation of the layer 2 control protocol service frames. An example of this is port authentication service at the UNI with 802.1x or enhanced link OAM functionality by peering at the UNI with link OAM (IEEE 802.3ah). When this action is set at the port, an EVC cannot process the layer 2 control protocol service frames. 'passToEvc' The disposition of the service frames which are layer 2 control protocol service frames must be determined by the layer 2 control protocol action attribute of the EVC, (see cevcSIL2ControlProtocolAction for further details). 'peerAndPassToEvc' The layer 2 control protocol service frames will be peered at the port and also passed to one or more EVCs for tunneling. An example of this possibility is where an 802.1x authentication frame is peered at the UNI for UNI-based authentication, but also passed to a given EVC for customer end-to-end authentication.")
cevcUniCEVlanEvcTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 4), )
if mibBuilder.loadTexts: cevcUniCEVlanEvcTable.setStatus('current')
if mibBuilder.loadTexts: cevcUniCEVlanEvcTable.setDescription('This table contains for each UNI, a list of EVCs and the association of CE-VLANs to the EVC. The CE-VLAN mapping is locally significant to the UNI. This table has an expansion dependent relationship on the cevcUniTable, containing zero or more rows for each UNI.')
cevcUniCEVlanEvcEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 4, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-EVC-MIB", "cevcUniEvcIndex"), (0, "CISCO-EVC-MIB", "cevcUniCEVlanEvcBeginningVlan"))
if mibBuilder.loadTexts: cevcUniCEVlanEvcEntry.setStatus('current')
if mibBuilder.loadTexts: cevcUniCEVlanEvcEntry.setDescription('This entry represents an EVC and the CE-VLANs that are mapped to it at an UNI. For example, if CE-VLANs 10, 20-30, 40 are mapped to an EVC indicated by cevcUniEvcIndex = 1, at an UNI with ifIndex = 2, this table will contain following rows to represent above CE-VLAN map: cevcUniCEVlanEvcEndingVlan.2.1.10 = 0 cevcUniCEVlanEvcEndingVlan.2.1.20 = 30 cevcUniCEVlanEvcEndingVlan.2.1.40 = 0 The system automatically creates an entry when the system creates an entry in the cevcUniTable and an entry is created in cevcSICEVlanTable for a service instance which is attached to an EVC on this UNI. Likewise, the system automatically destroys an entry when the system or the EMS/NMS destroys the corresponding row in the cevcUniTable or in the cevcSICEVlanTable.')
cevcUniEvcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 4, 1, 1), CiscoEvcIndex())
if mibBuilder.loadTexts: cevcUniEvcIndex.setStatus('current')
if mibBuilder.loadTexts: cevcUniEvcIndex.setDescription('This object indicates an arbitrary integer-value that uniquely identifies the EVC attached at an UNI.')
cevcUniCEVlanEvcBeginningVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 4, 1, 2), VlanId())
if mibBuilder.loadTexts: cevcUniCEVlanEvcBeginningVlan.setStatus('current')
if mibBuilder.loadTexts: cevcUniCEVlanEvcBeginningVlan.setDescription("If cevcUniCEVlanEvcEndingVlan is '0', then this object indicates a single VLAN in the list. If cevcUniCEVlanEvcEndingVlan is not '0', then this object indicates the first VLAN in a range of VLANs.")
cevcUniCEVlanEvcEndingVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 4, 1, 3), VlanIdOrNone()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcUniCEVlanEvcEndingVlan.setStatus('current')
if mibBuilder.loadTexts: cevcUniCEVlanEvcEndingVlan.setDescription("This object indicates the last VLAN in a range of VLANs. If the row does not describe a range, then the value of this column must be '0'.")
cevcEvcTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1), )
if mibBuilder.loadTexts: cevcEvcTable.setStatus('current')
if mibBuilder.loadTexts: cevcEvcTable.setDescription('This table contains a list of EVCs and their service attributes.')
cevcEvcEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcEvcIndex"))
if mibBuilder.loadTexts: cevcEvcEntry.setStatus('current')
if mibBuilder.loadTexts: cevcEvcEntry.setDescription("This entry represents the EVC configured on the system and its service atrributes. Entries in this table may be created and deleted via the cevcEvcRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of cevcEvcRowStatus column to 'createAndGo'or 'createAndWait'. Rows are deleted by a SET request setting the value of cevcEvcRowStatus column to 'destroy'.")
cevcEvcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 1), CiscoEvcIndex())
if mibBuilder.loadTexts: cevcEvcIndex.setStatus('current')
if mibBuilder.loadTexts: cevcEvcIndex.setDescription('This object indicates an arbitrary integer-value that uniquely identifies the EVC.')
cevcEvcRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcEvcRowStatus.setStatus('current')
if mibBuilder.loadTexts: cevcEvcRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcEvcTable. cevcEvcIdentifier column must have a valid value before a row can be set to 'active'. Writable objects in this table can be modified while the value of cevcEvcRowStatus column is 'active'. An entry cannot be deleted if there exists a service instance which is referring to the cevcEvcEntry i.e. cevcSIEvcIndex in the cevcSITable has the same value as cevcEvcIndex being deleted.")
cevcEvcStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 3), StorageType().clone('volatile')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcEvcStorageType.setStatus('current')
if mibBuilder.loadTexts: cevcEvcStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevcEvcIdentifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 4), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 100))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcEvcIdentifier.setReference("MEF 16, 'Ethernet Local Management Interface (E-LMI)', January 2006")
if mibBuilder.loadTexts: cevcEvcIdentifier.setStatus('current')
if mibBuilder.loadTexts: cevcEvcIdentifier.setDescription('This object specifies a string-value identifying the EVC. This value should be unique across the MEN.')
cevcEvcType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("pointToPoint", 1), ("multipointToMultipoint", 2))).clone('pointToPoint')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcEvcType.setStatus('current')
if mibBuilder.loadTexts: cevcEvcType.setDescription("This object specifies the type of EVC: 'pointToPoint' Exactly two UNIs are associated with one another. An ingress service frame at one UNI must not result in an egress service frame at a UNI other than the other UNI in the EVC. 'multipointToMultipoint' Two or more UNIs are associated with one another. An ingress service frame at one UNI must not result in an egress service frame at a UNI that is not in the EVC.")
cevcEvcCfgUnis = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(2, 4294967295)).clone(2)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcEvcCfgUnis.setStatus('current')
if mibBuilder.loadTexts: cevcEvcCfgUnis.setDescription("This object specifies the number of UNIs expected to be configured for the EVC in the MEN. The underlying OAM protocol can use this value of UNIs to determine the EVC operational status, cevcEvcOperStatus. For a Multipoint-to-Multipoint EVC the minimum number of Uni's would be two.")
cevcEvcStateTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 2), )
if mibBuilder.loadTexts: cevcEvcStateTable.setStatus('current')
if mibBuilder.loadTexts: cevcEvcStateTable.setDescription('This table lists statical/status data of the EVC. This table has an one-to-one dependent relationship on the cevcEvcTable, containing a row for each EVC.')
cevcEvcStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 2, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcEvcIndex"))
if mibBuilder.loadTexts: cevcEvcStateEntry.setStatus('current')
if mibBuilder.loadTexts: cevcEvcStateEntry.setDescription('This entry represents status atrributes of an EVC. The system automatically creates an entry when the system or the EMS/NMS creates a row in the cevcEvcTable. Likewise, the system automatically destroys an entry when the system or the EMS/NMS destroys the corresponding row in the cevcEvcTable.')
cevcEvcOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 1), ("active", 2), ("partiallyActive", 3), ("inactive", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcEvcOperStatus.setStatus('current')
if mibBuilder.loadTexts: cevcEvcOperStatus.setDescription("This object specifies the operational status of the EVC: 'unknown' Not enough information available regarding the EVC to determine the operational status at this time or EVC operational status is undefined. 'active' Fully operational between the UNIs in the EVC. 'partiallyActive' Capable of transferring traffic among some but not all of the UNIs in the EVC. This operational status is applicable only for Multipoint-to-Multipoint EVCs. 'inactive' Not capable of transferring traffic among any of the UNIs in the EVC. This value is derived from data gathered by underlying OAM protocol.")
cevcEvcActiveUnis = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 2, 1, 2), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcEvcActiveUnis.setStatus('current')
if mibBuilder.loadTexts: cevcEvcActiveUnis.setDescription('This object indicates the number of active UNIs for the EVC in the MEN. This value is derived from data gathered by underlying OAM Protocol.')
cevcEvcUniTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3), )
if mibBuilder.loadTexts: cevcEvcUniTable.setStatus('current')
if mibBuilder.loadTexts: cevcEvcUniTable.setDescription("This table contains a list of UNI's for each EVC configured on the device. The UNIs can be local (i.e. physically located on the system) or remote (i.e. not physically located on the device). For local UNIs, the UNI Id is the same as denoted by cevcUniIdentifier with the same ifIndex value as cevcEvcLocalUniIfIndex. For remote UNIs, the underlying OAM protocol, if capable, provides the UNI Id via its protocol messages. This table has an expansion dependent relationship on the cevcEvcTable, containing a row for each UNI that is in the EVC.")
cevcEvcUniEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcEvcIndex"), (0, "CISCO-EVC-MIB", "cevcEvcUniIndex"))
if mibBuilder.loadTexts: cevcEvcUniEntry.setStatus('current')
if mibBuilder.loadTexts: cevcEvcUniEntry.setDescription('This entry represents a UNI, either local or remote, in the EVC. The system automatically creates an entry, when an UNI is attached to the EVC. Entries are automatically destroyed when the system or the EMS/NMS destroys the corresponding row in the cevcEvcTable or when an UNI is removed from the EVC.')
cevcEvcUniIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295)))
if mibBuilder.loadTexts: cevcEvcUniIndex.setStatus('current')
if mibBuilder.loadTexts: cevcEvcUniIndex.setDescription('This object indicates an arbitrary integer-value that uniquely identifies the UNI in an EVC.')
cevcEvcUniId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcEvcUniId.setReference('MEF 16, Ethernet Local Management Interface (E-LMI), January 2006')
if mibBuilder.loadTexts: cevcEvcUniId.setStatus('current')
if mibBuilder.loadTexts: cevcEvcUniId.setDescription('This object indicates the string-value identifying the UNI that is in the EVC. For UNI that is local, this value is the same as cevcUniIdentifier for the same ifIndex value as cevcEvcLocalUniIfIndex. For UNI that is not on the system, this value may be derived from the underlying OAM protocol. If the UNI identifier value is not specified for the UNI or it is unknown, the value of the cevcEvcUniId column is a zero-length string.')
cevcEvcUniOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("unknown", 1), ("notReachable", 2), ("up", 3), ("down", 4), ("adminDown", 5), ("localExcessiveError", 6), ("remoteExcessiveError", 7), ("localInLoopback", 8), ("remoteInLoopback", 9), ("localOutLoopback", 10), ("remoteOutLoopback", 11)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcEvcUniOperStatus.setStatus('current')
if mibBuilder.loadTexts: cevcEvcUniOperStatus.setDescription("This object indicates the operational status derived from data gathered by the OAM protocol for an UNI. 'unknown' Status is not known; possible reason could be caused by the OAM protocol has not provided information regarding the UNI. 'notReachable' UNI is not reachable; possible reason could be caused by the OAM protocol messages having not been received for an excessive length of time. 'up' UNI is active, up, and able to pass traffic. 'down' UNI is down and not passing traffic. 'adminDown' UNI has been administratively put in down state. 'localExcessiveError' UNI has experienced excessive number of invalid frames on the local end of the physical link between UNI-C and UNI-N. 'remoteExcessiveError' UNI has experienced excessive number of invalid frames on the remote side of the physical connection between UNI-C and UNI-N. 'localInLoopback' UNI is loopback on the local end of the physical link between UNI-C and UNI-N. 'remoteInLoopback' UNI is looped back on the remote end of the link between UNI-C and UNI-N. 'localOutLoopback' UNI just transitioned out of loopback on the local end of the physcial link between UNI-C and UNI-N. 'remoteOutLoopback' UNI just transitioned out of loopback on the remote end of the physcial link between UNI-C and UNI-N.")
cevcEvcLocalUniIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3, 1, 4), InterfaceIndexOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcEvcLocalUniIfIndex.setStatus('current')
if mibBuilder.loadTexts: cevcEvcLocalUniIfIndex.setDescription("When the UNI is local on the system, this object specifies the ifIndex of the UNI. The value '0' of this column indicates remote UNI.")
cevcSITable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1), )
if mibBuilder.loadTexts: cevcSITable.setStatus('current')
if mibBuilder.loadTexts: cevcSITable.setDescription('This table lists each service instance and its service attributes.')
cevcSIEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcSIIndex"))
if mibBuilder.loadTexts: cevcSIEntry.setStatus('current')
if mibBuilder.loadTexts: cevcSIEntry.setDescription("This entry represents a service instance configured on the system and its service attributes. Entries in this table may be created and deleted via the cevcSIRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of cevcSIRowStatus column to 'createAndGo'or 'createAndWait'. Rows are deleted by a SET request setting the value of cevcSIRowStatus column to 'destroy'.")
cevcSIIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295)))
if mibBuilder.loadTexts: cevcSIIndex.setStatus('current')
if mibBuilder.loadTexts: cevcSIIndex.setDescription('This object indicates an arbitrary integer-value that uniquely identifies a service instance. An implementation MAY assign an ifIndex-value assigned to the service instance to cevcSIIndex.')
cevcSIRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIRowStatus.setStatus('current')
if mibBuilder.loadTexts: cevcSIRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSITable. This object cannot be set to 'active' until following corresponding objects are assigned to valid values: - cevcSITargetType - cevcSITarget - cevcSIName - cevcSIType Following writable objects in this table cannot be modified while the value of cevcSIRowStatus is 'active': - cevcSITargetType - cevcSITarget - cevcSIName - cevcSIType Objects in this table and all other tables that have the same cevcSIIndex value as an index disappear when cevcSIRowStatus is set to 'destroy'.")
cevcSIStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 3), StorageType().clone('volatile')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIStorageType.setStatus('current')
if mibBuilder.loadTexts: cevcSIStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevcSITargetType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 4), ServiceInstanceTargetType()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSITargetType.setStatus('current')
if mibBuilder.loadTexts: cevcSITargetType.setDescription('This object indicates the type of interface/media to which a service instance has an attachment.')
cevcSITarget = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 5), ServiceInstanceTarget()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSITarget.setStatus('current')
if mibBuilder.loadTexts: cevcSITarget.setDescription('This object indicates the target to which a service instance has an attachment. If the target is unknown, the value of the cevcSITarget column is a zero-length string.')
cevcSIName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 6), SnmpAdminString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIName.setStatus('current')
if mibBuilder.loadTexts: cevcSIName.setDescription("The textual name of the service instance. The value of this column should be the name of the component as assigned by the local interface/media type and should be be suitable for use in commands entered at the device's 'console'. This might be text name, such as 'si1' or a simple service instance number, such as '1', depending on the interface naming syntax of the device. If there is no local name or this object is otherwise not applicable, then this object contains a zero-length string.")
cevcSIEvcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 7), CiscoEvcIndexOrZero()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIEvcIndex.setStatus('current')
if mibBuilder.loadTexts: cevcSIEvcIndex.setDescription("This object specifies the EVC Index that the service instance is associated. The value of '0' this column indicates that the service instance is not associated to an EVC. If the value of cevcSIEvcIndex column is not '0', there must exist an active row in the cevcEvcTable with the same index value for cevcEvcIndex.")
cevcSIAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2))).clone('up')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIAdminStatus.setStatus('current')
if mibBuilder.loadTexts: cevcSIAdminStatus.setDescription("This object specifies the desired state of the Service Instance. 'up' Ready to transfer traffic. When a system initializes, all service instances start with this state. 'down' The service instance is administratively down and is not capable of transferring traffic.")
cevcSIForwardingType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("other", 0), ("bridgeDomain", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIForwardingType.setStatus('current')
if mibBuilder.loadTexts: cevcSIForwardingType.setDescription("This object indicates technique used by a service instance to forward service frames. 'other' If the forwarding behavior of a service instance is not defined or unknown, this object is set to other(0). 'bridgeDomain' Bridge domain is used to forward service frames by a service instance. If cevcSIForwardingType is 'bridgeDomain(1)', there must exist an active row in the cevcSIForwardBdTable with the same index value of cevcSIIndex. The object cevcSIForwardBdNumber indicates the identifier of the bridge domain component being used.")
cevcSICreationType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("static", 1), ("dynamic", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcSICreationType.setStatus('current')
if mibBuilder.loadTexts: cevcSICreationType.setDescription("This object specifies whether the service instance created is statically configured by the user or is dynamically created. 'static' If the service instance is configured manually this object is set to static(1). 'dynamic' If the service instance is created dynamically by the first sign of life of an Ethernet frame, then this object is set to dynamic(2) for the service instance.")
cevcSIType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("regular", 1), ("trunk", 2), ("l2context", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIType.setStatus('current')
if mibBuilder.loadTexts: cevcSIType.setDescription("This object specifies the type of the service instance. It mentions if the service instance is either a regular or trunk or l2context service instance. 'regular' If a service instance is configured without any type specified, then it is a regular service instance. 'trunk' If the service instance is configured with trunk type, then it is a trunk service instance. For a trunk service instance, its Bridge domain IDs are derived from encapsulation VLAN plus an optional offset (refer cevcSIForwardBdNumberBase object). 'l2context' If the service instance is configured with dynamic type, then it is a L2 context service instance. The Ethernet L2 Context is a statically configured service instance which contains the Ethernet Initiator for attracting the first sign of life. In other words, Ethernet L2 Context service instance is used for catching the first sign of life of Ethernet frames to create dynamic Ethernet sessions service instances.")
cevcSIStateTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 2), )
if mibBuilder.loadTexts: cevcSIStateTable.setStatus('current')
if mibBuilder.loadTexts: cevcSIStateTable.setDescription('This table lists statical status data of the service instance. This table has an one-to-one dependent relationship on the cevcSITable, containing a row for each service instance.')
cevcSIStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 2, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcSIIndex"))
if mibBuilder.loadTexts: cevcSIStateEntry.setStatus('current')
if mibBuilder.loadTexts: cevcSIStateEntry.setDescription('This entry represents operational status of a service instance. The system automatically creates an entry when the system or the EMS NMS creates a row in the cevcSITable. Likewise, the system automatically destroys an entry when the system or the EMS NMS destroys the corresponding row in the cevcSITable.')
cevcSIOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("adminDown", 3), ("deleted", 4), ("errorDisabled", 5), ("unknown", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cevcSIOperStatus.setStatus('current')
if mibBuilder.loadTexts: cevcSIOperStatus.setDescription("This object indicates the operational status of the Service Instance. 'up' Service instance is fully operational and able to transfer traffic. 'down' Service instance is down and not capable of transferring traffic, and is not administratively configured to be down by management system. 'adminDown' Service instance has been explicitly configured to administratively down by a management system and is not capable of transferring traffic. 'deleted' Service instance has been deleted. 'errorDisabled' Service instance has been shut down due to MAC security violations. 'unknown' Operational status of service instance is unknown or undefined.")
cevcSIVlanRewriteTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3), )
if mibBuilder.loadTexts: cevcSIVlanRewriteTable.setStatus('current')
if mibBuilder.loadTexts: cevcSIVlanRewriteTable.setDescription("This table lists the rewrite adjustments of the service frame's VLAN tags for service instances. This table has an expansion dependent relationship on the cevcSITable, containing a row for a VLAN adjustment for ingress and egress frames at each service instance.")
cevcSIVlanRewriteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcSIIndex"), (0, "CISCO-EVC-MIB", "cevcSIVlanRewriteDirection"))
if mibBuilder.loadTexts: cevcSIVlanRewriteEntry.setStatus('current')
if mibBuilder.loadTexts: cevcSIVlanRewriteEntry.setDescription('Each entry represents the VLAN adjustment for a Service Instance.')
cevcSIVlanRewriteDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ingress", 1), ("egress", 2))))
if mibBuilder.loadTexts: cevcSIVlanRewriteDirection.setStatus('current')
if mibBuilder.loadTexts: cevcSIVlanRewriteDirection.setDescription("This object specifies the VLAN adjustment for 'ingress' frames or 'egress' frames on the service instance.")
cevcSIVlanRewriteRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIVlanRewriteRowStatus.setStatus('current')
if mibBuilder.loadTexts: cevcSIVlanRewriteRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSIVlanRewriteTable. cevcSIVlanRewriteAction and cevcSIVlanRewriteEncapsulation must have valid values before this object can be set to 'active'. Writable objects in this table can be modified while the value of cevcSIVlanRewriteRowStatus column is 'active'.")
cevcSIVlanRewriteStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 3), StorageType().clone('volatile')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIVlanRewriteStorageType.setStatus('current')
if mibBuilder.loadTexts: cevcSIVlanRewriteStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevcSIVlanRewriteAction = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("push1", 1), ("push2", 2), ("pop1", 3), ("pop2", 4), ("translate1To1", 5), ("translate1To2", 6), ("translate2To1", 7), ("translate2To2", 8)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIVlanRewriteAction.setStatus('current')
if mibBuilder.loadTexts: cevcSIVlanRewriteAction.setDescription("This object specifies the rewrite action the device performs for the service instance, including: 'push1' Add cevcSIVlanRewriteVlan1 as the VLAN tag to the service frame. 'push2' Add cevcSIVlanRewriteVlan1 as the outer VLAN tag and cevcSIVlanRewriteVlan2 as the inner VLAN tag of the service frame. 'pop1' Remove the outermost VLAN tag from the service frame. 'pop2' Remove the two outermost VLAN tags from the service frame. 'translate1To1' Replace the outermost VLAN tag with the cevcSIVlanRewriteVlan1 tag. 'translate1To2' Replace the outermost VLAN tag with cevcSIVlanRewriteVlan1 and add cevcSIVlanRewriteVlan2 to the second VLAN tag of the service frame. 'translate2To1' Remove the outermost VLAN tag and replace the second VLAN tag with cevcSIVlanVlanRewriteVlan1. 'translate2To2' Replace the outermost VLAN tag with cevcSIVlanRewriteVlan1 and the second VLAN tag with cevcSIVlanRewriteVlan2.")
cevcSIVlanRewriteEncapsulation = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dot1q", 1), ("dot1ad", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIVlanRewriteEncapsulation.setStatus('current')
if mibBuilder.loadTexts: cevcSIVlanRewriteEncapsulation.setDescription("This object specifies the encapsulation type to process for the service instance. 'dot1q' The IEEE 802.1q encapsulation. 'dot1ad' The IEEE 802.1ad encapsulation.")
cevcSIVlanRewriteVlan1 = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 6), VlanId()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIVlanRewriteVlan1.setStatus('current')
if mibBuilder.loadTexts: cevcSIVlanRewriteVlan1.setDescription("This object specifies the outermost VLAN ID tag of the frame for the service instance. This object is valid only when cevcSIVlanRewriteAction is 'push1', 'push2', 'translate1To1', 'translate1To2', 'translate2To1', or 'translate2To2'.")
cevcSIVlanRewriteVlan2 = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 7), VlanId()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIVlanRewriteVlan2.setStatus('current')
if mibBuilder.loadTexts: cevcSIVlanRewriteVlan2.setDescription("This object specifies the second VLAN ID tag of the frame for the service instance. This object is valid only when cevcSIVlanRewriteAction is 'push2', 'translate1To2', or 'translate2To2'.")
cevcSIVlanRewriteSymmetric = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 8), TruthValue().clone('false')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIVlanRewriteSymmetric.setStatus('current')
if mibBuilder.loadTexts: cevcSIVlanRewriteSymmetric.setDescription("This object is valid only when cevcSIVlanRewriteDirection is 'ingress'. The value 'true' of this column specifies that egress packets are tagged with a VLAN specified by an active row in cevcSIPrimaryVlanTable. There could only be one VLAN value assigned in the cevcSIPrimaryVlanTable, i.e. only one 'active' entry that has the same index value of cevcSIIndex column and corresponding instance of cevcSIPrimaryVlanEndingVlan column has value '0'.")
cevcSIL2ControlProtocolTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 4), )
if mibBuilder.loadTexts: cevcSIL2ControlProtocolTable.setStatus('current')
if mibBuilder.loadTexts: cevcSIL2ControlProtocolTable.setDescription('This table lists the layer 2 control protocol processing attributes at service instances. This table has an expansion dependent relationship on the cevcSITable, containing a row for each layer 2 control protocol disposition at each service instance.')
cevcSIL2ControlProtocolEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 4, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcSIIndex"), (0, "CISCO-EVC-MIB", "cevcSIL2ControlProtocolType"))
if mibBuilder.loadTexts: cevcSIL2ControlProtocolEntry.setStatus('current')
if mibBuilder.loadTexts: cevcSIL2ControlProtocolEntry.setDescription('This entry represents the layer 2 control protocol processing at a service instance. The system automatically creates an entry for each layer 2 control protocol type when an entry is created in the cevcSITable, and entries are automatically destroyed when the system destroys the corresponding row in the cevcSITable.')
cevcSIL2ControlProtocolType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 4, 1, 1), CevcL2ControlProtocolType())
if mibBuilder.loadTexts: cevcSIL2ControlProtocolType.setStatus('current')
if mibBuilder.loadTexts: cevcSIL2ControlProtocolType.setDescription('The layer 2 control protocol service frame that the service instance is to process as defined by object cevcSIL2ControlProtocolAction.')
cevcSIL2ControlProtocolAction = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("discard", 1), ("tunnel", 2), ("forward", 3))).clone('discard')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIL2ControlProtocolAction.setStatus('current')
if mibBuilder.loadTexts: cevcSIL2ControlProtocolAction.setDescription("The actions to be taken for a given layer 2 control protocol service frames that matches cevcSIL2ControlProtocolType, including: 'discard' The MEN must discard all ingress service frames carrying the layer 2 control protocol service frames on the EVC and the MEN must not generate any egress service frames carrying the layer 2 control protocol frames on the EVC. 'tunnel' Forward the layer 2 control protocol service frames with the MAC address changed as defined by the individual layer 2 control protocol. The EVC does not process the layer 2 protocol service frames. If a layer 2 control protocol service frame is to be tunneled, all the UNIs in the EVC must be configured to pass the layer 2 control protocol service frames to the EVC, cevcPortL2ControlProtocolAction column has the value of 'passToEvc' or 'peerAndPassToEvc'. 'forward' Forward the layer 2 conrol protocol service frames as data; similar to tunnel but layer 2 control protocol service frames are forwarded without changing the MAC address.")
cevcSICEVlanTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5), )
if mibBuilder.loadTexts: cevcSICEVlanTable.setStatus('current')
if mibBuilder.loadTexts: cevcSICEVlanTable.setDescription('This table contains the CE-VLAN map list for each Service Instance. This table has an expansion dependent relationship on the cevcSITable, containing a row for each CE-VLAN or a range of CE-VLANs that are mapped to a service instance.')
cevcSICEVlanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcSIIndex"), (0, "CISCO-EVC-MIB", "cevcSICEVlanBeginningVlan"))
if mibBuilder.loadTexts: cevcSICEVlanEntry.setStatus('current')
if mibBuilder.loadTexts: cevcSICEVlanEntry.setDescription("This entry contains the CE-VLANs that are mapped at a Service Instance. Entries in this table may be created and deleted via the cevcSICEVlanRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of cevcSICEVlanRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of cevcSICEVlanRowStatus column to 'destroy'.")
cevcSICEVlanBeginningVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5, 1, 1), VlanId())
if mibBuilder.loadTexts: cevcSICEVlanBeginningVlan.setStatus('current')
if mibBuilder.loadTexts: cevcSICEVlanBeginningVlan.setDescription("If cevcSICEVlanEndingVlan is '0', then this object indicates a single VLAN in the list. If cevcSICEVlanEndingVlan is not '0', then this object indicates the first VLAN in a range of VLANs.")
cevcSICEVlanRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSICEVlanRowStatus.setStatus('current')
if mibBuilder.loadTexts: cevcSICEVlanRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSICEVlanTable. This object cannot be set to 'active' until all objects have been assigned valid values. Writable objects in this table can be modified while the value of the cevcSICEVlanRowStatus column is 'active'.")
cevcSICEVlanStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5, 1, 3), StorageType().clone('volatile')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSICEVlanStorageType.setStatus('current')
if mibBuilder.loadTexts: cevcSICEVlanStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevcSICEVlanEndingVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5, 1, 4), VlanIdOrNone()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSICEVlanEndingVlan.setStatus('current')
if mibBuilder.loadTexts: cevcSICEVlanEndingVlan.setDescription("This object indicates the last VLAN in a range of VLANs. If the row does not describe a range, then the value of this column must be '0'.")
cevcSIMatchCriteriaTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6), )
if mibBuilder.loadTexts: cevcSIMatchCriteriaTable.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchCriteriaTable.setDescription('This table contains the match criteria for each Service Instance. This table has an expansion dependent relationship on the cevcSITable, containing a row for each group of match criteria of each service instance.')
cevcSIMatchCriteriaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcSIIndex"), (0, "CISCO-EVC-MIB", "cevcSIMatchCriteriaIndex"))
if mibBuilder.loadTexts: cevcSIMatchCriteriaEntry.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchCriteriaEntry.setDescription("This entry represents a group of match criteria for a service instance. Each entry in the table with the same cevcSIIndex and different cevcSIMatchCriteriaIndex represents an OR operation of the match criteria for the service instance. Entries in this table may be created and deleted via the cevcSIMatchRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of cevcSIMatchRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of cevcSIMatchRowStatus column to 'destroy'.")
cevcSIMatchCriteriaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295)))
if mibBuilder.loadTexts: cevcSIMatchCriteriaIndex.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchCriteriaIndex.setDescription('This object indicates an arbitrary integer-value that uniquely identifies a match criteria for a service instance.')
cevcSIMatchRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchRowStatus.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSIMatchCriteriaTable. If the value of cevcSIMatchCriteriaType column is 'dot1q(1)' or 'dot1ad(2)' or 'untaggedAndDot1q' or 'untaggedAndDot1ad, then cevcSIMatchCriteriaRowStatus can not be set to 'active' until there exist an active row in the cevcSIMatchEncapTable with the same index value for cevcSIIndex and cevcSIMatchCriteriaIndex. Writable objects in this table can be modified while the value of the cevcSIMatchRowStatus column is 'active'.")
cevcSIMatchStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6, 1, 3), StorageType().clone('volatile')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchStorageType.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevcSIMatchCriteriaType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("unknown", 1), ("dot1q", 2), ("dot1ad", 3), ("untagged", 4), ("untaggedAndDot1q", 5), ("untaggedAndDot1ad", 6), ("priorityTagged", 7), ("defaultTagged", 8)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchCriteriaType.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchCriteriaType.setDescription("This object specifies the criteria used to match a service instance. 'unknown' Match criteria for the service instance is not defined or unknown. 'dot1q' The IEEE 802.1q encapsulation is used as a match criteria for the service instance. The ether type value of the IEEE 802.1q tag is specified by the object cevcSIEncapEncapsulation with the same index value of cevcSIIndex and cevcSIMatchCreriaIndex. 'dot1ad' The IEEE 802.1ad encapsulation is used as a match criteria for the service instance. The ether type value of the IEEE 802.1ad tag is specified by the cevcSIEncapEncapsulation column with the same index value of cevcSIIndex and cevcSIMatchCreriaIndex. 'untagged' Service instance processes untagged service frames. Only one service instance on the interface/media type can use untagged frames as a match criteria. 'untaggedAndDot1q' Both untagged frames and the IEEE 802.1q encapsulation are used as a match criteria for the service instance. Only one service instance on the interface/media type can use untagged frames as a match criteria. The ether type value of the IEEE 802.1q tag is specified by the cevcSIEncapEncapsulation column with the same index value of cevcSIIndex and cevcSIMatchCreriaIndex. 'untaggedAndDot1ad' Both untagged frames and the IEEE 802.1ad encapsulation are used as a match criteria for the service instance. Only one service instance on the interface/media type can use untagged frames as a match criteria. The ether type value of the IEEE 802.1ad tag is specified by the cevcSIEncapEncapsulation column with the same index value of cevcSIIndex and cevcSIMatchCreriaIndex. 'priorityTagged' Service instance processes priority tagged frames. Only one service instance on the interface/media type can use priority tagged frames as a match criteria. 'defaultTagged' Service instance is a default service instance. The default service instance processes frames with VLANs that do not match to any other service instances configured on the interface/media type. Only one service instance on the interface/media type can be the default service instance.")
cevcSIMatchEncapTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7), )
if mibBuilder.loadTexts: cevcSIMatchEncapTable.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchEncapTable.setDescription("This table contains the encapsulation based match criteria for each service instance. This table has a sparse dependent relationship on the cevcSIMatchCriteriaTable, containing a row for each match criteria having one of the following values for cevcSIMatchCriteriaType: - 'dot1q' - 'dot1ad' - 'untaggedAndDot1q' - 'untaggedAndDot1ad' - 'priorityTagged'")
cevcSIMatchEncapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcSIIndex"), (0, "CISCO-EVC-MIB", "cevcSIMatchCriteriaIndex"))
if mibBuilder.loadTexts: cevcSIMatchEncapEntry.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchEncapEntry.setDescription("This entry represents a group of encapulation match criteria for a service instance. Entries in this table may be created and deleted via the cevcSIMatchEncapRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of cevcSIMatchEncapRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of cevcSIMatchEncapRowStatus column to 'destroy'.")
cevcSIMatchEncapRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 1), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchEncapRowStatus.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchEncapRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSIMatchEncapTable. This object cannot be set to 'active' until cevcSIEncapEncapsulation and objects referred by cevcSIMatchEncapValid have been assigned their respective valid values. Writable objects in this table can be modified while the value of the cevcSIEncapMatchRowStatus column is 'active'.")
cevcSIMatchEncapStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 2), StorageType().clone('volatile')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchEncapStorageType.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchEncapStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevcSIMatchEncapValid = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 3), Bits().clone(namedValues=NamedValues(("primaryCos", 0), ("secondaryCos", 1), ("payloadType", 2), ("payloadTypes", 3), ("priorityCos", 4), ("dot1qNativeVlan", 5), ("dot1adNativeVlan", 6), ("encapExact", 7)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchEncapValid.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchEncapValid.setDescription("This object specifies the encapsulation criteria used to match a service instance. 'primaryCos' The 'primaryCos' bit set to '1' specifies the Class of Service is used as service match criteria for the service instance. When this bit is set to '1' there must exist aleast one active rows in the cevcSIPrimaryVlanTable which has the same index values of cevcSIIndex and cevcSIMatchCriteriaIndex. When 'primaryCos' bit is '1', the cevcSIPrimaryCos column indicates the CoS value(s). 'secondaryCos' The 'secondaryCos' bit set to '1' specifies the Class of Service is used as service match criteria for the service instance. When this bit is set to '1' there must exist aleast one active rows in the cevcSISecondaryVlanTable which has the same index values of cevcSIIndex and cevcSIMatchCriteriaIndex. When 'secondaryCos' bit is '1', the cevcSISecondaryCos column indicates the CoS value(s). 'payloadType' This bit set to '1' specifies that the value of corresponding instance of cevcSIMatchEncapPayloadType is used as service match criteria for the service instance. 'payloadTypes' This bit set to '1' specifies that the value of corresponding instance of cevcSIMatchEncapPayloadTypes is used as service match criteria for the service instance. 'priorityCos' This bit set to '1' specifies that the value of corresponding instance of cevcSIMatchEncapPriorityCos is used as service match criteria for the service instance. 'dot1qNativeVlan' This bit set to '1' specifies that the IEEE 802.1q tag with native vlan is used as service match criteria for the service instance. 'dot1adNativeVlan' This bit set to '1' specifies that the IEEE 802.1ad tag with native vlan is used as service match criteria for the service instance. 'encapExact' This bit set to '1' specifies that a service frame is mapped to the service instance only if it matches exactly to the encapsulation specified by the service instance.")
cevcSIMatchEncapEncapsulation = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("dot1qEthertype0x8100", 1), ("dot1qEthertype0x9100", 2), ("dot1qEthertype0x9200", 3), ("dot1qEthertype0x88A8", 4), ("dot1adEthertype0x88A8", 5), ("dot1ahEthertype0x88A8", 6)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchEncapEncapsulation.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchEncapEncapsulation.setDescription("This object specifies the encapsulation type used as service match criteria. The object also specifies the Ethertype for egress packets on the service instance. 'dot1qEthertype0x8100' The IEEE 801.1q encapsulation with ether type value 0x8100. 'dot1qEthertype0x9100' The IEEE 801.1q encapsulation with ether type value 0x9100. 'dot1qEthertype0x9200' The IEEE 801.1q encapsulation with ether type value 0x9200. 'dot1qEthertype0x88A8' The IEEE 801.1q encapsulation with ether type value 0x88A8. 'dot1adEthertype0x88A8' The IEEE 801.1ad encapsulation with ether type value 0x88A8. 'dot1ahEthertype0x88A8' The IEEE 801.1ah encapsulation with ether type value 0x88A8.")
cevcSIMatchEncapPrimaryCos = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 5), CiscoCosList()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchEncapPrimaryCos.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchEncapPrimaryCos.setDescription("This object specifies the CoS values which the Service Instance uses as service match criteria. This object is valid only when 'primaryVlans' and 'primaryCos' bits are set to '1' in corresponding instance of the object cevcSIMatchEncapValid.")
cevcSIMatchEncapSecondaryCos = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 6), CiscoCosList()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchEncapSecondaryCos.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchEncapSecondaryCos.setDescription("This object specifies the CoS values which the Service Instance uses as service match criteria. This object is valid only when 'secondaryVlans' and 'secondaryCos' bits are set to '1' in corresponding instance of the object cevcSIMatchEncapValid.")
cevcSIMatchEncapPayloadType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("payloadType0x0800ip", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchEncapPayloadType.setStatus('deprecated')
if mibBuilder.loadTexts: cevcSIMatchEncapPayloadType.setDescription("This object specifies the PayloadType(etype/protocol type) values that the service instance uses as a service match criteria. This object is required when the forwarding of layer-2 ethernet packet is done through the payloadType i.e IP etc. 'other' None of the following. 'payloadType0x0800ip' Payload type value for IP is 0x0800. This object is valid only when 'payloadType' bit is set to '1' in corresponding instance of the object cevcSIMatchEncapValid. This object is deprecated by cevcSIMatchEncapPayloadTypes.")
cevcSIMatchEncapPayloadTypes = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 8), Bits().clone(namedValues=NamedValues(("payloadTypeIPv4", 0), ("payloadTypeIPv6", 1), ("payloadTypePPPoEDiscovery", 2), ("payloadTypePPPoESession", 3), ("payloadTypePPPoEAll", 4)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchEncapPayloadTypes.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchEncapPayloadTypes.setDescription("This object specifies the etype/protocol type values that service instance uses as a service match criteria. This object is required when the forwarding of layer-2 ethernet packet is done through the payload ether type i.e IP etc. 'payloadTypeIPv4' Ethernet payload type value for IPv4 protocol. 'payloadTypeIPv6' Ethernet payload type value for IPv6 protocol. 'payloadTypePPPoEDiscovery' Ethernet payload type value for PPPoE discovery stage. 'payloadTypePPPoESession' Ethernet payload type value for PPPoE session stage. 'payloadTypePPPoEAll' All ethernet payload type values for PPPoE protocol. This object is valid only when 'payloadTypes' bit is set to '1' in corresponding instance of the object cevcSIMatchEncapValid. This object deprecates cevcSIMatchEncapPayloadType.")
cevcSIMatchEncapPriorityCos = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 9), CiscoCosList()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIMatchEncapPriorityCos.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchEncapPriorityCos.setDescription("This object specifies the priority CoS values which the service instance uses as service match criteria. This object is valid only when 'priorityCos' bit is set to '1' in corresponding instance of the object cevcSIMatchEncapValid.")
cevcSIPrimaryVlanTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8), )
if mibBuilder.loadTexts: cevcSIPrimaryVlanTable.setStatus('current')
if mibBuilder.loadTexts: cevcSIPrimaryVlanTable.setDescription('This table contains the primary VLAN ID list for each Service Instance. This table has an expansion dependent relationship on the cevcSIMatchEncapTable, containing zero or more rows for each encapsulation match criteria.')
cevcSIPrimaryVlanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcSIIndex"), (0, "CISCO-EVC-MIB", "cevcSIMatchCriteriaIndex"), (0, "CISCO-EVC-MIB", "cevcSIPrimaryVlanBeginningVlan"))
if mibBuilder.loadTexts: cevcSIPrimaryVlanEntry.setStatus('current')
if mibBuilder.loadTexts: cevcSIPrimaryVlanEntry.setDescription("This entry specifies a single VLAN or a range of VLANs contained in the primary VLAN list that's part of the encapsulation match criteria. Entries in this table may be created and deleted via the cevcSIPrimaryVlanRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of the cevcSIPrimaryVlanRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of the cevcSIPrimaryVlanRowStatus column to 'destroy'.")
cevcSIPrimaryVlanBeginningVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8, 1, 1), VlanId())
if mibBuilder.loadTexts: cevcSIPrimaryVlanBeginningVlan.setStatus('current')
if mibBuilder.loadTexts: cevcSIPrimaryVlanBeginningVlan.setDescription("If cevcSIPrimaryVlanEndingVlan is '0', then this object indicates a single VLAN in the list. If cevcSIPrimaryVlanEndingVlan is not '0', then this object indicates the first VLAN in a range of VLANs.")
cevcSIPrimaryVlanRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIPrimaryVlanRowStatus.setStatus('current')
if mibBuilder.loadTexts: cevcSIPrimaryVlanRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSIPrimaryVlanTable. This column cannot be set to 'active' until all objects have been assigned valid values. Writable objects in this table can be modified while the value of the cevcSIPrimaryVlanRowStatus column is 'active'.")
cevcSIPrimaryVlanStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8, 1, 3), StorageType().clone('volatile')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIPrimaryVlanStorageType.setStatus('current')
if mibBuilder.loadTexts: cevcSIPrimaryVlanStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevcSIPrimaryVlanEndingVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8, 1, 4), VlanIdOrNone()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIPrimaryVlanEndingVlan.setStatus('current')
if mibBuilder.loadTexts: cevcSIPrimaryVlanEndingVlan.setDescription("This object indicates the last VLAN in a range of VLANs. If the row does not describe a range, then the value of this column must be '0'.")
cevcSISecondaryVlanTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9), )
if mibBuilder.loadTexts: cevcSISecondaryVlanTable.setStatus('current')
if mibBuilder.loadTexts: cevcSISecondaryVlanTable.setDescription('This table contains the seconadary VLAN ID list for each service instance. This table has an expansion dependent relationship on the cevcSIMatchEncapTable, containing zero or more rows for each encapsulation match criteria.')
cevcSISecondaryVlanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcSIIndex"), (0, "CISCO-EVC-MIB", "cevcSIMatchCriteriaIndex"), (0, "CISCO-EVC-MIB", "cevcSISecondaryVlanBeginningVlan"))
if mibBuilder.loadTexts: cevcSISecondaryVlanEntry.setStatus('current')
if mibBuilder.loadTexts: cevcSISecondaryVlanEntry.setDescription("This entry specifies a single VLAN or a range of VLANs contained in the secondary VLAN list that's part of the encapsulation match criteria. Entries in this table may be created and deleted via the cevcSISecondaryVlanRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of the cevcSISecondaryVlanRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of the cevcSISecondaryVlanRowStatus column to 'destroy'.")
cevcSISecondaryVlanBeginningVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9, 1, 1), VlanId())
if mibBuilder.loadTexts: cevcSISecondaryVlanBeginningVlan.setStatus('current')
if mibBuilder.loadTexts: cevcSISecondaryVlanBeginningVlan.setDescription("If cevcSISecondaryVlanEndingVlan is '0', then this object indicates a single VLAN in the list. If cevcSISecondaryVlanEndingVlan is not '0', then this object indicates the first VLAN in a range of VLANs.")
cevcSISecondaryVlanRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSISecondaryVlanRowStatus.setStatus('current')
if mibBuilder.loadTexts: cevcSISecondaryVlanRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSISecondaryVlanTable. This column can not be set to 'active' until all objects have been assigned valid values. Writable objects in this table can be modified while the value of cevcSISecondaryVlanRowStatus column is 'active'.")
cevcSISecondaryVlanStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9, 1, 3), StorageType().clone('volatile')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSISecondaryVlanStorageType.setStatus('current')
if mibBuilder.loadTexts: cevcSISecondaryVlanStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevcSISecondaryVlanEndingVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9, 1, 4), VlanIdOrNone()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSISecondaryVlanEndingVlan.setStatus('current')
if mibBuilder.loadTexts: cevcSISecondaryVlanEndingVlan.setDescription("This object indicates the last VLAN in a range of VLANs. If the row does not describe a range, then the value of this column must be '0'.")
cevcSIForwardBdTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10), )
if mibBuilder.loadTexts: cevcSIForwardBdTable.setStatus('current')
if mibBuilder.loadTexts: cevcSIForwardBdTable.setDescription("This table contains the forwarding bridge domain information for each service instance. This table has a sparse dependent relationship on the cevcSITable, containing a row for each service instance having a cevcSIForwardingType of 'bridgeDomain'.")
cevcSIForwardBdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1), ).setIndexNames((0, "CISCO-EVC-MIB", "cevcSIIndex"))
if mibBuilder.loadTexts: cevcSIForwardBdEntry.setStatus('current')
if mibBuilder.loadTexts: cevcSIForwardBdEntry.setDescription("This entry represents an bridged domain used to forward service frames by the service instance. Entries in this table may be created and deleted via the cevcSIForwardBdRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of the cevcSIForwardBdRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of the cevcSIForwardBdRowStatus column to 'destroy'.")
cevcSIForwardBdRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 1), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIForwardBdRowStatus.setStatus('current')
if mibBuilder.loadTexts: cevcSIForwardBdRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSIForwardBdTable. This column can not be set to 'active' until all objects have been assigned valid values. Writable objects in this table can be modified while the value of the cevcSIForwardBdRowStatus column is 'active'.")
cevcSIForwardBdStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 2), StorageType().clone('volatile')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIForwardBdStorageType.setStatus('current')
if mibBuilder.loadTexts: cevcSIForwardBdStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevcSIForwardBdNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 3), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIForwardBdNumber.setStatus('deprecated')
if mibBuilder.loadTexts: cevcSIForwardBdNumber.setDescription('The bridge domain identifier that is associated with the service instance. A bridge domain refers to a layer 2 broadcast domain spanning a set of physical or virtual ports. Frames are switched Multicast and unknown destination unicast frames are flooded within the confines of the bridge domain.')
cevcSIForwardBdNumberBase = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 4096, 8192, 12288, 16384))).clone(namedValues=NamedValues(("bdNumBase0", 0), ("bdNumBase4096", 4096), ("bdNumBase8192", 8192), ("bdNumBase12288", 12288), ("bdNumBase16384", 16384)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIForwardBdNumberBase.setStatus('current')
if mibBuilder.loadTexts: cevcSIForwardBdNumberBase.setDescription('This object specifies the base of bridge domain. The bridge domain range is 1~16k, cevcSIForwardBdNumberBase is to track what is the base of each 4k bitmap. In this way we can specify all the 16k bridge domains using four 1k bitmaps and having the base which describes that is the base of each 4k bitmap. The four 1k bitmaps, cevcSIForwardBdNumber1kBitmap represents 0~1023, cevcSIForwardBdNumber2kBitmap represents 1024~2047, cevcSIForwardBdNumber3kBitmap represents 2048~3071, cevcSIForwardBdNumber4kBitmap represents 3072~4095 And cevcSIForwardBdNumberBase is one of 0, 4096, 8192, 12288, 16384. SNMP Administrator can use cevcSIForwardBdNumberBase + (position of the set bit in four 1k bitmaps) to get BD number of a service instance.')
cevcSIForwardBdNumber1kBitmap = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIForwardBdNumber1kBitmap.setStatus('current')
if mibBuilder.loadTexts: cevcSIForwardBdNumber1kBitmap.setDescription("This object specifies a string of octets containing one bit per Bridge domain per service instance(generally we have one bridge domain per nontrunk service instance but can have more than one bridge configured with a trunk service instance). The first octet corresponds to Bridge domains with Bridge domain ID values of 0 through 7; the second octet to Bridge domains 8 through 15; etc. Thus, this 128-octet bitmap represents bridge domain ID value 0~1023. For each Bridge domain configured, the bit corresponding to that bridge domain is set to '1'. SNMP Administrator uses cevcSIForwardBdNumberBase + (position of the set bit in bitmap)to calculate BD number of a service instance. Note that if the length of this string is less than 128 octets, any 'missing' octets are assumed to contain the value zero. An NMS may omit any zero-valued octets from the end of this string in order to reduce SetPDU size, and the agent may also omit zero-valued trailing octets, to reduce the size of GetResponse PDUs.")
cevcSIForwardBdNumber2kBitmap = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIForwardBdNumber2kBitmap.setStatus('current')
if mibBuilder.loadTexts: cevcSIForwardBdNumber2kBitmap.setDescription("This object specifies a string of octets containing one bit per Bridge domain per service instance(generally we have one bridge domain per nontrunk service instance but can have more than one bridge configured with a trunk service instance). The first octet corresponds to Bridge domains with Bridge domain ID values of 1024 through 1031; the second octet to Bridge domains 1032 through 1039; etc. Thus, this 128-octet bitmap represents bridge domain ID value 1024~2047. For each Bridge domain configured, the bit corresponding to that bridge domain is set to 1. SNMP Administrator uses cevcSIForwardBdNumberBase + (position of the set bit in bitmap)to calculate BD number of a service instance. Note that if the length of this string is less than 128 octets, any 'missing' octets are assumed to contain the value zero. An NMS may omit any zero-valued octets from the end of this string in order to reduce SetPDU size, and the agent may also omit zero-valued trailing octets, to reduce the size of GetResponse PDUs.")
cevcSIForwardBdNumber3kBitmap = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIForwardBdNumber3kBitmap.setStatus('current')
if mibBuilder.loadTexts: cevcSIForwardBdNumber3kBitmap.setDescription("This object specifies a string of octets containing one bit per Bridge domain per service instance(generally we have one bridge domain per non-trunk service instance but can have more than one bridge configured with a trunk service instance). The first octet corresponds to Bridge domains with Bridgedomain ID values of 2048 through 2055; the second octet to Bridge domains 2056 through 2063; etc. Thus, this 128-octet bitmap represents bridge domain ID value 2048~3071. For each Bridge domain configured, the bit corresponding to that bridge domain is set to 1. SNMP Administrator uses cevcSIForwardBdNumberBase + (position of the set bit in bitmap)to calculate BD number of a service instance. Note that if the length of this string is less than 128 octets, any 'missing' octets are assumed to contain the value zero. An NMS may omit any zero-valued octets from the end of this string in order to reduce SetPDU size, and the agent may also omit zero-valued trailing octets, to reduce the size of GetResponse PDUs.")
cevcSIForwardBdNumber4kBitmap = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cevcSIForwardBdNumber4kBitmap.setStatus('current')
if mibBuilder.loadTexts: cevcSIForwardBdNumber4kBitmap.setDescription("This object specifies a string of octets containing one bit per Bridge domain per service instance(generally we have one bridge domain per non-trunk service instance but can have more than one bridge configured with a trunk service instance). The first octet corresponds to Bridge domains with Bridgedomain ID values of 3078 through 3085; the second octet to Bridge domains 3086 through 3093; etc. Thus, this 128-octet bitmap represents bridge domain ID value 3072~4095. For each Bridge domain configured, the bit corresponding to that bridge domain is set to 1. SNMP Administrator uses cevcSIForwardBdNumberBase + (position of the set bit in bitmap)to calculate BD number of a service instance. Note that if the length of this string is less than 128 octets, any 'missing' octets are assumed to contain the value zero. An NMS may omit any zero-valued octets from the end of this string in order to reduce SetPDU size, and the agent may also omit zero-valued trailing octets, to reduce the size of GetResponse PDUs.")
cevcEvcNotifyEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 5, 1), Bits().clone(namedValues=NamedValues(("status", 0), ("creation", 1), ("deletion", 2), ("macSecurityViolation", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cevcEvcNotifyEnabled.setStatus('current')
if mibBuilder.loadTexts: cevcEvcNotifyEnabled.setDescription("This object specifies the system generation of notification, including: 'status' This bit set to '1' specifies the system generation of cevcEvcStatusChangedNotification. 'creation' This bit set to '1' specifies the system generation of cevcEvcCreationNotification. 'deletion' This bit set to '1' specifices the system generation of cevcEvcDeletionNotification. 'macSecurityViolation' This bit set to '1' specifies the system generation of cevcMacSecurityViolation.")
ciscoEvcNotificationPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 0, 0))
cevcEvcStatusChangedNotification = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 613, 0, 0, 1)).setObjects(("CISCO-EVC-MIB", "cevcEvcOperStatus"), ("CISCO-EVC-MIB", "cevcEvcCfgUnis"), ("CISCO-EVC-MIB", "cevcEvcActiveUnis"))
if mibBuilder.loadTexts: cevcEvcStatusChangedNotification.setStatus('current')
if mibBuilder.loadTexts: cevcEvcStatusChangedNotification.setDescription("A device generates this notification when an EVC's operational status changes, or the number of active UNIs associated with the EVC (cevcNumActiveUnis) changes.")
cevcEvcCreationNotification = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 613, 0, 0, 2)).setObjects(("CISCO-EVC-MIB", "cevcEvcOperStatus"))
if mibBuilder.loadTexts: cevcEvcCreationNotification.setStatus('current')
if mibBuilder.loadTexts: cevcEvcCreationNotification.setDescription('A device generates this notification upon the creation of an EVC.')
cevcEvcDeletionNotification = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 613, 0, 0, 3)).setObjects(("CISCO-EVC-MIB", "cevcEvcOperStatus"))
if mibBuilder.loadTexts: cevcEvcDeletionNotification.setStatus('current')
if mibBuilder.loadTexts: cevcEvcDeletionNotification.setDescription('A device generates this notification upon the deletion of an EVC.')
cevcMacSecurityViolationNotification = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 613, 0, 0, 4)).setObjects(("IF-MIB", "ifIndex"), ("CISCO-EVC-MIB", "cevcSIForwardBdNumberBase"), ("CISCO-EVC-MIB", "cevcSIForwardBdNumber1kBitmap"), ("CISCO-EVC-MIB", "cevcSIForwardBdNumber2kBitmap"), ("CISCO-EVC-MIB", "cevcSIForwardBdNumber3kBitmap"), ("CISCO-EVC-MIB", "cevcSIForwardBdNumber4kBitmap"), ("CISCO-EVC-MIB", "cevcSIID"), ("CISCO-EVC-MIB", "cevcMacAddress"), ("CISCO-EVC-MIB", "cevcMaxMacConfigLimit"), ("CISCO-EVC-MIB", "cevcViolationCause"))
if mibBuilder.loadTexts: cevcMacSecurityViolationNotification.setStatus('current')
if mibBuilder.loadTexts: cevcMacSecurityViolationNotification.setDescription("A SNMP entity generates this notification in the following cases: When the system MAC Address limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedSystemLimit' value. When the Bridge domain limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedBdLimit' value. When the Service Instance limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedSILimit' value. If the MAC address is present in the Black list then cevcMacSecurityViolationCauseType will contain 'blackListDeny' value. Description of all the varbinds for this Notification is as follows: ifIndex indicates the interface index which identifies the interface that the service instance is attached. cevcSIForwardBdNumberBase indicates the base of bridge domain. The bridge domain range is 1~16k, this object is to track the base of each 4k bitmap. cevcSIForwardBdNumber1kBitmap indicates a string of octets containing one bit per Bridge domain per service instance. This 128-octet bitmap represents bridge domain ID values 0~1023. cevcSIForwardBdNumber2kBitmap indicates a string of octets containing one bit per Bridge domain per service instance. This 128-octet bitmap represents bridge domain ID values 1024~2047. cevcSIForwardBdNumber3kBitmap indicates a string of octets containing one bit per Bridge domain per service instance. This 128-octet bitmap represents bridge domain ID values 2048~3071. cevcSIForwardBdNumber4kBitmap indicates a string of octets containing one bit per Bridge domain per service instance. This 128-octet bitmap represents bridge domain ID values 3072~4095. cevcSIID indicates the service instance ID for the Mac security violation notification. cevcMacAddress indicates the Mac address which has violated the Mac security rules. cevcMaxMacConfigLimit indicates the maximum Mac configuration limit. This is also sent as a part of Mac security violation notification. cevcViolationCause indicates the Mac security violation cause.")
ciscoEvcMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 1))
ciscoEvcMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2))
ciscoEvcMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 1, 1)).setObjects(("CISCO-EVC-MIB", "cevcSystemGroup"), ("CISCO-EVC-MIB", "cevcPortGroup"), ("CISCO-EVC-MIB", "cevcEvcGroup"), ("CISCO-EVC-MIB", "cevcSIGroup"), ("CISCO-EVC-MIB", "cevcEvcNotificationConfigGroup"), ("CISCO-EVC-MIB", "cevcEvcNotificationGroup"), ("CISCO-EVC-MIB", "cevcSICosMatchCriteriaGroup"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteGroup"), ("CISCO-EVC-MIB", "cevcSIMatchCriteriaGroup"), ("CISCO-EVC-MIB", "cevcSIForwardGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoEvcMIBCompliance = ciscoEvcMIBCompliance.setStatus('deprecated')
if mibBuilder.loadTexts: ciscoEvcMIBCompliance.setDescription('The new compliance statement for entities which implement the CISCO-EVC-MIB.')
ciscoEvcMIBComplianceRev1 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 1, 2)).setObjects(("CISCO-EVC-MIB", "cevcSystemGroup"), ("CISCO-EVC-MIB", "cevcPortGroup"), ("CISCO-EVC-MIB", "cevcEvcGroup"), ("CISCO-EVC-MIB", "cevcSIGroup"), ("CISCO-EVC-MIB", "cevcEvcNotificationConfigGroup"), ("CISCO-EVC-MIB", "cevcEvcNotificationGroup"), ("CISCO-EVC-MIB", "cevcSICosMatchCriteriaGroup"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteGroup"), ("CISCO-EVC-MIB", "cevcSIMatchCriteriaGroupRev1"), ("CISCO-EVC-MIB", "cevcSIForwardGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoEvcMIBComplianceRev1 = ciscoEvcMIBComplianceRev1.setStatus('deprecated')
if mibBuilder.loadTexts: ciscoEvcMIBComplianceRev1.setDescription('The compliance statement for entities which implement the CISCO-EVC-MIB. This compliance module deprecates ciscoEvcMIBCompliance.')
ciscoEvcMIBComplianceRev2 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 1, 3)).setObjects(("CISCO-EVC-MIB", "cevcSystemGroup"), ("CISCO-EVC-MIB", "cevcPortGroup"), ("CISCO-EVC-MIB", "cevcEvcGroup"), ("CISCO-EVC-MIB", "cevcSIGroupRev1"), ("CISCO-EVC-MIB", "cevcEvcNotificationConfigGroup"), ("CISCO-EVC-MIB", "cevcEvcNotificationGroupRev1"), ("CISCO-EVC-MIB", "cevcSICosMatchCriteriaGroup"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteGroup"), ("CISCO-EVC-MIB", "cevcSIMatchCriteriaGroupRev1"), ("CISCO-EVC-MIB", "cevcSIForwardGroupRev1"), ("CISCO-EVC-MIB", "cevcMacSecurityViolationGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoEvcMIBComplianceRev2 = ciscoEvcMIBComplianceRev2.setStatus('current')
if mibBuilder.loadTexts: ciscoEvcMIBComplianceRev2.setDescription('The compliance statement for entities which implement the CISCO-EVC-MIB. This compliance module deprecates ciscoEvcMIBComplianceRev1.')
cevcSystemGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 1)).setObjects(("CISCO-EVC-MIB", "cevcMaxNumEvcs"), ("CISCO-EVC-MIB", "cevcNumCfgEvcs"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcSystemGroup = cevcSystemGroup.setStatus('current')
if mibBuilder.loadTexts: cevcSystemGroup.setDescription('A collection of objects providing system configuration of EVCs.')
cevcPortGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 2)).setObjects(("CISCO-EVC-MIB", "cevcPortMode"), ("CISCO-EVC-MIB", "cevcPortMaxNumEVCs"), ("CISCO-EVC-MIB", "cevcPortMaxNumServiceInstances"), ("CISCO-EVC-MIB", "cevcPortL2ControlProtocolAction"), ("CISCO-EVC-MIB", "cevcUniIdentifier"), ("CISCO-EVC-MIB", "cevcUniPortType"), ("CISCO-EVC-MIB", "cevcUniServiceAttributes"), ("CISCO-EVC-MIB", "cevcUniCEVlanEvcEndingVlan"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcPortGroup = cevcPortGroup.setStatus('current')
if mibBuilder.loadTexts: cevcPortGroup.setDescription('A collection of objects providing configuration for ports in an EVC.')
cevcEvcGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 3)).setObjects(("CISCO-EVC-MIB", "cevcEvcIdentifier"), ("CISCO-EVC-MIB", "cevcEvcType"), ("CISCO-EVC-MIB", "cevcEvcOperStatus"), ("CISCO-EVC-MIB", "cevcEvcCfgUnis"), ("CISCO-EVC-MIB", "cevcEvcActiveUnis"), ("CISCO-EVC-MIB", "cevcEvcStorageType"), ("CISCO-EVC-MIB", "cevcEvcRowStatus"), ("CISCO-EVC-MIB", "cevcEvcUniId"), ("CISCO-EVC-MIB", "cevcEvcUniOperStatus"), ("CISCO-EVC-MIB", "cevcEvcLocalUniIfIndex"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcEvcGroup = cevcEvcGroup.setStatus('current')
if mibBuilder.loadTexts: cevcEvcGroup.setDescription('A collection of objects providing configuration and status information for EVCs.')
cevcSIGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 4)).setObjects(("CISCO-EVC-MIB", "cevcSIName"), ("CISCO-EVC-MIB", "cevcSITargetType"), ("CISCO-EVC-MIB", "cevcSITarget"), ("CISCO-EVC-MIB", "cevcSIEvcIndex"), ("CISCO-EVC-MIB", "cevcSIRowStatus"), ("CISCO-EVC-MIB", "cevcSIStorageType"), ("CISCO-EVC-MIB", "cevcSIAdminStatus"), ("CISCO-EVC-MIB", "cevcSIOperStatus"), ("CISCO-EVC-MIB", "cevcSIL2ControlProtocolAction"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteAction"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteEncapsulation"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteVlan1"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteVlan2"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteSymmetric"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteStorageType"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteRowStatus"), ("CISCO-EVC-MIB", "cevcSIForwardingType"), ("CISCO-EVC-MIB", "cevcSICEVlanRowStatus"), ("CISCO-EVC-MIB", "cevcSICEVlanStorageType"), ("CISCO-EVC-MIB", "cevcSICEVlanEndingVlan"), ("CISCO-EVC-MIB", "cevcSIMatchStorageType"), ("CISCO-EVC-MIB", "cevcSIMatchRowStatus"), ("CISCO-EVC-MIB", "cevcSIMatchCriteriaType"), ("CISCO-EVC-MIB", "cevcSIMatchEncapRowStatus"), ("CISCO-EVC-MIB", "cevcSIMatchEncapStorageType"), ("CISCO-EVC-MIB", "cevcSIMatchEncapValid"), ("CISCO-EVC-MIB", "cevcSIMatchEncapEncapsulation"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanRowStatus"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanStorageType"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanEndingVlan"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcSIGroup = cevcSIGroup.setStatus('deprecated')
if mibBuilder.loadTexts: cevcSIGroup.setDescription('A collection of objects providing configuration and match criteria for service instances. cevcSIGroup object is superseded by cevcSIGroupRev1.')
cevcSIVlanRewriteGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 5)).setObjects(("CISCO-EVC-MIB", "cevcSIVlanRewriteAction"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteEncapsulation"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteVlan1"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteVlan2"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteSymmetric"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteStorageType"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcSIVlanRewriteGroup = cevcSIVlanRewriteGroup.setStatus('current')
if mibBuilder.loadTexts: cevcSIVlanRewriteGroup.setDescription('A collection of objects which provides VLAN rewrite information for a service instance.')
cevcSICosMatchCriteriaGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 6)).setObjects(("CISCO-EVC-MIB", "cevcSIMatchEncapPrimaryCos"), ("CISCO-EVC-MIB", "cevcSIMatchEncapSecondaryCos"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcSICosMatchCriteriaGroup = cevcSICosMatchCriteriaGroup.setStatus('current')
if mibBuilder.loadTexts: cevcSICosMatchCriteriaGroup.setDescription('A collection of objects which provides CoS match criteria for a service instance.')
cevcSIMatchCriteriaGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 7)).setObjects(("CISCO-EVC-MIB", "cevcSIMatchRowStatus"), ("CISCO-EVC-MIB", "cevcSIMatchStorageType"), ("CISCO-EVC-MIB", "cevcSIMatchCriteriaType"), ("CISCO-EVC-MIB", "cevcSIMatchEncapRowStatus"), ("CISCO-EVC-MIB", "cevcSIMatchEncapStorageType"), ("CISCO-EVC-MIB", "cevcSIMatchEncapValid"), ("CISCO-EVC-MIB", "cevcSIMatchEncapEncapsulation"), ("CISCO-EVC-MIB", "cevcSIMatchEncapPrimaryCos"), ("CISCO-EVC-MIB", "cevcSIMatchEncapSecondaryCos"), ("CISCO-EVC-MIB", "cevcSIMatchEncapPayloadType"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanRowStatus"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanStorageType"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanEndingVlan"), ("CISCO-EVC-MIB", "cevcSISecondaryVlanRowStatus"), ("CISCO-EVC-MIB", "cevcSISecondaryVlanStorageType"), ("CISCO-EVC-MIB", "cevcSISecondaryVlanEndingVlan"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcSIMatchCriteriaGroup = cevcSIMatchCriteriaGroup.setStatus('deprecated')
if mibBuilder.loadTexts: cevcSIMatchCriteriaGroup.setDescription('A collection of objects providing match criteria information for service instances. cevcSIMatchCriteriaGroup object is superseded by cevcSIMatchCriteriaGroupRev1.')
cevcSIForwardGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 8)).setObjects(("CISCO-EVC-MIB", "cevcSIForwardingType"), ("CISCO-EVC-MIB", "cevcSIForwardBdRowStatus"), ("CISCO-EVC-MIB", "cevcSIForwardBdStorageType"), ("CISCO-EVC-MIB", "cevcSIForwardBdNumber"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcSIForwardGroup = cevcSIForwardGroup.setStatus('deprecated')
if mibBuilder.loadTexts: cevcSIForwardGroup.setDescription('A collection of objects providing service frame forwarding information for service instances. cevcSIForwardGroup object is superseded by cevcSIForwardGroupRev1.')
cevcEvcNotificationConfigGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 9)).setObjects(("CISCO-EVC-MIB", "cevcEvcNotifyEnabled"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcEvcNotificationConfigGroup = cevcEvcNotificationConfigGroup.setStatus('current')
if mibBuilder.loadTexts: cevcEvcNotificationConfigGroup.setDescription('A collection of objects for configuring notification of this MIB.')
cevcEvcNotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 10)).setObjects(("CISCO-EVC-MIB", "cevcEvcStatusChangedNotification"), ("CISCO-EVC-MIB", "cevcEvcCreationNotification"), ("CISCO-EVC-MIB", "cevcEvcDeletionNotification"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcEvcNotificationGroup = cevcEvcNotificationGroup.setStatus('deprecated')
if mibBuilder.loadTexts: cevcEvcNotificationGroup.setDescription('A collection of notifications that this MIB module is required to implement. cevcEvcNotificationGroup object is superseded by cevcEvcNotificationGroupRev1.')
cevcSIMatchCriteriaGroupRev1 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 11)).setObjects(("CISCO-EVC-MIB", "cevcSIMatchRowStatus"), ("CISCO-EVC-MIB", "cevcSIMatchStorageType"), ("CISCO-EVC-MIB", "cevcSIMatchCriteriaType"), ("CISCO-EVC-MIB", "cevcSIMatchEncapRowStatus"), ("CISCO-EVC-MIB", "cevcSIMatchEncapStorageType"), ("CISCO-EVC-MIB", "cevcSIMatchEncapValid"), ("CISCO-EVC-MIB", "cevcSIMatchEncapEncapsulation"), ("CISCO-EVC-MIB", "cevcSIMatchEncapPrimaryCos"), ("CISCO-EVC-MIB", "cevcSIMatchEncapSecondaryCos"), ("CISCO-EVC-MIB", "cevcSIMatchEncapPayloadTypes"), ("CISCO-EVC-MIB", "cevcSIMatchEncapPriorityCos"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanRowStatus"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanStorageType"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanEndingVlan"), ("CISCO-EVC-MIB", "cevcSISecondaryVlanRowStatus"), ("CISCO-EVC-MIB", "cevcSISecondaryVlanStorageType"), ("CISCO-EVC-MIB", "cevcSISecondaryVlanEndingVlan"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcSIMatchCriteriaGroupRev1 = cevcSIMatchCriteriaGroupRev1.setStatus('current')
if mibBuilder.loadTexts: cevcSIMatchCriteriaGroupRev1.setDescription('A collection of objects providing match criteria information for service instances. This group deprecates the old group cevcSIMatchCriteriaGroup.')
cevcEvcNotificationGroupRev1 = NotificationGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 12)).setObjects(("CISCO-EVC-MIB", "cevcEvcStatusChangedNotification"), ("CISCO-EVC-MIB", "cevcEvcCreationNotification"), ("CISCO-EVC-MIB", "cevcEvcDeletionNotification"), ("CISCO-EVC-MIB", "cevcMacSecurityViolationNotification"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcEvcNotificationGroupRev1 = cevcEvcNotificationGroupRev1.setStatus('current')
if mibBuilder.loadTexts: cevcEvcNotificationGroupRev1.setDescription('A collection of notifications that this MIB module is required to implement. This module deprecates the cevcNotificationGroup')
cevcSIGroupRev1 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 13)).setObjects(("CISCO-EVC-MIB", "cevcSIName"), ("CISCO-EVC-MIB", "cevcSITargetType"), ("CISCO-EVC-MIB", "cevcSITarget"), ("CISCO-EVC-MIB", "cevcSIEvcIndex"), ("CISCO-EVC-MIB", "cevcSIRowStatus"), ("CISCO-EVC-MIB", "cevcSIStorageType"), ("CISCO-EVC-MIB", "cevcSIAdminStatus"), ("CISCO-EVC-MIB", "cevcSIOperStatus"), ("CISCO-EVC-MIB", "cevcPortL2ControlProtocolAction"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteAction"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteEncapsulation"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteVlan1"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteVlan2"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteSymmetric"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteRowStatus"), ("CISCO-EVC-MIB", "cevcSIVlanRewriteStorageType"), ("CISCO-EVC-MIB", "cevcSIForwardingType"), ("CISCO-EVC-MIB", "cevcSICEVlanRowStatus"), ("CISCO-EVC-MIB", "cevcSICEVlanStorageType"), ("CISCO-EVC-MIB", "cevcSICEVlanEndingVlan"), ("CISCO-EVC-MIB", "cevcSIMatchStorageType"), ("CISCO-EVC-MIB", "cevcSIMatchCriteriaType"), ("CISCO-EVC-MIB", "cevcSIMatchEncapRowStatus"), ("CISCO-EVC-MIB", "cevcSIMatchEncapStorageType"), ("CISCO-EVC-MIB", "cevcSIMatchEncapValid"), ("CISCO-EVC-MIB", "cevcSIMatchEncapEncapsulation"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanRowStatus"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanStorageType"), ("CISCO-EVC-MIB", "cevcSIPrimaryVlanEndingVlan"), ("CISCO-EVC-MIB", "cevcSIMatchRowStatus"), ("CISCO-EVC-MIB", "cevcSICreationType"), ("CISCO-EVC-MIB", "cevcSIType"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcSIGroupRev1 = cevcSIGroupRev1.setStatus('current')
if mibBuilder.loadTexts: cevcSIGroupRev1.setDescription('A collection of objects providing configuration and match criteria for service instances. This module deprecates the cevcSIGroup')
cevcSIForwardGroupRev1 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 14)).setObjects(("CISCO-EVC-MIB", "cevcSIForwardingType"), ("CISCO-EVC-MIB", "cevcSIForwardBdRowStatus"), ("CISCO-EVC-MIB", "cevcSIForwardBdStorageType"), ("CISCO-EVC-MIB", "cevcSIForwardBdNumberBase"), ("CISCO-EVC-MIB", "cevcSIForwardBdNumber1kBitmap"), ("CISCO-EVC-MIB", "cevcSIForwardBdNumber2kBitmap"), ("CISCO-EVC-MIB", "cevcSIForwardBdNumber3kBitmap"), ("CISCO-EVC-MIB", "cevcSIForwardBdNumber4kBitmap"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcSIForwardGroupRev1 = cevcSIForwardGroupRev1.setStatus('current')
if mibBuilder.loadTexts: cevcSIForwardGroupRev1.setDescription('A collection of objects providing service frame forwarding information for service instances. This module deprecates cevcSIForwardGroup')
cevcMacSecurityViolationGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 15)).setObjects(("CISCO-EVC-MIB", "cevcMacAddress"), ("CISCO-EVC-MIB", "cevcMaxMacConfigLimit"), ("CISCO-EVC-MIB", "cevcSIID"), ("CISCO-EVC-MIB", "cevcViolationCause"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevcMacSecurityViolationGroup = cevcMacSecurityViolationGroup.setStatus('current')
if mibBuilder.loadTexts: cevcMacSecurityViolationGroup.setDescription('A collection of objects providing the maximum configured MAC limit, the MAC address, service instance ID and Violation cause for Mac Security Violation Information.')
mibBuilder.exportSymbols("CISCO-EVC-MIB", cevcEvcStorageType=cevcEvcStorageType, cevcSIType=cevcSIType, cevcEvc=cevcEvc, cevcEvcUniOperStatus=cevcEvcUniOperStatus, ciscoEvcMIBCompliance=ciscoEvcMIBCompliance, cevcEvcUniTable=cevcEvcUniTable, cevcSystemGroup=cevcSystemGroup, cevcNumCfgEvcs=cevcNumCfgEvcs, cevcSICEVlanRowStatus=cevcSICEVlanRowStatus, cevcSIName=cevcSIName, cevcSICreationType=cevcSICreationType, cevcSIForwardBdNumberBase=cevcSIForwardBdNumberBase, cevcSIMatchEncapPayloadTypes=cevcSIMatchEncapPayloadTypes, cevcPortTable=cevcPortTable, ServiceInstanceTarget=ServiceInstanceTarget, cevcSIMatchEncapEntry=cevcSIMatchEncapEntry, PYSNMP_MODULE_ID=ciscoEvcMIB, cevcEvcCfgUnis=cevcEvcCfgUnis, cevcSIForwardGroupRev1=cevcSIForwardGroupRev1, cevcSIForwardBdEntry=cevcSIForwardBdEntry, cevcSIEvcIndex=cevcSIEvcIndex, cevcSIForwardBdNumber3kBitmap=cevcSIForwardBdNumber3kBitmap, cevcSIMatchCriteriaIndex=cevcSIMatchCriteriaIndex, cevcSIGroup=cevcSIGroup, cevcSIForwardBdTable=cevcSIForwardBdTable, cevcEvcUniId=cevcEvcUniId, cevcEvcStatusChangedNotification=cevcEvcStatusChangedNotification, cevcViolationCause=cevcViolationCause, cevcSIPrimaryVlanEntry=cevcSIPrimaryVlanEntry, cevcEvcGroup=cevcEvcGroup, cevcSIIndex=cevcSIIndex, cevcSIVlanRewriteVlan1=cevcSIVlanRewriteVlan1, cevcSITable=cevcSITable, cevcSISecondaryVlanStorageType=cevcSISecondaryVlanStorageType, cevcUniPortType=cevcUniPortType, cevcEvcStateTable=cevcEvcStateTable, cevcSIVlanRewriteSymmetric=cevcSIVlanRewriteSymmetric, cevcSIMatchEncapRowStatus=cevcSIMatchEncapRowStatus, cevcMacSecurityViolationNotification=cevcMacSecurityViolationNotification, cevcEvcNotificationGroupRev1=cevcEvcNotificationGroupRev1, ciscoEvcMIB=ciscoEvcMIB, ciscoEvcMIBComplianceRev1=ciscoEvcMIBComplianceRev1, cevcUniTable=cevcUniTable, cevcUniCEVlanEvcTable=cevcUniCEVlanEvcTable, cevcEvcOperStatus=cevcEvcOperStatus, ciscoEvcMIBNotifications=ciscoEvcMIBNotifications, ciscoEvcMIBComplianceRev2=ciscoEvcMIBComplianceRev2, cevcSIVlanRewriteEntry=cevcSIVlanRewriteEntry, cevcUniCEVlanEvcBeginningVlan=cevcUniCEVlanEvcBeginningVlan, cevcSIPrimaryVlanEndingVlan=cevcSIPrimaryVlanEndingVlan, cevcSIMatchEncapPayloadType=cevcSIMatchEncapPayloadType, cevcSISecondaryVlanRowStatus=cevcSISecondaryVlanRowStatus, cevcEvcStateEntry=cevcEvcStateEntry, cevcPortGroup=cevcPortGroup, cevcSIPrimaryVlanStorageType=cevcSIPrimaryVlanStorageType, cevcSIMatchCriteriaType=cevcSIMatchCriteriaType, cevcSICEVlanTable=cevcSICEVlanTable, cevcSITarget=cevcSITarget, cevcSIAdminStatus=cevcSIAdminStatus, cevcSIL2ControlProtocolType=cevcSIL2ControlProtocolType, ciscoEvcNotificationPrefix=ciscoEvcNotificationPrefix, CiscoEvcIndexOrZero=CiscoEvcIndexOrZero, cevcEvcIdentifier=cevcEvcIdentifier, cevcSIStateEntry=cevcSIStateEntry, cevcSIVlanRewriteTable=cevcSIVlanRewriteTable, cevcSIMatchCriteriaEntry=cevcSIMatchCriteriaEntry, cevcEvcRowStatus=cevcEvcRowStatus, cevcEvcNotificationGroup=cevcEvcNotificationGroup, cevcSIForwardBdNumber2kBitmap=cevcSIForwardBdNumber2kBitmap, cevcMaxNumEvcs=cevcMaxNumEvcs, cevcSIL2ControlProtocolTable=cevcSIL2ControlProtocolTable, cevcEvcUniIndex=cevcEvcUniIndex, cevcEvcIndex=cevcEvcIndex, cevcServiceInstance=cevcServiceInstance, cevcUniCEVlanEvcEntry=cevcUniCEVlanEvcEntry, cevcSICEVlanEntry=cevcSICEVlanEntry, cevcSIVlanRewriteDirection=cevcSIVlanRewriteDirection, cevcSIID=cevcSIID, cevcSIMatchEncapEncapsulation=cevcSIMatchEncapEncapsulation, ciscoEvcMIBObjects=ciscoEvcMIBObjects, ServiceInstanceTargetType=ServiceInstanceTargetType, cevcPort=cevcPort, cevcSIVlanRewriteVlan2=cevcSIVlanRewriteVlan2, cevcSIForwardBdNumber1kBitmap=cevcSIForwardBdNumber1kBitmap, cevcMaxMacConfigLimit=cevcMaxMacConfigLimit, cevcSIMatchEncapSecondaryCos=cevcSIMatchEncapSecondaryCos, cevcPortMaxNumServiceInstances=cevcPortMaxNumServiceInstances, cevcEvcNotifyEnabled=cevcEvcNotifyEnabled, cevcEvcType=cevcEvcType, cevcMacSecurityViolation=cevcMacSecurityViolation, cevcEvcDeletionNotification=cevcEvcDeletionNotification, ciscoEvcMIBGroups=ciscoEvcMIBGroups, cevcSIL2ControlProtocolAction=cevcSIL2ControlProtocolAction, cevcSIVlanRewriteGroup=cevcSIVlanRewriteGroup, cevcUniServiceAttributes=cevcUniServiceAttributes, cevcSIMatchRowStatus=cevcSIMatchRowStatus, cevcSICEVlanStorageType=cevcSICEVlanStorageType, cevcSICEVlanBeginningVlan=cevcSICEVlanBeginningVlan, cevcSIMatchEncapStorageType=cevcSIMatchEncapStorageType, cevcSIL2ControlProtocolEntry=cevcSIL2ControlProtocolEntry, cevcSIMatchCriteriaTable=cevcSIMatchCriteriaTable, cevcEvcActiveUnis=cevcEvcActiveUnis, cevcSIVlanRewriteAction=cevcSIVlanRewriteAction, ciscoEvcMIBCompliances=ciscoEvcMIBCompliances, cevcSICEVlanEndingVlan=cevcSICEVlanEndingVlan, cevcSIPrimaryVlanTable=cevcSIPrimaryVlanTable, cevcSIVlanRewriteEncapsulation=cevcSIVlanRewriteEncapsulation, cevcSIForwardingType=cevcSIForwardingType, cevcSISecondaryVlanBeginningVlan=cevcSISecondaryVlanBeginningVlan, cevcSystem=cevcSystem, ciscoEvcMIBConformance=ciscoEvcMIBConformance, cevcMacSecurityViolationGroup=cevcMacSecurityViolationGroup, cevcSIMatchEncapPriorityCos=cevcSIMatchEncapPriorityCos, cevcSIOperStatus=cevcSIOperStatus, CiscoEvcIndex=CiscoEvcIndex, cevcSIMatchCriteriaGroup=cevcSIMatchCriteriaGroup, cevcSITargetType=cevcSITargetType, cevcPortL2ControlProtocolTable=cevcPortL2ControlProtocolTable, cevcUniIdentifier=cevcUniIdentifier, cevcSISecondaryVlanTable=cevcSISecondaryVlanTable, cevcSIStorageType=cevcSIStorageType, CevcL2ControlProtocolType=CevcL2ControlProtocolType, cevcSIMatchCriteriaGroupRev1=cevcSIMatchCriteriaGroupRev1, cevcSICosMatchCriteriaGroup=cevcSICosMatchCriteriaGroup, cevcSIForwardGroup=cevcSIForwardGroup, cevcEvcUniEntry=cevcEvcUniEntry, cevcEvcNotificationConfigGroup=cevcEvcNotificationConfigGroup, cevcPortL2ControlProtocolAction=cevcPortL2ControlProtocolAction, CevcMacSecurityViolationCauseType=CevcMacSecurityViolationCauseType, cevcSIRowStatus=cevcSIRowStatus, cevcEvcEntry=cevcEvcEntry, cevcEvcCreationNotification=cevcEvcCreationNotification, cevcEvcLocalUniIfIndex=cevcEvcLocalUniIfIndex, cevcUniEntry=cevcUniEntry, cevcSIVlanRewriteRowStatus=cevcSIVlanRewriteRowStatus, cevcPortMaxNumEVCs=cevcPortMaxNumEVCs, cevcPortL2ControlProtocolType=cevcPortL2ControlProtocolType, cevcSISecondaryVlanEntry=cevcSISecondaryVlanEntry, cevcUniCEVlanEvcEndingVlan=cevcUniCEVlanEvcEndingVlan, cevcSIForwardBdRowStatus=cevcSIForwardBdRowStatus, cevcPortMode=cevcPortMode, cevcMacAddress=cevcMacAddress, cevcSIMatchEncapValid=cevcSIMatchEncapValid, cevcUniEvcIndex=cevcUniEvcIndex, cevcPortL2ControlProtocolEntry=cevcPortL2ControlProtocolEntry, cevcSIVlanRewriteStorageType=cevcSIVlanRewriteStorageType, cevcSIStateTable=cevcSIStateTable, cevcSIPrimaryVlanRowStatus=cevcSIPrimaryVlanRowStatus, cevcSIMatchEncapTable=cevcSIMatchEncapTable, cevcSISecondaryVlanEndingVlan=cevcSISecondaryVlanEndingVlan, cevcSIForwardBdNumber4kBitmap=cevcSIForwardBdNumber4kBitmap, cevcPortEntry=cevcPortEntry, cevcSIPrimaryVlanBeginningVlan=cevcSIPrimaryVlanBeginningVlan, ServiceInstanceInterface=ServiceInstanceInterface, cevcSIForwardBdNumber=cevcSIForwardBdNumber, cevcSIMatchEncapPrimaryCos=cevcSIMatchEncapPrimaryCos, cevcEvcTable=cevcEvcTable, cevcSIForwardBdStorageType=cevcSIForwardBdStorageType, cevcSIGroupRev1=cevcSIGroupRev1, cevcEvcNotificationConfig=cevcEvcNotificationConfig, cevcSIEntry=cevcSIEntry, cevcSIMatchStorageType=cevcSIMatchStorageType)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_intersection, value_range_constraint, constraints_union, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ConstraintsUnion', 'ValueSizeConstraint')
(cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt')
(cisco_cos_list,) = mibBuilder.importSymbols('CISCO-TC', 'CiscoCosList')
(if_index, interface_index_or_zero) = mibBuilder.importSymbols('IF-MIB', 'ifIndex', 'InterfaceIndexOrZero')
(vlan_id, vlan_id_or_none) = mibBuilder.importSymbols('Q-BRIDGE-MIB', 'VlanId', 'VlanIdOrNone')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(object_group, module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'ModuleCompliance', 'NotificationGroup')
(object_identity, unsigned32, integer32, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, ip_address, mib_identifier, time_ticks, gauge32, iso, module_identity, notification_type, counter64, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'Unsigned32', 'Integer32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'IpAddress', 'MibIdentifier', 'TimeTicks', 'Gauge32', 'iso', 'ModuleIdentity', 'NotificationType', 'Counter64', 'Counter32')
(row_status, truth_value, mac_address, storage_type, display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'RowStatus', 'TruthValue', 'MacAddress', 'StorageType', 'DisplayString', 'TextualConvention')
cisco_evc_mib = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 613))
ciscoEvcMIB.setRevisions(('2012-05-21 00:00', '2008-05-01 00:00', '2007-12-20 00:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
ciscoEvcMIB.setRevisionsDescriptions(('- Added following objects to cevcSITable: * cevcSICreationType * cevcSIType - Added following objects to cevcSIForwardBdTable: * cevcSIForwardBdNumberBase * cevcSIForwardBdNumber1kBitmap * cevcSIForwardBdNumber2kBitmap * cevcSIForwardBdNumber3kBitmap * cevcSIForwardBdNumber4kBitmap - Added MacSecurityViolation OID subtree and following objects: * cevcMacAddress * cevcMaxMacConfigLimit * cevcSIID - Deprecated cevcEvcNotificationGroup and added cevcEvcNotificationGroupRev1 and added cevcMacSecurityViolationNotification - Deprecated cevcSIGroup and added cevcSIGroupRev1 and added cevcSICreationType and cevcSIType - Deprecated cevcSIForwardGroup and added cevcSIForwardGroupRev1 and added the new objects mentioned in cevcSIForwardBdTable - Added CevcMacSecurityViolationCause Textual convention - Added new ciscoEvcMIBComplianceRev2', '- Added following enums to cevcSIOperStatus: * deleted(4) * errorDisabled(5) * unknown(6) - Added following named bits to cevcSIMatchEncapValid: * payloadTypes(3) * priorityCos(4) * dot1qNativeVlan(5) * dot1adNativeVlan(6) * encapExact(7) - The Object cevcSIMatchEncapPayloadType is replaced by new object cevcSIMatchEncapPayloadTypes to support multiple payload types for service instance match criteria. - Added new object cevcSIMatchEncapPriorityCos to cevcSIMatchEncapTable. - Added new Compliance ciscoEvcMIBComplianceRev1. - Added new Object Group cevcSIMatchCriteriaGroupRev1. - Miscellaneous updates/corrections.', 'Initial version of this MIB module.'))
if mibBuilder.loadTexts:
ciscoEvcMIB.setLastUpdated('201205210000Z')
if mibBuilder.loadTexts:
ciscoEvcMIB.setOrganization('Cisco Systems, Inc.')
if mibBuilder.loadTexts:
ciscoEvcMIB.setContactInfo('Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS E-mail: cs-ethermibs@cisco.com')
if mibBuilder.loadTexts:
ciscoEvcMIB.setDescription("Metro Ethernet services can support a wide range of applications and subscriber needs easily, efficiently and cost-effectively. Using standard Ethernet interfaces, subscribers can set up secure, private Ethernet Virtual Connections, to connect their sites together and connect to business partners, suppliers and the Internet. This MIB module defines the managed objects and notifications describing Ethernet Virtual Connections. Ethernet Virtual Connections (EVC), are defined by the Metro Ethernet Forum (MEF), as an association between two or more UNIs. Frames within an EVC can only be exchanged among the associated UNIs. Frames sent into the MEN via a particular UNI must not be delivered back to the UNI from which it originated. Along an EVC path, there are demarcation flow points on associated ingress and egress interface, of every device, through which the EVC passes. A service instance represents these flow points where a service passes through an interface. From an operational perspective, a service instance serves three purposes: 1. Defines the instance of a particular EVC service on a specific interface and identifies all frames that belongs to that particular service/flow. 2. To provide the capability of applying the configured features to those frames belonging to the service. 3. To optionally define how to forward those frames in the data-path. The association of a service instance to an EVC depicts an instance of an Ethernet flow on a particular interface for an end-to-end (UNI-to-UNI) Ethernet service for a subscriber. The following diagram illustrates the association of EVC, UNIs and service instances. UNI physical ports are depicted as 'U', and service instances as 'x'. CE MEN MEN CE ------- ------- ------- ------- | | | | () | | | | | |--------Ux x|--( )--|x xU--------| | | | | | () | | | | ------- ------- ------- ------- ^ ^ | | -------- EVC --------- This MIB module addresses the functional areas of network management for EVC, including: The operational mode for interfaces that are providing Ethernet service(s). The service attributes regarding an interface behaving as UNI, such as CE-VLAN mapping and layer 2 control protocol (eg. stp, vtp, cdp) processing. The provisioning of service instances to define flow points for an Ethernet service. The operational status of EVCs for notifications of status changes, and EVC creation and deletion. Definition of terms and acronyms: B-Tag: Backbone Tag field in Ethernet 802.1ah frame CE: Customer Edge CE-VLAN: Customer Edge VLAN CoS: Class Of Service EVC: Ethernet Virtual Connection I-SID: Service Instance Identifier field in Ethernet 802.1ah frame MAC: Media Access Control MEN: Metro Ethernet Network NNI: Network to Network Interface OAM: Operations Administration and Management PPPoE: Point-to-Point Protocol over Ethernet Service frame: An Ethernet frame transmitted across the UNI toward the service provider or an Ethernet frame transmitted across the UNI toward the Subscriber. Service Instance: A flow point of an Ethernet service Service provider: The organization providing Ethernet service(s). Subscriber: The organization purchasing and/or using Ethernet service(s). UNI: User Network Interface The physical demarcation point between the responsibility of the service provider and the responsibility of the Subscriber. UNI-C: User Network Interface, subscriber side UNI-N: User Network Interface, service provider side VLAN: Virtual Local Area Network")
cisco_evc_mib_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 0))
cisco_evc_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1))
cisco_evc_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 2))
cevc_system = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 1))
cevc_port = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2))
cevc_evc = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3))
cevc_service_instance = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4))
cevc_evc_notification_config = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 5))
cevc_mac_security_violation = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 6))
class Cevcmacsecurityviolationcausetype(TextualConvention, Integer32):
description = "An integer value which identifies the cause for the MAC Security Violation. If the system MAC Address limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedSystemLimit' value. If the Bridge domain limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedBdLimit' value. If the Service Instance limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedSILimit' value. If the MAC address is present in the Black list then cevcMacSecurityViolationCauseType will contain 'blackListDeny' value."
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('exceedSystemLimit', 1), ('exceedBdLimit', 2), ('exceedSILimit', 3), ('blackListDeny', 4))
class Ciscoevcindex(TextualConvention, Unsigned32):
description = 'An integer-value which uniquely identifies the EVC.'
status = 'current'
subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(1, 4294967295)
class Ciscoevcindexorzero(TextualConvention, Unsigned32):
description = "This textual convention is an extension to textual convention 'CiscoEvcIndex'. It includes the value of '0' in addition to the range of 1-429496725. Value of '0' indicates that the EVC has been neither configured nor assigned."
status = 'current'
subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(0, 4294967295)
class Cevcl2Controlprotocoltype(TextualConvention, Integer32):
description = "Defines the different types of layer 2 control protocols: 'other' None of the following. 'cdp' Cisco Discovery Protocol. 'dtp' Dynamic Trunking Protocol. 'pagp' Port Aggregration Protocol. 'udld' UniDirectional Link Detection. 'vtp' Vlan Trunking Protocol. 'lacp' Link Aggregation Control Protocol. 'dot1x' IEEE 802.1x 'stp' Spanning Tree Protocol."
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9))
named_values = named_values(('other', 1), ('cdp', 2), ('dtp', 3), ('pagp', 4), ('udld', 5), ('vtp', 6), ('lacp', 7), ('dot1x', 8), ('stp', 9))
class Serviceinstancetarget(TextualConvention, OctetString):
description = "Denotes a generic service instance target. An ServiceInstanceTarget value is always interpreted within the context of an ServiceInstanceTargetType value. Every usage of the ServiceInstanceTarget textual convention is required to specify the ServiceInstanceTargetType object which provides the context. It is suggested that the ServiceInstanceTargetType object is logically registered before the object(s) which use the ServiceInstanceTarget textual convention if they appear in the same logical row. The value of an ServiceInstanceTarget object must always be consistent with the value of the associated ServiceInstanceTargetType object. Attempts to set an ServiceInstanceTarget object to a value which is inconsistent with the associated ServiceInstanceTargetType must fail with an inconsistentValue error. When this textual convention is used as the syntax of an index object, there may be issues with the limit of 128 sub-identifiers specified in SMIv2, STD 58. In this case, the object definition MUST include a 'SIZE' clause to limit the number of potential instance sub-identifiers."
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 40)
class Serviceinstancetargettype(TextualConvention, Integer32):
description = "Defines the type of interface/media to which a service instance is attached. 'other' None of the following. This value MUST be used if the value of the corresponding ServiceInstanceTarget object is a zero-length string. 'interface' Service instance is attached to the the interface defined by ServiceInstanceInterface textual convention. Each definition of a concrete ServiceInstanceTargetType value must be accompanied by a definition of a textual convention for use with that ServiceInstanceTargetType. To support future extensions, the ServiceInstanceTargetType textual convention SHOULD NOT be sub-typed in object type definitions. It MAY be sub-typed in compliance statements in order to require only a subset of these target types for a compliant implementation. Implementations must ensure that ServiceInstanceTargetType objects and any dependent objects (e.g. ServiceInstanceTarget objects) are consistent. An inconsistentValue error must be generated if an attempt to change an ServiceInstanceTargetType object would, for example, lead to an undefined ServiceInstanceTarget value. In particular, ServiceInstanceTargetType/ServiceInstanceTarget pairs must be changed together if the service instance taget type changes."
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('other', 1), ('interface', 2))
class Serviceinstanceinterface(TextualConvention, OctetString):
description = "This textual convention indicates the ifIndex which identifies the interface that the service instance is attached, for which the corresponding ifType has the value of (but not limited to) 'ethernetCsmacd'. octets contents encoding 1-4 ifIndex network-byte order The corresponding ServiceInstanceTargetType value is interface(2)."
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(4, 4)
fixed_length = 4
cevc_mac_address = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 6, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcMacAddress.setStatus('current')
if mibBuilder.loadTexts:
cevcMacAddress.setDescription('This object indicates the MAC Address which has violated the Mac security rules.')
cevc_max_mac_config_limit = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 6, 2), unsigned32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cevcMaxMacConfigLimit.setStatus('current')
if mibBuilder.loadTexts:
cevcMaxMacConfigLimit.setDescription('This object specifies the maximum MAC configuration limit. This is also sent as a part of MAC security violation notification. Every platform has their own forwarding table limitation. User can also set the maximum MAC configuration limit and if the limit set by user is not supported by platform then the object returns error.')
cevc_siid = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 6, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcSIID.setStatus('current')
if mibBuilder.loadTexts:
cevcSIID.setDescription('This object indicates the service instance ID for the MAC security violation notification.')
cevc_violation_cause = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 6, 4), cevc_mac_security_violation_cause_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcViolationCause.setStatus('current')
if mibBuilder.loadTexts:
cevcViolationCause.setDescription("This object indicates the MAC security violation cause. When the system MAC Address limit is exceeded, the cevcMacSecurityViolationCause will contain 'exceedSystemLimit' value. When the Bridge domain limit is exceeded, the cevcMacSecurityViolationCause will contain 'exceedBdLimit' value. When the Service Instance limit is exceeded, the cevcMacSecurityViolationCause will contain 'exceedSILimit' value. If the MAC address is present in the Black list then cevcMacSecurityViolationCause will contain 'blackListDeny' value.")
cevc_max_num_evcs = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 1, 1), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcMaxNumEvcs.setStatus('current')
if mibBuilder.loadTexts:
cevcMaxNumEvcs.setDescription('This object indicates the maximum number of EVCs that the system supports.')
cevc_num_cfg_evcs = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 1, 2), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcNumCfgEvcs.setStatus('current')
if mibBuilder.loadTexts:
cevcNumCfgEvcs.setDescription('This object indicates the actual number of EVCs currently configured on the system.')
cevc_port_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 1))
if mibBuilder.loadTexts:
cevcPortTable.setStatus('current')
if mibBuilder.loadTexts:
cevcPortTable.setDescription("This table provides the operational mode and configuration limitations of the physical interfaces (ports) that provide Ethernet services for the MEN. This table has a sparse depedent relationship on the ifTable, containing a row for each ifEntry having an ifType of 'ethernetCsmacd' capable of supporting Ethernet services.")
cevc_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
cevcPortEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcPortEntry.setDescription("This entry represents a port, a physical point, at which signals can enter or leave the network en route to or from another network to provide Ethernet services for the MEN. The system automatically creates an entry for each ifEntry in the ifTable having an ifType of 'ethernetCsmacd' capable of supporting Ethernet services and entries are automatically destroyed when the corresponding row in the ifTable is destroyed.")
cevc_port_mode = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('uni', 1), ('nni', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cevcPortMode.setStatus('current')
if mibBuilder.loadTexts:
cevcPortMode.setDescription("Port denotes the physcial interface which can provide Ethernet services. This object indicates the mode of the port and its operational behaviour in the MEN. 'uni' User Network Interface The port resides on the interface between the end user and the network. Additional information related to the UNI is included in cevcUniTable. 'nni' Network to Network Interface. The port resides on the interface between two networks.")
cevc_port_max_num_ev_cs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 1, 1, 2), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcPortMaxNumEVCs.setStatus('current')
if mibBuilder.loadTexts:
cevcPortMaxNumEVCs.setDescription('This object indicates the maximum number of EVCs that the interface can support.')
cevc_port_max_num_service_instances = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 1, 1, 3), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcPortMaxNumServiceInstances.setStatus('current')
if mibBuilder.loadTexts:
cevcPortMaxNumServiceInstances.setDescription('This object indicates the maximum number of service instances that the interface can support.')
cevc_uni_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 2))
if mibBuilder.loadTexts:
cevcUniTable.setStatus('current')
if mibBuilder.loadTexts:
cevcUniTable.setDescription("This table contains a list of UNIs locally configured on the system. This table has a sparse dependent relationship on the cevcPortTable, containing a row for each cevcPortEntry having a cevcPortMode column value 'uni'.")
cevc_uni_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
cevcUniEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcUniEntry.setDescription("This entry represents an UNI and its service attributes. The system automatically creates an entry when the system or the EMS/NMS creates a row in the cevcPortTable with a cevcPortMode of 'uni'. Likewise, the system automatically destroys an entry when the system or the EMS/NMS destroys the corresponding row in the cevcPortTable.")
cevc_uni_identifier = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 2, 1, 1), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcUniIdentifier.setReference("MEF 16, 'Ethernet Local Management Interface (E-LMI)', January 2006")
if mibBuilder.loadTexts:
cevcUniIdentifier.setStatus('current')
if mibBuilder.loadTexts:
cevcUniIdentifier.setDescription('This object specifies a string-value assigned to a UNI for identification. When the UNI identifier is configured by the system or the EMS/NMS, it should be unique among all UNIs for the MEN. If the UNI identifier value is not specified, the value of the cevcUniIdentifier column is a zero-length string.')
cevc_uni_port_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dot1q', 1), ('dot1ad', 2))).clone('dot1q')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcUniPortType.setStatus('current')
if mibBuilder.loadTexts:
cevcUniPortType.setDescription("This object specifies the UNI port type. 'dot1q' The UNI port is an IEEE 802.1q port. 'dot1ad' The UNI port is an IEEE 802.1ad port.")
cevc_uni_service_attributes = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 2, 1, 3), bits().clone(namedValues=named_values(('serviceMultiplexing', 0), ('bundling', 1), ('allToOneBundling', 2))).clone(namedValues=named_values(('serviceMultiplexing', 0), ('bundling', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcUniServiceAttributes.setStatus('current')
if mibBuilder.loadTexts:
cevcUniServiceAttributes.setDescription("This object specifies the UNI service attributes. 'serviceMultiplexing' This bit specifies whether the UNI supports multiple EVCs. Point-to-Point EVCs and Multipoint-to-Multipoint EVCs may be multiplexed in any combination at the UNI if this bit is set to '1'. 'bundling' This bit specifies whether the UNI has the bundling attribute configured. If this bit is set to '1', more than one CE-VLAN ID can map to a particular EVC at the UNI. 'allToOneBundling' This bit specifies whether the UNI has the all to one bundling attribute. If this bit is set to '1', all CE-VLAN IDs map to a single EVC at the UNI. To summarize the valid combinations of serviceMultiplexing(0), bundling(1) and allToOneBundling(2) bits for an UNI, consider the following diagram: VALID COMBINATIONS +---------------+-------+-------+-------+-------+-------+ |UNI ATTRIBUTES | 1 | 2 | 3 | 4 | 5 | +---------------+-------+------+------------------------+ |Service | | | | | | |Multiplexing | | Y | Y | | | | | | | | | | +---------------+-------+-------+-------+-------+-------+ | | | | | | | |Bundling | | | Y | Y | | | | | | | | | +---------------+-------+-------+-------+-------+-------+ |All to One | | | | | | |Bundling | | | | | Y | | | | | | | | +---------------+-------+-------+------ +-------+-------+")
cevc_port_l2_control_protocol_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 3))
if mibBuilder.loadTexts:
cevcPortL2ControlProtocolTable.setStatus('current')
if mibBuilder.loadTexts:
cevcPortL2ControlProtocolTable.setDescription('This table lists the layer 2 control protocol processing attributes at UNI ports. This table has an expansion dependent relationship on the cevcUniTable, containing zero or more rows for each UNI.')
cevc_port_l2_control_protocol_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 3, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-EVC-MIB', 'cevcPortL2ControlProtocolType'))
if mibBuilder.loadTexts:
cevcPortL2ControlProtocolEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcPortL2ControlProtocolEntry.setDescription('This entry represents the layer 2 control protocol processing at the UNI. The system automatically creates an entry for each layer 2 control protocol type when an entry is created in the cevcUniTable, and entries are automatically destroyed when the system destroys the corresponding row in the cevcUniTable.')
cevc_port_l2_control_protocol_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 3, 1, 1), cevc_l2_control_protocol_type())
if mibBuilder.loadTexts:
cevcPortL2ControlProtocolType.setStatus('current')
if mibBuilder.loadTexts:
cevcPortL2ControlProtocolType.setDescription('This object indicates the type of layer 2 control protocol service frame as denoted by the value of cevcPortL2ControlProtocolAction column.')
cevc_port_l2_control_protocol_action = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('discard', 1), ('peer', 2), ('passToEvc', 3), ('peerAndPassToEvc', 4))).clone('discard')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcPortL2ControlProtocolAction.setStatus('current')
if mibBuilder.loadTexts:
cevcPortL2ControlProtocolAction.setDescription("This object specifies the action to be taken for the given layer 2 control protocol service frames which matches the cevcPortL2ControlProtocolType, including: 'discard' The port must discard all ingress service frames carrying the layer 2 control protocol service frames and the port must not generate any egress service frames carrying the layer 2 control protocol service frames. When this action is set at the port, an EVC cannot process the layer 2 control protocol service frames. 'peer' The port must act as a peer, meaning it actively participates with the Customer Equipment, in the operation of the layer 2 control protocol service frames. An example of this is port authentication service at the UNI with 802.1x or enhanced link OAM functionality by peering at the UNI with link OAM (IEEE 802.3ah). When this action is set at the port, an EVC cannot process the layer 2 control protocol service frames. 'passToEvc' The disposition of the service frames which are layer 2 control protocol service frames must be determined by the layer 2 control protocol action attribute of the EVC, (see cevcSIL2ControlProtocolAction for further details). 'peerAndPassToEvc' The layer 2 control protocol service frames will be peered at the port and also passed to one or more EVCs for tunneling. An example of this possibility is where an 802.1x authentication frame is peered at the UNI for UNI-based authentication, but also passed to a given EVC for customer end-to-end authentication.")
cevc_uni_ce_vlan_evc_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 4))
if mibBuilder.loadTexts:
cevcUniCEVlanEvcTable.setStatus('current')
if mibBuilder.loadTexts:
cevcUniCEVlanEvcTable.setDescription('This table contains for each UNI, a list of EVCs and the association of CE-VLANs to the EVC. The CE-VLAN mapping is locally significant to the UNI. This table has an expansion dependent relationship on the cevcUniTable, containing zero or more rows for each UNI.')
cevc_uni_ce_vlan_evc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 4, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-EVC-MIB', 'cevcUniEvcIndex'), (0, 'CISCO-EVC-MIB', 'cevcUniCEVlanEvcBeginningVlan'))
if mibBuilder.loadTexts:
cevcUniCEVlanEvcEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcUniCEVlanEvcEntry.setDescription('This entry represents an EVC and the CE-VLANs that are mapped to it at an UNI. For example, if CE-VLANs 10, 20-30, 40 are mapped to an EVC indicated by cevcUniEvcIndex = 1, at an UNI with ifIndex = 2, this table will contain following rows to represent above CE-VLAN map: cevcUniCEVlanEvcEndingVlan.2.1.10 = 0 cevcUniCEVlanEvcEndingVlan.2.1.20 = 30 cevcUniCEVlanEvcEndingVlan.2.1.40 = 0 The system automatically creates an entry when the system creates an entry in the cevcUniTable and an entry is created in cevcSICEVlanTable for a service instance which is attached to an EVC on this UNI. Likewise, the system automatically destroys an entry when the system or the EMS/NMS destroys the corresponding row in the cevcUniTable or in the cevcSICEVlanTable.')
cevc_uni_evc_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 4, 1, 1), cisco_evc_index())
if mibBuilder.loadTexts:
cevcUniEvcIndex.setStatus('current')
if mibBuilder.loadTexts:
cevcUniEvcIndex.setDescription('This object indicates an arbitrary integer-value that uniquely identifies the EVC attached at an UNI.')
cevc_uni_ce_vlan_evc_beginning_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 4, 1, 2), vlan_id())
if mibBuilder.loadTexts:
cevcUniCEVlanEvcBeginningVlan.setStatus('current')
if mibBuilder.loadTexts:
cevcUniCEVlanEvcBeginningVlan.setDescription("If cevcUniCEVlanEvcEndingVlan is '0', then this object indicates a single VLAN in the list. If cevcUniCEVlanEvcEndingVlan is not '0', then this object indicates the first VLAN in a range of VLANs.")
cevc_uni_ce_vlan_evc_ending_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 2, 4, 1, 3), vlan_id_or_none()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcUniCEVlanEvcEndingVlan.setStatus('current')
if mibBuilder.loadTexts:
cevcUniCEVlanEvcEndingVlan.setDescription("This object indicates the last VLAN in a range of VLANs. If the row does not describe a range, then the value of this column must be '0'.")
cevc_evc_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1))
if mibBuilder.loadTexts:
cevcEvcTable.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcTable.setDescription('This table contains a list of EVCs and their service attributes.')
cevc_evc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcEvcIndex'))
if mibBuilder.loadTexts:
cevcEvcEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcEntry.setDescription("This entry represents the EVC configured on the system and its service atrributes. Entries in this table may be created and deleted via the cevcEvcRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of cevcEvcRowStatus column to 'createAndGo'or 'createAndWait'. Rows are deleted by a SET request setting the value of cevcEvcRowStatus column to 'destroy'.")
cevc_evc_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 1), cisco_evc_index())
if mibBuilder.loadTexts:
cevcEvcIndex.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcIndex.setDescription('This object indicates an arbitrary integer-value that uniquely identifies the EVC.')
cevc_evc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcEvcRowStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcEvcTable. cevcEvcIdentifier column must have a valid value before a row can be set to 'active'. Writable objects in this table can be modified while the value of cevcEvcRowStatus column is 'active'. An entry cannot be deleted if there exists a service instance which is referring to the cevcEvcEntry i.e. cevcSIEvcIndex in the cevcSITable has the same value as cevcEvcIndex being deleted.")
cevc_evc_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 3), storage_type().clone('volatile')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcEvcStorageType.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevc_evc_identifier = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 4), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 100))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcEvcIdentifier.setReference("MEF 16, 'Ethernet Local Management Interface (E-LMI)', January 2006")
if mibBuilder.loadTexts:
cevcEvcIdentifier.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcIdentifier.setDescription('This object specifies a string-value identifying the EVC. This value should be unique across the MEN.')
cevc_evc_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('pointToPoint', 1), ('multipointToMultipoint', 2))).clone('pointToPoint')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcEvcType.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcType.setDescription("This object specifies the type of EVC: 'pointToPoint' Exactly two UNIs are associated with one another. An ingress service frame at one UNI must not result in an egress service frame at a UNI other than the other UNI in the EVC. 'multipointToMultipoint' Two or more UNIs are associated with one another. An ingress service frame at one UNI must not result in an egress service frame at a UNI that is not in the EVC.")
cevc_evc_cfg_unis = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 1, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(2, 4294967295)).clone(2)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcEvcCfgUnis.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcCfgUnis.setDescription("This object specifies the number of UNIs expected to be configured for the EVC in the MEN. The underlying OAM protocol can use this value of UNIs to determine the EVC operational status, cevcEvcOperStatus. For a Multipoint-to-Multipoint EVC the minimum number of Uni's would be two.")
cevc_evc_state_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 2))
if mibBuilder.loadTexts:
cevcEvcStateTable.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcStateTable.setDescription('This table lists statical/status data of the EVC. This table has an one-to-one dependent relationship on the cevcEvcTable, containing a row for each EVC.')
cevc_evc_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 2, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcEvcIndex'))
if mibBuilder.loadTexts:
cevcEvcStateEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcStateEntry.setDescription('This entry represents status atrributes of an EVC. The system automatically creates an entry when the system or the EMS/NMS creates a row in the cevcEvcTable. Likewise, the system automatically destroys an entry when the system or the EMS/NMS destroys the corresponding row in the cevcEvcTable.')
cevc_evc_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 1), ('active', 2), ('partiallyActive', 3), ('inactive', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcEvcOperStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcOperStatus.setDescription("This object specifies the operational status of the EVC: 'unknown' Not enough information available regarding the EVC to determine the operational status at this time or EVC operational status is undefined. 'active' Fully operational between the UNIs in the EVC. 'partiallyActive' Capable of transferring traffic among some but not all of the UNIs in the EVC. This operational status is applicable only for Multipoint-to-Multipoint EVCs. 'inactive' Not capable of transferring traffic among any of the UNIs in the EVC. This value is derived from data gathered by underlying OAM protocol.")
cevc_evc_active_unis = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 2, 1, 2), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcEvcActiveUnis.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcActiveUnis.setDescription('This object indicates the number of active UNIs for the EVC in the MEN. This value is derived from data gathered by underlying OAM Protocol.')
cevc_evc_uni_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3))
if mibBuilder.loadTexts:
cevcEvcUniTable.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcUniTable.setDescription("This table contains a list of UNI's for each EVC configured on the device. The UNIs can be local (i.e. physically located on the system) or remote (i.e. not physically located on the device). For local UNIs, the UNI Id is the same as denoted by cevcUniIdentifier with the same ifIndex value as cevcEvcLocalUniIfIndex. For remote UNIs, the underlying OAM protocol, if capable, provides the UNI Id via its protocol messages. This table has an expansion dependent relationship on the cevcEvcTable, containing a row for each UNI that is in the EVC.")
cevc_evc_uni_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcEvcIndex'), (0, 'CISCO-EVC-MIB', 'cevcEvcUniIndex'))
if mibBuilder.loadTexts:
cevcEvcUniEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcUniEntry.setDescription('This entry represents a UNI, either local or remote, in the EVC. The system automatically creates an entry, when an UNI is attached to the EVC. Entries are automatically destroyed when the system or the EMS/NMS destroys the corresponding row in the cevcEvcTable or when an UNI is removed from the EVC.')
cevc_evc_uni_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295)))
if mibBuilder.loadTexts:
cevcEvcUniIndex.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcUniIndex.setDescription('This object indicates an arbitrary integer-value that uniquely identifies the UNI in an EVC.')
cevc_evc_uni_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcEvcUniId.setReference('MEF 16, Ethernet Local Management Interface (E-LMI), January 2006')
if mibBuilder.loadTexts:
cevcEvcUniId.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcUniId.setDescription('This object indicates the string-value identifying the UNI that is in the EVC. For UNI that is local, this value is the same as cevcUniIdentifier for the same ifIndex value as cevcEvcLocalUniIfIndex. For UNI that is not on the system, this value may be derived from the underlying OAM protocol. If the UNI identifier value is not specified for the UNI or it is unknown, the value of the cevcEvcUniId column is a zero-length string.')
cevc_evc_uni_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('unknown', 1), ('notReachable', 2), ('up', 3), ('down', 4), ('adminDown', 5), ('localExcessiveError', 6), ('remoteExcessiveError', 7), ('localInLoopback', 8), ('remoteInLoopback', 9), ('localOutLoopback', 10), ('remoteOutLoopback', 11)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcEvcUniOperStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcUniOperStatus.setDescription("This object indicates the operational status derived from data gathered by the OAM protocol for an UNI. 'unknown' Status is not known; possible reason could be caused by the OAM protocol has not provided information regarding the UNI. 'notReachable' UNI is not reachable; possible reason could be caused by the OAM protocol messages having not been received for an excessive length of time. 'up' UNI is active, up, and able to pass traffic. 'down' UNI is down and not passing traffic. 'adminDown' UNI has been administratively put in down state. 'localExcessiveError' UNI has experienced excessive number of invalid frames on the local end of the physical link between UNI-C and UNI-N. 'remoteExcessiveError' UNI has experienced excessive number of invalid frames on the remote side of the physical connection between UNI-C and UNI-N. 'localInLoopback' UNI is loopback on the local end of the physical link between UNI-C and UNI-N. 'remoteInLoopback' UNI is looped back on the remote end of the link between UNI-C and UNI-N. 'localOutLoopback' UNI just transitioned out of loopback on the local end of the physcial link between UNI-C and UNI-N. 'remoteOutLoopback' UNI just transitioned out of loopback on the remote end of the physcial link between UNI-C and UNI-N.")
cevc_evc_local_uni_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 3, 3, 1, 4), interface_index_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcEvcLocalUniIfIndex.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcLocalUniIfIndex.setDescription("When the UNI is local on the system, this object specifies the ifIndex of the UNI. The value '0' of this column indicates remote UNI.")
cevc_si_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1))
if mibBuilder.loadTexts:
cevcSITable.setStatus('current')
if mibBuilder.loadTexts:
cevcSITable.setDescription('This table lists each service instance and its service attributes.')
cevc_si_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcSIIndex'))
if mibBuilder.loadTexts:
cevcSIEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcSIEntry.setDescription("This entry represents a service instance configured on the system and its service attributes. Entries in this table may be created and deleted via the cevcSIRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of cevcSIRowStatus column to 'createAndGo'or 'createAndWait'. Rows are deleted by a SET request setting the value of cevcSIRowStatus column to 'destroy'.")
cevc_si_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295)))
if mibBuilder.loadTexts:
cevcSIIndex.setStatus('current')
if mibBuilder.loadTexts:
cevcSIIndex.setDescription('This object indicates an arbitrary integer-value that uniquely identifies a service instance. An implementation MAY assign an ifIndex-value assigned to the service instance to cevcSIIndex.')
cevc_si_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIRowStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcSIRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSITable. This object cannot be set to 'active' until following corresponding objects are assigned to valid values: - cevcSITargetType - cevcSITarget - cevcSIName - cevcSIType Following writable objects in this table cannot be modified while the value of cevcSIRowStatus is 'active': - cevcSITargetType - cevcSITarget - cevcSIName - cevcSIType Objects in this table and all other tables that have the same cevcSIIndex value as an index disappear when cevcSIRowStatus is set to 'destroy'.")
cevc_si_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 3), storage_type().clone('volatile')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIStorageType.setStatus('current')
if mibBuilder.loadTexts:
cevcSIStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevc_si_target_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 4), service_instance_target_type()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSITargetType.setStatus('current')
if mibBuilder.loadTexts:
cevcSITargetType.setDescription('This object indicates the type of interface/media to which a service instance has an attachment.')
cevc_si_target = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 5), service_instance_target()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSITarget.setStatus('current')
if mibBuilder.loadTexts:
cevcSITarget.setDescription('This object indicates the target to which a service instance has an attachment. If the target is unknown, the value of the cevcSITarget column is a zero-length string.')
cevc_si_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 6), snmp_admin_string()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIName.setStatus('current')
if mibBuilder.loadTexts:
cevcSIName.setDescription("The textual name of the service instance. The value of this column should be the name of the component as assigned by the local interface/media type and should be be suitable for use in commands entered at the device's 'console'. This might be text name, such as 'si1' or a simple service instance number, such as '1', depending on the interface naming syntax of the device. If there is no local name or this object is otherwise not applicable, then this object contains a zero-length string.")
cevc_si_evc_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 7), cisco_evc_index_or_zero()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIEvcIndex.setStatus('current')
if mibBuilder.loadTexts:
cevcSIEvcIndex.setDescription("This object specifies the EVC Index that the service instance is associated. The value of '0' this column indicates that the service instance is not associated to an EVC. If the value of cevcSIEvcIndex column is not '0', there must exist an active row in the cevcEvcTable with the same index value for cevcEvcIndex.")
cevc_si_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('down', 2))).clone('up')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIAdminStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcSIAdminStatus.setDescription("This object specifies the desired state of the Service Instance. 'up' Ready to transfer traffic. When a system initializes, all service instances start with this state. 'down' The service instance is administratively down and is not capable of transferring traffic.")
cevc_si_forwarding_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('other', 0), ('bridgeDomain', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIForwardingType.setStatus('current')
if mibBuilder.loadTexts:
cevcSIForwardingType.setDescription("This object indicates technique used by a service instance to forward service frames. 'other' If the forwarding behavior of a service instance is not defined or unknown, this object is set to other(0). 'bridgeDomain' Bridge domain is used to forward service frames by a service instance. If cevcSIForwardingType is 'bridgeDomain(1)', there must exist an active row in the cevcSIForwardBdTable with the same index value of cevcSIIndex. The object cevcSIForwardBdNumber indicates the identifier of the bridge domain component being used.")
cevc_si_creation_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('static', 1), ('dynamic', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcSICreationType.setStatus('current')
if mibBuilder.loadTexts:
cevcSICreationType.setDescription("This object specifies whether the service instance created is statically configured by the user or is dynamically created. 'static' If the service instance is configured manually this object is set to static(1). 'dynamic' If the service instance is created dynamically by the first sign of life of an Ethernet frame, then this object is set to dynamic(2) for the service instance.")
cevc_si_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('regular', 1), ('trunk', 2), ('l2context', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIType.setStatus('current')
if mibBuilder.loadTexts:
cevcSIType.setDescription("This object specifies the type of the service instance. It mentions if the service instance is either a regular or trunk or l2context service instance. 'regular' If a service instance is configured without any type specified, then it is a regular service instance. 'trunk' If the service instance is configured with trunk type, then it is a trunk service instance. For a trunk service instance, its Bridge domain IDs are derived from encapsulation VLAN plus an optional offset (refer cevcSIForwardBdNumberBase object). 'l2context' If the service instance is configured with dynamic type, then it is a L2 context service instance. The Ethernet L2 Context is a statically configured service instance which contains the Ethernet Initiator for attracting the first sign of life. In other words, Ethernet L2 Context service instance is used for catching the first sign of life of Ethernet frames to create dynamic Ethernet sessions service instances.")
cevc_si_state_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 2))
if mibBuilder.loadTexts:
cevcSIStateTable.setStatus('current')
if mibBuilder.loadTexts:
cevcSIStateTable.setDescription('This table lists statical status data of the service instance. This table has an one-to-one dependent relationship on the cevcSITable, containing a row for each service instance.')
cevc_si_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 2, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcSIIndex'))
if mibBuilder.loadTexts:
cevcSIStateEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcSIStateEntry.setDescription('This entry represents operational status of a service instance. The system automatically creates an entry when the system or the EMS NMS creates a row in the cevcSITable. Likewise, the system automatically destroys an entry when the system or the EMS NMS destroys the corresponding row in the cevcSITable.')
cevc_si_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('up', 1), ('down', 2), ('adminDown', 3), ('deleted', 4), ('errorDisabled', 5), ('unknown', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cevcSIOperStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcSIOperStatus.setDescription("This object indicates the operational status of the Service Instance. 'up' Service instance is fully operational and able to transfer traffic. 'down' Service instance is down and not capable of transferring traffic, and is not administratively configured to be down by management system. 'adminDown' Service instance has been explicitly configured to administratively down by a management system and is not capable of transferring traffic. 'deleted' Service instance has been deleted. 'errorDisabled' Service instance has been shut down due to MAC security violations. 'unknown' Operational status of service instance is unknown or undefined.")
cevc_si_vlan_rewrite_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3))
if mibBuilder.loadTexts:
cevcSIVlanRewriteTable.setStatus('current')
if mibBuilder.loadTexts:
cevcSIVlanRewriteTable.setDescription("This table lists the rewrite adjustments of the service frame's VLAN tags for service instances. This table has an expansion dependent relationship on the cevcSITable, containing a row for a VLAN adjustment for ingress and egress frames at each service instance.")
cevc_si_vlan_rewrite_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcSIIndex'), (0, 'CISCO-EVC-MIB', 'cevcSIVlanRewriteDirection'))
if mibBuilder.loadTexts:
cevcSIVlanRewriteEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcSIVlanRewriteEntry.setDescription('Each entry represents the VLAN adjustment for a Service Instance.')
cevc_si_vlan_rewrite_direction = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ingress', 1), ('egress', 2))))
if mibBuilder.loadTexts:
cevcSIVlanRewriteDirection.setStatus('current')
if mibBuilder.loadTexts:
cevcSIVlanRewriteDirection.setDescription("This object specifies the VLAN adjustment for 'ingress' frames or 'egress' frames on the service instance.")
cevc_si_vlan_rewrite_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIVlanRewriteRowStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcSIVlanRewriteRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSIVlanRewriteTable. cevcSIVlanRewriteAction and cevcSIVlanRewriteEncapsulation must have valid values before this object can be set to 'active'. Writable objects in this table can be modified while the value of cevcSIVlanRewriteRowStatus column is 'active'.")
cevc_si_vlan_rewrite_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 3), storage_type().clone('volatile')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIVlanRewriteStorageType.setStatus('current')
if mibBuilder.loadTexts:
cevcSIVlanRewriteStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevc_si_vlan_rewrite_action = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('push1', 1), ('push2', 2), ('pop1', 3), ('pop2', 4), ('translate1To1', 5), ('translate1To2', 6), ('translate2To1', 7), ('translate2To2', 8)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIVlanRewriteAction.setStatus('current')
if mibBuilder.loadTexts:
cevcSIVlanRewriteAction.setDescription("This object specifies the rewrite action the device performs for the service instance, including: 'push1' Add cevcSIVlanRewriteVlan1 as the VLAN tag to the service frame. 'push2' Add cevcSIVlanRewriteVlan1 as the outer VLAN tag and cevcSIVlanRewriteVlan2 as the inner VLAN tag of the service frame. 'pop1' Remove the outermost VLAN tag from the service frame. 'pop2' Remove the two outermost VLAN tags from the service frame. 'translate1To1' Replace the outermost VLAN tag with the cevcSIVlanRewriteVlan1 tag. 'translate1To2' Replace the outermost VLAN tag with cevcSIVlanRewriteVlan1 and add cevcSIVlanRewriteVlan2 to the second VLAN tag of the service frame. 'translate2To1' Remove the outermost VLAN tag and replace the second VLAN tag with cevcSIVlanVlanRewriteVlan1. 'translate2To2' Replace the outermost VLAN tag with cevcSIVlanRewriteVlan1 and the second VLAN tag with cevcSIVlanRewriteVlan2.")
cevc_si_vlan_rewrite_encapsulation = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dot1q', 1), ('dot1ad', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIVlanRewriteEncapsulation.setStatus('current')
if mibBuilder.loadTexts:
cevcSIVlanRewriteEncapsulation.setDescription("This object specifies the encapsulation type to process for the service instance. 'dot1q' The IEEE 802.1q encapsulation. 'dot1ad' The IEEE 802.1ad encapsulation.")
cevc_si_vlan_rewrite_vlan1 = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 6), vlan_id()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIVlanRewriteVlan1.setStatus('current')
if mibBuilder.loadTexts:
cevcSIVlanRewriteVlan1.setDescription("This object specifies the outermost VLAN ID tag of the frame for the service instance. This object is valid only when cevcSIVlanRewriteAction is 'push1', 'push2', 'translate1To1', 'translate1To2', 'translate2To1', or 'translate2To2'.")
cevc_si_vlan_rewrite_vlan2 = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 7), vlan_id()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIVlanRewriteVlan2.setStatus('current')
if mibBuilder.loadTexts:
cevcSIVlanRewriteVlan2.setDescription("This object specifies the second VLAN ID tag of the frame for the service instance. This object is valid only when cevcSIVlanRewriteAction is 'push2', 'translate1To2', or 'translate2To2'.")
cevc_si_vlan_rewrite_symmetric = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 3, 1, 8), truth_value().clone('false')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIVlanRewriteSymmetric.setStatus('current')
if mibBuilder.loadTexts:
cevcSIVlanRewriteSymmetric.setDescription("This object is valid only when cevcSIVlanRewriteDirection is 'ingress'. The value 'true' of this column specifies that egress packets are tagged with a VLAN specified by an active row in cevcSIPrimaryVlanTable. There could only be one VLAN value assigned in the cevcSIPrimaryVlanTable, i.e. only one 'active' entry that has the same index value of cevcSIIndex column and corresponding instance of cevcSIPrimaryVlanEndingVlan column has value '0'.")
cevc_sil2_control_protocol_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 4))
if mibBuilder.loadTexts:
cevcSIL2ControlProtocolTable.setStatus('current')
if mibBuilder.loadTexts:
cevcSIL2ControlProtocolTable.setDescription('This table lists the layer 2 control protocol processing attributes at service instances. This table has an expansion dependent relationship on the cevcSITable, containing a row for each layer 2 control protocol disposition at each service instance.')
cevc_sil2_control_protocol_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 4, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcSIIndex'), (0, 'CISCO-EVC-MIB', 'cevcSIL2ControlProtocolType'))
if mibBuilder.loadTexts:
cevcSIL2ControlProtocolEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcSIL2ControlProtocolEntry.setDescription('This entry represents the layer 2 control protocol processing at a service instance. The system automatically creates an entry for each layer 2 control protocol type when an entry is created in the cevcSITable, and entries are automatically destroyed when the system destroys the corresponding row in the cevcSITable.')
cevc_sil2_control_protocol_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 4, 1, 1), cevc_l2_control_protocol_type())
if mibBuilder.loadTexts:
cevcSIL2ControlProtocolType.setStatus('current')
if mibBuilder.loadTexts:
cevcSIL2ControlProtocolType.setDescription('The layer 2 control protocol service frame that the service instance is to process as defined by object cevcSIL2ControlProtocolAction.')
cevc_sil2_control_protocol_action = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('discard', 1), ('tunnel', 2), ('forward', 3))).clone('discard')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIL2ControlProtocolAction.setStatus('current')
if mibBuilder.loadTexts:
cevcSIL2ControlProtocolAction.setDescription("The actions to be taken for a given layer 2 control protocol service frames that matches cevcSIL2ControlProtocolType, including: 'discard' The MEN must discard all ingress service frames carrying the layer 2 control protocol service frames on the EVC and the MEN must not generate any egress service frames carrying the layer 2 control protocol frames on the EVC. 'tunnel' Forward the layer 2 control protocol service frames with the MAC address changed as defined by the individual layer 2 control protocol. The EVC does not process the layer 2 protocol service frames. If a layer 2 control protocol service frame is to be tunneled, all the UNIs in the EVC must be configured to pass the layer 2 control protocol service frames to the EVC, cevcPortL2ControlProtocolAction column has the value of 'passToEvc' or 'peerAndPassToEvc'. 'forward' Forward the layer 2 conrol protocol service frames as data; similar to tunnel but layer 2 control protocol service frames are forwarded without changing the MAC address.")
cevc_sice_vlan_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5))
if mibBuilder.loadTexts:
cevcSICEVlanTable.setStatus('current')
if mibBuilder.loadTexts:
cevcSICEVlanTable.setDescription('This table contains the CE-VLAN map list for each Service Instance. This table has an expansion dependent relationship on the cevcSITable, containing a row for each CE-VLAN or a range of CE-VLANs that are mapped to a service instance.')
cevc_sice_vlan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcSIIndex'), (0, 'CISCO-EVC-MIB', 'cevcSICEVlanBeginningVlan'))
if mibBuilder.loadTexts:
cevcSICEVlanEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcSICEVlanEntry.setDescription("This entry contains the CE-VLANs that are mapped at a Service Instance. Entries in this table may be created and deleted via the cevcSICEVlanRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of cevcSICEVlanRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of cevcSICEVlanRowStatus column to 'destroy'.")
cevc_sice_vlan_beginning_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5, 1, 1), vlan_id())
if mibBuilder.loadTexts:
cevcSICEVlanBeginningVlan.setStatus('current')
if mibBuilder.loadTexts:
cevcSICEVlanBeginningVlan.setDescription("If cevcSICEVlanEndingVlan is '0', then this object indicates a single VLAN in the list. If cevcSICEVlanEndingVlan is not '0', then this object indicates the first VLAN in a range of VLANs.")
cevc_sice_vlan_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSICEVlanRowStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcSICEVlanRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSICEVlanTable. This object cannot be set to 'active' until all objects have been assigned valid values. Writable objects in this table can be modified while the value of the cevcSICEVlanRowStatus column is 'active'.")
cevc_sice_vlan_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5, 1, 3), storage_type().clone('volatile')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSICEVlanStorageType.setStatus('current')
if mibBuilder.loadTexts:
cevcSICEVlanStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevc_sice_vlan_ending_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 5, 1, 4), vlan_id_or_none()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSICEVlanEndingVlan.setStatus('current')
if mibBuilder.loadTexts:
cevcSICEVlanEndingVlan.setDescription("This object indicates the last VLAN in a range of VLANs. If the row does not describe a range, then the value of this column must be '0'.")
cevc_si_match_criteria_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6))
if mibBuilder.loadTexts:
cevcSIMatchCriteriaTable.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchCriteriaTable.setDescription('This table contains the match criteria for each Service Instance. This table has an expansion dependent relationship on the cevcSITable, containing a row for each group of match criteria of each service instance.')
cevc_si_match_criteria_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcSIIndex'), (0, 'CISCO-EVC-MIB', 'cevcSIMatchCriteriaIndex'))
if mibBuilder.loadTexts:
cevcSIMatchCriteriaEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchCriteriaEntry.setDescription("This entry represents a group of match criteria for a service instance. Each entry in the table with the same cevcSIIndex and different cevcSIMatchCriteriaIndex represents an OR operation of the match criteria for the service instance. Entries in this table may be created and deleted via the cevcSIMatchRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of cevcSIMatchRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of cevcSIMatchRowStatus column to 'destroy'.")
cevc_si_match_criteria_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295)))
if mibBuilder.loadTexts:
cevcSIMatchCriteriaIndex.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchCriteriaIndex.setDescription('This object indicates an arbitrary integer-value that uniquely identifies a match criteria for a service instance.')
cevc_si_match_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchRowStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSIMatchCriteriaTable. If the value of cevcSIMatchCriteriaType column is 'dot1q(1)' or 'dot1ad(2)' or 'untaggedAndDot1q' or 'untaggedAndDot1ad, then cevcSIMatchCriteriaRowStatus can not be set to 'active' until there exist an active row in the cevcSIMatchEncapTable with the same index value for cevcSIIndex and cevcSIMatchCriteriaIndex. Writable objects in this table can be modified while the value of the cevcSIMatchRowStatus column is 'active'.")
cevc_si_match_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6, 1, 3), storage_type().clone('volatile')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchStorageType.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevc_si_match_criteria_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 6, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('unknown', 1), ('dot1q', 2), ('dot1ad', 3), ('untagged', 4), ('untaggedAndDot1q', 5), ('untaggedAndDot1ad', 6), ('priorityTagged', 7), ('defaultTagged', 8)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchCriteriaType.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchCriteriaType.setDescription("This object specifies the criteria used to match a service instance. 'unknown' Match criteria for the service instance is not defined or unknown. 'dot1q' The IEEE 802.1q encapsulation is used as a match criteria for the service instance. The ether type value of the IEEE 802.1q tag is specified by the object cevcSIEncapEncapsulation with the same index value of cevcSIIndex and cevcSIMatchCreriaIndex. 'dot1ad' The IEEE 802.1ad encapsulation is used as a match criteria for the service instance. The ether type value of the IEEE 802.1ad tag is specified by the cevcSIEncapEncapsulation column with the same index value of cevcSIIndex and cevcSIMatchCreriaIndex. 'untagged' Service instance processes untagged service frames. Only one service instance on the interface/media type can use untagged frames as a match criteria. 'untaggedAndDot1q' Both untagged frames and the IEEE 802.1q encapsulation are used as a match criteria for the service instance. Only one service instance on the interface/media type can use untagged frames as a match criteria. The ether type value of the IEEE 802.1q tag is specified by the cevcSIEncapEncapsulation column with the same index value of cevcSIIndex and cevcSIMatchCreriaIndex. 'untaggedAndDot1ad' Both untagged frames and the IEEE 802.1ad encapsulation are used as a match criteria for the service instance. Only one service instance on the interface/media type can use untagged frames as a match criteria. The ether type value of the IEEE 802.1ad tag is specified by the cevcSIEncapEncapsulation column with the same index value of cevcSIIndex and cevcSIMatchCreriaIndex. 'priorityTagged' Service instance processes priority tagged frames. Only one service instance on the interface/media type can use priority tagged frames as a match criteria. 'defaultTagged' Service instance is a default service instance. The default service instance processes frames with VLANs that do not match to any other service instances configured on the interface/media type. Only one service instance on the interface/media type can be the default service instance.")
cevc_si_match_encap_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7))
if mibBuilder.loadTexts:
cevcSIMatchEncapTable.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchEncapTable.setDescription("This table contains the encapsulation based match criteria for each service instance. This table has a sparse dependent relationship on the cevcSIMatchCriteriaTable, containing a row for each match criteria having one of the following values for cevcSIMatchCriteriaType: - 'dot1q' - 'dot1ad' - 'untaggedAndDot1q' - 'untaggedAndDot1ad' - 'priorityTagged'")
cevc_si_match_encap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcSIIndex'), (0, 'CISCO-EVC-MIB', 'cevcSIMatchCriteriaIndex'))
if mibBuilder.loadTexts:
cevcSIMatchEncapEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchEncapEntry.setDescription("This entry represents a group of encapulation match criteria for a service instance. Entries in this table may be created and deleted via the cevcSIMatchEncapRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of cevcSIMatchEncapRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of cevcSIMatchEncapRowStatus column to 'destroy'.")
cevc_si_match_encap_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 1), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchEncapRowStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchEncapRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSIMatchEncapTable. This object cannot be set to 'active' until cevcSIEncapEncapsulation and objects referred by cevcSIMatchEncapValid have been assigned their respective valid values. Writable objects in this table can be modified while the value of the cevcSIEncapMatchRowStatus column is 'active'.")
cevc_si_match_encap_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 2), storage_type().clone('volatile')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchEncapStorageType.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchEncapStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevc_si_match_encap_valid = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 3), bits().clone(namedValues=named_values(('primaryCos', 0), ('secondaryCos', 1), ('payloadType', 2), ('payloadTypes', 3), ('priorityCos', 4), ('dot1qNativeVlan', 5), ('dot1adNativeVlan', 6), ('encapExact', 7)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchEncapValid.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchEncapValid.setDescription("This object specifies the encapsulation criteria used to match a service instance. 'primaryCos' The 'primaryCos' bit set to '1' specifies the Class of Service is used as service match criteria for the service instance. When this bit is set to '1' there must exist aleast one active rows in the cevcSIPrimaryVlanTable which has the same index values of cevcSIIndex and cevcSIMatchCriteriaIndex. When 'primaryCos' bit is '1', the cevcSIPrimaryCos column indicates the CoS value(s). 'secondaryCos' The 'secondaryCos' bit set to '1' specifies the Class of Service is used as service match criteria for the service instance. When this bit is set to '1' there must exist aleast one active rows in the cevcSISecondaryVlanTable which has the same index values of cevcSIIndex and cevcSIMatchCriteriaIndex. When 'secondaryCos' bit is '1', the cevcSISecondaryCos column indicates the CoS value(s). 'payloadType' This bit set to '1' specifies that the value of corresponding instance of cevcSIMatchEncapPayloadType is used as service match criteria for the service instance. 'payloadTypes' This bit set to '1' specifies that the value of corresponding instance of cevcSIMatchEncapPayloadTypes is used as service match criteria for the service instance. 'priorityCos' This bit set to '1' specifies that the value of corresponding instance of cevcSIMatchEncapPriorityCos is used as service match criteria for the service instance. 'dot1qNativeVlan' This bit set to '1' specifies that the IEEE 802.1q tag with native vlan is used as service match criteria for the service instance. 'dot1adNativeVlan' This bit set to '1' specifies that the IEEE 802.1ad tag with native vlan is used as service match criteria for the service instance. 'encapExact' This bit set to '1' specifies that a service frame is mapped to the service instance only if it matches exactly to the encapsulation specified by the service instance.")
cevc_si_match_encap_encapsulation = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('dot1qEthertype0x8100', 1), ('dot1qEthertype0x9100', 2), ('dot1qEthertype0x9200', 3), ('dot1qEthertype0x88A8', 4), ('dot1adEthertype0x88A8', 5), ('dot1ahEthertype0x88A8', 6)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchEncapEncapsulation.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchEncapEncapsulation.setDescription("This object specifies the encapsulation type used as service match criteria. The object also specifies the Ethertype for egress packets on the service instance. 'dot1qEthertype0x8100' The IEEE 801.1q encapsulation with ether type value 0x8100. 'dot1qEthertype0x9100' The IEEE 801.1q encapsulation with ether type value 0x9100. 'dot1qEthertype0x9200' The IEEE 801.1q encapsulation with ether type value 0x9200. 'dot1qEthertype0x88A8' The IEEE 801.1q encapsulation with ether type value 0x88A8. 'dot1adEthertype0x88A8' The IEEE 801.1ad encapsulation with ether type value 0x88A8. 'dot1ahEthertype0x88A8' The IEEE 801.1ah encapsulation with ether type value 0x88A8.")
cevc_si_match_encap_primary_cos = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 5), cisco_cos_list()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchEncapPrimaryCos.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchEncapPrimaryCos.setDescription("This object specifies the CoS values which the Service Instance uses as service match criteria. This object is valid only when 'primaryVlans' and 'primaryCos' bits are set to '1' in corresponding instance of the object cevcSIMatchEncapValid.")
cevc_si_match_encap_secondary_cos = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 6), cisco_cos_list()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchEncapSecondaryCos.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchEncapSecondaryCos.setDescription("This object specifies the CoS values which the Service Instance uses as service match criteria. This object is valid only when 'secondaryVlans' and 'secondaryCos' bits are set to '1' in corresponding instance of the object cevcSIMatchEncapValid.")
cevc_si_match_encap_payload_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('payloadType0x0800ip', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchEncapPayloadType.setStatus('deprecated')
if mibBuilder.loadTexts:
cevcSIMatchEncapPayloadType.setDescription("This object specifies the PayloadType(etype/protocol type) values that the service instance uses as a service match criteria. This object is required when the forwarding of layer-2 ethernet packet is done through the payloadType i.e IP etc. 'other' None of the following. 'payloadType0x0800ip' Payload type value for IP is 0x0800. This object is valid only when 'payloadType' bit is set to '1' in corresponding instance of the object cevcSIMatchEncapValid. This object is deprecated by cevcSIMatchEncapPayloadTypes.")
cevc_si_match_encap_payload_types = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 8), bits().clone(namedValues=named_values(('payloadTypeIPv4', 0), ('payloadTypeIPv6', 1), ('payloadTypePPPoEDiscovery', 2), ('payloadTypePPPoESession', 3), ('payloadTypePPPoEAll', 4)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchEncapPayloadTypes.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchEncapPayloadTypes.setDescription("This object specifies the etype/protocol type values that service instance uses as a service match criteria. This object is required when the forwarding of layer-2 ethernet packet is done through the payload ether type i.e IP etc. 'payloadTypeIPv4' Ethernet payload type value for IPv4 protocol. 'payloadTypeIPv6' Ethernet payload type value for IPv6 protocol. 'payloadTypePPPoEDiscovery' Ethernet payload type value for PPPoE discovery stage. 'payloadTypePPPoESession' Ethernet payload type value for PPPoE session stage. 'payloadTypePPPoEAll' All ethernet payload type values for PPPoE protocol. This object is valid only when 'payloadTypes' bit is set to '1' in corresponding instance of the object cevcSIMatchEncapValid. This object deprecates cevcSIMatchEncapPayloadType.")
cevc_si_match_encap_priority_cos = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 7, 1, 9), cisco_cos_list()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIMatchEncapPriorityCos.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchEncapPriorityCos.setDescription("This object specifies the priority CoS values which the service instance uses as service match criteria. This object is valid only when 'priorityCos' bit is set to '1' in corresponding instance of the object cevcSIMatchEncapValid.")
cevc_si_primary_vlan_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8))
if mibBuilder.loadTexts:
cevcSIPrimaryVlanTable.setStatus('current')
if mibBuilder.loadTexts:
cevcSIPrimaryVlanTable.setDescription('This table contains the primary VLAN ID list for each Service Instance. This table has an expansion dependent relationship on the cevcSIMatchEncapTable, containing zero or more rows for each encapsulation match criteria.')
cevc_si_primary_vlan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcSIIndex'), (0, 'CISCO-EVC-MIB', 'cevcSIMatchCriteriaIndex'), (0, 'CISCO-EVC-MIB', 'cevcSIPrimaryVlanBeginningVlan'))
if mibBuilder.loadTexts:
cevcSIPrimaryVlanEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcSIPrimaryVlanEntry.setDescription("This entry specifies a single VLAN or a range of VLANs contained in the primary VLAN list that's part of the encapsulation match criteria. Entries in this table may be created and deleted via the cevcSIPrimaryVlanRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of the cevcSIPrimaryVlanRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of the cevcSIPrimaryVlanRowStatus column to 'destroy'.")
cevc_si_primary_vlan_beginning_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8, 1, 1), vlan_id())
if mibBuilder.loadTexts:
cevcSIPrimaryVlanBeginningVlan.setStatus('current')
if mibBuilder.loadTexts:
cevcSIPrimaryVlanBeginningVlan.setDescription("If cevcSIPrimaryVlanEndingVlan is '0', then this object indicates a single VLAN in the list. If cevcSIPrimaryVlanEndingVlan is not '0', then this object indicates the first VLAN in a range of VLANs.")
cevc_si_primary_vlan_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIPrimaryVlanRowStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcSIPrimaryVlanRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSIPrimaryVlanTable. This column cannot be set to 'active' until all objects have been assigned valid values. Writable objects in this table can be modified while the value of the cevcSIPrimaryVlanRowStatus column is 'active'.")
cevc_si_primary_vlan_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8, 1, 3), storage_type().clone('volatile')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIPrimaryVlanStorageType.setStatus('current')
if mibBuilder.loadTexts:
cevcSIPrimaryVlanStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevc_si_primary_vlan_ending_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 8, 1, 4), vlan_id_or_none()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIPrimaryVlanEndingVlan.setStatus('current')
if mibBuilder.loadTexts:
cevcSIPrimaryVlanEndingVlan.setDescription("This object indicates the last VLAN in a range of VLANs. If the row does not describe a range, then the value of this column must be '0'.")
cevc_si_secondary_vlan_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9))
if mibBuilder.loadTexts:
cevcSISecondaryVlanTable.setStatus('current')
if mibBuilder.loadTexts:
cevcSISecondaryVlanTable.setDescription('This table contains the seconadary VLAN ID list for each service instance. This table has an expansion dependent relationship on the cevcSIMatchEncapTable, containing zero or more rows for each encapsulation match criteria.')
cevc_si_secondary_vlan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcSIIndex'), (0, 'CISCO-EVC-MIB', 'cevcSIMatchCriteriaIndex'), (0, 'CISCO-EVC-MIB', 'cevcSISecondaryVlanBeginningVlan'))
if mibBuilder.loadTexts:
cevcSISecondaryVlanEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcSISecondaryVlanEntry.setDescription("This entry specifies a single VLAN or a range of VLANs contained in the secondary VLAN list that's part of the encapsulation match criteria. Entries in this table may be created and deleted via the cevcSISecondaryVlanRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of the cevcSISecondaryVlanRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of the cevcSISecondaryVlanRowStatus column to 'destroy'.")
cevc_si_secondary_vlan_beginning_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9, 1, 1), vlan_id())
if mibBuilder.loadTexts:
cevcSISecondaryVlanBeginningVlan.setStatus('current')
if mibBuilder.loadTexts:
cevcSISecondaryVlanBeginningVlan.setDescription("If cevcSISecondaryVlanEndingVlan is '0', then this object indicates a single VLAN in the list. If cevcSISecondaryVlanEndingVlan is not '0', then this object indicates the first VLAN in a range of VLANs.")
cevc_si_secondary_vlan_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSISecondaryVlanRowStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcSISecondaryVlanRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSISecondaryVlanTable. This column can not be set to 'active' until all objects have been assigned valid values. Writable objects in this table can be modified while the value of cevcSISecondaryVlanRowStatus column is 'active'.")
cevc_si_secondary_vlan_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9, 1, 3), storage_type().clone('volatile')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSISecondaryVlanStorageType.setStatus('current')
if mibBuilder.loadTexts:
cevcSISecondaryVlanStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevc_si_secondary_vlan_ending_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 9, 1, 4), vlan_id_or_none()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSISecondaryVlanEndingVlan.setStatus('current')
if mibBuilder.loadTexts:
cevcSISecondaryVlanEndingVlan.setDescription("This object indicates the last VLAN in a range of VLANs. If the row does not describe a range, then the value of this column must be '0'.")
cevc_si_forward_bd_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10))
if mibBuilder.loadTexts:
cevcSIForwardBdTable.setStatus('current')
if mibBuilder.loadTexts:
cevcSIForwardBdTable.setDescription("This table contains the forwarding bridge domain information for each service instance. This table has a sparse dependent relationship on the cevcSITable, containing a row for each service instance having a cevcSIForwardingType of 'bridgeDomain'.")
cevc_si_forward_bd_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1)).setIndexNames((0, 'CISCO-EVC-MIB', 'cevcSIIndex'))
if mibBuilder.loadTexts:
cevcSIForwardBdEntry.setStatus('current')
if mibBuilder.loadTexts:
cevcSIForwardBdEntry.setDescription("This entry represents an bridged domain used to forward service frames by the service instance. Entries in this table may be created and deleted via the cevcSIForwardBdRowStatus object or the management console on the system. Using SNMP, rows are created by a SET request setting the value of the cevcSIForwardBdRowStatus column to 'createAndGo' or 'createAndWait'. Rows are deleted by a SET request setting the value of the cevcSIForwardBdRowStatus column to 'destroy'.")
cevc_si_forward_bd_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 1), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIForwardBdRowStatus.setStatus('current')
if mibBuilder.loadTexts:
cevcSIForwardBdRowStatus.setDescription("This object enables a SNMP peer to create, modify, and delete rows in the cevcSIForwardBdTable. This column can not be set to 'active' until all objects have been assigned valid values. Writable objects in this table can be modified while the value of the cevcSIForwardBdRowStatus column is 'active'.")
cevc_si_forward_bd_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 2), storage_type().clone('volatile')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIForwardBdStorageType.setStatus('current')
if mibBuilder.loadTexts:
cevcSIForwardBdStorageType.setDescription("This object specifies how the SNMP entity stores the data contained by the corresponding conceptual row. This object can be set to either 'volatile' or 'nonVolatile'. Other values are not applicable for this conceptual row and are not supported.")
cevc_si_forward_bd_number = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 3), unsigned32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIForwardBdNumber.setStatus('deprecated')
if mibBuilder.loadTexts:
cevcSIForwardBdNumber.setDescription('The bridge domain identifier that is associated with the service instance. A bridge domain refers to a layer 2 broadcast domain spanning a set of physical or virtual ports. Frames are switched Multicast and unknown destination unicast frames are flooded within the confines of the bridge domain.')
cevc_si_forward_bd_number_base = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 4096, 8192, 12288, 16384))).clone(namedValues=named_values(('bdNumBase0', 0), ('bdNumBase4096', 4096), ('bdNumBase8192', 8192), ('bdNumBase12288', 12288), ('bdNumBase16384', 16384)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIForwardBdNumberBase.setStatus('current')
if mibBuilder.loadTexts:
cevcSIForwardBdNumberBase.setDescription('This object specifies the base of bridge domain. The bridge domain range is 1~16k, cevcSIForwardBdNumberBase is to track what is the base of each 4k bitmap. In this way we can specify all the 16k bridge domains using four 1k bitmaps and having the base which describes that is the base of each 4k bitmap. The four 1k bitmaps, cevcSIForwardBdNumber1kBitmap represents 0~1023, cevcSIForwardBdNumber2kBitmap represents 1024~2047, cevcSIForwardBdNumber3kBitmap represents 2048~3071, cevcSIForwardBdNumber4kBitmap represents 3072~4095 And cevcSIForwardBdNumberBase is one of 0, 4096, 8192, 12288, 16384. SNMP Administrator can use cevcSIForwardBdNumberBase + (position of the set bit in four 1k bitmaps) to get BD number of a service instance.')
cevc_si_forward_bd_number1k_bitmap = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIForwardBdNumber1kBitmap.setStatus('current')
if mibBuilder.loadTexts:
cevcSIForwardBdNumber1kBitmap.setDescription("This object specifies a string of octets containing one bit per Bridge domain per service instance(generally we have one bridge domain per nontrunk service instance but can have more than one bridge configured with a trunk service instance). The first octet corresponds to Bridge domains with Bridge domain ID values of 0 through 7; the second octet to Bridge domains 8 through 15; etc. Thus, this 128-octet bitmap represents bridge domain ID value 0~1023. For each Bridge domain configured, the bit corresponding to that bridge domain is set to '1'. SNMP Administrator uses cevcSIForwardBdNumberBase + (position of the set bit in bitmap)to calculate BD number of a service instance. Note that if the length of this string is less than 128 octets, any 'missing' octets are assumed to contain the value zero. An NMS may omit any zero-valued octets from the end of this string in order to reduce SetPDU size, and the agent may also omit zero-valued trailing octets, to reduce the size of GetResponse PDUs.")
cevc_si_forward_bd_number2k_bitmap = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIForwardBdNumber2kBitmap.setStatus('current')
if mibBuilder.loadTexts:
cevcSIForwardBdNumber2kBitmap.setDescription("This object specifies a string of octets containing one bit per Bridge domain per service instance(generally we have one bridge domain per nontrunk service instance but can have more than one bridge configured with a trunk service instance). The first octet corresponds to Bridge domains with Bridge domain ID values of 1024 through 1031; the second octet to Bridge domains 1032 through 1039; etc. Thus, this 128-octet bitmap represents bridge domain ID value 1024~2047. For each Bridge domain configured, the bit corresponding to that bridge domain is set to 1. SNMP Administrator uses cevcSIForwardBdNumberBase + (position of the set bit in bitmap)to calculate BD number of a service instance. Note that if the length of this string is less than 128 octets, any 'missing' octets are assumed to contain the value zero. An NMS may omit any zero-valued octets from the end of this string in order to reduce SetPDU size, and the agent may also omit zero-valued trailing octets, to reduce the size of GetResponse PDUs.")
cevc_si_forward_bd_number3k_bitmap = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIForwardBdNumber3kBitmap.setStatus('current')
if mibBuilder.loadTexts:
cevcSIForwardBdNumber3kBitmap.setDescription("This object specifies a string of octets containing one bit per Bridge domain per service instance(generally we have one bridge domain per non-trunk service instance but can have more than one bridge configured with a trunk service instance). The first octet corresponds to Bridge domains with Bridgedomain ID values of 2048 through 2055; the second octet to Bridge domains 2056 through 2063; etc. Thus, this 128-octet bitmap represents bridge domain ID value 2048~3071. For each Bridge domain configured, the bit corresponding to that bridge domain is set to 1. SNMP Administrator uses cevcSIForwardBdNumberBase + (position of the set bit in bitmap)to calculate BD number of a service instance. Note that if the length of this string is less than 128 octets, any 'missing' octets are assumed to contain the value zero. An NMS may omit any zero-valued octets from the end of this string in order to reduce SetPDU size, and the agent may also omit zero-valued trailing octets, to reduce the size of GetResponse PDUs.")
cevc_si_forward_bd_number4k_bitmap = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 4, 10, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cevcSIForwardBdNumber4kBitmap.setStatus('current')
if mibBuilder.loadTexts:
cevcSIForwardBdNumber4kBitmap.setDescription("This object specifies a string of octets containing one bit per Bridge domain per service instance(generally we have one bridge domain per non-trunk service instance but can have more than one bridge configured with a trunk service instance). The first octet corresponds to Bridge domains with Bridgedomain ID values of 3078 through 3085; the second octet to Bridge domains 3086 through 3093; etc. Thus, this 128-octet bitmap represents bridge domain ID value 3072~4095. For each Bridge domain configured, the bit corresponding to that bridge domain is set to 1. SNMP Administrator uses cevcSIForwardBdNumberBase + (position of the set bit in bitmap)to calculate BD number of a service instance. Note that if the length of this string is less than 128 octets, any 'missing' octets are assumed to contain the value zero. An NMS may omit any zero-valued octets from the end of this string in order to reduce SetPDU size, and the agent may also omit zero-valued trailing octets, to reduce the size of GetResponse PDUs.")
cevc_evc_notify_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 613, 1, 5, 1), bits().clone(namedValues=named_values(('status', 0), ('creation', 1), ('deletion', 2), ('macSecurityViolation', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cevcEvcNotifyEnabled.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcNotifyEnabled.setDescription("This object specifies the system generation of notification, including: 'status' This bit set to '1' specifies the system generation of cevcEvcStatusChangedNotification. 'creation' This bit set to '1' specifies the system generation of cevcEvcCreationNotification. 'deletion' This bit set to '1' specifices the system generation of cevcEvcDeletionNotification. 'macSecurityViolation' This bit set to '1' specifies the system generation of cevcMacSecurityViolation.")
cisco_evc_notification_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 0, 0))
cevc_evc_status_changed_notification = notification_type((1, 3, 6, 1, 4, 1, 9, 9, 613, 0, 0, 1)).setObjects(('CISCO-EVC-MIB', 'cevcEvcOperStatus'), ('CISCO-EVC-MIB', 'cevcEvcCfgUnis'), ('CISCO-EVC-MIB', 'cevcEvcActiveUnis'))
if mibBuilder.loadTexts:
cevcEvcStatusChangedNotification.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcStatusChangedNotification.setDescription("A device generates this notification when an EVC's operational status changes, or the number of active UNIs associated with the EVC (cevcNumActiveUnis) changes.")
cevc_evc_creation_notification = notification_type((1, 3, 6, 1, 4, 1, 9, 9, 613, 0, 0, 2)).setObjects(('CISCO-EVC-MIB', 'cevcEvcOperStatus'))
if mibBuilder.loadTexts:
cevcEvcCreationNotification.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcCreationNotification.setDescription('A device generates this notification upon the creation of an EVC.')
cevc_evc_deletion_notification = notification_type((1, 3, 6, 1, 4, 1, 9, 9, 613, 0, 0, 3)).setObjects(('CISCO-EVC-MIB', 'cevcEvcOperStatus'))
if mibBuilder.loadTexts:
cevcEvcDeletionNotification.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcDeletionNotification.setDescription('A device generates this notification upon the deletion of an EVC.')
cevc_mac_security_violation_notification = notification_type((1, 3, 6, 1, 4, 1, 9, 9, 613, 0, 0, 4)).setObjects(('IF-MIB', 'ifIndex'), ('CISCO-EVC-MIB', 'cevcSIForwardBdNumberBase'), ('CISCO-EVC-MIB', 'cevcSIForwardBdNumber1kBitmap'), ('CISCO-EVC-MIB', 'cevcSIForwardBdNumber2kBitmap'), ('CISCO-EVC-MIB', 'cevcSIForwardBdNumber3kBitmap'), ('CISCO-EVC-MIB', 'cevcSIForwardBdNumber4kBitmap'), ('CISCO-EVC-MIB', 'cevcSIID'), ('CISCO-EVC-MIB', 'cevcMacAddress'), ('CISCO-EVC-MIB', 'cevcMaxMacConfigLimit'), ('CISCO-EVC-MIB', 'cevcViolationCause'))
if mibBuilder.loadTexts:
cevcMacSecurityViolationNotification.setStatus('current')
if mibBuilder.loadTexts:
cevcMacSecurityViolationNotification.setDescription("A SNMP entity generates this notification in the following cases: When the system MAC Address limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedSystemLimit' value. When the Bridge domain limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedBdLimit' value. When the Service Instance limit is exceeded, the cevcMacSecurityViolationCauseType will contain 'exceedSILimit' value. If the MAC address is present in the Black list then cevcMacSecurityViolationCauseType will contain 'blackListDeny' value. Description of all the varbinds for this Notification is as follows: ifIndex indicates the interface index which identifies the interface that the service instance is attached. cevcSIForwardBdNumberBase indicates the base of bridge domain. The bridge domain range is 1~16k, this object is to track the base of each 4k bitmap. cevcSIForwardBdNumber1kBitmap indicates a string of octets containing one bit per Bridge domain per service instance. This 128-octet bitmap represents bridge domain ID values 0~1023. cevcSIForwardBdNumber2kBitmap indicates a string of octets containing one bit per Bridge domain per service instance. This 128-octet bitmap represents bridge domain ID values 1024~2047. cevcSIForwardBdNumber3kBitmap indicates a string of octets containing one bit per Bridge domain per service instance. This 128-octet bitmap represents bridge domain ID values 2048~3071. cevcSIForwardBdNumber4kBitmap indicates a string of octets containing one bit per Bridge domain per service instance. This 128-octet bitmap represents bridge domain ID values 3072~4095. cevcSIID indicates the service instance ID for the Mac security violation notification. cevcMacAddress indicates the Mac address which has violated the Mac security rules. cevcMaxMacConfigLimit indicates the maximum Mac configuration limit. This is also sent as a part of Mac security violation notification. cevcViolationCause indicates the Mac security violation cause.")
cisco_evc_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 1))
cisco_evc_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2))
cisco_evc_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 1, 1)).setObjects(('CISCO-EVC-MIB', 'cevcSystemGroup'), ('CISCO-EVC-MIB', 'cevcPortGroup'), ('CISCO-EVC-MIB', 'cevcEvcGroup'), ('CISCO-EVC-MIB', 'cevcSIGroup'), ('CISCO-EVC-MIB', 'cevcEvcNotificationConfigGroup'), ('CISCO-EVC-MIB', 'cevcEvcNotificationGroup'), ('CISCO-EVC-MIB', 'cevcSICosMatchCriteriaGroup'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteGroup'), ('CISCO-EVC-MIB', 'cevcSIMatchCriteriaGroup'), ('CISCO-EVC-MIB', 'cevcSIForwardGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_evc_mib_compliance = ciscoEvcMIBCompliance.setStatus('deprecated')
if mibBuilder.loadTexts:
ciscoEvcMIBCompliance.setDescription('The new compliance statement for entities which implement the CISCO-EVC-MIB.')
cisco_evc_mib_compliance_rev1 = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 1, 2)).setObjects(('CISCO-EVC-MIB', 'cevcSystemGroup'), ('CISCO-EVC-MIB', 'cevcPortGroup'), ('CISCO-EVC-MIB', 'cevcEvcGroup'), ('CISCO-EVC-MIB', 'cevcSIGroup'), ('CISCO-EVC-MIB', 'cevcEvcNotificationConfigGroup'), ('CISCO-EVC-MIB', 'cevcEvcNotificationGroup'), ('CISCO-EVC-MIB', 'cevcSICosMatchCriteriaGroup'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteGroup'), ('CISCO-EVC-MIB', 'cevcSIMatchCriteriaGroupRev1'), ('CISCO-EVC-MIB', 'cevcSIForwardGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_evc_mib_compliance_rev1 = ciscoEvcMIBComplianceRev1.setStatus('deprecated')
if mibBuilder.loadTexts:
ciscoEvcMIBComplianceRev1.setDescription('The compliance statement for entities which implement the CISCO-EVC-MIB. This compliance module deprecates ciscoEvcMIBCompliance.')
cisco_evc_mib_compliance_rev2 = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 1, 3)).setObjects(('CISCO-EVC-MIB', 'cevcSystemGroup'), ('CISCO-EVC-MIB', 'cevcPortGroup'), ('CISCO-EVC-MIB', 'cevcEvcGroup'), ('CISCO-EVC-MIB', 'cevcSIGroupRev1'), ('CISCO-EVC-MIB', 'cevcEvcNotificationConfigGroup'), ('CISCO-EVC-MIB', 'cevcEvcNotificationGroupRev1'), ('CISCO-EVC-MIB', 'cevcSICosMatchCriteriaGroup'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteGroup'), ('CISCO-EVC-MIB', 'cevcSIMatchCriteriaGroupRev1'), ('CISCO-EVC-MIB', 'cevcSIForwardGroupRev1'), ('CISCO-EVC-MIB', 'cevcMacSecurityViolationGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_evc_mib_compliance_rev2 = ciscoEvcMIBComplianceRev2.setStatus('current')
if mibBuilder.loadTexts:
ciscoEvcMIBComplianceRev2.setDescription('The compliance statement for entities which implement the CISCO-EVC-MIB. This compliance module deprecates ciscoEvcMIBComplianceRev1.')
cevc_system_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 1)).setObjects(('CISCO-EVC-MIB', 'cevcMaxNumEvcs'), ('CISCO-EVC-MIB', 'cevcNumCfgEvcs'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_system_group = cevcSystemGroup.setStatus('current')
if mibBuilder.loadTexts:
cevcSystemGroup.setDescription('A collection of objects providing system configuration of EVCs.')
cevc_port_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 2)).setObjects(('CISCO-EVC-MIB', 'cevcPortMode'), ('CISCO-EVC-MIB', 'cevcPortMaxNumEVCs'), ('CISCO-EVC-MIB', 'cevcPortMaxNumServiceInstances'), ('CISCO-EVC-MIB', 'cevcPortL2ControlProtocolAction'), ('CISCO-EVC-MIB', 'cevcUniIdentifier'), ('CISCO-EVC-MIB', 'cevcUniPortType'), ('CISCO-EVC-MIB', 'cevcUniServiceAttributes'), ('CISCO-EVC-MIB', 'cevcUniCEVlanEvcEndingVlan'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_port_group = cevcPortGroup.setStatus('current')
if mibBuilder.loadTexts:
cevcPortGroup.setDescription('A collection of objects providing configuration for ports in an EVC.')
cevc_evc_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 3)).setObjects(('CISCO-EVC-MIB', 'cevcEvcIdentifier'), ('CISCO-EVC-MIB', 'cevcEvcType'), ('CISCO-EVC-MIB', 'cevcEvcOperStatus'), ('CISCO-EVC-MIB', 'cevcEvcCfgUnis'), ('CISCO-EVC-MIB', 'cevcEvcActiveUnis'), ('CISCO-EVC-MIB', 'cevcEvcStorageType'), ('CISCO-EVC-MIB', 'cevcEvcRowStatus'), ('CISCO-EVC-MIB', 'cevcEvcUniId'), ('CISCO-EVC-MIB', 'cevcEvcUniOperStatus'), ('CISCO-EVC-MIB', 'cevcEvcLocalUniIfIndex'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_evc_group = cevcEvcGroup.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcGroup.setDescription('A collection of objects providing configuration and status information for EVCs.')
cevc_si_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 4)).setObjects(('CISCO-EVC-MIB', 'cevcSIName'), ('CISCO-EVC-MIB', 'cevcSITargetType'), ('CISCO-EVC-MIB', 'cevcSITarget'), ('CISCO-EVC-MIB', 'cevcSIEvcIndex'), ('CISCO-EVC-MIB', 'cevcSIRowStatus'), ('CISCO-EVC-MIB', 'cevcSIStorageType'), ('CISCO-EVC-MIB', 'cevcSIAdminStatus'), ('CISCO-EVC-MIB', 'cevcSIOperStatus'), ('CISCO-EVC-MIB', 'cevcSIL2ControlProtocolAction'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteAction'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteEncapsulation'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteVlan1'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteVlan2'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteSymmetric'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteStorageType'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteRowStatus'), ('CISCO-EVC-MIB', 'cevcSIForwardingType'), ('CISCO-EVC-MIB', 'cevcSICEVlanRowStatus'), ('CISCO-EVC-MIB', 'cevcSICEVlanStorageType'), ('CISCO-EVC-MIB', 'cevcSICEVlanEndingVlan'), ('CISCO-EVC-MIB', 'cevcSIMatchStorageType'), ('CISCO-EVC-MIB', 'cevcSIMatchRowStatus'), ('CISCO-EVC-MIB', 'cevcSIMatchCriteriaType'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapRowStatus'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapStorageType'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapValid'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapEncapsulation'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanRowStatus'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanStorageType'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanEndingVlan'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_si_group = cevcSIGroup.setStatus('deprecated')
if mibBuilder.loadTexts:
cevcSIGroup.setDescription('A collection of objects providing configuration and match criteria for service instances. cevcSIGroup object is superseded by cevcSIGroupRev1.')
cevc_si_vlan_rewrite_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 5)).setObjects(('CISCO-EVC-MIB', 'cevcSIVlanRewriteAction'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteEncapsulation'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteVlan1'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteVlan2'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteSymmetric'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteStorageType'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_si_vlan_rewrite_group = cevcSIVlanRewriteGroup.setStatus('current')
if mibBuilder.loadTexts:
cevcSIVlanRewriteGroup.setDescription('A collection of objects which provides VLAN rewrite information for a service instance.')
cevc_si_cos_match_criteria_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 6)).setObjects(('CISCO-EVC-MIB', 'cevcSIMatchEncapPrimaryCos'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapSecondaryCos'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_si_cos_match_criteria_group = cevcSICosMatchCriteriaGroup.setStatus('current')
if mibBuilder.loadTexts:
cevcSICosMatchCriteriaGroup.setDescription('A collection of objects which provides CoS match criteria for a service instance.')
cevc_si_match_criteria_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 7)).setObjects(('CISCO-EVC-MIB', 'cevcSIMatchRowStatus'), ('CISCO-EVC-MIB', 'cevcSIMatchStorageType'), ('CISCO-EVC-MIB', 'cevcSIMatchCriteriaType'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapRowStatus'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapStorageType'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapValid'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapEncapsulation'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapPrimaryCos'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapSecondaryCos'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapPayloadType'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanRowStatus'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanStorageType'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanEndingVlan'), ('CISCO-EVC-MIB', 'cevcSISecondaryVlanRowStatus'), ('CISCO-EVC-MIB', 'cevcSISecondaryVlanStorageType'), ('CISCO-EVC-MIB', 'cevcSISecondaryVlanEndingVlan'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_si_match_criteria_group = cevcSIMatchCriteriaGroup.setStatus('deprecated')
if mibBuilder.loadTexts:
cevcSIMatchCriteriaGroup.setDescription('A collection of objects providing match criteria information for service instances. cevcSIMatchCriteriaGroup object is superseded by cevcSIMatchCriteriaGroupRev1.')
cevc_si_forward_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 8)).setObjects(('CISCO-EVC-MIB', 'cevcSIForwardingType'), ('CISCO-EVC-MIB', 'cevcSIForwardBdRowStatus'), ('CISCO-EVC-MIB', 'cevcSIForwardBdStorageType'), ('CISCO-EVC-MIB', 'cevcSIForwardBdNumber'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_si_forward_group = cevcSIForwardGroup.setStatus('deprecated')
if mibBuilder.loadTexts:
cevcSIForwardGroup.setDescription('A collection of objects providing service frame forwarding information for service instances. cevcSIForwardGroup object is superseded by cevcSIForwardGroupRev1.')
cevc_evc_notification_config_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 9)).setObjects(('CISCO-EVC-MIB', 'cevcEvcNotifyEnabled'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_evc_notification_config_group = cevcEvcNotificationConfigGroup.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcNotificationConfigGroup.setDescription('A collection of objects for configuring notification of this MIB.')
cevc_evc_notification_group = notification_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 10)).setObjects(('CISCO-EVC-MIB', 'cevcEvcStatusChangedNotification'), ('CISCO-EVC-MIB', 'cevcEvcCreationNotification'), ('CISCO-EVC-MIB', 'cevcEvcDeletionNotification'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_evc_notification_group = cevcEvcNotificationGroup.setStatus('deprecated')
if mibBuilder.loadTexts:
cevcEvcNotificationGroup.setDescription('A collection of notifications that this MIB module is required to implement. cevcEvcNotificationGroup object is superseded by cevcEvcNotificationGroupRev1.')
cevc_si_match_criteria_group_rev1 = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 11)).setObjects(('CISCO-EVC-MIB', 'cevcSIMatchRowStatus'), ('CISCO-EVC-MIB', 'cevcSIMatchStorageType'), ('CISCO-EVC-MIB', 'cevcSIMatchCriteriaType'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapRowStatus'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapStorageType'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapValid'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapEncapsulation'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapPrimaryCos'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapSecondaryCos'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapPayloadTypes'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapPriorityCos'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanRowStatus'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanStorageType'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanEndingVlan'), ('CISCO-EVC-MIB', 'cevcSISecondaryVlanRowStatus'), ('CISCO-EVC-MIB', 'cevcSISecondaryVlanStorageType'), ('CISCO-EVC-MIB', 'cevcSISecondaryVlanEndingVlan'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_si_match_criteria_group_rev1 = cevcSIMatchCriteriaGroupRev1.setStatus('current')
if mibBuilder.loadTexts:
cevcSIMatchCriteriaGroupRev1.setDescription('A collection of objects providing match criteria information for service instances. This group deprecates the old group cevcSIMatchCriteriaGroup.')
cevc_evc_notification_group_rev1 = notification_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 12)).setObjects(('CISCO-EVC-MIB', 'cevcEvcStatusChangedNotification'), ('CISCO-EVC-MIB', 'cevcEvcCreationNotification'), ('CISCO-EVC-MIB', 'cevcEvcDeletionNotification'), ('CISCO-EVC-MIB', 'cevcMacSecurityViolationNotification'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_evc_notification_group_rev1 = cevcEvcNotificationGroupRev1.setStatus('current')
if mibBuilder.loadTexts:
cevcEvcNotificationGroupRev1.setDescription('A collection of notifications that this MIB module is required to implement. This module deprecates the cevcNotificationGroup')
cevc_si_group_rev1 = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 13)).setObjects(('CISCO-EVC-MIB', 'cevcSIName'), ('CISCO-EVC-MIB', 'cevcSITargetType'), ('CISCO-EVC-MIB', 'cevcSITarget'), ('CISCO-EVC-MIB', 'cevcSIEvcIndex'), ('CISCO-EVC-MIB', 'cevcSIRowStatus'), ('CISCO-EVC-MIB', 'cevcSIStorageType'), ('CISCO-EVC-MIB', 'cevcSIAdminStatus'), ('CISCO-EVC-MIB', 'cevcSIOperStatus'), ('CISCO-EVC-MIB', 'cevcPortL2ControlProtocolAction'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteAction'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteEncapsulation'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteVlan1'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteVlan2'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteSymmetric'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteRowStatus'), ('CISCO-EVC-MIB', 'cevcSIVlanRewriteStorageType'), ('CISCO-EVC-MIB', 'cevcSIForwardingType'), ('CISCO-EVC-MIB', 'cevcSICEVlanRowStatus'), ('CISCO-EVC-MIB', 'cevcSICEVlanStorageType'), ('CISCO-EVC-MIB', 'cevcSICEVlanEndingVlan'), ('CISCO-EVC-MIB', 'cevcSIMatchStorageType'), ('CISCO-EVC-MIB', 'cevcSIMatchCriteriaType'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapRowStatus'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapStorageType'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapValid'), ('CISCO-EVC-MIB', 'cevcSIMatchEncapEncapsulation'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanRowStatus'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanStorageType'), ('CISCO-EVC-MIB', 'cevcSIPrimaryVlanEndingVlan'), ('CISCO-EVC-MIB', 'cevcSIMatchRowStatus'), ('CISCO-EVC-MIB', 'cevcSICreationType'), ('CISCO-EVC-MIB', 'cevcSIType'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_si_group_rev1 = cevcSIGroupRev1.setStatus('current')
if mibBuilder.loadTexts:
cevcSIGroupRev1.setDescription('A collection of objects providing configuration and match criteria for service instances. This module deprecates the cevcSIGroup')
cevc_si_forward_group_rev1 = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 14)).setObjects(('CISCO-EVC-MIB', 'cevcSIForwardingType'), ('CISCO-EVC-MIB', 'cevcSIForwardBdRowStatus'), ('CISCO-EVC-MIB', 'cevcSIForwardBdStorageType'), ('CISCO-EVC-MIB', 'cevcSIForwardBdNumberBase'), ('CISCO-EVC-MIB', 'cevcSIForwardBdNumber1kBitmap'), ('CISCO-EVC-MIB', 'cevcSIForwardBdNumber2kBitmap'), ('CISCO-EVC-MIB', 'cevcSIForwardBdNumber3kBitmap'), ('CISCO-EVC-MIB', 'cevcSIForwardBdNumber4kBitmap'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_si_forward_group_rev1 = cevcSIForwardGroupRev1.setStatus('current')
if mibBuilder.loadTexts:
cevcSIForwardGroupRev1.setDescription('A collection of objects providing service frame forwarding information for service instances. This module deprecates cevcSIForwardGroup')
cevc_mac_security_violation_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 613, 2, 2, 15)).setObjects(('CISCO-EVC-MIB', 'cevcMacAddress'), ('CISCO-EVC-MIB', 'cevcMaxMacConfigLimit'), ('CISCO-EVC-MIB', 'cevcSIID'), ('CISCO-EVC-MIB', 'cevcViolationCause'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cevc_mac_security_violation_group = cevcMacSecurityViolationGroup.setStatus('current')
if mibBuilder.loadTexts:
cevcMacSecurityViolationGroup.setDescription('A collection of objects providing the maximum configured MAC limit, the MAC address, service instance ID and Violation cause for Mac Security Violation Information.')
mibBuilder.exportSymbols('CISCO-EVC-MIB', cevcEvcStorageType=cevcEvcStorageType, cevcSIType=cevcSIType, cevcEvc=cevcEvc, cevcEvcUniOperStatus=cevcEvcUniOperStatus, ciscoEvcMIBCompliance=ciscoEvcMIBCompliance, cevcEvcUniTable=cevcEvcUniTable, cevcSystemGroup=cevcSystemGroup, cevcNumCfgEvcs=cevcNumCfgEvcs, cevcSICEVlanRowStatus=cevcSICEVlanRowStatus, cevcSIName=cevcSIName, cevcSICreationType=cevcSICreationType, cevcSIForwardBdNumberBase=cevcSIForwardBdNumberBase, cevcSIMatchEncapPayloadTypes=cevcSIMatchEncapPayloadTypes, cevcPortTable=cevcPortTable, ServiceInstanceTarget=ServiceInstanceTarget, cevcSIMatchEncapEntry=cevcSIMatchEncapEntry, PYSNMP_MODULE_ID=ciscoEvcMIB, cevcEvcCfgUnis=cevcEvcCfgUnis, cevcSIForwardGroupRev1=cevcSIForwardGroupRev1, cevcSIForwardBdEntry=cevcSIForwardBdEntry, cevcSIEvcIndex=cevcSIEvcIndex, cevcSIForwardBdNumber3kBitmap=cevcSIForwardBdNumber3kBitmap, cevcSIMatchCriteriaIndex=cevcSIMatchCriteriaIndex, cevcSIGroup=cevcSIGroup, cevcSIForwardBdTable=cevcSIForwardBdTable, cevcEvcUniId=cevcEvcUniId, cevcEvcStatusChangedNotification=cevcEvcStatusChangedNotification, cevcViolationCause=cevcViolationCause, cevcSIPrimaryVlanEntry=cevcSIPrimaryVlanEntry, cevcEvcGroup=cevcEvcGroup, cevcSIIndex=cevcSIIndex, cevcSIVlanRewriteVlan1=cevcSIVlanRewriteVlan1, cevcSITable=cevcSITable, cevcSISecondaryVlanStorageType=cevcSISecondaryVlanStorageType, cevcUniPortType=cevcUniPortType, cevcEvcStateTable=cevcEvcStateTable, cevcSIVlanRewriteSymmetric=cevcSIVlanRewriteSymmetric, cevcSIMatchEncapRowStatus=cevcSIMatchEncapRowStatus, cevcMacSecurityViolationNotification=cevcMacSecurityViolationNotification, cevcEvcNotificationGroupRev1=cevcEvcNotificationGroupRev1, ciscoEvcMIB=ciscoEvcMIB, ciscoEvcMIBComplianceRev1=ciscoEvcMIBComplianceRev1, cevcUniTable=cevcUniTable, cevcUniCEVlanEvcTable=cevcUniCEVlanEvcTable, cevcEvcOperStatus=cevcEvcOperStatus, ciscoEvcMIBNotifications=ciscoEvcMIBNotifications, ciscoEvcMIBComplianceRev2=ciscoEvcMIBComplianceRev2, cevcSIVlanRewriteEntry=cevcSIVlanRewriteEntry, cevcUniCEVlanEvcBeginningVlan=cevcUniCEVlanEvcBeginningVlan, cevcSIPrimaryVlanEndingVlan=cevcSIPrimaryVlanEndingVlan, cevcSIMatchEncapPayloadType=cevcSIMatchEncapPayloadType, cevcSISecondaryVlanRowStatus=cevcSISecondaryVlanRowStatus, cevcEvcStateEntry=cevcEvcStateEntry, cevcPortGroup=cevcPortGroup, cevcSIPrimaryVlanStorageType=cevcSIPrimaryVlanStorageType, cevcSIMatchCriteriaType=cevcSIMatchCriteriaType, cevcSICEVlanTable=cevcSICEVlanTable, cevcSITarget=cevcSITarget, cevcSIAdminStatus=cevcSIAdminStatus, cevcSIL2ControlProtocolType=cevcSIL2ControlProtocolType, ciscoEvcNotificationPrefix=ciscoEvcNotificationPrefix, CiscoEvcIndexOrZero=CiscoEvcIndexOrZero, cevcEvcIdentifier=cevcEvcIdentifier, cevcSIStateEntry=cevcSIStateEntry, cevcSIVlanRewriteTable=cevcSIVlanRewriteTable, cevcSIMatchCriteriaEntry=cevcSIMatchCriteriaEntry, cevcEvcRowStatus=cevcEvcRowStatus, cevcEvcNotificationGroup=cevcEvcNotificationGroup, cevcSIForwardBdNumber2kBitmap=cevcSIForwardBdNumber2kBitmap, cevcMaxNumEvcs=cevcMaxNumEvcs, cevcSIL2ControlProtocolTable=cevcSIL2ControlProtocolTable, cevcEvcUniIndex=cevcEvcUniIndex, cevcEvcIndex=cevcEvcIndex, cevcServiceInstance=cevcServiceInstance, cevcUniCEVlanEvcEntry=cevcUniCEVlanEvcEntry, cevcSICEVlanEntry=cevcSICEVlanEntry, cevcSIVlanRewriteDirection=cevcSIVlanRewriteDirection, cevcSIID=cevcSIID, cevcSIMatchEncapEncapsulation=cevcSIMatchEncapEncapsulation, ciscoEvcMIBObjects=ciscoEvcMIBObjects, ServiceInstanceTargetType=ServiceInstanceTargetType, cevcPort=cevcPort, cevcSIVlanRewriteVlan2=cevcSIVlanRewriteVlan2, cevcSIForwardBdNumber1kBitmap=cevcSIForwardBdNumber1kBitmap, cevcMaxMacConfigLimit=cevcMaxMacConfigLimit, cevcSIMatchEncapSecondaryCos=cevcSIMatchEncapSecondaryCos, cevcPortMaxNumServiceInstances=cevcPortMaxNumServiceInstances, cevcEvcNotifyEnabled=cevcEvcNotifyEnabled, cevcEvcType=cevcEvcType, cevcMacSecurityViolation=cevcMacSecurityViolation, cevcEvcDeletionNotification=cevcEvcDeletionNotification, ciscoEvcMIBGroups=ciscoEvcMIBGroups, cevcSIL2ControlProtocolAction=cevcSIL2ControlProtocolAction, cevcSIVlanRewriteGroup=cevcSIVlanRewriteGroup, cevcUniServiceAttributes=cevcUniServiceAttributes, cevcSIMatchRowStatus=cevcSIMatchRowStatus, cevcSICEVlanStorageType=cevcSICEVlanStorageType, cevcSICEVlanBeginningVlan=cevcSICEVlanBeginningVlan, cevcSIMatchEncapStorageType=cevcSIMatchEncapStorageType, cevcSIL2ControlProtocolEntry=cevcSIL2ControlProtocolEntry, cevcSIMatchCriteriaTable=cevcSIMatchCriteriaTable, cevcEvcActiveUnis=cevcEvcActiveUnis, cevcSIVlanRewriteAction=cevcSIVlanRewriteAction, ciscoEvcMIBCompliances=ciscoEvcMIBCompliances, cevcSICEVlanEndingVlan=cevcSICEVlanEndingVlan, cevcSIPrimaryVlanTable=cevcSIPrimaryVlanTable, cevcSIVlanRewriteEncapsulation=cevcSIVlanRewriteEncapsulation, cevcSIForwardingType=cevcSIForwardingType, cevcSISecondaryVlanBeginningVlan=cevcSISecondaryVlanBeginningVlan, cevcSystem=cevcSystem, ciscoEvcMIBConformance=ciscoEvcMIBConformance, cevcMacSecurityViolationGroup=cevcMacSecurityViolationGroup, cevcSIMatchEncapPriorityCos=cevcSIMatchEncapPriorityCos, cevcSIOperStatus=cevcSIOperStatus, CiscoEvcIndex=CiscoEvcIndex, cevcSIMatchCriteriaGroup=cevcSIMatchCriteriaGroup, cevcSITargetType=cevcSITargetType, cevcPortL2ControlProtocolTable=cevcPortL2ControlProtocolTable, cevcUniIdentifier=cevcUniIdentifier, cevcSISecondaryVlanTable=cevcSISecondaryVlanTable, cevcSIStorageType=cevcSIStorageType, CevcL2ControlProtocolType=CevcL2ControlProtocolType, cevcSIMatchCriteriaGroupRev1=cevcSIMatchCriteriaGroupRev1, cevcSICosMatchCriteriaGroup=cevcSICosMatchCriteriaGroup, cevcSIForwardGroup=cevcSIForwardGroup, cevcEvcUniEntry=cevcEvcUniEntry, cevcEvcNotificationConfigGroup=cevcEvcNotificationConfigGroup, cevcPortL2ControlProtocolAction=cevcPortL2ControlProtocolAction, CevcMacSecurityViolationCauseType=CevcMacSecurityViolationCauseType, cevcSIRowStatus=cevcSIRowStatus, cevcEvcEntry=cevcEvcEntry, cevcEvcCreationNotification=cevcEvcCreationNotification, cevcEvcLocalUniIfIndex=cevcEvcLocalUniIfIndex, cevcUniEntry=cevcUniEntry, cevcSIVlanRewriteRowStatus=cevcSIVlanRewriteRowStatus, cevcPortMaxNumEVCs=cevcPortMaxNumEVCs, cevcPortL2ControlProtocolType=cevcPortL2ControlProtocolType, cevcSISecondaryVlanEntry=cevcSISecondaryVlanEntry, cevcUniCEVlanEvcEndingVlan=cevcUniCEVlanEvcEndingVlan, cevcSIForwardBdRowStatus=cevcSIForwardBdRowStatus, cevcPortMode=cevcPortMode, cevcMacAddress=cevcMacAddress, cevcSIMatchEncapValid=cevcSIMatchEncapValid, cevcUniEvcIndex=cevcUniEvcIndex, cevcPortL2ControlProtocolEntry=cevcPortL2ControlProtocolEntry, cevcSIVlanRewriteStorageType=cevcSIVlanRewriteStorageType, cevcSIStateTable=cevcSIStateTable, cevcSIPrimaryVlanRowStatus=cevcSIPrimaryVlanRowStatus, cevcSIMatchEncapTable=cevcSIMatchEncapTable, cevcSISecondaryVlanEndingVlan=cevcSISecondaryVlanEndingVlan, cevcSIForwardBdNumber4kBitmap=cevcSIForwardBdNumber4kBitmap, cevcPortEntry=cevcPortEntry, cevcSIPrimaryVlanBeginningVlan=cevcSIPrimaryVlanBeginningVlan, ServiceInstanceInterface=ServiceInstanceInterface, cevcSIForwardBdNumber=cevcSIForwardBdNumber, cevcSIMatchEncapPrimaryCos=cevcSIMatchEncapPrimaryCos, cevcEvcTable=cevcEvcTable, cevcSIForwardBdStorageType=cevcSIForwardBdStorageType, cevcSIGroupRev1=cevcSIGroupRev1, cevcEvcNotificationConfig=cevcEvcNotificationConfig, cevcSIEntry=cevcSIEntry, cevcSIMatchStorageType=cevcSIMatchStorageType) |
"""
A module to show off dictionary comprehension.
Dictionary comprehension is similar to list comprehension
except that you put the generator expression inside of {}
instead of [].
Author: Walker M. White (wmw2)
Date: October 28, 2020
"""
GRADES = {'jrs1':80,'jrs2':92,'wmw2':50,'abc1':95}
def histogram(s):
"""
Returns a histogram (dictionary) of the # of letters
in string s.
The letters in s are keys, and the count of each letter
is the value. If the letter is not in s, then there is
NO KEY for it in the histogram.
Example: histogram('') returns {},
histogram('all') returns {'a':1,'l':2}
histogram('abracadabra') returns
{'a':5,'b':2,'c':1,'d':1,'r':2}
Parameter s: The string to analyze
Precondition: s is a string (possibly empty).
"""
# DICTIONARY COMPREHENSION
#return { x:s.count(x) for x in s }
# ACCUMULATOR PATTERN
result = {}
for x in s:
result[x] = s.count(x)
return result
def halve_grades(grades):
"""
Returns a copy of grades, cutting all of the exam grades in half.
Parameter grades: The dictionary of student grades
Precondition: grades has netids as keys, ints as values.
"""
# DICTIONARY COMPREHENSION
#return { k:grades[k]//2 for k in grades }
# ACCUMULATOR PATTERN
result = {}
for k in grades:
result[k] = grades[k]//2
return result
def extra_credit(grades,students,bonus):
"""
Returns a copy of grades with extra credit assigned
The dictionary returned adds a bonus to the grade of
every student whose netid is in the list students.
Parameter grades: The dictionary of student grades
Precondition: grades has netids as keys, ints as values.
Parameter netids: The list of students to give extra credit
Precondition: netids is a list of valid (string) netids
Parameter bonus: The extra credit bonus to award
Precondition: bonus is an int
"""
# DICTIONARY COMPREHENSION
#return { k:(grades[k]+bonus if k in students else grades[k]) for k in grades }
# ACCUMULATOR PATTERN
result = {}
for k in grades:
if k in students:
result[k] = grades[k]+bonus
else:
result[k] = grades[k]
return result
| """
A module to show off dictionary comprehension.
Dictionary comprehension is similar to list comprehension
except that you put the generator expression inside of {}
instead of [].
Author: Walker M. White (wmw2)
Date: October 28, 2020
"""
grades = {'jrs1': 80, 'jrs2': 92, 'wmw2': 50, 'abc1': 95}
def histogram(s):
"""
Returns a histogram (dictionary) of the # of letters
in string s.
The letters in s are keys, and the count of each letter
is the value. If the letter is not in s, then there is
NO KEY for it in the histogram.
Example: histogram('') returns {},
histogram('all') returns {'a':1,'l':2}
histogram('abracadabra') returns
{'a':5,'b':2,'c':1,'d':1,'r':2}
Parameter s: The string to analyze
Precondition: s is a string (possibly empty).
"""
result = {}
for x in s:
result[x] = s.count(x)
return result
def halve_grades(grades):
"""
Returns a copy of grades, cutting all of the exam grades in half.
Parameter grades: The dictionary of student grades
Precondition: grades has netids as keys, ints as values.
"""
result = {}
for k in grades:
result[k] = grades[k] // 2
return result
def extra_credit(grades, students, bonus):
"""
Returns a copy of grades with extra credit assigned
The dictionary returned adds a bonus to the grade of
every student whose netid is in the list students.
Parameter grades: The dictionary of student grades
Precondition: grades has netids as keys, ints as values.
Parameter netids: The list of students to give extra credit
Precondition: netids is a list of valid (string) netids
Parameter bonus: The extra credit bonus to award
Precondition: bonus is an int
"""
result = {}
for k in grades:
if k in students:
result[k] = grades[k] + bonus
else:
result[k] = grades[k]
return result |
""" Model a record """
class Record(object):
def __init__(self, gps_lat=None, gps_long=None, company_name=None, search_url=None,
xpath_pattern=None, company_email=None):
self.gps_lat = gps_lat
self.gps_long = gps_long
self.company_name = company_name
self.search_url = search_url
self.xpath_pattern = xpath_pattern
self.company_email = company_email
self.validate()
def validate(self):
# basic check
if not self.gps_lat.isdecimal():
self.gps_lat = 0.0
else:
self.gps_lat = float(self.gps_lat)
if not self.gps_long.isdecimal():
self.gps_long = 0.0
else:
self.gps_long = float(self.gps_long)
# append /text() to xpath so we get text values
if not self.xpath_pattern.endswith("text()"):
self.xpath_pattern += "/text()"
| """ Model a record """
class Record(object):
def __init__(self, gps_lat=None, gps_long=None, company_name=None, search_url=None, xpath_pattern=None, company_email=None):
self.gps_lat = gps_lat
self.gps_long = gps_long
self.company_name = company_name
self.search_url = search_url
self.xpath_pattern = xpath_pattern
self.company_email = company_email
self.validate()
def validate(self):
if not self.gps_lat.isdecimal():
self.gps_lat = 0.0
else:
self.gps_lat = float(self.gps_lat)
if not self.gps_long.isdecimal():
self.gps_long = 0.0
else:
self.gps_long = float(self.gps_long)
if not self.xpath_pattern.endswith('text()'):
self.xpath_pattern += '/text()' |
#
# PySNMP MIB module ALPHA-RECTIFIER-SYS-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ALPHA-RECTIFIER-SYS-MIB
# Produced by pysmi-0.3.4 at Wed May 1 11:20:50 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
simple, ScaledNumber = mibBuilder.importSymbols("ALPHA-RESOURCE-MIB", "simple", "ScaledNumber")
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ConstraintsIntersection, SingleValueConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsIntersection", "SingleValueConstraint", "ConstraintsUnion", "ValueSizeConstraint")
ModuleCompliance, ObjectGroup, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "ObjectGroup", "NotificationGroup")
TimeTicks, MibIdentifier, Unsigned32, IpAddress, ObjectIdentity, Gauge32, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, Counter32, Counter64, NotificationType, Integer32, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "MibIdentifier", "Unsigned32", "IpAddress", "ObjectIdentity", "Gauge32", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "Counter32", "Counter64", "NotificationType", "Integer32", "ModuleIdentity")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
rectifierSystem = ModuleIdentity((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1))
rectifierSystem.setRevisions(('2015-07-28 00:00', '2015-07-23 00:00', '2015-06-23 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: rectifierSystem.setRevisionsDescriptions((' Updated to follow MIB structure conformance rules. Tested with SimpleWeb: http://www.simpleweb.org Passed highest level of compliance. (level 6) ', 'Fixed MIB syntax warnings.', 'General revision.',))
if mibBuilder.loadTexts: rectifierSystem.setLastUpdated('201507280000Z')
if mibBuilder.loadTexts: rectifierSystem.setOrganization('Alpha Technologies Ltd.')
if mibBuilder.loadTexts: rectifierSystem.setContactInfo('Alpha Technologies Ltd. 7700 Riverfront Gate Burnaby, BC V5J 5M4 Canada Tel: 1-604-436-5900 Fax: 1-604-436-1233')
if mibBuilder.loadTexts: rectifierSystem.setDescription('This MIB defines the notification block(s) available in system controllers.')
rectSysTotalOutputCurrent = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 1), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysTotalOutputCurrent.setStatus('current')
if mibBuilder.loadTexts: rectSysTotalOutputCurrent.setDescription(' Total accumulated output current of all the rectifiers associated with the current system. ')
rectSysTotalOutputPower = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 2), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysTotalOutputPower.setStatus('current')
if mibBuilder.loadTexts: rectSysTotalOutputPower.setDescription('Total output current of all system rectifiers.')
rectSysTotalCapacityInstalledAmps = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 3), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysTotalCapacityInstalledAmps.setStatus('current')
if mibBuilder.loadTexts: rectSysTotalCapacityInstalledAmps.setDescription('A rectifier output current multiplied by the number of rectifiers installed.')
rectSysTotalCapacityInstalledPower = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 4), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysTotalCapacityInstalledPower.setStatus('current')
if mibBuilder.loadTexts: rectSysTotalCapacityInstalledPower.setDescription('A rectifier output power multiplied by the number of rectifiers installed.')
rectSysAverageRectifierOutputVoltage = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 5), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysAverageRectifierOutputVoltage.setStatus('current')
if mibBuilder.loadTexts: rectSysAverageRectifierOutputVoltage.setDescription('Average rectifier output voltage.')
rectSysAverageRectifierACInputVoltage = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 6), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysAverageRectifierACInputVoltage.setStatus('current')
if mibBuilder.loadTexts: rectSysAverageRectifierACInputVoltage.setDescription('Average rectifier input voltage.')
rectSysAveragePhase1Voltage = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 7), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysAveragePhase1Voltage.setStatus('current')
if mibBuilder.loadTexts: rectSysAveragePhase1Voltage.setDescription('Average output voltage of rectifiers in Phase 1.')
rectSysAveragePhase2Voltage = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 8), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysAveragePhase2Voltage.setStatus('current')
if mibBuilder.loadTexts: rectSysAveragePhase2Voltage.setDescription('Average output voltage of rectifiers in Phase 2.')
rectSysAveragePhase3Voltage = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 9), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysAveragePhase3Voltage.setStatus('current')
if mibBuilder.loadTexts: rectSysAveragePhase3Voltage.setDescription('Average output voltage of rectifiers in Phase 3.')
rectSysSystemVoltage = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 10), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysSystemVoltage.setStatus('current')
if mibBuilder.loadTexts: rectSysSystemVoltage.setDescription('System voltage.')
rectSysTotalLoadCurrent = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 11), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysTotalLoadCurrent.setStatus('current')
if mibBuilder.loadTexts: rectSysTotalLoadCurrent.setDescription('Total load current.')
rectSysBatteryVoltage = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 12), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysBatteryVoltage.setStatus('current')
if mibBuilder.loadTexts: rectSysBatteryVoltage.setDescription('Battery voltage.')
rectSysBatteryCurrent = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 13), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysBatteryCurrent.setStatus('current')
if mibBuilder.loadTexts: rectSysBatteryCurrent.setDescription('Battery current.')
rectSysBatteryTemperature = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 14), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysBatteryTemperature.setStatus('current')
if mibBuilder.loadTexts: rectSysBatteryTemperature.setDescription('Battery temperature.')
rectSysSystemNumber = MibScalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 15), ScaledNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rectSysSystemNumber.setStatus('current')
if mibBuilder.loadTexts: rectSysSystemNumber.setDescription('Snmp ID# assigned to the system.')
conformance = MibIdentifier((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 100))
compliances = MibIdentifier((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 100, 1))
compliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 100, 1, 1)).setObjects(("ALPHA-RECTIFIER-SYS-MIB", "rectifierGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
compliance = compliance.setStatus('current')
if mibBuilder.loadTexts: compliance.setDescription('The compliance statement for systems supporting the alpha MIB.')
rectifierGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 100, 2))
rectifierGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 100, 2, 1)).setObjects(("ALPHA-RECTIFIER-SYS-MIB", "rectSysTotalOutputCurrent"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysTotalOutputPower"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysTotalCapacityInstalledAmps"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysTotalCapacityInstalledPower"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysAverageRectifierOutputVoltage"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysAverageRectifierACInputVoltage"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysAveragePhase1Voltage"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysAveragePhase2Voltage"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysAveragePhase3Voltage"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysSystemVoltage"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysTotalLoadCurrent"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysBatteryVoltage"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysBatteryCurrent"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysBatteryTemperature"), ("ALPHA-RECTIFIER-SYS-MIB", "rectSysSystemNumber"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
rectifierGroup = rectifierGroup.setStatus('current')
if mibBuilder.loadTexts: rectifierGroup.setDescription('Alpha Rectifier System data list group.')
mibBuilder.exportSymbols("ALPHA-RECTIFIER-SYS-MIB", rectSysTotalCapacityInstalledPower=rectSysTotalCapacityInstalledPower, rectifierGroups=rectifierGroups, rectifierSystem=rectifierSystem, rectSysTotalCapacityInstalledAmps=rectSysTotalCapacityInstalledAmps, rectSysTotalOutputCurrent=rectSysTotalOutputCurrent, rectSysAveragePhase2Voltage=rectSysAveragePhase2Voltage, rectSysTotalLoadCurrent=rectSysTotalLoadCurrent, rectSysTotalOutputPower=rectSysTotalOutputPower, rectSysSystemVoltage=rectSysSystemVoltage, compliance=compliance, rectSysAveragePhase3Voltage=rectSysAveragePhase3Voltage, conformance=conformance, compliances=compliances, rectSysBatteryCurrent=rectSysBatteryCurrent, rectSysAverageRectifierOutputVoltage=rectSysAverageRectifierOutputVoltage, rectSysSystemNumber=rectSysSystemNumber, PYSNMP_MODULE_ID=rectifierSystem, rectSysAverageRectifierACInputVoltage=rectSysAverageRectifierACInputVoltage, rectSysBatteryTemperature=rectSysBatteryTemperature, rectSysAveragePhase1Voltage=rectSysAveragePhase1Voltage, rectSysBatteryVoltage=rectSysBatteryVoltage, rectifierGroup=rectifierGroup)
| (simple, scaled_number) = mibBuilder.importSymbols('ALPHA-RESOURCE-MIB', 'simple', 'ScaledNumber')
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, constraints_intersection, single_value_constraint, constraints_union, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueSizeConstraint')
(module_compliance, object_group, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'ObjectGroup', 'NotificationGroup')
(time_ticks, mib_identifier, unsigned32, ip_address, object_identity, gauge32, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, counter32, counter64, notification_type, integer32, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'MibIdentifier', 'Unsigned32', 'IpAddress', 'ObjectIdentity', 'Gauge32', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'Counter32', 'Counter64', 'NotificationType', 'Integer32', 'ModuleIdentity')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
rectifier_system = module_identity((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1))
rectifierSystem.setRevisions(('2015-07-28 00:00', '2015-07-23 00:00', '2015-06-23 00:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
rectifierSystem.setRevisionsDescriptions((' Updated to follow MIB structure conformance rules. Tested with SimpleWeb: http://www.simpleweb.org Passed highest level of compliance. (level 6) ', 'Fixed MIB syntax warnings.', 'General revision.'))
if mibBuilder.loadTexts:
rectifierSystem.setLastUpdated('201507280000Z')
if mibBuilder.loadTexts:
rectifierSystem.setOrganization('Alpha Technologies Ltd.')
if mibBuilder.loadTexts:
rectifierSystem.setContactInfo('Alpha Technologies Ltd. 7700 Riverfront Gate Burnaby, BC V5J 5M4 Canada Tel: 1-604-436-5900 Fax: 1-604-436-1233')
if mibBuilder.loadTexts:
rectifierSystem.setDescription('This MIB defines the notification block(s) available in system controllers.')
rect_sys_total_output_current = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 1), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysTotalOutputCurrent.setStatus('current')
if mibBuilder.loadTexts:
rectSysTotalOutputCurrent.setDescription(' Total accumulated output current of all the rectifiers associated with the current system. ')
rect_sys_total_output_power = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 2), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysTotalOutputPower.setStatus('current')
if mibBuilder.loadTexts:
rectSysTotalOutputPower.setDescription('Total output current of all system rectifiers.')
rect_sys_total_capacity_installed_amps = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 3), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysTotalCapacityInstalledAmps.setStatus('current')
if mibBuilder.loadTexts:
rectSysTotalCapacityInstalledAmps.setDescription('A rectifier output current multiplied by the number of rectifiers installed.')
rect_sys_total_capacity_installed_power = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 4), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysTotalCapacityInstalledPower.setStatus('current')
if mibBuilder.loadTexts:
rectSysTotalCapacityInstalledPower.setDescription('A rectifier output power multiplied by the number of rectifiers installed.')
rect_sys_average_rectifier_output_voltage = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 5), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysAverageRectifierOutputVoltage.setStatus('current')
if mibBuilder.loadTexts:
rectSysAverageRectifierOutputVoltage.setDescription('Average rectifier output voltage.')
rect_sys_average_rectifier_ac_input_voltage = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 6), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysAverageRectifierACInputVoltage.setStatus('current')
if mibBuilder.loadTexts:
rectSysAverageRectifierACInputVoltage.setDescription('Average rectifier input voltage.')
rect_sys_average_phase1_voltage = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 7), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysAveragePhase1Voltage.setStatus('current')
if mibBuilder.loadTexts:
rectSysAveragePhase1Voltage.setDescription('Average output voltage of rectifiers in Phase 1.')
rect_sys_average_phase2_voltage = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 8), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysAveragePhase2Voltage.setStatus('current')
if mibBuilder.loadTexts:
rectSysAveragePhase2Voltage.setDescription('Average output voltage of rectifiers in Phase 2.')
rect_sys_average_phase3_voltage = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 9), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysAveragePhase3Voltage.setStatus('current')
if mibBuilder.loadTexts:
rectSysAveragePhase3Voltage.setDescription('Average output voltage of rectifiers in Phase 3.')
rect_sys_system_voltage = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 10), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysSystemVoltage.setStatus('current')
if mibBuilder.loadTexts:
rectSysSystemVoltage.setDescription('System voltage.')
rect_sys_total_load_current = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 11), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysTotalLoadCurrent.setStatus('current')
if mibBuilder.loadTexts:
rectSysTotalLoadCurrent.setDescription('Total load current.')
rect_sys_battery_voltage = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 12), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysBatteryVoltage.setStatus('current')
if mibBuilder.loadTexts:
rectSysBatteryVoltage.setDescription('Battery voltage.')
rect_sys_battery_current = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 13), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysBatteryCurrent.setStatus('current')
if mibBuilder.loadTexts:
rectSysBatteryCurrent.setDescription('Battery current.')
rect_sys_battery_temperature = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 14), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysBatteryTemperature.setStatus('current')
if mibBuilder.loadTexts:
rectSysBatteryTemperature.setDescription('Battery temperature.')
rect_sys_system_number = mib_scalar((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 15), scaled_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rectSysSystemNumber.setStatus('current')
if mibBuilder.loadTexts:
rectSysSystemNumber.setDescription('Snmp ID# assigned to the system.')
conformance = mib_identifier((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 100))
compliances = mib_identifier((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 100, 1))
compliance = module_compliance((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 100, 1, 1)).setObjects(('ALPHA-RECTIFIER-SYS-MIB', 'rectifierGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
compliance = compliance.setStatus('current')
if mibBuilder.loadTexts:
compliance.setDescription('The compliance statement for systems supporting the alpha MIB.')
rectifier_groups = mib_identifier((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 100, 2))
rectifier_group = object_group((1, 3, 6, 1, 4, 1, 7309, 5, 3, 1, 100, 2, 1)).setObjects(('ALPHA-RECTIFIER-SYS-MIB', 'rectSysTotalOutputCurrent'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysTotalOutputPower'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysTotalCapacityInstalledAmps'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysTotalCapacityInstalledPower'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysAverageRectifierOutputVoltage'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysAverageRectifierACInputVoltage'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysAveragePhase1Voltage'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysAveragePhase2Voltage'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysAveragePhase3Voltage'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysSystemVoltage'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysTotalLoadCurrent'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysBatteryVoltage'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysBatteryCurrent'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysBatteryTemperature'), ('ALPHA-RECTIFIER-SYS-MIB', 'rectSysSystemNumber'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
rectifier_group = rectifierGroup.setStatus('current')
if mibBuilder.loadTexts:
rectifierGroup.setDescription('Alpha Rectifier System data list group.')
mibBuilder.exportSymbols('ALPHA-RECTIFIER-SYS-MIB', rectSysTotalCapacityInstalledPower=rectSysTotalCapacityInstalledPower, rectifierGroups=rectifierGroups, rectifierSystem=rectifierSystem, rectSysTotalCapacityInstalledAmps=rectSysTotalCapacityInstalledAmps, rectSysTotalOutputCurrent=rectSysTotalOutputCurrent, rectSysAveragePhase2Voltage=rectSysAveragePhase2Voltage, rectSysTotalLoadCurrent=rectSysTotalLoadCurrent, rectSysTotalOutputPower=rectSysTotalOutputPower, rectSysSystemVoltage=rectSysSystemVoltage, compliance=compliance, rectSysAveragePhase3Voltage=rectSysAveragePhase3Voltage, conformance=conformance, compliances=compliances, rectSysBatteryCurrent=rectSysBatteryCurrent, rectSysAverageRectifierOutputVoltage=rectSysAverageRectifierOutputVoltage, rectSysSystemNumber=rectSysSystemNumber, PYSNMP_MODULE_ID=rectifierSystem, rectSysAverageRectifierACInputVoltage=rectSysAverageRectifierACInputVoltage, rectSysBatteryTemperature=rectSysBatteryTemperature, rectSysAveragePhase1Voltage=rectSysAveragePhase1Voltage, rectSysBatteryVoltage=rectSysBatteryVoltage, rectifierGroup=rectifierGroup) |
# O(n) time | O(1) space
def twoNumberSum(array, targetSum):
# Write your code here.
result = []
for num in array:
offset = targetSum - num
if offset in array:
result = [offset, num]
return result
# def twoNumberSum(array, targetSum):
# for i in range(len(array)-1):
# for k in range(i+1, len(array)):
# if array[i] + array[k] == targetSum:
# return [array[i], array[k]]
# else:
# return []
| def two_number_sum(array, targetSum):
result = []
for num in array:
offset = targetSum - num
if offset in array:
result = [offset, num]
return result |
class MockMail:
def __init__(self):
self.inbox = []
def send_mail(self, recipient_list, **kwargs):
for recipient in recipient_list:
self.inbox.append({
'recipient': recipient,
'subject': kwargs['subject'],
'message': kwargs['message']
})
def clear(self):
self.inbox[:] = []
| class Mockmail:
def __init__(self):
self.inbox = []
def send_mail(self, recipient_list, **kwargs):
for recipient in recipient_list:
self.inbox.append({'recipient': recipient, 'subject': kwargs['subject'], 'message': kwargs['message']})
def clear(self):
self.inbox[:] = [] |
class Text:
""" The Plot Text Text Template
"""
def __init__(self, text=""):
"""
Initializes the plot text Text
:param text: plot text text
:type text: str
"""
self.text = text
self.template = '\ttext = "{text}";\n'
def to_str(self):
"""
Converts the plot text text instance to a z-tree text property declaration.
:return: plot text text property declaration
:rtype: str
"""
return self.template.format(text=self.text)
| class Text:
""" The Plot Text Text Template
"""
def __init__(self, text=''):
"""
Initializes the plot text Text
:param text: plot text text
:type text: str
"""
self.text = text
self.template = '\ttext = "{text}";\n'
def to_str(self):
"""
Converts the plot text text instance to a z-tree text property declaration.
:return: plot text text property declaration
:rtype: str
"""
return self.template.format(text=self.text) |
for x in range(0, 11):
for c in range(0, 11):
print(x, 'x', c, '= {}'.format(x * c))
print('\t')
| for x in range(0, 11):
for c in range(0, 11):
print(x, 'x', c, '= {}'.format(x * c))
print('\t') |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sat Aug 19 17:53:46 2017
@author: benjaminsmith
"""
#do the regression in the
#we need a design matrix
#with linear, square, cubic time point regressors
#plus intercept
#plus whatever Design_Matrix files we want to put in.
onsets_convolved.head()
onsets_convolved['linearterm']=range(1,361)
onsets_convolved['quadraticterm']=[pow(x,2) for x in onsets_convolved['linearterm']]
onsets_convolved['cubicterm']=[pow(x,3) for x in onsets_convolved['linearterm']]
onsets_convolved['ones']=[1]*360
c.head()
onsets_convolved.heatmap()
onsets_convolved
#add in the Design Matrix
msmrl1.X=onsets_convolved#=pd.DataFrame([msmrl1.X,onsets_convolved])
#msmrl1.X=pd.DataFrame(msmrl1.X)
#msmrl1.X
regression=msmrl1.regress()
msm_predicted_pain=regression['t'].similarity(stats['weight_map'],'correlation')
for brainimg in regression['t']:
plotBrain(brainimg)
regression['t'].shape()
plotBrain(regression['t'][1,])
onsets_convolved.head()
plotBrain(regression['t'][1,])
plotBrain(regression['t'][9,])
plotBrain(regression['t'][13,])
#regress out the linear trends
#then dot product with the pain map
#
msm_predicted_pain=regression['beta'].similarity(stats['weight_map'],'dot_product')
plt(msm_predicted_pain)
np.shape(msm_predicted_pain)
#raw data.
msm_predicted_pain=msmrl1.similarity(stats['weight_map'],'dot_product')
onsets_convolved.columns.tolist()
ggplot(
pd.DataFrame(data={
'PainByBeta':msm_predicted_pain[0:9],
'RegressionBetaNum':range(0,9)
}),
aes('RegressionBetaNum','PainByBeta')) +\
geom_line() +\
stat_smooth(colour='blue', span=0.2)+ \
scale_x_continuous(breaks=[1,2,3], \
labels=["horrible", "ok", "awesome"])
| """
Created on Sat Aug 19 17:53:46 2017
@author: benjaminsmith
"""
onsets_convolved.head()
onsets_convolved['linearterm'] = range(1, 361)
onsets_convolved['quadraticterm'] = [pow(x, 2) for x in onsets_convolved['linearterm']]
onsets_convolved['cubicterm'] = [pow(x, 3) for x in onsets_convolved['linearterm']]
onsets_convolved['ones'] = [1] * 360
c.head()
onsets_convolved.heatmap()
onsets_convolved
msmrl1.X = onsets_convolved
regression = msmrl1.regress()
msm_predicted_pain = regression['t'].similarity(stats['weight_map'], 'correlation')
for brainimg in regression['t']:
plot_brain(brainimg)
regression['t'].shape()
plot_brain(regression['t'][1,])
onsets_convolved.head()
plot_brain(regression['t'][1,])
plot_brain(regression['t'][9,])
plot_brain(regression['t'][13,])
msm_predicted_pain = regression['beta'].similarity(stats['weight_map'], 'dot_product')
plt(msm_predicted_pain)
np.shape(msm_predicted_pain)
msm_predicted_pain = msmrl1.similarity(stats['weight_map'], 'dot_product')
onsets_convolved.columns.tolist()
ggplot(pd.DataFrame(data={'PainByBeta': msm_predicted_pain[0:9], 'RegressionBetaNum': range(0, 9)}), aes('RegressionBetaNum', 'PainByBeta')) + geom_line() + stat_smooth(colour='blue', span=0.2) + scale_x_continuous(breaks=[1, 2, 3], labels=['horrible', 'ok', 'awesome']) |
# Main network and testnet3 definitions
params = {
'argentum_main': {
'pubkey_address': 23,
'script_address': 5,
'genesis_hash': '88c667bc63167685e4e4da058fffdfe8e007e5abffd6855de52ad59df7bb0bb2'
},
'argentum_test': {
'pubkey_address': 111,
'script_address': 196,
'genesis_hash': 'f5ae71e26c74beacc88382716aced69cddf3dffff24f384e1808905e0188f68f'
}
}
| params = {'argentum_main': {'pubkey_address': 23, 'script_address': 5, 'genesis_hash': '88c667bc63167685e4e4da058fffdfe8e007e5abffd6855de52ad59df7bb0bb2'}, 'argentum_test': {'pubkey_address': 111, 'script_address': 196, 'genesis_hash': 'f5ae71e26c74beacc88382716aced69cddf3dffff24f384e1808905e0188f68f'}} |
""" Utilities for Cloud Backends """
def parse_remote_path(remote_path):
"""
Parses a remote pathname into its protocol, bucket, and key. These
are fields required by the current cloud backends
"""
# Simple, but should work
fields = remote_path.split("/")
assert len(fields) > 3, "Improper remote path (needs more fields)"
protocol = fields[0]
assert fields[1] == ""
bucket = fields[2]
key = "/".join(fields[3:])
return protocol, bucket, key
def check_slash(path):
""" Make sure that a slash terminates the string """
if path[-1] == "/":
return path
else:
return path + "/"
def check_no_slash(path):
""" Make sure that a slash doesn't terminate the string """
if path[-1] == "/":
return path[:-1]
else:
return path
| """ Utilities for Cloud Backends """
def parse_remote_path(remote_path):
"""
Parses a remote pathname into its protocol, bucket, and key. These
are fields required by the current cloud backends
"""
fields = remote_path.split('/')
assert len(fields) > 3, 'Improper remote path (needs more fields)'
protocol = fields[0]
assert fields[1] == ''
bucket = fields[2]
key = '/'.join(fields[3:])
return (protocol, bucket, key)
def check_slash(path):
""" Make sure that a slash terminates the string """
if path[-1] == '/':
return path
else:
return path + '/'
def check_no_slash(path):
""" Make sure that a slash doesn't terminate the string """
if path[-1] == '/':
return path[:-1]
else:
return path |
def add_time(start, duration, day=None):
hour, minutes = start.split(':')
minutes, am_pm = minutes.split()
add_hour, add_min = duration.split(":")
hour = int(hour)
minutes = int(minutes)
add_hour = int(add_hour)
add_min = int(add_min)
n = add_hour // 24
rem_hour = add_hour % 24
new_min = minutes + add_min
extra_hour = new_min // 60
new_min = new_min % 60
new_min = str(new_min).rjust(2, '0')
rem_hour = rem_hour + extra_hour
extra_n = rem_hour // 24
rem_hour = rem_hour % 24
n = n + extra_n
new_hour = hour + rem_hour
changes = new_hour // 12
final_hour = new_hour % 12
if changes == 0:
am_pm = am_pm
elif changes == 1:
if am_pm == 'AM':
am_pm = 'PM'
else:
am_pm = 'AM'
n = n + 1
elif changes == 2:
am_pm = am_pm
n = n + 1
if day is not None:
day = day.lower()
weekdays = {'monday': 0, 'tuesday': 1, "wednesday": 2, 'thursday': 3, 'friday': 4, 'saturday': 5, 'sunday': 6}
day = weekdays[day] + n
day = day % 7
day = list(weekdays.keys())[list(weekdays.values()).index(day)]
day = day.capitalize()
if final_hour == 0:
final_hour = 12
if not n and day is None:
return f"{final_hour}:{new_min} {am_pm}"
if n and day is None:
if n == 1:
return f"{final_hour}:{new_min} {am_pm} (next day)"
else:
return f"{final_hour}:{new_min} {am_pm} ({n} days later)"
if not n and day:
return f"{final_hour}:{new_min} {am_pm}, {day}"
if n and day:
if n == 1:
return f"{final_hour}:{new_min} {am_pm}, {day} (next day)"
else:
return f"{final_hour}:{new_min} {am_pm}, {day} ({n} days later)"
| def add_time(start, duration, day=None):
(hour, minutes) = start.split(':')
(minutes, am_pm) = minutes.split()
(add_hour, add_min) = duration.split(':')
hour = int(hour)
minutes = int(minutes)
add_hour = int(add_hour)
add_min = int(add_min)
n = add_hour // 24
rem_hour = add_hour % 24
new_min = minutes + add_min
extra_hour = new_min // 60
new_min = new_min % 60
new_min = str(new_min).rjust(2, '0')
rem_hour = rem_hour + extra_hour
extra_n = rem_hour // 24
rem_hour = rem_hour % 24
n = n + extra_n
new_hour = hour + rem_hour
changes = new_hour // 12
final_hour = new_hour % 12
if changes == 0:
am_pm = am_pm
elif changes == 1:
if am_pm == 'AM':
am_pm = 'PM'
else:
am_pm = 'AM'
n = n + 1
elif changes == 2:
am_pm = am_pm
n = n + 1
if day is not None:
day = day.lower()
weekdays = {'monday': 0, 'tuesday': 1, 'wednesday': 2, 'thursday': 3, 'friday': 4, 'saturday': 5, 'sunday': 6}
day = weekdays[day] + n
day = day % 7
day = list(weekdays.keys())[list(weekdays.values()).index(day)]
day = day.capitalize()
if final_hour == 0:
final_hour = 12
if not n and day is None:
return f'{final_hour}:{new_min} {am_pm}'
if n and day is None:
if n == 1:
return f'{final_hour}:{new_min} {am_pm} (next day)'
else:
return f'{final_hour}:{new_min} {am_pm} ({n} days later)'
if not n and day:
return f'{final_hour}:{new_min} {am_pm}, {day}'
if n and day:
if n == 1:
return f'{final_hour}:{new_min} {am_pm}, {day} (next day)'
else:
return f'{final_hour}:{new_min} {am_pm}, {day} ({n} days later)' |
string = '<option value="1" >Malda</option><option value="2" >Hooghly</option><option value="3" >Calcutta</option><option value="4" >Jalpaiguri</option><option value="6" >Coochbehar</option><option value="7" >Paschim Medinpur</option><option value="8" >Birbhum</option><option value="9" >Purba Medinipur</option><option value="10" >Purulia</option><option value="11" >Howrah</option><option value="12" >Murshidabad</option><option value="13" >South Dinajpur</option><option value="14" >North Twenty Four Parganas</option><option value="17" >Darjeeling</option><option value="18" >Purba Bardhaman</option><option value="19" >Bankura</option><option value="20" >South Twenty Four Parganas</option><option value="21" >North Dinajpur</option><option value="22" >Nadia</option><option value="23" >kalimpong</option><option value="24" >Paschim Bardhaman</option><option value="25" >Jhargram</option> </select>'
separated = string.split("</option>")
codes = [each[15:].split('" >') for each in separated[:-1]]
print(codes)
#districts = [each[1] for each in codes]
#codes = [each[0] for each in codes]
codes = [",".join([each[1],each[0]]) for each in codes]
print(len(codes))
print("\n".join(sorted(codes)))
#print("\n".join(districts))
| string = '<option value="1" >Malda</option><option value="2" >Hooghly</option><option value="3" >Calcutta</option><option value="4" >Jalpaiguri</option><option value="6" >Coochbehar</option><option value="7" >Paschim Medinpur</option><option value="8" >Birbhum</option><option value="9" >Purba Medinipur</option><option value="10" >Purulia</option><option value="11" >Howrah</option><option value="12" >Murshidabad</option><option value="13" >South Dinajpur</option><option value="14" >North Twenty Four Parganas</option><option value="17" >Darjeeling</option><option value="18" >Purba Bardhaman</option><option value="19" >Bankura</option><option value="20" >South Twenty Four Parganas</option><option value="21" >North Dinajpur</option><option value="22" >Nadia</option><option value="23" >kalimpong</option><option value="24" >Paschim Bardhaman</option><option value="25" >Jhargram</option> </select>'
separated = string.split('</option>')
codes = [each[15:].split('" >') for each in separated[:-1]]
print(codes)
codes = [','.join([each[1], each[0]]) for each in codes]
print(len(codes))
print('\n'.join(sorted(codes))) |
class Calls(object):
def __init__(self):
self.calls = []
def addCall(self, call):
self.calls.append(call)
def endCall(self, call):
for c in self.calls:
if call.ID == c.ID:
self.calls.remove(call)
def searchCall(self, call_id):
for c in self.calls:
if call_id == c.ID:
return c
return None
def printaCalls(self):
for i in self.calls:
print(i.status) | class Calls(object):
def __init__(self):
self.calls = []
def add_call(self, call):
self.calls.append(call)
def end_call(self, call):
for c in self.calls:
if call.ID == c.ID:
self.calls.remove(call)
def search_call(self, call_id):
for c in self.calls:
if call_id == c.ID:
return c
return None
def printa_calls(self):
for i in self.calls:
print(i.status) |
# Suppose Andy and Doris want to choose a restaurant for dinner, and they both have a list of favorite
# restaurants represented by strings.
# You need to help them find out their common interest with the least list index sum. If there is a
# choice tie between answers, output all of them with no order requirement. You could assume there always
# exists an answer.
# Example 1:
# Input:
# ["Shogun", "Tapioca Express", "Burger King", "KFC"]
# ["KFC", "Shogun", "Burger King"]
# Output: ["Shogun"]
# Explanation: The restaurant they both like and have the least index sum is "Shogun" with index sum 1 (0+1).
# Note:
# The index is starting from 0 to the list length minus 1.
# No duplicates in both lists.
# Time complexity : O(l1 + l2)
# Space complexity : O(l1 * x), hashmap size grows upto l1 * x where x refers to average string length.
class Solution:
def findRestaurant(self, list1: 'list[str]', list2: 'list[str]') -> 'list[str]':
placesMap = {}
minSum = float('inf')
res = []
for i, cur in enumerate(list1):
placesMap[cur] = i
for i, cur in enumerate(list2):
if cur in placesMap:
if (placesMap[cur] + i) < minSum:
res = [cur]
minSum = placesMap[cur] + i
elif (placesMap[cur] + i) == minSum:
res.append(cur)
return res
| class Solution:
def find_restaurant(self, list1: 'list[str]', list2: 'list[str]') -> 'list[str]':
places_map = {}
min_sum = float('inf')
res = []
for (i, cur) in enumerate(list1):
placesMap[cur] = i
for (i, cur) in enumerate(list2):
if cur in placesMap:
if placesMap[cur] + i < minSum:
res = [cur]
min_sum = placesMap[cur] + i
elif placesMap[cur] + i == minSum:
res.append(cur)
return res |
def gcd(a,b):
if a < b:
a, b = b, a
if b == 0:
return a
return gcd(b, a %b)
def gcdlist(l):
if len(l) == 2:
return gcd(l[0], l[1])
f = l.pop()
s = l.pop()
m = gcd(f, s)
l.append(m)
return gcdlist(l)
def main():
n, x = map(int, input().split())
a = [int(v) for v in input().split(' ')]
a.append(x)
a.sort()
dis = [x2 - x1 for x1, x2 in zip(a, a[1:])]
max_ = 0
for i in range(n):
if len(dis) == 1:
max_ = dis[0]
break
try:
max_ = gcdlist(dis)
except:
max_ = 1
print(max_)
if __name__ == '__main__':
main()
| def gcd(a, b):
if a < b:
(a, b) = (b, a)
if b == 0:
return a
return gcd(b, a % b)
def gcdlist(l):
if len(l) == 2:
return gcd(l[0], l[1])
f = l.pop()
s = l.pop()
m = gcd(f, s)
l.append(m)
return gcdlist(l)
def main():
(n, x) = map(int, input().split())
a = [int(v) for v in input().split(' ')]
a.append(x)
a.sort()
dis = [x2 - x1 for (x1, x2) in zip(a, a[1:])]
max_ = 0
for i in range(n):
if len(dis) == 1:
max_ = dis[0]
break
try:
max_ = gcdlist(dis)
except:
max_ = 1
print(max_)
if __name__ == '__main__':
main() |
#! /bin/env python3
''' Class that represents a bit mask.
It has methods representing all
the bitwise operations plus some
additional features. The methods
return a new BitMask object or
a boolean result. See the bits
module for more on the operations
provided.
'''
class BitMask(int):
def AND(self,bm):
return BitMask(self & bm)
def OR(self,bm):
return BitMask(self | bm)
def XOR(self,bm):
return BitMask(self ^ bm)
def NOT(self):
return BitMask(~self)
def shiftleft(self, num):
return BitMask(self << num)
def shiftright(self, num):
return BitMask(self >> num)
def bit(self, num):
mask = 1 << num
return bool(self & mask)
def setbit(self, num):
mask = 1 << num
return BitMask(self | mask)
def zerobit(self, num):
mask = ~(1 << num)
return BitMask(self & mask)
def listbits(self, start=0,end=None):
if end: end = end if end < 0 else end+2
return [int(c) for c in bin(self)[start+2:end]]
| """ Class that represents a bit mask.
It has methods representing all
the bitwise operations plus some
additional features. The methods
return a new BitMask object or
a boolean result. See the bits
module for more on the operations
provided.
"""
class Bitmask(int):
def and(self, bm):
return bit_mask(self & bm)
def or(self, bm):
return bit_mask(self | bm)
def xor(self, bm):
return bit_mask(self ^ bm)
def not(self):
return bit_mask(~self)
def shiftleft(self, num):
return bit_mask(self << num)
def shiftright(self, num):
return bit_mask(self >> num)
def bit(self, num):
mask = 1 << num
return bool(self & mask)
def setbit(self, num):
mask = 1 << num
return bit_mask(self | mask)
def zerobit(self, num):
mask = ~(1 << num)
return bit_mask(self & mask)
def listbits(self, start=0, end=None):
if end:
end = end if end < 0 else end + 2
return [int(c) for c in bin(self)[start + 2:end]] |
n,reqsum=map(int,input().split())
a=list(map(int,input().split()))
arr=[]
for i in range(1,n+1):
arr.append([i,a[i-1]])
arr=sorted(arr,key=lambda x:x[1])
#print(arr)
i=0
j=n-1
while(i<=j and i!=j):
#print("{}+{}={}".format(arr[i][1],arr[j][1],arr[i][1]+arr[j][1]))
if(arr[i][1]+arr[j][1]==reqsum):
print("{} {}".format(arr[i][0],arr[j][0]))
break
elif(arr[i][1]+arr[j][1]<reqsum):
i+=1
elif(arr[i][1]+arr[j][1]>reqsum):
j-=1
else:
print("IMPOSSIBLE")
| (n, reqsum) = map(int, input().split())
a = list(map(int, input().split()))
arr = []
for i in range(1, n + 1):
arr.append([i, a[i - 1]])
arr = sorted(arr, key=lambda x: x[1])
i = 0
j = n - 1
while i <= j and i != j:
if arr[i][1] + arr[j][1] == reqsum:
print('{} {}'.format(arr[i][0], arr[j][0]))
break
elif arr[i][1] + arr[j][1] < reqsum:
i += 1
elif arr[i][1] + arr[j][1] > reqsum:
j -= 1
else:
print('IMPOSSIBLE') |
# 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:
def flatten(self, root: TreeNode) -> None:
preorderList = list()
def preorderTraversal(root: TreeNode):
if root:
preorderList.append(root)
preorderTraversal(root.left)
preorderTraversal(root.right)
preorderTraversal(root)
size = len(preorderList)
for i in range(1, size):
prev, curr = preorderList[i - 1], preorderList[i]
prev.left = None
prev.right = curr
| class Solution:
def flatten(self, root: TreeNode) -> None:
preorder_list = list()
def preorder_traversal(root: TreeNode):
if root:
preorderList.append(root)
preorder_traversal(root.left)
preorder_traversal(root.right)
preorder_traversal(root)
size = len(preorderList)
for i in range(1, size):
(prev, curr) = (preorderList[i - 1], preorderList[i])
prev.left = None
prev.right = curr |
str = "Python Program"
print(str[0])
print(str[1])
print(str[2])
print(str[3])
print(str[4])
print(str[5])
print(str[0:8])
print(str[::-1]) #to reverse the string | str = 'Python Program'
print(str[0])
print(str[1])
print(str[2])
print(str[3])
print(str[4])
print(str[5])
print(str[0:8])
print(str[::-1]) |
#!/usr/bin/python
#
# Copyright 2018-2021 Polyaxon, Inc.
#
# 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.
POLYAXON_DOCKER_TEMPLATE = """
FROM {{ image }}
{% if lang_env -%}
ENV LC_ALL {{ lang_env }}
ENV LANG {{ lang_env }}
ENV LANGUAGE {{ lang_env }}
{% endif -%}
{% if shell %}
ENV SHELL {{ shell }}
{% endif -%}
{% if path -%}
{% for path_step in path -%}
ENV PATH="${PATH}:{{ path_step }}"
{% endfor -%}
{% endif -%}
{% if env -%}
{% for env_step in env -%}
ENV {{ env_step[0] }} {{ env_step[1] }}
{% endfor -%}
{% endif -%}
WORKDIR {{ workdir }}
{% if copy -%}
{% for copy_step in copy -%}
COPY {{ copy_step[0] }} {{ copy_step[1] }}
{% endfor -%}
{% endif -%}
{% if run -%}
{% for step in run -%}
RUN {{ step }}
{% endfor -%}
{% endif -%}
{% if post_run_copy -%}
{% for copy_step in post_run_copy -%}
COPY {{ copy_step[0] }} {{ copy_step[1] }}
{% endfor -%}
{% endif -%}
{% if uid and gid -%}
# Drop root user and use Polyaxon user
RUN groupadd -g {{ gid }} -r polyaxon && useradd -r -m -g polyaxon -u {{ uid }} {{ username }}
{% endif -%}
{% if workdir_path -%}
COPY {{ workdir_path }} {{ workdir }}
{% endif -%}
"""
| polyaxon_docker_template = '\nFROM {{ image }}\n\n{% if lang_env -%}\nENV LC_ALL {{ lang_env }}\nENV LANG {{ lang_env }}\nENV LANGUAGE {{ lang_env }}\n{% endif -%}\n\n{% if shell %}\nENV SHELL {{ shell }}\n{% endif -%}\n\n{% if path -%}\n{% for path_step in path -%}\nENV PATH="${PATH}:{{ path_step }}"\n{% endfor -%}\n{% endif -%}\n\n{% if env -%}\n{% for env_step in env -%}\nENV {{ env_step[0] }} {{ env_step[1] }}\n{% endfor -%}\n{% endif -%}\n\nWORKDIR {{ workdir }}\n\n{% if copy -%}\n{% for copy_step in copy -%}\nCOPY {{ copy_step[0] }} {{ copy_step[1] }}\n{% endfor -%}\n{% endif -%}\n\n{% if run -%}\n{% for step in run -%}\nRUN {{ step }}\n{% endfor -%}\n{% endif -%}\n\n{% if post_run_copy -%}\n{% for copy_step in post_run_copy -%}\nCOPY {{ copy_step[0] }} {{ copy_step[1] }}\n{% endfor -%}\n{% endif -%}\n\n{% if uid and gid -%}\n# Drop root user and use Polyaxon user\nRUN groupadd -g {{ gid }} -r polyaxon && useradd -r -m -g polyaxon -u {{ uid }} {{ username }}\n{% endif -%}\n\n{% if workdir_path -%}\nCOPY {{ workdir_path }} {{ workdir }}\n{% endif -%}\n' |
class BaseContext(object):
"""
Base class for contexts.
Most views in this app will use a database connection. This class will
add an instance attribute for the database session and the request.
"""
def __init__(self, request):
self._request = request
self._db = self._request.db
| class Basecontext(object):
"""
Base class for contexts.
Most views in this app will use a database connection. This class will
add an instance attribute for the database session and the request.
"""
def __init__(self, request):
self._request = request
self._db = self._request.db |
class Solution:
def countOrders(self, n: int) -> int:
"""
n! * (1 * 2 * 3 * (2n - 1))
n == 3
==> (1 * 2 * 3) * (1 * 3 * 5)
==> 1 * 1 * 2 * 3 * 3 * 5
result = 1
for i: 1 to n
result *= i * (2*n - 1)
"""
result = 1
modulo = 10 ** 9 + 7
for index in range(1, n + 1):
result *= index * (2 * index - 1)
return result % modulo | class Solution:
def count_orders(self, n: int) -> int:
"""
n! * (1 * 2 * 3 * (2n - 1))
n == 3
==> (1 * 2 * 3) * (1 * 3 * 5)
==> 1 * 1 * 2 * 3 * 3 * 5
result = 1
for i: 1 to n
result *= i * (2*n - 1)
"""
result = 1
modulo = 10 ** 9 + 7
for index in range(1, n + 1):
result *= index * (2 * index - 1)
return result % modulo |
"""
Mycroft Holmes core
"""
VERSION = '0.3'
| """
Mycroft Holmes core
"""
version = '0.3' |
vid_parttern = r''
class Video:
def __init__(self):
pass
| vid_parttern = ''
class Video:
def __init__(self):
pass |
expected_output = {
'Node number is ': '1',
'Node status is ': 'NODE_STATUS_UP',
'Tunnel status is ': 'NODE_TUNNEL_UP',
'Node Sudi is ': '11 FDO25390VQP',
'Node Name is ': '4 Node',
'Node type is ': 'CLUSTER_NODE_TYPE_MASTER',
'Node role is ': 'CLUSTER_NODE_ROLE_LEADER'
}
| expected_output = {'Node number is ': '1', 'Node status is ': 'NODE_STATUS_UP', 'Tunnel status is ': 'NODE_TUNNEL_UP', 'Node Sudi is ': '11 FDO25390VQP', 'Node Name is ': '4 Node', 'Node type is ': 'CLUSTER_NODE_TYPE_MASTER', 'Node role is ': 'CLUSTER_NODE_ROLE_LEADER'} |
# def get_sql(cte, params, company, conn, gl_code):
#
# sql = cte + ("""
# SELECT
# a.op_date AS "[DATE]", a.cl_date AS "[DATE]"
# , SUM(COALESCE(b.tran_tot, 0)) AS "[REAL2]"
# , SUM(COALESCE(c.tran_tot, 0) - COALESCE(b.tran_tot, 0)) AS "[REAL2]"
# , SUM(COALESCE(c.tran_tot, 0)) AS "[REAL2]"
# FROM
# (SELECT dates.op_date, dates.cl_date, (
# SELECT c.row_id FROM {0}.gl_totals c
# JOIN {0}.gl_codes f on f.row_id = c.gl_code_id
# WHERE c.tran_date < dates.op_date
# AND c.location_row_id = d.row_id
# AND c.function_row_id = e.row_id
# AND c.source_code_id = g.row_id
# AND f.gl_code = {1}
# AND c.deleted_id = 0
# ORDER BY c.tran_date DESC LIMIT 1
# ) AS op_row_id, (
# SELECT c.row_id FROM {0}.gl_totals c
# JOIN {0}.gl_codes f on f.row_id = c.gl_code_id
# WHERE c.tran_date <= dates.cl_date
# AND c.location_row_id = d.row_id
# AND c.function_row_id = e.row_id
# AND c.source_code_id = g.row_id
# AND f.gl_code = {1}
# AND c.deleted_id = 0
# ORDER BY c.tran_date DESC LIMIT 1
# ) AS cl_row_id
# FROM dates, {0}.adm_locations d, {0}.adm_functions e, {0}.gl_source_codes g
# WHERE d.location_type = 'location'
# AND e.function_type = 'function'
# ) AS a
# LEFT JOIN {0}.gl_totals b on b.row_id = a.op_row_id
# LEFT JOIN {0}.gl_totals c on c.row_id = a.cl_row_id
# GROUP BY a.op_date, a.cl_date
# ORDER BY a.op_date
# """.format(company, conn.constants.param_style)
# )
#
# params += (gl_code, gl_code)
#
# fmt = '{:%d-%m} - {:%d-%m} : {:>12}{:>12}{:>12}'
#
# return sql, params, fmt
def get_sql(cte, params, company, conn, gl_code):
sql = cte + ("""
SELECT
a.op_date AS "[DATE]", a.cl_date AS "[DATE]"
, b.gl_code
, SUM(COALESCE(a.op_tot, 0)) AS "[REAL2]"
, SUM(COALESCE(a.cl_tot, 0) - COALESCE(a.op_tot, 0)) AS "[REAL2]"
, SUM(COALESCE(a.cl_tot, 0)) AS "[REAL2]"
FROM
(SELECT dates.op_date, dates.cl_date,
(SELECT SUM(c.tran_tot) FROM (
SELECT a.tran_tot, ROW_NUMBER() OVER (PARTITION BY
a.gl_code_id, a.location_row_id, a.function_row_id, a.source_code_id
ORDER BY a.tran_date DESC) row_num
FROM {0}.gl_totals a
JOIN {0}.gl_codes b on b.row_id = a.gl_code_id AND b.gl_code = {1}
WHERE a.deleted_id = 0
AND a.tran_date < dates.op_date
) as c
WHERE c.row_num = 1) as op_tot,
(SELECT SUM(c.tran_tot) FROM (
SELECT a.tran_tot, ROW_NUMBER() OVER (PARTITION BY
a.gl_code_id, a.location_row_id, a.function_row_id, a.source_code_id
ORDER BY a.tran_date DESC) row_num
FROM {0}.gl_totals a
JOIN {0}.gl_codes b on b.row_id = a.gl_code_id AND b.gl_code = {1}
WHERE a.deleted_id = 0
AND a.tran_date <= dates.cl_date
) as c
WHERE c.row_num = 1) as cl_tot
FROM dates
) AS a
JOIN {0}.gl_codes b ON b.gl_code = {1}
GROUP BY a.op_date, a.cl_date, b.gl_code
ORDER BY a.op_date
""".format(company, conn.constants.param_style)
)
params += (gl_code, gl_code, gl_code)
fmt = '{:%d-%m} - {:%d-%m} : {:<12}{:>12}{:>12}{:>12}'
return sql, params, fmt
| def get_sql(cte, params, company, conn, gl_code):
sql = cte + '\n SELECT \n a.op_date AS "[DATE]", a.cl_date AS "[DATE]"\n , b.gl_code\n , SUM(COALESCE(a.op_tot, 0)) AS "[REAL2]"\n , SUM(COALESCE(a.cl_tot, 0) - COALESCE(a.op_tot, 0)) AS "[REAL2]"\n , SUM(COALESCE(a.cl_tot, 0)) AS "[REAL2]"\n FROM\n (SELECT dates.op_date, dates.cl_date,\n\n (SELECT SUM(c.tran_tot) FROM (\n SELECT a.tran_tot, ROW_NUMBER() OVER (PARTITION BY\n a.gl_code_id, a.location_row_id, a.function_row_id, a.source_code_id\n ORDER BY a.tran_date DESC) row_num\n FROM {0}.gl_totals a\n JOIN {0}.gl_codes b on b.row_id = a.gl_code_id AND b.gl_code = {1}\n WHERE a.deleted_id = 0\n AND a.tran_date < dates.op_date\n ) as c\n WHERE c.row_num = 1) as op_tot,\n\n (SELECT SUM(c.tran_tot) FROM (\n SELECT a.tran_tot, ROW_NUMBER() OVER (PARTITION BY\n a.gl_code_id, a.location_row_id, a.function_row_id, a.source_code_id\n ORDER BY a.tran_date DESC) row_num\n FROM {0}.gl_totals a\n JOIN {0}.gl_codes b on b.row_id = a.gl_code_id AND b.gl_code = {1}\n WHERE a.deleted_id = 0\n AND a.tran_date <= dates.cl_date\n ) as c\n WHERE c.row_num = 1) as cl_tot\n\n FROM dates\n ) AS a\n JOIN {0}.gl_codes b ON b.gl_code = {1}\n\n GROUP BY a.op_date, a.cl_date, b.gl_code\n ORDER BY a.op_date\n '.format(company, conn.constants.param_style)
params += (gl_code, gl_code, gl_code)
fmt = '{:%d-%m} - {:%d-%m} : {:<12}{:>12}{:>12}{:>12}'
return (sql, params, fmt) |
class Service:
def __init__(self):
self.base = 7
def set_val(self, val):
self.func_val = val
def get_val(self):
return self.func_val
class Service2(Service):
def __init__(self): # pragma: no cover
self.base = 8
| class Service:
def __init__(self):
self.base = 7
def set_val(self, val):
self.func_val = val
def get_val(self):
return self.func_val
class Service2(Service):
def __init__(self):
self.base = 8 |
__author__ = 'roeiherz'
"""
Write a method to return all subsets of a set
"""
def power_set(subset):
n = len(subset)
# Stop case
if n != 0:
print(subset)
for i in range(n):
new_lst = subset[:i] + subset[i + 1:]
power_set(new_lst)
def power_set_memo(subset, mem):
n = len(subset)
# Stop case
if n != 0:
if subset not in mem:
mem.add(subset)
print(subset)
for i in range(n):
new_lst = subset[:i] + subset[i + 1:]
power_set_memo(new_lst, mem)
if __name__ == '__main__':
mem = set()
# power_set((1, 2, 3, 4))
power_set_memo((1, 2, 3, 4), mem)
| __author__ = 'roeiherz'
'\nWrite a method to return all subsets of a set\n'
def power_set(subset):
n = len(subset)
if n != 0:
print(subset)
for i in range(n):
new_lst = subset[:i] + subset[i + 1:]
power_set(new_lst)
def power_set_memo(subset, mem):
n = len(subset)
if n != 0:
if subset not in mem:
mem.add(subset)
print(subset)
for i in range(n):
new_lst = subset[:i] + subset[i + 1:]
power_set_memo(new_lst, mem)
if __name__ == '__main__':
mem = set()
power_set_memo((1, 2, 3, 4), mem) |
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() | vowels = 'aeiou'
word = input("Enter a word ('quit' to quit): ")
word = word.lower()
if word == 'quit':
quit()
while word != 'quit':
if word[0] in vowels:
word = word + 'way'
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)
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
| 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")
| 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'
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') |
"""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
| """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)
| ___assert_equal(0 ** 17, 0)
___assert_equal(17 ** 0, 1)
___assert_equal(0 ** 0, 1)
___assert_equal(17 ** 1, 17)
___assert_equal(2 ** 10, 1024)
___assert_equal(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'}
| 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)
| 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"""
posts_s = []
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}') | step_end = 10
for step in range(step_end):
t = step * dt
i = i_mean * (1 + np.sin(t * 2 * np.pi / 0.01))
print(f'{t:.3f} {i:.4e}') |
"""
##########################################
## Developed By:Mustafa Raad Mutashar ##
## mustafa.raad.7@gmail.com 2020 ##
##########################################
"""
| """
##########################################
## Developed By:Mustafa Raad Mutashar ##
## mustafa.raad.7@gmail.com 2020 ##
##########################################
""" |
# OpenWeatherMap API Key
weather_api_key = "229c3f533e63b8b69792de2ba65d3645"
# Google API Key
g_key = "AIzaSyCv1BWR1Jm0cxoY8oqWxYHWU2g6Aq91SvE"
| weather_api_key = '229c3f533e63b8b69792de2ba65d3645'
g_key = 'AIzaSyCv1BWR1Jm0cxoY8oqWxYHWU2g6Aq91SvE' |
# 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
| 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
| """
A small set of functions for math operations
"""
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,)
} | 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), 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,), 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,), 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',
],
},
},
},
],
}
| {'target_defaults': {'variables': {'chromium_code': 1, 'enable_wexit_time_destructors': 1}, 'include_dirs': ['<(DEPTH)', '<(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': [{'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', 'UACExecutionLevel': '2', 'AdditionalDependencies': ['secur32.lib']}}}, {'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', 'UACExecutionLevel': '2', 'AdditionalDependencies': ['secur32.lib']}, 'conditions': [['clang==1', {'VCCLCompilerTool': {'AdditionalOptions': ['-Wno-header-hygiene', '-Wno-parentheses', '-Wno-reorder', '-Wno-missing-braces']}}]]}}, {'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', 'UACExecutionLevel': '2', '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.'''
| """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)
| class Templates:
@staticmethod
def simple_react_class_component(name):
return 'import {{ Component }} from "react";\nimport React from "react";\n\nexport default class {0} extends Component {{\n render() {{\n return <div>{{this.props.children}}</div>;\n }}\n}}\n'.format(name)
@staticmethod
def react_class_component_with_props_and_state(name):
return 'import {{ Component, HTMLAttributes }} from "react";\nimport React from "react";\n\ninterface Props extends HTMLAttributes<HTMLElement> {{}}\n\ninterface State {{}}\n\nexport default class {0} extends Component<Props, State> {{\n constructor(props: Props) {{\n super(props);\n this.state = {{}};\n }}\n\n render() {{\n return <div>{{this.props.children}}</div>;\n }}\n}}\n'.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"
| """
Configuration for docs
"""
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()
| 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)
total_value = 0
for i in range(len(item)):
cur_wt = item[i].wt
cur_val = item[i].val
if W - curWt >= 0:
w -= curWt
total_value += curVal
else:
fraction = W / curWt
total_value += 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
| """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 |
'''
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_))
| """
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.
"""
steps = [('scaler', standard_scaler()), ('SVM', svc())]
pipeline = pipeline(steps)
parameters = {'SVM__C': [1, 10, 100], 'SVM__gamma': [0.1, 0.01]}
(x_train, x_test, y_train, y_test) = train_test_split(X, y, test_size=0.2, random_state=21)
cv = grid_search_cv(pipeline, parameters, cv=3)
cv.fit(X_train, y_train)
y_pred = cv.predict(X_test)
print('Accuracy: {}'.format(cv.score(X_test, y_test)))
print(classification_report(y_test, y_pred))
print('Tuned Model Parameters: {}'.format(cv.best_params_)) |
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()
| 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() |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@author: ying jun
@email: wandy1208@live.com
@time: 2021/12/12 22:55
"""
| """
@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'
| """
Application constants
"""
request_timeout = 100
connection_timeout = 30
base_url = 'https://graph.microsoft.com/v1.0'
sdk_version = '0.0.3'
auth_middleware_options = 'AUTH_MIDDLEWARE_OPTIONS' |
# -*- coding: iso-8859-1 -*-
"""
MoinMoin - <short description>
<what this stuff does ... - verbose enough>
@copyright: 2007 MoinMoin:YourNameHere
@license: GNU GPL, see COPYING for details.
"""
| """
MoinMoin - <short description>
<what this stuff does ... - verbose enough>
@copyright: 2007 MoinMoin:YourNameHere
@license: GNU GPL, see COPYING for details.
""" |
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}')
| 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}') |
# -*- coding: utf-8 -*-
class ImdbScraperPipeline(object):
def process_item(self, item, spider):
return item
| class Imdbscraperpipeline(object):
def process_item(self, item, spider):
return item |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.