[201911] [Innovium] Update Cameo & Wistron Drivers (#7855)

Fix #8068

Update Innovium configs on Cameo and Wistron platforms
This commit is contained in:
shihjeff 2021-07-21 09:09:36 -07:00 committed by GitHub
parent fcc7d3102a
commit 940aaa0cbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
249 changed files with 52432 additions and 8179 deletions

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -2,7 +2,7 @@
try:
from sonic_eeprom import eeprom_tlvinfo
except ImportError, e:
except ImportError as e:
raise ImportError (str(e) + "- required module not found")
class board(eeprom_tlvinfo.TlvInfoDecoder):

View File

@ -11,14 +11,11 @@ try:
except ImportError as e:
raise ImportError(str(e) + "- required module not found")
attr_path = '/sys/class/hwmon/hwmon2/device/'
attr_path = '/sys/class/hwmon/hwmon2/device/ESC600_POWER/'
class PsuUtil(PsuBase):
"""Platform-specific PSUutil class"""
SYSFS_PSU_DIR = ["/sys/bus/i2c/devices/i2c-10/10-0050",
"/sys/bus/i2c/devices/i2c-9/9-0050"]
def __init__(self):
PsuBase.__init__(self)
@ -56,18 +53,16 @@ class PsuUtil(PsuBase):
faulty
"""
status = 0
attr_file = 'psu_status'
status_path = attr_path+'/ESC600_PSU/' + attr_file
attr_file = 'psu{}_good'.format(index)
status_path = attr_path + attr_file
try:
reg_file = open(status_path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text_lines = reg_file.read()
text = reg_file.read()
search_str = "PSU {} is power good".format(index)
if search_str in text_lines:
if int(text) == 1:
status = 1
reg_file.close()
@ -82,18 +77,16 @@ class PsuUtil(PsuBase):
:return: Boolean, True if PSU is plugged, False if not
"""
status = 0
attr_file ='psu_present'
presence_path = attr_path+'ESC600_PSU/' + attr_file
attr_file ='psu{}_prnt'.format(index)
presence_path = attr_path + attr_file
try:
reg_file = open(presence_path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text_lines = reg_file.read()
text = reg_file.read()
search_str = "PSU {} is present".format(index)
if search_str in text_lines:
if int(text) == 1:
status = 1
reg_file.close()

View File

@ -1,33 +1,37 @@
#!/usr/bin/env python
try:
import os
import time
import json
from sonic_sfp.sfputilbase import SfpUtilBase
except ImportError, e:
except ImportError as e:
raise ImportError(str(e) + "- required module not found")
attr_path = '/sys/class/hwmon/hwmon2/device/'
qsfp_sysfile_path = '/sys/bus/i2c/devices/{}-0032/'
i2c_bus_base = 0
PLATFORM_INSTALL_INFO_FILE = "/etc/sonic/platform_install.json"
PLATFORM_SFP_GROUPS = ['SFP-G11', 'SFP-G12', 'SFP-G21', 'SFP-G22', 'SFP-G31', 'SFP-G32', 'SFP-G41', 'SFP-G42',
'SFP-G51',
'SFP-G52', 'SFP-G61', 'SFP-G62', 'SFP-G71', 'SFP-G72', 'SFP-G81', 'SFP-G82']
PLATFORM_CARD_LIST = ['PHY_CPLD_1', 'PHY_CPLD_2', 'PHY_CPLD_3', 'PHY_CPLD_4', 'PHY_CPLD_5', 'PHY_CPLD_6', 'PHY_CPLD_7',
'PHY_CPLD_8']
class SfpUtil(SfpUtilBase):
"""Platform specific SfpUtill class"""
_port_start = 0
_port_end = 127
_port_in_block = 128
_port_to_eeprom_mapping = {}
_global_port_pres_dict = {}
_port_position_mapping = []
_port_status_mapping = []
def __init__(self):
self.create_port_position_mapping()
eeprom_path = "/sys/bus/i2c/devices/{0}-0050/eeprom"
eeprom_path = "{}/eeprom"
eeprom_path_list, status_path_list = self.get_sfp_path()
self._port_end = len(status_path_list) - 1
self._port_status_mapping = status_path_list
for x in range(self._port_start, self._port_end + 1):
port_eeprom_path = eeprom_path.format(self._port_position_mapping[x][2])
port_eeprom_path = eeprom_path.format(eeprom_path_list[x])
self._port_to_eeprom_mapping[x] = port_eeprom_path
self.init_global_port_presence()
SfpUtilBase.__init__(self)
@ -39,93 +43,41 @@ class SfpUtil(SfpUtilBase):
except Exception as error:
print("Unable to open ", attr_path, " file !")
return retval
retval = retval.rstrip('\r\n')
fd.close()
return retval
def bmc_is_exist(self):
value = ''
bmc_filePath = '/sys/class/hwmon/hwmon2/device/ESC600_SYS/bmc_present'
if os.path.exists(bmc_filePath):
value = self.get_attr_value(bmc_filePath)
if value.find('not') < 0:
return True
else:
return False
else:
return False
def get_inserted_slots(self):
""" return list of inserted slots """
path = attr_path+'ESC600_Module/module_insert'
try:
reg_file = open(path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text_lines = reg_file.readlines()
reg_file.close()
slots = []
for line in text_lines:
if "is present" in line:
slots.append(int(filter(str.isdigit, line)))
return slots
def create_port_position_mapping(self):
inserted_slots = []
ports_in_slots = [0]*8
# record inserted slots
inserted_slots = self.get_inserted_slots()
# record the numbers of port on each slot
for slot in inserted_slots:
path = qsfp_sysfile_path.format(slot+i2c_bus_base) + 'portnum'
ports_in_slots[slot-1] = int(self.get_attr_value(path))
# mapping
nport = 0
if self.bmc_is_exist():
PATH_71_BUS_BASE = 9
else:
PATH_71_BUS_BASE = 33
sfp_bus = PATH_71_BUS_BASE
for i in range(0,8):
for x in range(0,ports_in_slots[i]):
self._port_position_mapping.append((i, x+1, sfp_bus+x))
nport = nport + 1
if ports_in_slots[i] == 4:
sfp_bus = sfp_bus + 8
elif ports_in_slots[i] == 16:
sfp_bus = sfp_bus + 16
self._port_end = nport-1
def get_sfp_path(self):
eeprom_path_list=[]
status_path_list=[]
with open(PLATFORM_INSTALL_INFO_FILE) as fd:
install_info = json.load(fd)
for sfp_group_name in PLATFORM_SFP_GROUPS:
sfp_group = install_info[2][sfp_group_name]
for i in range(0,sfp_group['number']):
eeprom_path_list.append(sfp_group['paths'][i])
for card_name in PLATFORM_CARD_LIST:
card = install_info[1][card_name]
if card['portnum'] == 0:
continue
for i in range(1,card['portnum']+1):
present_file = card['hwmon_path']+'/device/'+'QSFP_present_{}'.format(i)
lp_file = card['hwmon_path']+'/device/'+'QSFP_low_power_{}'.format(i)
reset_file = card['hwmon_path']+'/device/'+'QSFP_reset_{}'.format(i)
status_path_list.append([present_file,lp_file,reset_file])
return eeprom_path_list, status_path_list
def reset(self, port_num):
# Check for invalid port_num
if port_num < self._port_start or port_num > self._port_end:
return False
pos = self._port_position_mapping[port_num]
path = qsfp_sysfile_path.format(pos[0]+i2c_bus_base+1)+'QSFP_reset_{}'.format(pos[1])
pos = self._port_status_mapping[port_num]
path = pos[2]
try:
reg_file = open(path, 'w')
except IOError as e:
print("Error: unable to open file: %s" % str(e))
return False
#toggle reset
#reg_file.seek(0)
reg_file.write(str(port_num + 1))
#time.sleep(1)
#reg_file.seek(0)
#reg_file.write('0')
reg_file.close()
return True
@ -133,60 +85,48 @@ class SfpUtil(SfpUtilBase):
# Check for invalid port_num
if port_num < self.port_start or port_num > self.port_end:
return False
pos = self._port_position_mapping[port_num]
path = qsfp_sysfile_path.format(pos[0]+i2c_bus_base+1)+'QSFP_low_power_{}'.format(pos[1])
pos = self._port_status_mapping[port_num]
path = pos[1]
try:
reg_file = open(path, 'w')
except IOError as e:
print("Error: unable to open file: %s" % str(e))
return False
# the gpio pin is ACTIVE_HIGH
if lpmode is True:
val = "1"
else:
val = "0"
# write value to gpio
reg_file.seek(0)
reg_file.write(val)
reg_file.close()
return True
def get_low_power_mode(self, port_num):
# Check for invalid port_num
if port_num < self._port_start or port_num > self._port_end:
return False
pos = self._port_position_mapping[port_num]
path = qsfp_sysfile_path.format(pos[0]+i2c_bus_base+1)+'QSFP_low_power_{}'.format(pos[1])
pos = self._port_status_mapping[port_num]
path = pos[1]
res = self.get_attr_value(path)
if res == 'ERR':
return False
if int(res) == 1:
return True
return False
def get_presence(self, port_num):
# Check for invalid port_num
if port_num < self._port_start or port_num > self._port_end:
return False
pos = self._port_position_mapping[port_num]
path = qsfp_sysfile_path.format(pos[0]+i2c_bus_base+1)+'QSFP_present_{}'.format(pos[1])
pos = self._port_status_mapping[port_num]
path = pos[0]
res = self.get_attr_value(path)
if res == 'ERR':
return False
if int(res) == 1:
return True
return False
def init_global_port_presence(self):
@ -205,14 +145,11 @@ class SfpUtil(SfpUtilBase):
if (presence and self._global_port_pres_dict[port_num] == '0'):
self._global_port_pres_dict[port_num] = '1'
port_dict[port_num] = '1'
elif(not presence and
self._global_port_pres_dict[port_num] == '1'):
elif (not presence and self._global_port_pres_dict[port_num] == '1'):
self._global_port_pres_dict[port_num] = '0'
port_dict[port_num] = '0'
if (len(port_dict) > 0):
return True, port_dict
time.sleep(1)
@property
@ -225,7 +162,7 @@ class SfpUtil(SfpUtilBase):
@property
def qsfp_ports(self):
return range(0, self._port_in_block + 1)
return range(0, self._port_end + 1)
@property
def port_to_eeprom_mapping(self):

View File

@ -1,4 +1,3 @@
{
"skip_ledd": true,
"skip_thermalctld": true
"skip_ledd": true
}

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -2,7 +2,7 @@
try:
from sonic_eeprom import eeprom_tlvinfo
except ImportError, e:
except ImportError as e:
raise ImportError (str(e) + "- required module not found")
class board(eeprom_tlvinfo.TlvInfoDecoder):

View File

@ -4,7 +4,7 @@ try:
import time
import json
from sonic_sfp.sfputilbase import SfpUtilBase
except ImportError, e:
except ImportError as e:
raise ImportError (str(e) + "- required module not found")
attr_path = '/sys/class/hwmon/hwmon2/device/'

View File

@ -1,4 +1,3 @@
{
"skip_ledd": true,
"skip_thermalctld": true
"skip_ledd": true
}

View File

@ -2,7 +2,7 @@
try:
from sonic_eeprom import eeprom_tlvinfo
except ImportError, e:
except ImportError as e:
raise ImportError (str(e) + "- required module not found")
class board(eeprom_tlvinfo.TlvInfoDecoder):

View File

@ -4,7 +4,7 @@ try:
import time
import json
from sonic_sfp.sfputilbase import SfpUtilBase
except ImportError, e:
except ImportError as e:
raise ImportError (str(e) + "- required module not found")
attr_path = '/sys/class/hwmon/hwmon2/device/'

View File

@ -1,4 +1,3 @@
{
"skip_ledd": true,
"skip_thermalctld": true
"skip_ledd": true
}

View File

@ -0,0 +1 @@
escc601-32q t1

View File

@ -76,16 +76,13 @@
},
"BUFFER_POOL": {
"ingress_lossless_pool": {
"size": "47218432",
"size": "23201280",
"type": "ingress",
"mode": "dynamic",
"xoff": "17708800"
"xoff": "7104000"
},
"lossy_pool": {
"size": "18874368",
"type": "egress",
"mode": "dynamic",
"xoff": "0"
"size": "27601920",
"type": "egress"
}
},
"BUFFER_PROFILE": {
@ -99,12 +96,12 @@
"egress_lossless_profile": {
"pool":"[BUFFER_POOL|ingress_lossless_pool]",
"size":"0",
"static_th":"9497600"
"static_th":"23001600"
},
"ingress_lossy_profile": {
"pool":"[BUFFER_POOL|lossy_pool]",
"size":"0",
"static_th":"9497600"
"static_th":"23001600"
},
"egress_lossy_profile": {
"pool":"[BUFFER_POOL|lossy_pool]",

View File

@ -7,17 +7,15 @@
{
"BUFFER_POOL": {
"lossy_pool": {
"size": "56985600",
"size": "46003200",
"type": "egress",
"mode": "dynamic",
"xoff": "0"
}
},
"BUFFER_PROFILE": {
"ingress_lossy_profile": {
"pool":"[BUFFER_POOL|lossy_pool]",
"size":"0",
"static_th":"9497600"
"static_th":"23001600"
},
"egress_lossy_profile": {
"pool":"[BUFFER_POOL|lossy_pool]",

View File

@ -76,16 +76,13 @@
},
"BUFFER_POOL": {
"ingress_lossless_pool": {
"size": "47218432",
"size": "23201280",
"type": "ingress",
"mode": "dynamic",
"xoff": "17708800"
"xoff": "7104000"
},
"lossy_pool": {
"size": "18874368",
"type": "egress",
"mode": "dynamic",
"xoff": "0"
"size": "27601920",
"type": "egress"
}
},
"BUFFER_PROFILE": {
@ -99,12 +96,12 @@
"egress_lossless_profile": {
"pool":"[BUFFER_POOL|ingress_lossless_pool]",
"size":"0",
"static_th":"9497600"
"static_th":"23001600"
},
"ingress_lossy_profile": {
"pool":"[BUFFER_POOL|lossy_pool]",
"size":"0",
"static_th":"9497600"
"static_th":"23001600"
},
"egress_lossy_profile": {
"pool":"[BUFFER_POOL|lossy_pool]",

View File

@ -0,0 +1,397 @@
ifcs:
options:
log_level: "info"
nodes:
- node_id: "0"
options:
sku: "configs/sku/innovium.55610"
netdev:
- auto_create: "no"
multi_interface: "yes"
buffer_management_mode: "api_driven"
max_lossless_tc: "2"
skip_pll_check: "false"
ilpm_enable: "1"
forward_profile: "IFCS_FORWARD_PROFILE_ID_PROFILE_E"
mac_clk: "1340"
sys_clk: "2000"
ifc_clk: "1000"
txring:
- txring_id: "0"
desc_count: "1024"
prio: "1"
netdev: "true"
- txring_id: "1"
desc_count: "1024"
prio: "1"
netdev: "true"
- txring_id: "2"
desc_count: "1024"
prio: "1"
netdev: "true"
- txring_id: "3"
desc_count: "1024"
prio: "1"
netdev: "true"
rxring:
- rxring_id: "0"
desc_count: "1024"
prio: "1"
netdev: "true"
queues: "0, 3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39"
- rxring_id: "1"
desc_count: "1024"
prio: "1"
netdev: "true"
queues: "1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34, 37, 40"
- rxring_id: "2"
desc_count: "1024"
prio: "1"
netdev: "true"
queues: "2, 5, 8, 11, 14, 17, 20, 23, 26, 29, 32, 35, 38, 41, 47"
- rxring_id: "3"
desc_count: "1024"
prio: "1"
queues: "42, 43, 44, 45, 46"
devports:
- id: "0"
sysport: "1000"
type: "cpu"
- fec: "KPFEC"
id: "121"
lanes: "0:4"
serdes_group: "15"
speed: "200G"
sysport: "121"
type: "eth"
- fec: "KPFEC"
id: "125"
lanes: "4:4"
serdes_group: "15"
speed: "200G"
sysport: "125"
type: "eth"
- fec: "KPFEC"
id: "113"
lanes: "0:4"
serdes_group: "14"
speed: "200G"
sysport: "113"
type: "eth"
- fec: "KPFEC"
id: "117"
lanes: "4:4"
serdes_group: "14"
speed: "200G"
sysport: "117"
type: "eth"
- fec: "KPFEC"
id: "105"
lanes: "0:4"
serdes_group: "13"
speed: "200G"
sysport: "105"
type: "eth"
- fec: "KPFEC"
id: "109"
lanes: "4:4"
serdes_group: "13"
speed: "200G"
sysport: "109"
type: "eth"
- fec: "KPFEC"
id: "97"
lanes: "0:4"
serdes_group: "12"
speed: "200G"
sysport: "97"
type: "eth"
- fec: "KPFEC"
id: "101"
lanes: "4:4"
serdes_group: "12"
speed: "200G"
sysport: "101"
type: "eth"
- fec: "KPFEC"
id: "89"
lanes: "0:4"
serdes_group: "11"
speed: "200G"
sysport: "89"
type: "eth"
- fec: "KPFEC"
id: "93"
lanes: "4:4"
serdes_group: "11"
speed: "200G"
sysport: "93"
type: "eth"
- fec: "KPFEC"
id: "81"
lanes: "0:4"
serdes_group: "10"
speed: "200G"
sysport: "81"
type: "eth"
- fec: "KPFEC"
id: "85"
lanes: "4:4"
serdes_group: "10"
speed: "200G"
sysport: "85"
type: "eth"
- fec: "KPFEC"
id: "73"
lanes: "0:4"
serdes_group: "9"
speed: "200G"
sysport: "73"
type: "eth"
- fec: "KPFEC"
id: "77"
lanes: "4:4"
serdes_group: "9"
speed: "200G"
sysport: "77"
type: "eth"
- fec: "KPFEC"
id: "65"
lanes: "0:4"
serdes_group: "8"
speed: "200G"
sysport: "65"
type: "eth"
- fec: "KPFEC"
id: "69"
lanes: "4:4"
serdes_group: "8"
speed: "200G"
sysport: "69"
type: "eth"
- fec: "KPFEC"
id: "57"
lanes: "0:4"
serdes_group: "7"
speed: "200G"
sysport: "57"
type: "eth"
- fec: "KPFEC"
id: "61"
lanes: "4:4"
serdes_group: "7"
speed: "200G"
sysport: "61"
type: "eth"
- fec: "KPFEC"
id: "49"
lanes: "0:4"
serdes_group: "6"
speed: "200G"
sysport: "49"
type: "eth"
- fec: "KPFEC"
id: "53"
lanes: "4:4"
serdes_group: "6"
speed: "200G"
sysport: "53"
type: "eth"
- fec: "KPFEC"
id: "41"
lanes: "0:4"
serdes_group: "5"
speed: "200G"
sysport: "41"
type: "eth"
- fec: "KPFEC"
id: "45"
lanes: "4:4"
serdes_group: "5"
speed: "200G"
sysport: "45"
type: "eth"
- fec: "KPFEC"
id: "33"
lanes: "0:4"
serdes_group: "4"
speed: "200G"
sysport: "33"
type: "eth"
- fec: "KPFEC"
id: "37"
lanes: "4:4"
serdes_group: "4"
speed: "200G"
sysport: "37"
type: "eth"
- fec: "KPFEC"
id: "25"
lanes: "0:4"
serdes_group: "3"
speed: "200G"
sysport: "25"
type: "eth"
- fec: "KPFEC"
id: "29"
lanes: "4:4"
serdes_group: "3"
speed: "200G"
sysport: "29"
type: "eth"
- fec: "KPFEC"
id: "17"
lanes: "0:4"
serdes_group: "2"
speed: "200G"
sysport: "17"
type: "eth"
- fec: "KPFEC"
id: "21"
lanes: "4:4"
serdes_group: "2"
speed: "200G"
sysport: "21"
type: "eth"
- fec: "KPFEC"
id: "9"
lanes: "0:4"
serdes_group: "1"
speed: "200G"
sysport: "9"
type: "eth"
- fec: "KPFEC"
id: "13"
lanes: "4:4"
serdes_group: "1"
speed: "200G"
sysport: "13"
type: "eth"
- fec: "KPFEC"
id: "1"
lanes: "0:4"
serdes_group: "0"
speed: "200G"
sysport: "1"
type: "eth"
- fec: "KPFEC"
id: "5"
lanes: "4:4"
serdes_group: "0"
speed: "200G"
sysport: "5"
type: "eth"
# Aux ports to be enabled later
# - id: "33"
# fec: "NONE"
# lanes: "0:1"
# serdes_group: "16"
# speed: "10G"
# sysport: "33"
# type: "mgmt 0"
# - id: "34"
# fec: "NONE"
# lanes: "1:1"
# serdes_group: "16"
# speed: "10G"
# sysport: "34"
# type: "mgmt 1"
isg:
- id: "0"
tx_polarity: "00001010"
rx_polarity: "01001001"
lane_swap: "46750132"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "1"
tx_polarity: "00011111"
rx_polarity: "01101001"
lane_swap: "46752130"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "2"
tx_polarity: "00101000"
rx_polarity: "11110111"
lane_swap: "57462301"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "3"
tx_polarity: "00111101"
rx_polarity: "00101101"
lane_swap: "67542301"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "4"
tx_polarity: "01110110"
rx_polarity: "01111101"
lane_swap: "76543021"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "5"
tx_polarity: "00100100"
rx_polarity: "01101010"
lane_swap: "76542103"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "6"
tx_polarity: "11000011"
rx_polarity: "11110101"
lane_swap: "45672013"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "7"
tx_polarity: "10011101"
rx_polarity: "11111010"
lane_swap: "74562103"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "8"
tx_polarity: "01001000"
rx_polarity: "00100011"
lane_swap: "54672301"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "9"
tx_polarity: "11111111"
rx_polarity: "01110111"
lane_swap: "46750321"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "10"
tx_polarity: "10011110"
rx_polarity: "10110000"
lane_swap: "67542310"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "11"
tx_polarity: "01010010"
rx_polarity: "10101011"
lane_swap: "65741302"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "12"
tx_polarity: "11010110"
rx_polarity: "01101001"
lane_swap: "45760321"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "13"
tx_polarity: "01110111"
rx_polarity: "00101000"
lane_swap: "45670123"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "14"
tx_polarity: "11110110"
rx_polarity: "10111100"
lane_swap: "67542013"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"
- id: "15"
tx_polarity: "01011011"
rx_polarity: "01101000"
lane_swap: "64572103"
pre1: "-3, -3, -3, -3, -3, -3, -3, -3"
main: "20, 20, 20, 20, 20, 20, 20, 20"

View File

@ -0,0 +1,62 @@
sku: innovium.55610
device_id: 0x1b59
# Hardware constraint information
hardware:
num_ibs: 2
ib_active: 0, 1
ports_per_ib: 64, 64
recirc_port_num: 64, 64
cpu_port_num: 65
cpu_port_ib: 0
mgmt_port_num: 65, 66
mgmt_port_ibs: 1, 1
pics_per_ib: 9, 9
pic_ports_per_pic: 8
max_serdes_speed: 50
num_shared_pics: 0
isg [0-7]:
ib: 0
pic_id: [0-7]
isg 8:
ib: 1
pic_id: 7
isg 9:
ib: 1
pic_id: 6
isg 10:
ib: 1
pic_id: 5
isg 11:
ib: 1
pic_id: 4
isg 12:
ib: 1
pic_id: 3
isg 13:
ib: 1
pic_id: 2
isg 14:
ib: 1
pic_id: 1
isg 15:
ib: 1
pic_id: 0
isg 16:
mode: 0:2
ib: 1
pic_id: 8

View File

@ -1,8 +1,8 @@
IFCS_INIT_FILE : "/usr/share/sonic/hwsku/config_64x100G_fab128.yaml"
IFCS_SKU_FILE : "/usr/share/sonic/hwsku/innovium.77700_B"
IFCS_INIT_FILE : "/usr/share/sonic/hwsku/config_32x200G_Cameo-escc601-32q.yaml"
IFCS_SKU_FILE : "/usr/share/sonic/hwsku/innovium.55610"
IFCS_INNO_CLI_PORT : "9999"
IFCS_TARGET : "device"
INNOVIUM_DIR : "/innovium"
PYTHONPATH : "$INNOVIUM_DIR:$INNOVIUM_DIR/cmds:$INNOVIUM_DIR/scripts:$INNOVIUM_DIR/test/:$INNOVIUM_DIR/test/utils:$INNOVIUM_DIR/utils:$INNOVIUM_DIR/pyctypes"
IVM_SAI_DATAPATH_CONFIG_FILE: "/usr/share/sonic/hwsku/ivm.sai.datapath.config.yaml"
IVM_SAI_PARAM_A0008: "32"
IVM_SAI_PARAM_A0008: "64"

View File

@ -0,0 +1,9 @@
ISAI_PARAM_P0_0_LS : "9216 9216"
ISAI_PARAM_P0_1_LS : "2850 2650"
ISAI_PARAM_P0_1_ALS : "290 90"
ISAI_PARAM_P1_0_LS : "3072 3072"
ISAI_PARAM_P1_0_LL : "6144 6144"
ISAI_PARAM_P1_1_LS : "2210 2010"
ISAI_PARAM_P1_1_LL : "1330 1330"
ISAI_PARAM_P1_1_ALS : "290 90"
ISAI_PARAM_P1_1_ALL : "50 50"

View File

@ -0,0 +1,33 @@
# name lanes speed index mtu fec
Ethernet0 121,122,123,124 200000 0 9126 rs
Ethernet4 125,126,127,128 200000 1 9126 rs
Ethernet8 113,114,115,116 200000 2 9126 rs
Ethernet12 117,118,119,120 200000 3 9126 rs
Ethernet16 105,106,107,108 200000 4 9126 rs
Ethernet20 109,110,111,112 200000 5 9126 rs
Ethernet24 97,98,99,100 200000 6 9126 rs
Ethernet28 101,102,103,104 200000 7 9126 rs
Ethernet32 89,90,91,92 200000 8 9126 rs
Ethernet36 93,94,95,96 200000 9 9126 rs
Ethernet40 81,82,83,84 200000 10 9126 rs
Ethernet44 85,86,87,88 200000 11 9126 rs
Ethernet48 73,74,75,76 200000 12 9126 rs
Ethernet52 77,78,79,80 200000 13 9126 rs
Ethernet56 65,66,67,68 200000 14 9126 rs
Ethernet60 69,70,71,72 200000 15 9126 rs
Ethernet64 57,58,59,60 200000 16 9126 rs
Ethernet68 61,62,63,64 200000 17 9126 rs
Ethernet72 49,50,51,52 200000 18 9126 rs
Ethernet76 53,54,55,56 200000 19 9126 rs
Ethernet80 41,42,43,44 200000 20 9126 rs
Ethernet84 45,46,47,48 200000 21 9126 rs
Ethernet88 33,34,35,36 200000 22 9126 rs
Ethernet92 37,38,39,40 200000 23 9126 rs
Ethernet96 25,26,27,28 200000 24 9126 rs
Ethernet100 29,30,31,32 200000 25 9126 rs
Ethernet104 17,18,19,20 200000 26 9126 rs
Ethernet108 21,22,23,24 200000 27 9126 rs
Ethernet112 9,10,11,12 200000 28 9126 rs
Ethernet116 13,14,15,16 200000 29 9126 rs
Ethernet120 1,2,3,4 200000 30 9126 rs
Ethernet124 5,6,7,8 200000 31 9126 rs

View File

@ -0,0 +1,3 @@
CONSOLE_PORT=0x3f8
CONSOLE_DEV=0
CONSOLE_SPEED=115200

View File

@ -0,0 +1,16 @@
#!/bin/sh
mr_reboot() {
sudo rmmod x86-64-cameo-escc601-32q
sudo i2cset -y 0 0x30 0xa1 0
}
if [ $# -eq 0 ] || [ $@ = "-f" ] || [ $@ = "--force" ] || [ $@ = "reboot" ]; then
mr_reboot
elif [ $@ = "-p" ] ; then
sudo halt
else
echo "unsupported option"
fi

View File

@ -0,0 +1,12 @@
#!/usr/bin/env python
try:
from sonic_eeprom import eeprom_tlvinfo
except ImportError as e:
raise ImportError (str(e) + "- required module not found")
class board(eeprom_tlvinfo.TlvInfoDecoder):
_TLV_INFO_MAX_LEN = 256
def __init__(self, name, path, cpld_root, ro):
self.eeprom_path = "/sys/bus/i2c/devices/0-0056/eeprom"
super(board, self).__init__(self.eeprom_path, 0, '', True)

View File

@ -0,0 +1,84 @@
"""SONiC LED plugin to control LED on/off/blinking when link-up/link-down/flowing-traffic
"""
def platform_configure_led(isg, lane, link_status, detailed_speed, activity_status):
""" Configure LED to turn on/off/blink based on link-up/link-down/activity-status
Args:
isg, lane, link_status, detailed_speed, activity_status
Returns:
cmd
Raises:
none
"""
base_cmd = 'i2cset -f -y 0 0x38'
isg_to_bitset_map = {
'ISG0':'0',
'ISG1':'1',
'ISG2':'2',
'ISG3':'3',
'ISG4':'4',
'ISG5':'5',
'ISG6':'6',
'ISG7':'7',
'ISG8':'8',
'ISG9':'9',
'ISG10':'a',
'ISG11':'b',
'ISG12':'c',
'ISG13':'d',
'ISG14':'e',
'ISG15':'f'
}
detailed_speed_to_bitset_map = {
'400G/50G':'0',
'200G/50G':'1',
'200G/25G':'2',
'100G/50G':'3',
'50G/50G':'4',
'100G/25G':'5',
'50G/25G':'6',
'25G/25G':'7',
'40G/10G':'8',
'10G/10G':'9'
}
try:
if link_status == 'D':
arg = '0x' + isg_to_bitset_map[isg] + str(lane)
cmd = base_cmd + ' ' + arg + ' 0x00'
elif link_status == 'U':
arg1 = '0x' + isg_to_bitset_map[isg] + str(lane)
arg2 = '0x' + str(1+(2*activity_status)) + detailed_speed_to_bitset_map[detailed_speed]
cmd = base_cmd + ' ' + arg1 + ' ' + arg2
return cmd
except Exception:
print('Error when processing command: {}'.format(cmd))
raise
def platform_configure_switch_led_control_from_TL5_to_CPU():
""" Configure switch LED stream from TL5 to CPU through i2c
Args:
none
Returns:
cmd
Raises:
none
"""
cmd = 'i2cset -f -y 0 0x30 0xa0 0xf'
return cmd
def main():
""" Main function.
Args:
none
Returns:
none
Raises:
none
"""
return
if __name__ == '__main__':
main()

View File

@ -0,0 +1,95 @@
#
# psuutil.py
# Platform-specific PSU status interface for SONiC
#
import os.path
try:
from sonic_psu.psu_base import PsuBase
except ImportError as e:
raise ImportError(str(e) + "- required module not found")
attr_path = '/sys/class/hwmon/hwmon2/device/ESCC601_POWER/'
class PsuUtil(PsuBase):
"""Platform-specific PSUutil class"""
def __init__(self):
PsuBase.__init__(self)
# Get sysfs attribute
def get_attr_value(self, path):
retval = 'ERR'
if (not os.path.isfile(path)):
return retval
try:
with open(path, 'r') as fd:
retval = fd.read()
except Exception as error:
logging.error("Unable to open ", path, " file !")
retval = retval.rstrip('\r\n')
return retval
def get_num_psus(self):
"""
Retrieves the number of PSUs available on the device
:return: An integer, the number of PSUs available on the device
"""
MAX_PSUS = 2
return MAX_PSUS
def get_psu_status(self, index):
"""
Retrieves the oprational status of power supply unit (PSU) defined
by index <index>
:param index: An integer, index of the PSU of which to query status
:return: Boolean, True if PSU is operating properly, False if PSU is\
faulty
"""
status = 0
attr_file = 'psu{}_good'.format(index)
status_path = attr_path + attr_file
try:
reg_file = open(status_path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text = reg_file.read()
if int(text) == 1:
status = 1
reg_file.close()
return status
def get_psu_presence(self, index):
"""
Retrieves the presence status of power supply unit (PSU) defined
by index <index>
:param index: An integer, index of the PSU of which to query status
:return: Boolean, True if PSU is plugged, False if not
"""
status = 0
attr_file ='psu{}_prnt'.format(index)
presence_path = attr_path + attr_file
try:
reg_file = open(presence_path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text = reg_file.read()
if int(text) == 1:
status = 1
reg_file.close()
return status

View File

@ -0,0 +1,166 @@
#!/usr/bin/env python
try:
import time
import json
from sonic_sfp.sfputilbase import SfpUtilBase
except ImportError as e:
raise ImportError (str(e) + "- required module not found")
attr_path = '/sys/class/hwmon/hwmon2/device/'
PLATFORM_INSTALL_INFO_FILE="/etc/sonic/platform_install.json"
PLATFORM_SFP_GROUPS = ['SFP-G01','SFP-G02','SFP-G03','SFP-G04']
QSFP_RESET_FILE = 'ESCC601_QSFP/qsfp{}_reset'
QSFP_LOWPOWER_FILE = 'ESCC601_QSFP/qsfp{}_low_power'
QSFP_PRESENT_FILE = 'ESCC601_QSFP/qsfp{}_present'
class SfpUtil(SfpUtilBase):
"""Platform specific SfpUtill class"""
_port_start = 0
_port_end = 31
_port_in_block =32
_port_to_eeprom_mapping = {}
_global_port_pres_dict = {}
def __init__(self):
eeprom_path = "{}/eeprom"
path_list = self.get_sfp_path()
for x in range(self._port_start, self._port_end + 1):
port_eeprom_path = eeprom_path.format(path_list[x])
self._port_to_eeprom_mapping[x] = port_eeprom_path
self.init_global_port_presence()
SfpUtilBase.__init__(self)
def get_sfp_path(self):
map = []
with open(PLATFORM_INSTALL_INFO_FILE) as fd:
install_info = json.load(fd)
for sfp_group_name in PLATFORM_SFP_GROUPS:
sfp_group = install_info[2][sfp_group_name]
map = map + sfp_group['paths']
return map
def reset(self, port_num):
# Check for invalid port_num
if port_num < self._port_start or port_num > self._port_end:
return False
path = attr_path+QSFP_RESET_FILE.format(port_num+1)
try:
reg_file = open(path, 'w')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
reg_file.seek(0)
reg_file.write('1')
reg_file.close()
return True
def set_low_power_mode(self, port_num, lpmode):
# Check for invalid port_num
if port_num < self.port_start or port_num > self.port_end:
return False
path = attr_path+QSFP_LOWPOWER_FILE.format(port_num+1)
try:
reg_file = open(path, 'w')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
# the gpio pin is ACTIVE_HIGH
if lpmode is True:
val = "1"
else:
val = "0"
# write value to gpio
reg_file.seek(0)
reg_file.write(val)
reg_file.close()
return True
def get_low_power_mode(self, port_num):
# Check for invalid port_num
if port_num < self._port_start or port_num > self._port_end:
return False
path = attr_path+QSFP_LOWPOWER_FILE.format(port_num+1)
try:
reg_file = open(path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text = reg_file.read()
reg_file.close()
if int(text) == 1:
return True
return False
def get_presence(self, port_num):
# Check for invalid port_num
if port_num < self._port_start or port_num > self._port_end:
return False
path = attr_path+QSFP_PRESENT_FILE.format(port_num+1)
try:
reg_file = open(path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text = reg_file.read()
reg_file.close()
if int(text) == 1:
return True
return False
def init_global_port_presence(self):
for port_num in range(self.port_start, (self.port_end + 1)):
presence = self.get_presence(port_num)
if(presence):
self._global_port_pres_dict[port_num] = '1'
else:
self._global_port_pres_dict[port_num] = '0'
def get_transceiver_change_event(self, timeout=0):
port_dict = {}
while True:
for port_num in range(self.port_start, (self.port_end + 1)):
presence = self.get_presence(port_num)
if(presence and self._global_port_pres_dict[port_num] == '0'):
self._global_port_pres_dict[port_num] = '1'
port_dict[port_num] = '1'
elif(not presence and
self._global_port_pres_dict[port_num] == '1'):
self._global_port_pres_dict[port_num] = '0'
port_dict[port_num] = '0'
if(len(port_dict) > 0):
return True, port_dict
time.sleep(1)
@property
def port_start(self):
return self._port_start
@property
def port_end(self):
return self._port_end
@property
def qsfp_ports(self):
return range(0, self._port_in_block + 1)
@property
def port_to_eeprom_mapping(self):
return self._port_to_eeprom_mapping

View File

@ -0,0 +1,3 @@
{
"skip_ledd": true
}

View File

@ -0,0 +1,3 @@

View File

@ -2,7 +2,7 @@
try:
from sonic_eeprom import eeprom_tlvinfo
except ImportError, e:
except ImportError as e:
raise ImportError (str(e) + "- required module not found")
class board(eeprom_tlvinfo.TlvInfoDecoder):

View File

@ -11,7 +11,7 @@ try:
except ImportError as e:
raise ImportError(str(e) + "- required module not found")
attr_path = '/sys/class/hwmon/hwmon2/device/'
attr_path = '/sys/class/hwmon/hwmon2/device/ESQC610_POWER/'
class PsuUtil(PsuBase):
"""Platform-specific PSUutil class"""
@ -53,18 +53,16 @@ class PsuUtil(PsuBase):
faulty
"""
status = 0
attr_file = 'psu_status'
status_path = attr_path+'/ESQC610_PSU/' + attr_file
attr_file = 'psu{}_good'.format(index)
status_path = attr_path + attr_file
try:
reg_file = open(status_path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text_lines = reg_file.read()
text = reg_file.read()
search_str = "PSU {} is power Good".format(index)
if search_str in text_lines:
if int(text) == 1:
status = 1
reg_file.close()
@ -79,18 +77,16 @@ class PsuUtil(PsuBase):
:return: Boolean, True if PSU is plugged, False if not
"""
status = 0
attr_file ='psu_present'
presence_path = attr_path+'ESQC610_PSU/' + attr_file
attr_file ='psu{}_prnt'.format(index)
presence_path = attr_path + attr_file
try:
reg_file = open(presence_path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text_lines = reg_file.read()
text = reg_file.read()
search_str = "PSU {} is present".format(index)
if search_str in text_lines:
if int(text) == 1:
status = 1
reg_file.close()

View File

@ -4,13 +4,19 @@ try:
import time
import json
from sonic_sfp.sfputilbase import SfpUtilBase
except ImportError, e:
except ImportError as e:
raise ImportError (str(e) + "- required module not found")
attr_path = '/sys/class/hwmon/hwmon2/device/'
PLATFORM_INSTALL_INFO_FILE="/etc/sonic/platform_install.json"
PLATFORM_SFP_GROUPS = ['SFP-G01','SFP-G02','SFP-G03','SFP-G04','SFP-G05', 'SFP-G06', 'SFP-G07']
QSFP_RESET_FILE = 'ESQC610_QSFP/qsfp{}_reset'
QSFP_LOWPOWER_FILE = 'ESQC610_QSFP/qsfp{}_low_power'
QSFP_PRESENT_FILE = 'ESQC610_QSFP/qsfp{}_present'
SFP_PRESENT_FILE = 'ESQC610_SFP/sfp{}_present'
class SfpUtil(SfpUtilBase):
"""Platform specific SfpUtill class"""
@ -45,28 +51,25 @@ class SfpUtil(SfpUtilBase):
if port_num < self._qsfp_port_start or port_num > self._port_end:
return False
path = attr_path+'ESQC610_QSFP/QSFP_reset'
path = attr_path+QSFP_RESET_FILE.format(port_num-self._qsfp_port_start+1)
try:
reg_file = open(path, 'w')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
#toggle reset
#reg_file.seek(0)
reg_file.write(str(port_num-self._qsfp_port_start+1))
#time.sleep(1)
#reg_file.seek(0)
#reg_file.write('0')
reg_file.seek(0)
reg_file.write('1')
reg_file.close()
return True
def set_low_power_mode(self, port_num, lpmode):
# Check for invalid port_num
if port_num < self._qsfp_port_start or port_num > self.port_end:
if port_num < self._qsfp_port_start or port_num > self._port_end:
return False
path = attr_path+'ESQC610_QSFP/QSFP_low_power_'+str(port_num-self._qsfp_port_start+1)
path = attr_path+QSFP_LOWPOWER_FILE.format(port_num-self._qsfp_port_start+1)
try:
reg_file = open(path, 'w')
except IOError as e:
@ -91,16 +94,16 @@ class SfpUtil(SfpUtilBase):
if port_num < self._qsfp_port_start or port_num > self._port_end:
return False
path = attr_path+'ESQC610_QSFP/QSFP_low_power_'+str(port_num-self._qsfp_port_start+1)
path = attr_path+QSFP_LOWPOWER_FILE.format(port_num-self._qsfp_port_start+1)
try:
reg_file = open(path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text_lines = reg_file.readline()
text = reg_file.read()
reg_file.close()
if text_lines.find('OFF') < 0:
if int(text) == 1:
return True
return False
@ -111,26 +114,24 @@ class SfpUtil(SfpUtilBase):
return False
if port_num >= self._qsfp_port_start:
path = attr_path+'ESQC610_QSFP/QSFP_present'
line = port_num - self._qsfp_port_start
path = attr_path+QSFP_PRESENT_FILE.format(port_num-self._qsfp_port_start+1)
else:
path = attr_path+'ESQC610_SFP/SFP_present'
line = port_num
path = attr_path+SFP_PRESENT_FILE.format(port_num+1)
try:
reg_file = open(path, 'r')
except IOError as e:
print( "Error: unable to open file: %s" % str(e))
return False
text_lines = reg_file.readlines()
text = reg_file.read()
reg_file.close()
if text_lines[line].find('not') < 0:
if int(text) == 1:
return True
return False
def init_global_port_presence(self):
for port_num in range(self.port_start, (self.port_end + 1)):
for port_num in range(self._port_start, (self._port_end + 1)):
presence = self.get_presence(port_num)
if(presence):
self._global_port_pres_dict[port_num] = '1'
@ -140,7 +141,7 @@ class SfpUtil(SfpUtilBase):
def get_transceiver_change_event(self, timeout=0):
port_dict = {}
while True:
for port_num in range(self.port_start, (self.port_end + 1)):
for port_num in range(self._port_start, (self._port_end + 1)):
presence = self.get_presence(port_num)
if(presence and self._global_port_pres_dict[port_num] == '0'):
self._global_port_pres_dict[port_num] = '1'
@ -165,7 +166,7 @@ class SfpUtil(SfpUtilBase):
@property
def qsfp_ports(self):
return range(self._qsfp_port_start, self._port_in_block + 1)
return range(self._qsfp_port_start, self._port_end + 1)
@property
def port_to_eeprom_mapping(self):

View File

@ -1,4 +1,3 @@
{
"skip_ledd": true,
"skip_thermalctld": true
"skip_ledd": true
}

View File

@ -1 +0,0 @@
fabric-1208i t1

View File

@ -1,417 +0,0 @@
ifcs:
options:
log_level: "off"
nodes:
- node_id: "0"
options:
sku: "configs/sku/innovium.77700_A"
netdev:
- auto_create: "no"
multi_interface: "yes"
buffer_management_mode: "api_driven"
max_lossless_tc: "2"
skip_pll_check: "false"
mbist_on_init: "true"
ilpm_enable: "1"
forward_profile: "IFCS_FORWARD_PROFILE_ID_PROFILE_E"
txring:
- txring_id: "0"
desc_count: "1024"
prio: "1"
netdev: "true"
- txring_id: "1"
desc_count: "1024"
prio: "1"
netdev: "true"
- txring_id: "2"
desc_count: "1024"
prio: "1"
netdev: "true"
- txring_id: "3"
desc_count: "1024"
prio: "1"
netdev: "true"
rxring:
- rxring_id: "0"
desc_count: "1024"
prio: "1"
netdev: "true"
queues: "0, 3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39"
- rxring_id: "1"
desc_count: "1024"
prio: "1"
netdev: "true"
queues: "1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34, 37, 40"
- rxring_id: "2"
desc_count: "1024"
prio: "1"
netdev: "true"
queues: "2, 5, 8, 11, 14, 17, 20, 23, 26, 29, 32, 35, 38, 41, 47"
- rxring_id: "3"
desc_count: "1024"
prio: "1"
queues: "42, 43, 44, 45, 46"
sys_clk: "1720"
ifc_clk: "1200"
mac_clk: "1340"
devports:
- id: "0"
sysport: "1000"
type: "cpu"
- fec: "KPFEC"
id: "1"
lanes: "0:8"
serdes_group: "4"
speed: "400G"
sysport: "1"
type: "eth"
- fec: "KPFEC"
id: "9"
lanes: "0:8"
serdes_group: "5"
speed: "400G"
sysport: "9"
type: "eth"
- fec: "KPFEC"
id: "17"
lanes: "0:8"
serdes_group: "6"
speed: "400G"
sysport: "17"
type: "eth"
- fec: "KPFEC"
id: "25"
lanes: "0:8"
serdes_group: "7"
speed: "400G"
sysport: "25"
type: "eth"
- fec: "KPFEC"
id: "33"
lanes: "0:8"
serdes_group: "0"
speed: "400G"
sysport: "33"
type: "eth"
- fec: "KPFEC"
id: "41"
lanes: "0:8"
serdes_group: "1"
speed: "400G"
sysport: "41"
type: "eth"
- fec: "KPFEC"
id: "49"
lanes: "0:8"
serdes_group: "2"
speed: "400G"
sysport: "49"
type: "eth"
- fec: "KPFEC"
id: "57"
lanes: "0:8"
serdes_group: "3"
speed: "400G"
sysport: "57"
type: "eth"
- fec: "KPFEC"
id: "65"
lanes: "0:8"
serdes_group: "28"
speed: "400G"
sysport: "65"
type: "eth"
- fec: "KPFEC"
id: "73"
lanes: "0:8"
serdes_group: "29"
speed: "400G"
sysport: "73"
type: "eth"
- fec: "KPFEC"
id: "81"
lanes: "0:8"
serdes_group: "30"
speed: "400G"
sysport: "81"
type: "eth"
- fec: "KPFEC"
id: "89"
lanes: "0:8"
serdes_group: "31"
speed: "400G"
sysport: "89"
type: "eth"
- fec: "KPFEC"
id: "97"
lanes: "0:8"
serdes_group: "24"
speed: "400G"
sysport: "97"
type: "eth"
- fec: "KPFEC"
id: "105"
lanes: "0:8"
serdes_group: "25"
speed: "400G"
sysport: "105"
type: "eth"
- fec: "KPFEC"
id: "113"
lanes: "0:8"
serdes_group: "26"
speed: "400G"
sysport: "113"
type: "eth"
- fec: "KPFEC"
id: "121"
lanes: "0:8"
serdes_group: "27"
speed: "400G"
sysport: "121"
type: "eth"
- fec: "KPFEC"
id: "129"
lanes: "0:8"
serdes_group: "20"
speed: "400G"
sysport: "129"
type: "eth"
- fec: "KPFEC"
id: "137"
lanes: "0:8"
serdes_group: "21"
speed: "400G"
sysport: "137"
type: "eth"
- fec: "KPFEC"
id: "145"
lanes: "0:8"
serdes_group: "22"
speed: "400G"
sysport: "145"
type: "eth"
- fec: "KPFEC"
id: "153"
lanes: "0:8"
serdes_group: "23"
speed: "400G"
sysport: "153"
type: "eth"
- fec: "KPFEC"
id: "161"
lanes: "0:8"
serdes_group: "16"
speed: "400G"
sysport: "161"
type: "eth"
- fec: "KPFEC"
id: "169"
lanes: "0:8"
serdes_group: "17"
speed: "400G"
sysport: "169"
type: "eth"
- fec: "KPFEC"
id: "177"
lanes: "0:8"
serdes_group: "18"
speed: "400G"
sysport: "177"
type: "eth"
- fec: "KPFEC"
id: "185"
lanes: "0:8"
serdes_group: "19"
speed: "400G"
sysport: "185"
type: "eth"
- fec: "KPFEC"
id: "193"
lanes: "0:8"
serdes_group: "12"
speed: "400G"
sysport: "193"
type: "eth"
- fec: "KPFEC"
id: "201"
lanes: "0:8"
serdes_group: "13"
speed: "400G"
sysport: "201"
type: "eth"
- fec: "KPFEC"
id: "209"
lanes: "0:8"
serdes_group: "14"
speed: "400G"
sysport: "209"
type: "eth"
- fec: "KPFEC"
id: "217"
lanes: "0:8"
serdes_group: "15"
speed: "400G"
sysport: "217"
type: "eth"
- fec: "KPFEC"
id: "225"
lanes: "0:8"
serdes_group: "8"
speed: "400G"
sysport: "225"
type: "eth"
- fec: "KPFEC"
id: "233"
lanes: "0:8"
serdes_group: "9"
speed: "400G"
sysport: "233"
type: "eth"
- fec: "KPFEC"
id: "241"
lanes: "0:8"
serdes_group: "10"
speed: "400G"
sysport: "241"
type: "eth"
- fec: "KPFEC"
id: "249"
lanes: "0:8"
serdes_group: "11"
speed: "400G"
sysport: "249"
type: "eth"
isg:
- id: "0"
tx_polarity: "01011011"
rx_polarity: "11001111"
lane_swap: "01235467"
- id: "1"
tx_polarity: "01011011"
rx_polarity: "01001111"
lane_swap: "01234567"
- id: "2"
tx_polarity: "10110100"
rx_polarity: "10001110"
lane_swap: "73215460"
- id: "3"
tx_polarity: "11111110"
rx_polarity: "10011111"
lane_swap: "71234560"
- id: "4"
tx_polarity: "01001011"
rx_polarity: "11011010"
lane_swap: "01235467"
- id: "5"
tx_polarity: "01001011"
rx_polarity: "01001111"
lane_swap: "01234567"
- id: "6"
tx_polarity: "11110100"
rx_polarity: "10010110"
lane_swap: "73215460"
- id: "7"
tx_polarity: "11111101"
rx_polarity: "11110011"
lane_swap: "53164720"
- id: "8"
tx_polarity: "00101001"
rx_polarity: "01101001"
lane_swap: "01234567"
- id: "9"
tx_polarity: "00101001"
rx_polarity: "01101001"
lane_swap: "01234567"
- id: "10"
tx_polarity: "10010110"
rx_polarity: "10110100"
lane_swap: "73215460"
- id: "11"
tx_polarity: "10000100"
rx_polarity: "00010100"
lane_swap: "71635420"
- id: "12"
tx_polarity: "00101001"
rx_polarity: "10001001"
lane_swap: "01234567"
- id: "13"
tx_polarity: "01101001"
rx_polarity: "00001011"
lane_swap: "01235467"
- id: "14"
tx_polarity: "10000110"
rx_polarity: "10000010"
lane_swap: "73215460"
- id: "15"
tx_polarity: "10000100"
rx_polarity: "10010100"
lane_swap: "73615420"
- id: "16"
tx_polarity: "00101001"
rx_polarity: "00001011"
lane_swap: "01234567"
- id: "17"
tx_polarity: "00101001"
rx_polarity: "00001011"
lane_swap: "01235467"
- id: "18"
tx_polarity: "00010110"
rx_polarity: "10010110"
lane_swap: "73215460"
- id: "19"
tx_polarity: "11101110"
rx_polarity: "10100100"
lane_swap: "73615420"
- id: "20"
tx_polarity: "01001101"
rx_polarity: "11101011"
lane_swap: "01234567"
- id: "21"
tx_polarity: "11011011"
rx_polarity: "10001011"
lane_swap: "01234567"
- id: "22"
tx_polarity: "11110100"
rx_polarity: "10001111"
lane_swap: "73215460"
- id: "23"
tx_polarity: "11110110"
rx_polarity: "01011100"
lane_swap: "73615420"
- id: "24"
tx_polarity: "01011011"
rx_polarity: "01101101"
lane_swap: "01234567"
- id: "25"
tx_polarity: "01001011"
rx_polarity: "01101101"
lane_swap: "01234567"
- id: "26"
tx_polarity: "11110100"
rx_polarity: "10111100"
lane_swap: "73215460"
- id: "27"
tx_polarity: "10111100"
rx_polarity: "00010100"
lane_swap: "73615420"
- id: "28"
tx_polarity: "01001011"
rx_polarity: "01010101"
lane_swap: "01235467"
- id: "29"
tx_polarity: "01011011"
rx_polarity: "11001010"
lane_swap: "01234567"
- id: "30"
tx_polarity: "11110100"
rx_polarity: "00010111"
lane_swap: "73215460"
- id: "31"
tx_polarity: "11110100"
rx_polarity: "00110111"
lane_swap: "73615420"
- id: "32"
tx_polarity: "00000000"
rx_polarity: "00000000"
lane_swap: "01234567"

View File

@ -1,833 +0,0 @@
ifcs:
options:
log_level: "fatal"
nodes:
- node_id: "0"
options:
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"
multi_interface: "yes"
buffer_management_mode: "api_driven"
max_lossless_tc: "2"
skip_pll_check: "false"
mbist_on_init: "true"
ilpm_enable: "1"
forward_profile: "IFCS_FORWARD_PROFILE_ID_PROFILE_E"
txring:
- txring_id: "0"
desc_count: "1024"
prio: "1"
netdev: "true"
- txring_id: "1"
desc_count: "1024"
prio: "1"
netdev: "true"
- txring_id: "2"
desc_count: "1024"
prio: "1"
netdev: "true"
- txring_id: "3"
desc_count: "1024"
prio: "1"
netdev: "true"
rxring:
- rxring_id: "0"
desc_count: "1024"
prio: "1"
netdev: "true"
queues: "0, 3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39"
- rxring_id: "1"
desc_count: "1024"
prio: "1"
netdev: "true"
queues: "1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34, 37, 40"
- rxring_id: "2"
desc_count: "1024"
prio: "1"
netdev: "true"
queues: "2, 5, 8, 11, 14, 17, 20, 23, 26, 29, 32, 35, 38, 41, 47"
- rxring_id: "3"
desc_count: "1024"
prio: "1"
queues: "42, 43, 44, 45, 46"
sys_clk: "1720"
ifc_clk: "1200"
mac_clk: "1340"
devports:
- id: "0"
sysport: "1000"
type: "cpu"
- fec: "KRFEC"
id: "1"
lanes: "0:4"
serdes_group: "4"
speed: "100G"
sysport: "1"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "5"
lanes: "4:4"
serdes_group: "4"
speed: "100G"
sysport: "5"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "9"
lanes: "0:4"
serdes_group: "5"
speed: "100G"
sysport: "9"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "13"
lanes: "4:4"
serdes_group: "5"
speed: "100G"
sysport: "13"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "17"
lanes: "0:4"
serdes_group: "6"
speed: "100G"
sysport: "17"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "21"
lanes: "4:4"
serdes_group: "6"
speed: "100G"
sysport: "21"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "25"
lanes: "0:4"
serdes_group: "7"
speed: "100G"
sysport: "25"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "29"
lanes: "4:4"
serdes_group: "7"
speed: "100G"
sysport: "29"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "33"
lanes: "0:4"
serdes_group: "0"
speed: "100G"
sysport: "33"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "37"
lanes: "4:4"
serdes_group: "0"
speed: "100G"
sysport: "37"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "41"
lanes: "0:4"
serdes_group: "1"
speed: "100G"
sysport: "41"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "45"
lanes: "4:4"
serdes_group: "1"
speed: "100G"
sysport: "45"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "49"
lanes: "0:4"
serdes_group: "2"
speed: "100G"
sysport: "49"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "53"
lanes: "4:4"
serdes_group: "2"
speed: "100G"
sysport: "53"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "57"
lanes: "0:4"
serdes_group: "3"
speed: "100G"
sysport: "57"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "61"
lanes: "4:4"
serdes_group: "3"
speed: "100G"
sysport: "61"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "65"
lanes: "0:4"
serdes_group: "28"
speed: "100G"
sysport: "65"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "69"
lanes: "4:4"
serdes_group: "28"
speed: "100G"
sysport: "69"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "73"
lanes: "0:4"
serdes_group: "29"
speed: "100G"
sysport: "73"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "77"
lanes: "4:4"
serdes_group: "29"
speed: "100G"
sysport: "77"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "81"
lanes: "0:4"
serdes_group: "30"
speed: "100G"
sysport: "81"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "85"
lanes: "4:4"
serdes_group: "30"
speed: "100G"
sysport: "85"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "89"
lanes: "0:4"
serdes_group: "31"
speed: "100G"
sysport: "89"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "93"
lanes: "4:4"
serdes_group: "31"
speed: "100G"
sysport: "93"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "97"
lanes: "0:4"
serdes_group: "24"
speed: "100G"
sysport: "97"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "101"
lanes: "4:4"
serdes_group: "24"
speed: "100G"
sysport: "101"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "105"
lanes: "0:4"
serdes_group: "25"
speed: "100G"
sysport: "105"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "109"
lanes: "4:4"
serdes_group: "25"
speed: "100G"
sysport: "109"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "113"
lanes: "0:4"
serdes_group: "26"
speed: "100G"
sysport: "113"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "117"
lanes: "4:4"
serdes_group: "26"
speed: "100G"
sysport: "117"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "121"
lanes: "0:4"
serdes_group: "27"
speed: "100G"
sysport: "121"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "125"
lanes: "4:4"
serdes_group: "27"
speed: "100G"
sysport: "125"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "129"
lanes: "0:4"
serdes_group: "20"
speed: "100G"
sysport: "129"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "133"
lanes: "4:4"
serdes_group: "20"
speed: "100G"
sysport: "133"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "137"
lanes: "0:4"
serdes_group: "21"
speed: "100G"
sysport: "137"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "141"
lanes: "4:4"
serdes_group: "21"
speed: "100G"
sysport: "141"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "145"
lanes: "0:4"
serdes_group: "22"
speed: "100G"
sysport: "145"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "149"
lanes: "4:4"
serdes_group: "22"
speed: "100G"
sysport: "149"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "153"
lanes: "0:4"
serdes_group: "23"
speed: "100G"
sysport: "153"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "157"
lanes: "4:4"
serdes_group: "23"
speed: "100G"
sysport: "157"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "161"
lanes: "0:4"
serdes_group: "16"
speed: "100G"
sysport: "161"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "165"
lanes: "4:4"
serdes_group: "16"
speed: "100G"
sysport: "165"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "169"
lanes: "0:4"
serdes_group: "17"
speed: "100G"
sysport: "169"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "173"
lanes: "4:4"
serdes_group: "17"
speed: "100G"
sysport: "173"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "177"
lanes: "0:4"
serdes_group: "18"
speed: "100G"
sysport: "177"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "181"
lanes: "4:4"
serdes_group: "18"
speed: "100G"
sysport: "181"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "185"
lanes: "0:4"
serdes_group: "19"
speed: "100G"
sysport: "185"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "189"
lanes: "4:4"
serdes_group: "19"
speed: "100G"
sysport: "189"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "193"
lanes: "0:4"
serdes_group: "12"
speed: "100G"
sysport: "193"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "197"
lanes: "4:4"
serdes_group: "12"
speed: "100G"
sysport: "197"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "201"
lanes: "0:4"
serdes_group: "13"
speed: "100G"
sysport: "201"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "205"
lanes: "4:4"
serdes_group: "13"
speed: "100G"
sysport: "205"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "209"
lanes: "0:4"
serdes_group: "14"
speed: "100G"
sysport: "209"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "213"
lanes: "4:4"
serdes_group: "14"
speed: "100G"
sysport: "213"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "217"
lanes: "0:4"
serdes_group: "15"
speed: "100G"
sysport: "217"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "221"
lanes: "4:4"
serdes_group: "15"
speed: "100G"
sysport: "221"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "225"
lanes: "0:4"
serdes_group: "8"
speed: "100G"
sysport: "225"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "229"
lanes: "4:4"
serdes_group: "8"
speed: "100G"
sysport: "229"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "233"
lanes: "0:4"
serdes_group: "9"
speed: "100G"
sysport: "233"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "237"
lanes: "4:4"
serdes_group: "9"
speed: "100G"
sysport: "237"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "241"
lanes: "0:4"
serdes_group: "10"
speed: "100G"
sysport: "241"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "245"
lanes: "4:4"
serdes_group: "10"
speed: "100G"
sysport: "245"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "249"
lanes: "0:4"
serdes_group: "11"
speed: "100G"
sysport: "249"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
- fec: "KRFEC"
id: "253"
lanes: "4:4"
serdes_group: "11"
speed: "100G"
sysport: "253"
type: "eth"
link_training: "true"
bp_tech_ability: "100GBASE_KR4,100GBASE_CR4,100GBASE_KR2_CR2"
auto_neg: "true"
isg:
- id: "0"
tx_polarity: "01011011"
rx_polarity: "11001111"
lane_swap: "01234567"
- id: "1"
tx_polarity: "01011011"
rx_polarity: "01001111"
lane_swap: "01234567"
- id: "2"
tx_polarity: "01101001"
rx_polarity: "00001111"
lane_swap: "73215460"
- id: "3"
tx_polarity: "01111111"
rx_polarity: "10011111"
lane_swap: "71234560"
- id: "4"
tx_polarity: "01000111"
rx_polarity: "11010110"
lane_swap: "01235467"
- id: "5"
tx_polarity: "01001011"
rx_polarity: "01001111"
lane_swap: "01234567"
- id: "6"
tx_polarity: "01111001"
rx_polarity: "01001011"
lane_swap: "73215460"
- id: "7"
tx_polarity: "11101111"
rx_polarity: "01110111"
lane_swap: "72614035"
- id: "8"
tx_polarity: "00101001"
rx_polarity: "01101001"
lane_swap: "01234567"
- id: "9"
tx_polarity: "00101001"
rx_polarity: "01101001"
lane_swap: "01234567"
- id: "10"
tx_polarity: "01001011"
rx_polarity: "01101001"
lane_swap: "73215460"
- id: "11"
tx_polarity: "00001001"
rx_polarity: "00011000"
lane_swap: "71635420"
- id: "12"
tx_polarity: "00101001"
rx_polarity: "10001001"
lane_swap: "01234567"
- id: "13"
tx_polarity: "01100101"
rx_polarity: "00000111"
lane_swap: "01235467"
- id: "14"
tx_polarity: "00001011"
rx_polarity: "00000011"
lane_swap: "73215460"
- id: "15"
tx_polarity: "00001001"
rx_polarity: "01001001"
lane_swap: "73615420"
- id: "16"
tx_polarity: "00101001"
rx_polarity: "00001011"
lane_swap: "01234567"
- id: "17"
tx_polarity: "00100101"
rx_polarity: "00000111"
lane_swap: "01235467"
- id: "18"
tx_polarity: "01001010"
rx_polarity: "01001011"
lane_swap: "73215460"
- id: "19"
tx_polarity: "00111111"
rx_polarity: "00001011"
lane_swap: "73615420"
- id: "20"
tx_polarity: "01001101"
rx_polarity: "11101011"
lane_swap: "01234567"
- id: "21"
tx_polarity: "11011011"
rx_polarity: "10001011"
lane_swap: "01234567"
- id: "22"
tx_polarity: "01111001"
rx_polarity: "10001111"
lane_swap: "73215460"
- id: "23"
tx_polarity: "01111011"
rx_polarity: "01011100"
lane_swap: "73615420"
- id: "24"
tx_polarity: "01011011"
rx_polarity: "01101101"
lane_swap: "01234567"
- id: "25"
tx_polarity: "01001011"
rx_polarity: "01101101"
lane_swap: "01234567"
- id: "26"
tx_polarity: "01111001"
rx_polarity: "01101101"
lane_swap: "73215460"
- id: "27"
tx_polarity: "01001111"
rx_polarity: "01001000"
lane_swap: "73615420"
- id: "28"
tx_polarity: "01000111"
rx_polarity: "01011001"
lane_swap: "01235467"
- id: "29"
tx_polarity: "01011011"
rx_polarity: "11001010"
lane_swap: "01234567"
- id: "30"
tx_polarity: "01111001"
rx_polarity: "11001010"
lane_swap: "73215460"
- id: "31"
tx_polarity: "01011011"
rx_polarity: "11101010"
lane_swap: "73615420"
- id: "32"
tx_polarity: "00000000"
rx_polarity: "00000000"
lane_swap: "01234567"

View File

@ -1,59 +0,0 @@
sku: innovium.77700_A
device_id: 0x1b58
# Hardware constraint information
hardware:
num_ibs: 6
ports_per_ib: 32, 32, 32, 32, 20, 20
recirc_port_num: 32, 32, 32, 32, 32, 32
cpu_port_num: 33
cpu_port_ib: 0
mgmt_port_num: 33
mgmt_port_ibs: 1,2
pics_per_ib: 6, 7, 6, 5, 5, 5
pic_ports_per_pic: 8
max_serdes_speed: 50
num_shared_pics: 2
isg [0-4]:
ib: 0
pic_id: [0-4]
isg [5-9]:
ib: 5
pic_id: [0-4]
isg [10-14]:
ib: 1
pic_id: [0-4]
isg [16-20]:
ib: 3
pic_id: [0-4]
isg [21-25]:
ib: 4
pic_id: [0-4]
isg [26-30]:
ib: 2
pic_id: [0-4]
isg 15:
mode: 8:0
ib: 1
pic_id: 5
isg 31:
mode: 8:0
ib: 0
pic_id: 5
isg 32:
mode: 1:1
ib: 1, 2
pic_id: 6

View File

@ -1,59 +0,0 @@
sku: innovium.77700_B
device_id: 0x1b58
# Hardware constraint information
hardware:
num_ibs: 6
ports_per_ib: 32, 32, 32, 32, 20, 20
recirc_port_num: 32, 32, 32, 32, 32, 32
cpu_port_num: 33
cpu_port_ib: 0
mgmt_port_num: 33
mgmt_port_ibs: 1,2
pics_per_ib: 6, 7, 7, 6, 5, 5
pic_ports_per_pic: 8
max_serdes_speed: 50
num_shared_pics: 2
isg [0-4]:
ib: 0
pic_id: [0-4]
isg [5-9]:
ib: 5
pic_id: [0-4]
isg [10-14]:
ib: 1
pic_id: [0-4]
isg [16-20]:
ib: 3
pic_id: [0-4]
isg [21-25]:
ib: 4
pic_id: [0-4]
isg [26-30]:
ib: 2
pic_id: [0-4]
isg 15:
mode: 4:4
ib: 1, 3
pic_id: 5
isg 31:
mode: 4:4
ib: 0, 2
pic_id: 5
isg 32:
mode: 1:1
ib: 1, 2
pic_id: 6

View File

@ -1,9 +0,0 @@
ISAI_PARAM_P0_0_LS : "4608 4608 4608 4608 2880 2880"
ISAI_PARAM_P0_1_LS : "2226 1946 1946 1890 1218 1218"
ISAI_PARAM_P0_1_ALS : "434 154 154 98 98 98"
ISAI_PARAM_P1_0_LS : "1536 1536 1536 1536 960 960"
ISAI_PARAM_P1_0_LL : "3072 3072 3072 3072 1920 1920"
ISAI_PARAM_P1_1_LS : "1778 1498 1498 1442 938 938"
ISAI_PARAM_P1_1_LL : "2478 2478 2478 2478 2478 2478"
ISAI_PARAM_P1_1_ALS : "434 154 154 98 98 98"
ISAI_PARAM_P1_1_ALL : "126 126 126 126 126 126"

View File

@ -1,65 +0,0 @@
# name lanes alias speed index mtu fec
Ethernet0 33,34,35,36 C1 100000 0 9126 rs
Ethernet4 37,38,39,40 C2 100000 1 9126 rs
Ethernet8 41,42,43,44 C3 100000 2 9126 rs
Ethernet12 45,46,47,48 C4 100000 3 9126 rs
Ethernet16 49,50,51,52 C5 100000 4 9126 rs
Ethernet20 53,54,55,56 C6 100000 5 9126 rs
Ethernet24 57,58,59,60 C7 100000 6 9126 rs
Ethernet28 61,62,63,64 C8 100000 7 9126 rs
Ethernet32 1,2,3,4 C9 100000 8 9126 rs
Ethernet36 5,6,7,8 C10 100000 9 9126 rs
Ethernet40 9,10,11,12 C11 100000 10 9126 rs
Ethernet44 13,14,15,16 C12 100000 11 9126 rs
Ethernet48 17,18,19,20 C13 100000 12 9126 rs
Ethernet52 21,22,23,24 C14 100000 13 9126 rs
Ethernet56 25,26,27,28 C15 100000 14 9126 rs
Ethernet60 29,30,31,32 C16 100000 15 9126 rs
Ethernet64 225,226,227,228 C17 100000 16 9126 rs
Ethernet68 229,230,231,232 C18 100000 17 9126 rs
Ethernet72 233,234,235,236 C19 100000 18 9126 rs
Ethernet76 237,238,239,240 C20 100000 19 9126 rs
Ethernet80 241,242,243,244 C21 100000 20 9126 rs
Ethernet84 245,246,247,248 C22 100000 21 9126 rs
Ethernet88 249,250,251,252 C23 100000 22 9126 rs
Ethernet92 253,254,255,256 C24 100000 23 9126 rs
Ethernet96 193,194,195,196 C25 100000 24 9126 rs
Ethernet100 197,198,199,200 C26 100000 25 9126 rs
Ethernet104 201,202,203,204 C27 100000 26 9126 rs
Ethernet108 205,206,207,208 C28 100000 27 9126 rs
Ethernet112 209,210,211,212 C29 100000 28 9126 rs
Ethernet116 213,214,215,216 C30 100000 29 9126 rs
Ethernet120 217,218,219,220 C31 100000 30 9126 rs
Ethernet124 221,222,223,224 C32 100000 31 9126 rs
Ethernet128 161,162,163,164 C33 100000 32 9126 rs
Ethernet132 165,166,167,168 C34 100000 33 9126 rs
Ethernet136 169,170,171,172 C35 100000 34 9126 rs
Ethernet140 173,174,175,176 C36 100000 35 9126 rs
Ethernet144 177,178,179,180 C37 100000 36 9126 rs
Ethernet148 181,182,183,184 C38 100000 37 9126 rs
Ethernet152 185,186,187,188 C39 100000 38 9126 rs
Ethernet156 189,190,191,192 C40 100000 39 9126 rs
Ethernet160 129,130,131,132 C41 100000 40 9126 rs
Ethernet164 133,134,135,136 C42 100000 41 9126 rs
Ethernet168 137,138,139,140 C43 100000 42 9126 rs
Ethernet172 141,142,143,144 C44 100000 43 9126 rs
Ethernet176 145,146,147,148 C45 100000 44 9126 rs
Ethernet180 149,150,151,152 C46 100000 45 9126 rs
Ethernet184 153,154,155,156 C47 100000 46 9126 rs
Ethernet188 157,158,159,160 C48 100000 47 9126 rs
Ethernet192 97,98,99,100 C49 100000 48 9126 rs
Ethernet196 101,102,103,104 C50 100000 49 9126 rs
Ethernet200 105,106,107,108 C51 100000 50 9126 rs
Ethernet204 109,110,111,112 C52 100000 51 9126 rs
Ethernet208 113,114,115,116 C53 100000 52 9126 rs
Ethernet212 117,118,119,120 C54 100000 53 9126 rs
Ethernet216 121,122,123,124 C55 100000 54 9126 rs
Ethernet220 125,126,127,128 C56 100000 55 9126 rs
Ethernet224 65,66,67,68 C57 100000 56 9126 rs
Ethernet228 69,70,71,72 C58 100000 57 9126 rs
Ethernet232 73,74,75,76 C59 100000 58 9126 rs
Ethernet236 77,78,79,80 C60 100000 59 9126 rs
Ethernet240 81,82,83,84 C61 100000 60 9126 rs
Ethernet244 85,86,87,88 C62 100000 61 9126 rs
Ethernet248 89,90,91,92 C63 100000 62 9126 rs
Ethernet252 93,94,95,96 C64 100000 63 9126 rs

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_A"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_A"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_A"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"

View File

@ -0,0 +1,342 @@
VERSION,CABLE TYPE,VENDOR,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
1.2,DAC_1M,GENERIC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,SPEED,ENCODING,,,,,,,,,SPEED,ENCODING,,,,,,,,,,,,,SPEED,ENCODING,,,,,,,SPEED,ENCODING,,,,,,,SPEED,ENCODING,,,,,,,,,,
,,,50G/400G,PAM4,,,,,,,,,25G/100G,NRZ,,,,,,,,,,,,,10G/40G,NRZ,,,,,,,LT 50G/400G ,PAM4,,,,,,,ANLT 25G/100G ,NRZ,,,,,,,,,,
index,Front Port,lane,TX_EQ_ATTN,TX_EQ_PRE1,TX_EQ_PRE2,TX_EQ_PRE3,TX_EQ_POST,RX_EQ_COARSE_TUNE_EFFORT_50G,RX_EQ_FINE_TUNE_EFFORT_50G,RX_GAINSHAPE1,RX_GAINSHAPE2,LINK_TRAINING,TX_EQ_ATTN,TX_EQ_PRE1,TX_EQ_PRE2,TX_EQ_PRE3,TX_EQ_POST,RX_GAINSHAPE1,RX_GAINSHAPE2,RX_AGC_TARGET,RX_EYE_DISQUALIFY_THRESHOLD_25G,RX_EQ_COARSE_TUNE_EFFORT_25G,RX_EQ_FINE_TUNE_EFFORT_25G,SD_RESET_THRESHOLD,SD_RESET_25G,LINK_TRAINING,TX_EQ_ATTN,TX_EQ_PRE1,TX_EQ_PRE2,TX_EQ_PRE3,TX_EQ_POST,RX_GAINSHAPE1,RX_GAINSHAPE2,LINK_TRAINING,RX_GAINSHAPE1,RX_GAINSHAPE2,RX_EQ_COARSE_TUNE_EFFORT_50G,RX_EQ_FINE_TUNE_EFFORT_50G,RX_CTLE_LF,RX_CTLE_HF,RX_CTLE_BW,LINK_TRAINING,RX_GAINSHAPE1,RX_GAINSHAPE2,RX_AGC_TARGET,RX_EYE_DISQUALIFY_THRESHOLD_25G,RX_EQ_COARSE_TUNE_EFFORT_25G,RX_EQ_FINE_TUNE_EFFORT_25G,SD_RESET_25G,SD_RESET_THRESHOLD_25G,LINK_TRAINING,AN,AN_ABILITY,FEC
0,0,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
1,0,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
2,0,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
3,0,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
4,0,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
5,0,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
6,0,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
7,0,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
8,1,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
9,1,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
10,1,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
11,1,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
12,1,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
13,1,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
14,1,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
15,1,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
16,2,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
17,2,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
18,2,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
19,2,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
20,2,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
21,2,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
22,2,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
23,2,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
24,3,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
25,3,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
26,3,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
27,3,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
28,3,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
29,3,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
30,3,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
31,3,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
32,4,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
33,4,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
34,4,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
35,4,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
36,4,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
37,4,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
38,4,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
39,4,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
40,5,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
41,5,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
42,5,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
43,5,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
44,5,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
45,5,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
46,5,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
47,5,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
48,6,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
49,6,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
50,6,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
51,6,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
52,6,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
53,6,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
54,6,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
55,6,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
56,7,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
57,7,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
58,7,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
59,7,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
60,7,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
61,7,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
62,7,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
63,7,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
64,8,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
65,8,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
66,8,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
67,8,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
68,8,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
69,8,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
70,8,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
71,8,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
72,9,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
73,9,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
74,9,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
75,9,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
76,9,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
77,9,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
78,9,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
79,9,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
80,10,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
81,10,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
82,10,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
83,10,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
84,10,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
85,10,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
86,10,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
87,10,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
88,11,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
89,11,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
90,11,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
91,11,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
92,11,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
93,11,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
94,11,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
95,11,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
96,12,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
97,12,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
98,12,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
99,12,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
100,12,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
101,12,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
102,12,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
103,12,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
104,13,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
105,13,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
106,13,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
107,13,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
108,13,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
109,13,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
110,13,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
111,13,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
112,14,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
113,14,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
114,14,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
115,14,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
116,14,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
117,14,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
118,14,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
119,14,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
120,15,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
121,15,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
122,15,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
123,15,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
124,15,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
125,15,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
126,15,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
127,15,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
128,16,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
129,16,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
130,16,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
131,16,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
132,16,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
133,16,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
134,16,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
135,16,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
136,17,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
137,17,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
138,17,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
139,17,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
140,17,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
141,17,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
142,17,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
143,17,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
144,18,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
145,18,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
146,18,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
147,18,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
148,18,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
149,18,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
150,18,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
151,18,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
152,19,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
153,19,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
154,19,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
155,19,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
156,19,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
157,19,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
158,19,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
159,19,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
160,20,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
161,20,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
162,20,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
163,20,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
164,20,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
165,20,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
166,20,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
167,20,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
168,21,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
169,21,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
170,21,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
171,21,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
172,21,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
173,21,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
174,21,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
175,21,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
176,22,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
177,22,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
178,22,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
179,22,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
180,22,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
181,22,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
182,22,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
183,22,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
184,23,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
185,23,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
186,23,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
187,23,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
188,23,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
189,23,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
190,23,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
191,23,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
192,24,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
193,24,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
194,24,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
195,24,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
196,24,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
197,24,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
198,24,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
199,24,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
200,25,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
201,25,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
202,25,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
203,25,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
204,25,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
205,25,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
206,25,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
207,25,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
208,26,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
209,26,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
210,26,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
211,26,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
212,26,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
213,26,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
214,26,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
215,26,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
216,27,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
217,27,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
218,27,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
219,27,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
220,27,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
221,27,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
222,27,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
223,27,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
224,28,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
225,28,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
226,28,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
227,28,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
228,28,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
229,28,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
230,28,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
231,28,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
232,29,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
233,29,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
234,29,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
235,29,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
236,29,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
237,29,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
238,29,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
239,29,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
240,30,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
241,30,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
242,30,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
243,30,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
244,30,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
245,30,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
246,30,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
247,30,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
248,31,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
249,31,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
250,31,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
251,31,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
252,31,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
253,31,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
254,31,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
255,31,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,0,1,130,100,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
1 VERSION CABLE TYPE VENDOR
2 1.2 DAC_1M GENERIC
3 SPEED ENCODING SPEED ENCODING SPEED ENCODING SPEED ENCODING SPEED ENCODING
4 50G/400G PAM4 25G/100G NRZ 10G/40G NRZ LT 50G/400G PAM4 ANLT 25G/100G NRZ
5 index Front Port lane TX_EQ_ATTN TX_EQ_PRE1 TX_EQ_PRE2 TX_EQ_PRE3 TX_EQ_POST RX_EQ_COARSE_TUNE_EFFORT_50G RX_EQ_FINE_TUNE_EFFORT_50G RX_GAINSHAPE1 RX_GAINSHAPE2 LINK_TRAINING TX_EQ_ATTN TX_EQ_PRE1 TX_EQ_PRE2 TX_EQ_PRE3 TX_EQ_POST RX_GAINSHAPE1 RX_GAINSHAPE2 RX_AGC_TARGET RX_EYE_DISQUALIFY_THRESHOLD_25G RX_EQ_COARSE_TUNE_EFFORT_25G RX_EQ_FINE_TUNE_EFFORT_25G SD_RESET_THRESHOLD SD_RESET_25G LINK_TRAINING TX_EQ_ATTN TX_EQ_PRE1 TX_EQ_PRE2 TX_EQ_PRE3 TX_EQ_POST RX_GAINSHAPE1 RX_GAINSHAPE2 LINK_TRAINING RX_GAINSHAPE1 RX_GAINSHAPE2 RX_EQ_COARSE_TUNE_EFFORT_50G RX_EQ_FINE_TUNE_EFFORT_50G RX_CTLE_LF RX_CTLE_HF RX_CTLE_BW LINK_TRAINING RX_GAINSHAPE1 RX_GAINSHAPE2 RX_AGC_TARGET RX_EYE_DISQUALIFY_THRESHOLD_25G RX_EQ_COARSE_TUNE_EFFORT_25G RX_EQ_FINE_TUNE_EFFORT_25G SD_RESET_25G SD_RESET_THRESHOLD_25G LINK_TRAINING AN AN_ABILITY FEC
6 0 0 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
7 1 0 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
8 2 0 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
9 3 0 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
10 4 0 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
11 5 0 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
12 6 0 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
13 7 0 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
14 8 1 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
15 9 1 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
16 10 1 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
17 11 1 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
18 12 1 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
19 13 1 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
20 14 1 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
21 15 1 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
22 16 2 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
23 17 2 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
24 18 2 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
25 19 2 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
26 20 2 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
27 21 2 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
28 22 2 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
29 23 2 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
30 24 3 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
31 25 3 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
32 26 3 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
33 27 3 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
34 28 3 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
35 29 3 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
36 30 3 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
37 31 3 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
38 32 4 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
39 33 4 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
40 34 4 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
41 35 4 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
42 36 4 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
43 37 4 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
44 38 4 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
45 39 4 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
46 40 5 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
47 41 5 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
48 42 5 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
49 43 5 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
50 44 5 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
51 45 5 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
52 46 5 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
53 47 5 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
54 48 6 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
55 49 6 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
56 50 6 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
57 51 6 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
58 52 6 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
59 53 6 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
60 54 6 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
61 55 6 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
62 56 7 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
63 57 7 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
64 58 7 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
65 59 7 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
66 60 7 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
67 61 7 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
68 62 7 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
69 63 7 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
70 64 8 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
71 65 8 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
72 66 8 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
73 67 8 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
74 68 8 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
75 69 8 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
76 70 8 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
77 71 8 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
78 72 9 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
79 73 9 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
80 74 9 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
81 75 9 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
82 76 9 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
83 77 9 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
84 78 9 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
85 79 9 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
86 80 10 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
87 81 10 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
88 82 10 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
89 83 10 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
90 84 10 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
91 85 10 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
92 86 10 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
93 87 10 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
94 88 11 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
95 89 11 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
96 90 11 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
97 91 11 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
98 92 11 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
99 93 11 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
100 94 11 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
101 95 11 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
102 96 12 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
103 97 12 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
104 98 12 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
105 99 12 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
106 100 12 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
107 101 12 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
108 102 12 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
109 103 12 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
110 104 13 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
111 105 13 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
112 106 13 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
113 107 13 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
114 108 13 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
115 109 13 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
116 110 13 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
117 111 13 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
118 112 14 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
119 113 14 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
120 114 14 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
121 115 14 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
122 116 14 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
123 117 14 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
124 118 14 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
125 119 14 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
126 120 15 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
127 121 15 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
128 122 15 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
129 123 15 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
130 124 15 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
131 125 15 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
132 126 15 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
133 127 15 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
134 128 16 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
135 129 16 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
136 130 16 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
137 131 16 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
138 132 16 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
139 133 16 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
140 134 16 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
141 135 16 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
142 136 17 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
143 137 17 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
144 138 17 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
145 139 17 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
146 140 17 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
147 141 17 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
148 142 17 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
149 143 17 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
150 144 18 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
151 145 18 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
152 146 18 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
153 147 18 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
154 148 18 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
155 149 18 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
156 150 18 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
157 151 18 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
158 152 19 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
159 153 19 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
160 154 19 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
161 155 19 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
162 156 19 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
163 157 19 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
164 158 19 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
165 159 19 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
166 160 20 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
167 161 20 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
168 162 20 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
169 163 20 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
170 164 20 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
171 165 20 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
172 166 20 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
173 167 20 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
174 168 21 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
175 169 21 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
176 170 21 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
177 171 21 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
178 172 21 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
179 173 21 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
180 174 21 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
181 175 21 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
182 176 22 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
183 177 22 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
184 178 22 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
185 179 22 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
186 180 22 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
187 181 22 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
188 182 22 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
189 183 22 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
190 184 23 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
191 185 23 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
192 186 23 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
193 187 23 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
194 188 23 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
195 189 23 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
196 190 23 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
197 191 23 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
198 192 24 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
199 193 24 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
200 194 24 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
201 195 24 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
202 196 24 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
203 197 24 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
204 198 24 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
205 199 24 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
206 200 25 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
207 201 25 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
208 202 25 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
209 203 25 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
210 204 25 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
211 205 25 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
212 206 25 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
213 207 25 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
214 208 26 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
215 209 26 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
216 210 26 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
217 211 26 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
218 212 26 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
219 213 26 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
220 214 26 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
221 215 26 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
222 216 27 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
223 217 27 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
224 218 27 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
225 219 27 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
226 220 27 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
227 221 27 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
228 222 27 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
229 223 27 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
230 224 28 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
231 225 28 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
232 226 28 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
233 227 28 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
234 228 28 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
235 229 28 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
236 230 28 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
237 231 28 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
238 232 29 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
239 233 29 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
240 234 29 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
241 235 29 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
242 236 29 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
243 237 29 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
244 238 29 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
245 239 29 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
246 240 30 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
247 241 30 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
248 242 30 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
249 243 30 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
250 244 30 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
251 245 30 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
252 246 30 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
253 247 30 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
254 248 31 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
255 249 31 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
256 250 31 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
257 251 31 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
258 252 31 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
259 253 31 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
260 254 31 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
261 255 31 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 0 1 130 100 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342

View File

@ -0,0 +1,342 @@
VERSION,CABLE TYPE,VENDOR,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
1.2,DAC_3M,GENERIC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,SPEED,ENCODING,,,,,,,,,SPEED,ENCODING,,,,,,,,,,,,,SPEED,ENCODING,,,,,,,SPEED,ENCODING,,,,,,,SPEED,ENCODING,,,,,,,,,,
,,,50G/400G,PAM4,,,,,,,,,25G/100G,NRZ,,,,,,,,,,,,,10G/40G,NRZ,,,,,,,LT 50G/400G,PAM4,,,,,,,ANLT 25G/100G,NRZ,,,,,,,,,,
index,Front Port,lane,TX_EQ_ATTN,TX_EQ_PRE1,TX_EQ_PRE2,TX_EQ_PRE3,TX_EQ_POST,RX_EQ_COARSE_TUNE_EFFORT_50G,RX_EQ_FINE_TUNE_EFFORT_50G,RX_GAINSHAPE1,RX_GAINSHAPE2,LINK_TRAINING,TX_EQ_ATTN,TX_EQ_PRE1,TX_EQ_PRE2,TX_EQ_PRE3,TX_EQ_POST,RX_GAINSHAPE1,RX_GAINSHAPE2,RX_AGC_TARGET,RX_EYE_DISQUALIFY_THRESHOLD_25G,RX_EQ_COARSE_TUNE_EFFORT_25G,RX_EQ_FINE_TUNE_EFFORT_25G,SD_RESET_THRESHOLD,SD_RESET_25G,LINK_TRAINING,TX_EQ_ATTN,TX_EQ_PRE1,TX_EQ_PRE2,TX_EQ_PRE3,TX_EQ_POST,RX_GAINSHAPE1,RX_GAINSHAPE2,LINK_TRAINING,RX_GAINSHAPE1,RX_GAINSHAPE2,RX_EQ_COARSE_TUNE_EFFORT_50G,RX_EQ_FINE_TUNE_EFFORT_50G,RX_CTLE_LF,RX_CTLE_HF,RX_CTLE_BW,LINK_TRAINING,RX_GAINSHAPE1,RX_GAINSHAPE2,RX_AGC_TARGET,RX_EYE_DISQUALIFY_THRESHOLD_25G,RX_EQ_COARSE_TUNE_EFFORT_25G,RX_EQ_FINE_TUNE_EFFORT_25G,SD_RESET_25G,SD_RESET_THRESHOLD_25G,LINK_TRAINING,AN,AN_ABILITY,FEC
0,0,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
1,0,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
2,0,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
3,0,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
4,0,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
5,0,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
6,0,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
7,0,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
8,1,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
9,1,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
10,1,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
11,1,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
12,1,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
13,1,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
14,1,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
15,1,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
16,2,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
17,2,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
18,2,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
19,2,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
20,2,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
21,2,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
22,2,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
23,2,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
24,3,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
25,3,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
26,3,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
27,3,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
28,3,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
29,3,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
30,3,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
31,3,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
32,4,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
33,4,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
34,4,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
35,4,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
36,4,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
37,4,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
38,4,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
39,4,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
40,5,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
41,5,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
42,5,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
43,5,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
44,5,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
45,5,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
46,5,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
47,5,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
48,6,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
49,6,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
50,6,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
51,6,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
52,6,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
53,6,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
54,6,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
55,6,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
56,7,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
57,7,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
58,7,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
59,7,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
60,7,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
61,7,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
62,7,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
63,7,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
64,8,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
65,8,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
66,8,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
67,8,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
68,8,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
69,8,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
70,8,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
71,8,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
72,9,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
73,9,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
74,9,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
75,9,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
76,9,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
77,9,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
78,9,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
79,9,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
80,10,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
81,10,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
82,10,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
83,10,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
84,10,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
85,10,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
86,10,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
87,10,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
88,11,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
89,11,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
90,11,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
91,11,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
92,11,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
93,11,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
94,11,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
95,11,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
96,12,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
97,12,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
98,12,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
99,12,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
100,12,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
101,12,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
102,12,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
103,12,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
104,13,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
105,13,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
106,13,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
107,13,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
108,13,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
109,13,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
110,13,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
111,13,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
112,14,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
113,14,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
114,14,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
115,14,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
116,14,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
117,14,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
118,14,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
119,14,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
120,15,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
121,15,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
122,15,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
123,15,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
124,15,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
125,15,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
126,15,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
127,15,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
128,16,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
129,16,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
130,16,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
131,16,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
132,16,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
133,16,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
134,16,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
135,16,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
136,17,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
137,17,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
138,17,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
139,17,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
140,17,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
141,17,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
142,17,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
143,17,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
144,18,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
145,18,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
146,18,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
147,18,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
148,18,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
149,18,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
150,18,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
151,18,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
152,19,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
153,19,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
154,19,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
155,19,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
156,19,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
157,19,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
158,19,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
159,19,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
160,20,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
161,20,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
162,20,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
163,20,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
164,20,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
165,20,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
166,20,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
167,20,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
168,21,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
169,21,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
170,21,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
171,21,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
172,21,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
173,21,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
174,21,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
175,21,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
176,22,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
177,22,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
178,22,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
179,22,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
180,22,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
181,22,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
182,22,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
183,22,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
184,23,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
185,23,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
186,23,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
187,23,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
188,23,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
189,23,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
190,23,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
191,23,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
192,24,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
193,24,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
194,24,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
195,24,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
196,24,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
197,24,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
198,24,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
199,24,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
200,25,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
201,25,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
202,25,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
203,25,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
204,25,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
205,25,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
206,25,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
207,25,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
208,26,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
209,26,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
210,26,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
211,26,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
212,26,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
213,26,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
214,26,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
215,26,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
216,27,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
217,27,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
218,27,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
219,27,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
220,27,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
221,27,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
222,27,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
223,27,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
224,28,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
225,28,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
226,28,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
227,28,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
228,28,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
229,28,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
230,28,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
231,28,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
232,29,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
233,29,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
234,29,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
235,29,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
236,29,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
237,29,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
238,29,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
239,29,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
240,30,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
241,30,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
242,30,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
243,30,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
244,30,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
245,30,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
246,30,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
247,30,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
248,31,0,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
249,31,1,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
250,31,2,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
251,31,3,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
252,31,4,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
253,31,5,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
254,31,6,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
255,31,7,0,0,0,0,0,Medium,HIGH,0,2,0,0,0,0,0,0,2,2,130,150,Low,Low,5,TRUE,0,3,2,-2,0,4,0,1,0,0,2,Medium,High,0,10,10,1,0,1,130,100,Low,Low,0,NA,1,1,100GBASE-KR4,NONE
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
1 VERSION CABLE TYPE VENDOR
2 1.2 DAC_3M GENERIC
3 SPEED ENCODING SPEED ENCODING SPEED ENCODING SPEED ENCODING SPEED ENCODING
4 50G/400G PAM4 25G/100G NRZ 10G/40G NRZ LT 50G/400G PAM4 ANLT 25G/100G NRZ
5 index Front Port lane TX_EQ_ATTN TX_EQ_PRE1 TX_EQ_PRE2 TX_EQ_PRE3 TX_EQ_POST RX_EQ_COARSE_TUNE_EFFORT_50G RX_EQ_FINE_TUNE_EFFORT_50G RX_GAINSHAPE1 RX_GAINSHAPE2 LINK_TRAINING TX_EQ_ATTN TX_EQ_PRE1 TX_EQ_PRE2 TX_EQ_PRE3 TX_EQ_POST RX_GAINSHAPE1 RX_GAINSHAPE2 RX_AGC_TARGET RX_EYE_DISQUALIFY_THRESHOLD_25G RX_EQ_COARSE_TUNE_EFFORT_25G RX_EQ_FINE_TUNE_EFFORT_25G SD_RESET_THRESHOLD SD_RESET_25G LINK_TRAINING TX_EQ_ATTN TX_EQ_PRE1 TX_EQ_PRE2 TX_EQ_PRE3 TX_EQ_POST RX_GAINSHAPE1 RX_GAINSHAPE2 LINK_TRAINING RX_GAINSHAPE1 RX_GAINSHAPE2 RX_EQ_COARSE_TUNE_EFFORT_50G RX_EQ_FINE_TUNE_EFFORT_50G RX_CTLE_LF RX_CTLE_HF RX_CTLE_BW LINK_TRAINING RX_GAINSHAPE1 RX_GAINSHAPE2 RX_AGC_TARGET RX_EYE_DISQUALIFY_THRESHOLD_25G RX_EQ_COARSE_TUNE_EFFORT_25G RX_EQ_FINE_TUNE_EFFORT_25G SD_RESET_25G SD_RESET_THRESHOLD_25G LINK_TRAINING AN AN_ABILITY FEC
6 0 0 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
7 1 0 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
8 2 0 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
9 3 0 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
10 4 0 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
11 5 0 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
12 6 0 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
13 7 0 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
14 8 1 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
15 9 1 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
16 10 1 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
17 11 1 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
18 12 1 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
19 13 1 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
20 14 1 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
21 15 1 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
22 16 2 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
23 17 2 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
24 18 2 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
25 19 2 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
26 20 2 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
27 21 2 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
28 22 2 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
29 23 2 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
30 24 3 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
31 25 3 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
32 26 3 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
33 27 3 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
34 28 3 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
35 29 3 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
36 30 3 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
37 31 3 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
38 32 4 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
39 33 4 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
40 34 4 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
41 35 4 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
42 36 4 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
43 37 4 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
44 38 4 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
45 39 4 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
46 40 5 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
47 41 5 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
48 42 5 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
49 43 5 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
50 44 5 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
51 45 5 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
52 46 5 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
53 47 5 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
54 48 6 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
55 49 6 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
56 50 6 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
57 51 6 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
58 52 6 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
59 53 6 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
60 54 6 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
61 55 6 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
62 56 7 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
63 57 7 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
64 58 7 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
65 59 7 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
66 60 7 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
67 61 7 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
68 62 7 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
69 63 7 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
70 64 8 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
71 65 8 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
72 66 8 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
73 67 8 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
74 68 8 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
75 69 8 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
76 70 8 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
77 71 8 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
78 72 9 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
79 73 9 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
80 74 9 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
81 75 9 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
82 76 9 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
83 77 9 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
84 78 9 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
85 79 9 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
86 80 10 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
87 81 10 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
88 82 10 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
89 83 10 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
90 84 10 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
91 85 10 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
92 86 10 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
93 87 10 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
94 88 11 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
95 89 11 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
96 90 11 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
97 91 11 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
98 92 11 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
99 93 11 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
100 94 11 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
101 95 11 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
102 96 12 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
103 97 12 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
104 98 12 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
105 99 12 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
106 100 12 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
107 101 12 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
108 102 12 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
109 103 12 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
110 104 13 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
111 105 13 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
112 106 13 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
113 107 13 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
114 108 13 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
115 109 13 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
116 110 13 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
117 111 13 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
118 112 14 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
119 113 14 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
120 114 14 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
121 115 14 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
122 116 14 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
123 117 14 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
124 118 14 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
125 119 14 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
126 120 15 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
127 121 15 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
128 122 15 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
129 123 15 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
130 124 15 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
131 125 15 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
132 126 15 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
133 127 15 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
134 128 16 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
135 129 16 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
136 130 16 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
137 131 16 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
138 132 16 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
139 133 16 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
140 134 16 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
141 135 16 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
142 136 17 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
143 137 17 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
144 138 17 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
145 139 17 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
146 140 17 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
147 141 17 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
148 142 17 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
149 143 17 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
150 144 18 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
151 145 18 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
152 146 18 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
153 147 18 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
154 148 18 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
155 149 18 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
156 150 18 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
157 151 18 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
158 152 19 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
159 153 19 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
160 154 19 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
161 155 19 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
162 156 19 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
163 157 19 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
164 158 19 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
165 159 19 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
166 160 20 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
167 161 20 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
168 162 20 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
169 163 20 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
170 164 20 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
171 165 20 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
172 166 20 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
173 167 20 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
174 168 21 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
175 169 21 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
176 170 21 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
177 171 21 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
178 172 21 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
179 173 21 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
180 174 21 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
181 175 21 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
182 176 22 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
183 177 22 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
184 178 22 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
185 179 22 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
186 180 22 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
187 181 22 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
188 182 22 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
189 183 22 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
190 184 23 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
191 185 23 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
192 186 23 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
193 187 23 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
194 188 23 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
195 189 23 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
196 190 23 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
197 191 23 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
198 192 24 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
199 193 24 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
200 194 24 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
201 195 24 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
202 196 24 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
203 197 24 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
204 198 24 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
205 199 24 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
206 200 25 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
207 201 25 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
208 202 25 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
209 203 25 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
210 204 25 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
211 205 25 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
212 206 25 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
213 207 25 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
214 208 26 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
215 209 26 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
216 210 26 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
217 211 26 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
218 212 26 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
219 213 26 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
220 214 26 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
221 215 26 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
222 216 27 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
223 217 27 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
224 218 27 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
225 219 27 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
226 220 27 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
227 221 27 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
228 222 27 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
229 223 27 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
230 224 28 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
231 225 28 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
232 226 28 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
233 227 28 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
234 228 28 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
235 229 28 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
236 230 28 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
237 231 28 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
238 232 29 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
239 233 29 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
240 234 29 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
241 235 29 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
242 236 29 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
243 237 29 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
244 238 29 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
245 239 29 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
246 240 30 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
247 241 30 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
248 242 30 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
249 243 30 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
250 244 30 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
251 245 30 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
252 246 30 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
253 247 30 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
254 248 31 0 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
255 249 31 1 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
256 250 31 2 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
257 251 31 3 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
258 252 31 4 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
259 253 31 5 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
260 254 31 6 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
261 255 31 7 0 0 0 0 0 Medium HIGH 0 2 0 0 0 0 0 0 2 2 130 150 Low Low 5 TRUE 0 3 2 -2 0 4 0 1 0 0 2 Medium High 0 10 10 1 0 1 130 100 Low Low 0 NA 1 1 100GBASE-KR4 NONE
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342

View File

@ -0,0 +1,289 @@
VERSION,CABLE TYPE,VENDOR,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
1.2,OPTICS,GENERIC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,SPEED,ENCODING,,,,,,,,,,SPEED,ENCODING,,,,,,,,,,,,,,SPEED,ENCODING,,,,,,
,,,50G/400G,PAM4,,,,,,,,,,25G/100G,NRZ,,,,,,,,,,,,,,10G/40G,NRZ,,,,,,
index,Front Port,lane,TX_EQ_ATTN,TX_EQ_PRE1,TX_EQ_PRE2,TX_EQ_PRE3,TX_EQ_POST,Optical Module CTLE,RX_EQ_COARSE_TUNE_EFFORT_50G,RX_EQ_FINE_TUNE_EFFORT_50G,RX_GAINSHAPE1,RX_GAINSHAPE2,LINK_TRAINING,TX_EQ_ATTN,TX_EQ_PRE1,TX_EQ_PRE2,TX_EQ_PRE3,TX_EQ_POST,Optical Module CTLE,RX_GAINSHAPE1,RX_GAINSHAPE2,RX_AGC_TARGET,RX_EYE_DISQUALIFY_THRESHOLD_25G,RX_EQ_COARSE_TUNE_EFFORT_25G,RX_EQ_FINE_TUNE_EFFORT_25G,SD_RESET_THRESHOLD,SD_RESET_25G,LINK_TRAINING,TX_EQ_ATTN,TX_EQ_PRE1,TX_EQ_PRE2,TX_EQ_PRE3,TX_EQ_POST,RX_GAINSHAPE1,RX_GAINSHAPE2,LINK_TRAINING
0,0,0,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,4,3,0,0,100,100,High,High,NA,FALSE,0,0,0,0,0,0,0,0,0
1,0,1,0,4,-1,0,2,6,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,High,High,NA,FALSE,0,0,0,0,0,0,0,0,0
2,0,2,0,4,0,0,0,6,Medium,High,0,2,0,0,4,0,0,4,3,0,0,100,100,High,High,NA,FALSE,0,0,0,0,0,0,0,0,0
3,0,3,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,4,3,0,0,100,100,High,High,NA,FALSE,0,0,0,0,0,0,0,0,0
4,0,4,0,4,0,0,4,5.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,High,High,NA,FALSE,0,0,0,0,0,0,0,0,0
5,0,5,0,4,0,0,4,5.5,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,High,High,NA,FALSE,0,0,0,0,0,0,0,0,0
6,0,6,0,4,0,0,4,5.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,High,High,NA,FALSE,0,0,0,0,0,0,0,0,0
7,0,7,0,4,0,0,4,5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,High,High,NA,FALSE,0,0,0,0,0,0,0,0,0
8,1,0,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
9,1,1,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,2,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
10,1,2,0,4,0,0,0,6,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
11,1,3,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
12,1,4,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,-1,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
13,1,5,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
14,1,6,0,4,0,0,4,5,Medium,High,0,2,0,0,4,0,0,6,3,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
15,1,7,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
16,2,0,0,4,0,0,0,6,Medium,High,0,2,0,0,2,0,0,4,3,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
17,2,1,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
18,2,2,0,4,0,0,0,6,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
19,2,3,0,4,0,0,0,6,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
20,2,4,0,4,0,0,4,5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
21,2,5,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
22,2,6,0,4,0,0,4,5,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
23,2,7,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
24,3,0,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
25,3,1,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
26,3,2,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
27,3,3,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
28,3,4,0,4,-1,0,0,5.5,Medium,High,0,2,0,0,4,0,0,4,3,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
29,3,5,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
30,3,6,0,2,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
31,3,7,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
32,4,0,0,4,0,0,2,4,Medium,High,0,2,0,0,4,0,1,2,3,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
33,4,1,0,2,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
34,4,2,0,4,0,0,2,4,Medium,High,0,2,0,0,2,0,0,2,3,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
35,4,3,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
36,4,4,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
37,4,5,0,4,0,0,2,5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
38,4,6,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
39,4,7,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
40,5,0,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
41,5,1,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
42,5,2,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
43,5,3,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
44,5,4,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
45,5,5,0,2,0,0,4,4,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
46,5,6,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
47,5,7,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
48,6,0,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
49,6,1,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
50,6,2,0,4,0,0,2,4,Medium,High,0,2,0,0,4,-1,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
51,6,3,0,4,0,0,0,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
52,6,4,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
53,6,5,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
54,6,6,0,2,0,0,2,5.5,Medium,High,0,2,0,0,2,0,1,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
55,6,7,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
56,7,0,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
57,7,1,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
58,7,2,0,4,-1,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
59,7,3,0,4,0,0,2,4,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
60,7,4,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
61,7,5,0,4,0,0,0,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
62,7,6,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
63,7,7,0,4,0,0,4,4,Medium,High,0,2,0,1,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
64,8,0,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
65,8,1,0,4,0,0,4,5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
66,8,2,0,4,0,0,2,6,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
67,8,3,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
68,8,4,0,4,0,0,4,6,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
69,8,5,0,4,0,0,4,5.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
70,8,6,0,2,0,0,4,6,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
71,8,7,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,2,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
72,9,0,0,4,0,0,4,5.5,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
73,9,1,0,4,0,0,0,6.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
74,9,2,0,4,0,0,4,5.5,Medium,High,0,2,0,0,4,0,0,4,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
75,9,3,0,4,0,0,0,6.5,Medium,High,0,2,0,0,4,0,0,4,3,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
76,9,4,0,4,0,0,4,6,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
77,9,5,0,4,0,0,4,5.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
78,9,6,0,4,0,0,2,6,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
79,9,7,0,4,0,0,4,5.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
80,10,0,0,4,0,0,4,4,Medium,High,0,2,0,0,4,0,0,4,3,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
81,10,1,0,4,0,0,4,5.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
82,10,2,0,4,0,0,4,4,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
83,10,3,0,4,0,0,2,6,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
84,10,4,0,4,-1,0,4,6,Medium,High,0,2,0,0,4,0,0,4,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
85,10,5,0,4,0,0,4,5.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
86,10,6,0,4,0,0,4,5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
87,10,7,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
88,11,0,0,4,0,0,0,6.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
89,11,1,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
90,11,2,0,4,0,0,0,6,Medium,High,0,2,0,0,4,0,1,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
91,11,3,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
92,11,4,0,4,0,0,4,5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
93,11,5,0,4,0,0,2,7,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
94,11,6,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
95,11,7,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
96,12,0,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
97,12,1,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
98,12,2,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
99,12,3,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
100,12,4,0,4,0,0,2,6,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
101,12,5,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
102,12,6,0,4,0,0,4,4.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
103,12,7,0,4,0,0,0,5.5,Medium,High,0,2,0,1,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
104,13,0,0,2,0,0,4,4.5,Medium,High,0,2,0,0,4,-1,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
105,13,1,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
106,13,2,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
107,13,3,0,2,0,0,2,4.5,Medium,High,0,2,0,1,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
108,13,4,0,4,0,0,2,6,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
109,13,5,0,4,0,0,4,4,Medium,High,0,2,0,0,4,0,1,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
110,13,6,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
111,13,7,0,4,-1,0,0,5,Medium,High,0,2,0,0,4,-1,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
112,14,0,0,4,0,0,0,5,Medium,High,0,2,0,0,2,0,0,2,2,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
113,14,1,0,4,0,0,2,4.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
114,14,2,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,1,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
115,14,3,0,4,0,0,0,5,Medium,High,0,2,0,1,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
116,14,4,0,4,0,0,4,4.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
117,14,5,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
118,14,6,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
119,14,7,0,4,0,0,0,5,Medium,High,0,2,0,1,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
120,15,0,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
121,15,1,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
122,15,2,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
123,15,3,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
124,15,4,0,4,-1,0,0,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
125,15,5,0,4,0,0,0,5,Medium,High,0,2,0,0,4,-1,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
126,15,6,0,4,0,0,0,4.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
127,15,7,0,4,0,0,0,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
128,16,0,0,2,0,0,2,4.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
129,16,1,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
130,16,2,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,1,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
131,16,3,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
132,16,4,0,4,0,0,0,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
133,16,5,0,2,0,0,2,5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
134,16,6,0,4,0,0,0,6.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
135,16,7,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,1,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
136,17,0,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
137,17,1,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
138,17,2,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
139,17,3,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
140,17,4,1,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
141,17,5,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
142,17,6,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
143,17,7,0,4,0,0,2,5,Medium,High,0,2,0,1,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
144,18,0,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
145,18,1,0,4,0,0,2,5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
146,18,2,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
147,18,3,0,4,0,0,2,5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
148,18,4,0,2,0,0,0,7,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
149,18,5,0,2,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
150,18,6,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
151,18,7,0,4,0,0,4,4,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
152,19,0,0,2,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
153,19,1,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
154,19,2,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
155,19,3,0,4,0,0,-2,6,Medium,High,0,2,0,0,4,-1,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
156,19,4,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
157,19,5,0,4,0,0,0,4.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
158,19,6,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
159,19,7,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
160,20,0,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
161,20,1,0,2,0,0,2,5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
162,20,2,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
163,20,3,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
164,20,4,0,2,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
165,20,5,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
166,20,6,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
167,20,7,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
168,21,0,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
169,21,1,0,4,-1,0,0,6,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
170,21,2,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
171,21,3,0,4,0,0,0,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
172,21,4,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
173,21,5,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
174,21,6,0,2,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
175,21,7,0,4,0,0,2,4.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
176,22,0,0,4,0,0,4,5,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
177,22,1,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
178,22,2,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,4,3,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
179,22,3,0,4,-1,0,4,5.5,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
180,22,4,0,4,0,0,4,4.5,Medium,High,0,2,0,0,2,-1,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
181,22,5,0,4,0,0,4,4.5,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
182,22,6,0,4,0,0,4,5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
183,22,7,0,4,0,0,4,5,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
184,23,0,0,2,0,0,2,6,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
185,23,1,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
186,23,2,0,4,0,0,2,6,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
187,23,3,0,4,0,0,0,6,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
188,23,4,0,4,0,0,2,5,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
189,23,5,0,4,0,0,2,5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
190,23,6,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
191,23,7,0,4,0,0,4,5.5,Medium,High,0,2,0,0,4,0,0,2,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
192,24,0,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
193,24,1,0,2,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
194,24,2,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
195,24,3,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
196,24,4,0,4,0,0,4,4.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
197,24,5,0,4,0,0,2,5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
198,24,6,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
199,24,7,0,4,0,0,2,4,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
200,25,0,0,4,0,0,0,5.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
201,25,1,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
202,25,2,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
203,25,3,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
204,25,4,0,4,0,0,0,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
205,25,5,0,4,0,0,0,5,Medium,High,0,2,0,1,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
206,25,6,0,4,0,0,2,5,Medium,High,0,2,0,0,4,-1,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
207,25,7,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,0,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
208,26,0,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,-1,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
209,26,1,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
210,26,2,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
211,26,3,0,4,0,0,2,4.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
212,26,4,0,2,0,0,2,5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
213,26,5,0,4,0,0,0,5.5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
214,26,6,0,4,0,0,4,3.5,Medium,High,0,2,0,0,2,-1,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
215,26,7,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
216,27,0,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
217,27,1,0,4,0,0,2,6,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
218,27,2,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
219,27,3,0,4,0,0,4,5,Medium,High,0,2,0,0,4,0,0,2,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
220,27,4,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
221,27,5,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
222,27,6,0,2,0,0,0,6,Medium,High,0,2,0,0,4,0,0,2,5,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
223,27,7,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
224,28,0,0,4,0,0,0,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
225,28,1,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,3,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
226,28,2,0,4,0,0,0,4.5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
227,28,3,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
228,28,4,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
229,28,5,0,2,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
230,28,6,0,2,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
231,28,7,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,0,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
232,29,0,0,4,0,0,4,4,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
233,29,1,0,4,0,0,4,5.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
234,29,2,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,3,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
235,29,3,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
236,29,4,0,4,0,0,2,5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
237,29,5,0,4,0,0,4,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
238,29,6,0,4,0,0,2,5,Medium,High,0,2,0,0,2,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
239,29,7,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
240,30,0,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,3,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
241,30,1,0,4,0,0,2,5.5,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
242,30,2,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
243,30,3,0,2,0,0,2,6,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
244,30,4,0,4,0,0,2,5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
245,30,5,0,4,0,0,4,5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
246,30,6,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
247,30,7,0,4,0,0,4,5,Medium,High,0,2,0,0,2,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
248,31,0,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
249,31,1,0,4,0,-1,2,5.5,Medium,High,0,2,0,0,4,0,1,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
250,31,2,0,4,0,0,2,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
251,31,3,0,4,0,0,4,4.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
252,31,4,0,4,-1,0,4,5.5,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
253,31,5,0,4,0,0,4,6,Medium,High,0,2,0,0,4,0,0,4,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
254,31,6,0,4,0,0,2,5,Medium,High,0,2,0,0,4,-1,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
255,31,7,0,4,0,0,2,5.5,Medium,High,0,2,0,0,4,0,0,2,4,0,0,100,100,LOW,LOW,NA,FALSE,0,0,0,0,0,0,0,0,0
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
1 VERSION CABLE TYPE VENDOR
2 1.2 OPTICS GENERIC
3 SPEED ENCODING SPEED ENCODING SPEED ENCODING
4 50G/400G PAM4 25G/100G NRZ 10G/40G NRZ
5 index Front Port lane TX_EQ_ATTN TX_EQ_PRE1 TX_EQ_PRE2 TX_EQ_PRE3 TX_EQ_POST Optical Module CTLE RX_EQ_COARSE_TUNE_EFFORT_50G RX_EQ_FINE_TUNE_EFFORT_50G RX_GAINSHAPE1 RX_GAINSHAPE2 LINK_TRAINING TX_EQ_ATTN TX_EQ_PRE1 TX_EQ_PRE2 TX_EQ_PRE3 TX_EQ_POST Optical Module CTLE RX_GAINSHAPE1 RX_GAINSHAPE2 RX_AGC_TARGET RX_EYE_DISQUALIFY_THRESHOLD_25G RX_EQ_COARSE_TUNE_EFFORT_25G RX_EQ_FINE_TUNE_EFFORT_25G SD_RESET_THRESHOLD SD_RESET_25G LINK_TRAINING TX_EQ_ATTN TX_EQ_PRE1 TX_EQ_PRE2 TX_EQ_PRE3 TX_EQ_POST RX_GAINSHAPE1 RX_GAINSHAPE2 LINK_TRAINING
6 0 0 0 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 4 3 0 0 100 100 High High NA FALSE 0 0 0 0 0 0 0 0 0
7 1 0 1 0 4 -1 0 2 6 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 High High NA FALSE 0 0 0 0 0 0 0 0 0
8 2 0 2 0 4 0 0 0 6 Medium High 0 2 0 0 4 0 0 4 3 0 0 100 100 High High NA FALSE 0 0 0 0 0 0 0 0 0
9 3 0 3 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 4 3 0 0 100 100 High High NA FALSE 0 0 0 0 0 0 0 0 0
10 4 0 4 0 4 0 0 4 5.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 High High NA FALSE 0 0 0 0 0 0 0 0 0
11 5 0 5 0 4 0 0 4 5.5 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 High High NA FALSE 0 0 0 0 0 0 0 0 0
12 6 0 6 0 4 0 0 4 5.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 High High NA FALSE 0 0 0 0 0 0 0 0 0
13 7 0 7 0 4 0 0 4 5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 High High NA FALSE 0 0 0 0 0 0 0 0 0
14 8 1 0 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
15 9 1 1 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 2 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
16 10 1 2 0 4 0 0 0 6 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
17 11 1 3 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
18 12 1 4 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 -1 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
19 13 1 5 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
20 14 1 6 0 4 0 0 4 5 Medium High 0 2 0 0 4 0 0 6 3 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
21 15 1 7 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
22 16 2 0 0 4 0 0 0 6 Medium High 0 2 0 0 2 0 0 4 3 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
23 17 2 1 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
24 18 2 2 0 4 0 0 0 6 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
25 19 2 3 0 4 0 0 0 6 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
26 20 2 4 0 4 0 0 4 5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
27 21 2 5 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
28 22 2 6 0 4 0 0 4 5 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
29 23 2 7 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
30 24 3 0 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
31 25 3 1 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
32 26 3 2 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
33 27 3 3 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
34 28 3 4 0 4 -1 0 0 5.5 Medium High 0 2 0 0 4 0 0 4 3 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
35 29 3 5 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
36 30 3 6 0 2 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
37 31 3 7 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
38 32 4 0 0 4 0 0 2 4 Medium High 0 2 0 0 4 0 1 2 3 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
39 33 4 1 0 2 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
40 34 4 2 0 4 0 0 2 4 Medium High 0 2 0 0 2 0 0 2 3 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
41 35 4 3 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
42 36 4 4 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
43 37 4 5 0 4 0 0 2 5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
44 38 4 6 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
45 39 4 7 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
46 40 5 0 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
47 41 5 1 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
48 42 5 2 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
49 43 5 3 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
50 44 5 4 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
51 45 5 5 0 2 0 0 4 4 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
52 46 5 6 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
53 47 5 7 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
54 48 6 0 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
55 49 6 1 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
56 50 6 2 0 4 0 0 2 4 Medium High 0 2 0 0 4 -1 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
57 51 6 3 0 4 0 0 0 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
58 52 6 4 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
59 53 6 5 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
60 54 6 6 0 2 0 0 2 5.5 Medium High 0 2 0 0 2 0 1 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
61 55 6 7 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
62 56 7 0 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
63 57 7 1 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
64 58 7 2 0 4 -1 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
65 59 7 3 0 4 0 0 2 4 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
66 60 7 4 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
67 61 7 5 0 4 0 0 0 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
68 62 7 6 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
69 63 7 7 0 4 0 0 4 4 Medium High 0 2 0 1 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
70 64 8 0 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
71 65 8 1 0 4 0 0 4 5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
72 66 8 2 0 4 0 0 2 6 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
73 67 8 3 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
74 68 8 4 0 4 0 0 4 6 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
75 69 8 5 0 4 0 0 4 5.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
76 70 8 6 0 2 0 0 4 6 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
77 71 8 7 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 2 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
78 72 9 0 0 4 0 0 4 5.5 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
79 73 9 1 0 4 0 0 0 6.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
80 74 9 2 0 4 0 0 4 5.5 Medium High 0 2 0 0 4 0 0 4 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
81 75 9 3 0 4 0 0 0 6.5 Medium High 0 2 0 0 4 0 0 4 3 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
82 76 9 4 0 4 0 0 4 6 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
83 77 9 5 0 4 0 0 4 5.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
84 78 9 6 0 4 0 0 2 6 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
85 79 9 7 0 4 0 0 4 5.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
86 80 10 0 0 4 0 0 4 4 Medium High 0 2 0 0 4 0 0 4 3 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
87 81 10 1 0 4 0 0 4 5.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
88 82 10 2 0 4 0 0 4 4 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
89 83 10 3 0 4 0 0 2 6 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
90 84 10 4 0 4 -1 0 4 6 Medium High 0 2 0 0 4 0 0 4 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
91 85 10 5 0 4 0 0 4 5.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
92 86 10 6 0 4 0 0 4 5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
93 87 10 7 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
94 88 11 0 0 4 0 0 0 6.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
95 89 11 1 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
96 90 11 2 0 4 0 0 0 6 Medium High 0 2 0 0 4 0 1 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
97 91 11 3 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
98 92 11 4 0 4 0 0 4 5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
99 93 11 5 0 4 0 0 2 7 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
100 94 11 6 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
101 95 11 7 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
102 96 12 0 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
103 97 12 1 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
104 98 12 2 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
105 99 12 3 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
106 100 12 4 0 4 0 0 2 6 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
107 101 12 5 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
108 102 12 6 0 4 0 0 4 4.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
109 103 12 7 0 4 0 0 0 5.5 Medium High 0 2 0 1 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
110 104 13 0 0 2 0 0 4 4.5 Medium High 0 2 0 0 4 -1 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
111 105 13 1 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
112 106 13 2 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
113 107 13 3 0 2 0 0 2 4.5 Medium High 0 2 0 1 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
114 108 13 4 0 4 0 0 2 6 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
115 109 13 5 0 4 0 0 4 4 Medium High 0 2 0 0 4 0 1 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
116 110 13 6 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
117 111 13 7 0 4 -1 0 0 5 Medium High 0 2 0 0 4 -1 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
118 112 14 0 0 4 0 0 0 5 Medium High 0 2 0 0 2 0 0 2 2 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
119 113 14 1 0 4 0 0 2 4.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
120 114 14 2 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 1 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
121 115 14 3 0 4 0 0 0 5 Medium High 0 2 0 1 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
122 116 14 4 0 4 0 0 4 4.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
123 117 14 5 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
124 118 14 6 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
125 119 14 7 0 4 0 0 0 5 Medium High 0 2 0 1 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
126 120 15 0 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
127 121 15 1 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
128 122 15 2 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
129 123 15 3 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
130 124 15 4 0 4 -1 0 0 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
131 125 15 5 0 4 0 0 0 5 Medium High 0 2 0 0 4 -1 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
132 126 15 6 0 4 0 0 0 4.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
133 127 15 7 0 4 0 0 0 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
134 128 16 0 0 2 0 0 2 4.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
135 129 16 1 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
136 130 16 2 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 1 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
137 131 16 3 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
138 132 16 4 0 4 0 0 0 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
139 133 16 5 0 2 0 0 2 5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
140 134 16 6 0 4 0 0 0 6.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
141 135 16 7 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 1 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
142 136 17 0 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
143 137 17 1 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
144 138 17 2 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
145 139 17 3 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
146 140 17 4 1 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
147 141 17 5 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
148 142 17 6 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
149 143 17 7 0 4 0 0 2 5 Medium High 0 2 0 1 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
150 144 18 0 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
151 145 18 1 0 4 0 0 2 5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
152 146 18 2 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
153 147 18 3 0 4 0 0 2 5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
154 148 18 4 0 2 0 0 0 7 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
155 149 18 5 0 2 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
156 150 18 6 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
157 151 18 7 0 4 0 0 4 4 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
158 152 19 0 0 2 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
159 153 19 1 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
160 154 19 2 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
161 155 19 3 0 4 0 0 -2 6 Medium High 0 2 0 0 4 -1 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
162 156 19 4 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
163 157 19 5 0 4 0 0 0 4.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
164 158 19 6 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
165 159 19 7 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
166 160 20 0 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
167 161 20 1 0 2 0 0 2 5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
168 162 20 2 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
169 163 20 3 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
170 164 20 4 0 2 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
171 165 20 5 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
172 166 20 6 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
173 167 20 7 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
174 168 21 0 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
175 169 21 1 0 4 -1 0 0 6 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
176 170 21 2 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
177 171 21 3 0 4 0 0 0 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
178 172 21 4 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
179 173 21 5 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
180 174 21 6 0 2 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
181 175 21 7 0 4 0 0 2 4.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
182 176 22 0 0 4 0 0 4 5 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
183 177 22 1 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
184 178 22 2 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 4 3 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
185 179 22 3 0 4 -1 0 4 5.5 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
186 180 22 4 0 4 0 0 4 4.5 Medium High 0 2 0 0 2 -1 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
187 181 22 5 0 4 0 0 4 4.5 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
188 182 22 6 0 4 0 0 4 5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
189 183 22 7 0 4 0 0 4 5 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
190 184 23 0 0 2 0 0 2 6 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
191 185 23 1 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
192 186 23 2 0 4 0 0 2 6 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
193 187 23 3 0 4 0 0 0 6 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
194 188 23 4 0 4 0 0 2 5 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
195 189 23 5 0 4 0 0 2 5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
196 190 23 6 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
197 191 23 7 0 4 0 0 4 5.5 Medium High 0 2 0 0 4 0 0 2 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
198 192 24 0 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
199 193 24 1 0 2 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
200 194 24 2 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
201 195 24 3 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
202 196 24 4 0 4 0 0 4 4.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
203 197 24 5 0 4 0 0 2 5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
204 198 24 6 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
205 199 24 7 0 4 0 0 2 4 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
206 200 25 0 0 4 0 0 0 5.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
207 201 25 1 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
208 202 25 2 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
209 203 25 3 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
210 204 25 4 0 4 0 0 0 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
211 205 25 5 0 4 0 0 0 5 Medium High 0 2 0 1 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
212 206 25 6 0 4 0 0 2 5 Medium High 0 2 0 0 4 -1 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
213 207 25 7 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 0 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
214 208 26 0 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 -1 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
215 209 26 1 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
216 210 26 2 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
217 211 26 3 0 4 0 0 2 4.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
218 212 26 4 0 2 0 0 2 5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
219 213 26 5 0 4 0 0 0 5.5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
220 214 26 6 0 4 0 0 4 3.5 Medium High 0 2 0 0 2 -1 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
221 215 26 7 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
222 216 27 0 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
223 217 27 1 0 4 0 0 2 6 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
224 218 27 2 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
225 219 27 3 0 4 0 0 4 5 Medium High 0 2 0 0 4 0 0 2 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
226 220 27 4 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
227 221 27 5 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
228 222 27 6 0 2 0 0 0 6 Medium High 0 2 0 0 4 0 0 2 5 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
229 223 27 7 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
230 224 28 0 0 4 0 0 0 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
231 225 28 1 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 3 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
232 226 28 2 0 4 0 0 0 4.5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
233 227 28 3 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
234 228 28 4 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
235 229 28 5 0 2 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
236 230 28 6 0 2 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
237 231 28 7 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 0 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
238 232 29 0 0 4 0 0 4 4 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
239 233 29 1 0 4 0 0 4 5.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
240 234 29 2 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 3 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
241 235 29 3 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
242 236 29 4 0 4 0 0 2 5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
243 237 29 5 0 4 0 0 4 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
244 238 29 6 0 4 0 0 2 5 Medium High 0 2 0 0 2 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
245 239 29 7 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
246 240 30 0 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 3 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
247 241 30 1 0 4 0 0 2 5.5 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
248 242 30 2 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
249 243 30 3 0 2 0 0 2 6 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
250 244 30 4 0 4 0 0 2 5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
251 245 30 5 0 4 0 0 4 5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
252 246 30 6 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
253 247 30 7 0 4 0 0 4 5 Medium High 0 2 0 0 2 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
254 248 31 0 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
255 249 31 1 0 4 0 -1 2 5.5 Medium High 0 2 0 0 4 0 1 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
256 250 31 2 0 4 0 0 2 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
257 251 31 3 0 4 0 0 4 4.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
258 252 31 4 0 4 -1 0 4 5.5 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
259 253 31 5 0 4 0 0 4 6 Medium High 0 2 0 0 4 0 0 4 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
260 254 31 6 0 4 0 0 2 5 Medium High 0 2 0 0 4 -1 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
261 255 31 7 0 4 0 0 2 5.5 Medium High 0 2 0 0 4 0 0 2 4 0 0 100 100 LOW LOW NA FALSE 0 0 0 0 0 0 0 0 0
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_A"
netdev:
- auto_create: "no"
@ -13,9 +14,14 @@ nodes:
ilpm_enable: "1"
forward_profile: "IFCS_FORWARD_PROFILE_ID_PROFILE_E"
ecn_stats_enable: "1"
led_cfg_sck_rate: "0x4"
led_refresh_precliff_timer: "0xa"
led_refresh_cliff_timer: "0xc350"
pcie_attn: "10, 0, 0, 0"
pcie_post: "10, 18, 18, 18"
pcie_pre1: "0, 0, 0, 0"
led_cfg_sck_rate: "0x5"
led_refresh_precliff_timer: "0x18eec2"
led_refresh_cliff_timer: "0x15e"
led_cfg_pic_stream_mode: "1"
led_refresh_tmr_ctl_enable: "1"
txring:
- txring_id: "0"
desc_count: "1024"

View File

@ -4,6 +4,6 @@ IFCS_INNO_CLI_PORT : "9999"
IFCS_TARGET : "device"
INNOVIUM_DIR : "/innovium"
PYTHONPATH : "$INNOVIUM_DIR:$INNOVIUM_DIR/cmds:$INNOVIUM_DIR/scripts:$INNOVIUM_DIR/test/:$INNOVIUM_DIR/test/utils:$INNOVIUM_DIR/utils:$INNOVIUM_DIR/pyctypes"
PLATFORM_LIBRARY: "/usr/share/sonic/platform/libplatform.so"
PLATFORM_LIBRARY: "/usr/share/sonic/platform/lib_ivm_serdes_pltfm.so"
IVM_SAI_DATAPATH_CONFIG_FILE: "/usr/share/sonic/hwsku/ivm.sai.datapath.config.yaml"
IVM_SAI_PARAM_A0008: "32"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"
@ -13,9 +14,14 @@ nodes:
ilpm_enable: "1"
forward_profile: "IFCS_FORWARD_PROFILE_ID_PROFILE_E"
ecn_stats_enable: "1"
led_cfg_sck_rate: "0x4"
led_refresh_precliff_timer: "0xa"
led_refresh_cliff_timer: "0xc350"
pcie_attn: "10, 0, 0, 0"
pcie_post: "10, 18, 18, 18"
pcie_pre1: "0, 0, 0, 0"
led_cfg_sck_rate: "0x5"
led_refresh_precliff_timer: "0x18eec2"
led_refresh_cliff_timer: "0x15e"
led_cfg_pic_stream_mode: "1"
led_refresh_tmr_ctl_enable: "1"
txring:
- txring_id: "0"
desc_count: "1024"

View File

@ -4,6 +4,6 @@ IFCS_INNO_CLI_PORT : "9999"
IFCS_TARGET : "device"
INNOVIUM_DIR : "/innovium"
PYTHONPATH : "$INNOVIUM_DIR:$INNOVIUM_DIR/cmds:$INNOVIUM_DIR/scripts:$INNOVIUM_DIR/test/:$INNOVIUM_DIR/test/utils:$INNOVIUM_DIR/utils:$INNOVIUM_DIR/pyctypes"
PLATFORM_LIBRARY: "/usr/share/sonic/platform/libplatform.so"
PLATFORM_LIBRARY: "/usr/share/sonic/platform/lib_ivm_serdes_pltfm.so"
IVM_SAI_DATAPATH_CONFIG_FILE: "/usr/share/sonic/hwsku/ivm.sai.datapath.config.yaml"
IVM_SAI_PARAM_A0008: "32"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_A"
netdev:
- auto_create: "no"
@ -13,9 +14,14 @@ nodes:
ilpm_enable: "1"
forward_profile: "IFCS_FORWARD_PROFILE_ID_PROFILE_E"
ecn_stats_enable: "1"
led_cfg_sck_rate: "0x4"
led_refresh_precliff_timer: "0xa"
led_refresh_cliff_timer: "0xc350"
pcie_attn: "10, 0, 0, 0"
pcie_post: "10, 18, 18, 18"
pcie_pre1: "0, 0, 0, 0"
led_cfg_sck_rate: "0x5"
led_refresh_precliff_timer: "0x18eec2"
led_refresh_cliff_timer: "0x15e"
led_cfg_pic_stream_mode: "1"
led_refresh_tmr_ctl_enable: "1"
txring:
- txring_id: "0"
desc_count: "1024"

View File

@ -4,6 +4,6 @@ IFCS_INNO_CLI_PORT : "9999"
IFCS_TARGET : "device"
INNOVIUM_DIR : "/innovium"
PYTHONPATH : "$INNOVIUM_DIR:$INNOVIUM_DIR/cmds:$INNOVIUM_DIR/scripts:$INNOVIUM_DIR/test/:$INNOVIUM_DIR/test/utils:$INNOVIUM_DIR/utils:$INNOVIUM_DIR/pyctypes"
PLATFORM_LIBRARY: "/usr/share/sonic/platform/libplatform.so"
PLATFORM_LIBRARY: "/usr/share/sonic/platform/lib_ivm_serdes_pltfm.so"
IVM_SAI_DATAPATH_CONFIG_FILE: "/usr/share/sonic/hwsku/ivm.sai.datapath.config.yaml"
IVM_SAI_PARAM_A0008: "32"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_B"
netdev:
- auto_create: "no"
@ -12,9 +13,14 @@ nodes:
max_lossless_tc: "2"
ilpm_enable: "1"
forward_profile: "IFCS_FORWARD_PROFILE_ID_PROFILE_E"
led_cfg_sck_rate: "0x4"
led_refresh_precliff_timer: "0xa"
led_refresh_cliff_timer: "0xc350"
pcie_attn: "10, 0, 0, 0"
pcie_post: "10, 18, 18, 18"
pcie_pre1: "0, 0, 0, 0"
led_cfg_sck_rate: "0x5"
led_refresh_precliff_timer: "0x18eec2"
led_refresh_cliff_timer: "0x15e"
led_cfg_pic_stream_mode: "1"
led_refresh_tmr_ctl_enable: "1"
txring:
- txring_id: "0"
desc_count: "1024"

View File

@ -4,6 +4,6 @@ IFCS_INNO_CLI_PORT : "9999"
IFCS_TARGET : "device"
INNOVIUM_DIR : "/innovium"
PYTHONPATH : "$INNOVIUM_DIR:$INNOVIUM_DIR/cmds:$INNOVIUM_DIR/scripts:$INNOVIUM_DIR/test/:$INNOVIUM_DIR/test/utils:$INNOVIUM_DIR/utils:$INNOVIUM_DIR/pyctypes"
PLATFORM_LIBRARY: "/usr/share/sonic/platform/libplatform.so"
PLATFORM_LIBRARY: "/usr/share/sonic/platform/lib_ivm_serdes_pltfm.so"
IVM_SAI_DATAPATH_CONFIG_FILE: "/usr/share/sonic/hwsku/ivm.sai.datapath.config.yaml"
IVM_SAI_PARAM_A0008: "32"

View File

@ -4,6 +4,7 @@ ifcs:
nodes:
- node_id: "0"
options:
sd_low_power_mode_global_default: "true"
sku: "configs/sku/innovium.77700_A"
netdev:
- auto_create: "no"
@ -13,9 +14,14 @@ nodes:
ilpm_enable: "1"
forward_profile: "IFCS_FORWARD_PROFILE_ID_PROFILE_E"
ecn_stats_enable: "1"
led_cfg_sck_rate: "0x4"
led_refresh_precliff_timer: "0xa"
led_refresh_cliff_timer: "0xc350"
pcie_attn: "10, 0, 0, 0"
pcie_post: "10, 18, 18, 18"
pcie_pre1: "0, 0, 0, 0"
led_cfg_sck_rate: "0x5"
led_refresh_precliff_timer: "0x18eec2"
led_refresh_cliff_timer: "0x15e"
led_cfg_pic_stream_mode: "1"
led_refresh_tmr_ctl_enable: "1"
txring:
- txring_id: "0"
desc_count: "1024"

View File

@ -4,6 +4,6 @@ IFCS_INNO_CLI_PORT : "9999"
IFCS_TARGET : "device"
INNOVIUM_DIR : "/innovium"
PYTHONPATH : "$INNOVIUM_DIR:$INNOVIUM_DIR/cmds:$INNOVIUM_DIR/scripts:$INNOVIUM_DIR/test/:$INNOVIUM_DIR/test/utils:$INNOVIUM_DIR/utils:$INNOVIUM_DIR/pyctypes"
PLATFORM_LIBRARY: "/usr/share/sonic/platform/libplatform.so"
PLATFORM_LIBRARY: "/usr/share/sonic/platform/lib_ivm_serdes_pltfm.so"
IVM_SAI_DATAPATH_CONFIG_FILE: "/usr/share/sonic/hwsku/ivm.sai.datapath.config.yaml"
IVM_SAI_PARAM_A0008: "32"

View File

@ -7,8 +7,13 @@ $(SONIC_ONE_IMAGE)_INSTALLS += $(SYSTEMD_SONIC_GENERATOR)
$(SONIC_ONE_IMAGE)_LAZY_INSTALLS += $(CEL_MIDSTONE_200I_PLATFORM_MODULE)
$(SONIC_ONE_IMAGE)_LAZY_INSTALLS += $(DELTA_ETC032IF_PLATFORM_MODULE)
$(SONIC_ONE_IMAGE)_LAZY_INSTALLS += $(DELTA_EVSA32Q56_PLATFORM_MODULE)
$(SONIC_ONE_IMAGE)_LAZY_INSTALLS += $(CAMEO_ESC601_32Q_PLATFORM_MODULE) $(CAMEO_ESC600_128Q_PLATFORM_MODULE) $(CAMEO_ESQC610_56SQ_PLATFORM_MODULE) $(CAMEO_ESC602_32Q_PLATFORM_MODULE)
$(SONIC_ONE_IMAGE)_LAZY_INSTALLS += $(CAMEO_ESC601_32Q_PLATFORM_MODULE) $(CAMEO_ESC600_128Q_PLATFORM_MODULE) $(CAMEO_ESQC610_56SQ_PLATFORM_MODULE) $(CAMEO_ESC602_32Q_PLATFORM_MODULE) $(CAMEO_ESCC601_32Q_PLATFORM_MODULE)
$(SONIC_ONE_IMAGE)_LAZY_INSTALLS += $(WISTRON_PLATFORM_MODULE)
$(SONIC_ONE_IMAGE)_INSTALLS += $(INVM_DRV)
$(SONIC_ONE_IMAGE)_DOCKERS += $(SONIC_INSTALL_DOCKER_IMAGES)
ifeq ($(INSTALL_DEBUG_TOOLS),y)
$(SONIC_ONE_IMAGE)_DOCKERS += $(SONIC_INSTALL_DOCKER_DBG_IMAGES)
$(SONIC_ONE_IMAGE)_DOCKERS += $(filter-out $(patsubst %-$(DBG_IMAGE_MARK).gz,%.gz, $(SONIC_INSTALL_DOCKER_DBG_IMAGES)), $(SONIC_INSTALL_DOCKER_IMAGES))
else
$(SONIC_ONE_IMAGE)_DOCKERS = $(SONIC_INSTALL_DOCKER_IMAGES)
endif
SONIC_INSTALLERS += $(SONIC_ONE_IMAGE)

View File

@ -3,6 +3,7 @@ CAMEO_ESC601_32Q_PLATFORM_MODULE_VERSION = 1.0.0
CAMEO_ESC600_128Q_PLATFORM_MODULE_VERSION = 1.0.0
CAMEO_ESQC610_56SQ_PLATFORM_MODULE_VERSION = 1.0.0
CAMEO_ESC602_32Q_PLATFORM_MODULE_VERSION = 1.0.0
CAMEO_ESCC601_32Q_PLATFORM_MODULE_VERSION = 1.0.0
export CAMEO_ESC601_32Q_PLATFORM_MODULE_VERSION
export CAMEO_ESC600_128Q_PLATFORM_MODULE_VERSION
@ -27,4 +28,9 @@ CAMEO_ESC602_32Q_PLATFORM_MODULE = sonic-platform-cameo-esc602-32q_$(CAMEO_ESC60
$(CAMEO_ESC602_32Q_PLATFORM_MODULE)_PLATFORM = x86_64-cameo_esc602_32q-r0
$(eval $(call add_extra_package,$(CAMEO_ESC601_32Q_PLATFORM_MODULE),$(CAMEO_ESC602_32Q_PLATFORM_MODULE)))
CAMEO_ESCC601_32Q_PLATFORM_MODULE = sonic-platform-cameo-escc601-32q_$(CAMEO_ESCC601_32Q_PLATFORM_MODULE_VERSION)_amd64.deb
$(CAMEO_ESCC601_32Q_PLATFORM_MODULE)_PLATFORM = x86_64-cameo_escc601_32q-r0
$(eval $(call add_extra_package,$(CAMEO_ESC601_32Q_PLATFORM_MODULE),$(CAMEO_ESCC601_32Q_PLATFORM_MODULE)))
SONIC_STRETCH_DEBS +=$(CAMEO_ESC601_32Q_PLATFORM_MODULE)

View File

@ -0,0 +1,14 @@
#! /bin/sh
# driver version
PLATFORM=$1
PLATFORM_PATH=$2
export PLATFORM_DRIVER_VER='"0.3.16"'
echo "PLATFORM_DRIVER_VER = $PLATFORM_DRIVER_VER"
util_name=$(echo $PLATFORM | cut -d "-" -f 1)
j2 $PLATFORM_PATH/templates/cameo_${util_name}_util.py.j2 -o $PLATFORM_PATH/utils/cameo_${util_name}_util.py
chmod 775 $PLATFORM_PATH/utils/cameo_${util_name}_util.py

View File

@ -0,0 +1,6 @@
sonic-cameo-platform-modules (1.0.0) unstable; urgency=low
* Add support for ESC601 series
-- developer <developer@cameo.com> Mon, 29 Jul 2019 11:00:00 +0800

View File

@ -0,0 +1 @@
9

View File

@ -0,0 +1,26 @@
Source: sonic-cameo-platform-modules
Section: main
Priority: extra
Maintainer: yuchun_hsueh@cameo.com.tw
Build-Depends: debhelper (>= 8.0.0), bzip2
Standards-Version: 3.9.3
Package: sonic-platform-cameo-esc601-32q
Architecture: amd64
Description: kernel modules for platform devices such as fan, led, sfp
Package: sonic-platform-cameo-esc600-128q
Architecture: amd64
Description: kernel modules for platform devices such as fan, led, sfp
Package: sonic-platform-cameo-esqc610-56sq
Architecture: amd64
Description: kernel modules for platform devices such as fan, led, sfp
Package: sonic-platform-cameo-esc602-32q
Architecture: amd64
Description: kernel modules for platform devices such as fan, led, sfp
Package: sonic-platform-cameo-escc601-32q
Architecture: amd64
Description: kernel modules for platform devices such as fan, led, sfp

View File

@ -0,0 +1,48 @@
#!/usr/bin/make -f
export INSTALL_MOD_DIR:=extra
PYTHON ?= python2
PACKAGE_PRE_NAME := sonic-platform-cameo
KVERSION ?= $(shell uname -r)
KERNEL_SRC := /lib/modules/$(KVERSION)
MOD_SRC_DIR:= $(shell pwd)
MODULE_DIRS:= esc601-32q esc600-128q esqc610-56sq esc602-32q escc601-32q
MODULE_DIR := modules
%:
dh $@
override_dh_auto_build:
(for mod in $(MODULE_DIRS); do \
make modules -C $(KERNEL_SRC)/build M=$(MOD_SRC_DIR)/$${mod}/modules; \
if [ -f "$${mod}/setup.py" ]; then \
rm -rdf build; \
$(PYTHON) $${mod}/setup.py bdist_wheel -d $(MOD_SRC_DIR)/$${mod}/modules; \
fi;\
if [ $${mod} = "esc600-128q" ]; then \
make -C $(MOD_SRC_DIR)/$${mod}/credo_baldeagle/lib; \
if [ -f "$${mod}/platform_setup.py" ]; then \
rm -rdf build; \
$(PYTHON) $${mod}/platform_setup.py bdist_wheel -d $(MOD_SRC_DIR)/$${mod}/modules; \
fi;\
fi; \
debian/cameo_platform_version.sh $${mod} $(MOD_SRC_DIR)/$${mod}; \
done)
override_dh_auto_install:
(for mod in $(MODULE_DIRS); do \
dh_installdirs -p$(PACKAGE_PRE_NAME)-$${mod} /$(KERNEL_SRC)/$(INSTALL_MOD_DIR); \
cp $(MOD_SRC_DIR)/$${mod}/$(MODULE_DIR)/*.ko \
debian/$(PACKAGE_PRE_NAME)-$${mod}/$(KERNEL_SRC)/$(INSTALL_MOD_DIR); \
done)
override_dh_usrlocal:
override_dh_clean:
dh_clean
(for mod in $(MODULE_DIRS); do \
make -C $(KERNEL_SRC)/build M=$(MOD_SRC_DIR)/$${mod}/modules clean; \
done)

View File

@ -0,0 +1,9 @@
esc600-128q/utils/* usr/local/bin
esc600-128q/service/*.service lib/systemd/system
esc600-128q/scripts/sensors usr/bin
esc600-128q/scripts/slotcheck etc/update-motd.d
esc600-128q/credo_baldeagle/bin/* usr/local/bin
esc600-128q/credo_baldeagle/lib/*.so lib/credo_sdk
esc600-128q/credo_baldeagle/credo_sdk_fw/* lib/credo_sdk
esc600-128q/modules/esc600_128q-1.0-py2-none-any.whl usr/share/sonic/device/x86_64-cameo_esc600_128q-r0
esc600-128q/modules/sonic_platform-1.0-py2-none-any.whl usr/share/sonic/device/x86_64-cameo_esc600_128q-r0

View File

@ -0,0 +1,7 @@
depmod -a
pip install --upgrade --target=/usr/local/lib/python2.7/dist-packages /usr/share/sonic/device/x86_64-cameo_esc600_128q-r0/esc600_128q-1.0-py2-none-any.whl
systemctl enable esc600-platform-init.service
systemctl start esc600-platform-init.service
systemctl enable phy_module_init.service
systemctl start phy_module_init.service
/usr/local/bin/cameo_esc600_platform.sh

View File

@ -0,0 +1,4 @@
esc601-32q/scripts/* usr/bin
esc601-32q/utils/* usr/local/bin
esc601-32q/service/*.service lib/systemd/system
esc601-32q/modules/sonic_platform-1.0-py2-none-any.whl usr/share/sonic/device/x86_64-cameo_esc601_32q-r0

View File

@ -0,0 +1,8 @@
#!/bin/sh
depmod -a
systemctl enable esc601-platform-init.service
systemctl start esc601-platform-init.service
/usr/local/bin/cameo_esc601_platform.sh

View File

@ -0,0 +1,4 @@
esc602-32q/scripts/* usr/bin
esc602-32q/utils/* usr/local/bin
esc602-32q/service/*.service lib/systemd/system
esc602-32q/modules/sonic_platform-1.0-py2-none-any.whl usr/share/sonic/device/x86_64-cameo_esc602_32q-r0

View File

@ -0,0 +1,8 @@
#!/bin/sh
depmod -a
systemctl enable esc602-platform-init.service
systemctl start esc602-platform-init.service
/usr/local/bin/cameo_esc602_platform.sh

View File

@ -0,0 +1,4 @@
escc601-32q/scripts/* usr/bin
escc601-32q/utils/* usr/local/bin
escc601-32q/service/*.service lib/systemd/system
escc601-32q/modules/sonic_platform-1.0-py2-none-any.whl usr/share/sonic/device/x86_64-cameo_escc601_32q-r0

View File

@ -0,0 +1,8 @@
#!/bin/sh
depmod -a
systemctl enable escc601-platform-init.service
systemctl start escc601-platform-init.service
/usr/local/bin/cameo_escc601_platform.sh

View File

@ -0,0 +1,4 @@
esqc610-56sq/scripts/* usr/bin
esqc610-56sq/utils/* usr/local/bin
esqc610-56sq/service/* lib/systemd/system
esqc610-56sq/modules/sonic_platform-1.0-py2-none-any.whl usr/share/sonic/device/x86_64-cameo_esqc610_56sq-r0

View File

@ -0,0 +1,7 @@
#!/bin/sh
depmod -a
systemctl enable esqc610-platform-init.service
systemctl start esqc610-platform-init.service
/usr/local/bin/cameo_esqc610_platform.sh

View File

@ -1,13 +1,12 @@
BALDEAGLESDK_100G_EXE="/usr/local/bin/BaldEagleSdk_v2_12_00_20190715_cameo_gearbox.py"
BALDEAGLESDK_400G_EXE="/usr/local/bin/BaldEagleSdk_v2_14_18.py"
BALDEAGLESDK_EXE="/usr/local/bin/BaldEagleSdk_v2_18.py"
EXE1=$BALDEAGLESDK_100G_EXE
EXE3=$BALDEAGLESDK_100G_EXE
EXE5=$BALDEAGLESDK_100G_EXE
EXE7=$BALDEAGLESDK_100G_EXE
EXE1=$BALDEAGLESDK_EXE
EXE3=$BALDEAGLESDK_EXE
EXE5=$BALDEAGLESDK_EXE
EXE7=$BALDEAGLESDK_EXE
# credo_auto1357.sh x x x x
# x: type of PHY module, 1 = 100G, 2 = 400G, 0 = don't init
# x: type of PHY module, 1 = init, 0 = don't init
if [ $# -ne 4 ]; then
echo "invalid parameter"
exit 1
@ -15,25 +14,12 @@ fi
for var in $1 $2 $3 $4
do
if [ $var -lt 0 ] || [ $var -gt 2 ]; then
if [ $var -lt 0 ] || [ $var -gt 1 ]; then
echo "invalid parameter"
exit 1
fi
done
if [ $1 -eq 2 ]; then
EXE1=$BALDEAGLESDK_400G_EXE
fi
if [ $2 -eq 2 ]; then
EXE3=$BALDEAGLESDK_400G_EXE
fi
if [ $3 -eq 2 ]; then
EXE5=$BALDEAGLESDK_400G_EXE
fi
if [ $4 -eq 2 ]; then
EXE7=$BALDEAGLESDK_400G_EXE
fi
d1=$(date +"%s")
#long action here
if [ $1 -ne 0 ]; then

View File

@ -1,13 +1,12 @@
BALDEAGLESDK_100G_EXE="/usr/local/bin/BaldEagleSdk_v2_12_00_20190715_cameo_gearbox.py"
BALDEAGLESDK_400G_EXE="/usr/local/bin/BaldEagleSdk_v2_14_18.py"
BALDEAGLESDK_EXE="/usr/local/bin/BaldEagleSdk_v2_18.py"
EXE2=$BALDEAGLESDK_100G_EXE
EXE4=$BALDEAGLESDK_100G_EXE
EXE6=$BALDEAGLESDK_100G_EXE
EXE8=$BALDEAGLESDK_100G_EXE
EXE2=$BALDEAGLESDK_EXE
EXE4=$BALDEAGLESDK_EXE
EXE6=$BALDEAGLESDK_EXE
EXE8=$BALDEAGLESDK_EXE
# credo_auto2468.sh x x x x
# x: type of PHY module, 1 = 100G, 2 = 400G, 0 = don't init
# x: type of PHY module, 1 = init, 0 = don't init
if [ $# -ne 4 ]; then
echo "invalid parameter"
exit 1
@ -15,25 +14,12 @@ fi
for var in $1 $2 $3 $4
do
if [ $var -lt 0 ] || [ $var -gt 2 ]; then
if [ $var -lt 0 ] || [ $var -gt 1 ]; then
echo "invalid parameter"
exit 1
fi
done
if [ $1 -eq 2 ]; then
EXE2=$BALDEAGLESDK_400G_EXE
fi
if [ $2 -eq 2 ]; then
EXE4=$BALDEAGLESDK_400G_EXE
fi
if [ $3 -eq 2 ]; then
EXE6=$BALDEAGLESDK_400G_EXE
fi
if [ $4 -eq 2 ]; then
EXE8=$BALDEAGLESDK_400G_EXE
fi
d1=$(date +"%s")
#long action here
if [ $1 -ne 0 ]; then

View File

@ -0,0 +1,11 @@
ifndef CC
CC=gcc
endif
all:
$(CC) cameo_mdio.c -fPIC -w -shared -o libcameo_mdio.so
clean:
rm libcameo_mdio.so

View File

@ -0,0 +1,404 @@
#include <stdio.h>
#include <stdint.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <stdbool.h>
#include <string.h>
#include <unistd.h>
#include "cameo_mdio.h"
/*****************/
/*#define DEBUG*/
#ifdef DEBUG
#define DEBUG_PRINT(fmt, ...) printf("[DEBUG] %s, %s(), line:%d, msg:" fmt, __FILE__, __func__, __LINE__, ##__VA_ARGS__)
#else
#define DEBUG_PRINT(fmt, ...)
#endif
#define SUCCESS 1
#define FAIL 0
#define READ_BACK_CHECK
#define READ_BACK_CHECK_MS 1
#define MDIO_0 0x0
#define MDIO_1 0x10
#define MDIO_2 0x20
#define MDIO_3 0x30
#define PCI_DEV_MEM_SIZE 0x5000
#define OP_WRITE 0x400
#define OP_READ 0xC00
#define OP_ADDR 0x0
/*
#define ST_OP_PRTAD_DEVAD_REG 0x30
#define PHY_DATA_REG 0x32
#define GO_AND_DONE_REG 0x34
*/
#define ST_OP_PRTAD_DEVAD_REG 0x0
#define PHY_DATA_REG 0x2
#define GO_AND_DONE_REG 0x4
/*tested 90ms is good!*/
#define MDIO_0_1 0x0
#define MDIO_1_1 0x10
#define MDIO_2_1 0x20
#define MDIO_3_1 0x30
#define MDIO_0_3 0x4
#define MDIO_1_3 0x14
#define MDIO_2_3 0x24
#define MDIO_3_3 0x33
size_t BarSize;
int Board_fd = -1;
uint32_t *gP0Mmap;
int gTest = 0;
uint32_t gMdio_Reg_1 = MDIO_1 + ST_OP_PRTAD_DEVAD_REG;
uint32_t gMdio_Reg_2 = MDIO_1 + PHY_DATA_REG;
uint32_t gMdio_Reg_3 = MDIO_1 + GO_AND_DONE_REG;
uint8_t port_addr[2] = {0,0};
uint8_t total_port_addr[16] = {0x18,0x19,0x1a,0x1b,0x1c,0x1d,0x1e,0x1f, //card 1 3 5 7
0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17}; //card 2 4 6 8
void cameo_switch_phy_id(uint32_t id,uint32_t card)
{
uint32_t index = (id-1)*2;
if (card % 2 == 0)
{
index = index + 8;
}
switch (card) {
case 1:
case 2:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_0 ;
break;
case 3:
case 4:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_1 ;
break;
case 5:
case 6:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_2 ;
break;
case 7:
case 8:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_3 ;
break;
default: printf("unknown"); break;
}
gMdio_Reg_1 = gMdio_Reg_1 + ST_OP_PRTAD_DEVAD_REG;
gMdio_Reg_2 = gMdio_Reg_2 + PHY_DATA_REG;
gMdio_Reg_3 = gMdio_Reg_3 + GO_AND_DONE_REG;
DEBUG_PRINT("Using MDIO Reg 1: 0x%08x MDIO Reg 2: 0x%08x\n",gMdio_Reg_1,gMdio_Reg_3);
port_addr[0] = total_port_addr[index];
port_addr[1] = total_port_addr[index+1];
DEBUG_PRINT("\n-------+------------\n");
DEBUG_PRINT(" Die 0 | 0x%08x \n",port_addr[0]);
DEBUG_PRINT(" Die 1 | 0x%08x \n",port_addr[1]);
DEBUG_PRINT("-------+------------\n");
DEBUG_PRINT("gMdio_Reg_1 0x%02x gMdio_Reg_3 0x%02x \n",gMdio_Reg_1,gMdio_Reg_3);
}
void cm_sw_phy_card(uint32_t id,uint32_t card)
{
uint32_t index = (id-1)*2;
if (card % 2 == 0)
{
index = index + 8;
}
switch (card) {
case 1:
case 2:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_0 ;
break;
case 3:
case 4:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_1 ;
break;
case 5:
case 6:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_2 ;
break;
case 7:
case 8:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_3 ;
break;
default: printf("unknown"); break;
}
gMdio_Reg_1 = gMdio_Reg_1 + ST_OP_PRTAD_DEVAD_REG;
gMdio_Reg_2 = gMdio_Reg_2 + PHY_DATA_REG;
gMdio_Reg_3 = gMdio_Reg_3 + GO_AND_DONE_REG;
DEBUG_PRINT("Using MDIO Reg 1: 0x%08x MDIO Reg 2: 0x%08x\n",gMdio_Reg_1,gMdio_Reg_3);
port_addr[0] = total_port_addr[index];
port_addr[1] = total_port_addr[index+1];
DEBUG_PRINT("\n-------+------------\n");
DEBUG_PRINT(" Die 0 | 0x%08x \n",port_addr[0]);
DEBUG_PRINT(" Die 1 | 0x%08x \n",port_addr[1]);
DEBUG_PRINT("-------+------------\n");
DEBUG_PRINT("gMdio_Reg_1 0x%02x gMdio_Reg_3 0x%02x \n",gMdio_Reg_1,gMdio_Reg_3);
}
void mdio_write(int phyad, int devad, int offset_in_mmd, int data)
{
DEBUG_PRINT("mdio_write phyad %x devad %x mmd %x data %x \n",phyad,devad,offset_in_mmd,data);
int output=0;
output = port_addr[phyad];
int addr = 0;
int action = 0;
output = (offset_in_mmd << 16) | OP_ADDR | (output << 5) | devad;
DEBUG_PRINT("mdio_write 1 output 0x%x \n",output);
addr = gMdio_Reg_1;
*(gP0Mmap + addr/4) = output;
output = 0x1;
addr = gMdio_Reg_3;
*(gP0Mmap + addr/4) = output;
#ifdef READ_BACK_CHECK
int i=0;
while(i<100)
{
i++;
addr = gMdio_Reg_3;
action = 0;
action = *(gP0Mmap + addr/4);
usleep(READ_BACK_CHECK_MS);
if ((action & 0x1) == 0x1)
{
break;
}
}
#endif
output = 0;
output = port_addr[phyad];
output = (data << 16) | OP_WRITE | (output << 5) | devad;
DEBUG_PRINT("mdio_write 2 output 0x%x \n",output);
addr = gMdio_Reg_1;
*(gP0Mmap + addr/4) = output;
output = 0x1;
addr = gMdio_Reg_3;
*(gP0Mmap + addr/4) = output;
#ifdef READ_BACK_CHECK
i=0;
while(i<100)
{
i++;
addr = gMdio_Reg_3;
action = 0;
action = *(gP0Mmap + addr/4);
usleep(READ_BACK_CHECK_MS);
if ((action & 0x1)== 0x1)
{
break;
}
}
#endif
}
unsigned short mdio_read(int phyad, int devad, int offset_in_mmd)
{
DEBUG_PRINT("mdio_read phyad %x devad %x mmd %x \n",phyad,devad,offset_in_mmd);
int addr = 0;
int output= 0;
int read_result = 0,action = 0;
unsigned short data = 0;
output = port_addr[phyad];
output = (offset_in_mmd << 16) | OP_ADDR | (output << 5) | devad;
DEBUG_PRINT("mdio_read 1 output 0x%x \n",output);
addr = gMdio_Reg_1;
*(gP0Mmap + addr/4) = output;
output = 0x1;
addr = gMdio_Reg_3;
*(gP0Mmap + addr/4) = output;
#ifdef READ_BACK_CHECK
int i=0;
while(i<100)
{
i++;
addr = gMdio_Reg_3;
action = 0;
action = *(gP0Mmap + addr/4);
usleep(READ_BACK_CHECK_MS);
if ((action & 0x1) == 0x1)
{
break;
}
}
#endif
output = 0;
output = port_addr[phyad];
output = OP_READ|(output << 5)|devad;
addr = gMdio_Reg_1;
*(gP0Mmap + addr/4) = output;
output = 0x2;
addr = gMdio_Reg_3;
*(gP0Mmap + addr/4) = output;
DEBUG_PRINT("mdio_read 2 output 0x%x \n",output);
#ifdef READ_BACK_CHECK
i=0;
while(i<100)
{
i++;
addr = gMdio_Reg_3;
action = 0;
action = *(gP0Mmap + addr/4);
usleep(READ_BACK_CHECK_MS);
if ((action & 0x2) == 0x2)
{
break;
}
}
#endif
addr = gMdio_Reg_1;
read_result = 0;
read_result = *(gP0Mmap + addr/4);
data = (read_result>>16);
DEBUG_PRINT("mdio_read 3 output 0x%08x data 0x%08x \n",output,read_result);
return data;
}
bool slot_addr_check(unsigned short card,unsigned short slot_addr)
{
switch (card) {
case 1:
case 3:
case 5:
case 7:
if (slot_addr==0x18 || slot_addr==0x1A || slot_addr==0x1C || slot_addr==0x1E)
{
return true;
}
break;
case 2:
case 4:
case 6:
case 8:
if (slot_addr==0x10 || slot_addr==0x12 || slot_addr==0x14 || slot_addr==0x16)
{
return true;
}
break;
default: printf("unknown"); return true;
}
return false;
}
unsigned short mdio_read_slot(unsigned short card,unsigned short prtad, unsigned short devad, unsigned int reg)
{
if (!slot_addr_check(card,prtad)){
printf("Error! mdio_read_slot(card,prtad,devad,reg)\n");
return 0;
}
switch (card) {
case 1:
case 2:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_0 ;
break;
case 3:
case 4:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_1 ;
break;
case 5:
case 6:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_2 ;
break;
case 7:
case 8:
gMdio_Reg_1=gMdio_Reg_2=gMdio_Reg_3=MDIO_3 ;
break;
default: printf("unknown"); break;
}
gMdio_Reg_1 = gMdio_Reg_1 + ST_OP_PRTAD_DEVAD_REG;
gMdio_Reg_2 = gMdio_Reg_2 + PHY_DATA_REG;
gMdio_Reg_3 = gMdio_Reg_3 + GO_AND_DONE_REG;
port_addr[0] = prtad;
port_addr[1] = prtad+1;
return mdio_read(0, devad, reg);
}
int lscpcie_open()
{
int fd;
char filename[256];
BarSize = PCI_DEV_MEM_SIZE; // default for our demo BAR1
sprintf(filename, "/dev/ECP3_Basic_1");
/* Open the kernel mem object to gain access
*/
/*fd = open(region, O_RDWR, 0666); */
fd = open(filename, O_RDWR | O_SYNC);
if (fd == -1)
{
perror("ERROR open(): ");
return FAIL;
}
gP0Mmap = mmap(0, /* choose any user address */
BarSize, /* This big */
PROT_READ | PROT_WRITE, /* access control */
MAP_SHARED, /* access control */
fd, /* the object */
0); /* the offset from beginning */
if (gP0Mmap == MAP_FAILED)
{
perror("mmap: ");
return FAIL;
}
Board_fd = fd;
DEBUG_PRINT("lscpcie_open Seccess.\n");
return SUCCESS;
}
uint32_t lscpcie_close()
{
int sysErr;
/* Release the shared memory. It won't go away but we're done with it */
sysErr = munmap(gP0Mmap, BarSize);
if (sysErr == -1)
{
perror("munmap: ");
return FAIL;
}
close(Board_fd);
return SUCCESS;
}

View File

@ -0,0 +1,12 @@
#ifndef __CAMEOMDIO_H__
#define __CAMEOMDIO_H__
void ForDelay();
void mdio_write(int phyad, int devad, int offset_in_mmd, int data);
unsigned short mdio_read(int phyad, int devad, int offset_in_mmd);
int lscpcie_open();
uint32_t lscpcie_close();
#endif /* __CAMEOMDIO_H__ */

Some files were not shown because too many files have changed in this diff Show More